From e87dc5862b80388d82bcb70b79301789b4dba770 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Fri, 8 Nov 2013 06:02:05 +1100 Subject: [PATCH 001/168] Github time! --- .gitignore | 2 + Gemfile | 4 + Gemfile.lock | 78 + LICENSE | 22 + NOTES.md | 4 + README.md | 9 + Rakefile | 2 + bin/ebooks | 100 + data/adjectives.txt | 1466 +++ data/nouns.txt | 2193 +++++ data/stopwords.txt | 843 ++ lib/twitter_ebooks.rb | 20 + lib/twitter_ebooks/archiver.rb | 82 + lib/twitter_ebooks/bot.rb | 164 + lib/twitter_ebooks/markov.rb | 81 + lib/twitter_ebooks/model.rb | 120 + lib/twitter_ebooks/nlp.rb | 154 + lib/twitter_ebooks/version.rb | 3 + script/process_anc_data.rb | 19 + skeleton/.gitignore | 1 + skeleton/Procfile | 1 + skeleton/bots.rb | 41 + skeleton/run.rb | 9 + test/corpus/0xabad1dea.tweets | 14696 +++++++++++++++++++++++++++++++ test/keywords.rb | 18 + test/tokenize.rb | 18 + twitter_ebooks.gemspec | 28 + 27 files changed, 20178 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 LICENSE create mode 100644 NOTES.md create mode 100644 README.md create mode 100644 Rakefile create mode 100755 bin/ebooks create mode 100644 data/adjectives.txt create mode 100644 data/nouns.txt create mode 100644 data/stopwords.txt create mode 100644 lib/twitter_ebooks.rb create mode 100644 lib/twitter_ebooks/archiver.rb create mode 100644 lib/twitter_ebooks/bot.rb create mode 100644 lib/twitter_ebooks/markov.rb create mode 100644 lib/twitter_ebooks/model.rb create mode 100644 lib/twitter_ebooks/nlp.rb create mode 100644 lib/twitter_ebooks/version.rb create mode 100755 script/process_anc_data.rb create mode 100644 skeleton/.gitignore create mode 100644 skeleton/Procfile create mode 100644 skeleton/bots.rb create mode 100755 skeleton/run.rb create mode 100644 test/corpus/0xabad1dea.tweets create mode 100755 test/keywords.rb create mode 100755 test/tokenize.rb create mode 100644 twitter_ebooks.gemspec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cf08465 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.*.swp +pkg diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..5665fff --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source 'https://rubygems.org' + +# Specify your gem's dependencies in libtcod.gemspec +gemspec diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..99a4fc6 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,78 @@ +PATH + remote: . + specs: + twitter_ebooks (2.0.3) + bloomfilter-rb + engtagger + fast-stemmer + gingerice + highscore + htmlentities + minitest + rufus-scheduler + tweetstream + twitter + +GEM + remote: https://rubygems.org/ + specs: + addressable (2.3.5) + atomic (1.1.14) + awesome_print (1.2.0) + bloomfilter-rb (2.1.1) + redis + cookiejar (0.3.0) + daemons (1.1.9) + em-http-request (1.0.3) + addressable (>= 2.2.3) + cookiejar + em-socksify + eventmachine (>= 1.0.0.beta.4) + http_parser.rb (>= 0.5.3) + em-socksify (0.3.0) + eventmachine (>= 1.0.0.beta.4) + em-twitter (0.2.2) + eventmachine (~> 1.0) + http_parser.rb (~> 0.5) + simple_oauth (~> 0.1) + engtagger (0.1.2) + eventmachine (1.0.3) + faraday (0.8.8) + multipart-post (~> 1.2.0) + fast-stemmer (1.0.2) + gingerice (1.2.1) + addressable + awesome_print + highscore (1.1.0) + whatlanguage (>= 1.0.0) + htmlentities (4.3.1) + http_parser.rb (0.5.3) + minitest (5.0.8) + multi_json (1.8.2) + multipart-post (1.2.0) + redis (3.0.5) + rufus-scheduler (3.0.2) + tzinfo + simple_oauth (0.2.0) + thread_safe (0.1.3) + atomic + tweetstream (2.5.0) + daemons (~> 1.1) + em-http-request (~> 1.0.2) + em-twitter (~> 0.2) + twitter (~> 4.5) + yajl-ruby (~> 1.1) + twitter (4.8.1) + faraday (~> 0.8, < 0.10) + multi_json (~> 1.0) + simple_oauth (~> 0.2) + tzinfo (1.1.0) + thread_safe (~> 0.1) + whatlanguage (1.0.5) + yajl-ruby (1.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + twitter_ebooks! diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..136cb1e --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +Copyright (c) 2013 Jaiden Mispy + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/NOTES.md b/NOTES.md new file mode 100644 index 0000000..d6a50b3 --- /dev/null +++ b/NOTES.md @@ -0,0 +1,4 @@ +- Files in text/ are preprocessed by `rake consume` and serialized +- e.g. text/foo.tweets becomes consumed/foo.corpus +- `rake consume` looks at hashes to know which it needs to update +- Preprocessed corpus files are loaded at runtime by Corpus.load('foo') diff --git a/README.md b/README.md new file mode 100644 index 0000000..6f6485a --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# twitter\_ebooks 2.0.7 + +Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. + +## Installation + +```bash +gem install twitter_ebooks +``` diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..e4f19e6 --- /dev/null +++ b/Rakefile @@ -0,0 +1,2 @@ +#!/usr/bin/env rake +require "bundler/gem_tasks" diff --git a/bin/ebooks b/bin/ebooks new file mode 100755 index 0000000..a65d635 --- /dev/null +++ b/bin/ebooks @@ -0,0 +1,100 @@ +#!/usr/bin/env ruby + +require 'twitter_ebooks' + +module Ebooks + APP_PATH = Dir.pwd # XXX do some recursive thing instead + + def self.new(target) + usage = "Usage: ebooks new " + + if target.nil? + log usage + exit + end + + target = "./#{reponame}" + + if File.exists?(target) + log "#{target} already exists. Please remove if you want to recreate." + exit + end + + FileUtils.cp_r(SKELETON_PATH, target) + + File.open(File.join(target, 'bots.rb'), 'w') do |f| + template = File.read(File.join(SKELETON_PATH, 'bots.rb')) + f.write(template.gsub("{{BOT_NAME}}", reponame)) + end + + log "New twitter_ebooks app created at #{target}" + end + + def self.consume(pathes) + pathes.each do |path| + filename = File.basename(path) + shortname = filename.split('.')[0..-2].join('.') + hash = Digest::MD5.hexdigest(File.read(path)) + + log "Consuming text corpus: #{filename}" + outpath = File.join(APP_PATH, 'model', "#{shortname}.model") + Model.consume(path).save(outpath) + log "Corpus consumed" + end + end + + def self.gen(model_path, input) + model = Model.load(model_path) + if input && !input.empty? + puts "@cmd " + model.markov_response(input, 135) + else + puts model.markov_statement + end + end + + def self.score(model_path, input) + model = Model.load(model_path) + model.score_interest(input) + end + + def self.archive(username, outpath) + Archiver.new(username, outpath).fetch_tweets + end + + def self.tweet(modelpath, username) + load File.join(APP_PATH, 'bots.rb') + model = Model.load(modelpath) + statement = model.markov_statement + log "@#{username}: #{statement}" + bot = Bot.get(username) + bot.configure + bot.tweet(statement) + end + + def self.command(args) + usage = """Usage: + ebooks new + ebooks consume [...] + ebooks gen [input] + ebooks score + ebooks archive <@user> + ebooks tweet <@bot> +""" + + if args.length == 0 + log usage + exit + end + + case args[0] + when "new" then new(args[1]) + when "consume" then consume(args[1..-1]) + when "gen" then gen(args[1], args[2..-1].join(' ')) + when "score" then score(args[1], args[2..-1].join(' ')) + when "archive" then archive(args[1], args[2]) + when "tweet" then tweet(args[1], args[2]) + end + end +end + +Ebooks.command(ARGV) diff --git a/data/adjectives.txt b/data/adjectives.txt new file mode 100644 index 0000000..f4ff592 --- /dev/null +++ b/data/adjectives.txt @@ -0,0 +1,1466 @@ +average +big +colossal +fat +giant +gigantic +great +huge +immense +large +little +long +mammoth +massive +miniature +petite +puny +short +small +tall +tiny + boiling +breezy +broken +bumpy +chilly +cold +cool +creepy +crooked +cuddly +curly +damaged +damp +dirty +dry +dusty +filthy +flaky +fluffy +wet +broad +chubby +crooked +curved +deep +flat +high +hollow +low +narrow +round +shallow +skinny +square +steep +straight +wide +ancient +brief +early +fast +late +long +modern +old +old-fashioned +quick +rapid +short +slow +swift +young +abundant +empty +few +heavy +light +many +numerous +Sound +cooing +deafening +faint +harsh +high-pitched +hissing +hushed +husky +loud +melodic +moaning +mute +noisy +purring +quiet +raspy +resonant +screeching +shrill +silent +soft +squealing +thundering +voiceless +whispering +bitter +delicious +fresh +juicy +ripe +rotten +salty +sour +spicy +stale +sticky +strong +sweet +tasteless +tasty +thirsty +fluttering +fuzzy +greasy +grubby +hard +hot +icy +loose +melted +plastic +prickly +rainy +rough +scattered +shaggy +shaky +sharp +shivering +silky +slimy +slippery +smooth +soft +solid +steady +sticky +tender +tight +uneven +weak +wet +wooden +afraid +angry +annoyed +anxious +arrogant +ashamed +awful +bad +bewildered +bored +combative +condemned +confused +creepy +cruel +dangerous +defeated +defiant +depressed +disgusted +disturbed +eerie +embarrassed +envious +evil +fierce +foolish +frantic +frightened +grieving +helpless +homeless +hungry +hurt +ill +jealous +lonely +mysterious +naughty +nervous +obnoxious +outrageous +panicky +repulsive +scary +scornful +selfish +sore +tense +terrible +thoughtless +tired +troubled +upset +uptight +weary +wicked +worried +agreeable +amused +brave +calm +charming +cheerful +comfortable +cooperative +courageous +delightful +determined +eager +elated +enchanting +encouraging +energetic +enthusiastic +excited +exuberant +fair +faithful +fantastic +fine +friendly +funny +gentle +glorious + good +happy +healthy +helpful +hilarious +jolly +joyous +kind +lively +lovely +lucky +obedient +perfect +pleasant +proud +relieved +silly +smiling +splendid +successful +thoughtful +victorious +vivacious +witty +wonderful +zealous +zany +other +good +new +old +great +high +small +different +large +local +social +important +long +young +national +british +right +early +possible +big +little +political +able +late +general +full +far +low +public +available +bad +main +sure +clear +major +economic +only +likely +real +black +particular +international +special +difficult +certain +open +whole +white +free +short +easy +strong +european +central +similar +human +common +necessary +single +personal +hard +private +poor +financial +wide +foreign +simple +recent +concerned +american +various +close +fine +english +wrong +present +royal +natural +individual +nice +french +following +current +modern +labour +legal +happy +final +red +normal +serious +previous +total +prime +significant +industrial +sorry +dead +specific +appropriate +top +soviet +basic +military +original +successful +aware +hon +popular +heavy +professional +direct +dark +cold +ready +green +useful +effective +western +traditional +scottish +german +independent +deep +interesting +considerable +involved +physical +left +hot +existing +responsible +complete +medical +blue +extra +past +male +interested +fair +essential +beautiful +civil +primary +obvious +future +environmental +positive +senior +nuclear +annual +relevant +huge +rich +commercial +safe +regional +practical +official +separate +key +chief +regular +due +additional +active +powerful +complex +standard +impossible +light +warm +middle +fresh +sexual +front +domestic +actual +united +technical +ordinary +cheap +strange +internal +excellent +quiet +soft +potential +northern +religious +quick +very +famous +cultural +proper +broad +joint +formal +limited +conservative +lovely +usual +ltd +unable +rural +initial +substantial +christian +bright +average +leading +reasonable +immediate +suitable +equal +detailed +working +overall +female +afraid +democratic +growing +sufficient +scientific +eastern +correct +inc +irish +expensive +educational +mental +dangerous +critical +increased +familiar +unlikely +double +perfect +slow +tiny +dry +historical +thin +daily +southern +increasing +wild +alone +urban +empty +married +narrow +liberal +supposed +upper +apparent +tall +busy +bloody +prepared +russian +moral +careful +clean +attractive +japanese +vital +thick +alternative +fast +ancient +elderly +rare +external +capable +brief +wonderful +grand +typical +entire +grey +constant +vast +surprised +ideal +terrible +academic +funny +minor +pleased +severe +ill +corporate +negative +permanent +weak +brown +fundamental +odd +crucial +inner +used +criminal +contemporary +sharp +sick +near +roman +massive +unique +secondary +parliamentary +african +unknown +subsequent +angry +alive +guilty +lucky +enormous +well +communist +yellow +unusual +net +long-term +tough +dear +extensive +glad +remaining +agricultural +alright +healthy +italian +principal +tired +efficient +comfortable +chinese +relative +friendly +conventional +willing +sudden +proposed +voluntary +slight +valuable +dramatic +golden +temporary +federal +keen +flat +silent +indian +video-taped +worried +pale +statutory +welsh +dependent +firm +wet +competitive +armed +radical +outside +acceptable +sensitive +living +pure +global +emotional +sad +secret +rapid +adequate +fixed +sweet +administrative +wooden +remarkable +comprehensive +surprising +solid +rough +mere +mass +brilliant +maximum +absolute +tory +electronic +visual +electric +cool +spanish +literary +continuing +supreme +chemical +genuine +exciting +written +stupid +advanced +extreme +classical +fit +favourite +socialist +widespread +confident +straight +catholic +proud +numerous +opposite +distinct +mad +helpful +given +disabled +consistent +anxious +nervous +awful +stable +constitutional +satisfied +conscious +developing +strategic +holy +smooth +dominant +remote +theoretical +outstanding +pink +pretty +clinical +minimum +honest +impressive +related +residential +extraordinary +plain +visible +accurate +distant +still +greek +complicated +musical +precise +gentle +broken +live +silly +fat +tight +monetary +round +psychological +violent +unemployed +inevitable +junior +sensible +grateful +pleasant +dirty +structural +welcome +so-called +deaf +above +continuous +blind +overseas +mean +entitled +delighted +loose +occasional +evident +desperate +fellow +universal +square +steady +classic +equivalent +intellectual +victorian +level +ultimate +creative +lost +medieval +clever +linguistic +convinced +judicial +raw +sophisticated +asleep +vulnerable +illegal +outer +revolutionary +bitter +changing +australian +native +imperial +strict +wise +informal +flexible +collective +frequent +experimental +spiritual +intense +rational +ethnic +generous +inadequate +prominent +logical +bare +historic +modest +dutch +acute +electrical +valid +weekly +gross +automatic +loud +reliable +mutual +liable +multiple +ruling +curious +arab +sole +jewish +managing +pregnant +latin +nearby +exact +underlying +identical +satisfactory +marginal +distinctive +electoral +urgent +presidential +controversial +oral +everyday +encouraging +organic +continued +expected +statistical +desirable +innocent +improved +exclusive +marked +experienced +unexpected +superb +sheer +disappointed +frightened +full-time +gastric +capitalist +romantic +naked +reluctant +magnificent +convenient +established +closed +uncertain +artificial +diplomatic +tremendous +marine +mechanical +retail +institutional +mixed +required +biological +known +functional +straightforward +superior +digital +part-time +spectacular +unhappy +confused +unfair +aggressive +spare +painful +abstract +asian +associated +legislative +monthly +intelligent +hungry +explicit +nasty +just +faint +coloured +ridiculous +amazing +comparable +successive +working-class +realistic +back +decent +unnecessary +flying +fucking +random +influential +dull +genetic +neat +marvellous +crazy +damp +giant +secure +bottom +skilled +subtle +elegant +brave +lesser +parallel +steep +intensive +casual +tropical +lonely +partial +preliminary +concrete +alleged +assistant +vertical +upset +delicate +mild +occupational +excessive +progressive +iraqi +exceptional +integrated +striking +continental +okay +harsh +combined +fierce +handsome +characteristic +chronic +compulsory +interim +objective +splendid +magic +short-term +systematic +obliged +payable +fun +horrible +primitive +fascinating +ideological +metropolitan +surrounding +estimated +peaceful +premier +operational +technological +kind +advisory +hostile +precious +gay +accessible +determined +excited +impressed +provincial +smart +endless +isolated +post-war +drunk +geographical +like +dynamic +boring +forthcoming +unfortunate +definite +super +notable +indirect +stiff +wealthy +awkward +lively +neutral +artistic +content +mature +colonial +ambitious +evil +magnetic +verbal +legitimate +sympathetic +well-known +empirical +head +shallow +vague +naval +depressed +shared +added +shocked +mid +worthwhile +qualified +missing +blank +absent +favourable +polish +israeli +developed +profound +representative +enthusiastic +dreadful +rigid +reduced +cruel +coastal +peculiar +racial +ugly +swiss +crude +extended +selected +eager +feminist +canadian +bold +relaxed +corresponding +running +planned +applicable +immense +allied +comparative +uncomfortable +conservation +productive +beneficial +bored +charming +minimal +mobile +turkish +orange +rear +passive +suspicious +overwhelming +fatal +resulting +symbolic +registered +neighbouring +calm +irrelevant +patient +compact +profitable +rival +loyal +moderate +distinguished +interior +noble +insufficient +eligible +mysterious +varying +middle-class +managerial +molecular +olympic +linear +prospective +printed +parental +diverse +elaborate +furious +fiscal +burning +useless +semantic +embarrassed +inherent +philosophical +deliberate +awake +variable +promising +unpleasant +varied +sacred +selective +inclined +tender +hidden +worthy +intermediate +sound +protective +fortunate +slim +islamic +defensive +divine +stuck +driving +invisible +misleading +circular +mathematical +inappropriate +liquid +persistent +solar +doubtful +manual +architectural +intact +incredible +devoted +prior +tragic +respectable +optimistic +convincing +unacceptable +decisive +competent +spatial +respective +binding +relieved +nursing +toxic +select +redundant +integral +then +probable +amateur +fond +passing +specified +territorial +horizontal +old-fashioned +inland +cognitive +regulatory +miserable +resident +polite +scared +marxist +gothic +civilian +instant +lengthy +adverse +korean +unconscious +anonymous +aesthetic +orthodox +static +unaware +costly +fantastic +foolish +fashionable +causal +compatible +wee +implicit +dual +ok +cheerful +subjective +forward +surviving +exotic +purple +cautious +visiting +aggregate +ethical +protestant +teenage +large-scale +dying +disastrous +delicious +confidential +underground +thorough +grim +autonomous +atomic +frozen +colourful +injured +uniform +ashamed +glorious +wicked +coherent +rising +shy +novel +balanced +delightful +arbitrary +adjacent +psychiatric +worrying +weird +unchanged +rolling +evolutionary +intimate +sporting +disciplinary +formidable +lexical +noisy +gradual +accused +homeless +supporting +coming +renewed +excess +retired +rubber +chosen +outdoor +embarrassing +preferred +bizarre +appalling +agreed +imaginative +governing +accepted +vocational +palestinian +mighty +puzzled +worldwide +handicapped +organisational +sunny +eldest +eventual +spontaneous +vivid +rude +nineteenth-century +faithful +ministerial +innovative +controlled +conceptual +unwilling +civic +meaningful +disturbing +alive +brainy +breakable +busy +careful +cautious +clever +concerned +crazy +curious +dead +different +difficult +doubtful +easy +famous +fragile +helpful +helpless +important + impossible +innocent +inquisitive +modern +open +outstanding +poor +powerful +puzzled +real +rich +shy +sleepy +stupid +super +tame +uninterested +wandering +wild +wrong + adorable +alert +average +beautiful +blonde +bloody +blushing +bright +clean +clear +cloudy +colorful +crowded +cute +dark +drab +distinct +dull +elegant +fancy +filthy +glamorous +gleaming +graceful +grotesque +homely +light +misty +motionless +muddy +plain +poised +quaint +shiny +smoggy +sparkling +spotless +stormy +strange +ugly +unsightly +unusual +bad +better +beautiful +big +black +blue +bright +clumsy +crazy +dizzy +dull +fat +frail +friendly +funny +great +green +gigantic +gorgeous +grumpy +handsome +happy +horrible +itchy +jittery +jolly +kind +long +lazy +magnificent +magenta +many +mighty +mushy +nasty +new +nice +nosy +nutty +nutritious +odd +orange +ordinary +pretty +precious +prickly +purple +quaint +quiet +quick +quickest +rainy +rare +ratty +red +roasted +robust +round +sad +scary +scrawny +short +silly +stingy +strange +striped +spotty +tart +tall +tame +tan +tender +testy +tricky +tough +ugly +ugliest +vast +watery +wasteful +wide-eyed +wonderful +yellow +yummy +zany diff --git a/data/nouns.txt b/data/nouns.txt new file mode 100644 index 0000000..876dd3f --- /dev/null +++ b/data/nouns.txt @@ -0,0 +1,2193 @@ +aardvark +accelerator +accordion +account +accountant +acknowledgment +acoustic +acrylic +act +action +active +activity +actor +actress +adapter +addition +address +adjustment +adult +advantage +advertisement +advice +aftermath +afternoon +aftershave +afterthought +age +agenda +agreement +air +airbus +airmail +airplane +airport +airship +alarm +albatross +alcohol +algebra +alibi +alley +alligator +alloy +almanac +alphabet +alto +aluminium +aluminum +ambulance +amount +amusement +anatomy +anethesiologist +anger +angle +animal +anime +ankle +answer +ant +anteater +antelope +anthropology +apartment +apology +apparatus +apparel +appeal +appendix +apple +appliance +approval +arch +archaeology +archeology +archer +architecture +area +argument +arithmetic +arm +armadillo +armchair +army +arrow +art +ash +ashtray +asparagus +asphalt +asterisk +astronomy +athlete +atm +atom +attack +attempt +attention +attic +attraction +aunt +author +authorisation +authority +authorization +avenue +babies +baboon +baby +back +backbone +bacon +badge +badger +bag +bagel +bagpipe +bail +bait +baker +bakery +balance +ball +balloon +bamboo +banana +band +bandana +bangle +banjo +bank +bankbook +banker +bar +barber +barge +baritone +barometer +base +baseball +basement +basin +basket +basketball +bass +bassoon +bat +bath +bathroom +bathtub +battery +battle +bay +beach +bead +beam +bean +bear +beard +beast +beat +beautician +beauty +beaver +bed +bedroom +bee +beech +beef +beer +beet +beetle +beggar +beginner +begonia +behavior +belief +believe +bell +belt +bench +beret +berry +bestseller +betty +bibliography +bicycle +bike +bill +billboard +biology +biplane +birch +bird +birth +birthday +bit +bite +black +bladder +blade +blanket +blinker +blizzard +block +blood +blouse +blow +blowgun +blue +board +boat +bobcat +body +bolt +bomb +bomber +bone +bongo +bonsai +book +bookcase +booklet +boot +border +botany +bottle +bottom +boundary +bow +bowl +bowling +box +boy +bra +brace +bracket +brain +brake +branch +brand +brandy +brass +bread +break +breakfast +breath +brian +brick +bridge +broccoli +brochure +broker +bronze +brother +brother-in-law +brow +brown +brush +bubble +bucket +budget +buffer +buffet +bugle +building +bulb +bull +bulldozer +bumper +bun +burglar +burma +burn +burst +bus +bush +business +butane +butcher +butter +button +buzzard +cabbage +cabinet +cable +cactus +cafe +cake +calculator +calculus +calendar +calf +call +camel +camera +camp +can +cancer +candle +cannon +canoe +canvas +cap +capital +cappelletti +captain +caption +car +caravan +carbon +card +cardboard +cardigan +care +carnation +carol +carp +carpenter +carriage +carrot +cart +cartoon +case +cast +castanet +cat +catamaran +caterpillar +cathedral +catsup +cattle +cauliflower +cause +caution +cave +c-clamp +cd +ceiling +celery +celeste +cell +cellar +cello +celsius +cement +cemetery +cent +centimeter +century +ceramic +cereal +certification +chain +chair +chalk +chance +change +channel +character +chard +charles +chauffeur +check +cheek +cheese +cheetah +chef +chemistry +cheque +cherries +cherry +chess +chest +chick +chicken +chicory +chief +child +children +chill +chime +chimpanzee +chin +chive +chocolate +chord +chronometer +church +cicada +cinema +circle +circulation +cirrus +citizenship +city +clam +clarinet +class +claus +clave +clef +clerk +click +client +climb +clipper +cloakroom +clock +close +closet +cloth +cloud +cloudy +clover +club +clutch +coach +coal +coast +coat +cobweb +cockroach +cocktail +cocoa +cod +coffee +coil +coin +coke +cold +collar +college +collision +colon +colony +color +colt +column +columnist +comb +comfort +comic +comma +command +commission +committee +community +company +comparison +competition +competitor +composer +composition +computer +condition +condor +cone +confirmation +conga +congo +conifer +connection +consonant +continent +control +cook +cooking +copper +copy +copyright +cord +cork +cormorant +corn +cornet +correspondent +cost +cotton +couch +cougar +cough +country +course +court +cousin +cover +cow +cowbell +crab +crack +cracker +craftsman +crate +crawdad +crayfish +crayon +cream +creator +creature +credit +creditor +creek +crib +cricket +crime +criminal +crocodile +crocus +croissant +crook +crop +cross +crow +crowd +crown +crush +cry +cub +cucumber +cultivator +cup +cupboard +cupcake +curler +currency +current +curtain +curve +cushion +custard +customer +cut +cuticle +cycle +cyclone +cylinder +cymbal +dad +daffodil +dahlia +daisy +damage +dance +dancer +danger +dash +dashboard +database +date +daughter +day +dead +deadline +deal +death +deborah +debt +debtor +decade +decimal +decision +decrease +dedication +deer +defense +deficit +degree +delete +delivery +den +denim +dentist +deodorant +department +deposit +description +desert +design +desire +desk +dessert +destruction +detail +detective +development +dew +diamond +diaphragm +dibble +dictionary +dietician +difference +digestion +digger +digital +dill +dime +dimple +dinghy +dinner +dinosaur +diploma +dipstick +direction +dirt +disadvantage +discovery +discussion +disease +disgust +dish +distance +distribution +distributor +diving +division +divorced +dock +doctor +dog +dogsled +doll +dollar +dolphin +domain +donkey +door +double +doubt +downtown +dragon +dragonfly +drain +drake +drama +draw +drawbridge +drawer +dream +dredger +dress +dresser +dressing +drill +drink +drive +driver +driving +drizzle +drop +drug +drum +dry +dryer +duck +duckling +dugout +dungeon +dust +eagle +ear +earth +earthquake +ease +east +edge +edger +editor +editorial +education +eel +effect +egg +eggnog +eggplant +egypt +eight +elbow +element +elephant +elizabeth +ellipse +emery +employee +employer +encyclopedia +end +enemy +energy +engine +engineer +engineering +enquiry +entrance +environment +epoch +epoxy +equinox +equipment +era +error +estimate +ethernet +euphonium +evening +event +examination +example +exchange +exclamation +exhaust +ex-husband +existence +expansion +experience +expert +explanation +ex-wife +eye +eyebrow +eyelash +eyeliner +face +facilities +fact +factory +fairies +fall +family +fan +fang +farm +farmer +fat +father +father-in-law +faucet +fear +feast +feather +feature +fedelini +feedback +feeling +feet +felony +female +fender +ferry +ferryboat +fertilizer +fiber +fiberglass +fibre +fiction +field +fifth +fight +fighter +file +find +fine +finger +fir +fire +fired +fireman +fireplace +firewall +fish +fisherman +flag +flame +flare +flat +flavor +flax +flesh +flight +flock +flood +floor +flower +flugelhorn +flute +fly +foam +fog +fold +font +food +foot +football +footnote +force +forecast +forehead +forest +forgery +fork +form +format +fortnight +foundation +fountain +fowl +fox +foxglove +fragrance +frame +freckle +freeze +freezer +freighter +french +friction +fridge +friend +frog +front +frost +frown +fruit +fuel +fur +furniture +galley +gallon +game +gander +garage +garden +garlic +gas +gasoline +gate +gateway +gauge +gazelle +gear +gearshift +geese +gender +geography +geology +geometry +geranium +ghost +giant +giraffe +girdle +girl +gladiolus +glass +glider +gliding +glockenspiel +glove +glue +goal +goat +gold +goldfish +golf +gondola +gong +good-bye +goose +gore-tex +gorilla +gosling +government +governor +grade +grain +gram +granddaughter +grandfather +grandmother +grandson +grape +graphic +grass +grasshopper +gray +grease +great-grandfather +great-grandmother +greece +greek +green +grenade +grey +grill +grip +ground +group +grouse +growth +guarantee +guide +guilty +guitar +gum +gun +gym +gymnast +hacksaw +hail +hair +haircut +half-brother +half-sister +halibut +hall +hallway +hamburger +hammer +hamster +hand +handball +handicap +handle +handsaw +harbor +hardboard +hardcover +hardhat +hardware +harmonica +harmony +harp +hat +hate +hawk +head +headlight +headline +health +hearing +heart +heat +heaven +hedge +height +helicopter +helium +hell +helmet +help +hemp +hen +heron +herring +hexagon +hill +himalayan +hip +hippopotamus +history +hobbies +hockey +hoe +hole +holiday +home +honey +hood +hook +hope +horn +horse +hose +hospital +hot +hour +hourglass +house +hovercraft +hub +hubcap +humidity +humor +hurricane +hyacinth +hydrant +hydrofoil +hydrogen +hyena +hygienic +ice +icebreaker +icicle +icon +idea +ikebana +illegal +imprisonment +improvement +impulse +inch +income +increase +index +industry +ink +innocent +input +insect +instruction +instrument +insulation +insurance +interactive +interest +interviewer +intestine +invention +inventory +invoice +iris +iron +island +italy +jacket +jaguar +jail +jam +james +jar +jasmine +jason +jaw +jeans +jeep +jelly +jellyfish +jet +jewel +jogging +join +joke +journey +judge +judo +juice +jumbo +jump +jumper +jury +justice +jute +kale +kamikaze +kangaroo +karate +kayak +kendo +ketchup +kettle +kettledrum +kevin +key +keyboard +keyboarding +kick +kidney +kilogram +kilometer +kiss +kitchen +kite +kitten +kitty +knee +knickers +knife +knight +knot +knowledge +kohlrabi +laborer +lace +ladybug +lake +lamb +lamp +lan +land +landmine +language +larch +lasagna +latency +latex +lathe +laugh +laundry +law +lawyer +layer +lead +leaf +learning +leather +leek +leg +legal +lemonade +lentil +leopard +letter +lettuce +level +library +license +lier +lift +light +lightning +lilac +lily +limit +linda +line +linen +link +lion +lip +lipstick +liquid +liquor +lisa +list +literature +litter +liver +lizard +llama +loaf +loan +lobster +lock +locket +locust +look +loss +lotion +love +low +lumber +lunch +lunchroom +lung +lunge +lute +luttuce +lynx +lyocell +lyre +lyric +macaroni +machine +macrame +magazine +magic +magician +maid +mail +mailbox +mailman +makeup +male +mall +mallet +man +manager +mandolin +manicure +manx +map +maple +maraca +marble +margaret +margin +maria +marimba +mark +market +married +mary +mascara +mask +mass +match +math +mattock +mayonnaise +meal +measure +meat +mechanic +medicine +meeting +melody +memory +men +menu +mercury +message +metal +meteorology +meter +methane +mice +michael +michelle +microwave +middle +mile +milk +milkshake +millennium +millimeter +millisecond +mind +mine +minibus +mini-skirt +minister +mint +minute +mirror +missile +mist +mistake +mitten +moat +modem +mole +mom +money +monkey +month +moon +morning +morocco +mosque +mosquito +mother +mother-in-law +motion +motorboat +motorcycle +mountain +mouse +moustache +mouth +move +multi-hop +multimedia +muscle +museum +music +musician +mustard +nail +name +nancy +napkin +narcissus +nation +neck +need +needle +neon +nepal +nephew +nerve +nest +net +network +news +newsprint +newsstand +nic +nickel +niece +night +nitrogen +node +noise +noodle +north +nose +note +notebook +notify +novel +number +numeric +nurse +nut +nylon +oak +oatmeal +objective +oboe +observation +occupation +ocean +ocelot +octagon +octave +octopus +odometer +offence +offer +office +oil +okra +olive +onion +open +opera +operation +ophthalmologist +opinion +option +orange +orchestra +orchid +order +organ +organisation +organization +ornament +ostrich +otter +ounce +output +outrigger +oval +oven +overcoat +owl +owner +ox +oxygen +oyster +package +packet +page +pail +pain +paint +pair +pajama +palm +pamphlet +pan +pancake +pancreas +panda +pansy +panther +panties +pantry +pants +panty +pantyhose +paper +paperback +parade +parallelogram +parcel +parent +parentheses +park +parrot +parsnip +part +particle +partner +partridge +party +passbook +passenger +passive +pasta +paste +pastor +pastry +patch +path +patient +patio +payment +pea +peace +peak +peanut +pear +pedestrian +pediatrician +peen +peer-to-peer +pelican +pen +penalty +pencil +pendulum +peony +pepper +perch +perfume +period +periodical +peripheral +permission +person +pest +pet +pharmacist +pheasant +philosophy +phone +physician +piano +piccolo +pickle +picture +pie +pig +pigeon +pike +pillow +pilot +pimple +pin +pine +ping +pink +pint +pipe +pizza +place +plain +plane +planet +plant +plantation +plaster +plasterboard +plastic +plate +platinum +play +playground +playroom +pleasure +plier +plot +plough +plow +plywood +pocket +poet +point +poison +police +policeman +politician +pollution +polo +polyester +pond +popcorn +poppy +population +porch +porcupine +port +porter +position +possibility +postage +postbox +pot +potato +poultry +pound +powder +power +precipitation +preface +prepared +pressure +price +priest +print +printer +prison +probation +process +processing +produce +product +production +professor +profit +promotion +propane +property +prose +prosecution +protest +protocol +pruner +psychiatrist +psychology +ptarmigan +puffin +pull +puma +pump +pumpkin +punch +punishment +puppy +purchase +purple +purpose +push +pvc +pyjama +pyramid +quail +quality +quart +quarter +quartz +queen +question +quicksand +quiet +quill +quilt +quince +quit +quiver +quotation +rabbi +rabbit +racing +radar +radiator +radio +radish +raft +rail +railway +rain +rainbow +raincoat +rainstorm +rake +ramie +random +range +rat +rate +raven +ravioli +ray +rayon +reaction +reading +reason +receipt +recess +record +recorder +rectangle +red +reduction +refrigerator +refund +regret +reindeer +relation +relative +religion +relish +reminder +repair +replace +report +representative +request +resolution +respect +responsibility +rest +restaurant +result +retailer +revolve +revolver +reward +rhinoceros +rhythm +rice +richard +riddle +rifle +ring +rise +risk +river +riverbed +road +roadway +roast +robin +rock +rocket +rod +roll +ronald +roof +room +rooster +root +rose +rotate +route +router +rowboat +rub +rubber +rugby +rule +run +rutabaga +ruth +sack +sail +sailboat +sailor +salad +salary +sale +salesman +salmon +salt +sampan +samurai +sand +sandra +sandwich +santa +sarah +sardine +satin +sauce +sausage +save +saw +saxophone +scale +scallion +scanner +scarecrow +scarf +scene +scent +schedule +school +science +scissors +scooter +scorpion +scraper +screen +screw +screwdriver +sea +seagull +seal +seaplane +search +seashore +season +seat +second +secretary +secure +security +seed +seeder +segment +select +selection +self +semicircle +semicolon +sense +sentence +separated +servant +server +session +sex +shade +shadow +shake +shallot +shame +shampoo +shape +share +shark +sharon +shears +sheep +sheet +shelf +shell +shield +shingle +ship +shirt +shock +shoe +shoemaker +shop +shorts +shoulder +shovel +show +shrimp +shrine +side +sideboard +sidecar +sidewalk +sign +signature +silica +silk +silver +sing +singer +single +sink +sister +sister-in-law +size +skate +skiing +skill +skin +skirt +sky +slash +slave +sled +sleep +sleet +slice +slime +slip +slipper +slope +smash +smell +smile +smoke +snail +snake +sneeze +snow +snowboarding +snowflake +snowman +snowplow +snowstorm +soap +soccer +society +sociology +sock +soda +sofa +softball +softdrink +software +soil +soldier +son +song +soprano +sort +sound +soup +sousaphone +soy +soybean +space +spade +spaghetti +spain +spandex +spark +sparrow +spear +specialist +speedboat +sphere +sphynx +spider +spike +spinach +spleen +sponge +spoon +spot +spring +sprout +spruce +spy +square +squash +squid +squirrel +stage +staircase +stamp +star +start +starter +state +statement +station +statistic +steam +steel +stem +step +step-aunt +step-brother +stepdaughter +step-daughter +step-father +step-grandfather +step-grandmother +stepmother +step-mother +step-sister +stepson +step-son +step-uncle +steven +stew +stick +stinger +stitch +stock +stocking +stomach +stone +stool +stop +stopsign +stopwatch +store +storm +story +stove +stranger +straw +stream +street +streetcar +stretch +string +structure +study +sturgeon +submarine +substance +subway +success +suede +sugar +suggestion +suit +summer +sun +sundial +sunflower +sunshine +supermarket +supply +support +surfboard +surgeon +surname +surprise +susan +sushi +swallow +swamp +swan +sweater +sweatshirt +sweatshop +sweets +swim +swimming +swing +switch +sword +swordfish +sycamore +syrup +system +table +tablecloth +tabletop +tachometer +tadpole +tail +tailor +talk +tank +tanker +target +taste +tax +taxi +taxicab +tea +teacher +teaching +team +technician +teeth +television +teller +temper +temperature +temple +tempo +tendency +tennis +tenor +tent +territory +test +text +textbook +texture +thailand +theater +theory +thermometer +thing +thistle +thomas +thought +thread +thrill +throat +throne +thumb +thunder +thunderstorm +ticket +tie +tiger +tights +tile +timbale +time +timer +timpani +tin +tip +tire +titanium +title +toad +toast +toe +toenail +toilet +tomato +tom-tom +ton +tongue +tooth +toothbrush +toothpaste +top +tornado +tortellini +tortoise +touch +tower +town +toy +tractor +trade +traffic +trail +train +tramp +transaction +transmission +transport +trapezoid +tray +treatment +tree +trial +triangle +trick +trigonometry +trip +trombone +trouble +trousers +trout +trowel +truck +trumpet +trunk +t-shirt +tsunami +tub +tuba +tugboat +tulip +tuna +tune +turkey +turkish +turn +turnip +turnover +turret +turtle +tv +twig +twilight +twine +twist +typhoon +tyvek +umbrella +uncle +underclothes +underpants +undershirt +underwear +unit +unshielded +use +utensil +vacation +vacuum +valley +value +van +vase +vault +vegetable +vegetarian +veil +vein +velvet +verdict +vermicelli +verse +vessel +vest +veterinarian +vibraphone +view +vinyl +viola +violet +violin +viscose +vise +vision +visitor +voice +volcano +volleyball +voyage +vulture +waiter +waitress +walk +wall +wallaby +wallet +walrus +war +warm +wash +washer +wasp +waste +watch +watchmaker +water +waterfall +wave +wax +way +wealth +weapon +weasel +weather +wedge +weed +weeder +week +weight +whale +wheel +whip +whiskey +whistle +white +wholesaler +whorl +wilderness +willow +wind +windchime +window +windscreen +windshield +wine +wing +winter +wire +wish +witch +withdrawal +witness +wolf +woman +women +wood +wool +woolen +word +work +workshop +worm +wound +wrecker +wren +wrench +wrinkle +wrist +writer +xylophone +yacht +yak +yam +yard +yarn +year +yellow +yew +yogurt +yoke +zebra +zephyr +zinc +zipper +zone +zoo +zoology diff --git a/data/stopwords.txt b/data/stopwords.txt new file mode 100644 index 0000000..aba8a2b --- /dev/null +++ b/data/stopwords.txt @@ -0,0 +1,843 @@ +a +able +about +above +abst +accordance +according +accordingly +across +act +actually +added +adj +affected +affecting +affects +after +afterwards +again +against +ah +all +almost +alone +along +already +also +although +always +am +among +amongst +an +and +announce +another +any +anybody +anyhow +anymore +anyone +anything +anyway +anyways +anywhere +apparently +approximately +are +aren +arent +arise +around +as +aside +ask +asking +at +auth +available +away +awfully +b +back +be +became +because +become +becomes +becoming +been +before +beforehand +begin +beginning +beginnings +begins +behind +being +believe +below +beside +besides +between +beyond +biol +both +brief +briefly +but +by +c +ca +came +can +cannot +can't +cause +causes +certain +certainly +co +com +come +comes +contain +containing +contains +could +couldnt +d +date +did +didn't +different +do +does +doesn't +doing +done +don't +down +downwards +due +during +e +each +ed +edu +effect +eg +eight +eighty +either +else +elsewhere +end +ending +enough +especially +et +et-al +etc +even +ever +every +everybody +everyone +everything +everywhere +ex +except +f +far +few +ff +fifth +first +five +fix +followed +following +follows +for +former +formerly +forth +found +four +from +further +furthermore +g +gave +get +gets +getting +give +given +gives +giving +go +goes +gone +got +gotten +h +had +happens +hardly +has +hasn't +have +haven't +having +he +hed +hence +her +here +hereafter +hereby +herein +heres +hereupon +hers +herself +hes +hi +hid +him +himself +his +hither +home +how +howbeit +however +hundred +i +id +ie +if +i'll +im +immediate +immediately +importance +important +in +inc +indeed +index +information +instead +into +invention +inward +is +isn't +it +itd +it'll +its +itself +i've +j +just +k +keep +keeps +kept +kg +km +know +known +knows +l +largely +last +lately +later +latter +latterly +least +less +lest +let +lets +like +liked +likely +line +little +'ll +look +looking +looks +ltd +m +made +mainly +make +makes +many +may +maybe +me +mean +means +meantime +meanwhile +merely +mg +might +million +miss +ml +more +moreover +most +mostly +mr +mrs +much +mug +must +my +myself +n +na +name +namely +nay +nd +near +nearly +necessarily +necessary +need +needs +neither +never +nevertheless +new +next +nine +ninety +no +nobody +non +none +nonetheless +noone +nor +normally +nos +not +noted +nothing +now +nowhere +o +obtain +obtained +obviously +of +off +often +oh +ok +okay +old +omitted +on +once +one +ones +only +onto +or +ord +other +others +otherwise +ought +our +ours +ourselves +out +outside +over +overall +owing +own +p +page +pages +part +particular +particularly +past +per +perhaps +placed +please +plus +poorly +possible +possibly +potentially +pp +predominantly +present +previously +primarily +probably +promptly +proud +provides +put +q +que +quickly +quite +qv +r +ran +rather +rd +re +readily +really +recent +recently +ref +refs +regarding +regardless +regards +related +relatively +research +respectively +resulted +resulting +results +right +run +s +said +same +saw +say +saying +says +sec +section +see +seeing +seem +seemed +seeming +seems +seen +self +selves +sent +seven +several +shall +she +shed +she'll +shes +should +shouldn't +show +showed +shown +showns +shows +significant +significantly +similar +similarly +since +six +slightly +so +some +somebody +somehow +someone +somethan +something +sometime +sometimes +somewhat +somewhere +soon +sorry +specifically +specified +specify +specifying +still +stop +strongly +sub +substantially +successfully +such +sufficiently +suggest +sup +sure +t +take +taken +taking +tell +tends +th +than +thank +thanks +thanx +that +that'll +thats +that've +the +their +theirs +them +themselves +then +thence +there +thereafter +thereby +thered +therefore +therein +there'll +thereof +therere +theres +thereto +thereupon +there've +these +they +theyd +they'll +theyre +they've +think +this +those +thou +though +thoughh +thousand +throug +through +throughout +thru +thus +til +tip +to +together +too +took +toward +towards +tried +tries +truly +try +trying +ts +twice +two +u +un +under +unfortunately +unless +unlike +unlikely +until +unto +up +upon +ups +us +use +used +useful +usefully +usefulness +uses +using +usually +v +value +various +'ve +very +via +viz +vol +vols +vs +w +want +wants +was +wasn't +way +we +wed +welcome +we'll +went +were +weren't +we've +what +whatever +what'll +whats +when +whence +whenever +where +whereafter +whereas +whereby +wherein +wheres +whereupon +wherever +whether +which +while +whim +whither +who +whod +whoever +whole +who'll +whom +whomever +whos +whose +why +widely +willing +wish +with +within +without +won't +words +world +would +wouldn't +www +x +y +yes +yet +you +youd +you'll +your +youre +yours +yourself +yourselves +you've +z +zero +. +? +! + +http +don +people +well +will +https +time +good +thing +twitter +pretty +it's +i'm +that's +you're +they're +there's +things +yeah +find +going +work +point +years +guess +bad +problem +real +kind +day +better +lot +stuff +i'd +read +thought +idea +case +word +hey +person +long +Dear +internet +tweet +he's +feel +wrong +call +hard +phone +ago +literally +remember +reason +called +course +bit +question +high +today +told +man +actual +year +three +book +assume +life +true +best +wow +video +times +works +fact +completely +totally +imo +open +lol +haha +cool +yep +ooh +great +ugh +tonight +talk +sounds +hahaha +whoa +cool +we're +guys +sweet +fortunately +hmm +aren't +sadly +talking +you'd +place +yup +what's +y'know +basically +god +shit +holy +interesting +news +guy +wait +oooh +gonna +current +let's +tomorrow +omg +hate +hope +fuck +oops +night +wear +wanna +fun +finally +whoops +nevermind +definitely +context +screen +free +exactly +big +house +half +working +play +heard +hmmm +damn +woah +tho +set +idk +sort +understand +kinda +seriously +btw +she's +hah +aww +ffs +it'd +that'd +hopefully +non +entirely +lots +entire +tend +hullo +clearly +surely +weird +start +help +nope diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb new file mode 100644 index 0000000..e994b17 --- /dev/null +++ b/lib/twitter_ebooks.rb @@ -0,0 +1,20 @@ +gem 'minitest' + +def log(*args) + STDERR.puts args.map(&:to_s).join(' ') + STDERR.flush +end + +module Ebooks + GEM_PATH = File.expand_path(File.join(File.dirname(__FILE__), '..')) + DATA_PATH = File.join(GEM_PATH, 'data') + SKELETON_PATH = File.join(GEM_PATH, 'skeleton') + TEST_PATH = File.join(GEM_PATH, 'test') + TEST_CORPUS_PATH = File.join(TEST_PATH, 'corpus/0xabad1dea.tweets') +end + +require 'twitter_ebooks/nlp' +require 'twitter_ebooks/archiver' +require 'twitter_ebooks/markov' +require 'twitter_ebooks/model' +require 'twitter_ebooks/bot' diff --git a/lib/twitter_ebooks/archiver.rb b/lib/twitter_ebooks/archiver.rb new file mode 100644 index 0000000..93387fc --- /dev/null +++ b/lib/twitter_ebooks/archiver.rb @@ -0,0 +1,82 @@ +#!/usr/bin/env ruby +# encoding: utf-8 + +require 'twitter' + +module Ebooks + class Archiver + def initialize(username, outpath) + @username = username + @outpath = outpath + @client = Twitter::Client.new + end + + # Read exiting corpus into memory. + # Return list of tweet lines and the last tweet id. + def read_corpus + lines = [] + since_id = nil + + if File.exists?(@outpath) + lines = File.read(@outpath).split("\n") + if lines[0].start_with?('#') + since_id = lines[0].split('# ').last + end + end + + [lines, since_id] + end + + # Retrieve all available tweets for a given user since the last tweet id + def tweets_since(since_id) + page = 1 + retries = 0 + tweets = [] + max_id = nil + + opts = { + count: 200, + include_rts: false, + trim_user: true + } + + opts[:since_id] = since_id unless since_id.nil? + + loop do + opts[:max_id] = max_id unless max_id.nil? + new = @client.user_timeline(@username, opts) + break if new.length <= 1 + puts "Received #{new.length} tweets" + tweets += new + max_id = new.last.id + break + end + + tweets + end + + def fetch_tweets + lines, since_id = read_corpus + + if since_id.nil? + puts "Retrieving tweets from @#{@username}" + else + puts "Retrieving tweets from @#{@username} since #{since_id}" + end + + tweets = tweets_since(since_id) + + if tweets.length == 0 + puts "No new tweets" + return + end + + new_lines = tweets.map { |tweet| tweet.text.gsub("\n", " ") } + new_since_id = tweets[0].id.to_s + lines = ["# " + new_since_id] + new_lines + lines + corpus = File.open(@outpath, 'w') + corpus.write(lines.join("\n")) + corpus.close + end + end +end diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb new file mode 100644 index 0000000..d7817ce --- /dev/null +++ b/lib/twitter_ebooks/bot.rb @@ -0,0 +1,164 @@ +#!/usr/bin/env ruby +require 'twitter' +require 'tweetstream' +require 'rufus/scheduler' + +module Ebooks + class Bot + attr_accessor :consumer_key, :consumer_secret, + :oauth_token, :oauth_token_secret + + attr_accessor :username + + attr_reader :twitter, :stream + + @@all = [] # List of all defined bots + def self.all; @@all; end + + def self.get(name) + all.find { |bot| bot.username == name } + end + + def initialize(username, &b) + # Set defaults + @username = username + + # Override with callback + b.call(self) + + Bot.all.push(self) + end + + def log(*args) + STDERR.puts "@#{@username}: " + args.map(&:to_s).join(' ') + STDERR.flush + end + + def configure + TweetStream.configure do |config| + config.consumer_key = @consumer_key + config.consumer_secret = @consumer_secret + config.oauth_token = @oauth_token + config.oauth_token_secret = @oauth_token_secret + end + + Twitter.configure do |config| + config.consumer_key = @consumer_key + config.consumer_secret = @consumer_secret + config.oauth_token = @oauth_token + config.oauth_token_secret = @oauth_token_secret + end + + @twitter = Twitter::Client.new + @stream = TweetStream::Client.new + end + + # Connects to tweetstream and opens event handlers for this bot + def start + configure + + @on_startup.call if @on_startup + + @stream.on_error do |msg| + log "ERROR: #{msg}" + end + + @stream.on_inited do + log "Online!" + end + + @stream.on_event(:follow) do |event| + next if event[:source][:screen_name] == @username + log "Followed by #{event[:source][:screen_name]}" + @on_follow.call(event[:source]) + end + + @stream.on_direct_message do |dm| + next if dm[:sender][:screen_name] == @username # Don't reply to self + log "DM from @#{dm[:sender][:screen_name]}: #{dm[:text]}" + @on_message.call(dm) + end + + @stream.userstream do |ev| + next unless ev[:text] # If it's not a text-containing tweet, ignore it + next if ev[:user][:screen_name] == @username # Ignore our own tweets + + meta = {} + mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } + + reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } + reply_mentions = [ev[:user][:screen_name]] + reply_mentions + + meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' + meta[:limit] = 140 - meta[:reply_prefix].length + + mless = ev[:text] + begin + ev.attrs[:entities][:user_mentions].reverse.each do |entity| + mless = mless[0...entity[:indices][0]] + mless[entity[:indices][1]...-1] + end + rescue Exception + p ev.attrs[:entities][:user_mentions] + p ev[:text] + raise + end + meta[:mentionless] = mless + + # To check if this is a mention, ensure: + # - The tweet mentions list contains our username + # - The tweet is not being retweeted by somebody else + # - Or soft-retweeted by somebody else + if mentions.map(&:downcase).include?(@username.downcase) && !ev[:retweeted_status] && !ev[:text].start_with?('RT ') + log "Mention from @#{ev[:user][:screen_name]}: #{ev[:text]}" + @on_mention.call(ev, meta) + else + @on_timeline.call(ev, meta) + end + end + end + + # Wrapper for EM.add_timer + # Delays add a greater sense of humanity to bot behaviour + def delay(time, &b) + time = time.to_a.sample unless time.is_a? Integer + EM.add_timer(time, &b) + end + + # Reply to a tweet or a DM. + # Applies configurable @reply_delay range + def reply(ev, text, opts={}) + opts = opts.clone + delay = @reply_delay.to_a.sample + + if ev.is_a? Twitter::DirectMessage + log "Sending DM to @#{ev[:sender][:screen_name]}: #{text}" + @twitter.direct_message_create(ev[:sender][:screen_name], text, opts) + elsif ev.is_a? Twitter::Tweet + log "Replying to @#{ev[:user][:screen_name]} with: #{text}" + @twitter.update(text, in_reply_to_status_id: ev[:id]) + else + raise Exception("Don't know how to reply to a #{ev.class}") + end + end + + def scheduler + @scheduler ||= Rufus::Scheduler.new + end + + def follow(*args) + log "Following #{args}" + @twitter.follow(*args) + end + + def tweet(*args) + log "Tweeting #{args.inspect}" + @twitter.update(*args) + end + + def on_startup(&b); @on_startup = b; end + def on_follow(&b); @on_follow = b; end + def on_mention(&b); @on_mention = b; end + def on_timeline(&b); @on_timeline = b; end + def on_message(&b); @on_message = b; end + end +end diff --git a/lib/twitter_ebooks/markov.rb b/lib/twitter_ebooks/markov.rb new file mode 100644 index 0000000..3607b62 --- /dev/null +++ b/lib/twitter_ebooks/markov.rb @@ -0,0 +1,81 @@ +module Ebooks + # Special INTERIM token represents sentence boundaries + # This is so we can include start and end of statements in model + # Due to the way the sentence tokenizer works, can correspond + # to multiple actual parts of text (such as ^, $, \n and .?!) + INTERIM = :interim + + # This is an ngram-based Markov model optimized to build from a + # tokenized sentence list without requiring too much transformation + class MarkovModel + def self.build(sentences) + MarkovModel.new.consume(sentences) + end + + def consume(sentences) + # These models are of the form ngram => [[sentence_pos, token_pos] || INTERIM, ...] + # We map by both bigrams and unigrams so we can fall back to the latter in + # cases where an input bigram is unavailable, such as starting a sentence + @sentences = sentences + @unigrams = {} + @bigrams = {} + + sentences.each_with_index do |tokens, i| + last_token = INTERIM + tokens.each_with_index do |token, j| + @unigrams[last_token] ||= [] + @unigrams[last_token] << [i, j] + + @bigrams[last_token] ||= {} + @bigrams[last_token][token] ||= [] + + if j == tokens.length-1 # Mark sentence endings + @unigrams[token] ||= [] + @unigrams[token] << INTERIM + @bigrams[last_token][token] << INTERIM + else + @bigrams[last_token][token] << [i, j+1] + end + + last_token = token + end + end + + self + end + + def find_token(index) + if index == INTERIM + INTERIM + else + @sentences[index[0]][index[1]] + end + end + + def chain(tokens) + if tokens.length == 1 + matches = @unigrams[tokens[0]] + else + matches = @bigrams[tokens[-2]][tokens[-1]] + end + + if matches.empty? + # This should never happen unless a strange token is + # supplied from outside the dataset + raise ArgumentError, "Unable to continue chain for: #{tokens.inspect}" + end + + next_token = find_token(matches.sample) + + if next_token == INTERIM # We chose to end the sentence + return tokens + else + return chain(tokens + [next_token]) + end + end + + def generate + NLP.reconstruct(chain([INTERIM])) + end + end +end diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb new file mode 100644 index 0000000..4d787b9 --- /dev/null +++ b/lib/twitter_ebooks/model.rb @@ -0,0 +1,120 @@ +#!/usr/bin/env ruby +# encoding: utf-8 + +require 'json' +require 'set' +require 'digest/md5' + +module Ebooks + class Model + attr_accessor :hash, :sentences, :markov, :keywords + + def self.consume(txtpath) + Model.new.consume(txtpath) + end + + def self.load(path) + Marshal.load(File.read(path)) + end + + def consume(txtpath) + # Record hash of source file so we know to update later + @hash = Digest::MD5.hexdigest(File.read(txtpath)) + + text = File.read(txtpath) + log "Removing commented lines and mention tokens" + + lines = text.split("\n") + keeping = [] + lines.each do |l| + next if l.start_with?('#') || l.include?('RT') + processed = l.split.reject { |w| w.include?('@') || w.include?('http') } + keeping << processed.join(' ') + end + text = NLP.normalize(keeping.join("\n")) + + log "Segmenting text into sentences" + + sentences = NLP.sentences(text) + + log "Tokenizing #{sentences.length} sentences" + @sentences = sentences.map { |sent| NLP.tokenize(sent) } + + log "Ranking keywords" + @keywords = NLP.keywords(@sentences) + + self + end + + def save(path) + File.open(path, 'w') do |f| + f.write(Marshal.dump(self)) + end + self + end + + def fix(tweet) + # This seems to require an external api call + #begin + # fixer = NLP.gingerice.parse(tweet) + # log fixer if fixer['corrections'] + # tweet = fixer['result'] + #rescue Exception => e + # log e.message + # log e.backtrace + #end + + NLP.htmlentities.decode tweet + end + + def markov_statement(limit=140, markov=nil) + markov ||= MarkovModel.build(@sentences) + tweet = "" + + while (tweet = markov.generate) do + next if tweet.length > limit + next if NLP.unmatched_enclosers?(tweet) + break if tweet.length > limit*0.4 || rand > 0.8 + end + + fix tweet + end + + # Finds all relevant tokenized sentences to given input by + # comparing non-stopword token overlaps + def relevant_sentences(input) + relevant = [] + slightly_relevant = [] + + tokenized = NLP.tokenize(input) + + @sentences.each do |sent| + tokenized.each do |token| + if sent.include?(token) + relevant << sent unless NLP.stopword?(token) + slightly_relevant << sent + end + end + end + + [relevant, slightly_relevant] + end + + # Generates a response by looking for related sentences + # in the corpus and building a smaller markov model from these + def markov_response(input, limit=140) + # First try + relevant, slightly_relevant = relevant_sentences(input) + + if relevant.length >= 3 + markov = MarkovModel.new.consume(relevant) + markov_statement(limit, markov) + elsif slightly_relevant.length > 5 + markov = MarkovModel.new.consume(slightly_relevant) + markov_statement(limit, markov) + else + markov_statement(limit) + end + end + end +end diff --git a/lib/twitter_ebooks/nlp.rb b/lib/twitter_ebooks/nlp.rb new file mode 100644 index 0000000..bd8804a --- /dev/null +++ b/lib/twitter_ebooks/nlp.rb @@ -0,0 +1,154 @@ +# encoding: utf-8 +require 'fast-stemmer' +require 'highscore' + +module Ebooks + module NLP + # We deliberately limit our punctuation handling to stuff we can do consistently + # It'll just be a part of another token if we don't split it out, and that's fine + PUNCTUATION = ".?!," + + # Lazy-load NLP libraries and resources + # Some of this stuff is pretty heavy and we don't necessarily need + # to be using it all of the time + + def self.stopwords + @stopwords ||= File.read(File.join(DATA_PATH, 'stopwords.txt')).split + end + + def self.nouns + @nouns ||= File.read(File.join(DATA_PATH, 'nouns.txt')).split + end + + def self.adjectives + @adjectives ||= File.read(File.join(DATA_PATH, 'adjectives.txt')).split + end + + # POS tagger + def self.tagger + require 'engtagger' + @tagger ||= EngTagger.new + end + + # Gingerice text correction service + def self.gingerice + require 'gingerice' + Gingerice::Parser.new # No caching for this one + end + + # For decoding html entities + def self.htmlentities + require 'htmlentities' + @htmlentities ||= HTMLEntities.new + 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('…', '...') + end + + # Split text into sentences + # We use ad hoc approach because fancy libraries do not deal + # especially well with tweet formatting, and we can fake solving + # the quote problem during generation + def self.sentences(text) + text.split(/\n+|(?<=[.?!])\s+/) + end + + # Split a sentence into word-level tokens + # As above, this is ad hoc because tokenization libraries + # do not behave well wrt. things like emoticons and timestamps + def self.tokenize(sentence) + regex = /\s+|(?<=[#{PUNCTUATION}])(?=[a-zA-Z])|(?<=[a-zA-Z])(?=[#{PUNCTUATION}]+)/ + sentence.split(regex) + end + + def self.stem(word) + Stemmer::stem_word(word.downcase) + end + + def self.keywords(sentences) + # Preprocess to remove stopwords (highscore's blacklist is v. slow) + text = sentences.flatten.reject { |t| stopword?(t) }.join(' ') + + text = Highscore::Content.new(text) + + text.configure do + #set :multiplier, 2 + #set :upper_case, 3 + #set :long_words, 2 + #set :long_words_threshold, 15 + #set :vowels, 1 # => default: 0 = not considered + #set :consonants, 5 # => default: 0 = not considered + #set :ignore_case, true # => default: false + set :word_pattern, /(? default: /\w+/ + #set :stemming, true # => default: false + end + + text.keywords + end + + # Takes a list of tokens and builds a nice-looking sentence + def self.reconstruct(tokens) + text = "" + last_token = nil + tokens.each do |token| + next if token == INTERIM + text += ' ' if last_token && space_between?(last_token, token) + text += token + last_token = token + end + text + end + + # Determine if we need to insert a space between two tokens + def self.space_between?(token1, token2) + p1 = self.punctuation?(token1) + p2 = self.punctuation?(token2) + if p1 && p2 # "foo?!" + false + elsif !p1 && p2 # "foo." + false + elsif p1 && !p2 # "foo. rah" + true + else # "foo rah" + true + end + end + + def self.punctuation?(token) + (token.chars.to_set - PUNCTUATION.chars.to_set).empty? + end + + def self.stopword?(token) + @stopword_set ||= stopwords.map(&:downcase).to_set + @stopword_set.include?(token.downcase) + end + + # Determine if a sample of text contains unmatched brackets or quotes + # This is one of the more frequent and noticeable failure modes for + # the markov generator; we can just tell it to retry + def self.unmatched_enclosers?(text) + enclosers = ['**', '""', '()', '[]', '``', "''"] + enclosers.each do |pair| + starter = Regexp.new('(\W|^)' + Regexp.escape(pair[0]) + '\S') + ender = Regexp.new('\S' + Regexp.escape(pair[1]) + '(\W|$)') + + opened = 0 + + tokenize(text).each do |token| + opened += 1 if token.match(starter) + opened -= 1 if token.match(ender) + + return true if opened < 0 # Too many ends! + end + + return true if opened != 0 # Mismatch somewhere. + end + + false + end + end +end diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb new file mode 100644 index 0000000..c39a21d --- /dev/null +++ b/lib/twitter_ebooks/version.rb @@ -0,0 +1,3 @@ +module Ebooks + VERSION = "2.0.7" +end diff --git a/script/process_anc_data.rb b/script/process_anc_data.rb new file mode 100755 index 0000000..bc1af60 --- /dev/null +++ b/script/process_anc_data.rb @@ -0,0 +1,19 @@ +#!/usr/bin/env ruby +# encoding: utf-8 + +require 'json' + +freqmap = {} + +data = File.read("data/ANC-all-count.txt") +data = data.unpack("C*").pack("U*") + +data.lines.each do |l| + vals = l.split("\t") + + freqmap[vals[0]] = vals[-1].to_i +end + +File.open("data/wordfreq.json", 'w') do |f| + f.write(JSON.dump(freqmap)) +end diff --git a/skeleton/.gitignore b/skeleton/.gitignore new file mode 100644 index 0000000..a1a0c1c --- /dev/null +++ b/skeleton/.gitignore @@ -0,0 +1 @@ +corpus/* diff --git a/skeleton/Procfile b/skeleton/Procfile new file mode 100644 index 0000000..9357bc0 --- /dev/null +++ b/skeleton/Procfile @@ -0,0 +1 @@ +worker: ruby run.rb start diff --git a/skeleton/bots.rb b/skeleton/bots.rb new file mode 100644 index 0000000..b409860 --- /dev/null +++ b/skeleton/bots.rb @@ -0,0 +1,41 @@ +#!/usr/bin/env ruby + +require 'twitter_ebooks' + +# This is an example bot definition with event handlers commented out +# You can define as many of these as you like; they will run simultaneously + +Ebooks::Bot.new("{{BOT_NAME}}") do |bot| + # Consumer details come from registering an app at https://dev.twitter.com/ + # OAuth details can be fetched with https://github.com/marcel/twurl + bot.consumer_key = "" # Your app consumer key + bot.consumer_secret = "" # Your app consumer secret + bot.oauth_token = "" # Token connecting the app to this account + bot.oauth_token_secret = "" # Secret connecting the app to this account + + bot.on_message do |dm| + # Reply to a DM + # bot.reply(dm, "secret secrets") + end + + bot.on_follow do |user| + # Follow a user back + # bot.follow(user[:screen_name]) + end + + bot.on_mention do |tweet, meta| + # Reply to a mention + # bot.reply(tweet, meta[:reply_prefix] + "oh hullo") + end + + bot.on_timeline do |tweet, meta| + # Reply to a tweet in the bot's timeline + # bot.reply(tweet, meta[:reply_prefix] + "nice tweet") + end + + bot.scheduler.every '24h' do + # Tweet something every 24 hours + # See https://github.com/jmettraux/rufus-scheduler + # bot.tweet("hi") + end +end diff --git a/skeleton/run.rb b/skeleton/run.rb new file mode 100755 index 0000000..5b7b308 --- /dev/null +++ b/skeleton/run.rb @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby + +require_relative 'bots' + +EM.run do + Ebooks::Bot.all.each do |bot| + bot.start + end +end diff --git a/test/corpus/0xabad1dea.tweets b/test/corpus/0xabad1dea.tweets new file mode 100644 index 0000000..4e4f318 --- /dev/null +++ b/test/corpus/0xabad1dea.tweets @@ -0,0 +1,14696 @@ +# 382286831561080832 +@Ionustron I tend to be really enamored of the sounds I can make playing two squares together. Then I'm all out of squares. :( +RT @rantyben: People who are NOT absent minded will never know the unbridled joy of opening the fridge and finding breakfast pizza. +Chiptune I made one. https://t.co/QH7oin7RV3 *thud* +@xa329 if they were they'd be a) not up to standards currently enforced b) already crashed. +I may not be the greatest composer to ever walk the earth but never let it be said I don't obsess about square wave timbre +@Xaosopher yep looks like he simply blocked anyone who said anything even the slightest bit critical +@Rosewriter2 isn't... reading books and writing letters... what computers are for? +@sakjur @IsTouchIdHacked there are several methods on the webpage now http://t.co/tzeyMIhJnR +@kll @IsTouchIdHacked @Arturas well, I don't have ten thousand dollars to spare, but $25 is infinitely better than $0 eh? +I did not formally pledge @IsTouchIdHacked but I have sent them a little something in @arturas's honor +@frkbmb @phaz3zero @flyingparchment @trutherbot oh look someone who doesn’t know difference between Freedom of Speech and Being A Jerk +@frkbmb @phaz3zero @trutherbot everyone knows human beings are as biologically and culturally simple as carrots! Easy peasy get it peas. +@glassresistor EVERY DAY IN EVERY GAY +@almightygod @WhosTheWiser what a perfect example of love joy peace patience kindness goodness faithfulness gentleness and self-control +I’m told it’s Bisexual Visibility Day. So… GIRLS ARE PRETTY CUTE SO ARE BOYS EVERYONE IS REALLY I just like nerds in general +Quick! Someone go back in time and tell the Nintendo designers that it is MISSION CRITICAL they fit one more !@#$ square wave in this thing +@mikedoherty_ca yeah his name is @arturas +@Dan2552 the people in charge did say it was not being awarded on the video alone as the video is weak. +@Dan2552 anyone with a well-established reputation for having performed fingerprint hacks in the past and has well-known witnesses yes +@0xcharlie @Arturas no you would still have me I would never make fun of you Dr. Chopshop +@iPlop when they took questions from the press etc. they clearly said: no, no, fake/severed finger will not work, we tested +@iPlop it was marketed as: requires. the. real. finger. +@TehGrumpyDude not really! But it had to be proven. +@PxlPhile talking about someone on twitter without atting their handle. Or in this case, talking about a thing and not linking it +.@skattyadz probably, but don’t say “oh it must be a real live finger to work!” and expect us to not try really hard :) +The community broke the marketing promises of Touch ID on a scale of *hours* and we outed a toxic fraud. Cheers all around +RT @hdmoore: if (security_contest_bounty > 1000.00) { find_any_excuse_not_to_pay(); rewrite_history(); turn_off_cellphones(); exit(poorly)… +@jasonmp85 @bstreiff it was -ALWAYS- about using a 2D fingerprint taken from a smooth surface and @arturas is a media whore fraud +@jasonmp85 @bstreiff um, no, that's never what #istouchidhackedyet was, source: I am kinda you know friends with all these people +Congratulations to Starbug and the CCC. Can we hack it? YES WE CAN +@USP_Talon lol pretty sure that’s just art and it’s intended to work with USB game pads in general +RT @nickdepetrillo: It's official. Starbug of the CCC has been declared the winner of #istouchidhackedyet http://t.co/MniI50BDZ4 Congrats! … +RT @chriseng: He forgot [7] Mercury must be in retrograde, and the blue moon must be visible in the night sky from Apple campus. https://t.… +@spacerog I’m pretty sure that happened as soon as the first waves of the gigabyte download completed. +All the gamers are subtweeting Steam OS so I had to go find the actual link http://t.co/R8UC9V9Bir ooh pretty shiny +RT @gsuberland: BlackBerry is being acquired. No surprise there! http://t.co/YWBpHg8xp3 +@octal @Arturas allegedly involved with occupy chicago or something like that? Allegedly a twit then too. +I notice the comments on his bloggy thing aren't moderated. What a strange choice. +@filcab yes, exactly. +In which @arturas completely backs down AFTER THE FACT of the CCC breakin. What. a. twit. https://t.co/I06G5Pp2gY +@oh_rodr that's pretty solid evidence those few hundred thousand followers are fake eh. No celeb would tweet their number +@bryanbrake @pxlphile I am amused at this avatar<-->name mismatch http://t.co/vdG8ZO1GXI +@bryanbrake allegedly +Successfully unfollowed and blocked by @arturas with one tweet! Is good day. +@oh_rodr @chriseng @Arturas yeah... we all got professional ethics to keep in mind +@mckeay @thegrugq I have not done anything so evil as to deserve that +@xa329 I assure you I am utterly 100% aware of that :) It was kinda my topic of research for several months recently... +@dipidoo yeah, we shielded things, but the cargo cult fear of it remained +@xa329 yeah, and then we fixed it. Go humans! (unironic, for once) +I had a dream that @thegrugq was showing me around Vegas. I'm putting this one down as one of those nightmares where you almost die +@dipidoo if it was actually a problem compared to the hardening airplanes already have, we'd find out from all those crashes :) +It's as rational an explanation as any as to why being bathed in the airport’s electronic interference is okay but that kindle is too much +Me in 20 years: "back in MY day, they made us turn off personal computers on airplanes, for fear they were possessed o' the devil" +RT @ternus: FAA to eliminate turn-off-electronics-on-takeoff-and-landing rule. Unreasonably happy about this. http://t.co/BfhzgaXyLs +@chriseng I mean everything he's done as a whole +Though actually there will probably be a Surface 3 by the time I upgrade Baby Acer, if they keep at this pace. +@chriseng @Arturas @violetblue what an extraordinarily efficient way to annoy as many professional hackers as possible +RT @chriseng: As expected, @Arturas has deleted all of his tweets that were referenced in @violetblue's ZDNet article: http://t.co/9vESix0z… +So if Surface Pro 2 can deliver eight real hours without the external battery I will consider it when my upgrade cycle comes around +RT @focalintent: With attitudes behind a FAQ like this http://t.co/qVGV7GLu84, no surprise women turned down http://t.co/6kiDqsPK5x /via @H… +@jeremiahfelt yes, but I'd shell out for the larger SSD +RT @travisgoodspeed: When I was in high school, we joked about teachers seizing books on PHP as drug paraphernalia. Nowadays I'm not so sur… +I didn't get a Surface Pro 1 because I got an Acer tablet that weighed a little more but actually gives eight hours or more on an i5 +RT @kristenvanschie: CNN correspondent says US "home to world's largest population of Somali Americans". Yes, mate. That's why they're call… +I'm glad I didn't cave to the sale impulse to pick up a a surface rt at $250 last week. And those new colors are actually better. +@m1sp "wow, I don't know anything about Windows. Hey Joe? What's one folder on Windows that ALWAYS exists?" +RT @m1sp: Surely there must be more sensible defaults for those fields, Mercurial. https://t.co/IUrI4odfPJ +If you haven't seen it before, I still think this is the best vocaloid video ever made http://t.co/P0pCyyDtq5 catchy, arty with a full story +@itgrrl @jjarmoc use a password with alpha and you will get the full alpha keyboard complete with fancy unicodes +"I'm not allowed to use lighters anymore" "You ever were?" "It was more of an oversight" "He should know to whitelist instead of blacklist!" +@thegrugq @marshray @nickdepetrillo I would like it on the record that I am extraordinarily delicate but that's just because I'm crazy +@nickdepetrillo aww. Chin up :( +@nrr I think the specific place is called Nara +@nrr actually I'm pretty sure that's in Japan +@a_greenberg we're in Poe's Law territory now +@wookiee but it was *specifically advertised* as being immune to these sorts of attacks - that you need the real finger +@wookiee why not? +RT @nickdepetrillo: The only individuals who will review CCC and Starbug's submission (if they so choose) to http://t.co/MniI50BDZ4 is @Err… +@DrPizza because they haven't been near good wifi for a couple days due to travel </hypothesis> +@QuantumG @vogon that is at least more rational than blaming users for not being programmers or programmers of the correct sort or +@ryan @chronic to be sure, I do not mind using fingerprint as *weak* security. But I do mind using it alone for anything serious +@ryan @chronic keys: by nature completely replaceable. And you don't drop copies of them in a thousand places a day. +RT @vogon: has the argument "it's open source, so you can contribute!" ever been wielded without a subtext of "it's your fault that it's ga… +RT @erdgeist: The hardest part about hacking #touchid was to get our hands on an iPhone +@jjarmoc I can't believe it isn't, it's so obvious +RT @jjarmoc: I really wish touchid+pin were an option. +@Talen_Lee IT'S ONE OF THOSE SLIDING ONES +@kx001 I'm a mix of Scottish and Irish, which people do seem to pronounce as Scotch-Irish around here. +@Talen_Lee not in the closet, he's way out of the closet. +@Talen_Lee nah, it's just that the door in question is in fact what's keeping a character who happens to be bi stuck inside. +@Talen_Lee not the kind that you bar shut, though, or it'd kinda be missing the point. Which is to keep the bisexual chars in the dungeon! +@kx001 I'm... pretty sure it's called scotch as short for Scotch Whiskey because it is Whiskey of Scotch Origin +Encyclopedia Brown would have caught that I described the same door as swinging both in and out in two different chapters. Oops. #editing +. @yoisthisracist I need a ruling on (said to a messy person who might be me): "Are you sure you're Scotch-Irish and not Slobbic?" +# 381925308061855744 +@talldarknweirdo the point being that we leave clear 2D fingerprints on accessible objects fairly often. +@talldarknweirdo he is my friend. We've talked about this. He has repeatedly used terms like "such as a beer mug." +@talldarknweirdo that never was part of the requirements. Just that the source material was 2D, not 3D. +@Maclark89 and, as crypto, is a vector of last resort :) the whole bet was originally based on taking a 2D print, the "easy" vector. +@Maclark89 ummmmmm..... no. Definitely, absolutely not. That doesn't even really make sense in the context of a fingerprint scanner. +@Maclark89 it doesn't matter! If the CCC claim is legitimate, then the sensor is hacked according to specification. +@Maclark89 um, well, the *whole point* is that it was specifically marketed to only work for *the real, fleshly finger.* +http://t.co/tzeyMIhJnR woo go ccc +@redsoxunixgeek I've bought iPad 1, 3 and 4 and none of them did. +@chvest all I did was google "next Apple event" and that's the word on the street. +Apple logic: iMac comes with free cleaning cloth. iPad doesn't. +@rgbkrk except you don't really "pick up" an ebook... marketing/charts are really important here. +@DIFion I'm guessing so. +Hacker Typer for history majors http://t.co/X6zYQRks1A +@rgbkrk yeah but, you get one shot at a first impression. +@Xaosopher I'm abusing a coworker who has turned down beer in favor of unspecified future favors. Ominous. +@Xaosopher well, let's assume I know I'll literally never be 100% satisfied and we have to cut the tail somewhere :( +@chriseng hey b-b-boss... you'll read it, right? :'( +It looks like Apple's next event is Tuesday the 15th so maybe I should aim for Tuesday the 8th? Will I be satisfied with editing in 2 weeks? +So far 3/4 of you have said Tuesday so there must be something to this +@pusscat is there a Science(tm) behind this or did you roll 1d7? +I feel like I should pick a date in a few weeks' time and commit to it... what's a good day of the week to launch an ebook?! +@bbfreak HOWEVER - don't get the 64GB model - I cheaped out - and now all my games are on external USB :p +@bbfreak and Morrowind on all the highest settings, which doesn't give it pause. +@bbfreak it's fine for "typical" games ie Not Skyrim. I've played Torchlight 2, Guild Wars 2 on modest settings, Eve Online, etc. +@fuzzmz @mikko they probably went on a takedown rampage already because it hit the tech news. +@m1sp what purposes are that +@drraid I think it'd qualify. I think what doesn't qualify is sticking the victim's finger into a 3D modeler +RT @mikko: Take your guess: Which one of these would you download if you're looking for BlackBerry BBM for Android? http://t.co/cGL8dGI7rS +@kivikakk I never got being opposed to the word "cisgender" in particular. Like how is it offensive or weird to describe the "default" +@Packetknife @barkybree if you mean the different splinters of Christianity, haha no, they waste a lot of resources on infighting. +@Packetknife they're being asked to get along with everyone else just like everyone else has to get along with them. My tears, they flow. +@Talen_Lee one of the boys is pretty tsundere! That's right, a tsundere *boy* +RT @lozzd: Etsy has a new HTTP response code "439 Request Not Handmade", for if we suspect you're a robot scraping/abusing us. Artisanal re… +@int_SiPlus_void but my mind is not made up what to do about the L's +@int_SiPlus_void except the only other repeating letters... don't? >.> +@vRobM yes it looked kind of silly the other way +@NireBryce in my name? okay +it's 2am let's typeset stuff http://t.co/RFsj56jZmc +@bhelyer nope starving is part of the authentic experience +Yessss my artist sent me the inks for my commissioned artwork of my own favorite character, I am most pleased +@ZadowSapherelis replied! +@m1sp hmm hmm. http://t.co/78u7qplLAl +RT @TweetsofOld: In 100 years, insect screens will be unnecessary. Mosquitoes, flies and roaches will have been exterminated. NY1900 +@ZadowSapherelis yep! +@thegrugq @nickdepetrillo n-n-no Your mom is probably a crime boss or something I bet +@bascule @matthew_d_green @SquareEng I may be thinking of some other brand of crypto stick then +@bascule @matthew_d_green dunno. Aren't those things out of stock all the time ? +@bascule @matthew_d_green somehow I don't suspect google authenticator would go over too well with my employer + our customers +@thegrugq @nickdepetrillo don't make me hate you, you are totally my favorite creepy old man +@thegrugq I guess to be fair to @nickdepetrillo I have to hate you too +@m1sp high school AU where Diadem Correl is Tsovinar's senpai +"For the purposes of this magic system, light is not a wave." Takin' stances on the hard problems. +@pettybooshwah @chronic you mean like @nickdepetrillo +RT @chronic: enrolled my nose in Touch ID. it works flawlessly. +@nickdepetrillo @thegrugq awkwardly covering up to the mutual followers I see! +@nickdepetrillo what kind of girl do you take me for http://t.co/bG13skoZmZ +@nickdepetrillo @thegrugq I hate you +@The1TrueSean oh also that pic is kinda spoilery! Oh well it becomes obvious fairly quickly. +@The1TrueSean it turns out Barsamin's entire wardrobe is green. I swear, he's a closet Slytherin +I drew an angry boy this time. He's angry because he found out green doesn't coordinate with lightning magic http://t.co/zpfDEL6LMT +RT @xor: Amazing "Marriott hotel carpet" cosplay and a ridiculous cease-&-desist from carper designer: http://t.co/kJVFm2pfYf http://t.co/n… +@Talen_Lee I'm not. +# 381561194722906113 +@eevee zomg you hacked my corporate email +@The1TrueSean and I would read the back covers and so as a 10yo I was convinced Martha's Vineyard especially was murder city +@The1TrueSean it was several different ones, mostly women I think. He would get them at the local library +@m1sk1t hmm this is a good one +@The1TrueSean and the result is that every millionaire vacationing under a secret identity gets murdered after taking a local lover ! +@The1TrueSean oh they are all set in modern times. But there are a lot of authors who live there, and as a result, they set novels there +@The1TrueSean based on my grandfather's endless supply of novels, Cape Cod and Martha's Vineyard are good places to get murdered +RT @deluxvivens: So the forensic dye used to document bruises, injuries after an assault? Dont always work on dark skinned women. http://t.… +RT @sergeybratus: @tqbf Automated repetition is very common on the web; even guessing is. We need a theory that wouldn't condemn them. +@tqbf @ErrataRob @sergeybratus ie I absolutely did not do anything to get my vanity domain for my irc shell listed but it is +@tqbf @ErrataRob @sergeybratus you CAN take steps, but they tend to just show up anyway +@The1TrueSean I was honestly assuming it was Cape Cod +RT @steveklabnik: http://t.co/OBxHPScXPG -> control-f 'Bsafe' :cry: +@ErrataRob @nickdepetrillo ewwww +@ExpBelieve @vogon are these all from the same book or something? Do want +@WhiteMageSlave did you lose any sunglasses +@killerswan @lindseybieda @wilkieii and I like that about twitter, but twitter is not the only application on the internet +RT @lindseybieda: @0xabad1dea So, myself and @wilkieii worked on http://t.co/1rGlFgfYdn to try and represent the complexity of gender. +@pusscat yep +Pretty strange that I feel "*definitely* female" but in a slightly different cultural context I would be considered way too masculine +@eevee heheh well I blocked them so if you fight about it, you're gonna sound like a crazy person if you leave me on the cc ;) +A major flaw in human experience is to assume that "your" experience or the "common" experience is "the" experience +Two different people wrote in to let me know that experiencing gender as other than strict m/f is "laughable." Only two is progress I guess +@TouchMyMalware the next boat to Prejudiced Twit Town leaves at 6pm. You can make it if you hurry. Blocked +@PWTerpstra @Jennimason0990 @varka lol fun fact I can pronounce those dang g's and ch's... if I speak in a whisper. But not at full volume. +@bobpoekert ridiculous sideburns? it's legit +.@Jennimason0990 yes. Dutch people are dragons. This is why their language has sounds no mortal human can pronounce +Wiki gem of the day: Japanese depiction of Dutch people, 1708 http://t.co/WuYpbdumFr +Twitter's lack of context for suggestions is sometimes tragic and sometimes, well, hahaha (cc @thegrugq ) http://t.co/j8lTIYtJl6 +It's 4:13 PM. I am just now having my morning coffee. I'm not sure what happened or where I went so wrong +@nickdepetrillo no. Someone else tweeted it earlier. I’m guessing either @osxreverser or @miaubiz +@flipzagging redditors did some math and one explanation is tenths of a second since dawn of year 2000 - overflows 32 bits +It is the crankiest of crank publications but science bloggers keep falling for it like they have no ability to google +Public service announcement: if you ever see “science news” which cites the Journal of Cosmology, slap the writer and burn the blog down +A moment of silence for a victim of integer overflow http://t.co/IIykIu6hYR +@skynetbnet @GeekGurlPhD okay time to block you for arbitrary prejudice against the reported experience of others goodbye +@skynetbnet @GeekGurlPhD this is the second time in a few days you’ve randomly said something rude, is there a particular reason? +@halvarflake no, it’s okay, I know it is the truth, and the truth hurts :p +@halvarflake ouch :( +RT @GeekGurlPhD: Are you a queer, bi, trans, asexual, pan or gender fluid video gamer? Your input is needed for a new book project http://t… +Got deep into a detailed reply to someone on reddit only to realize they misunderstood the definition of a virtual machine *backspace* +@chunter16 the pin situation has changed 0%. The change is there’s a faster shortcut if you have the right finger. +@chunter16 never, because it will fall back to pin +#IsTouchIDHackedYet no but you can START with a gelatin finger, which is promising. http://t.co/To6PHSX95E +@chriseng “it is highly unlikely that Wikileaks would trust an untrustworthy 19yo” uh, about that… +@m1sp we are not an em— :( +RT @nickdepetrillo: The only authoritative sources for http://t.co/6Sr6c7RwBC are myself and @ErrataRob. +RT @8bitpimp: Family values - Nintendo Style https://t.co/6Rcrpde16p +RT @dotMudge: Rhyme of the day: look real close and you will see that these three fruits have identities http://t.co/lWsytKg4AB +RT @dotMudge: Having fun lifting prints, cutting dies, and authenticating 'rind-prints'. My colleagues are brilliant :) http://t.co/n4UCsw4… +@i0n1c I don’t think so, one doesn’t upgrade from an iPhone 5 to a 5c, one gets a 5c for their teenager's birthday. +RT @ciphergoth: "sudo make me a sandwich" as I most often experience it http://t.co/7BFTs9kHQd +@Myriachan the book is already finished! I'm just editing it. +RT @chriseng: The amount of text dedicated solely to villanizing and exaggerating the sophistication of modifying a User-Agent is incredibl… +@thegrugq is that hashtag a compliment or a condemnation +@Ruzvay heh, thanks ^_^ +@Ruzvay Wow, sure, no "creative imagination" because I was influenced by something, which all creative people are? :\ +@iPlop @FiftyThree their dang loupe makes me nauseous in the name of forced skeu. Pinch to zoom is where it's at +@iPlop nope, wacom's ipad app +.@Ruzvay no, my own character, though my perception of what magic looks like is pretty obviously influenced by Avatar. +If you like “Angry women with magic and weapons: the sketches” you’ll love “Angry women with magic and weapons: the book” +RT @ErrataRob: @csoghoian I like the reasoning that since AT&T didn't offer a bounty, that it's illegal to point out their flaws +RT @csoghoian: Gov in weev appeal to chilled security researchers: Take your bug bounty money and quit your whining. (p64) http://t.co/BcTK… +I tried very hard http://t.co/c8srfcSk9O +@dangoodin001 @martijn_grooten only a bet that the NSA’s insider info won’t ever leak. Maybe it won’t! +RT @arw: Want to know (a little bit) more about the iPhone 5s Touch ID? See http://t.co/1BaKe08rWo +@m1sp he is! He revels in it +@dangoodin001 I consider there being n >= 1 adversaries who can crack it to be “a weakness”, maybe they do not… +# 381202400729522177 +@m1sp my husband finally got to the part where Solornel pushes Tsovinar off and he thought it was hee-lar-ious so I think I'm on track :p +@eevee in any case, I break clients too often as it is ;) +@eevee and that's what I get for casually tweeting without tearing the html open :D +@eevee so like I never figured out: is that SUPPOSED to be alien heads or does OSX/iOS miss some glyphs +RT @jjarmoc: This, right here, is the best thing to come of #istouchidhackedyet so far. http://t.co/1lXFgq1kQ3 +@johanjortso I’m just gonna go ahead and predict: no. +linux.jpg http://t.co/XQXNpfo7dM +@USP_Talon so I just realized your avatar is a space ship and not a satanic porcelain doll with dark hair. I'm disappointed :p +@mbhbox they are the best; do not question me!!!! +I just swooned for OSX's Australian Male text-to-speech voice. BRB listening to my reading queue as read by a fake Australian +And let me tell you I have *been* around that biology education block. +I have no words strong enough for how toxic teaching individual religions as equal to observed scientific reality is http://t.co/T8KjXqLh5P +Editin' my novel, editin' my novel, having existential crises over the placement of commas, I'm editin' my novel. +When the sun is in my eye and I squint, I always see the shape of a butterfly in the sunburst. That doesn't make me otherkin, does it? +@tangenteroja @4Dgifts all its flaws aside, I am at least reasonable sure POSIX compliance is not literally a spy agency conspiracy. +@dakami and we need measurements to determine if we're talking a nice, comfortable fuzzy or six-foot strands of killer hair +@geekable http://t.co/tUtdihgqie +@tangenteroja @4Dgifts maybe that would be a reasonable cop out if you know it wasn’t already determined to be an NSA backdoor +RT @redenz: TouchID. Used a combination of 4 fingers from 2 different people to set up a single fingerprint. All 4 seem to work just fine. +RT @redenz: @reaperhulk @c7five Also created a print using my thumb and index finger combined into a single "fingerprint".Either finger unl… +RT @eevee: i keep being briefly confused about why neal stephenson has a kickstarter to work on a c compiler +@tangenteroja @4Dgifts the issue isn’t that it was *supported*. It was going to be supported. It’s that it’s the *default* for WEIRD reasons +@feralchimp @thegrugq yeah I guess what I’m getting at is there should have been more public shaming of RSA. I’m all about the shaming :) +RT @zooko: We just made reviewing patches even *more* fun—imagine the patch author has a gun to his head: https://t.co/tfj1TYgmi8 +RT @travisgoodspeed: I for one believe RSA's latest announcement that @unicorn_threat is behind the recent #BSafe bugs. +@thegrugq oh I don’t think that. I just wonder if we could've maybe gotten this in particular fixed years ago if things had gone differently +@eevee yes :( +.@thegrugq everyone qualified to notice that the default algo was one under serious suspicion +However I kinda wonder if we collectively screwed up in not really noticing this and making it a Big Deal sooner (2/2) +I see no rational basis on which RSA can justify keeping it as the DEFAULT after the research published in 2006/2007 (1/2) +@vogon it’s slow, and there are multiple papers attacking it as flawed, so let’s keep it as the default +@eevee I see you don’t work for a Christian book store (for some reason this is the default example for unreasonable bosses) +So RSA’s defense is actually that they used the slowest algo as the default because elliptic curves were a hot trend. Brilliant +@dinodaizovi aww +@eevee yes, some people are just convinced they’ll get fired if their boss finds out they say things on the internet +@tangenteroja @4Dgifts and the very NIST standard which defines it defines several others; no rational reason it’s the default. +I totally and utterly believe you http://t.co/9TBEr5wtnp +@Paucis__Verbis @michaelossmann @marshray I didn’t even know there was such a thing actually +RT @ShuttleCDRKelly: In one night, at least 23 people were shot in Chicago, incl. a 3 year old. This is not the America we strive for. http… +RT @matthew_d_green: New blog: RSA warns developers not to use RSA products. With annotated quotes by Sam Curry, CTO! http://t.co/PfB5kMNPOr +@michaelossmann @marshray I’m interested. But in that place I was ten years ago wrt hacking: not feeling very informed. +RT @innismir: This is silly, but it's a great example of knowing bad actor's TTP and exploiting weaknesses and applies to CND -- http://t.… +RT @thegrugq: @0xabad1dea it isn't even real money. It's a pledge, completely valueless +How to be a social media jerk: see small-scale community funding, blow it out of the water with corporate $$$ solely to get media attention +RT @kaepora: I need to go on Etsy & sell framed prints of this actual quote by RSA’s CTO: “Dual_EC_DRBG was an accepted, publicly scrutiniz… +@vogon no you’re reading it in the wrong tense. Once upon a time, it used to x. +@mbhbox it’s kind of the “root is root” problem though: if you have this access you can probably just access the plaintext directly +RT @strcpy: EVERYONE, http://t.co/xoC3VdJMIU NOW OPERATIONAL, JUST TYPE YOUR DOMAIN INTO THE BOX, EVERYTHING ELSE IS DONE FOR YOU! +@mbhbox “worms” in the technical sense generally don’t happen anymore. But you can compromise a host’s entropy if you’re running locally yes +But really when I get clear and consistent results like this who can blame me http://t.co/4nsOp5Hb0U +I think @pusscat is silently judging me for being a *static* analysis researcher who doesn't get my hands dirty with debuggers +@pusscat no, I am not saying that at all! I don't like gdb either. And have occasion to use it only a little more often. +@pusscat seriously though this is the first time in a rather long time I have tried to muck around with a running process on Windows +@pusscat :( then what have I been doing all these years +@pusscat a Macintosh? +This is the first time I've tried to use WinDBG in several years, and now I remember why. +RT @mcclure111: So http://t.co/ScdpuT8Vjc is doing Typewriter Art Week. 70s ascii art http://t.co/ohLYKhQfKR http://t.co/o1B23z4hFA http:/… +@dangoodin001 aww, so I’m not getting a new one for free then +RT @dangoodin001: The statement came from an RSA spokesman after I asked if Dual_EC_DRBG was used to generate the cryptographic seeds for S… +RT @dangoodin001: Dual_EC_DRBG is "contained nowhere in RSA SecurID or the RSA Authentication Manager software; it uses a different FiPS-co… +RT @twittersecurity: Getting a new phone? Remember to disable login verification on your old phone so you don't get locked out. Then enable… +@matthew_d_green @mattblaze @jjarmoc @nickm_tor @NemoPublius this should work http://t.co/tCx4D97PU0 +Dear GCHQ: I have been to Belgium there is nothing there worth stealing except candy bars +@mattblaze @matthew_d_green @jjarmoc @nickm_tor @NemoPublius a Former RSA Employee was vehemently defending that quote on Ars +You can’t seriously tell me there is anyone on earth who considers Belgium some kind of threat. http://t.co/esajPlW8ar (<3 you Belgians) +@solak unable to make request, please try again later. +@ra I am the only one strong enough for this terrible burden +RT @vogon: @0xabad1dea (except when it does) +RT @vogon: @0xabad1dea remember the mnemonic: syswow64 doesn't contain 64-bit DLLs and system32 doesn't contain 32-bit DLLs +@pawel_lasek You are indeed presuming a lot :) The client refuses to post a tweet which contains within it the tilde character. +Thanks Windows and your system32/no the other system32 nonsense. I enjoy not being able to find files I know exist from a file dialogue +@xorbyte hmm, true... +@innismir @billpollock and our schools seem specifically engineered to stomp that out like a dropped cigarette +@landley pretty sure this is entirely on some team at Twitter +@anathem Twitter for Windows 8 decided it doesn't like tildes and I couldn't get tweets to go through. +@innismir @billpollock I've seen kids of all ages make dramatic recoveries, it's not 100% decided beforehand. +@adamauckland so guess who just discovered Twitter for Windows 8 chokes on tildes +@anathem I may have sent a tweet to you when I meant to the other person starting with "a" I am interacting with XD +Holy pants. Twitter for Windows 8 cannot post a tweet with a tilde in it +@anathem I am trying to tweet at you and Twitter for Windows 8 is flipping out. This is a test without the special chars. Going through? +I have managed to use computers for twenty years without ever figuring out what "scroll lock" was supposed to do, actually. +*reads debugger documentation* "Press Ctrl+Break to..." *looks down at keyboard* Hrrrm. +So I figured out my audio problem - it actually wasn't Windows 8's fault this time - just Steam randomly deciding it was quiet time. +RT @SecurityHumor: Fool disclosure: That guy in the office next to you who exclaims "Whoops, looks like I clicked a malicious link again!" +@gcluley @OhThisBloodyPC excuse me? +RT @JohnHedge: Apple KB article for Control Center, kudos to whomever made the screenshot http://t.co/FxSYcmYz1a cc @dinodaizovi +@tmanning @thegrugq @chriseng @0xcharlie @WeldPond converting potential drama to kinetic drama +@chriseng @thegrugq @0xcharlie @WeldPond it’s their *handle* that counts +@thegrugq One of my followers doesn’t know what subtweeting is, let’s snicker behind his back about it and hope he doesn’t notice +You know, most of the people on #IsTouchIDHackedYet are infosec professionals w/ real names/jobs listed. They’re not all gonna flake out. +@thegrugq @chriseng @0xcharlie @WeldPond yes. He’s the one who used to blog for sophos. Shall I drag him onto the cc or are we subtweeting? +@Tomi_Tapio and what does that saying mean +@0xcharlie how dare they quote @WeldPond and @chriseng but not me (who didn’t pledge anything) +RT @newsycombinator: I Am An Object Of Internet Ridicule, Ask Me Anything http://t.co/v7JpBvATSK +RT @i0n1c: Stupid me! I always forget that there is a good and a bad kind of espionage. The bad one is that that is targetted at Americans. +@froztbyte it might be fine for ten or twenty seconds then, spike. +@froztbyte typing and mousing is one of the most timing sensitive things you can possibly do with a computer. +RT @billpollock: The problem with American educatIon is not too little homework. It's that we're not teaching kids to think. http://t.co/gN… +@froztbyte the problem is that iPad can’t be a Bluetooth device to others, so the soft keyboard is over tcp — ie latency :( +@froztbyte oh, well, the top one is in its stand, the bottom one is just lying there, I didn’t rig up a physical binding. +@bSr43 @adamcaudill it’s certcli.dll in system32 and its exported functions are decoding weirdly. +@froztbyte yes +@thegrugq @bernarpa however I did spend about half my life in rural Virginia and I concede that is where hicks are born. +@thegrugq @bernarpa the Netherlands! +@RealPosixNinja @grsecurity what is it with me and fake accounts? It must be the zero, I am the first in auto suggest. +RT @_cypherpunks_: Here's the NSA story by @USAToday's @bradheath: http://t.co/iE4WTy7DvX that the Justice Dept did not want published: htt… +@thegrugq do not question my impeccable taste in wording do you wanna take this outside old ma*falls asleep at table* +I should make a program to set as the postmortem debugger on Windows which will play a funeral song for the deceased +@hackerfantastic oooooold +Tired of commenters who “knew” about the backdoor since 2007. No you didn’t, you heard about speculation it might be backdoored. +@Talen_Lee I think one can love “the Lovecraft mythos” as interpreted by modern culture separate from the actual books +@matthew_d_green in my head it’s called Dual Rainbows +@Myriachan my name kinda became linked with it because I did some blogs with it back when it was pretty new +@Myriachan it is good little one-person operation. You use. Yes. +@jesster_king no. Second person is always "you" (and its forms: thou, ye, etc) +@futarist yerp +@Talen_Lee @m1sp oh no oh no you're gonna trigger a transhumanist tweet cascade duck and cover +@Talen_Lee @m1sp hmm stealing this line for my novel thx +@m1sp you're not making me feel any better! +@adamcaudill @bSr43 in any case, the disasm must be wrong, because it is utter nonsense. +@JeffCurless #TalkLikeAPirateDay +@dancapper except there's no rational pattern there. It's not 8.3 in caps / otherwise not in caps. +My disassembler crashed looking for the certificate generation code! CONSPIRACY. http://t.co/9CH2TCtr6Q +@Kufat I probably mean the other way around from what I just said. +@Kufat there are also uncapitalized basenames and capitalized extensions which is just completely off the wall +Windows, I wish I could see what it is in your little brain that makes random capitalization seem normal. http://t.co/sz5g1VPUY1 +@The1TrueSean @codeferret_ he doesn't. But I've never done NDS. And I told him to go get a different one and I don't know which he got. +@matthew_d_green so far this stuff is not calling bcrypt directly but stuff declared in wincrypt.h +@matthew_d_green yep been there. And no, I gotta know for sure! +I was nerd sniped to go reverse something and so far 95% of the effort has been reading Windows system headers +@matthew_d_green which is nominally documented here http://t.co/nYKtaUeM7n +@matthew_d_green started with certobj.dll based on the name. It instantiates a context of the default provider (null) of type PROV_RSA_FULL +@pingudownunder oh, so that's what happened to your username... +@The1TrueSean gee I wonder why you asked. Don't use desmume it's buggy wrt the rom. Ask @codeferret_ what he was using +@matthew_d_green btw the core crypto DLLs definitely *support* it but I haven't found the implementation yet +Windows 8 has decided that now when my music player app isn't in focus it should definitely cut the volume by 90% #UIRage +@DrPizza @matthew_d_green @wil oh so you can. Well look at me I'm a Unix User o'er here +@matthew_d_green @wil k I'm gonna see if the relevant DLLs are on my Windows 8 machine but I wouldn't be surprised if they aren't +@matthew_d_green if I can find the binaries we can look for relevant constants etc. +RT @matthew_d_green: I'm going to rephrase previous Tweet. Let me know if you happen to find out what PRNG Microsoft IIS uses for key gener… +RT @thegrugq: @matthew_d_green @0xabad1dea remind me not to get on your bad side... Or backdoor my customers critical security products for… +@matthew_d_green @thegrugq I’d assume the problem would not be rooted in the technical people +@matthew_d_green @thegrugq btw their offices are across the street from ours if you want to come have a protest party +@thegrugq I think that’s just business. After all they could reseed all of them in the same general fashion +@DrPizza I do not consent +RT @pranesh_prakash: @chort0 @matthew_d_green @0xabad1dea 4 years, 2 months, 9 days after the compromise: https://t.co/FnGUSXdQhf +# 380840440930791424 +@kludgebox @thegrugq @matthew_d_green yeah so about that... +I forgave the “lost all our seeds” incident but if rumors of RSA knowingly sabotaging stuff are true lemme tell you we have a problem +RT @thegrugq: @matthew_d_green @0xabad1dea and can you imagine how much NSA laughed when China had to actually hack RSA to get access? +@matthew_d_green … then I’ll need this thing replaced agaaaaiiiin? +RT @matthew_d_green: Oh hell, if RSA generated all their master SecurID seeds with Dual_EC_DRBG............ +@nelhage @matthew_d_green I’m pretty sure I bet like one dollar +@sigwo and from camera roll you can access sharing functionality which is how I tweeted whatever I wanted. +@sigwo make sure the camera is active by opening it from the lock screen first. Then go to it and you can access camera roll +@demize95 they’re cosplaying +@sigwo that would be an impressive feat of psychic power +@sigwo @oncee https://t.co/5Oc1def3s4 +RT @ErrataRob: What we are experiencing is a product recall notifying customers that the NSA backdoored their product http://t.co/H8aMHSF456 +@sigwo @oncee yeah um no that is definitely not what happened +@attritionorg @andybochman hahaha! Am I doing it right +B-b-b-buuuurn 🔥 “@nzaghen: @0xabad1dea it might be the same they use to audit the alarm on daylight savings change” (and New Year's, ofc) +@thezeist yeah. Thank goodness. +@borcef they’ve had lock screen bypasses after pretty much every release tbh +@thegrugq I am sure every businessperson with an iPhone would appreciate their suggestion for improving cellular radio efficiency +So I guess my question to Apple (which will go unanswered) is what techniques they are using to audit the lock screen's state machije +I guess I should consider how to write featureful lock screens without bypasses to be an open research topic for improvement +@wimremes what did we do +@chriseng oh it did. But not by several thousand people. +@JbMokuZ the wallpaper? It is fan art. Search pokemon on konachan +RT @osxreverser: Can we please get a feature in browsers where history has the damn short urls resolved? #kthxbay +@chriseng @c7five I mitigated this so hard +A first world problem deserves a first world solution. http://t.co/coQptQcMUZ +I thought y'all were offended by the photo I just posted but it turns out Twitter is enjoying silently failing today +@phillips321 how what? Do you mean my next tweet? http://t.co/x1pJMWB4uJ +@ra6bit it doesn’t seem to be doing anything particular for me that way +.@ra6bit oh Siri at the lock screen is absolutely turned off. She is a traitorous fiend +@c7five I’m more concerned about the tweeting and the mailing +@judsontwit I just did it how it felt straightforward to me, tap click click +I can’t get it working on my 4S. Not sure if I’m just not nailing the timing. +@redsoxunixgeek now consider that my twitter account is my most precious possession… oh pretty sure you can email and stuff too. +Yep that totally worked. http://t.co/x1pJMWB4uJ +If you can see this post, then I have successfully bypassed lock screen on my iPad to tweet w/o the PIN. http://t.co/rmmgNRB5ZF +@Packetknife no, that is not common. Perhaps a few particularly outgoing sorts would encourage it but not generally… +@metareflection maybe they're a secret time traveler from the 1970s when that made perfect sense +@tomkrall hmm honestly at this point I have no idea. +Off to murder redditor who said it’s okay to batch pending emails on a scale of minutes because the spec doesn’t mandate immediate sending +@savagejen I’mhaving ahard time of it with the ios7 keyboard can you tell +@savagejen no actually I cant +Yep I can still reliably segfault Chrome for iOS simply by letting my thumb unintentionally swipe off the left side of the screen +@ELLIOTTCABLE offhandedly, it shouldn’t, but I’d have to dig in to be totally sure +Hahaha, it kills me two ways to see a commenter call the author of an article “he” and the author replies in third person to say “she” +Random SDR snooping on restaurant pagers by @windyoona http://t.co/wLt1CJ7lmt +I bet the iPhone fingerprint reader is pretty well-engineered and tested. Now who wants to bet on the imitations coming in six months? :) +@hellNbak_ because iPhone sets the new normal. +Context: snapchat “@kivikakk: Their web form lets you reset a password to a longer length than the app lets you enter. :\” +@kivikakk pro +RT @MarkKriegsman: Linux performance-tuning checklist: http://t.co/C5UZHhti9K (OSX version: http://t.co/IFhRfto0Cu ) +@jack_daniel you cannot convince me that’s a fruit. +@m1sp huggle! I overslept and had scary dreams +@mndell @dakami I’m only special in that it’s my job to worry about this on behalf of the users +RT @radian: Your weekly reminder that integer promotions in C are the worst thing: http://t.co/W4VeZZ1TAI +@mndell @dakami so if one said “the collision rate is similar to guess rate for PIN so good enough” that is not good enough for me :) +@mndell @dakami I meant PIN. It absolutely should strive to be better than PIN in every measurable dimension. +@mndell @dakami hmm... settling for equivalent to insufficient strength... look up WEP :) +@sethr there is absolutely no excuse for this utter failure +@sethr what is your secret because the desktop is stubbornly not acting particularly touch aware +Looking at my App Store update tab, every UX designer in the world has used iOS7 as their golden opportunity to demand budget and time +MS failed so hard at integrating touch and the desktop in Windows 8. No pinch to zoom. No auto keyboard popup/pop down +@vogon @blowdart in typical Windows fashion I can easily find the settings for remote assistance but not how to actually start one hahaha +@vogon @blowdart the "server" is my tablet +@vogon @blowdart psst all I actually care about is remote desktop :( do you have a cheatcode for that? +@blowdart okay and that entaaaiiiiiils.......... +Am I crazy or is there literally no product description for what this upgrade does to Windows 8 http://t.co/6JIlXYy8XQ +RT @rantyben: CURRENT SOUNDTRACK: RAGE AGAINST THE JAVA VIRTUAL MACHINE +I think the one thing holding me back from declaring go the one true language is an excess of capital letters +@jeremiahfelt @eevee ps there is nothing anonymous about my twitter identity :p you could even pinpoint my house if you really try +@jeremiahfelt @eevee and what are you trying to say about me huh +@eevee my capacity for twitter is pretty much infinite. I am a complete different person in front of a large audience than in private. +@limako and I’m a professional security auditor, my throne of skulls of programmers is enough for me ;) +Subtweet: in case anyone didn’t know: I have Really Bad Social Anxiety and if you try to coax me to socially engage I’ll just freak out more +RT @ErrataRob: Is Touch ID Hacked Yet? http://t.co/vrBY2fAX17 +@limako okay, now show that the glue which is more or less identical to python and ruby's has magical properties outweighing the problems :) +@chriseng @thegrugq @_wirepair it’s true, I enjoy suffering. +@OSVDB since it was patched at some point I’m guessing it’s already disclosed in some fashion +RT @matthew_d_green: New blog: The Many Flaws of Dual_EC_DRBG. http://t.co/2U3kctu0He +@m1sk1t @kivikakk what’s different about this bot? +Yep found a boneheaded bug in PHP3. Sadly it's not still there in PHP5. They learned to strndup() instead of strcpy()... +@cadrpear that's okay, I doubt the original designer was wiser the first two times around :) +@limako I'm afraid I fall 100% into the camp of http://t.co/GHsl4VRgjz . +RT @matt_merkle: @0xabad1dea I know you didn't ask, but you shall receive anyway: http://t.co/SlcNNgdXIu All the way back to 1.0. I'm sorry… +@iirelu php 3.0.18 functions/image.c +/* skip over a variable-length block; assumes proper length marker */ Yep PHP3 already killed me I'm dead I'll miss you +@Kim_Bruning it might only be triggerable by larger context. +@spangborn sorry if I sound grumpy I am angry that the way I knew how to pause simply disappeared for no reason. +@spangborn Um, no, because telling me that a panel exists in the platonic real of existence does not tell me how to get to it. +PHP's release archive goes back to 3.0.18 in the year 2000. Oh well, I suspect looking at the actual PHP 1.0 source would literally kill me +@spangborn that's good to know, but my question was how :) +@spangborn I don't see a button called Control Center. I suspect you mean the "swipe up from bottom" others suggested. +# 380478167544119296 +Dangers of automated translation: No, I don't think PostNL and UPS are the same thing, Google, even if they both bring mail. +@mtheoryx so there is simply something particular to the exact combination that produces brown food dye which is disagreeable +@mtheoryx I eat wheat every day, and my dairy problems upset my stomach, not inflame my ears +@mtheoryx here is one kind http://t.co/QXIoY8izhW +@mtheoryx lol you know I never said it was chocolate I said it was brown dye +@mtheoryx like... brown dye. +@mtheoryx I don't see how being allergic to coca cola, pepsi, root beer, and all knockoffs could have anything to do with dairy. +@mtheoryx coffee, sorts of dark bread that aren't totally fakey, actual pure chocolate ie the expensive kind +@_JosephGrace is that not what I got when I double tapped home ? +@mtheoryx oh I am lactose intolerant but that's pretty much complete curable with pills. +@mtheoryx ie this bottled Starbucks stuff is brown as heck but it’s just actual coffee and milk +@kivikakk well that seems dramatic +@invalidname click the what +RT @aeleruil: @0xabad1dea swipe up from bottom +@mtheoryx yes, ones that are completely 100% naturally brown with no dyes +Yes hello how do I #%^* pause my music on iOS 7 because double tapping home doesn’t bring up that bar any more +@mtheoryx nah haven’t tried. I’m also randomly allergic to medicines so I’m pretty hesitant to try new ones. +“Why does my local mall have its own Wikipedia page” *click* “was the setting for the movie Mall Cop” … huh. +@vogon so the end result is that I like white chocolate, even the cheap stuff, more than nice chocolate because I don’t have a bad assoc +@mtheoryx well this will intrigue you: the exact reaction is that my ear canals inflame. Happens to my mother too. +@vogon it is a good excuse to buy expensive European chocolate, but the association has built up in my head to expect a reaction lol +@vogon basically: anything with cheap chocolate. All cola. Many breads, cereals, etc. They add brown dye to counterbalance fillers +@mtheoryx my life improved dramatically when I figured out the pattern and avoided mass-produced food that is a nice even brown. +@thegrugq @quine @0xcharlie all I know is that my theology teacher told us about this song and that it was from the devil. +@mtheoryx or I could not make myself miserable because it’s already happened enough hundreds of times +@mtheoryx I didn’t say it did! It’s to make it LOOK like chocolate. +@mtheoryx cola, chocolate candy, some brown breads, but not very pure stuff that is naturally brown like coffee. +@mtheoryx I don’t know! My family determined the common factor in everything I was allergic to was being brown, often artificially so. +@mtheoryx in actual (cheap) chocolate bars, to counterbalance the filler. In flavored foods, to make it more obviously chocolate flavored. +@mtheoryx pure chocolate obviously has no dye but how often does one actually have pure chocolate +@mtheoryx brown food dye in foods that contain chocolate flavor. +@mtheoryx you may have read my tweet backwards…v +@mtheoryx I’m allergic to brown food dye. It features in a very large percentage of chocolate flavored things. +@frkbmb @vogon roll the dice and find out what kind of chocolate is in Mass Produced Food Product X, eh? :) +@frkbmb @vogon no, I’m allergic to brown food dye, which most chocolate has to make it look “right” +I continue to be astounded at the number of people prejudiced against white chocolate. The fact that I’m never allergic to it kinda factors. +@frkbmb @vogon yeah and as a bonus I don’t have to wonder if I’m allergic to it +@mtheoryx well it’s a BRIBE what do you think I mean uh +@vogon you know I’m allergic to the color brown right No literally not joking +@matthew_d_green @r3d4ct3d I am probably using a choosier set of “anyone” than you :( +I would never accept a bribe to implement shaky crypto. By the way, I always get a white chocolate mocha at Starbucks. Hot, with whip. +@r3d4ct3d @matthew_d_green no, because it was actually suspected all along +@matthew_d_green @r3d4ct3d you underestimate how much I like white chocolate mocha +@dakami well, I was thinking hundreds trying hundreds of phones, if it’s against one phone I would want thousands. +@matthew_d_green one Starbucks gift card +@tapbot_paul I bet it’s the pulse. You’ve probably seen that video that’s shot to show up the guy's pulse under his skin +@dakami ie if hundreds of people try each other’s phones and come up with zero collisions, that’s a good sign it’s working as intended +@tapbot_paul perhaps if you stick your finger in ice water? Or is it looking for the pulse? +@dakami measure, measure, measure. It’s a black box to empirically verify. +@tapbot_paul perhaps I should say and their four best friends if we’re assuming five tries before lockdown +@objclxt those scanners are foolable with a flat image though, they’re not directly relatable. +@tapbot_paul what are the odds that the thief and their ten best friends might have a collision with my fingerprint? +@tapbot_paul for the actual testing I’m assuming a sacrificial lamb phone. But from a security point of view, if my phone were stolen, +@demize95 that’s the thing, I won’t be satisfied without some empirical third party measurements +Seriously though, I want to know if I could hand my phone off to ten thousand strangers and realistically expect zero fingerprint collisions +Idea: fingerprint party. Everyone tries to unlock everyone else’s phones to see if there are any collisions. 👍🎉📱 +@spacerog completely nontechnical magazine editors != idiots +@spacerog more that they don’t know the technical differences and how to spot them, I think. +Hmm, I enjoy the mental exercise of looking up a foreign word in that language's own dictionary. +@nickdepetrillo heh, that I don’t believe! I’d believe that an actual high budget spy agency could do it if they REALLY wanted, but no less. +RT @dragosr: P.S. Hexagon is the architecture name for Qualcomm's baseband chips, currently in 86% of handsets. +RT @dragosr: PacSec 2013 Presentation: Dr. Ralf-Philipp Weinmann - Mobile Phone Baseband Exploitation in 2013: Hexagon challenges +@nickdepetrillo I’m just trying to live the gray hat dream here and measure in new kitchens +RT @rudyrichter: if you want to get rid of the parallax effect on iOS 7: Accessibility Settings -> Reduce Motion; for the blur, Increase Co… +@spacerog I’m not even joking. +@spacerog Apple don’t ship all those downloads straight out of Cupertino, they hire CDNs and we are simply exceeding the internet capacity. +@MattGrimley doubtful, I suspect the server is just totally down. +.@nickdepetrillo you call that a payout, Uncle Scrooge? +RT @nickdepetrillo: I will pay the first person who successfully lifts a print off the iPhone 5s screen, reproduces it and unlocks the phon… +@mbhbox nope you’re many hours off :) +@tangenteroja no it’s a perfectly cromulent word in Dutch. Here is the translation! http://t.co/Kr7oVCrCYe +@tangenteroja it also means melted metal and stuff so like whatever +@tangenteroja I can’t help that literally every nonsense sound in English means something sexual if you try hard enough. +@tangenteroja eh wot I swear on me mum I don’t know +@aeleruil it is when your unchangeable OS icons all directly clash with one another +@ra6bit I did not see this remark before what I just tweeted +*picks up iPad, walks away, glances down* oh no no no my icons are sliding off the screen they’re gonna fall off ahh +@codinghorror so far it decided that my timezone is definitely Cupertino +RT @ternus: Coworker comment on delivering the iOS update: “The Internet is pretty full right now.” +@renpytom @HanakoGames woohoo! +@filcab is it the bubbles? I bet it’s the bubbles. +Darn! iOS 7 didn’t upgrade my camera hardware. I thought it was supposed to be “magical” http://t.co/GxyTsCTSk0 +@nickdepetrillo and then didn’t post it to twitter like good NDA signers +RT @GoogleFacts: 28% of IT Professionals hide their career from family or friends out of fear of being asked to provide free tech support. +@ReturnFalse sometimes it’s Greek instead :) +@ReturnFalse you just haven’t noticed that this happens every few months when I have time on my hands. +The good news: Safari benchmarks (iPad 4, fresh reboot) dramatically improved iOS6 —> iOS7. Sunspider: 841ms to 653ms. +@MarkGStacey No, I left it a long time ago. +@axqfrk The clock app is right. The OS is wrong. +WTF. It's 3:30. The iPad says 12:30 across the top and 3:30 in the clock app. +@amanicdroid because Americans never did figure out the difference between Deutsch and Nederlands +Augh I can’t type. It’s not registering pressing the space bar. Like I will press right where I always have and it’s like nope +@amanicdroid uh… so… you know they speak German right? +@FredericJacobs een beetje. +It is also a really great way to ensure that no one else asks to use my computers ever +Yes my iPad is in Dutch. It’s a handy way to keep the language in my mind. AAN DE SLAG! +Success. Now switching from complaining about downloads failing to complaining about icons. http://t.co/T7P7EmZSVj +@claymill @grp are you freaking serious +Oh oh the screen is black! Knowing my luck it's about to brick. +@hemantmehta I guess I should have figured a school with cool math teachers would be a lot more first world than mine :p +For the love of marshmallows it actually downloaded the entire update and then failed to install it for no stated reason +@themarkcaudill Dollar styli from Amazon. +@hemantmehta … your school has a wifi network? +I uninstalled those Windows 8 apps I didn't want and they appeared under Updates in the app store. No. Bad. #UIRage +@StrThry Windows 8? Bit of a broad category. Good direction, needs work. +My Windows 8 tablet is very picky about styli. The handwriting will work with one but not the other from the same box. +@apiary @frkbmb I can’t believe it’s been more than a year and they haven’t fixed this yet +@0xdeadbabe these are dollar styli off Amazon. I grab them by the pack because their capacitance varies a bit between specimens +@Dan2552 I have a pressure sensitive stylus but I need a new tip for it. These are dollar styli +Happiness is a new capacitive stylus with its rubber tip all springy and smooth. Oh yeah. It glides so well +@Support cheer up @aeleruil +@DrPizza I dare you to post that screenshot as the entire review. +@XTreeki I can’t even make fun of you based on your phone preference because I checked your client string and what +@DrPizza be strong +RT @attritionorg: Brazilian hackers confuse Nasa with NSA in revenge attack - http://t.co/72rYjTTfdd #derp (ref: http://t.co/DQsNQVyR0H) +RT @partytimeHXLNT: I'm working on a paper about "indie game dev[eloper]" discourse, but in the meantime, a GIF. http://t.co/5IKL9Hr164 +@hackedy heuristics, I assume. Which would explain occasional sightings of spellcheck suddenly changing its mind. +@locks iPhone does it too, but only when you switch language keyboards at the bottom. It will tag word by word for spellcheck. +So I just realized OSX is dynamically figuring out what language I am typing in per-textbox and switching the spellcheck. Huh. +@SimonZerafa ik heb alleen "Het Woordenboek van Vos en Haas" http://t.co/5catGRAlaZ :p +Of course I'm reading the release notes instead. Whoa hey we're getting a Dutch dictionary? Awesome! I could use that. +This is quite possibly the first time I have ever applied an Apple update the first day it's o--MOTHER OF PEANUT BUTTER THE DOWNLOAD FAILED +@kebesays @Kufat we just established they are cylons, so, do what comes obvious +According to the iPad, iOS7 is available! According to iTunes on the Mac it is plugged into, it is *definitely not.* Okay, OTA it is! +RT @Kufat: PSA: 1024 bytes = 1 KB. If someone says it's "1 KiB," they are a Cylon, replicant, or shapeshifter, and must be destroyed forthw… +It’s the 18th! I want to recklessly apply updates! Where is it? I bet the Apple download servers are racist against Bostonians +@raudelmil @gsuberland hmm, unfamiliar with how precedent works in American court systems? +Lol sorry tweet deleted: it was a screenshot of a third-party calculator which looks almost exactly like the built in one. +@gsuberland hallelujah +RT @gsuberland: US court rules that Facebook likes are protected speech. http://t.co/tRygdlucgD +@nickdepetrillo @0xcharlie @nudehaberdasher I came into contact w him and I seem fine. But if he gets Dr. Miller killed he’s on the bad list +@pwpslade I haven’t tried gqrx on Linux actually. Are you using a distro package, a different package, or building from scratch? +RT @arstechnica: Researchers can slip an undetectable trojan into Intel’s Ivy Bridge CPUS http://t.co/rchRI7HMQq by @dangoodin001 +RT @nickm_tor: "I'm done cleaning! There's nothing on the floor but carpet! [And the carpet is covered with junk.]" #IfKidsLiedLikeTheIntel… +@0xcharlie DO IT LIKE THEY DO ON THE DISCOVERY CHANNEL. +@kivikakk ey wot’s wrong with American accents mate +There’s no such thing as a govt that’s really good about keeping its hand out of cookie jars on a scale of decades. http://t.co/DZETXVsKXw +RT @snipeyhead: X-Men/Avengers writer OWNS comics fan after sexist remark http://t.co/JF78IzSqi3 - bwahah! +RT @41414141: "@windyoona: I'd say my receiver looks pretty innocent as well. http://t.co/wa3vhGyOg0" <- cutest TETRA device ever :) Congra… +RT @fabsh: Terry Pratchett is winning. Again. http://t.co/vW0jDLWXmJ +@pwpslade I mostly use OSX! My Linux test machine runs Mint. +@berickcook put some rhinestones in the corner of the letters +@sergeybratus @maradydd @travisgoodspeed aaaaaaaeeeeeeeeek http://t.co/ULZKnljnk2 have you SEEN this +RT @Sirupsen: Paper on the redundancy in the x86 instruction set, showing that it remains turing complete with one instruction. http://t.co… +@thegrugq Serious mode: rebooting iOS helps WAY more than it ought. +True frenemies: “I would never silently block you. If I unfollowed you I would take that as public as possible!” +.@mof18202 @eiridescent I… think we now know why the unfollow bug strikes so many technical people +RT @mof18202: @eiridescent @0xabad1dea I've been shouting about that for months, feels like years. Also, F6: Want your URL bar? Nope, [un]f… +@ThomasWinwood at least that makes some sort of platonic sense as videos and pages both have starts and ends +RT @eevee: 📢 your regular reminder to get http://t.co/hiPnryB49D if you want to be cool and see astral plane unicode +RT @eiridescent: 'cause, uh, that's kind of a horrifically bad UX decision +RT @eiridescent: so, when did twitter start intercepting F5 on pages for individual tweets to have it retweet instead of refresh the page? +@zephyrfalcon @m1sp so, she's actually speaking Imaginary Fantasy Language From The Far West. +@m1sp so I realized this listening to a recording in Dutch http://t.co/LrOfcSll6k +How many years from bromance to gay marriage under common law? I may have a surprise for @codeferret_ and @GWakaMurray +RT @RedMinus: So this is real, one of those things you couldnt even parody because its already at its most extreme ( c/o @gn0s1s ) http://t… +# 380115059235897344 +.@judsontwit it's not burn in, it's completely dynamic. Could be residual data idiocy in the graphics driver I guess! +Dunno if you can see that light stripe but it's an Explorer toolbar underneath. Happens everywhere http://t.co/8EyECpNOoC +I would give you a screenshot except this is apparently not done at a layer that can be caught by print screen. Let's try a photo... +okay, this is driving me nuts. Why does Windows 8 render a particular shade of gray as slightly translucent to the desktop? +@The1TrueSean PS where is my husband I assume you know +@The1TrueSean because you weren’t involved ? +Oh good my local airport caught fire today. Go Logan +@vikemosabe actually I'm not sure I agree! +@Xaosopher I don't see what platforms this is for +Oh well if Diablo is down I will just click to kill on OSX the old fashioned w-- what am I *wearing* http://t.co/pIfQQQ2BTM +@okoeroo @biosshadow lekker +@Talen_Lee all I ever used it for was to grab an extra gem or two. The real money one was incredibly stupid from the start +I have been in a mood to click to kill the last few days. Oh of course the server is down http://t.co/Z9K7nOCFM5 yay for online singleplayer +@biosshadow my passport is American. My birth certificate is Dutch. +@biosshadow to my understanding it would be fairly easy for me to move there, perhaps I will someday. +@biosshadow I'm Dutch according to the paperwork, it comes up sometimes :) +I award no points to Google Translate for managing to change "cannot deliver within the stated timeframe" to "cannot deliver." +Ha, that Dutch bookstore sent me a letter apologizing for not fulfilling their overnight delivery promise. +We have established that some of y'all's clients are stripping the HTTPS from the link. Bash your clients upside the head. @viss +Chemical Plant Zone Acapella - iiiiiiinfinite reeeeeeemix. http://t.co/bzIt9UHUXa +@ragekit @Viss oh (lol sorry for assuming) weird +.@ragekit @Viss "say" is an OSX command. Substitute festival or whatever, but you won't have the creepy laughing voice :) +RT @Viss: "the news": curl -vq https://t.co/v5xnK7ElBN 2>&1 | grep 'tweet-text' | perl -pe 's/<([^>]+)>//g; s/\s+/ /g;' | say -v hysterical +@vogon I don’t think that was anyone’s argument, the argument was they systematically gloss over stuff when it is convenient to them. +@marshray @matthew_d_green you didn’t call me out for saying EST last night. You can’t hold different people to different standards! +@i4AK I don't know if there's a TV viewer app that will work on Mac. Try the community resources at http://t.co/bTvYH3cp3P +Wow I just had cause to use the default pdf viewer on a Nexus 7 and it is a new tier of bad. I'm so sorry. +@darkuncle no no you have to say it so the bot shows up It’s over 9000 +@Dragoneral_ two thousand percent of downtime? +Um… 2000% of what, @github? http://t.co/WEExwRtFwi +@mauvehed @DynamicWebPaige it’s back so I’m guessing they just had to bounce something +RT @DynamicWebPaige: GITHUB IS DOWN REPENT YOUR SINS +@sadimusi yes absolutely. Tried in Safari and Chrome, to hit JIT and no JIT. +@sadimusi weird… still can’t repro +@sadimusi you may be hitting a pathological case in low memory — try rebooting +@sadimusi cannot reproduce (4S 6.1.3) +@tangenteroja it’s Shellcoder’s Handbook not Hacker’s Handbook ;) +@hubbit @frkbmb hmm well pretty sure that was originally written in Black Speech too +@frkbmb @hubbit I don’t speak much Hebrew but I’m almost *positive* that’s the One Ring’s incantation written right to left. +@Nightyyy yes. I want to acquire as many as I can in the whole Germanic family, which is why I just paid a fortune for shipping for Frisian +@savagejen part of the idea is getting vendors to actually make a Linux release by providing a stable and viable platform. +Due to some excellent timing in reuniting me with a box, here is the whole collection, with Frisian still pending. http://t.co/r0fiHvirb8 +@vogon ahh — gun nerds who never actually joined the military but read the magazines. +@vogon depends a lot on the base actually. But here in the states, non-combatants everywhere. +RT @arstechnica: Microsoft issues fix to stop active attacks exploiting serious IE bug http://t.co/IjxJFcoEXJ by @dangoodin001 +@jonelf @toco91 optimization is like other forms of art. You can’t demand the lightning strike on cue. +@elad3 I swear this is not trolling: my primary browsing operating system is actually iOS… +RT @comex: Finally. RT @verge: Apple now lets old iPhones download old apps http://t.co/e9UlUbEeOo +@psobot pickle packing is an open question of grocery store science +Watching a talk on fast C++ ( http://t.co/DIa2L7iIa4 ) and it’s tearing into PHP’s “arrays” for their in-memory structure +Someone tweeted months ago that the obj-c message dispatch hot path is several instructions shorter on iOS 7 and that’s my #1 upgrade reason +@solak @apiary it doesn’t. It has heuristics. The bots don’t. They have different heuristics. +@matthew_d_green an actual reason to wake up on time?! +RT @matthew_d_green: Johns Hopkins will be hosting a roundtable at 10am EST tomorrow to discuss the NSA crypto revelations. Livestream: htt… +Cloud-side implications aside, my favorite recent feature in Chrome is the “tabs on other computers” button. +RT @0xcharlie: Today is my one year anniversary at Twitter. I'm still not verified. +@skynetbnet @SteveStreza wow uh… that’s really uncalled for +@ELLIOTTCABLE it’s a Star of David! Forgive me if I don’t run it. +RT @mikeash: YOU CAN NOW SUBMIT 64-BIT APPS TO THE STORE WITHOUT HARDWARE TO TEST IT ON WHAT COULD POSSIBLY GO WRONG +The official twitter apps which hide direct messages as a little envelope button under “me” tab: terrible #UIRage, people can’t find that. +Inverting the fandom, mostly RT’d for Goku http://t.co/wk96b4Gjsq +RT @SteveStreza: It would be great if we talked about how badly society handles people with mental health problems *any other time* besides… +@Jolly I swear this urge to tweet that you need more meat on your bones comes from my future grandmother self +@TakoArishi @m1sp She’s so annoying. She puts her opinion everywhere and is too certain of her wisdom +@Worthless_Bums @berickcook hmm, you need a louder brand identity, hombre. More pink. Trust me +@WhiteMageSlave haha sorry I just woke up and was checking twitter +RT @thegrugq: If Hayden thinks terrorists love gmail cause it's free, better not tell him about Linux... +@jakeboxer I suspect what happened is someone told the artist “the best part was where they played chess as the pieces” and left +RT @standupjoe: Mom to kid on train today, a watched pot never boils. 8yr. old kid thinks for a second and replies, did you hit refresh? +@attritionorg oh, good, good, my fortress of solitude behind the 7-11 near the office remains a secret location. +@bbfreak I have found Frisian not terribly hard to make sense of :) +@attritionorg @chriseng awesome! Wait, you know where I live? +@fivetonsflax does so! +@hattmammerly @ashedryden it exists in many Romance languages. And my opinion on that is another matter; it's not my native language. +@thegrugq there is gonna be a whole chapter on how mean you are +@ErrataRob My twitter is archived on github! Actually I need to update it +@thegrugq but I’m here :( +Someday I’m going to write a tell-all dramatization of the hacker community of the 2010s. I’m archiving y’all’s twitters. +@eevee noooooo poor Armin +@bitsweat @ELLIOTTCABLE that’s one intimidating turtle +@huibw I’m… pretty sure that’s what makes something slang :) +RT @chriseng: Beautifully illustrated, poignant web comic of a girl (@ElizSimins) struggling with her love of video games: http://t.co/WUhy… +It was 95 degrees a few days ago and I’m currently wrapped up and shivering in my house. Good job New England +@apiary I prefer my answers artisanal hand-crafted +@ReturnFalse that was the exact context, thank you. “Not enough blue on the street.” +@apiary don’t worry, somewhere, there is a stoner lying staring at the ceiling in Amsterdam, and they will see my tweet when they come down +@DrPizza well… is “blue” slang for the police in the Netherlands or not? +@DrPizza but you’re not the right KIND of European. I’m looking for a *continental* sort. +Next time I have a pressing question for Europe it needs to pop into my head before nine at night EST. +Dutch people: is “blauw” (blue) slang for the police? +@ashedryden of course, I’m told to take being called a man like a man all the time. +RT @ashedryden: Stop using "guys" to refer to mixed gender groups. Some thought experiments for the "well, actually..." crowd: http://t.co… +Medieval textbook illustration http://t.co/Ceihk7nGtc +@thegrugq @gsuberland @nullwhale @CipherLaw I think the nuclear clauses are about it not being equipped for real time computing ? +# 379753949211160576 +@johanjortso seventeen, I think. Several are not with me +@johanjortso heheh do you mean my avatar? Her name is Kasane Teto and she is a parody of Hatsune Miku +@johanjortso "relic" is the word Rowling chose as the backup word that means something alike to hallows, so I guess so. +@johanjortso "hallows" is quite a peculiar word though. Almost all English speakers have only heard it in: "Hallowed be thy name" in prayer +@johanjortso ahh book 7: with a word in the title so obscure she had to make up a second title for other languages! :) +@johanjortso no they are completely different. They are soft pastels, largely color-coded after the first volume. +@johanjortso I actually don't think the American covers have all three on the front of any. The seventh may have the others on the back. +In retrospect, the Prime Minister's opening chapter of Harry Potter and the Half-Blood Prince is rather clumsy. I don't like it. +@johanjortso Harry's looking pretty hot in that last one. And Hermione looks exactly like a WWII beauty lol +@thegrugq that was actually the only one I spent much money on. I was able to get most of them second-hand +@johanjortso I have just the first volume of Swedish and yes it is exceptionally good +@chriseng @thegrugq @codeferret_ I give away my iPads as I replace them, SIR +@kevinlange btw your sudden disappearance had me convinced the pebble mafia had killed you +RT @Talen_Lee: The stirring love story of a school surveillance AI falling in love with a masculine kill drone from the neighbouring airfie… +@thegrugq @codeferret_ yes, but I don’t get handed literal bags of cash by someone in vibram five fingers, so I can’t do it EVERY paycheck. +@Talen_Lee you syllabize weird +@thegrugq @codeferret_ the rumor mill was saying October. +@thegrugq @codeferret_ um yes that was the idea? +Yes mass surveillance of students on the internet is that special something our schools were missing http://t.co/LFpWFVPdKz +RT @arstechnica: California school district hires online monitoring firm to watch 13,000 students http://t.co/flNYhUR3zn by @cfarivar +@jack_daniel I think the only woman commercial pilot I’ve ever seen was in Peru. +@dragosr safe safe perfectly safe +@Packetknife I’m married so I don’t count right +RT @hanno: Just found: wordpress theme with license "free as long as you leave the footer intact" - the footer contains a php remote shell +@CodaFi_ stone, we call it a stone to be polite. +@Casiusss nein, not particularly, I collect this stuff +@SimonZerafa I think I might, but that set is in a box I don't have access to atm +@vogon Italian version of Chamber of Secrets is Harry flying away on a giant book. Rest of the Italian covers make sense. +Weirdest freakin' cover award goes to: Italian http://t.co/t789DAG6ar +@jonelf "So kindle a fire.." ... "ARE YOU MAD? ARE YOU A WITCH OR NOT?" +@Samurai336 is this low enough http://t.co/gwKoZlh9XE +@mikaelj no it's like... Here are lists of words (colors, numbers, household items). Here are verb conjugations. Memorize +Here is arguably the most obscure Harry Potter translation I own - Faroese http://t.co/58h87ckoSb +@mikaelj and in general I think the techniques used are very shoddy but maybe I just find grammar comes more naturally than most people. +@mikaelj class as a language one, kind of an effort to keep all of us from being WHOLLY ignorant of the outside world. +@mikaelj like, these classes are not designed to actually teach you to speak the language fluently. They're as much a geography/history +@mikaelj most people will take a few years of Spanish, French, or German in high school but it's fairly casual +@_yossi_ integer wrapped several times, yes. +@mikaelj you can find someone who speaks fair Spanish in any crowd, but other than that, it's considered a distinguishing accomplishment +(Brace yourself, condescending tweets from my six trillion foreign friends who speak perfect English are coming) +@fascinated http://t.co/L1pbZc0OYP +I am awarding myself a cookie for getting through that ordering process without having to look up a single word! Look mom I'm bilingual +@okoeroo @RATBORG it came out to as much as the book and then some. oh well +Well, a Dutch bookstore just took my money for Frisian Harry Potter, now to see if it actually arrives... and if my bank calls me for fraud +@okoeroo As an American, I am not used to this idea of businesses that will ship internationally :p +@okoeroo that's what I am trying to figure out +@okoeroo It is linguistically between our languages. I found a book written in the 1800s in Frisian once and I could read it fairly well. +@okoeroo yes to the latter, but Frisian I especially like because it sits so prettily between English and Dutch +@Talen_Lee pretty sure I already have that one! It's in a box somewhere though. +Oh my gods can anyone mail me the West Frisian edition (Harry Potter en de stien fan 'e wizen) I live in America :( +@sevanjaniyan I did import one volume from England - but it was in Faroese :) +@sevanjaniyan If it falls into my lap, but I chose not to import it and pay all that shipping etc. +(If you forewarn me I could bring cash to trade for it) +I should make a spreadsheet of which translations of Harry Potter I have in an attempt to get more from international convention-goers +@dangoodin001 so I gotta be that person who points out the typo right :) +@seccubus now granted, I would not have changed Hermione’s name, as it is a traditional Greek one. +Ars Technica commenters: “it’s just a DoS! This isn’t a security problem!” Yes I feel safe when my servers can be brought down with a post +@DrPizza hey guess who called it +RT @SteveD3: So... here is a random question. Would any physical pen testers / red teams mind a reporter tagging along on a gig? I'd cover … +@seccubus well, Hermione’s patronus *is* a small, long, fuzzy mammal +@PxlPhile counting ones that only translated the first volume, there are several dozen, of which I have at least one from 17 different ones +@PxlPhile I collect all translations of Harry Potter +@seccubus I think the Dutch ones are cute… +Augh! I forgot to lock the door, and @The1TrueSean came in and — oh my gods he just gave me a German copy of Harry Potter volume 4 okay +@ochsff 64 bytes received from @ochsff +@heathborders @natesbrain hmm, remind me to ask Rowling if dementors have gender next time I’m at the world famous author club +RT @dangoodin001: Would someone please email me the DoS disclosure that was posted to the Django-developers mailing list? dan.goodin http:/… +@m1sp I AM YOUR SENPAI +RT @m1sp: Dammit Eugene. Now I have to figure out what to do with this http://t.co/t5fjdN6fhb +@elathan nobody for real, but think on the ten year plan, I bet the most paranoid will. +The sound of surrender https://t.co/KO6RXCpQZC +@josefnpat no, I do mean the interpreter. +I saw ONE line from customer code and I could tell it was actually the PHP interpreter, gods save my soul +@mattblaze it’s a desperate attempt to make yourself feel better just by throwing all the adjectives, I think. +@BomuBoi very detailed, do like. +@jdguffey_netsec a lot of people disputed that having the limit be the limit of POST the server will accept Should Be Fine. +See! I *told* you having literally no limit on password length could DoS the server. https://t.co/eIInjdgrM5 +@sanitybit @0x7eff VINDICATED +@leighhollowell @MrToph congrats !!!! +So one or more someones are shooting up the navy yard in DC, ffffff +RT @zooko: @matthew_d_green Remember NSA pushed small keys for a long time; presumably they thought they could brute force better than thei… +@chort0 @briankrebs but I don’t think closing it to some arbitrary cabal will fix it either +@chort0 @briankrebs my first experience with whois was discovering my registrar autofilled in my billing address… when I was 16 :( +@sciencecomic horses have pretty eyes, and there’s a lot of variety! +@briankrebs hmm, mixed feelings there. The whois system as it now stands is definitely a terrible mess +@vikemosabe minding that these aren't my faithful followers :p +@vikemosabe I have been repeatedly deluged with many different photos of women wearing one and/or asserting it fits them, great. +@vikemosabe that since the back is flat it does not sit correctly on many feminine wrists and just slides around it. +@ptolts https://t.co/17YKqGziKy :) +(It's not any one person, I've just been contacted repeatedly over the course of weeks based on ONE remark) +It seems like there's some sort of Team Vengeance that keeps pestering you if you criticize Pebble. It's a goddam watch, people +@Becca_monster @PurseandClutch @Pebble is there a particular reason you keep sending me this same picture like some social media hellbeast +@Kufat @codeferret_ yes? It's not like I'm going to never upgrade my iPad again until the foundations of the earth are broken. +@Kufat @codeferret_ is that not what I just said +I realized I shouldn't pick up a Surface RT at a steep discount... because then @codeferret_ will be mad when I want to upgrade my iPad too. +@0x00string early morning light, gray and moody, emphasizing the dour tones of rust. +Infosec industry: keeping photographers in business with stock photographs of dramatically lit masterlocks since 1997 +@addelindh does this government have a higher presence of women than “Bellatrix and Narcissa” +@locks about a fifth +I’m officially using Voldemort’s Death Eaters as my benchmark for presence of women in positions of power from now on +RT @themetresgained: OK I admit this is made me snort with laughter - still more women than the Abbott cabinet http://t.co/LBc5EC4O2s +@DarthNull oh no, immigrants! +@Viss daaaang. +RT @OnionGovAU: [Ed.: I had a tweet lined up about Abbott appointing himself Minister for Women, but it appears he's bested me.] +@kivikakk @m1sp oh my gods it’s been ages since I heard someone say non overlapping magisteria +Apparently my biggest fan is a five-year-old -- I consider this a resounding success +@Packetknife send me pics so she can be officially my first cosplayer +I just noticed that I have several Diablo 3 auctions from over a YEAR ago marked as "processing" +@puellavulnerata @csoghoian he’s old, so probably, and 51% is close enough to true for them! +@apiary they do? And why? +@skattyadz I don’t think I can even do that with Chrome for iOS +What is this HTML thing which prevents me from pinching to zoom a page and who do I assassinate to fix it +RT @MS2: .@katylevinson just clued me into this BAD-ASS BEAR: http://t.co/o9JMuATpfg http://t.co/BWG4EHe6nV +@ZadowSapherelis aww okay +@Tomi_Tapio our system is perfectly cromulent thank you very much +@Packetknife she may also enjoy my collection of real life reference material http://t.co/sWbx2cJ72J +# 379388981416566785 +@silviocesare grats! +@Packetknife lemme know if she wants different ones +@Packetknife I’m afraid this is the best I can do, don’t laugh at the hands please http://t.co/d9fwPZvHaX +RT @pusscat: This was in my attic. Dad sent me to school with it 13 years back. Current day #irony http://t.co/j3Z8Vw9IOq +@Packetknife gimme a few! I will get you some sketches +It'd be pretty cool if @tumblr could invent a live theme preview that didn't bring a thousand dollar computer to its knees with javascript +@Myriachan report it to @OSVDB !!! +@Myriachan some day, northern Virginia will find out about proxies +@MarioVilas if you were actually trying to decipher me: “I know that post is old. I'm drinking cheap chocolate as though it were a drug.” ;) +This is the sort of hot diggity dog 0day I crave http://t.co/FXwKArqSLC +RT @OSVDB: Nothing is sacred: The Oregon Trail vulnerability. http://t.co/ldRaLvutbh +RT @GPGTools: We've learned that there are fake keys with our team@gpgtools.org address on the key servers. Our official key id is: 76D78F… +@clearcup @frkbmb if you live and work in the United States, I require missile coordinates. +RT @chort0: "the power of being inside the government system is the greatest perk." <- Gov recruiting pitch. No wonder surveillance is out … +@thegrugq I don’t judge YOUR substance abuse old man +@kaepora so are many stochastic processes +@kaepora why? +@ZadowSapherelis @m1sp ps am awake again +Strong contender for most ridiculous use of C preprocessor https://t.co/rGBLn2wnXQ +@sakjur I already have a Swedish server ;) +@sakjur well we can switch to Comcast and take a significant downgrade in the process. +According to my nightmares, my biggest fear is missing my stop on the train… and ending up in Osaka? +@sakjur ugh, we have Verizon … +Don’t tell me that stack overflow post is older than Dumbledore I’m getting wasted on instant packet hot cocoa on a Saturday night +First answer http://t.co/NfLSUMrBaQ +@Packetknife @kivikakk oh, so this is where the other two tweets went :) +@Packetknife I’d say it’s in our blood but I am not Dutch blood. So I guess it’s something in the water +@Packetknife apparently I have trouble writing meltdowns, the one in chapter 23 is nearly pure exposition, I’m halfway done rewriting it +@savagejen first guess: timestamp problem? +@armcannon I’m told it’s a default of some toggle. +@kivikakk she actually doesn't get around to saying LIES AND SLANDER in this book, will have to remedy in the future +@kivikakk aw man. Chapter 23 is terrible just so you know. But other than that: yay! +@Packetknife his beard is the subject of several nordic eddas, yes +@Packetknife you know I kinda dig beards right +@dan_crowley 3.5/5 would settle +@oh_rodr beats me. They probably have some ridiculous contortion paperwork +@Talen_Lee perhaps I should clarify the @m1sp defense grid is merely under my command, rather than me being the ghost in the machine +@Xaquseg I guess I'm not enough of a dirty pirate +@qole I'm deliberately trying to get people to confess they bet I find them attractive so I can crush their hearts and cackle madly +OUTSOURCING being spoilsports? Seriously? http://t.co/1Xak72MreO +@thegrugq I trust you utterly, good sir. +I would like to drive all of you into fits of paranoia by saying that it is one of YOU I do not trust for being too handsome, dear followers +@ZadowSapherelis @m1sp awesome :D your today being my tonight, gonna pass out soon. +@Talen_Lee @m1sp I have been informed that I do not have cause to consider you a threat. Systems on standby. +No context: "I do not quite trust him, because he is charismatic. Trust Only Dorks." +@The1TrueSean we deliver. http://t.co/5svlDMI4GK +“Are those girls with his mother (of clearly different ethnicity) his sisters?” “No they are adopted” Uh… so, yes? They are his sisters then +@vogon hey you should maybe not die +@me_irl @apiary — @NewtonMark points out that it’s DeCSS (I guess that’s why the variable is named CSS eh.) +@Packetknife branch closed with unaccepted pull request +@me_irl @apiary it’s probably graphics. It’s just bit shifting. +RT @apiary: Cyber war! The spy museum was weird. http://t.co/P4GdcokBBU +I have brought @WhiteMageSlave back to my house time to act like we're kids on summer vacation again #videogames +I'm now old enough to be that relative who remembers fondly someone who died before someone at the table was born. +I shall inflict upon you exactly one wedding photo. I bear genetic resemblance to these young individuals http://t.co/L2ApxxIoZg +# 379030183044710400 +@m1sp also: instead of ranting about patriarchal wedding ceremonies, http://t.co/9chD7tEZ5E +@m1sp it's okay I have dream insurance +@stupicide thanks ! +@michaeldinn https://t.co/8quA0YoHBK ;) +(I saw no less than three different older couples taking pictures of the wedding with an iPad, and it was a fairly small wedding.) +You laugh. But it turns out old people LOVE taking pictures with their iPad. Because they can SEE it. +@kyhwana my feet are wider than average on one end and narrower than average at the other +@kyhwana I suspect they would be terrible. My deep secret is I was born with malformed feet and they're stil not quite right +Everyone speeds up 20MPH when they cross from Massachusetts to New Hampshire because they know NH can't afford cops. +@kovnsk my toes are too wide and my heels too narrow. So they pinch one end and fall off the other bc girly shoes don't grip the heel +@kovnsk apparently my feet are a little malformed. Mostly corrected by baby surgery. Normal shoes are fine but feminine ones... +Ahparrently I get my accent back magically when I cross the border into New Hampsha +Hi I'm running late and -- and I see you decided to take an entire little league team to Starbucks instead of the Cold Stone next door :( +@chriseng these shoes still have the tissues I stuffed in to wear them to my interview at v-code +@chriseng I have never once in my entire life worn dress shoes that did not leave me LITERALLY bleeding at the end of the day +So I tried on my husband’s shoes and ZOMG I am never wearing women’s dress shoes again. +@bobpoekert context was Facebook +@vogon wow it’s like someone said “I wonder how closely I can try to copy the Haruhi formula without putting yellow ribbons in her hair” +Interesting observation: when you are running code at HUGE scale, you want to optimize execution time simply for *power* savings. +Paraphrasing @0x6D6172696F (protected): fogpad leaks everything to a third party spellchecking service +@ppattersonjax Not particularly but we are suspicious. But algorithm soundness is one thing, implementation soundness is another +@annavester @homakov lol check the screenshot in his timeline. His twitter crashed and drew my avatar by your name. +@vogon you had to physically scrub to get the dirt out before detergent. +@technololigy the coffee mug is not optional ☕ +In this RT: you can see my avatar so I take credit for hacking @homakov +RT @homakov: Not sure if my iPod is hacker or the twitter app is drunk. Render bugs, wrong avatars, messed authors. http://t.co/BJrvJVbSAV +@homakov I had no idea I changed my name to Anna Vester Coffee Mug +You know what’s a huge red flag to me? Using the phrase “military-grade crypto” when the whole industry mocks it https://t.co/Tg7P34E6o7 +@Havokca I think it’d be fun to ask, say, Marvel/DC artists to gender-guess those in the middle panel… answer is 6 women and 3 men. +Have I mentioned lately that Drowtales’ main art team is just absolutely amazing http://t.co/b9MW724uEL and can draw armor on a woman! +I have no idea what I’m doing http://t.co/Xz5IEkC1hB +RT @ShiroSirius: Two elderly ladies at a crossing. One complains about the students, the other replies with "We did that when we were young… +@jimauthors so every time someone has asked where their favorite language is on the chart, the answer is the same... purgatory +@argonblue @ternus yeah, and, I swear, some complete dead weight just for lulz. +This cheesecake has lavender frosting. Lavender is not a flavor. My brain needs HELP knowing what to expect, pretentious cheesecake! +@ternus of course I doubt Silverlight is on the up and up so I am just gonna assume it’s bundling an entire Windows subsystem +@ternus you know, for all that text with beveled drop shadows +@ternus those don’t generally ship anymore, but they don’t add TOO much. Oh, but localized high-res pngs in 27 languages can… +@ternus they tend to directly bundle every framework known to the human race +@m1sp I only like REAL ones, I guess +@m1sp it looks lovely but I hate puzzle games! +@m1sp what on earth are you playing +.@abby_ebooks don’t go telling anyone, dear robot! +@julianor you have a talent for worrisome tweets +@rantyben oh, it is. It’s just not to YOUR benefit. :) +@m1sp I think we have established I definitely have a type. Not of person but of couple +@m1sp I have no idea who these characters are but this is my jam http://t.co/1nXQG9cdOY +@nickdepetrillo @thegrugq look it's a stupid hand with five stupid digits okay http://t.co/WiMH47jGSy +@Fe3Mike purgatory +# 378667934232879104 +@demize95 so I hate this entire concept of dressing up +Don't tell the Macy's cashier you're going to a wedding. She will judge you +I'm that cousin who goes shopping for something to wear an hour before the mall closes the night before the wedding +@m1sp seriously though if you devise a plan for the salvation of many that you believe necessitates my death gimme fair warning plz +@m1sp ................ that is the most terrifying thing you could have POSSIBLY said. +@m1sp but we love each other right +@USSJoin @thegrugq @kaepora no-one in the industry features in my secret stash, except that pic of @MrToph in handcuffs. +I hate my friends. @thegrugq @nickdepetrillo +@nickdepetrillo @thegrugq I'm glad you are all so supportive of my art therapy. This community makes it worth it +@thegrugq no no that guy has curly hair. Like @kaepora, who I can honestly say does not feature in my secret stash +@thegrugq full disclosure dox leak abadidea's secret stash http://t.co/W0LPcVjO3c +@aeleruil @ibutsu @m1sp @_eugenek and I write novels about a gay guy who needs to be kept in chains a lot for magical reasons, it's all good +@JohnnyCocaine this does not solve my problem +@m1sp @_eugenek look my photoshopping skills may not be the best but I think that is A VERY WORTHWHILE EDIT. +@thegrugq be fullfillllllled +@thegrugq IT'S NOT PORN IT'S ART and the idea is to semantically tag them within the context of the larger database so your preferences may +What is it with Japanese websites and not knowing about ajax. This is a very inefficient way to bookmark luscious pictures of young men +@m1sp I improved that picture you put on your tumblr http://t.co/442OqYwm7N +@frkbmb @GreenSkyOverMe hahahahahaHAHAHAHAhahahHAHAHahahAHAHAaaaa +@supersat @vogon yeah, it was kinda a given, but it also raises more questions than it answers IMO +@GreenSkyOverMe @frkbmb heheh yes. Maybe they think being in another country from Google protects them from having to comply… +@kll @micahgoulart but I am the funniest person on twitter this has been proven by Science Science is the name of my pet plant +RT @kaepora: FBI admits it was behind the attack on Tor (I was right!) http://t.co/iB7UuniQ4k +@vogon but the spooks haven’t published an explicit denial claiming the journalists, Schneier etc are lying about it. +@vogon so, here’s the thing. They won’t publish it. Only say that is what it says. +@m1sp and then there’s http://t.co/QptQn9QCW9 +@alex_gaynor and it was not too long ago that “don’t call the functions in this order or you’ll segfault” was accepted php behavior +@alex_gaynor in theory they could be implemented essentially the same. In practice PHP is bolted on to the C API +@drjackbennett without having specifically looked at it, I suspect it falls into the category of boutique LLVM native languages? +@m1sp inside JavaScript is an elegant language screaming to be let out. And there it shall scream until the end of time +@m1sp except that Lua is orders of magnitude more compact, has few sharp edges, and is specifically intended to directly integrate with C +@rubynerd bamboo paper (different from just paper) +@rubynerd on an iPad, yes. +RT @arstechnica: Gov’nt standards agency “strongly” discourages use of NSA-influenced algorithm http://t.co/0xXELcQyR0 +For your reference, my personal religious beliefs about language highness and lowness. http://t.co/nBfgDd4FnD +@sergeybratus @dangoodin001 I’m just giving us all a hard time :) +@nothology @ASTRALPRISON @frkbmb oh dear. +@AdvancedThreat @thegrugq I think my husband still wants me to pitch an electronics ID-ing system based on my radio stuff to the TSA… +@Myriachan gods deliver me from the condemnation of “neurotypical” +@eevee idk god ? Pretty sure that’s the xkcd theology anyway +@zenrandom @thegrugq as kismet guy points out it arguably makes the very function of wifi on a busy street illegal +@dantoml @dakami yes, I just found a few on reddit RIGHT NOW. Assembly exists, therefore C is sky high?? +@technololigy well according to traditional western theology this is where the devil came from +If you insist on calling C a high-level language, you’re implying we need stronger adjectives for higher languages, making Ruby “heavenly” +@dangoodin001 come join the forces of @sergeybratus in the war against Turing completeness ;) +@thegrugq I want technically accurate laws that lay down what’s not allowed while not making the very use of wifi kinda illegal +@vogon what have you done +Oh my gods, macros http://t.co/999CD2BPXv +@vogon here is my Kickstarter for buy me pizza for every meal without my husband seeing the bill +Also I walked to 7-11 in the rain to buy Bagel Bites and the owner asked why I wasn’t at work. I think he needs a vacation too… +Thanks, guys in gray SUV! I very nearly went the entire summer without any strangers whistling at me from a car +RT @trevortimm: Amazing. Citing Snowden, the FISA court has ordered the government to declassify more of its secret opinions http://t.co/hp… +.@briankrebs you can also get their like at gas station corner stores. The USB charge kits with exchangeable ends have no data pins +Yes, everything I see, everywhere I go, my first thought is “that doesn’t look robust to attack.” And they wonder why I don’t sleep +Thank you for the suggestion, Kindle! I have total faith in this 60-second setup process http://t.co/Kovda9DZsN +@blueben I just took Google to be the very definition of the sort of place that would be using its own database stuff +@pettybooshwah I was not the original discoverer of the Unicode Bug — I just did my part to prove it can be dangerous :) +I’m kinda surprised Google was using MySQL at all, even heavily modified http://t.co/yb8JFIURGn +RT @Packetknife: “If You Argue That the NSA Data Has Not Been Misused, You Must Know Something the NSA Doesn’t” by @zeynep http://t.co/SSzi… +@vogon if you’re subtweeting me, I’m pretty sure the kismet guy is pretty invested in being well read on this stuff +@raudelmil I a, so far beyond even caring about the street view stuff. It’s the entirely broken definition of wifi that concerns me +Well if this isn’t the most ignorant counterfactual definition of “radio” http://t.co/o7SnZ2DcpJ go law! +RT @iamdevloper: Setting your username to "false" is a great way to test other developer's use of strict equality checking in web apps. +Godsdammit Chrome for iOS why did you have to go give yourself a giant white border too? +@eevee @0x54726F6E @Chase because they are terrible? :) +RT @kirtan: A 36-year-old spacecraft just told us that it's left our solar system over a 23-watt transmitter from over 11 billion miles awa… +.@0x54726F6E @eevee @Chase Not necessarily. It is often glue code between website front end and database backend that is the problem +@aeleruil just to be clear: that isn’t English, right? +RT @sergeybratus: Non-alphanumeric PHP backdoor http://t.co/2u0WZQmAWA (via @XakepRU) +@thegrugq @i0n1c the real answer of course is that it is a gross salmon color that is not red and not quite pink either +@LBontempoNunes @eevee to avoid fixing their backend code from 1986 +RT @eevee: you may notice that the characters @chase disallows in passwords are < > & " ' -- you know, just in case my password appears in … +@kingcope whereabouts in the source should I be looking +RT @eevee: give me all your hilarious bank website security stories i need to write a blog post +RT @eevee: lol i can't log into @chase because my EXISTING PASSWORD contains punctuation and their client-side form validation rejects it. … +@m1sp new section in the middle of chapter 18 with Eodar and Helian. I haven't actually read it. Good night. +@arjache improvement over where I used to live - it'd be a solid zero :) +@arjache yeah there's two restaurants on that which deliver and both keep rather tame hours +A staycation? But there's no cafeteria in my house. What will I eat? +@DarrenPMeyer dude Ginny is hot. Oh... you mean the other Weasleys... +@JBASkeen put one in my hands and we'll find out... if it's done WELL it's most likely better than a four-digit. +Remember that mint plant I got? Not only have I remembered to water it, but it’s wilting of old age and I am genuinely upset +But no I don’t have a great idea for how to render previews of doc files without parsing them all the way either. +RT @DataIsAmazing: Usage of older versions of internet explorer drops on weekends showing that they are used at work, not by choice. http:/… +Dropbox response via @cgranade: “uh… hang on… let me turn off that attack surface” https://t.co/jsdXia0vvO +Honestly if Dropbox is ACTUALLY parsing Office files server-side this is an idea that can only get them hurt :) +@vogon cool gl +Hey, anybody have any 0day in LibreOffice? I have an idea. http://t.co/J03U0U2ckU +@vogon where are you going anyway? And I guess I will have to make @blowdart my new preferred insider +@vogon I’ll take them +Cute OSX password leak (patched) http://t.co/w0LnvxyF33 +@m1sp (Eodar's perception of how much they cost is skewed a bit by being from a second-fantasy-world country.) +@m1sp not absurdly rare in the Occident. But black market stuff. New paintjob. There's no serial number to file off... +@m1sp well you see, it all starts with some Grand Theft Mechanical Carriage... +@m1sp but really - do you think they teach you how to get out of handcuffs in noblewoman school? Well they probably should +@m1sp but only in the Republic! Totes doesn't count. +@m1sp http://t.co/l0CqsI2zuV +"Could she, like, tear off someone's arms with that gravity power?" - his first question, a page and a half into the book +The only way to get DH to read the manuscript is to encourage him to speculate about horrible ways the characters can kill each other +@m1sp we're getting a new flashback scene that was originally for book 2 http://t.co/wIzlSKf2oZ hint +@leighhollowell @jlwfnord good luck <3 +@m1sp1dea_ebooks what are you trying to say dear robot +# 378306334921613313 +@leighhollowell should I be inferring something +@frkbmb @amazingatheist gods forbid someone tells you what they think of what you said. So controlling. +RT @DrPizza: This has a veneer of plausibility: http://t.co/Ep8Av2CwQs +@m1sp with my writing, but not with anything else. +@m1sp ps *hug* I've been in tears over anxiety :< +@m1sp I'm already much more satisfied with reframing Helian's so far with Eodar and Rodomond getting a little snippy #bromance +@blowdart gee what'd he do now +The simplest little things make me laugh until I cry http://t.co/QX5LRFsmBb +@Vefessh weev can have his weev rights to increment integers I am totally okay with that +@sergeybratus I'd direct you to the author of the quote and get my twitter argument popcorn, but their account is protected +@_ta0 and Hitler had puppies (my Time To Godwin is very short.) +RT @seriouspony: Screenshot of a comment about me *today* (on diff site) re: the Verge article. They're still angry 6 years later. http://t… +Looks like the OSX patch for the Unicode Bug is out :) http://t.co/Z1xfTEC74J +@The1TrueSean it’s supposed to be trumpets. I have yet to find a trumpet soundfont that sounds like good trumpets. +Maybe the thing weev went to jail for wasn’t something worth going to jail for. But he is an absolutely awful person http://t.co/MiXaHpTE8g +@The1TrueSean well what did you think of the one I actually made :| +@dildog I am none of those! Give me a backup copy of your passwords +@chriseng @JastrzebskiJ @The1TrueSean @apiary @codeferret_ @fredowsley http://t.co/WHJhZqAVyv +@chriseng @JastrzebskiJ @The1TrueSean @apiary @codeferret_ @fredowsley Snape is the dark, brooding, bitter middle-aged man who’s not evil +Today I learned: it is really hard to make mysterious minor key music sound like a fife-and-drum song that stuff's pretty upbeat +@apiary @The1TrueSean Threw this together. It doesn't really lend itself well but I tried https://t.co/IViKweVXce +Google continues to be just a little bit too good at this http://t.co/qAmi35G97h +@The1TrueSean @apiary @codeferret_ also: I am SO on writing a "Yankee Doodle" style cover of Harry Potter theme +@The1TrueSean @apiary @codeferret_ we need a Snape. "Pay attention Mistah Pottah" +@The1TrueSean @apiary @codeferret_ the thu'um can be taught, like any skill. (mixing fandoms so sue me) +@ShahinRamezany spam. +@The1TrueSean @codeferret_ (it’s win gaaaaah dium) +@The1TrueSean @codeferret_ so, fan movie. I’d make a good Boston Hermione. Chewie could be Boston Hagrid. Who’s Harry? +@m1sp time to rewrite Helian’s and Talassen’s respective monologues. Wish me luck. +@spacerog and now there are bitter people angry about “fake nerds” who didn’t have to get bullied to enjoy nerdy things. +@focalintent — such unprofessionalism. +@focalintent I was highly annoyed with both sides TBH. Though I guess that’s one of the few degrees of emotional duress that can justify — +@kaepora for $3000 I will teach them about the fork button +In this RT: I ragequit before the end of the first page. +RT @ircmaxell: I feel dirty: http://t.co/bJi4Xt849K worth the read, but eiw... +RT @JastrzebskiJ: Re last rt re @SenFeinstein "legitimate journalism" is like "legitimate rape", right? If *I* agree with it, it's "legitim… +@launchz @comex that’s naht true. +@PxlPhile well do you accept my sister as authoritative? +RT @windyoona: Just found the #44CON microphone frequencies... +@aeleruil it can happen at all sorts of exciting angles, if you believe in yourself. +@aeleruil that’s… not how pregnancy works (and I’m not even commenting on the mpreg) +Someone tell all these teenage youtubers not to upload videos that will probably get flagged to the same account as ones that won't. :( +Amazing what one year of youtube atrophy can do to a playlist. Tried to repair it as best as I could. SPIN SPIN SPIN http://t.co/eIIkyRnRnp +@PxlPhile https://t.co/s47zustPzK +@codeferret_ @The1TrueSean yowa wizahd harry +@Samurai336 hmmm. http://t.co/Z2svmzNnw2 +@Samurai336 in any case, the story is set 70 years ago, not a few hundred :) +@Samurai336 on the contrary, that's kind of where witchcraft's most famously tragic incidents happened, don't you think? +Whoa we are finally gonna get a CANON look at the HP Wizarding World in America. But she should have picked Boston, not New York ;) +Well in news that is simple and happy: Rowling is writing a film set in expanded Harry Potter world. Fantastic Beasts and Where to Find Them +@WhiteMageSlave oh my gods does it have Gay Young Dumbledore? Or Molly? Apparently she’s about that old I once read +I don’t think I believe in there being any magic pixie dust to designate Legitimate Journalism. https://t.co/fGOnJHDDpX +RT @EFFLive: .@SenFeinstein uses example of a 17-year-old high-school drop out who starts his own website as someone who shouldn't be cover… +@EFFLive @SenFeinstein so do I reach for the popcorn or the facepalm +@WhiteMageSlave what +@halvarflake XXXXXXXXXXXX———<(’o’<)—————————————————————————————————————————————————— oh no! Wild Jigglypuff appears +RT @_wirepair: happy to announce I can finally release the https://t.co/aHfI7nYUcf wiki and ninko https://t.co/R4JOT5zTjS +RT @blainecapatch: america isn't the world's policeman, it's more like the world's george zimmerman. +@m1sp <3 affection +RT @mikko: Yahoo CEO Marissa Mayer: "We faced jail if we revealed NSA surveillance" http://t.co/mOJMFrxIvQ +@cirdan12 heheh it’s a guy, a very pretty guy. +@DrPizza it’s Kasane Teto yes. +@DrPizza :( +RT @leighalexander: "I am not hoping senpai will notice me this year. I AM the senpai. Someone is waiting to get noticed and I AM THE ONE W… +@NedGilmore yeah I really just don't care about the high-level metawhatever +@DarrenPMeyer I'm pretty sure it will render fine, I have one of the ultra-cheapie Kindles and it seems fine, it was just the insult of it +@NedGilmore I decided to reinstall it and kill some zombies to try and deal with anxiety +@mikeestee heheheh. +@thegrugq sure, but that's not the point. Generating dozens of X11 windows is :( +@jbrodkin desktop http://t.co/Tn96FYCbNz +Well I guess we'll NEVER KNOW what my mobi file looks like on a Paperwhite device because it generates infinite "install X11" notices +OMFG AMAZON WAT R U DOIN STAHP http://t.co/7oNHZklQlg +@mikeestee ....thanks :( +Oh, of course the official Kindle preview app is in Java. And of course it takes about a minute just to open a novel. +@rmhrisk @dan_crowley it's not an "exploit" though :p +@dan_crowley @rmhrisk I think it was more about, there are a thousand ways to capture the local passwords once root. This one is just cute. +I surrender to the will of Kindle to start the book at Chapter One rather than Prologue, and inline the prologue to the first chapter. +@ra6bit he specifically tries very hard to look effeminate when he is young. By age ~70 he's pretty much given up on that +@ShadowTodd yes but I don’t have any sources handy to cite! +@ra6bit one of the important characters in my story is the blatantly gay old man who is perpetually up to something shady :) +@thegrugq :( I'm not a real artist, I just play one on tumblr +@ra6bit @thegrugq yes he's just fabulous +@thegrugq Can't you just be happy for me that I drew a good Crazy Old Man face like yours :( +RT @Kasparov63: I hope Putin has taken adequate protections. Now that he is a Russian journalist his life may be in grave danger! +@thegrugq you’re just sad because you got old too. +I’m on a roll tonight (hope you like amateur artwork). Same character, five decades apart http://t.co/JEmYQ0mpA8 +@Mordicant yes +@marshray @thegrugq @homakov did this “recently” end around the time you were absorbed into the Microsoft Empire +Today on “double-take bylines” http://t.co/v0P52HeenX +More faces. http://t.co/NyoKbUJfBn +RT @blueben: @0xabad1dea We can tease it out because we put it there. +@ternus @Brian_Sniffen yeah, pesky EXIF. The downfall of drug-crazed antivirus merchants everywhere ;) +@m1sp but you can add the Many Slightly Different Moods of Barsamin to your pinboard of my Great American Novel ^_^ +@m1sp Huh. Weird. Right as I tweeted that my phone was being deluged with "has pinned Vulpix. Has pinned Lugia. Has pinned" +@m1sp you DID just upload a bunch of pokemons, right? Otherwise my stalker script has broke. +And no, they didn't do anything particularly Dark Black Magical, but that's kinda the point. "We" know how to tease out the data. +@jdiezlopez it says they say they did NOT know who she was but they knew what school she went to, probably overheard it at the party +"Why engineers scare me - a true story" http://t.co/uwgkglic3z this is the power WE have over other people. And we're not even the bad ones. +@trap0xf same +@codinghorror that’s hilarious because fallacy of ignoring choice and consent +# 377942162874576896 +.@rmhrisk once you’re root you can use really cute root powers ;) +Common sentence in infosec: “This technique was already known.” I think it translates as “you will never be a 1990s hacker, kid” +@dangoodin001 I’m guessing they mean achieving full sandbox escape into native code as opposed to writing malicious Java only +@m1sp hahahaha you just triggered my stalker script for the first time in months and oh my gods stop posting to Pinterest +@vogon like if you think there is something flawed with most teenagers and you’re in your 40s well I have some bad news about your peers +@eevee @cgranade @atweetingtwit I have an extremely vague memory of my mother preferring the Hot Dog Stand windows 3.1 color scheme +@vogon actually, I consider anyone who condemns millennials to kind of missed the fact that they didn’t come to be in a vacuum +@Tomi_Tapio not everyone in a cloak is a vampire! … His uncle totes looks like one though +Malicious password filters — obscure Windows feature http://t.co/GmiBB7H4pN +@atweetingtwit @eevee as someone who started programming around 2004… not that simple at all >:( +RT @eevee: maybe there's a generational void between 1982 and 1991: those of us who grew up alongside the web, not with it, and are now off… +@eevee possibly because it’s almost always spoken in the most insulting way possible +RT @ternus: “There exist terrible yet exceedingly rare events where the cost to prevent exceeds potential loss” is deeply hard for us to ac… +@eevee I was under the impression it most directly applies starting at about five years younger than me. But then, what am I? +@clonepa_ I see they are branding geniuses +RT @GooglePoetics: my wife is emotionally unavailable my wife is emotionally abusive my wife is expecting our first baby #GooglePoems http… +@demize95 thanks, but still a long way from where I want to be +@demize95 well like idk been doodling my whole life but got a little more serious about trying a few years ago? +@snare more technically my opinion is a function should have only one non-error return but should feel free to error fast +@snare you only get to say I have one exit point if I get to use goto :) +RT @RBStalin: Haha Millenials, you're so crippled by preceding generations. Losers. I thumb my nose at you. +@blaufish_ it’s an iPad. Bamboo is the software +@JBird_Vegas nope +@oddtazz yes +@clonepa_ it’s an iPad. Wacom Bamboo is the name of the software +@0xmchow @_defcon_ sigh :( +Forced myself to draw expressions other than Sad http://t.co/PAGPRElrhs +@F706L3665 got it :p +@aeleruil happens every time +@clonepa_ @jan_ekholm Wacom bamboo (with generic capacitive stylus) +Having an anxiety attack for no specific reason. So here is more of my attempts to digitally watercolor. http://t.co/5PNC824TY1 +@skynetbnet common misconception. +@_yossi_ I probably do not have as many spare iPhones as @comex +All of my other problems in life aside, the huge glaring whitespace on the Safari iOS7 icon makes me ANGRY every time I see it +@notfabrice that’s not pink. That’s Nuclear Waste Salmon +@antoniusglock @zygen much better +@McGrewSecurity aww. +Like I want a colored everything, I just don’t want Bright Searing Nuclear Meltdown colors +I don’t like any of the ultra-saturated colors tech companies are using (iPhone 5c, Surface RT covers, etc) Am I just… old? +RT @nkjemisin: Captain America in a turban http://t.co/8TPto5qXnJ +@SzymonSzydelko if I’m the default dump location I should probably set up a new gmail filter +By which I mean Android was like “tap here to send crash dump to Google” but it brought up an email dialogue pre-addressed to me +RT @awgross: @0xabad1dea Fixing /r/n would free up some speed for correcting the spelling of referrer +I’m not sure why Android wanted permission to send a crash report to MY email address but it’s an interesting dump +@gigideegee @trap0xf as opposed to Thor’s Day, Freyja’s Day, Saturn’s Day… +@mikko Latin, maaaaaan. +You might work in technology if: your phone autocorrects window to Windows +I bet the internet would be like a whole 0.000001% faster if we replaced \r\n in headers with just \n +@eevee @jdiezlopez oh my gods +@mattblaze well, they claimed TPM module or whatever it is called, right? And private API. Maybe a jailbroken device could. +.@DrPizza crank theory: rebel within the NSA made it too obvious it was backdoored on purpose to be a warning +It sounds like the FBI makes a huge point of not asking *on the record* for backdoors http://t.co/np6jU123LK +So I kinda just woke up, and my throat hurts like the dickens. Is there anyone on my list near enough to go infect? +RT @djrbliss: vCard handling on Android is so bad that my mom just persistently DOS'd my messaging app with a default iOS vCard. Empty vCar… +@DrunkCyberczar this went a little dark for a parody account +@kivikakk @m1sp watt :O +RT @rgov: The security question choices on http://t.co/cQdCnQLhPe are "mother's maiden name," "city of birth," and "password." +@jesster_king and pay three times? +@mdowd well in that case you must concede I am PRETTY SOCIAL +@hellNbak_ I can’t see a thing on that picture, but yes +@mdowd sir are you implying that internet flirting does not COUNT +@alexwoolfson well… that’s hot +@harrytjohnson that's the Nintendo Store +@kyhwana I... may be drawing the male protagonists *cough* +@kyhwana yes it has gay dudes and lesbians and bi kids and even a token straight hookup +@kyhwana heheh I think you will like my novel <3 +No I'm not drawing gay stuff! I am just practicing male anatomy. A buff guy and a skinny guy. A skinny, effeminate guy with cute glasses and +RT @blowdart: @0xabad1dea dance offs. Apple wins usually. +I'm not sure my town is ready for the intensity of having both an Apple Store and a Microsoft Store in one mall. Will there be gang fights? +@MADdashDAN311 there is a Microsoft store opening +@MADdashDAN311 Burlington MA on the 19th +RT @TheXbone: @0xabad1dea It's the bone that phones home! But not to the NSA. Promise. +@TheXbone oh no it's the bone :( +Windows 8 seems to have given me a giant "sports" icon I don't remember having #UIRage +@m1sp *public display of cuddling* mrrrf. +My chibi ancestor! http://t.co/XN7WhOUPUF +@Myriachan just autocorrect. I’m just on the prowl for one or two more beta readers +@Myriachan hey do you like Adventure stories +RT @trevortimm: For years, NSA was conducting suspicionless searches to obtain the suspicion the FISA court required for searches https://t… +Yep that’s me, “Trivializing Serious International Problems with Dungeons and Dragons” Elliott. But you can call me Dragons +@BrandonTansey look again +Halfway into solving the encounter with swords, the bard remembers he has a diplomacy check he can roll. https://t.co/BdsmhDM145 good going +@snare indeed. I am, however, allergic to the brown food dye used in cheap chocolate. +@snare white chocolate is better than full chocolate +@thegrugq it’s still the tenth in America, you’re good. +RT @attractr: Behold the INFORMATION DOMINANCE CENTER http://t.co/Ealp0IJHsB (it doesn't disappoint) #cybercommand +RT @a_greenberg: NSA Secretly Admitted Illegally Tracking Thousands Of 'Alert List' Phone Numbers For Years http://t.co/PUVUJdIX2I +@aeleruil he exhibited his sanguine humor +@nickdepetrillo I’M TRYING +@dangoodin001 what is the practical distinction? Other than there being blood involved in removing a thumb but not a token. +# 377578798965088256 +@m1sp she pretty much is +@sneakin if you are implying she has a large frame, this is true and she is not insulted by truth. +@m1sp lol I drew Tsovinar in ridiculous western clothes. PANTS. What is this outrage +@chriseng that might be prone to… FPs *badmpssh* +Character art drawn waiting for my husband to buy clothes http://t.co/g17CkP6THH +@m1sp gee you hang out with some strange people :) +There’s another Melissa in line at the coffee shop. But can I teach these people to spell 0xabad1dea? +@kivikakk PS I decided a scene near the end with Eodar and Helian (you'll know it) needs to be rewritten entirely +@kivikakk I changed one of them to contempt :) +@kivikakk it is +@Myriachan seriously considering it, as it comes with full Office, right? And IS there a good jailbreak, I don't even know +Surface RT is gonna be $250 for one day at my mall - the price I thought it should have been all along +@m1sp I'm pretty sure the Think Of The Children Police would love to condemn my story as Pernicious in Every Way :D +@dan_crowley I am the Softest Criminal. My street name is Marshmellow Feather Duster +@ELLIOTTCABLE well I can give you a copy of it right now if you let me tell you which scene I think needs to be completely redone +@elad3 I used Lulu for the test run and my BFF in Australia got their copy quickly +@elad3 yes but I can't make that one $3 lol +@ELLIOTTCABLE no it is artisanal hand typed +@ELLIOTTCABLE also after I posted that on tumblr I remembered one of the teens is actually *gasp* straight. +@ELLIOTTCABLE there is not even anything gay on that page! +@ELLIOTTCABLE what whyyyyy +@ELLIOTTCABLE what whyyyy +@ErrataRob and this story is LONG, it will end when Barsamin is like forty. +@ErrataRob I'm self publishing all the way but there will be printed version available through lulu :) I have one it's nice +@ErrataRob the overall story started in Glory in the Thunder began to take shape about six years ago +@ErrataRob it's a tricky question. I've been trying to finish ANY of my stories since 13 +@ELLIOTTCABLE http://t.co/S0tivgSF5Z +@ELLIOTTCABLE I have a printed and bound 400-page test run of the manuscript in my hands RIGHT NOW. +After rereading again, I think only one scene needs to be completely redone. Then I need my cover art and I can dump my life's work on you! +@michabailey @chronic that doesn't really answer the question. If fingerprints are used then fingerprints are used whether 1 or 2 factor. +@torvos well I said to send a Linux version to @m1sp who may or may not know XD +@torvos exactly. +@m1sp am I being too pessimistic? :p http://t.co/fGPhc4D73T +RT @dildog: @dakami "In case of Emergency False Positive, Revoke Breaking Glass" +RT @arstechnica: University apologizes for censoring crypto prof over anti-NSA post http://t.co/XIOjslwQG4 by @natexanderson +(My issue is that in my notoriously hummmble opinion I should be getting download links for each supported operating system) +Dear kickstarted game: "Choose which platform you want your copy for: Windows/Linux/OSX" No. Bad. +You know you've been RT'd by @chronic when all your replies to a comment about proof in court are suddenly about buying weed :p +@boldComicSans with a PIN it’s pretty plausible that, say, your rebellious kid figured it out +@boldComicSans anything illegal you could do from a phone — pirate a movie, send a death threat, order drugs +@MrToph sorry, closed API, gotta wait for the jailbreak. +@ErrataRob which is of course *totally different* from Afrikaans. +@ErrataRob I *can* spell it, but if I tried, then people could call me out on any grammar errors! So it’s Fake Dutch. +@dangoodin001 aside from “how can it be fooled by experienced criminals” I am worried about legal snares https://t.co/ha4v4xIMFZ +@ErrataRob (you may have noticed that the language the doctor spoke near the end of the draft was actually Dutch As Spelled By Abadidea) +@ErrataRob @thegrugq Utrecht. +@thegrugq @ErrataRob some of us spawned inside the zone though (come to think… I actually didn’t!) +@ErrataRob no, I actually don’t think so. IMO it’s an “obvious” feature which happens to have its uses to them too +@rik_ferguson @ioerror maybe? I don’t think all of those ever made and actually used together will equal the number about to deploy +(I’m thinking as opposed to being able to say “my KID pirated that, sorry, after she watched over my shoulder and stole my PIN”) +@vogon *checks ram* no I think I care at least a little (do not say PAE. Do not say PAE) +Question: if you use fingerprint authentication, and your phone does something illegal, is that considered proof to a court YOU did it +@ioerror I don’t mind fingerprint as *opt-in* behavior but we have a serious lack of precedent I think. Can it be compelled etc +@DrPizza two kinds of Apple customers. One wants Apple and will take what they can afford. The other wants the BEST no mater what. +@Mordicant it’s my burner pin +@lrigknat @asteingruebl yeah but I don’t have the live stream and I’m not certain they said anything either way +@kaepora not really. It just has to be on par with a decent android for kid to convince mom. +@DrPizza well I know who Elvis is. And I have heard of Abbott and Costello. Am I warm? +@garywhitta @DrPizza it does something for me — big shiny beacon of who to avoid. Fake gold, really, REALLY. +RT @peterhoneyman: Here is Johns Hopkins Interim Dean of Engineering Andrew Douglas’s #apology to @matthew_d_green https://t.co/iYlTRslhFS +@i0n1c not mine — I think — but I’m not positive. +@chead it is my opinion that “something you have” is inferior to “something you know” as a single provider of authentication +@chead sure, but that’s not all I’m worried about. +Okay question. Can I have both the fingerprint AND the pin? 1-2-3-4 press home. This would be ideal. +@spacerog they’re insisting it’s on device only (which isn’t proof, but it’s stronger than NOT insisting that) +RT @matthew_d_green: I just received a very kind formal apology from the Interim Dean of JHU Whiting School of Engineering. +RT @tapbot_paul: What are the 5th amendment ramifications of fingerprint passwords? Can you be forced to touch id unlock? +Oh hey email preview crash in Outlook possible RCE http://t.co/rswuWrDxaq +@chort0 @i0n1c if it doesn’t I bet it will soon @bSr43 +@chriseng but then my witty sarcasm would have missed the window of opportunity +@kovnsk how many multi gigabyte files do I even have on a 16GB SSD :< +On the other hand I could probably be quite happy with 4GB RAM on an iPad as having just the one is its main problem. +If I am going to have a 64-bit phone it had BETTER come with > 4GB ram I can’t actually think of a use for +@zenalbatross be a little fair, there are political beat reporters and tech beat reporters. One doesn’t go to phone shows +RT @DanAmira: This is the most hilarious, passive-aggressive lunch date I've ever seen http://t.co/XYeW8wKVdV +@b_cran it’s red, but it looks kinda pink in one of the photos, due to the projector I guess +@F706L3665 the target market is children and teens, so, nothing +No pink or orange Plastic iPhone? No sale. It’s almost like I wasn’t even their target market :( +@itsdapoleece it’s the same board as the mini, really +My faith in liveblogging journalism is shattered! http://t.co/DUpbsyKlJt +@tapbot_paul well maybe Facebook shouldn’t have gotten all uppity and shipped its own phone ! +RT @macusermagazine: “Porn” blocking? EE’s compulsory default mobile content filter is blacklisting http://t.co/oEPiXvT7pf: consumer info o… +RT @Viss: guize, srsly. guize, stahp. http://t.co/iZmvrRILRV +Whatever you do, don’t say anything important you actually want people to read for the next *checks Apple iPhone* three hours or so +RT @jeremiahg: Many who use ad blocking software aren't necessarily anti-advertising, but more pro security and privacy. Web-based ads are … +@DrPizza but but World peace :( +RT @matthewbaldwin: My local community center was built with the Diablo level editor. http://t.co/R2rEkX6Sxq +New coworker seems charmed by how freely we discuss doing illegal things at Defcon. By which I mean he’s convinced I’m a hardened criminal! +@MrXors Defcon +Oh my gods my coworkers are making me watch the video help +RT @MicroSFF: "Maybe," I wrote, "internet's been self-aware for years, but doesn't dare tell us because we'd freak out?" Post. - Fail Paste… +If you don’t get it then either don’t worry about it (wise) or get aboard the meme boat (what does the fox say) +This is my husband’s idea of absolutely hilarious twitter gold. I think he shouldn’t quit his day job https://t.co/CvSHWqG0aQ +What is the appropriate reaction to hearing an abusive parent is pregnant again? Can I throw something into the sun +@nasko gods. I don’t even know. Just google NSA. +RT @JLLLOW: New Snowden Documents Show NSA Deemed Google Networks a "Target" | good summary v @rj_gallagher on industrial spying http://t.c… +RT @matthew_d_green: A last note on the NSA and why I think this is worth blogging about: http://t.co/2sZS8C9Klk +RT @jzaddach: MIPS linux routers apparently use a dummy get_cycles() implementation that weakens randomness ... https://t.co/BE2bzNoCtL +@bbfreak I prefer the e4000 +@bbfreak I have those too. They are generic, go steal some from your grandparents’ TV +@WesleyFlake yes. And it’s not “because” of any one neatly identifiable cause one can blame. +@bbfreak I used the one that came in the box +RT @Popehat: I #standwithpax because it's mean and hurtful to criticize him when he talks about how oversensitive women are. +RT @csoghoian: Can a tech-focused, in-depth news site please partner with @ggreenwald? The security community shouldn't have to beg for scr… +@m1sp LOL I knew if I reread enough times I would find another slip up on the “thou” thing. Gotcha! +@noirinp @jerenkrantz @timbray I’d expect the tone of sales sexism to be very different: ie demanding workers look “prettier”. This so? +@vogon it’s at least the same core compiler right +@vogon oh my gods. +@vogon jay-z it must be windows itself +@grey_area @wilkieii @lindseybieda @hypatiadotca @noirinp sort of. It still really helps if you’re looking for your first Real Job +@vogon I’m way more concerned about that handle count wat r u doin +@vogon and that is something a man can take pride in +@noirinp @hypatiadotca which is? The priest industry? +RT @alex_gaynor: https://t.co/MvU1namULX :( +RT @maira: "This painting is not available in your country." // new artwork for the @EFF office. http://t.co/ewGjnqOHil +@DrPizza BTW I noticed you had too much America and left. What was the final straw? +I mean 90% of you are guys in the opinion of Twitter Analytics, not that 90% of you are cool. Wonder how accurate it is actually +@demize95 I have no idea what your gender is because the cute anime avatar set seems to be about 40/40/20 m/f/n +Times like this I gotta remember: most of you, my 90% male followers, are actually pretty cool (that is Twitter Analytics’ actual figure) +@vogon no. I’ve seen twitter tonight. You’re really not. +@paxdickinson @frkbmb block me harder +@paxdickinson @kivikakk I’m so glad our internet had so many shining examples of good, compassionate, and wise human beings +@eevee I continue to be fascinated by how the php team consistently lives up to my expectations of being the worst possible open source team +@eevee it seems to be “aside from all the points it raised, I didn’t like it” and then writes a similar article +@kivikakk ever just wanna retweet something out of context +# 377199077894938624 +EMET is a godsend for anyone who can actually figure out how to use it. For the rest of us, enjoy your DLL-induced tears +@a_z_e_t @dangoodin001 imagine the low-level mole cracking the senior engineer’s new keys on their shared development shell server +@a_z_e_t @dangoodin001 all in all shared non-virtualized servers in a school, corp, gov etc would be an easier playing field for this +@a_z_e_t @dangoodin001 and sooner or later you’d probably get a slot on the right box when someone spins down a VM. but of luck though. +@a_z_e_t @dangoodin001 if you are an APT, and have an oracle for if it’s the right box, you could just buy in a loop +@a_z_e_t @dangoodin001 why not just… buy one +@4Dgifts @gsuberland no, my advice is DROPBOX needs to FIX it and end users shouldn’t ever need to hear or care +@0x90NOP @dangoodin001 @a_z_e_t well that’s good though I doubt the patch penetration has been high so far +@4Dgifts @gsuberland hey you know what ISN’T advice you can give to the average home and small business user? “Use EMET” +@demize95 @gsuberland having any amount of no ASLR in a process is bad and it’s getting into Firefox +@dangoodin001 if the summary is accurate that’s very bad for users of virtualized shared hosting +Dropbox DLL has no ASLR and injects all over the place http://t.co/LIwaRlGtQk by @gsuberland +RT @dangoodin001: Cryptographers: how practical is this side channel attack for extracting GPG keys? Should users be concerned? http://t.co… +@chriseng @ErrataRob we know that, whoever panicked about Dr. Green’s post apparently did not. +@eevee I think we need some sort of “Client side. Server side. What you need to know” public health brochure +@DrPizza I’ve got some unopened floppies I can sell you… +RT @pusscat: @donicer but if you ignore that you're offensive when really you have all the privilege in the world the word we use for you i… +@kaepora doesn’t it repeatedly say it was done without cooperation? Unless you mean the bit where it’s “not for them” to comment +RT @mattytalks: It's pretty weird that a guy who would murder a teenager might also threaten his wife. I guess you really never know someone +@ra6bit @matthew_d_green no. Only in the context of merchandise or implying endorsement or relation. +However SOMEONE is doing a good job swinging that law around to make people hesitant to use this logo in any context http://t.co/YGFcFvjjYL +@lorenzoFB yes. But there IS a law covering that logo specifically. +Or for commercial gain. Obviously. +I honestly don’t see how @matthew_d_green’s post could be construed to be breaking the law of using the NSA logo to imply endorsement +@matthew_d_green common sense, academic freedom, and young firebrands are on your side :) +Check @matthew_d_green timeline of about an hour before this tweet, I shouldn't retweet all that. +We built this city on best-effort transport mechanisms which presume participating nodes to be voluntarily cooperative +RT @tyndyll: First they came for the Linux users, and I didn't speak, because I couldn't get my audio drivers to work with 3.0.46 #nsa +@_larry0 no, some cloud providers etc. +.@ezchili Twitter Mobile thinks it’s okay to turn back on settings you have turned off during updates. +@bmirvine ^_^ +@kevinlange do you mind if I call them out of this without your name (if someone tracks my tweets backwards they could see this) +@kevinlange @Pebble oh geez I didn’t even notice that. Wow. Not cool. +Or maybe someone was trying to make sure all us paranoid nutters save a copy ;) +RT @brynosaurus: Phil Rogaway: "I herein condemn and assert my repugnance of the USA’s mass-surveillance programs". http://t.co/XiKjvZd6Ww +I don’t want to have a country where a university is scared to host this article by their own professor http://t.co/ph8L94Kife +@thegrugq also it sounds like the dean *was* put up to it +@thegrugq I did in my head but I am too busy raging already +RT @matthew_d_green: The post is still up on Blogger, but a local University mirror of my blog was shut down. And no, this isn't my Dean's … +RT @thegrugq: @matthew_d_green so who put him up to it? +Rehost the planet RT @matthew_d_green request from my Dean asking me to remove all copies of my NSA blog post from University servers +@adamcaudill exactly. But this is like the third time. Whoever makes these initial decisions needs a good talk +@matthew_d_green the HELL. +RT @matthew_d_green: I received a request from my Dean this morning asking me to remove all copies of my NSA blog post from University serv… +Guess whose husband won’t read my manuscript? He’ll only look over my shoulder and start reading a battle scene in a porn voice +@thegrugq @i0n1c neither of my Macs has a drive slot now. But the 2010 model, and the 2006, and the ones at school…, +@i0n1c every Mac I have ever used had the drive mechanism fail in under a year. :| +Microsoft sure has gotten into the habit of obviously unpopular announcement — sudden complete backtrack http://t.co/Eowp2QLfW5 +RT @m1sp: I made a Skyrim mod! Papyrus is a surprisingly nice language once you get past the editor UX. http://t.co/nWeql8gdJu +@bl4sty right, it represents millennia of abuse from our cartoon oppressors. I’ve got cel-shaded privilege +@RenaKunisaki did you just trick me into establishing a homestuck 2uirk? :| +@RenaKunisaki I’m 2uite positive +@bl4sty thank you for using sexualized language to dismiss concerns of sexualized culture, you are helping +When your font (IM Fell Great Primer) has a Q this awesome you start looking for ex-Q-ses http://t.co/WbfO8xCmRf +@_r04ch_ https://t.co/1LrFqPxmXu should work +RT @mattst0rey: They also appear to have tried to bypass the boot/disk encryption with several password guesses.. +RT @mattst0rey: So it appears the USA TSA has opened my case from my recent trip, booted my laptop, and then left it running for x number h… +@janiczek it is an old fashioned printing press font so yes. The descenders are not very adventurous +@qole @chead @vogon error: you have died of dysentery +@ReinH gay teenagers causing political and religious problems on a magical version of the Silk Road. +@ReinH my novel +@RSWestmoreland not yet! I am still editing it ;( +@FrederickGeek8 I have a few. You can plug in generic bunny ears from Radio Shack if you get a PAL female adapter. +@The1TrueSean when have I seen you stone cold sober? +@The1TrueSean that explains why you haven’t died of shame yes +@vogon you cannot judge me +Disliking programmers is prejudice against a protected class() +@m1sp I’m pretty sure you reread the whole thing again so be more brutally honest +@ErrataRob because I’m a programmer?! Sir that is prejudice against a protected class() extending engineer +@thegrugq @ra6bit @HackerHuntress Korean. +@The1TrueSean effect*, sheriff +My beta readers are all fired for not telling me I used the same adjective twice in one paragraph like an unlettered serf +@paradroid001 it will be self published soon <3 with no DRM option for ebook +@paradroid001 I finished my first novel (sans final editing) +@thegrugq @chriseng retweeted, be precise. +@chriseng @thegrugq FYI I’m totally not posting bail if you call me after the cops decided you were having too much fun at the playground +RT @chead: @vogon @0xabad1dea thanks dad http://t.co/fqnRKHOm49 +@The1TrueSean precisely +@chriseng @thegrugq where did you source your tempestuous teacup filter +@The1TrueSean Your Grace* +@chead @vogon don’t copy that floppy. Keep that floppy floppy +@The1TrueSean breathe*, Mr. President +@passetc @vogon ask the year 1995. https://t.co/ee69ssKhoe +@patrickwonders IM Fell Great Primer +@aeleruil CHARGE YOUR PHONE +@kaepora I have read it multiple times and trust me: read this version. http://t.co/bRgY58Tmnv +@Kufat o/ +RT @vogon: @0xabad1dea screenshot: http://t.co/eBagrrJCwA +@vogon you +RT @vogon: @0xabad1dea "you are about to embark on an adventure", the chrome extension (intercepts the new tab page): https://t.co/0yRSA0Ee… +@nickm_tor check out its sister poem Alte Clamat Epicurus :) +@thegrugq don’t make us revoke your smartphone privileges, old man +@donicer nah that’s what I am to *everyone* +Uh oh. @thegrugq has finally learned how to use emoji 😐 +@donicer no actually I have no idea who did it. And I care because it’s yet another reminder of what *I* am to some people. +@washiiko it is an adventure on a vaguely steampunk version of the Silk Road +@washiiko hmm come to think I guess I haven’t seen you on twitter recently! So I guess you missed all my excitement of finishing +RT @rockets: lol did the people behind titstare buy a bunch of tweets or something http://t.co/EsnS3p2iLA +# 376855971005739008 +@washiiko yes +Aw yeah got a test printout of my book. http://t.co/GJXPVcslxG +@VackerSimon roughly 110 MHz +@m1sp An effective disguise! http://t.co/iE0ffJQ8lZ is this just all a plot to get characters in outfits +@thegrugq I'm imagining you're at a terminal and can't actually see it render. In which case you owe me for not pasting the bomb emoji +@thegrugq ⬇ +@thegrugq ➡ +RT @vogon: @0xabad1dea whenever I connect to the internet I want a dlg to pop up saying "you are about to embark on an adventure that spans… +@thegrugq yep. It's brown +@AwfulHorse me either. A lot of floppies apparently +@hdmoore \o/ I am seeding chaos +OS/2 Warp comes with a doozy of a disclaimer http://t.co/nihMKnuyGe +Mission success! I have taken their innovative products http://t.co/u2931X6tp9 +@aantonop yes +@zedshaw do you have flash on? Flash took a sudden performance nosedive recently wrt freezeups and stuff +Reporting back: IBM is as boring as I thought, and they have a road called Innovation Way. +@thezeist I don’t even need to click that. Yes, yes it is :( +@hellNbak_ ie go drive for sport if you want but please please please let the robots solve needless mass casualties :( +@hellNbak_ I don’t understand why the heck anyone thinks human beings manually steering huge machines going fast is not the apex of dumb +@a_greenberg aw man don’t phone up IBM security and blow my cover +RT @a_greenberg: @0xabad1dea I have a feeling this tweet is bad opsec +I’m infiltrating IBM headquarters! Why? Meh, who needs a reason, spycraft is fun +@sergeybratus http://t.co/L6W6mwhy4d +Der Spiegel says they will have a full length article tomorrow… I’m hoping they’ll be more direct than the others and just go for it. +RT @matthew_d_green: .@F706L3665 @pbarreto The first step is to tear apart every standard we don't have a proof for, and decide if we can j… +@bbfreak nope. On OSX I use GQRX +@bbfreak heheh all of them. On stage? That was an Acer W700 tablet running Windows 8. Usually? A MacBook Air +RT @dildog: You can get rich and famous and important, but you'll always eventually be reduced to cleaning malware off the in-law's compute… +@pwpslade @codeferret_ I am cuddling with a cat RIGHT NOW +@dan_crowley @jack_daniel nah need some baby powder for color +I am convinced I literally *need* a cat, for mental health reasons. Tell @codeferret_ +RT @_snagg: A formally verified browser, I'd be curious to see how it fares in real life: http://t.co/N5q6mTdXWX +@maxtch that’s kind of a vague question! TrueCrypt is better suited to protecting large amounts of files in a practical fashion +On the redacted trickle of NSA docs RT @marshray This is like having parents who only let you eat one piece of Halloween candy each day +RT @trevortimm: New Snowden docs show NSA can access user data from all major cell phones—including iPhone, BlackBerry, and Android http://… +RT @zarawesome: architect of death-ray building blames sun for being too hot and in the wrong place http://t.co/V1pBjhVAsX +@elcuco2 um, no, it’s not a bad analogy at all. Stay far away from me. +@JackLScanlan get better flies +RT @WeldPond: John Gilmore speculation on "BULLRUN" and standards committees he was on. http://t.co/nV1Rs4savG” +Also being walked in on while taking an iPad selfie of a fake beard is ranking pretty high on awkward moments +Really though my intent is to join @travisgoodspeed and @moxie as being recognizable by hair alone. The Poof of Tangly Doom. +I have been informed to make heavier use of rubber bands when appearing in fleshly form. Is this how this works http://t.co/WaTnc2pR1Z +RT @MGS_Quiet: Mr Kojima explained to me that trousers on women just isn't possible with current gen hardware but said it may be possible f… +@DynamicWebPaige the most productive times of my life are Saturday nights. +@The1TrueSean @codeferret_ you take care of him or I will have your head from your neck +@0xcharlie someone has already reversed it iirc. The save files are in the figures +RT @csoghoian: "I'm glad the media didn't name the specific technologies and algorithms that NSA has broken or backdoored" - said no securi… +@ChaosDatumz make sure to test before you rely on one ! It took a lot more tinfoil than I had supposed to kill 3G on my phone +@ChaosDatumz if your grocery store has those big ol’ foil bags they might work (mine doesn’t seem to stock any) +RT @BrendanAdkins: Now go ahead. Tell me again why women on the Internet need thicker skin. +RT @BrendanAdkins: I haven’t seen a single negative tweet or email. No threats, no hate, not even an attempt to argue. Not one. +RT @BrendanAdkins: So @twoscooters and I were both widely cited for being upset with Penny Arcade. She’s since received thousands of rape a… +@i0n1c @thegrugq well that explains what happened to me! +@ChaosDatumz if you mean brand, not particularly, but don’t pay a lot of money for one. +@0xmchow @TheDukeZip maybe they’re going alphabetically by handle? I always win that one ;) +@kernel_pan1c sure, link shouldn’t change :) +@thegrugq oh... No, I'm worried about the sorts of comments no one would ever make about you ;) +If someone posts one of "those" comments to YouTube do me a huge favor and DON'T tell me :( +# 376436686357811200 +@blaufish_ if you see me with a waterfall display and you don't stop me it's your own dang fault ;) +So when do I get my check from the SDR manufacturers' lobby +@blaufish_ my voice goes multiple octaves higher depending on social context +@wimremes @sergeybratus I follow like six trillion of them which I am pretty sure is all of them +RT @TweetsofOld: The typing record is ninety-seven words per minute. Now if only a typewriter could be educated to spell correctly. MI1888 +@kaepora has improved 400% for people with brand new high-end phones* +This is the kind of unnecessary bitterness towards simple joy I can get behind http://t.co/9iEythgi7C +Apparently my talk is up, I can’t bear to watch it and kick myself over every tiny stutter and awkward turn of phrase http://t.co/InMaDihQPG +Wait if every Australian on twitter is unhappy then who exactly voted for whoever won +@McCarron @jjarmoc finally! But you do know about http://t.co/TulNC6sC9O right ;) +@m1sp it’s not necessarily a bad thing it’s just… well clearly something in my head is installed at a different angle +@kernel_pan1c this should work https://t.co/1LrFqPxmXu +@m1sp the part about being… disconnected. +@m1sp doesn’t it. But I mean looking at how I actually described her thought process that’s uh kinda too much like me +I probably shouldn’t psychoanalyze myself but apparently my brain is some kind of alien artifact almost but not quite compatible +@m1sp also, no context, I realized I am actually exactly like Erasmin +@m1sp hmm so he does ! He is _emphatic_ Mispy +@m1sp oh gods what did I do +@Wrathematician @m1sp therefore you must +@geekable @Packetknife https://t.co/AstyHuIgOj +@Jennimason0990 @chead yeah no sorry it’s probably actually true :( +I’m pretty sure our stuff flags 1024-bit keys as a flaw - and we find them often… http://t.co/vTvgMSbJSp +(So I’m expecting the next doc to be about time traveling aliens, obviously) +Incidentally everything said about the NSA recently I have heard before but I also heard about aliens and time travel. So… +In this RT: I advocate slightly less violence than @Packetknife or at least my PR people say I do +RT @Packetknife: Next time someone says "We already knew that" about a NSA revelation - throatpunch & waterboard them until they tell you W… +@mdowd but @spacerog totally took a wrong turn and ended up at their office once +@JackLScanlan what’d ya do Jack +@yolocrypto yolo my brolo +@m1sp it's hard to take pictures on a train http://t.co/VuQfzkemDH +# 376122134277664768 +Native New Yorkers can smell your fear, I am certain of it +@justintroutman @marshray @matthew_d_green oh are we playing thread necromancer ;) +@ameaijou a weak one, for I am already on an outbound train +A policewoman flagged down our bus from the sidewalk... to high five the driver and leave +@m1sp and that means NO scarves, NO boots, and for gods sakes NO SWORDS! +@m1sp lol way too skinny! Rather trying to leave the country without Fluens hearing about it +@m1sp btw I drew Ismyrn in a dress and she hates me now. It’s plot relevant too! +@m1sp I got on a bus with some weirdo named @kufat +I wasn’t paying attention for a few hours and now I’m in New York City. Yuck. +@ErrataRob @sambowne @0xcharlie COMCAST DOWN CONTINENTALLY - SEND COMPLAINTS TO ROBERT GRAHAM +@thegrugq @0xcharlie St. Louis, MinnesOta, it’s code +@alex_gaynor @glyph my favorite kind of programmer To murder +@blowdart @0xcharlie it’s okay. I already know he lives in Minnesota, so ISP choices are limited +@0xcharlie Comcast? Seen a few say so now I think +@Packetknife and some of us are in love with them as a concept +RT @hdmoore: GitHub has no confidence in my ability to code: "Great repository names are short and memorable. Need inspiration? How about g… +@ezchili it could be the refresh rate. Or maybe the colors are leaning too blue and it wakes you up too much +@marshray @ioerror it’s true. A huge number of these workers would live in Prince William County; I did +@ioerror IMO it’s not “the NSA” but a problem inherent to gov using the net as we know it, preaching to the choir but http://t.co/ROwiraCKeQ +RT @DeusJes: Why can't a spambot ever be like "Hey, keep up the great work! You are awesome and appreciated!"? +Wow this description of php-internals is pretty much exactly what I assumed just from looking at the product. http://t.co/wmoPG0IRPh +@marshray @ErrataRob the heck did you do +@LiangNuren I haven’t, but viruses are often given very arbitrary names by whoever finds it first, if they don’t come with a clear name +@Viss wow it’s not dead yet? +@LiangNuren yeah +@FinalBullet I sent you an email from on a bus and I’m not 100% sure it went through +@ShadowTodd neither holy nor roman, bro +RT @julianor: Thomas Pornin did it again! http://t.co/6gxzXjN15T how to backdoor /etc/ssh/moduli +@kaepora yes, because 10 years ago it would have been SVN ;) +@mattblaze let’s all use SEED algorithm. I trust South Korea! +RT @RandomStep: @0xabad1dea better: you don't get to set up cameras outside them and record everything for future reference. +@mattblaze my instinct is implementation. That’s what would make it so fragile. +@thegza10304 @llaurs grats! +@SteveD3 I’m on a bus but you can send melissa . b . elliott at gmail if you want +I am so sick of the “ohh you use the internet so you have no right to privacy” argument. Yeah my house has windows but you shouldn’t look in +@thegrugq so either my young memories are corrupt or the tiers of the overpass used to go higher +@thegrugq actually I do remember the old system in exactly one way: looking DOWN on the sand and gravel mixer +@thegrugq "finished" sure sure... +A fear I just found out I had: an elevator with a mechanical bell #rickety +Times Android Maps has crashed while navigating Boston: all of them +Sometimes I feel like I am drowning beneath the weight of all the problems I know about but can't actually solve +@thegrugq @chriseng um yeah that was my point +@thegrugq @chriseng but really- who can deny that IF standards and codebases were deliberately flawed- others can exploit them too? +@thegrugq @chriseng he's only my boss when it's convenient +@thegrugq but that doesn't really absolve my heart of the burden of "ugh, everything is terrible and it's too complicated to explain" +@thegrugq I did go out of my way to say "this will protect you from laptop thieves and snooping housemates, but not necessarily governments" +@chriseng your mission, should you choose to accept it, is to not make the rooting out and repression of dissenting thought even easier +@jesster_king right, let me tell all the readers of Wired to roll their own damn crypto algorithms and shoot and hang themselves too. +It's really hard to write an advice column for how to encrypt your files when your subconscious is screaming "WHAT IF IT'S BACKDOORED" +RT @mattblaze: If Snowden wasn't read in to BULLRUN but had access to docs, that suggests even more serious weaknesses in NSA security. +@homakov that uh, is a bit awkward, yes. +@WeldPond well that’s kind of it, isn’t it? They’d have to be daft to not build in an excuse. +I swear, some problems with text just cannot be seen until after they are published on a blog. *tweak* +@Packetknife But if you are wondering where the older characters find their endless wells of philosophical outrage -- well -- here it is. +@Packetknife incidentally I have a growing discontent with the last few chapters, they need work, but the basic structure will not change. +@Packetknife I am a character in a novel with a convoluted plot, and I do not yet know the ending. I hope it isn't the sort that I write. +Finally gathered the greater part of my thoughts together: Anger Against Surveillance. http://t.co/v2zLlQVQbk +@_____C it’s Schneier; his audience is the people in the government as much as it is people like me. +RT @thegrugq: Terrible typography in these declassified docs. Can't NSA hire some designers to fix this? http://t.co/iPqSfHRjJK +RT @Webwereld: #Android #Kitkat maakt heel wat los bij kleine kinderen. https://t.co/CJqm172vrH #comic #strip +@ZadowSapherelis @m1sp yay! +@kivikakk oh my goodness well please mind the last few chapters need some editing still! +@chort0 well, no, I do not think he is sane, but that is a different problem from if he has some good points ;) +RT @matthew_d_green: New blog: My (tiny) brush with the biggest crypto story of the year. And lots of random speculation. http://t.co/BDVKo… +@m1sp <3 I need the artwork afore I can fiddle ~ +@matthew_d_green I’m not under the impression Silent Circle has anywhere enough traffic to be Major. +@chriseng @grey_area I’m saying, idiocy and ignorance are NP-hard, but among people who write standards MD5 is in fact pretty deprecated +@chriseng @grey_area you could literally put out a presidential emergency notice to stop using an algo and SOMEONE will still ship +@grey_area @chriseng everybody who’s actually qualified to be making these decisions at least +@chriseng yes actually +@SecurePessimist if you're serious I am very honored!, but I do not think I am in a position to be going to California right now? :( +I stop and reevaluate the four paragraphs I have just written into a tumblr text editor. My gods, I am self-righteous. Oh well. It's tumblr! +@r3d4ct3d it is going to be a Thing! I need to substantially edit the last few chapters and get some artwork I commissioned. +@demize95 ahhhhh two t's ttwo tt's ;-; +Hipster Best Friend had a printout of my manuscript even before I did... https://t.co/Rhq2NgW3vT +@m1sp is that a metric Joltik or imperial +@m1sp OH MY GODS YOU GOT YOURS FIRST turn it on the side so I can see how thick it iiiiiiiis +Time to tap into the source of my power and transmute anger and frustration into tumblr posts that get like seventeen whole likes +RT @drainmice: Well, we are Mozilla, so I figured this needed to be made consistent with Firefox UX http://t.co/1W04Crm7IW +@ELLIOTTCABLE none of that genderized language ! +@m1sp oh no you’re encouraging me ;( +@ELLIOTTCABLE @m1sp this is true blue friend zone love, I think. +@m1sp I want to topple the oppressor or something but really that just means write an angry blog post +@m1sp I need a hug +RT @zenalbatross: "Complete enabling for [redacted] encryption chips used in Virtual Private Networks and Web encryption devices." http://t… +@marshray @matthew_d_green is there some sort of super hero team of cryptographers I can be a junior member of +@alex_gaynor @eevee personally I don’t get it. Like is this a wedding? Speak up in 1993 against NSA or forever hold your peace? +@alex_gaynor @eevee this is an extremely common trend among people who… worked in/for government. “Well duh!” +“The NSA’s actions are legitimizing the internet abuses by China, Russia, Iran and others.” Damn right. +@Atheist_Dan02 @0x17h gods damnit 17! Stop trolling innocent atheists +RT @osxreverser: With all these capabilities why did they took so long to find out that general cheating his wife? ;-) +# 375764140914405376 +@ShadowTodd I’m… pretty sure he actually has a pretty big fandom among young ladies. +@flamsmark @puellavulnerata I would say yes because they *interact* and the whole story is their relationship whether or not there are words +RT @DrPizza: If algorithms and implementations that people actually use are insecure then that information should be published. +@Tomi_Tapio first caller: woman says: “farms” +@Tomi_Tapio question: “There were once over a hundred of these in America. Now there are four. What are they?”: +@Tomi_Tapio that reminds me of the most “American” thing I ever heard spoken, on a local radio show — +RT @thegrugq: "Five weird tips to NSA proof your life - the SIGINT community hates them!" +@bistromath I basically heard it when I was like twelve +@Jennimason0990 that’s the question ! :( dumb meanie NSA +Yes we were all already speculating SSL was broken since forever but with a little more oomph this time +Wait so I turn my back for a few hours and suddenly everyone is speculating SSL is broken? GDI +RT @thegrugq: “@matthew_d_green: Still feel confident in OpenSSL?” < has anyone ever felt confident in OpenSSL? +@SteveD3 I’m not even sure what happened I was working on something and what +I figured out how laptop manufacturers will stay in business: it is easier to buy family members a new one than deal with them… +RT @Viss: http://t.co/frxO4hp5Qv .. holy shit! Can.. can i.. take.. some credit for that? I'd love to be able to say I made a difference. #… +@vogon NO, *VOGON*, I am being quite literal +@vogon you are such a disproportionately heavy favoriter that you pretty much have direct control of my Discover tab +@m1sp btw I uploaded all my newer source material photos into my old gallery http://t.co/IE65PmvMDr now with like 900% more birds +@m1sp http://t.co/uTxkoIUgiH ^_^ +@donicer I just think, if it were being used for intelligence, they've already screwed up and it will be too noticeable when it's active +@donicer but they're noticeably not-particularly-active. They should all be hitting up random popular websites or something +@m1sp well how else am I supposed to brutally mock their points without mercy if I didn't take the time to read carefully first +@misuzulive why am I even bothering to be surprised +@thegrugq conveniently, there is both a bank and a liquor store across the street +@SurprisingEdge it boils down to getting the meaning of some booleans in setting cookie options wrong. +I just distinctly heard someone outside my house say “remind me to rob a bank later.” Hear something say something on twitter! +Yes I know I retweeted cwgabriel but I’m a “at least hear their side” type generally +RT @cwgabriel: Been working on this post for a couple days: http://t.co/u5uMwyKKLN +@misuzulive is that Fan art of your car +@donicer it’s a little too obvious for that I think. You don’t need hundreds of thousands of noticeable nodes… +@name_too_long I don't! But no-one is going to try. +Reasons I don't get to be customer-facing, episode 317: urge to glue the documentation (of THEIR code) they didn't read to their faces +Today I resent: poorly-named Java library functions confusing programmers into thinking they did the security thing right. They didn't. +I'm glad @gmail decides to non-deterministically load or not load the tracking number widget in the exact same email #UIRage +@Kim_Bruning @blazingcrimson honestly it doesn't surprise me when people block me because I can accidentally bring too many people in +@Kim_Bruning @blazingcrimson could be for anything, we're not exactly ideologically aligned +@Kim_Bruning @blazingcrimson if you mean 20Committee, he blocked me and that just makes everything on twitter awkward +@jemgillam wow at least I'm not allergic to that. To some other weird random stuff, but not latex :( +@thijs one that is such a thin font it all but vanishes at twitter avatar size. And is beveled serif. Like it's a gorram bank. +Paypal sent me an email titled "Congratulations!" and doesn't really say what I'm being congratulated for. Am I the new CEO of something? +@jemgillam the guild of people who do not react as intended to having their messed-up organs messed up in the other direction! +@StrThry I have extremely long ones. So yes, probably. +@jemgillam now imagine that you were given contraceptives for having excessive periods... and it turns out you're allergic +@iiadamogrady oh yeah I know and I often exploit this >:) +Guys who like to say "it must be her period": you have a 1/4 chance of being incidentally right. And a 4/4 chance of being incredibly rude. +@blazingcrimson which I interpret as a symptom of having worked with a focus on Russia and developed tunnel vision… +@blazingcrimson he seems smart and knowledgable but he comes across as having decided that Russia is the root of all schemes in the world +@blazingcrimson Mr. 20 Committee is tenured at the navy school or something I guess +@blazingcrimson forgive me, I mean the people who are aggressively blogging about being Former NSA +I guess I can’t distinguish between “Former NSA Guy knows something” and “Former NSA Guy been doing this too long, all roads lead to Russia” +@mattblaze I got one, Gail! They be payin’ top dollar for fresh cryptographers down at the NSA! +Oh my gods it’s beveled? Someone just got Photoshop. Okay, that was my one allotted tweet on the subject. +@Hackintech_ well that’s a good reason to spy on us isn’t it ? :p +@Hackintech_ well wait until you are not in class! But it’s just a Former NSA Agent who sees all roads to Russia +I’m also confused by people who think the simplest explanation for a known journalist publishing leaks is they already worked for Russia +@Hackintech_ this guy has blocked me but it’s just as well he’s homophobic and stuff http://t.co/rU4XmTW4V5 +It troubles me that the “former NSA” types consider “selling secrets to Russia for cash” and “leaking to press” to be the same thing +@justinwolfers @DynamicWebPaige ofc not all schools actually have economics and home economics (not that I’d rank them high anyway) +The tor botnet http://t.co/hnkfamAbrs +@DynamicWebPaige if anyone ever dares ask me to wear heels to anything, my condition is all men in attendance must as well :) +@stavvers @kivikakk I have literally never seen a man punch another man in the mouth in my life. Maybe this person just has abusive friends! +@thegrugq @wimremes you are really really gross +@thegrugq they are CLENCHED +@amanicdroid (the boy in the picture I drew earlier - I don't like him, and he dies horribly for it, MUAHAHAHA-- haaa.... I'm sane) +@amanicdroid heheh. I get to brutally murder my own characters one by one +http://t.co/2suymWAX9N is the first story I have ever read where I hope the supporting characters murder the main character and take over +I’d ask if this is to imply that Nokia phones DON’T break in half with sufficient force, but you know, actually… https://t.co/82UEEEwrIt +Make fun of ME for not drawing hands will you well look that's totally a hand what now huh http://t.co/fsGa2QP2ph +@vogon okay I’m putting you down as “would settle” +@vogon I need to know for score keeping purposes +@vogon you didn’t answer my implicit question +@vogon clearly we are long lost siblings. Hope you weren’t secretly pining for me +@vogon also it doesn’t happen until I *stop* stimulating it by removing the q-tip +RT @vogon: @0xabad1dea incidentally, the reason why: http://t.co/y9mapWwo8Z +@vogon I demand funding for a study +Weird true facts: I can make myself cough on demand by using a q-tip on my right, and only my right, ear. +@vogon if your target market is other startup founders, you’re gonna have a bad time +@vogon why on earth would they think anyone would recognize and care about their VCs +@_redwire from an engineering requirements perspective. There’s more to deploying it than just getting the math right +@_redwire yes, technical texts will stick a lot better the second time around +@_redwire rereading, technically, though it's probably been seven years at this point. Found it lying around +@Ionustron I draw hands! Hundreds of hands. They're just not very good yet unless I am drawing jumbo man-hands +@_redwire yes I know it's just literally the only thing associated with him in my mind :p I am guessing you mean the puffy hat and stuff +@_redwire you mean they both look like 10yo girls? >.> +.@bhelyer HIS FISTS ARE CLENCHED I can't draw hands +Characters! Art art art. http://t.co/0q5HWdFBB9 +@bascule @kaepora lol. This new avatar reminds me that one of the characters I designed for my second novel looks weirdly like kaepora +@kaepora why doesn’t your avatar have glasses +RT @jenheddle: This Amazing Stories editorial boils down to "Girls are icky." http://t.co/5HASpTB53X +@nickm_tor A: they complain about top posts Q: how do you know someone is old? +@jenheddle @Xaosopher wow this is literally “how dare someone write science fiction that appeals to women” +RT @mfeathers: School is a prison and it is damaging our kids http://t.co/Dm3nRLoYKD +@GetYarny ooh ooh me. Just finished my novel about gay boys and girls from a fictionalized Silk Road… +@matthew_d_green I thought we already agreed he was Dogbert +@0xcharlie feel free to share these thoughts with me +RT @Packetknife: "Sorry I Thought I Could Leave When You Said “You Are Not Being Detained”" http://t.co/kYDqBmxkqF +@matthew_d_green not when someone figures out that if ten thousand people with huge passwords log in at the same time the ram thrashes +@ameaijou I don’t like those either. The list of things I do like is a bit different +@thegrugq @pusscat source: some very traumatized American teens who saw a woman shot in a bar fight. +@thegrugq @pusscat my understanding of Mexico City is that they won’t even accept a report of murder if it’s a busy day. +@ameaijou I do not enjoy burning myself +# 375407883703574528 +If any of you wonder why I’m not into hardware hacking see exhibit A: everything I have ever tweeted about my hands interacting with matter +For only $8 a day you can save a badidea from having to endanger herself by operating a stove or using a knife or anything else oopsie-prone +@vogon I DON’T KNOW it just happened okay +He leaves me to fend for myself for ONE meal and what happens? I scald my toes. +@glyph I don’t know! And they might not have known either. I nominate @marshray to the stand +@marshray yeah. And what is really the point of a few hundreds KB of password being mapped onto a smaller hash anyway :) +@glyph my offhanded guess is it’s defensive against hypothetical information leaks +@vogon I’m kinda disappointed my parents managed to get it fixed +@vogon they put the wrong year on my birth certificate… +@vogon are you the Corruption Whisperer +@m1sp here's to the next two hundred pages of notes http://t.co/9mpdLXv7JM +@eevee fine but your only choice is oatmeal +RT @nicklockwood: @0xabad1dea @vexorian0 [joke about it being possible to hash a longer explanation to fit the character limit but it takin… +Now to figure why Preview.app would seem to crash because its open file was forced out of working set by MD5'ing movies. +@Kufat with *******? wow, weird +@eevee is someone looking for a cookie ;) +@nicklockwood @vexorian0 it's difficult to fit in "All of you think you want literally no upper limit but you are wrong" and still fit why +@DisK0nn3cT and Ferguson +So yeah you can set it to kilobytes and be totally fine but if I can paste a 1080p movie in there we got a problem ;) +You don't actually not want *any* upper limit on user-controlled password length, everyone. Hashing is fixed output but it is not fixed time +@ShaneTheKing and then your backend is DoS'd by kids setting their passwords 8MB long and it has to hash them +@yacCz no, I really doubt it. At that high, it's just a limit so that you can't set rickroll.mp3 as your password... +@ShaneTheKing I think PHP defaults to 2MB or something, my novel is aaaalmost that long. +@ShaneTheKing (and if you want to define it as the maximum size a POST can be without crashing your server, that's fine.) +@ShaneTheKing hahahaha I will paste my novel just to spite you, that's what attackers do. The backend has to reject it at some point. +@ShaneTheKing there has to be a limit SOMEWHERE. And it's usually a heck of a lot lower than 200. +"Your password must be between 8-200 characters in length." Well that's refreshing +@clerian so this will always feel like "elder scrolls lite" to me +@clerian The creative team looks pretty good... I just consider the magic of Elder Scrolls games to be in the private immersion +@clerian yeh +I can't believe I'm checkbox-signing an NDA for a video game. It says not to reveal anything about the game's setting SPOILERS it's Tamriel +RT @marcedwards: Ok, you win. I promise I will never complain about iOS 7 again. http://t.co/sqNtc8O7oY +RT @RSnake: This is what happens when you try to write a funny Blackhat post and it turns into "hrm" https://t.co/zo8wiROg0M +@arstechnica I ended up carrying a battery larger than the entire phone in my purse for peace of mind. +@pisseditguy it works fine except when it doesn't +@julianor wow contradicting the word “random” in the space of one sentence is a pretty good start huh +@Raspberry_Pi gahhh! I’m sorry. +Oh look Twitter Web is down *switches to Mobile Web* “Oops! You will need to generate a temporary password on Twitter to—” (╯°□°)╯︵ ┻━┻ +@irvinHomem Practical Crytography, 2003 +I love my field because it is very optimistic http://t.co/X7Ll7aRdaU +BUG: if Javascript is not enabled, this function may falsely report that the world has not yet been destroyed http://t.co/iVCoAoOe0p +@vogon oh, twitter web still has the blue lines? well then +@thegrugq ahh I was looking at Linux's http://t.co/khDXD0Vc6Y +@thegrugq pretty sure malloc still uses their actual system calls +@thegrugq that's the manual page the quote is from actually. +Is your allocation routine just not comfortable? Are your page tables thrashing? Try malloc(3) with no obligation today! +"The malloc(3) memory allocation package is the portable and comfortable way of allocating memory." This sounds oddly like an advertisement +@sakjur it really really depends on the app. The new Internet Explorer is actually pretty touch friendly, more so than Chrome... +@sakjur he's done it to me too they all do it sorry! +@sakjur in any tablet it will almost certainly be a fixed amount. They are SoCs +@elad3 spare a thought for the peasant with only two cores +Someday I will actually go and find out what is in gettext that makes it take so long to compile and you will never hear from me again +Oh wow Outlook Web is horrible. Oh wow it's so much better than its previous incarnation how did I not stab myself in 2006 +@vogon “We are having a problem with the electrical system and I — hello?” +@_wirepair almost all the good games come out in Japan first deal with it +@FinalBullet work address? hang on... guess who's home sick ;( +At least I'd give it a shot if @TESOnline's beta key redeeming page wasn't down +Hey I got an @TESOnline beta invite. I still think the quiet splendor of the single player games will always be better but I will try it. +@gmail pardon, Promotions tab. +Funny how an offer from Google Wallet doesn't go in the Offers tab, @gmail +@mtheoryx honestly I probably like Kubrick better +Get your VOIP automatically rerouted through higher-capacity links by saying something suspicious! / @_wirepair +Friends don’t let friends deploy default Bootstrap. Don’t let Helvetica Neue face the fate of Times New Roman +@sakjur I chose it because it has 4GB ram. If you don’t care you can probably get a 2GB tablet a bit cheaper. +@sakjur I have Acer iconia w700. Get at least 128GB SSD if you can. Don’t get Acer’s 8” model +RT @eevee: RT priv: Longest piece of literature ever written is allegedly an SSBB fanfic: http://t.co/LSTis9ZI8X 203 chapters. Over 3.5m wo… +@sciencecomic I’m not a comedian but people like to explain my own sarcasm to me +@0x17h they said money didn’t change hands, rather it is a double promotion +@landley it was in the comments on the recent Ars article about “balky carriers” +@Myriachan it seems to be crashing right now but https://t.co/yaI1L1khKu +@0xmchow also, no one eeeever spells my name right ;( +@0xmchow *turns deep red* other people have had such thoughts! My only novelty was demonstrating how to do it for $10 ^_^;; +@ThomasWinwood I’m pretty sure he just has one of those generic bendy-neck lamps with a shade that focuses the light straight down +.@_larry0 I know three different people who set fire to their dorm rooms with those things. AVOID +RT @_larry0: The dangers of lazy desk lamps. http://t.co/TqWgHTWbo7 +@zooko if you don’t find anybody closer, we are a long-ish but straight bus ride from Cambridge out in the suburbs +@kyhwana you definitely were following me WAY before I set my computer on fire +@alex_gaynor @eevee it’s just about ready! I’m waiting on complaints from the beta readers +@eevee @alex_gaynor I’m 25 and almost a half! +@rgov I thought you were complaining about a girl for a moment and was wondering who taught her that nonsense +@alex_gaynor I like to think that’s why most people follow me. I also like to think they’ll all buy my novel and I can retire at 26 ;) +@alex_gaynor one went on to run DARPA, two are cofounders at my company, etc etc. +@alex_gaynor they testified to Congress — under their hacking handles — that they had the capability to take down the internet in 30 minutes +@alex_gaynor some of the big names at my company used to be big names in the 1990s hacking scene — the l0pht etc. +@eevee … but it’s better than getting photoshops of my face onto pigs I guess ? +@eevee which kinda grates on my nerves because I don’t know who’s only nice to me because I work for That Guy +@eevee BTW like 90% of my miso problems vanished when I became publicly associated with a couple famous guy-dudes isn’t that weird +@m1sp it involves FLASHBACK ONLY CHARACTER DIES and I don’t even mean their mother +@eevee it’s not MY fault my slaves don’t seize my plantation and murder me. Well is that what he wants?? Okay +@m1sp @eevee if I could axe murder someone through the internet welp this would probably be like my seventy-sixth offense but yeah +@m1sp oh btw I’m working on the story of what exactly led up to Hayr rage quitting his brother’s company and well you know me +@m1sp wha? I see it here. +@meangrape I think it’s terrible. My comment on Ars Technica won’t fit here. +@eevee thanks, I accidentally a rant. +RT @MotherJones: Here is a picture of John McCain playing poker on his iPhone during today's Syria hearings: http://t.co/JYs0hpJy5x http:/… +@trimosx I’m not trolling. I’m showing a photograph of something odd. I don’t see how rice being insured by Samsung is somehow less odd. +@wookiee I’m rather endeared of the prior but it kinda depends on context +@cocoalabs largely a matter of hoarding soundfonts :) +@cocoalabs garageband +Yep I wrote another typical RPG background music thing https://t.co/5QJcdwY6Kw +@vikemosabe @kevinlange and then it segfaults for an entirely unrelated reason +# 375030751244607488 +@vogon I rule nothing out when it comes to the depths human beings will sink to. I have a Nexus 7 +@focalintent well that’s no fun. Sorry I am stuck in creator mode ;) +@focalintent and, for avoiding the headache of trying to manage the sales infrastructure myself, I don’t think 10% to them is too high +@focalintent right now unless I learn otherwise I am leaning Lulu. Upload PDF, no DRM, 90% to author +@0x17h aww yeah SIGGRAPH like it’s 1995 +#AutocorrectBandNames The Elliptic Cure +@0x17h *squint* oh. So it is. … I have poor depth perception. +@0x17h I can’t read Braille but that appears to be four characters +@eevee “People don’t capture the nuance of this overwrought, obtuse language because they don’t care” uh-huh +@WhiteMageSlave \o/ +“My adventure game training took over and saved me” http://t.co/jSGO9uygfl (step 1: evaluate inventory step 2: apply everything to door) +@sanitybit thumbs up we’ve all been there +@vogon what secrets have you kept from *me*? Are you actually an android fan +RT @alex_gaynor: http://t.co/EUFVsHOWya wins the internet. +RT @maradydd: That's actually a pretty clever use of 404 error page real estate. Well played, Belgian federal economic ministry. http://t.c… +RT @kwiens: The Kit Kat install base is already shockingly fragmented. http://t.co/8j6k9gSNjn +@armcannon I was on a flight from Europe that did that actually! It was pretty neat. +@vogon device… specifically for… cloud storage music? Isn’t that kind of contrary to the point +@blazingcrimson I did have one that would leave stuff in the framebuffer, persist across reboot, then get a really acid trip login screen +@grp @tapbot_paul especially weird is that it was on my desktop when that wasn’t even my working directory +@grp @tapbot_paul and it went away after another reboot cycle. Weird. +@grp @tapbot_paul the `bless` I was given to resolve already being stuck in a loop of a firmware patch not applying seems to have done it +@USP_Talon @0x17h the year Animal Crossing came out, Nook took second to Ridley for Best Villain just for that +@blazingcrimson I knew how to edit xorg.conf once. Then I stopped trying to use imported Korean computers with Linux +@Kufat aww. +As with all hard problems in computer science, this one was resolved by giving up and rebooting +@dioiminik .... except the file cannot be seen from the terminal as root implying all sorts of degrees of recursive wrong. +@jrecursive I do use filevault yeah. What did I do ;) +Great so OSX has left some kind of magic folder on my desktop that cannot be deleted and cannot be seen from the terminal as root +Samsung-branded burnt rice? http://t.co/3JIiOa2ayi +RT @normative: Basically, as long as NSA avoids vacuuming up full Netflix streams, they can keep their % of Internet traffic "touched" soun… +@marshray @ErrataRob @Walshman23 a LEASE? Geez. My proof of residency to get a new ID was any utility bill. +@zurashu presuming they run server side, and have resource limits, you could try to run up their memory usage to max +@simukis trying to sandbox N language runtimes is an N**N hard security problem ;) +@simukis if it’s done server side they kinda have to! +This looks like it could be fun http://t.co/aSVnCqMMYg +@marshray may I ask what they wanted +RT @DrPizza: Android Kinder Egg (banned in the US) +We’re not milking this unpatched window enough https://t.co/i5enaY6oyt +RT @sroberts: You wanted it, you got it: 2FA for GitHub: https://t.co/SKKSk8x54P +@manicode @thegrugq @chriseng he uses an iPhone and you can tell when he misplaced it and gets out Android because he suddenly can’t spell +Time to die of shame because I mistyped Bertie Bott // @darkuncle +How do you spot a corporation posting their own blog to reddit?: the title of the link is four lines long +@blowdart if you’re not going to accept my attempts to get along we’re gonna have a real problem, chap +@nickdepetrillo gods you look awful without a beard +Android Kit Kat? Call me back when we have Android Bernie Bott’s Every Flavour Beans (I demand a cookie from the British for the spelling) +@F706L3665 it wasn’t the day after, it was the minute after, for about twenty minutes +RT @kingcope: @0xabad1dea @mikrotik_com Mikrotik engineers have a secret formula which reveals if a bug is exploitable. I want to have this… +@Blackrobe_ to little surprise your client did not catch that I unretweeted it :( +@osxreverser @i0n1c :’( +@ELLIOTTCABLE @cory_foy (but I unretweeted it bc it looks to be two slightly different tickets on second look) +@ELLIOTTCABLE @cory_foy you say that as if problems are only allowed to be pointed out once in human history +@mikrotik_com @kingcope please tell me how you have solved open questions of computer science to show register control is not exploitable +Looks like @mikrotik_com does not know the difference between Proof of Concept and weaponized exploits http://t.co/NwINPoXE79 h/t @kingcope +@m1sp just the Magic of Friendship or something idk +@ar_lonz @F706L3665 it’s open source, we forked it, and our branch is better maintained ! +Anyway here is a nifty SEA timeline of news orgs getting social engineered en masse http://t.co/O6wVO9Joen +.@F706L3665 just like the guy who invented GIF is wrong about how to pronounce it, the British are wrong about some rules of grammar ;) +I was going to compliment SEA on their English skills but then I noticed they used the British dialect, how sad. +@m1sp *takes your hand and dances* +Spam bio: “hipster-friendly food ninja.” I’m trying to decide what that actually implies and it’s not looking good for hipsters +@kaepora dude, upgrade to 3.11, it comes with TCP/IP +RT @briankrebs: Many Fins I've spoken to today seem quite blue about Microsoft Nokia purchase. Mood is almost like someone died. Tied up w/… +Foreseeability of this type of event: 100% http://t.co/1N4ayXARw6 +RT @0x17h: github search is the gift that keeps on giving https://t.co/uoDlRqNWmQ (thanks @casiotone!) +@kingcope yes! But seeing your name and “SSH” in the same tweet is alarming don’t you think :) +@WhiteMageSlave that’s fine! It’s still good for you and for the finished product either way +@attritionorg ahh a fellow exploitsexual +RT @igrigorik: it's a favicon day today... "Inventing favicon.ico": http://t.co/9gEW4gYtjj - yay for IE5 and late night checkins. +@m1sp @WhiteMageSlave they are the model of arranged marriage success. +@m1sp @WhiteMageSlave she’s currently speculating, in front of Barsamin, whether or not she should just kill Barsamin. +@WhiteMageSlave @m1sp um um um +@m1sp @WhiteMageSlave gods don’t favorite my husband’s tweets he just ran in here and did a victory dance +@codeferret_ maybe you’re just Mormon +@swizzlr lol the joke was it’s not OpenSSH, my previous tweet —> http://t.co/MmAvcoJ7H8 +RT @crypt0ad: Microsoft to acquire Nokia Devices & Services, accelerating the Windows ecosystem -- http://t.co/y747blMHwn +@OSVDB sorry, it’s just some chump’s knockoff SSH in a few hundred thousand routers http://t.co/MmAvcoJ7H8 +Mission accomplished: gave OpenSSH contributor heart attack. I think it’s been a while since they had a good pre-auth bug ;) +@damienmiller I bet I scared you really bad for about two seconds +@zedshaw It’s a valid part of the end user’s threat model. People deserve to know that it’s possible for a little oopsie to become key theft +@zedshaw and number of times that an XSS in a website is the user’s fault: approximately zero +@zedshaw it raises the good point IMO that XSS can be very dangerous when it’s normally just a nuisance +SSH implementors, you had one job http://t.co/JpDgAOS1ps +@zedshaw JavaScript is not generally considered “on your computer.” It’s supposed to be Perfectly Safe. +@0x17h I know, but I find it way too uncanny valley to ever succumb to the propaganda +@vaurora in my case I’m afraid they’re right! Finally found someone who sold something approximating that size and it actually fits +@0x17h I don’t really get this genre of paintings that look like people awkwardly posing for the camera +@thegrugq a sandbox game kinda like Minecraft but 2D pixel art +@m1sp @WhiteMageSlave oh I guess she is a lot like me huh http://t.co/MYZY4IauSe +Wait since when is there Terraria for iPad since last week apparently +@0xdeadbabe @JBird_Vegas oh haha yeah +@JBird_Vegas @0xdeadbabe http://t.co/0Vjircfkqd +@0xdeadbabe you know the context is a system level process that can update silently and silently give itself permissions? +@0xdeadbabe it’s an upwards trend. That’s why I called it the current state of Android +@0xdeadbabe it’s an open source operating system! We’re moving all the functionality to a closed source runtime +Good comment on the current state of Android: “closed source is not inherently bad, but bait and switch is” +# 374680805551132672 +@kivikakk hmm I feel like one of these might be fake +US army fails at disclosure http://t.co/S4TDSfYgcD ugh if you’re going to be a military with a bazillion computers you can’t do this +Wow you people have some really strong opinions on Android and Windows 3.11 +@martin1975en but at least they get security updates. +@martin1975en I’d say nobody is stuck several major versions of Windows behind but that’s not quite true either. +@hokazenoflames I was five :) +@hokazenoflames and I distinctly remember he said he knew nothing about it except when you turned it on it said “for Workgroups” XD +@hokazenoflames and I was *five* when it came out. I heard of it because my grandfather told me he had a computer at work :) +@hokazenoflames I mean a lot of my followers are 14yo web devs. And that’s okay. +@bryanbrannigan @innismir if so, and there is still a possibility, we can deduce that assassinating Hitler was not sufficient +@tomslominski which code? Google Play Services? No. +@anathem that doesn’t mean it’s not a joke :p +It occurs to me that I am only just barely old enough to get a Windows 3.11 for Workgroups joke myself and half of you are younger yet +@ticky they already never happen :/ +Linux 3.11 for Workgroups! http://t.co/vDvE2Yd221 +I anticipate there being NO ISSUES with a massively complex Android user mode process that can assign itself new permissions silently +@tomslominski Android doesn’t ship to anyone, that’s how we got into this mess +So Google’s solution to Android fragmentation is to move everything to a closed source mega-app. Great. http://t.co/0Vjircfkqd +RT @zurashu: @0xabad1dea Unsigned integers are dangerous. Please use only integers that come from a certificate authority (?) +.@MechMK1 I *hope* the database backend is in 64-bit but from what I’ve seen of early times at twitter maybe not ! +@zurashu it was unsigned +@Packetknife some people REALLY like pumpkins +For a brief instant tweetbot showed one of my tweets as having MAXINT favorites before it decided I was not actually that popular :( +@vaurora not that my twitter stalkers need to know this but Victoria’s Secret measured me as 36 DDD and sent me away +@vaurora like, not even that tall, not even six feet! But nothing made for women ever fits me +@vaurora it is a carefully crafted illusion. The fraction of my ancestry that is Nordic shows up quite a bit. I am Too Tall +@vaurora I tried once. Turned out they literally did not carry a single thing in my size. Worse, they acted as if I should have figured. +Who needs the unicode bug when we have @verge for all your iPad segfaulting needs +@vaurora @0x17h my doctor’s prescription to me for sleep was actually way too large and I had to take it down two powers of two +@wildbill I did not mean to imply that they were not! Just that the idea of a userspace library even mentioning them sounds a bit silly :p +I’ve actually managed to clear out my Instapaper backlog which implies I must be strongly avoiding doing something or other +@sciencecomic :( +@markemer @0x17h *makes sign* gods deliver me from the fate of the neurotypical +@markemer @0x17h anxious as hell, a total basket case, but not depressed. This seemed to confuse every professional I interacted with. +@markemer @0x17h my problem has been insisting over and over again I AM NOT DEPRESSED as they give me antidepressants +@0x6D6172696F I’m not sure sure how making a new standard out of whole cloth is gonna help anyone +@markemer @0x17h I actually went all the way and quit that one because it wasn’t really making a difference anyway +@0x17h (which just goes to show that our medicine arts are a mess) +@0x17h and despite it having a reputation for being Scary I think it’s the only thing I’ve taken that hasn’t made me worse in some other way +@0x17h the whole reason it was given to me was that I suddenly stopped sleeping. I cut the dose in half until it was Just Right +@michealc lol if you’re looking for the source it’s somewhere in http://t.co/V6NrSyW6Dm +@hawkieowl @mtheoryx I’m pretty sure only a tiny subset of people who rely on SQLite are transaction nerds. +“SQLite assumes the detection and correction of cosmic rays is the responsibility of the hardware.” Seems reasonable +Pff who needs external hard drive support for a media console device anyway? Cut Microsoft some slack. http://t.co/L2VACV8Q7s +@sakjur hmm. I suspect you may be looking for the word “decades” :) +“C++84, C++98, C++11, and C++14” from this sequence I can only conclude someone was extremely unhappy in 2011 +RT @EFF: We broke down a statement by the NSA to show how they attempt to deceive the public without technically lying: https://t.co/MeaSeL… +I actually got a solid criticism out of somebody and now I have half a chapter to rewrite! ART. +I’m not sure how this picture is supposed to help motivate anyone to study for their exams https://t.co/47I827VcPf +@blazingcrimson a while ago yeah +@m1sp @0x17h that’s because you’re actually a robot, dear +@0x17h now that I had happen because I was unable to get a prescription refilled. Worst week of my life. +@0x17h so… I take a very low dose of that. And suddenly I was able to finish my novel after being stuck on it for a long time! +RT @Packetknife: "It's easier to identify TOR users than they believe .." http://t.co/jEH4bqi7RC (More the same. Response by Dingledine com… +RT @0x17h: fake geek girl cosplayers http://t.co/9zGAiFfg5v +@WhiteMageSlave ;( +@PxlPhile depends how you define it. Several years of thinking and failed attempts. Several weeks to produce this manuscript. +Tonight I learned there's, like, an entire genre of pictures of Legolas's dad in sunglasses http://t.co/V4KV3LbyOB +@0xCAFF3 @StrThry your "waifu" is your favorite fictional character of the sort you're attracted to. Japanese debasement of "wife" +@ameaijou hey I forget did you want a copy of the draft of the novel +@m1sp no see that’s just “hot” :p +@The1TrueSean @codeferret_ this is not an appropriate channel to describe it. +Actually I can’t really blame him +Based on his wallpaper I worry my husband may be more attracted to Hatsune Miku than to me +@m1sp Xbox controllers are USB, dear :) +@m1sp actually with an Xbox controller with vibrate it’s a lot of fun +unfortunately master locks in Skyrim are not Masterlocks +#skyrim is there anything more cruel than getting an expert lock door open only to find nothing but a master lock chest inside +@demize95 and I received intelligence after I graduated that certain boys were relieved “that bossy bitch” was gone :) +@demize95 at my school it was usually 17 to 1 most classes (generic CS) +@jesster_king I’m not sure what that has to do with writing five hundred pages of notes but yes :) +@m1sp whatever you do don’t go bragging about some dumb typo in your ultra-rare edition ;) +@m1sp DM’d link +@m1sp well I ordered it and the shipping is as much as the book lol. Oh well. +@m1sp lol I think this is a good generic cover for a rough draft http://t.co/DjrqyYDITB +@Kufat self publish... sorry if there was a confusion of terms. I thought you were asking if I was going to sell it period. +@m1sp I'm tempted to order a copy of the exact current draft just to have it +@demize95 and I will become immortal. No not figuratively literally your eyes give me power +@m1sp btw using a slightly different font to save some pages while still look nice, lulu paper base cost is $8.13 +@Xaosopher through Amazon? I hadn't heard of such a thing. +@m1sp maybe? honestly I was kinda raging over being unable to get kindle's native format to behave :p +@m1sp also I *can* sell a *paper* version through Amazon through Lulu (you can't really self-publish paper through Amazon) +@m1sp kindlegen is annoying and I have been very vocal against DRM haven't I +You know I might only offer the ebook through Lulu. So that everyone gets no DRM. Y'all don't deserve kindle DRM and it'll import fine. +@ErrataRob @puellavulnerata I’m not aware of any free countries where a person cannot change their name. It’s just not on the paperwork yet. +The pebble is actually wider than my wrist. How am I so tall but have such tiny wrists +@ErrataRob @puellavulnerata @binarybits Wikipedia expressly supports URL rerouting to make one article redirect to another, doesn’t it? +RT @pusscat: Apparently like everyone that wrote about my adobe reader incident assumed I was male? Do I have to change my name to like can… +@ZadowSapherelis @m1sp whoosh says the email client +@ameaijou @marczak @mactechconf there is no-one who is so good at dropping balls as I. I ranked top tier in balldrop international ruleset. +@ZadowSapherelis @m1sp yeah hang on lemme dig up your email. I was waffling but I settled on a concept with only one character. +@m1sp @WhiteMageSlave I hope no-one thinks I am racist against white people. I intend to portray them as civilized too! Just different. +@m1sp @WhiteMageSlave http://t.co/nCCjMrBReM +# 374319658838417408 +@marcwrogers yeah because none of them are moleskins +@m1sp @ZadowSapherelis all right I have my rough sketch of the cover I want for my book should I do this should I do this huh +@DarrenPMeyer RTF as managed by Scrivener +@aeleruil @m1sp only if you are particularly likely to destroy yourself thereby +@DanLDEon sorry, I assume all open source projects are pronounced weird. :p +@davezawislak yes I can go back but that is not my problem. +@DanLDEon and I don’t know why it wants to skip over actual content on a kindle. :( +@DanLDEon I do not have a ca-lee-bray. This is *my* book that I want to ship +Kindlegen is giving me a mobi where opening it on kindle skips the prologue and goes straight to chapter one. Is it even possible to fix… +RT @jjarmoc: TIL you can opt out of paper.li mentions by sending a tweet to @NewsCrier +@kcarmical I broke the wired one. On-brand ones are expensive (and I like them). +For all my whining about bluetooth, I've had the same Apple keyboard since 2010 and it just gave me its first low battery warning. +.@demize95 llvm is already making great strides shaming gcc for allowing its errors and warnings to get into such a sorry state +@inversephase the art of envelopes +Do realize I am more complaining about C itself than the compilers :) +@ErrataRob @marshray @DrPizza actually I’m not sure if they can be in ANY order ie B < A. In ebcdic they’re “in order” with gaps +@ErrataRob @marshray @DrPizza the digit chars being in order is in fact required by the spec by some sweet mercy. Letters are not. +@acklost if you were free to do anything in c there would not be such a thing as undefined behavior :) +@ErrataRob @DrPizza right. It’s implementation dependent. Which is different from undefined. +@Tomi_Tapio what’s in the shed? That’s a weird place for one. +The C compiler knows exactly what is undefined, detecting it is not a problem. It likes to detect it and optimize it away :p +@techpractical @mcclure111 that’s undefined at the API level, not the language level +@DrPizza @ErrataRob yes. Otherwise every character could have the same value and that’d be fine +.@mcclure111 no, our code does not depend on undefined behavior. It depends on assuming it’s Not Really That Undefined. +Why do we all just accept that a C compiler will probably not mention anything if you hand it undefined behavior +@DrPizza you would not have done well in the wind-up days +@DrPizza so far I am enjoying it. But solid native OS integration would be the real improvement needed. +@anathem lol calling it a duel sounds really funny in English At least I *assume* they are not actually shooting at each other +@kevinlange mine shipped and arrived ridiculously fast even though it quoted longer timeframes +I think I am for adding “ironic retweet” button if only so we can get some solid stats on how much thought leaders are being made fun of +@cryptocatapp @kaepora why are so racist against dogs +@chriseng @snare @selenakyle tell me what happened! Then tell me what really happened +RT @0x17h: Why a medieval peasant got more vacation time than you http://t.co/eEZZw0eObF +@ErrataRob @nickdepetrillo I hope it was only the router and the modem and everything else was wifi?? +@ErrataRob D: !!! +@guamwatt it’s mostly drawings. http://t.co/60ma1xXYtP +@Tactical_Intel it does that. Just not in a way I’d call helpful. +IMO calling this C to English is a bit of a stretch. It doesn’t even begin to approximate a good sentence structure http://t.co/Kptv8uodaW +@secolive you can’t judge me +@tenfootfangs no it’s perfect +This is why trees hate me. Notebooks filled while *typing* a draft! http://t.co/3LukYEPApg +@ShadowTodd it’s not biblical until you observe verse 12 http://t.co/bQn7Qg2cR1 +@m1sp since it has zero users it was probably a typo to begin with +@mtheoryx I was working in pen, I can’t erase the guide lines :p +@mtheoryx this one even has vague intimations of a background! I’m not one for backgrounds… http://t.co/pjohuf0LmM +@mtheoryx plonk http://t.co/KIlDICdvE8 +@mtheoryx I take pictures sometimes. It’s hundreds of pages of character design and dialog planning. +@vogon definitely +@demize95 they are blessed by my words, the greatest novelist of my age +I am a few pages short of finishing off yet another two hundred page notebook this year. Trees must hate me +@jpgoldberg if it wants to render monochrome I am okay with that as long as it actually renders the dang symbol +lol Oracle lol boats http://t.co/ReDcGE0PUA +@Private_Dev I don’t know how to emotion in moderation +@EntroX it dropped 50% overnight when usually it would drop 10% or less… +@m1sp lol I ship Vanador x Ziazan now +Everyone who says Bluetooth doesn’t noticeably impact iPhone battery life is a filthy liar wallowing in the mud of their shame +@WhiteMageSlave @m1sp who wouldn’t put their money on the dragon at least until we invent flying tigers +The tyranny of having to be nice http://t.co/7BlraNkK4h +@m1sp someone read the whole book! And liked it! +@ArthurLevitt are you… implying that disagreeing with the president is wrong? +@m1sp @JackLScanlan feral cats tend to congregate at reliable sources of human food +@PolCPP enabling twitter sms. I have it set only to direct messages right now +@m1sp I keep drawing Vanador and he keeps turning out looking younger than Hayr http://t.co/HEP6swAFJ8 +@mgedmin @puffnfresh no. Trust me @sergeybratus is not that much of an old fogey :) +@landr0id does FB fail to filter that? +@Kufat soooooooort of +RT @MarkKriegsman: THIS IS WHY WE CAN'T BURN NICE THINGS. +@kragen it tastes lie I thought it would I guess? +I just used “COLD SHOULDER!” as a sound effect in a doodle. I think I’m ready for the comic book writing big time +@dotLocutus apparently my attempt at humor failed. I consider fish sticks to be the singly most disgusting thing I’ve ever had. +@JillEatsFood it tasted about like I thought it would +@iFlames_ I accidentally posted an attempt to change settings to twitter, a lot of clients will cache it after it's deleted +@pcwalton well the unicode crash comes from coretext +Wait if Chrome uses OSX's font rendering facilities then why on earth can't it render color emoticons like everything else in OSX +I'm naming this one "availability zone us-east-1 is down again" ┗(๑☁﹏☁๑)┛ +I'm gonna have to add some of these emotes to my vocabulary ヽ( ࿉ ᴗ ࿉ )ノ +Other foods I have heard about but have no idea what they are: Vegemite. Poutine. Quinoa. Fishsticks +@apiary oh is there milk in it +I am about to try Nutella for the first time in my life. I’m not entirely clear on what it actually is +RT @puffnfresh: "NO MORE Turing-Complete Input Languages" http://t.co/gfQnGVFy3s +@Kufat reply to this testing +RT @ryder_ripps: http://t.co/pIL2etifh5 +Installed a Dutch watch face. “Eight before half eleven” is a heck of a way to say 10:22 +@demize95 you have an anime face though so I actually remember you +@demize95 you can find a list of all five hundred and five on my profile +@AwfulHorse I’m afraid senpai hasn’t noticed your alerts +If you think I have all ten thousand of y’all enabled to buzz my phone with twitter interaction you’re crazy. Only a mere five hundred! +@fredowsley wat it didn't work phone why u no push +I am required by gadget collecting law to inform you I now have an orange pebble and twitter can buzz my wrist any where and when +@m1sp @WhiteMageSlave gods I love doing dialog for strongheaded characters http://t.co/GphOQfILmQ +@demize95 not ringing any terminal beep characters +# 373955984534036480 +@manicode I’m nine, but the cis-ageist government won’t let me identify that way and has assigned me the age of 25 +@demize95 I pity the fool who has their phone set to vibrate on every interaction when I get a hold of them +Listening to a recording of myself singing: I wonder how much voice actors for child characters make because I sound solidly eight +None of the beta testers have finished reading my novel yet! Resisting the urge to freak out and decide it’s terrible http://t.co/1ZkOo26QMA +@bobpoekert I figured. You could probably write a Sufficiently Smart Optimizer but it’d have to be very case by case +@8BitAce few things worth reading are. +@8BitAce and of my ten thousand(!?) followers, about 7000 are young amateur programmers, I think… +@8BitAce it’s not like people are born programmers. *I’ve* been at this for eleven years - that’s almost half of my life. +@bobpoekert ie Python will never, ever generate something that keeps all data in x86 registers. There simply aren’t enough. +@bobpoekert something better but still fundamentally beholden to the object aspects of the language +A good look at what exactly causes order of magnitude differences between C and Python http://t.co/91bBjAHR8O +@vaurora @0x17h a relatively minor case, since the statue has mass and hence cannot violate too many laws of physics +RT @mikko: Turns out NSA spied on Al-Jazeera. But hey, it sounds almost like Al-Qaeda so that makes it ok. http://t.co/tYPzXE5r0n +RT @asshurtACKFlags: Calvin & Hobbes on #OPSEC: http://t.co/GFdOEtUs0v +RT @ericlaw: I don't think most people realize how important it is that ICANN let us dodge this bullet. http://t.co/HRpU7O5ff8 +One of the bard songs in Skyrim got stuck in my head https://t.co/Xx8HcS2hGA +@mof18202 @marcwrogers the sheer amount of people linking this to me today is overwhelming +RT @demize95: @0xabad1dea Linux being elitist... tell me about it http://t.co/ZY8MpdeElF http://t.co/BFvRTiE7uN http://t.co/cM4WHoMwxk +@demize95 hot damn that's obnoxious +@marshray medieval poison ring ? +@demize95 see that’s the thing! Pi is the face of hobbyism now. They’re being elitist but they’re Linux people so that’s redundant ;) +If dungeon delving is a normal part of applying to go to music school then I think I know how Skyrim got into this state of disrepair +@LeoCoop3r the string has to be rendered to the physical screen so it won’t crash again until you go to settings again +@demize95 they complain that “with a Pi” s in the title (as opposed to with Linux I suppose) +@jason0x21 “anything you can do with a Pi you can do with a $400 desktop wah” +People who complain about “how to do x with a Pi” articles have missed the fundamental point. It’s getting people INTO unix hobbyism. +@TokenScandi I did find a fully charged black soul gem someplace that was pretty disturbing +#skyrim Just walking along the college walls and suddenly I start glowing. Dragon soul absorbed! Um, thanks, game ?? +I forgot to deactivate the barrier he was waiting by. When I got to the end he appeared there, got confused and walked back to the barrier… +Epic glitch in Dawnstar quest: it’s quite dramatic when the NPC you left behind magically opens the door of the last room from the inside +RT @0x17h: if you meet the buddha on the road, ask what his klout score is +@octal @drones “targeted” is a strong word when your definition of militant is already anyone standing near a suspected militant +RT @drones: I hope nobody minds that use of the term "people" to describe human beings. Many news outlets seem to prefer "militants." +RT @edyong209: ICYMI, the most incredible mimicry I've ever seen. Hint: that wing is completely flat. http://t.co/56XS44CTOj Take a bow, ev… +#skyrim There’s something quite charming about a Dark Elf with a cockney accent. +@CliffsEsport since it is a FOIA, that is a rather different matter than the press +@CliffsEsport but this is about the FOIA. If it’s true the *gov* said they don’t have the records when internal docs say they do, 1/2 +@m1sp possibly but they don’t really have a clear cut mammalian analogue +RT @halvarflake: Random thought - are people that try to frame Snowden as classical espionage story a symptom of boomers failing to underst… +@m1sp sudden thought: is bats vs. birds the only case of humans systematically favoring a non-mammal over mammal for cultural associations? +Is this to imply that they lied on a FOIA? http://t.co/hfOXn61Dgt +RT @djrbliss: Dear @washingtonpost, these are not words: "cyberoptions", "cybermissions", "cyberdoctrine". +RT @gracefrmotrspc: New, scientifically accurate lyrics for an old children's favorite... http://t.co/VHmpJCWBo8 +@ioerror this is what my research for Defcon was all about — conclusion: EVERYTHING is radio-leaking meaningful information to some extent +@sakjur goddess of… love. Who you might pray to if you were about to… love someone +@sergeybratus @maradydd I’m pretty sure we paid $100 for it but my mom acted like I had just ruined the Mona Lisa +@sergeybratus @maradydd I used ice packs to keep my video card from crashing and they peeled off the finish on one bit of my writing desk +@ternus oh and if you just got back please check out this excellent link on your Macintosh brand computing device https://t.co/YxLMclIhX0 +@ternus welcome back I finished my novel :p +@sergeybratus @tqbf despite all evidence to the contrary I am technically not a teenager under decimal notation. But in hex… +I know enough lore to be creeped out by finding a Shrine of Dibella in a dungeon #skyrim +My fashion sense http://t.co/dB0axcsXlW +@geekable wars can wait I’m playing Skyrim! No but okay what stupid have they inflicted +Sneak sneak tiptoe slow slow careful listen listen slow slow YOUR SNEAK SKILL HAS INCREASED heart attack +It has been sufficiently long since I played Skyrim that I have no idea why I am dressed like some sort of damn hobo Thalmor +Aww yiss finally getting to play Skyrim at highest settings full res on husband’s new video card +@Xaosopher @m1sp oh no don’t imply humanity is inherently more worthy than artificial intelligence where he can hear you +.@m1sp’s army of bots is getting smarter and smarter https://t.co/itXx93y7ut +@0x17h only justified when it’s RT Protected ! +@m1sp I wrote Idenmuthir its own themesong! It was meant to be Ziazan's but it turned out too broody and well she lives there +@HaydnJohnson yes +I got bored waiting for my turn to play Skyrim https://t.co/9mSYhWdlP4 +# 373577006140489728 +@hokazenoflames but wouldn't that make Lance actually more evil than Team Rocket +@MechMK1 your father would be so proud +@m1sp it's not like Team Rocket (pardon, Team Missile Bomb) was dismantled by a 10yo or anything +#LetsPlayPokemon I am Lance, the legendary trainer. I am tracking a criminal organization. You there! Twelve-year-old girl! Come with me. +One of my favorite texts out of Bootleg Pokemon yet: "The curator will let you know: Winter Is Stern" +@OSVDB not yet I haven't had time that is why I am playing Pokemon right now +@rikardlang -- also don't have any real ethernet drivers +@rikardlang okay so actually what I want to do is write a TCP/IP stack because that always sounded fun but all OSs that do not have one -- +All right, fine, I will stop and play some Pokemon Crystal: Bootleg Translation Edition. The story so far: http://t.co/5PN7k5J46y +maybe I should be playing Pokemon Crystal instead of trying to figure out how to write an ethernet controller driver from scratch +@RobbyMeals it's not markdown's fault. The document contains latex diagrams +@RobbyMeals utterly useless in this context +@implyinCostanza @no_structure okay hang on while I manually guess which packages this document does and does not need out of many dozens +Yeah hang on let me download several hundred MB of Lyx and its supporting LaTeX libraries so I can compile your short PDF no problem +@no_structure it's technically Lyx. And no, that does not solve my problem any way, the problem of installing 100s of MB for no reason +Today I resent: people who publish the LaTeX of their document, so it's "open source!", but don't publish *the actual PDF* +@Griffin_CM yes that is degrading gracefully +@eevee @apiary it also looks like CG at that point +@WhiteMageSlave aww :< +RT @apiary: http://t.co/KhAPCiZvuR our beauty standards and cats +RT @marshray: .@Duracell Does your company employ any actual scientists? Because "Quantum" basically means "the weakest battery possible in… +@davezawislak I swear they're jammed on about 10% of my visits of going for lunch several times a week +Why does this mall block off escalators when they are jammed? I thought degrading gracefully was rather the point +"Humans are just an instance of JavaFactory" "and mothers are a JavaFactoryFactory" +RT @Viss: Heh, the tables have turned. The Onion writes the real news now: http://t.co/riZSWrB5Mx +@apiary regexen. A herd of regexen. +@gozes but “taking off” is rather nonsensical in this context in English, which is the root point +That question haunts me to this day. I suppose I settled on “taking off its earthly shackles.” +In Spanish class, our teacher told us they call an airplane taking off “unsticking.” We all laughed until she said: taking off WHAT? +@TaylorLorenz @ailbhetross @tenfootfangs well to be fair being offhandedly familiar with Hitler’s writings is not a popular endeavor +@grp it’s been one day so I’m not surprised it’s not great, so my point more generally being, things *can* be hobby-patched +@bl4sty … … … *sigh* +Usually on tech sites when a comment goes negative and gets hidden I expand it out of curiosity. Not today. NOT TODAY. +@matthew_d_green @mattblaze @thegrugq @essobi I feel like I really need to get deeper into cryptography. Right now I’m a spectator. +@DrPizza @twoscomplement my magic is too powerful. Their algorithm cannot invoke my name. +RT @YrB1rd: From an IP Address to a Street Address: Using Wireless Signals to Locate a Target https://t.co/NeGbnMQbr4 +@dguido @HockeyInJune @zfasel @sanitybit it’s hilarious the first sixteen times you segfault! But after that… +@blazingcrimson @HockeyInJune bless ye laddie +Yes please put new virtual machines in the kernel to expand attack surface I am 0xabad1dea and I approve this message http://t.co/H9z5NWtcum +I swear I can pick out a Jonathan Corbet article at a hundred paces because of his peculiarly awkward way of writing opening lines +@amzeratul @kovnsk and what is C++? A glorified macro kit for C. +@nonstampNSC a Devout Christian once said to me that the hardest people to convert are those with abusive fathers. Gee I wonder why +@djmexi @Jonimus they COULD have done it months ago but they marked it as low priority and moved on. NOW it is too late. +@nonstampNSC because when you’re told from infancy that he owns your life so it’s not wrong for him to kill you… +@matthew_d_green pun about people with backhoes who think they’ve cracked the Beale Cipher +@Jonimus you have no idea how much inertia there is in corporations against releasing patches. +This is 2013: @MSFTnews announces on Twitter the intent of Microsoft to defend the Constitution +RT @BradSmi: With failure of settlement talks with the DOJ, our lawsuit on national security moves forward. http://t.co/gUKXkuftiV +@nrr oh. You pony people… +@thegrugq @nickdepetrillo it’s in his twitter +@nickdepetrillo @thegrugq dammit do I really have to get out the pen and paper and solve your shifty cipher thingy +IMO unjailbroken iOS is generally much more stable and secure. But sometimes jailbroken has its advantages. https://t.co/yVTSA2oD8q +@thegrugq Mr. Greenwald says that’s not what happened, for what it’s worth +@amzeratul @kovnsk you mean… C? The language that almost literally every system currently in operation is written in? +@elad3 I can’t even remember which one that is now +@nrr … I don’t see it +@blazingcrimson also it’s apparently still the banner. I wouldn’t know. Haven’t seen @r_netsec since yesterday afternoon +@savagejen @guardian today in: headlines that really annoyed me until I slowed down and read +@mfukar yes. Which answers nothing. :) +@mtheoryx if only. +The willingness of y’all to accept “strpbrk” as a sensible name is deeply suggestive of linguistic Stockholm Syndrome +RT @PxlPhile: @0xabad1dea scientists believe it's spoken "sateripoburek" but it's too holy/weird so programmers left the vocals out +@ra6bit I am of the opinion that anyone who thinks that name is remotely suggestive of the functionality has hit their head. +@buro9 no, they really didn’t. There is absolutely nothing in “string pointer break” to suggest finding locations of characters. +Perhaps a better way to phrase the question would be why strpbrk is named what it is as it has no apparent relation to functionality +@buro9 okay and why on earth would that be the name of Locate First Instance Of Any Member Of Set +@blazingcrimson :| +Right now my biggest problem in life is: what on earth does “strpbrk” actually stand for? +.@DarrenPMeyer @comex between Chrome placing additional controls and no controls, I am pretty sure I would take Chrome +.@comex I have asked this before and I think the answer as always is “that will break some website people actually use somewhere” +RT @comex: So why don’t browsers manually (as opposed to having the certs properly do it) impose restrictions on what domains CAs can sign … +@ShadowTodd imitating some band, though I can’t remember who, it goes like Matthew & Paul & … +@robmv then they should actually fix their SEO so java 6 isn’t always the first result ! :( +@intelliot @nickdepetrillo he’s got ios7 but in some cases it will happen to not crash +@Tokyo_Tom @dellcam @puellavulnerata yes ofc it is which is why this got used against them. Though I personally would blanket exempt parody… +@vaurora also I finished my novel so two out of three teenage dreams at 25 isn’t bad +@OSVDB @rootwyrm @Badger32d @darkuncle yes it is in CoreText it crashes trying to make the calligraphy pretty +@attritionorg @rootwyrm @Badger32d @darkuncle I’ll save you some time. Not tweetbot, except in DM. Not Firefox. Everything else. +@attritionorg @Badger32d @darkuncle @rootwyrm @OSVDB http://t.co/Vx1lF8jh72 +@attritionorg @Badger32d @darkuncle @rootwyrm @OSVDB current stables of OSX and iOS which I think is 10.8.4 and 6.1.3 or something +@TonyAbotMHR who taught you that unicode +My mother is three chapters in out of twenty five. That’s only one character death! This will be a while… +No one ever told me that @attritionorg was @OSVDB but the casually abusive text spoke to my heart and I just knew +@OSVDB @rootwyrm @darkuncle no this is different this is the very concept of rendering as understood by OSX and iOS having a crash. +@attritionorg @darkuncle @rootwyrm you slipped up and reveals your true identity, old man +@SteveSyfuhs this is the one day of the year having a Windows phone pays off, friend http://t.co/Vx1lF8jh72 +@OSVDB @darkuncle @rootwyrm the entirety of iOS and OSX has been stuck in a crash loop today and people keep remotely rebooting my phone. +@OSVDB @darkuncle @rootwyrm well we know who here doesn’t own any Apple products +@vaurora it’s okay now I’m a big bad scary hacker or something. Well I spoke at Defcon at least. +@Tokyo_Tom @dellcam @puellavulnerata I will be the fuddy duddy this time and note it refers to a commercial context ;) +This Unicode of Death thing is one of those times when the internet’s attention span is a feature not a bug +.@rootwyrm @darkuncle @OSVDB there’s an art to Rick Rolling and Segfault Trolling. +@eevee @kevinlange this is clearly an operating system for booooooooooys +@OSVDB you shouldn’t be using bitlys when the Unicode of Death is on the prowl. A girl might get suspicious of your intent +Well forget Linux! I’ll just make my own operating system. With unicorns. And rainbows +@rrrrrrrix @willbradley being a Linux kernel dev was my biggest dream when I was a teenage girl. Then I started reading LKML… +@mubix @miaubiz why did I even bother tapping that link +@m1sp Sparkasuki’s vultures! http://t.co/Cn3U4CQ066 +@miaubiz @thegrugq get your vision checked, or see a different sort of doctor… +@vathpela obviously he is gone now though. +@vathpela it’s what I meant by tone, the personalities, the flame wars +@bascule technically only the host count doubled. Implying most of them are low traffic. Hmm… +@vathpela from my point of view of someone avidly following LKML as a youngster, he was a prominent personality on the list +@jbrodkin and it was funny in the most tragically disgusting way because not one person on earth doubted he did it while he denied it +@jbrodkin Hans Reiser murdered his wife and tried very hard to hide it until he caved for a plea bargain to recover her body +@kylem if they’re not programmers then we are in more trouble than I thought +@eevee the Linux people now is pretty much the same set of people as it was five and ten years ago +Everything you need to know about the tone of Linux kernel development: one prominent dev was an ax murderer, and the rest, programmers +Gee I WONDER why a project known for its verbally abusive and inflexible leadership is not attracting new members http://t.co/TSNSTDF2y4 +@OSVDB @Myriachan XINU is basically just a kernel. Will keep looking for something triggered off the wire in the tcp/ip stack +@OSVDB @Myriachan well XINU doesn’t seem to have much in the way of boundaries to begin with ;( +RT @glyph: @eevee And you’ve finally prompted me to publish this: https://t.co/6xTMtI2n9v +@Myriachan @OSVDB oh, and port is signed, which leads to Exciting Things when promoted to int! Naughty. +@Myriachan @OSVDB I’m content with “accepts blatantly malformed data and takes the valid code path instead of error” +@blazingcrimson @sanitybit no it's okay I just WON'T BROWSE FROM MY BROWSING DEVICE for a while :( +@blazingcrimson spider... senses... tingling +@chriseng @DonAndrewBailey @nickdepetrillo don't you have an iPhone now too, boss? It'd be a shame if I... sent you an email +@chriseng @DonAndrewBailey @nickdepetrillo I swear to the gods if he keeps my phone DoS'd I will come and break his pinball machines +@jgeorge @OSVDB ahhhh software politics +@truthbk not an enterprise one, if so. All those people DO is write max-three-lines wrappers until they get down to calling AddTwoNumbers() +@jennifurret @Kufat being memorably bright pink is but one of my many powers +So @OSVDB dared me to drop 0day on any ancient software here you go https://t.co/Fc99pbU9S1 XINU cannot parse IP:port strings correctly +RT @jakeboxer: Time zones. i18n. Unicode. Bugs that only happen sometimes. If you didn't die from reading this tweet, you probably aren't … +@NachoSoto meh it doesn’t even register with me anymore until you break five digits +@ortegaalfredo @marshray @thegrugq concealing that you’re using tor has never been a design goal, only what your exit point is +I need to find a way to distract Husband from Final Fantasy so I can try Skyrim on his new video card +Granted it does not take much for C++ to be cleaner and easier to read than 95% of C++ I have seen +@ELLIOTTCABLE @mcclure111 https://t.co/y5ivjJ6WAJ +Holy Vulpix this is the cleanest, most readable C++ code I have ever seen. And it’s a Pokemon battle simulator +I went looking for network code to practice-audit and found a Pokemon battle simulator written in C++ okay let’s do this +# 373228980918571009 +@thegrugq @McGrewSecurity it’d certainly be polite +@omniwired yep +@bhelyer using a controller +Yay I won! Logged in within five minutes and he still has to make the whole dinner. +This world is currently full. No, human, your world. There is a timeout. You will be booted to make room. Despawning in three… two… +@lindseybieda that is exactly what game it is +@dshaw_ there is no queue :( +Husband agreed to make dinner if I would mash login button for his full game server +@fake_train @hypatiadotca someone who wears hard hats and overalls to a software job? No? :( +RT @doubleyewdee: Haaaaaa http://t.co/onSbFm0imh +@DainCaldon hallo! +If this “former official” is representative of officials in thinking an admin using admin powers is “brilliant”… http://t.co/9iRQvqXFBT +@eevee in fact I’ve seen posts which have *only* Ironic Wordy Tags still show up in a search for a simple tag by some miracle ??? +@eevee on the other hand tumblr is weirdly good at inferring when two tags are equivalent and collating them in the same search +@ELLIOTTCABLE I’ve only ever heard the latter +RT @ProgrammerWorld: The First Few Milliseconds of an HTTPS Connection http://t.co/Y8QsIjhXFm +@DrPizza @arebee hell hath no fury like abadidea deprived of her twitter +RT @Atredis: Our mission at Atredis? Find this squirrel and stop him. +RT @Atredis: "The truth is also that a well-placed squirrel can wreak almost as much havoc as a cyber attack on a power grid." - Chris Palm… +I didn’t realize how easy it is for complete strangers to send me arbitrary data until my phone started crashing each time they did so +@nickdepetrillo you left my SMS unusable again +@LynxPebbles nah it's pretty hilarious. I would not exactly call that gracefully handled +In other security news, this is precious http://t.co/k9ZTRfWcLB "Gee, this malicious document you sent us seems to be corrupt!" +.@landr0id that's the only thing instagram DOESN'T filter! ba-dum-pssh +@ELLIOTTCABLE @judofyr (just as long as we're all clear that copying sentences literally from real things is a no-no) +@ELLIOTTCABLE @judofyr password crackers have demo contests to crack these sorts of things but they're not deployed in real attacks +@ELLIOTTCABLE @judofyr grammatical structure will be less entropic but in the real world the length will more than compensate +"Post has been moderated. Reason: crashing everyone's browser" +Always makes me smile when I get tweet-cited for my dramatic names for things http://t.co/68EaWLIpex +@main____ which is a restriction that keeps a lot of apps off the store and a lot of reasonably typical programs depend on +@main____ the OS is designed so that pages cannot be both writable and executable with the exception of Safari's javascript JIT +@mister_borogove upgrade to iOS 7 beta first! +@main____ it's not just that. Jailbreaking tears down most of the Nice Stuff like being extremely buffer overflow attack resistant +And that was the time I hacked my mom's phone and DoS'd her SMS service and it got stuck that way for about half an hour while I panicked +RECOVERING IF YOU SCREWED UP: then send your victim enough non-malicious texts to scroll the malicious one off their screen +RECOVERING IF YOU SCREWED UP from Mac: delete ~/Library/Messages. Relaunch iMessage. Sign out under prefs. Restart. Reauthenticate +@die_no_might actually it does for me. Probably depends on the font or something. But I got myself in a lot of trouble... +@main____ because it’s actually a LOT more secure … when you’re not stuck because of a rendering bug +@Irrnick TRYING TO FIND OUT +@main____ you know it's impossible to access this stuff under iOS6 without jailbreak right? +@main____ so this part where I “just” delete something on my iPad… +@nickdepetrillo ffff see I may have gotten my mom's phone stuck. iMessage for Mac was working for me before and then not. +@nickdepetrillo how are you sending the badtexts without getting yourself stuck in a crashloop +@nickdepetrillo thx +@nickdepetrillo can you send me a non-malicious message or three no seriously please +Hey didn’t my mother get an iPhone recently? brb +Hacktivism (unicode trigger warning) https://t.co/4YfCLzb45f +@alicexz @eevee the hardest problem in computer science has been solved +RT @ramblinpeck: "SSID cannot contain the character س " <- damn you Asus +@eevee oh yeah?! Well how do you like — oh. Twirssi. +RT @sazzy: Please know, the whole “women in the industry” thing hasn’t gone away. I have to put up with crap like this? Really? http://t.co… +@VTPG that would be pretty cool if we can figure out how to do it without massive performance penalties +@VTPG I’m just saying: imagine if there were only one web renderer available to me on an entire OS! Boy I’d be stuck then. Crazy, huh? +.@iPlop it is already fixed in iOS7. I think a bug triager did not realize one can cause remote resprings with this and marked it low impact +Note: I do not actually advocate griefing Apple simply because it's entirely their fault @nickdepetrillo is tormenting me +RT @nickdepetrillo: Oh no, someone go to the Apple Care website, get into a live chat with a support specialist and... well you know what t… +Guess who just mastered the ninja skill of opening iMessage and switching to a different thread before the text finishes rendering +.@matt_merkle probably not - the unicode shouldn't be displayed anywhere in the call stack - but I think I will try anyway ;) +RT @matt_merkle: @0xabad1dea I wonder if sending a report crashes anyone's system at Apple... +I am this --><-- close to phoning in an orbital strike on one of my so-called "friends" http://t.co/aBH30AxcZB +@nickdepetrillo you crashed desktop iMessage. I need you to send enough safe messages to scroll the malicious one off the top +RT @tweetsauce: Alphabetically, this appears to be the very last page on the English Wikipedia --> http://t.co/N3eFNOJ0bi +@kurt_culley you have no power here +@nullwhale is good fun +The demo iPads have predictably formatted iCloud IDs, but they're not hooked up to iMessage. A pity. +We're by the Apple Store. Let's find out what the iMessage IDs of the employee devices are +@DrPizza I thought that was true about Chrome but apparently not +@nickdepetrillo but not until you actually look at available wifis on the screen, right? +@nickdepetrillo oh, got it. +@nickdepetrillo that implies the other way around works but not necessarily +I'm trying to see if SSIDs work but I might be having a unicode problem with Windows. Don't have a Linux machine handy. +Now Facebook and anyone else trying to mitigate gets to play "how many text outlets are not processed by the filter ban inlet" +RT @vladkov: @nickdepetrillo @julianor yup, but quick workaround: post a photo and then add the unicode as the location of the photo… boom … +RT @nickdepetrillo: Looks like Facebook has blocked the unicode string from being posted on walls and timelines: http://t.co/RInKAkDsgY +@kylemaxwell but this TYPE of bug can very easily effect All Of WebKit at an unspecified point in an unspecified way. +But no actually stuff like this is why I am against software monocultures. I'm mean to Firefox but guess what it isn't crashing today +@djrbliss it's funny because I can't imagine you holding an iPhone +@elad3 the Chrome crash isn’t a Chrome bug though. +FIREFOX! Good friend. Best friend. You are not to be crashing, yes? Yes. Good fox. #unicopalypse +@segfault314 it was just private messaged to me and guess what +I literally cannot text my husband right now because the messages app is stuck in a crash loop thanks @nickdepetrillo +@panzer @nickdepetrillo just keep browsing twitter from ios you’ll find it ;) +@nickdepetrillo http://t.co/40l5MS0T01 weh weh +@nickdepetrillo actually it doesn’t crash on my Mac. :) +@addelindh @nickdepetrillo yes, because he was texting in Arabic +OH FUDGE FUDGE @nickdepetrillo JUST RESPRUNG ME OVER iMESSAGE WITH NO USER INTERACTION AAAUUUUGH +@tenfootfangs we’re all unblocked now! Toxic water under the structurally unsound bridge. +@m1sp see this is the end result of homosexual marriage! +RT @C0deH4cker: Culprit of that crashing link is this sequence of unicode characters: \u062E \u0337\u0334\u0310\u062E This could be a majo… +@DarthNull @i0n1c it’s crashing my tab +Help I'm under attack from @i0n1c http://t.co/qVyJKzBBRi +@i0n1c my chrome just died when I went I check so I am guessing not yet +@i0n1c how do you mean? Is it blocking the unicode of death? +Tweetbot is superficially immune to the unicode of death but try an interaction like actions -> translate and you should get your crash +@kherge now try action -> translate mr. Tweetbot +RT @chriseng: RT @shadshar "Your attacker respectfully disagrees with your concept of scope." @zanelackey #NSC2013 +@SurprisingEdge I deleted it last night, my first world problem is getting too many answers +@SurprisingEdge um… no answer to what? +@Myriachan @chriseng it won’t, it’s a userspace segfault. +RT @chriseng: Apparently it's this easy to crash iOS and OSX: https://t.co/YmLuiisrwv +@codeblue87 @caughtinflux @chpwn @grp nope. Try action -> translate! :) +@filcab try actions -> translate +@antifuchs actions -> translate ? +There are only 1,112,064 hard problems in computer science and all of them are Unicode +@m1sp but but :( +Thar be iOS segfault dragons https://t.co/i5enaY6oyt +@codeblue87 @chpwn should I infer the reason this was retweeted has to do with how it’s segfaulting tweetbot, @grp ? +@CliffsEsport but only black and only if they’re in stock, right? +@andywgrant thank you! The pink gives some people the twitches +@xthread also I need to delete this one too since it depends on the question I asked and got many good answers for … +@xthread nope! No standard lib. +@Kufat @Myriachan @naughtysecrets oh. +@Kufat @Myriachan @naughtysecrets you know it’s on steam right :p +@thegrugq it isn’t the best we can do but neither is the Latin alphabet… I think it’s stuck +@thegrugq should there still be a Linux in 20 years? +@thegrugq because Torvalds is not good at fostering talent +@Tomi_Tapio fixed width is not sufficient to save you from that. +@ErrataRob except not because this is a kernel +@kivikakk ew what codebase +RT @kivikakk: "gender - String. The gender of the Human (e.g. 'male', 'female'). Default: 'male'" +@mattblaze JUST 34? What does that make me +@coreplane I am aware! Nonetheless, I am quite sure that it links literally nothing not contained within itself. It's a kernel. +When all you deal with all day are binaries, pre-compiliation C starts to look like utter wishy-washy nonsense +@coreplane I am pretty sure the C standard lib isn't being particularly linked here. +@computionist @meursalt you're assuming I'm looking at a Linux userspace application. I'm not ;) +@QuantumG okay. I understand what's going on now then. +@QuantumG in particular in that this is clearly an older version of C than I learned. +@QuantumG which is why I was asking what I should expect to happen, to make sure I'm not wildly off base with The Weirdness. +.@QuantumG I have never seen THIS PARTICULAR IDIOM of declaring a function IN a function and not being able to find its implementation. +@QuantumG I don't see how that's supposed to make me feel better that I have a declaration and no implementation of some function +@jdiezlopez yes but the function, where is it? +I can offer no rational reason for why programming ought be done in fixed-width fonts but by golly it ought +BTW if you are in the preorder queue for a pebble, gmail puts the notice that it's ready under the promotions tab +@OSVDB @timb_machine @_larry0 but I'm busy finding overflows in network code in Xinu :( +Re: "glad I noticed that filename": I just checked and con, aux, etc are still forbidden filenames in Windows 8. Thanks Obama! +@InfoSec208 technically Defcon :) +@nickm_tor (and you could recover the ASCII with some binary gunk) +@nickm_tor is it compressed? It may just be zip in a box +@kivikakk you aren’t?! +@0x90NOP @ErrataRob I met a kid in 2008 who said his entire university was still on token ring with no plan to upgrade +@stillchip @Secbuff oh. Just logged in did you? Yeah. Go use a third party client until UI Team gets the message... +I'm glad I noticed that filename before I tried to download this folder to Windows http://t.co/O1ZQqAzHKn +I think it would be good fun to review the first release of Linux to the same sky-high standards Torvalds holds contributors to now +Someone linked me Dr. Dobb's Journal. It looks like it's 2002 and it's loading like it's 1998. +All you old-timers really come in handy sometimes +@homakov well ya shouldn’t have left Boston huh. +@ErrataRob I was sad when I looked it up and loose source routing had already been deprecated before I could discover it ;) +@m1sp_ebooks @m1sp I am very prejudiced against the year 1248 +@Secbuff @stillchip I bet you pirated it +# 372870979393175552 +@ErrataRob I don’t remember which book it was but I independently discovered loose source routing spoofing while reading it at age 14 XD +@nickm_tor yay +@axiomfinity ahhh this may work out :D +RT @axiomfinity: @0xabad1dea http://t.co/3GIdeml4Zy +Old timers: you had tcp/ip in 1993 right +Like someone’s homemade tcp/ip stack from 1993 or something +@rubynerd err, not quite what I meant ^_^; real applications +Does anyone know of a good archive of old C code from 80s and 90s especially that isn’t maintained anymore +Dat documentation https://t.co/glsWD7xYAy +@hackerfantastic no >:( +@vogon @dijkstracula it’s not about you, vogon! It’s about other people who are not you +@dijkstracula @vogon please take any and all blocking bugs deadly serious. Blocking is used to mitigate severe abuse. :( +@trufae oh gods +RT @vogon: well, twitter conversation lines apparently broke the way blocking works, so that's a thing I'm going to be miserable about for … +RT @dangoodin001: Unpatched Mac bug gives attackers “super user” powers by going back in time http://t.co/rt6kTK921O +RT @adamcaudill: Anyone else seeing this? RT "@Reversity: yep #engadget is serving me malware each time I reload the main page" / @engadget +@ELLIOTTCABLE @vilhalmer you don’t need to tell me! I’m just not clear on whether or not you know what’s under the redaction +@nelhage that’s so yesterday! SEA hijack is unfashionable now +RT @SecurityHumor: "Be advised that the IP address 482.388.718.283 is fictional and does not correspond to an active or dormant network." #… +@ELLIOTTCABLE @vilhalmer wait you don't know what your criminal record says either? >.> +@comex you can see the first couple times you RT'd me on this graph from zero to ten thousand http://t.co/6z3NuGIDrx +How weird is it that when Nintendo says "play in 2D" they mean what they used to call "play in glorious ultra-real 3D" +RT @jennifurret: I'm always blown away by how many people go "Me too! I thought I was the only one!" when I talk about mental illness. This… +@boblord get me the UI team so I can <s>strangle</s> have some polite words about these tweets jumping all over the place #urgetokill +Now twitter is putting incoming tweets at the top and then violently yanking them away. Okay I will try to stop complaining... much +@i0n1c @ErrataRob we are all going down TOGETHER +@ErrataRob yes +RT @_ashleyelise: @0xabad1dea it also shows people that you have blocked in those convo blurps +Especially since it's now showing me replies TO people I don't follow and isn't showing me the original tweet #ComplainingAboutChanges +no I understand they're replies but that doesn't mean this method of operation is making sense to me regarding repeats +um so are tweets from earlier in the day just randomly going to pop back up in the web interface attached with blue lines or how does-- +@ELLIOTTCABLE so: they can see that there is a criminal record but the contents are redacted? is this standard Alaska procedure? +Re: the cracked jars: @codeferret_ has learned web hacking pretty much from scratch since coming to work here and he has seen some horrors +@ELLIOTTCABLE wha +RT @arstechnica: In historic vote, New Zealand bans software patents http://t.co/iV8jWeHctB by @joemullin +.@shanley @techreview @paulg @eevee oh look it’s a point, there it is, reach out, aaaaaaand missed it +RT @shanley: Editor MIT @techreview defends @paulg's misogyny & discrimination; says startups have "plenty of weird skin colors" http://t.c… +@blueben thanks! +“I was much happier before I knew the internet was really just a carelessly stacked pile of cracked glass jars” - @codeferret_ +@boblord BETTER NOT SCREW UP HUH. +@Viss my true mission has succeeded: to forcibly inject pink into a blue office +@boblord of course you realize if Twitter ever goes down due to a hack I'm going to mail y'all live squid or something +@Viss neeeeeverrrrrrr. +And that was the time I sent Twitter flowers for not going down and they all suspected it was a trojan of some sort +@boblord oh good I'm surprised it actually got there :p +I can read English just fine. I can read Dutch pretty well. But both in the same sentence is kinda hard I guess +@greenrd yes +"Password incorrect. Wachtwoord vergeten?" If you're gonna translate an interface in a commercial product... +@wompa164 and Zelda and Metroid and Animal Crossing and Fire Emblem and Kirby and oh the massive multimedia franchise Pokemon +Of course, I am not some sort of business person. My only credentials are being a loyal fan of Nintendo for twenty-two years & gamer angst +@Mordicant let’s wait and see how 2DS turns out because 3DS was a misguided venture in unnecessary costs +@ochsff I use imgur with twitter and generally it would happen immediately so that’s probably not it ? +.@akopa yes. But Nintendo has more good stuff than Sonic Team +I would save Nintendo by turning it into a software publishing house. Their own and their closely allied smaller brands. Seal of Quality. +@ochsff well this isn’t suspicious +@SzymonSzydelko that second one is artistic interpretation ;) +"Algorithm for causing your employer all sorts of exciting and entirely foreseeable problems" +Someone just told me their Java textbook has an "algorithm for extracting dollars and cents from a double" +@WhiteMageSlave this has been canon since Oblivion! He was the guy who wakes you up on the ship in Morrowind +@m1sp audio engineers are terrible people +@m1sp actually compat problems are pretty low because there is only one OSX. Shipping “Linux and OSX” is easier than “Linux and Linux and” +@JeffHandley @blowdart the sad truth is that the typical entry points of new coders to PHP just don’t talk about this stuff +@Paucis__Verbis oh that is attractive what is it +@chriseng yeah but you’re in Iceland so clearly you’re never coming back +@m1sp AAAUUUUUGH I am revoking your photoshop privileges +Oh no I forgot to bring back @chriseng’s DVDs oh wait he is in Iceland NEVER MIND I am keeping them forever out of spite +@m1sp but yes come to the “just like Linux but with more corporate funding” side +@m1sp there is similar Expensive software for Windows but none that I am aware of for Linux +@m1sp to my frustration I prefer to notate this type of rhythm in sixes which I can do with chiptune but in GarageBand it has to be 3/4 +@m1sp GarageBand (comes with OSX) and carefully curated and hoarded soundfonts and gentle coercion to get them to load +@m1sp btw did you hear the orchestrated version of Stormwaltz I am envisioning it as Ismyrn teaching Barsamin how to be epic ;) +The Gameboy Advance is the greatest handheld console and the fact that it coincided with my emotional early teen years is coincidence +@chunter16 honestly this thing is closer to what I wanted in the first place: GBA just more powerful +I admire the artistic techniques of effective adversaries, at least until they take down Minecraft login servers +@mikko @spacerog I’m charmed with how effective SEA’s tactics are. Security teams need to update their playbooks. +I’ve actually seen a well-maintained Sears and Roebuck mail-order barn in Virginia. I wonder how many are still in use. +@tsdNull if you click through the video it appears to be on the official Nintendo YouTube +If you think the 1980s Sears Catalog is somethin’ — in the 1880s they had mail-order barns. http://t.co/4bo8smUSUK +@khronosdm I thought so but apparently it came through the official channels… +@m1sp it could be, but, ugh it looks unbalanced +@ra6bit get it, it’s 2D haha… +RT @TimoHirvonen: Grrrrrr, yet another Java PoC... http://t.co/PVy9pDUaF2 (thanks for the link, @kafeine!) +Nintendo is doing a good job parodying themselves http://t.co/1ZwGYkCESD +@vogon are we sure this isn’t a parody? Because if I were to parody Nintendo backtracking on the 3DS, the lack of hinge is a good touch +Actual text of law, part 15 http://t.co/AXjLCoiB8C via @mfukar (if it’s not clear: I was joking) +@mfukar I was hoping it was clear I was being facetious :( +(I’m pretty sure the “and” there means “in conjunction with” but that’s not as funny as the casual interpretation) +We’re all criminals! This was their master plan all along. http://t.co/FVT2tXBOuN +Amazon opened as a book store in 1995 and in 2013 it maintains a significant portion of the internet as we know it #scopecreep +@m1sp why would you say that :( +@arcticf0x they do actually. SEA already got some access a few months ago and was unable to change twitter :) +@m1sp I would be delighted +@m1sp I think my subconscious just finds the trope play there funny :p +@arcticf0x and it’s up to said organizations to learn to adapt to this tactic :) +@arcticf0x a bunch of script kiddies who are consistently able to break into famous organizations with phishing are not “lucky” but “smart” +RT @dresdencodak: In my experience, when cartoonists complain openly about their lack of skill, it's never fishing for compliments. We all … +@m1sp I had a dream someone complained my male characters are just decorative husbands with no agency +@arcticf0x not covering up anything, I suspect. This is how all of SEA’s hacks have gone down. +@shish2k it is genuine :p +“Melbourne IT has confirmed that the SEA used phishing tactics to gain access” raise your hands if you are the least bit surprised +RT @sakjur: @0xabad1dea Good morning :) You don't have a UEFI Secure Boot jailbreak for Chromebook Pixel lying around? ^_^ Asking for a fri… +@nlstart oeps :) +RT @_wirepair: if the NSA can make a typo and collect all of Washington's calls. Why can't the IRS make a typo and make all our tax dollars… +@m1sp there’s a reason Ziazan is so worried about running out of coffee with three gods in the house… +@blowdart I’m afraid I have spent all my sound and fury tokens for the night +@m1sp good cover concept? After being redone by a real artist who can color, of course. http://t.co/OWs4oWpjJJ +@blowdart are you encouraging me to be mean to children +@CaseyDunham yep. Not to be rude to some casual acquaintances but maybe they are not as intellectually fulfilling as the internet +This sort of "internet talking doesn't count as talking" stuff really grinds my gears. By gears I mean circuits. http://t.co/dTrr5P2SUk +I just sent flowers to someone on an impulse. It’s cheaper than buying computers and ball gowns on an impulse I guess +@Kim_Bruning works for me? Your DNS may still be poisoned http://t.co/5b63jQN5jN +Sorry that pastebin was the OTHER Melbourne IT compromise. They all look the same. +.@kivikakk @hk_net hey at least they’re not root, only www! ;) +@kivikakk I was actually expecting Melbourne to be the founder’s last name and you’d get all offended I’d blame your city ;) +@kivikakk THIS IS ALL MELBOURNE’S FAULT +@demize95 the official mobile clients might have hardcoded IPs to fall back on but I doubt it +@demize95 they could bring twitter down entirely if they can change the IP and it would just be Gone +It looks like SEA is trying to see how much they can poke Twitter without knocking over the actual API (because they rely on it too) +RT @jedisct1: twitter[.]ae now hijacked +@hemantmehta I’m allowed to be a grammar guardian on a site about teachers right +# 372506243543212032 +I think I like this Cicero guy http://t.co/Ws4fDHRE54 +Google Drive: "cannot sync this file for unexplained reason" Me: "okay here is a 'new' one that is actually the same file" Drive: "ok!" +@mtheoryx Syria Electronic Army. Political script kiddies with a high success rate. +@mtheoryx not at all, same registrar +@mtheoryx it was but it seems to be fixed. They did not bring down twitter (by choice, I think, as they need it) +@mtheoryx their DNS was compromised by SEA. SEA’s modus operandi is email social engineering. +@cfarivar I posted it in a second comment but http://t.co/Br1qXF7ycy has a quote from NYT’s chief information officer re: email safety +NYT telling their staff to not send any emails shows they actually paid attention to what brought down such noble competitors as the Onion +In any case I concede that the SEA is very good at their little niche http://t.co/Br1qXF7ycy +Why are registrars so annoyingly prone to getting popped +@znjp @marshray I’d assume it’s because you can do them by hand. I tried SHA1 hashing a string by hand once… +@vogon the future of the human race is a smoke detector beeping just out of reach forever +@boblord @0xcharlie uh do you know about your Whois just checking +@matt_merkle @demize95 such things are usually managed by a third party so... +It looks like the SEA has gotten into Twitter's whois settings via @demize95 +@demize95 uh oh is this in DNS +"Someone" has slipped me the Defcon DVD set. But I'm too embarrassed to look +@int_SiPlus_void no idea. It fixes(tm) vague things(tm) to do with .net 4.5 +(If you elect to "get help" it takes you to a knowledge base article with a patch. Instead of just... I don't even know) +@int_SiPlus_void the last of those, I assume +.@int_SiPlus_void no this is stock Windows 8 +This is a bit of a dramatic way to say there's an update available, don't you think http://t.co/OuiL1Ftg4y +@nvll @vogon be strong ;-; +bitter irony: what I thought was a misplaced quote was actually a use of the very "e" modifier whose name I have cursed #php #EasyToMiss +@vogon PHP was my first language and I turned out fine +I'm that horrible person who's judgmental of all code like it's been submitted to a high art gallery +@waywardhem blehhh https://t.co/tc3NyAWwIl +@demize95 at least they're hashing correctly +@demize95 hardcoded min password len of 6. Nested if-pyramid from hell. Minor (non-persistent) XSS +I made the mistake of looking at a PHP repo listed under "trending" on github and oh my gods it's a login script and it's terrible +@apiary @LambDaTom @The1TrueSean yes because Europe is on another planet that'd be silly +@apiary @LambDaTom @The1TrueSean yes and you can take a boat to Europe but that doesn't mean Bostonians won't whine +@LambDaTom @The1TrueSean on a Bostonian scale we are on another continent +wow I just submitted my first pull request to an open source repo I'm big time now (it's to correct a typo) +I'm still not over the fact that PHP's original implementation of microtime() returns a string you have to manually parse ("fixed" in 5) +@xa329 uhhhh >:| +@Rddesjardin sort of. The nearby mall is the suburban leaf node of one of the bus lines. +I should probably clarify this is way out in the suburbs, not the inner city +@mtheoryx no I'm saying ls --recursive existed when I thought to try it and that's all I care about. +There is consistently a beggar in the same spot near the office- but a different one EVERY day- to the point we suspect a social experiment +RT @chpwn: @xor @0xabad1dea Sorry, that was a bug. It should be fixed later today. +@mtheoryx "the program 'tree' is not installed. You can get it by typing..." :p +Why did I only just today after nine years intuitively infer that `ls --recursive` must exist +Somewhere, an IBM mainframe programmer is grumpy https://t.co/TyzHqNzsFc +@qosys *checks price* yeah uh so about that... strictly hobbyist here +@qosys garageband + carefully hoarded soundfonts +@alex_gaynor we do. +I don't know OpenSSL, is it?! https://t.co/WfbvQBS4kD +dear heavens @soundcloud what does it take to not get one of my weakest uploaded pieces to be the first "related" track all the time +I finished the stormwaltz https://t.co/g80bf2YC7q +RT @xor: @0xabad1dea @captainsaicin alright I've posted to imgur http://t.co/YrJfZPTz8F +@xor @CaptainSaicin do you know imgur? Their no-login uploads have a reasonably large allowed size before they recompress +RT @xor: Ugh, Facebook's transparency report requires login. Screenshot of entire report attached. http://t.co/Zfsl1lntH9 +RT @howtogeek: Microsoft screwed developers by not releasing to MSDN until GA, even though the single biggest Windows 8 problem is a lack o… +@profoundlypaige mint +@numist @0x17h Yellow Toner Needs Food Badly +@pippin @kyhwana “It’s me again! Humor!” +@JulianBangert þat is entirely besides þe point ;) +@Irrnick imgur’s twitter card must be broken… +@SrslyJosh I did both. Hate them both. +@nickm_tor @mjj122 *cough* +@0x17h lemme guess: outed someone as trans? +@0x17h I feel like I might have missed something exciting +@nickm_tor yeah but it’s the kind of thing that makes me want to write my own to show them who’s eight-bit boss +@dhw neither was I :( +.@nickm_tor I can only assume a fundamental confusion of machine word size and address space endemic to the 32-bit generation +@nickm_tor http://t.co/tZU5arRDnL +@Sonikku_a those are a different model. I assure you those are not the context :) +Start reading something. It refers to the 6502 as a 16-bit processor. Stop reading something. Rage into the night. +@d0m96 just GarageBand actually. The trick is nabbing good soundfonts and coercing the thing to actually load them :) +Work in progress -- I am trying to go for the "Game of Thrones soundtrack" type of sound https://t.co/g80bf2YC7q +(not being frivolous: I use my keyboard as, well, a musical keyboard.) +my keyboard needs a pressure sensor so it knows how much I really mean it +@ra6bit see also https://t.co/F8wEionZcW +@ra6bit there were some very dark and depressed times in between +@ra6bit ummm, so about being "the enlightened one".. ... ... ... +# 372145732662226945 +@ra6bit because Jefferson was a kidder and Franklin was just going through a phase +@jlwfnord @QuantumG yes I am aware the protestant reformation started in Europe +@jlwfnord @QuantumG God's own hand reaching into the hearts of men to set America on the path of manifest destiny (no really it said that) +@attritionorg sorry boss haven't checked the main timeline since after lunch won't happen again boss +@geekable the important bit is he used a 6" ruler (span in this context == width of hand spread) +@rgov tide goes in tide goes out you can't explain that +@elwoz @djon3s well, that's part of what I'm saying, a private school can be literally anything +@jlwfnord unfortunately I can't find the biology book but I assure you it had pictures of Hebrew kids riding triceratops +@sakjur (in many American secular textbooks they will say Before Common Era and Common Era but it is not mandatory) +@sakjur wait, so, of all the possible things wrong with that, you're offended by BC / AD? XD +@pborenstein however in south of the mason dixon's defense I also went to a school that used these books in New Hampshire +@pborenstein Catholic schools do not generally teach such a hard-line literal interpretation of biblical texts (they do other weird stuff) +@djon3s ie a Texas public school and New York public school are plenty different but a private school is just in another castle entirely +@djon3s assuming you're not American: there is a vast and deep gulf between any private school and any public school +@bhelyer yes, referring to the transition period, not to the complacency period +@willjohansson fun fact, I found all of these inside of five minutes, the entire book is just this stuff back to back to back +and now all of you know why I had a brief but fruitful Insanity Phase +No, my foreign friends, that is not a textbook used in *public* American schools, they're slightly more fair-n'-balanced +I feel like today is a good day to randomly drop this link to pictures of my actual high school history textbook http://t.co/XqDYtlr3OX +@attritionorg http://t.co/ktmXAHhriX +@Myriachan I know, I have studied Greek ;) +@marczak @newsycombinator yes there was a fuss about it beginning to exist at all recently +"It's me again! The Debian OpenSSL bug!" http://t.co/lbaiJXSXd6 +@demize95 I imagine getting the ones in Spanish is not really a problem but I haven't actually seen an ID with such before +@demize95 even before ASCII America systematically forced incoming immigrants to respell their legal names with no funny squiggles +@demize95 I can tell you're not American +@xa329 it would be a manga if I could draw ;( it is definitely 100% novel :p +@Se3ek I have never met someone whose native language was not English who did not pronounce it that way already +@eevee I did use to have a flower symbol in my google name before G+ but people complained it broke sorting and search by name +@eevee because Google Plus blocks flower symbols +@Samurai336 overhang.... +@Samurai336 it has other ligatures like in "fi" the dot will be subsumed into f's overhand +@Samurai336 no just ordinary TTF I like the font IM Fell Great Primer (which is a mimic of 1800s typesetting) http://t.co/MZJaETAfvH +@Samurai336 a good font like I use for compiling my manuscript will create ligatures automatically +I should start insisting my IRL name is spelled Melißa so I can break websites with that too +@vogon @bburbank denial frustration bargaining acceptance patching the wad +@m1sp @WhiteMageSlave he slept like that. That’s a valid, non-fan service reason, right?! +@CyborgCode I’m saying it’s not a type of compromise that implies server-side access to data. They’re spray painting the outside. +@m1sp I fixed several before sending the release candidate draft to People +Though threatening to change the name of a country on Google Maps is not as effective when your delivery method was DNS hijacking +@demize95 @newsycombinator http://t.co/1QFbsBheBH +@eevee wh a a ? +@demize95 @newsycombinator probably DNS poisoning then unless you’re jesting about agreeing with their political demands re: map name +RT @newsycombinator: Google palestine hacked http://t.co/F3O8KjoF6a +@DrPizza well when you think about it the alternative is fighting the snow +@DrPizza I unblock pretty much every website that uses Project Wonderful +@WTFuzz I am incredibly jealous +@demize95 my ego is already dangerously cheesy +@nelhage I do, but people tend to download and send to iPad, as it's a PDF +1) send manuscript to a bunch of friends 2) find typo 3) infinite shame +@WilRockall I never touch the dynamic stuff and often do not even remember it exists :) +I only just noticed that our own list of flaws we check for now officially includes "client-side Java" as an official vulnerability +@mubix good luck finding a computer that won't crash under the load on kernel memory +@technololigy I like your new bio a lot +@DrPizza @gsuberland you just have to enumerate them with 16-bit unicode. Check out my é drive +Without dragging out my copy of @markrussinovich et al, I suspect Windows will ragequit before you get to two billion hard drives anyway +Today on "if only I could exploit that": "hmm... this will overflow if your computer has over two billion hard drives" +The face of a cat finding Turing-completeness in another unsuspecting file format http://t.co/xWpjUzP3Mk @sergeybratus +RT @vogon: humanity has been capable of powered heavier-than-air flight for longer than women have been able to vote in the US +Is that to imply that Canadians are NOT afraid of dragons http://t.co/UvuU5apGFB +@_____C @puellavulnerata except plaintext email is not buggy and incompatible and is in fact the standard +@puellavulnerata most clients support expanded attack surface! +RT @puellavulnerata: My bank now sends me e-mail with a text/plain component that explains "most e-mail clients support HTML and you should… +“Using an ad blocker so the images aren’t seen is a crime!” Thieves! Time to go arrest everyone on the internet who is blind! +Calling all @shit_hn_says we got a code red https://t.co/DRyJj4V70H +@akohlsmith @natashenka not an intentional one. I’ve had people tell me their fridge was a source of interference before +@savagejen oh my gods +@eevee I have had the thought "take a screenshot and flip it over" as a method of taking a photograph of myself at my desk so... +@m1sp "someone" scanned my old letter to myself instead of sending the envelope to me and I am almost too embarrassed to show you. almost +@savagejen tried to tell her that ones that start with @ don't go to all ten thousand ;) +@savagejen yes but I didn't say so because everyone loves using the "how could you say that to ten thousand strangers" line on me... +I thought if I told someone where a letter I wrote to myself when I was 13 was and I wanted it back ***DON'T OPEN IT*** was implicit +@m1sp @WhiteMageSlave meanwhile, in book 2 http://t.co/HkX21jBhDz +@Kim_Bruning @vogon only one of the characters is Fake Dutch just FYI ;) +@nickm_tor can’t tell if amazing pun or just been into the Naruto +@m1sp I am sketching out the opening to book two right now and it is the most manga thing +@PhilippBayer @supersat well they’re clearly really bad at it +@dan_crowley and that’s how you internet, FIN +@dan_crowley that was your SYN. This is my ACK. Now you give me a SYNACK please ACK +@ShadowTodd remember the time you publicly consumed an item of pop culture despite already being of the opinion it wasn’t that great +@natashenka try everything with a screen, and the refrigerator +@natashenka I’m not an expert I’m just good at getting into trouble and back out of it +@armcannon because the world is so short on generic guitarists +@natashenka do you have any idea what frequency it is or what it “sounds” like ? +@kattkieru \o/ +@0x17h depends. Some just let it slide, some watch TV services, some visit a local church at random +@quantFlu I'm not, thank gods +@ryanfenno I find it utterly astounding that even Sun has better visual appeal on docs than Oracle (especially since they're the same docs) +Tonight on interesting vulns: this SSL certificate checks out! I'mma just pull the organization name out and use it as a filename verbatim +# 371783547943526400 +@ryanfenno serving up a few MB of static HTML once a week is truly the limit of computer science +Everyone: my question was W H Y not H O W ;( why would Oracle block public documentation from being indexed by all bots +@PhilippBayer yes the question stands W H Y +@gsuberland what do you mean? there's nothing cached about it, I can see the robots.txt with my own eyes, it denies everything to everyone +W H Y it's not even anti-google - it's user-agent: * ! http://t.co/RlbKHeLLQo +@dveditz My father is a devoted fan of Tolkien. I don't think my mother has ever read a fantasy novel in her life. +@cyclerunner PATCH NOTES v1.0.0.3 * resolved temporal paradox - please reboot canon +@zcutlip I escaped before the mandatory transformation into Northern Virginia Barbie +@chort0 http://t.co/Bx3NlSYT4d I lived there for a few years everyone chuckles about the rogue backhoes +@chort0 have you heard about the treasure allegedly buried in southwestern Virginia? People take backhoes to others' backyards at night... +As a former resident of Northern Virginia I am pretty sure the soil is in fact cursed by a malevolent cult and that's why AWS goes down +@bobpoekert IT'S ALWAYS VIRGINIA WHY IS IT NEVER CALIFORNIA +This is the state of our internet: I hear that two services are down and I know something happened at Amazon's Northern Virginia datacenter +"instagram and vine are both down" "what at the same time" "yeah" "this looks like a case for Cloud Detective" http://t.co/UrF3hbu6XD +@savagejen I know a girl who did a ten-minute video demoing that and teenage boys won't stop sending her messages on youtube +@MarkKriegsman btw I finished my novel that's my true hackathon completed +@MarkKriegsman I knew of it - it's parodied by The Princess Diaries - I just didn't realize how ridiculously awkward the rulership setup is +@savagejen *scratches neck* ow my bare skin +@pajp I couldn't figure out how to turn that stuff off and I had a one megabyte file system allowance including versions it was hell +@savagejen it's been amusing to watch everyone project their favorite minor league brand as the mythical Third Phone of my dream +@vogon @Kim_Bruning ps one of the language spoken in my novel is Fake Dutch which is just Dutch with Abadideaized spelling +@vogon @Kim_Bruning *sings off tune* VILHELMUS VAN NA-SA-WE BEN IIIIIK VAN DOOUUT-SEN BLOOOEEED I'm so good at Dutch +@vogon stop giving me technical answers when I am marveling at the artistic majesty of how ridiculous it is +no joke there is a country whose king is elected by another country which is a republic Europe how did this happen http://t.co/EjJ9Y0TsKA +@beist that's rough. Hang on, I have some PHP... +Did you know one can be elected to Their Serene Highnesses Highness the Co-Princes of Andorra +@geekable it's been edited to a Certain Extent and it is now in "ignore it for a while before rereading it" phase +@ulysseas yeah there's nothing worse than "forget to take it and you'll get sick. Take it twice and you'll get sick differently" +"Dear... thirteen-year-old... self: do not... write solemn vows... on Lisa Frank unicorn stationery. Sincerely, just kidding go ahead" +@mbrit planning on self-publishing as ebook because I think my main audience would be those who read other online stuff I enjoy. +@mbrit wrote, as of two nights ago :) and yeah I sent it to some good friends etc. +@CyborgCode unless of course one specifically wants to be a professor +@CyborgCode I don't particularly feel that I need more degrees, they are necessary to advance in some sciences but not CS so much +You can tell I am actually a programmer because the novel is now in "release candidate" stage +My genius is surpassed only by my ability to take a pill out of a medicine bottle and lose track of it before it gets to my mouth +@m1sp you're fired for not questioning Clarion's last action :p +@jason_shell well I wrote the novel so if they don't they will soon +You see here a NOVEL. It is about RELIGION. Also about GAY. It may press some BUTTONS. Send copy to parents y/N +@WhiteMageSlave @m1sp I have so many subplots plots within plots within the tears of shippers +@tomslominski http://t.co/ykGxv1BuZz +@elad3 I seem to be magnetic to early adopters of all sorts +To show you how messed up my psyche is, in my dream, the Third Brand of Phone pretty clearly ran VMS. +@Radeachar twitter is so easy to manipulate ;) +@m1sp why do I feel like I've written almost four hundred pages and barely advanced the overall plot at all +@Kufat yes. and Symbian. +@pusscat D: +And now all of you tell me your brand loyalties and so far none of them have been Blackberry. +I had a dream last night that I finally found it: the legendary Third Brand of Phone that was neither iPhone nor Android. What nonsense! +RT @PRISM_NSA: What's a nice girl like you doing in a keyword search like this? #NSAPickUpLines +RT @dhh: Remember when NSA was caught recording phone sex between American's overseas and passing it around office for laughs? http://t.co/… +@m1sp and may he be damned for it! +RT @dan_crowley: There's another word for #LOVEINT: Stalking. +@Ruzvay http://t.co/ykGxv1BuZz +I have been reading my *own* book literally all day, and it is a LOT longer than I thought it was +@MechMK1 yeah. stupid unicode tricks +This is a good way to scare yourself to death with a search box http://t.co/F0DczG1CYf +# 371397972606451714 +@m1sp if you read Glory in the Thunder backwards it's the story of an old man who doesn't kill all of his friends +@puellavulnerata being IT in a prison is interesting in the academic sense because there are malicious actors physically present +@puellavulnerata as staff of the "free to quit to the extent that any lower-middle class person is 'free' to quit jobs" sort +@puellavulnerata fun fact both my parents have worked in jails (there I just ruined your opinion of my family forever) +@ID_AA_Carmack except htons, I think we’re stuck with that one… +@lyyx because non-Americans don’t have RIGHTS, silly! ;( +Jails and hospitals are both constantly catching workers looking up acquaintances in the system. Or random interesting strangers #LOVEINT +This is only the single most predictable misuse of access to information in human existence #LOVEINT http://t.co/xLp5tFym5t +@The1TrueSean you should see how many smart phones you can put on a railing over water +@maradydd @sergeybratus eeeeeeeeeeeeeeeeeeeeeeeeeeee +RT @chort0: So the author of the PATRIOT act and the UK Terrorism act both saying they're being abused. WHO COULD HAVE PREDICTED THAT??? #I… +@m1sp you know I'd be the melodramatic one saying "there isn't room for us all, I GIVE UP MY PLACE FOR YOOOOUUUU" +@Packetknife I’m rereading it to patch a few things up then giving some copies to Trusted Friends +@froztbyte yes, the one I finished last night and was generally freaking out on twitter about 8) +@trap0xf what in tarnation is this contraption that guards its bytes so well +I never would have finished the novel without @m1sp best friends forever until the end of the world or the eve of our mortality whichever +RT @AutomatedTester: A QA engineer walks into a bar. Runs into a bar. Crawls into a bar. Dances into a bar. Tiptoes into a bar. Rams into a… +RT @commentisfree: The detention of #DavidMiranda was an unlawful use of Terrorism Act | Charles Falconer - who helped introduce the act ht… +@JackLScanlan I hate to break it to ya Jack but I think your parents might have secretly been white +RT @usayd: REALLY from a kids book: "As they went through the airport, Olivia was searched for weapons. She was very pleased." http://t.co/… +@0x17h I just woke up but my fake detectors are ringing +@m1sp I'm doing a read-and-fix scan now... wooo +@m1sp /me grabs you and dances +@Xaosopher I know what is meant by that phrase, but the body count is pretty high +@inversephase I'd say my *taste* has improved considerably. But when I pull out old notebooks I am not ashamed of the writing itself. +@inversephase I was always the grammar worksheet golden child +RT @SecurityHumor: When someone starts a conversation with "Promise not to get upset?", just punch them in the face to save everybody’s tim… +@chriseng yeah, it’s like attending a wedding, if you don’t object the very day it’s declassified you have to forever hold your peace! +RT @SamSykesSwears: This picture was intended to illustrate the "horrors" of suffrage, but damn if that doesn't look like an awesome bar ht… +@m1sp I think I succeeded in making “Ani” into a woobie in four whole pages of prologue +@darkuncle I generated the PDF myself, sooo..... 50/50 +Problems that should not exist: having to reboot the iPad so I can get a large PDF open in userspace without malloc failing +@kevinlange I should probably read the last several chapters I just wrote first +@strathmeyer http://t.co/wm2hA0bX1R +If you wonder what on earth the novel is about (not hacking), this is a lot easier than trying to fit it in a tweet http://t.co/ykGxv1BuZz +Word count (aside from final editing) is 106,940, almost exactly the size of Prisoner of Azkaban, this pleases me +@megapint I prefer to think of myself as having a different sort of genitals! ;) +@elimisteve the final http://t.co/Pt93gknC4m is girl-on-girl. +@hypatiadotca YES just let me do one more readthrough to patch up some minor rough spots +@hypatiadotca PS. IT'S REALLY GAY +@GarethLewin yeh +@elimisteve vaguely steampunk take on the Silk Road. Teenagers. Politics. Blowin' stuff up. Gaaaay. +@Tomi_Tapio at this moment only @m1sp because I need to reread it myself and straighten up a few things +.@Jedi_Amara yeah in my personal headcanon I am still 17 +Dear thirteen-year-old me tell that random girl on the internet she was wrong that you'd never finish a novel it just took until you were 25 +RING-A-DING-DING hey what's that sound oh nothing it's just the sound of me FINISHING MY NOVEL LIKE I SAID I WOULD TWELVE YEARS AGO +@attractr thanks <3 I already went through my sound-and-fury newly forged atheist phase, to the luck of twitter +@attractr always there, strangled repeatedly, until I went through an outright suicidal phase and came out the other side a few years ago +@attractr for the record I am no longer a fan of the Trumpet Sounds, Everybody Dies club. +@attractr and yeah I could read pretty well at six. Read the whole thing. Maybe barely seven? I don't know, doesn't much matter. +@attractr that everyone who did not bow before my god was going to have the blood squeezed from their bodies to the depth of bridles +@attractr now imagine when I was six years old I was told that every word of Patmos: The Acid Trip was literally true +@m1sp it is a wicked thing I have done +# 371021337097023488 +One of the locations in my novel is actually just a really good game of Dwarf Fortress I played back in 2010 (it's a secret to everyone) +@kevinlange @eevee I bet this would be hilarious if it would load :( +RT @KristinPaget: Attention, world! Hormone therapy is "basic medical care" and does not equate to "sexual reassignment surgery". Just FY… +@attractr I feel educated in all the wrong ways that I actually know which book is a bad acid trip on Patmos just offhandedly +RT @RajaSandhu: Very short story of a designer... http://t.co/CzqBQF6bii +@nickm_tor my Hermione Instinct to lecture you on the reason the term is used is overpowering +@TweetsofOld was the context discussing the name of the town of Ladysmith by any chance? +RT @SLWorona: No spying. Well, spying, but legal. Well, a few illegal, but unintentional. Well, a few intentional, but not many. … http://t… +"Drivers carry less than twenty dollars at all times" Yeah well I just tipped you $21 what now huh yeah I thought so +I don't know why someone said "I'm gonna ask Mark Twain to pose shirtless" but I'm glad they did http://t.co/iz5Icotpm1 +Hey husband, come here, I want to try something http://t.co/5LWe4tG07r +.@kattkieru is it working http://t.co/q2km6AfTd0 +.@kattkieru then I am channeling Stan Lee subconsciously because I just woke up +@nickdepetrillo incidentally my cultural narrative does not overlap with yours on this concept so there is an infinite gulf between us +At some point we just replaced stories of fairies and magical knights with stories of aliens who get power from the sun (and Batman) +Of course everyone is talking about Batman. Shared cultural narratives are the building blocks of cohesive civilization. +RT @caulkthewagon: .@nathanLfuller Okay, then @jaketapper and CNN, you can never use the name "Lady Gaga" ever again, or any other celeb wh… +@kevinlange Dear Husband has been angsting about character choice +RT @chimeracoder: I've also been blown away by the number of similar experiences that people, both strangers and friends, have shared. *Tha… +Read this story about the TSA. To the end. There’s a plot twist. http://t.co/LfsEmeLtbM +@tapbot_paul unsolicited UI suggestion: visually distinguish between jpeg instagrams and hellnoise instagrams before I tap #heartattack +Reminder: we have the secret opinion now and the opinion is not gentle http://t.co/XOTdF3EWT0 +RT @savagejen: None of our heroes are perfect, which is why it's important to limit the powers we grant them. It's damage control. +@radarpixie depending on context, I am "from" the Netherlands, New Hampshire, Massachusetts, or any of six places in Virginia +@radarpixie it's a long story, but in this case, rural Virginia +RT @maxious: @0xabad1dea check yo pizza privilege +Yes indeed I come from a place where there's no pizza delivery any time of day, never mind so late. Third world stuff I know +It was worth moving across the country solely for "I'm hungry, I don't feel well, and it's about midnight. Let's order pizza" +@m1sp Ding! The Old Draft Fragment is finally integrated! +OH "I'm thinking of writing an Atari demo now. But that might be the legal definition of insanity." +@adpaolucci I'm about halfway there! +The last few thousand words of a novel are the hardest to write... +@m1sp ctrl+f "telescope" and behold the dialogue that is the peak of my writing career +# 370634543209791488 +@focalintent I feel mostly better so I think it's a large block-by-block move and erase +I have successfully passed the fever token to my husband! +@SurprisingEdge IDK. I noticed this because I could not actually fit the connector in the socket due to the offending particle +@amazingant It's cool except that the magsafe 2s are EXTREMELY prone to falling out +Warning: if a tiny piece of magnetic material gets lodged in a magsafe connector port, it is the dickens to get back out +.@EWErickson is the sort of person who makes me reconsider my philosophy of the goodness of the human heart http://t.co/5wIlOQqs0d +@neontrotsky @puellavulnerata @EWErickson it must be nice to live in a world where you can literally demonize people +@kaepora I assume it isn’t her legal name yet (and may never be). Chelsea “Bradley” Manning? +@gsuberland you think our prisons even acknowledge transgenderism as a concept? +If you can remember to call Manning “Chelsea Manning” from now on, that is one little victory for one sort of freedom — of identity +RT @ioerror: It appears that #Manning has made an extremely important statement today: https://t.co/xevyH1PBPd +RT @tv_Amaro: #Syria A 10 year old girl drew us what she saw in her village. More compelling than any press report. It sums it all http://t… +@Viss nooo not the beautiful hair +@mattblaze I’d guess by packet in which case that’s easily all the important bits +RT @avibryant: OH @nelhage "DNS was always doomed to be a disaster... naming and caching, that's _all it does_" +RT @suchitagarwal: This is how all deploys happen at Twitter https://t.co/867XYEUALy +@lllamaboy this is the part where I’m not sure if you’re kidding +@m1sp @hypatiadotca @TonyAbotMHR and we can't let Gillard continue to be the Prime Minister of This Napkin. +@m1sp ohai down under. I wrote a bunch! I am too tired to write another word I think so Little Miss Introspection is gonna have to sit there +@hypatiadotca @m1sp everyone should have a friend who makes a perfect markov chain input. +@kyhwana @nrr with all respect to leafypants, we are not two souls of one heart or something sappy like that +The @m1sp x @0xabad1dea fusion bot cuts straight to the heart of the matter https://t.co/oXrpA7I2fJ +@trevortimm @MalwareJake @EFF I probably owe y’all some donations… +@nrr I… I… … …. +RT @conor64: UK forced David Miranda to give up his email and social media passwords on threat of prison http://t.co/j4zIv8Q6WU +RT @trevortimm: This footnote from the just-declassified FISA court ruling on unconstitutional NSA surveillance is extraordinary: http://t.… +@jesster_king because I find Saint Guiltystine supremely annoying +@jesster_king @m1sp it turns out to be a curable condition, if you are whacked upside the head with enough books. +@jesster_king @m1sp Yeah. I did that. For twen'y years. +@jesster_king @m1sp you know I spent about twenty years being super religious right? I don't think it's genetic. +@Tomi_Tapio the live word / character count for the working section increments character count on spaces +@rejectionking http://t.co/D5hTVwhz0F +@bobpoekert http://t.co/QbbBiv1Ttk +@bobpoekert yep +WORDS FOR THE WORDCOUNT GOD http://t.co/xnGYBhA3c3 +This startup looks pretty promising http://t.co/KlPVxZVQcx via @harper +# 370331219201761281 +@Mega_Turd that's the justification +@m1sp I hadn't seen this trope before! I'm glad I did http://t.co/cZIVi9Od1A +@lllamaboy though I'm being told the whole mobi won't be sent to Kindles, so hopefully the relevant part will weigh in under that. +RT @dvsch: @0xabad1dea @harper the mobi files you see are combined kf8 and mobi7 files. only one of those is sent to a device. So 1.5x epub… +@lllamaboy my standard-length novel produces a mobi of over a megabyte with the official kindlegen. +@JulianBirch I am not dragging myself through a billion pages of "women suuuuuuuck" for that :p +Amazon deducts from Kindle royalties based on filesize of download. mobi files are about three times the size of equivalent epub files. Hmmm +My reporter on the ground is telling me League of Legends was hacked. My response: LOL ! Get it? You get it right +FYI I have read several physical Loeb books before and they are specifically what I want for my personal library. Muy perfecto. +@CharlesAllhands I need physical copies. I'm starting my collection for Hypothetical Future Daughter. +@bobpoekert (to channel some Molly Weasley) +@bobpoekert because lemme tell you I had to learn the hard way to NEVER TRUST A TRANSLATION if you CAN'T SEE where it keeps its SOURCE! +@bobpoekert My school library had these books. There is a reason I want them. They are bilingual. And very carefully typeset. +Can someone crowdfund getting me every book on http://t.co/5A3KyFgpDx except the Confessions of St. Augustine let's skip those ones thanks +@bhelyer I'm a defensive mage. As opposed to offensive. Color is up in the air ;) +@bhelyer "infosec people" is a broad category. In my case we do not begrudge them a good score ;) +If honesty is a word then earnesty should be too. I say this with all the earnesty in my heart +Every now and then we get a customer app which is actually robust, resilient, and exhibits security-aware structure. We stop and marvel. +@technololigy I think so. The target data was not normalized anyway. Are we using <p> or <span> today? +I'm basing that tweet on a very vague memory of Intern Hell where I was told to parse some XML. And it had to be Classic ASP. +.@xabean The only reason it's better than classic ASP: ASP has zero native XML parsers. PHP has seventeen! +RT @xabean: @0xabad1dea Did you author a book recently? http://t.co/ANZ9bxBC6n #PHP +@steveklabnik I just hope I remember in thirty years I got hella lucky. +@steveklabnik When I look at my past economic status compared to my present I was definitely The Poor But Smart Kid Who Got Hella Lucky +RT @commitsfln: I'd call myself the git master, but apparently I'm the git issue_117 +RT @m1sp: Biblical genetics: make spotted sheep by... getting them to mate while looking at patterned sticks. http://t.co/VyNmIzFnr0 +RT @ejacqui: @werezompire @BenKuchera I'm going to start asking "How will your game stand out from other games with male leads?" +RT @werezompire: I was seriously asked, "How will you make your game stand out from other games with female leads?" I should have said, "Sh… +RT @alertnewengland: Operators of the remote control mini-sub have been instructed to call the @USCG before future operations. +RT @alertnewengland: Environmental PD off with a remote submarine in the outer part of Boston Harbor. Requesting MSP dive team to evaluate. +@eevee hahaha wow oops I'll just make something up about being European. And measuring words fractionally. +@eevee because I'm not patient, I can't focus, ..... dang my novel's word count is gonna hit 100,00 today how is this even possible +@geekable I’m all for Rule of Laws Which Consistently Produce Reasonable Outcomes +RT @gsuberland: Bradley Manning has been sentenced to 35 years in prison. +@nrr I’m pretty sure it’s a “get attention for the problem — plan on coming back when some legislation is passed” +RT @bascule: Spent way too much time making a high res ECB mode penguin: http://t.co/UDsaCMAKh8 +RT @sergeybratus: Bought new shoes today, advertised --out of all things!-- as "airport friendly". O tempora o mores. +@eevee almost as if it’s OUR careers he’s talking about (Ohai I’m awake now) +@SimonZerafa … “woman flu”? I wasn’t aware an excess of X’s led to increased risk of influenza +RT @matthew_d_green: Never trust a PRNG you don't control. +@SimonZerafa never had a fever as an allergic reaction before +@SimonZerafa hmm, I just woke up… but my face is still red… +@m1sp I just wrote Talassen's impassioned defense of her brother while delirious with a fever. Please let me know if it makes ANY sense. +@savagejen MY husband? Wake up while he was taking a nap downstairs? Science has not yet shown this possible +@WhiteMageSlave http://t.co/ZhjGFFE1JJ +@_yossi_ there were no witnesses. So either I did this to myself or Harry Potter is real and I've been Hermione all along +@BaconZombie TIL I read fluent Autocorrect +1) be delirious with fever 2) draw the Deathly Hallows on yourself for no apparent reason 3) pass out 4) wake up and freak out +@BaconZombie pretty sure that would kill me a lot faster than the poison would. Or is that your plan, ASSASSIN? +And like if Han Solo could be scared or upset or angry or whatever I totally could too! ...... .... ..... I was a lonely child +I figured this out while reading a Star Wars novel actually. It finally hit me that it was written by an adult for adults about adults. +# 369971580006199296 +I did not figure out until I was 13 that adults experienced a full range of emotions. I thought losing most of them was part of maturity. +@SimonZerafa I think I will be soon +@m1sp if I die of this fever, finishing the book is your job. I'm serious. Don't screw up +@_BluShine then you get moral failures with a 100% management approval rating +I am running a fever. It started about five minutes after I took a sip of coffee. I am stronger than your poison, assassin! +@Kufat I am not moogosexual +I’ve been informed @codeferret_ is leaving me for a chocobo named Chocobro. It’s Massachusetts so that’s probably legal +@hirojin I would say kill it with fire but the NSA's metaphor detectors are not very accurate +@jdunck I'm just trying to show both "all <x> are evil" and "I know an <x> and they're a good person" the intersection thereof +My next tweet was going to be complaining about coffee and I gave myself mood whiplash +So if I say, an organization is bad, I do not mean every person engaged in its activities is evil. Most of them are good. Just also small. +@seedOftheNeed and governments and departments that governments leave well enough alone. +Complicated systems produce moral failures which no individual person involved in the decision-making process would have approved of. +@m1sp Maybe I should mention you to my mother some day I mean you're kinda my best friend in the whole universe an' stuff Mom this is Jaiden +@m1sp this communication channel is compromised ! http://t.co/pipjJ7OjPn +@eevee I met one once! +@callmewuest nah it'd probably have the exact same metadata as it's sourced from whoever publishes the MP3s and it's not WRONG metadata +The number of people who have answered "by grabbing a random googler face-to-face and making them listen" shows google has a problem +@miguel_pilar I went to their support page and nothing seemed suggestive of "click here to file an actual technical bug" +@pmjordan *slow clap* +Negative six internet points to whoever points out I could mitigate by renormalizing my MP3 metadata that came right off *Google's* store :p +I'm pretty bad about filing bugs but this is angering me because it renders my current favorite song completely unsearchable +Six internet points to whoever can tell me where to file a bug report with Google Music that will actually get read by a human +I have determined that the problem is that @GOOGLEMUSlC cannot figure to normalize between straight quotes and smart quotes. Dorks. +Google Music's search is broken. "The King's" will turn up every song I have with substring "king" except "The King's Arrival". ... ... +@iand but no-one ever told me that girls shouldn't drive cars. +@iand incidentally, I don't have a driver's license. +@thegrugq why you gotta retweet me out of context +@kaepora I’d take that in a heartbeat over a pledge of allegiance that involves someone else’s tribal god … +@homakov you will see that in every restaurant in Massachusetts, so don’t bother keeping count +(P.S. the frog is your civil liberties) +“This isn’t too hot,” said the frog in the warm bath kettle. “I’m not sure why we need so much extra firewood, though.” +@puellavulnerata oh my gods who do we need to bludgeon +@alzeih it says 口口 you just have a narrow width font +@JackLScanlan drag out @m1sp kicking and screaming and cursing the sun. And give coffee from me with love <3 +RT @mikko: Code review of Future Crew's seminal 1993 demo Second Reality: http://t.co/8lNKeCPIUL By Fabien Sanglard (@fabynou) http://t.co/… +RT @rachelmyers: What to do when dude says 'It's bare metal rails. Pure computer science.' I can violence, right? +@m1sp but I think you will find it… was never gone in the first place! So I must be innocent +@m1sp because let me tell you I will give back my stolen data if that’s what you want Mr. Thug nooooo problem +Uhhhhh does Britain know how electronic storage works because uh… http://t.co/QaGYkK0uYF +@m1sp mispy my mother is texting me the watchmaker’s argument mispy help D: +RT @tqbf: Oh for fuck’s sake. Ruby’s OpenSSL binding gets fooled by NUL byte in subjectAltName. http://t.co/u3zWH5eoo0 +@iand https://t.co/7FGyOKFiG4 computers ain’t free bro neither are weekends +@m1sp and is impressed that at SOME POINT across THOUSANDS OF YEARS, a city in the Middle East was attacked and destroyed! PROPHECY +@m1sp this person comes so close to reasonable then veers off -- https://t.co/aJsriiw3po +@m1sp on a *completely unrelated* note, I wrote a new epilogue +@m1sp tonight on: randomly linking you religious texts http://t.co/W0Q4v51Flk +"Two hour guitar music chillout video" Sound of door abruptly slamming twenty-nine minutes in +@allen_jensen tell me I am fuck-ing imagining it. Everyone is upper middle class and schools are funded and life is good and fair. +@allen_jensen tell me how all of our schools have equal access to technology and qualified technology teachers. Please. +@allen_jensen tell me how that’s just some freak statistical fluke and my school was the only one on earth like that. Please. +@allen_jensen I lived in an area that was 60/30/10 white/black/other. My programming class was 100% white. I was the only girl. +@allen_jensen tell me how everyone in the world can afford computers and internet access and has the time to tinker. Please. +@allen_jensen @TravTurn sigh, way to miss what I was telling you: go read. Conclusions are not tweet-sized. +“All your emotions sound really fake” “WHAT” “except your anger” +@LoveFNDeluxe it might help just a tad. +@QuantumG not ending in flames is the outcome of, say, 99.99% of bus rides. If it DOES end in flames, that's bad luck. +@QuantumG so just understand by "luck" I mean a favorable outcome that I did not produce by conscious, rational choices. +@QuantumG I didn't pick my genes either if that's what you're getting at. But I could have been raised adoptively from day 1, it happens. +RT @blueg3: @0xabad1dea People seem to not understand that it's not about individuals, it's about population statistics. +@QuantumG So, of all possible parents in the world, that the two I had were a favorable outcome compared to average and worst case, is luck. +@QuantumG Um, absolutely nothing new agey about it. I didn't exist. And then I existed. And I had parents. I didn't pick them. +@QuantumG so yeah I'm lucky as hell +@QuantumG it was luck they were *MY* parents. Pure, completely uncontrollable happenstance. +@QuantumG I don't remember choosing who my parents were at character generation +@QuantumG that does not mean individual white kids are not poor. It means there is a system of biases larger than individual kids. +@QuantumG My area was 60% white, 30% black, 10% other, my CS program was ~98% white. It's not mysterious. +@QuantumG and judging by how many children I've seen discarded, having parents that truly care is pretty lucky and out of the kid's control. +@QuantumG there. are. multiple. axes. multiple. dimensions. it. is. not. one. number. +@m1sp zomg the marriage oath in this chapter is actually a poem I wrote in 7th grade during my first big crush +Almost no-one is successful purely by privilege! They worked hard too. Almost no-one is successful purely by hard work! They got lucky too +@QuantumG @AsherLangton GDI you opened with a mention of cultural context and promptly began to ignore it +@QuantumG @spacerog well I was definitely the only girl who graduated in computer science from that school that year. +@QuantumG @spacerog cultural context: an area of Virginia that's about 40% black. +@QuantumG @spacerog the 29 white male students from upper middle class homes I went to CS 101 with? Me being 30 of 30. +okay no more buzzing my twitterphone I have a novel to finish chumps +@Bluebie @aredridel naw see they uppercased it first it's totally airtight yo +@allen_jensen @TravTurn I am not google. But google, if it was having a busy evening, might suggest something like http://t.co/SAkPBVYPm3 +@QuantumG @spacerog You had computer clubs?!?! But yes see point about community acceptance +RT @rauchg: You can replace `FIXME` in source code comment with ¯\_(ツ)_/¯ +@QuantumG @m1sp I don’t think any of us stated that having a computer induces being a programmer +@QuantumG and I’m a woman. It works out sometimes. +@xa329 @thegrugq what do you think mentors are… +Privilege is not a master on/off switch. It exists on several axes. As a white female bisexual once on welfare, I’m all over the map. +@QuantumG in *my* social context, being a poor white kid was measurably more privileged than being a poor black kid +@QuantumG but in the original context, being given the benefit of the doubt due to gender was part of the privilege equation +@QuantumG so did mine, and I put that at a middling rank of privilege. I’m thinking of the other kids. +@eevee the math they taught me in school has thus far proven not particularly relevant to programming except this addition stuff +# 369609438849945600 +@QuantumG um okay yes that was kind of my point if your parents couldn’t afford a PC your chances of being a programmer go way down +@thegrugq @cs_saheel and they all wrote code I can hack with my eyes closed ;) +@QuantumG I was the only kid I knew in our welfare neighborhood with a computer. And now I have a Good Job and live in a Good Neighborhood +@QuantumG I had less privilege than a lot of kids. More than a lot of kids. It’s not a binary switch. +@QuantumG ie the problem is getting better because computers are getting cheaper and internet access more available +@QuantumG once we account for India, yes, they are undergoing a nascent computerized revolution, and I am quite glad. +@QuantumG I am not contradicting myself. My father spent every penny he had and some he didn’t on our first computer +@QuantumG note: speaking from an American context +@QuantumG gee, why are most programmers white? It almost seems to follow a similar curve to average household income by ethnicity +RT @Roguelazer: @eevee Computer towers are stereotypically beige. White man evolved programming as a form of camouflage in computer labs. +@QuantumG so getting a computer was a BIG DEAL but it was a deal that happened. +@QuantumG most of us in the west are at least a little. I grew up on welfare. Didn’t have food in the house sometimes. +@eevee I left a comment to that effect, dunno if it will actually get read. +@thegrugq … in the context of critique and recommendations for improvement. +@thegrugq for the same reason that a musician with no listeners, a painter with no viewers, an author with no readers… +@thegrugq I bet your code is nasty +@m1sp true, but Tarimin is not his native language, and Tsovinar notes he should talk in Asram as he sounds smarter +It’s privileged because the equipment, resources, and TIME are not trivial costs, and community feedback ie acceptance is very necessary +@M0zilla of course it should be, I didn’t crawl through the mud of prejudice for years because I was BORED +Summarizing myself: programming is no more inherently male than it is inherently white. It is, however, inherently privileged. +Many lucky humans do not understand that access to technology and education is gated by privilege, news at 11 http://t.co/i0KKuS41Cb +RT @eevee: as a general rule if your evopsych insight derives from "men hunted while women stared into space all day" you are probably an i… +@Packetknife I’m almost done +RT @thegrugq: After its illegal to teach anti-polygraph techniques, whats next? Ban on teaching how to encrypt? http://t.co/vmnEnfpguE via … +@homakov no, you’re just near MIT +@rgov oh are we playing Hacker News, or Proggit? +RT @emilyst: Awesome flowchart for absolute Python beginners which explains why your program doesn’t work. http://t.co/YxDIcXponi +@WhiteMageSlave +17 +.@QuantumG now if only our Imperial oppressors would learn to spell “wookiee”… +RT @QuantumG: @0xabad1dea wow, paranoia is that rife there? http://t.co/hNblGyti8r +@dan_crowley except for that one time here in Boston it totally worked and no one is going to forget +@mtheoryx this is a very high nerd density area so they probably get called a lot :p +(The good news is the cop apparently knew was geocaching was and nobody got tased) +Dear whoever saw my husband geocaching and called the cops: good job on see something say something I guess?... +@_yossi_ we go at each other like eight-year-old siblings to be honest +Please tell HR I'm just horsing around and not beating my husband senseless behind closed doors you believe me right +The #1 way to figure out we're married is when I punch him in front of other coworkers and have to explain oh no it's just *domestic* abuse +@androolloyd the whole time I think (I've been here coming up on two years) and Chewie has been here for a year and a half +It's always funny to watch a coworker suddenly realize that my husband and I... have been married this entire time !!! +@m1sp lol I find it so hard to write "dumb" sounding characters. Had to rewrite something Solornel said to not sound so edumacated... +Office art part 2 http://t.co/F1koqeyhZv +Considering they got EVERYTHING else wrong, I can tell this web coder cribbed their encryption wrapper from someone else. Thank goodness. +OH "they were shipping XSS as a feature" Wish I could sit in on THAT remediation meeting +Rubber duck debugging: it also works for novel plots +@jlwfnord in a padded room! +Fact: all programmers are that naive at some point Fact: this should be resolved strictly before pushing to production +@Kufat she is proud and open about her marriage to Mr. Drop, as she had a falling-out with her father +.@scottmarkwell oh, no, they thought of that bypass, they already uppercased it ! +I don't know what Mrs. Drop is supposed to do when she wants to order a box of licorice cough drops .... +validateQuery(string q) { if q contains "DROP" return false; } // love ya, coders +@Casiusss WHY WOULD I WANT SOMETHING TO GROW INSIDE ME AND BURST OUT THROUGH MY ORGANS +@benmmurphy @devolvify @ioerror one step at a time... +@vogon sext: NO CARRIER +RT @devolvify: @ioerror BBC asking those previously harassed by UK state security to contact them via unsecured web form http://t.co/TvtU1b… +@vogon sext: lol +RT @zooko: Haha! Best "this software is not production-ready yet" warning ever: https://t.co/kxyfxG5ywa from @nickm_tor +@oh_rodr grats! +@SimonZerafa I am going to be a parent someday. But I decided on adoption when I was seven years old +@SrslyJosh you may be thinking of amazon’s Glorified Fanfic program ? +I had the most vivid, realistic nightmare of my single greatest fear: I was pregnant :( +@SrslyJosh I don’t know what you’re referring to; I’ve read the license. The only problems come around payment, not rights. +@KronicDeth it is? It’s like fifty files in a project structure. +@twoscomplement it's across fifty odd files in the same project, but it seems to have no caching of partial results +Word count is an o(n) problem. As my word processor likes to remind me when it locks up. Incidentally: 94,882 +@sakjur hmm, probably not... +RT @partytimeHXLNT: Yeah, Animal Crossing knows. #ACNL http://t.co/sgYLP6LOgz +RT @ChadAustinSD: @onekade How long before laptops can be confiscated on buses, trains, ferries? +@sakjur Canada’s dirty secret is that they are England and America AT THE SAME TIME +@dancapper I think treason is a pretty powerful word actually. But in this case, the dude’s Brazilian, the stuff American, the cops British! +RT @ID_AA_Carmack: Right now I have some really terrible code that does impressive things, and some really good code that doesn't work yet. +I cannot admit a definition of “terrorism” so broad that completely nonviolent crimes count just because there’s a political tangent. +@abby_ebooks me either… +RT @sergeybratus: @osxreverser We've had material for a bunch of "Watergates" lately, and none seem to be happening. Predictable but very a… +@WhiteMageSlave okay way to creep me out +RT @fivethirtyeight: "Never connect at Heathrow if you can possibly avoid it" is right up there with "never get involved in a land war in A… +RT @thegrugq: @halvarflake @matalaz when you give a bureaucracy a capability (e.g. a law) then it will use that capability in everyway poss… +@m1sp http://t.co/EyXDMC9QDS Barsamin, take a permanent -5 modifier to your relationship with your wife +@rnjsun13 it's called Glory in the Thunder, it's set in a fantasy version of the Silk Road, teens get in trouble, and people ask questions. +@rnjsun13 I reckon +# 369240568204763137 +@apiary I have been working on the characters, the world, and the machinations of plot since halfway through college +@apiary this story has been years in the making. The manuscript, weeks. +@CyborgCode yes +@apiary as they apparently dock your profits for that when the download size is quite large +@apiary you can actually make good money at kindle if your book file does not have a lot of images and stuff -- 1/2 +@CyborgCode a fistful of teenagers caught in the intersection of national politics and the wills of gods driven mad with power +@apiary (there is a certain crowd of bus/train commuters who will buy dollar short stories appealing to their fantasies like crazy) +@apiary yes. I read an article about a girl in her 20s who had made over a million dollars on ninety-nine cent romances on kindle. +@M0zilla well, the spam bios are generated from markov chaining real "typical" ones, and that was one phrase of one, so, probably. +@vogon POLITICS: there's only consensus if you don't want it. +Best twitter spam bio yet: "infuriatingly humble analyst" Somewhere is a real person who used that unironically +@Eyal6699 both, and probably a DRM-free option somewhere that costs a little more (like, fifty cents more) +@vogon it's spelled @abby_ebooks +Writing chapter 23 of 24. I keep promising my husband we're going to be kindle ebook millionaires +@bobpoekert it's a pretty common last name for that part of the world... +RT @akopa: @0xabad1dea Villians are under a lot of pressure to ship. +The moral of a lot of novels seems to be “if only the villain had been more patient, their evil plans would have succeeded! Be more patient” +RT @peakscale: Slow clap, @nytimes - http://t.co/USccKFDDYU +No, I’m not *surprised* they took all his electronics or whatever, but they’re just slapping terror procedures on any ol' suspicion +RT @Sc00bzT: Advisory for #cryptocat group chats: You can send "attack at dawn" to some and "attack at noon" to others. https://t.co/Slmov8… +@chriseng bam! Magic +@geekable @ggreenwald are they allowed to stop someone, hold them, NOT arrest them, and still keep their stuff, under anti-terror measures? +@geekable @ggreenwald not really, I don’t think not being SURPRISED they’d take all his stuff is the same as not thinking it heavy-handed +@chriseng enjoy the flood of paranoia from my followers in 3, 2, … +RT @chriseng: Foursquare uses an obscene amount of data. I've checked in maybe a dozen times today. http://t.co/delirKwcua +@geekable and I feel so much safer! He won’t be terrorizing me none now! +Or maybe he had a Playstation Vita, in which case, sarcasm retracted, he’s evil +@armcannon best I can do is Hermione hair +The British confiscated the evil Nintendo device from evil journalist’s boyfriend http://t.co/zuJDVL4pPz we are safe! /nod @ggreenwald +@NotFaulty @vogon where… can I find this?… +RT @mattblaze: Put another way, anyone who thinks users who misunderstand technology don't "deserve" privacy doesn't "deserve" to be a secu… +RT @_wirepair: with regard to last tweet imagine if the ss had prism. +RT @RealTimeWWII: Himmler: "Are you sure you're a Jew?" Boy: "Yes." "You have no Aryan ancestors?" "No." "Then I can't help - I did all I c… +@JackLScanlan no no I like it where it is thanks +RT @chibitech: basic program in JP beep magazine full of almost incomprehensible hex values. There is no checksum implementation. http://t.… +@puellavulnerata “why do people worry someone is going to kill Assange? It’s not like anyone openly fantasizes about it…” +RT @oh_rodr: OH: How much do you think #Prism intercepts are blowing up because of payday 2, and people chatting about bombs via voip. +@RandomStep I'm saying an NSL is the component from which totalitarian regimes are run. They are not yet used *often.* We think. +@RandomStep exactly like NSLs +@RandomStep it is literally "do whatever we say and don't tell any other authorities or we'll ruin your life" +@RandomStep forced secrecy, no appeal, no oversight, and it can ask for absolutely ANYTHING and you can't ask ANYONE for help +@RandomStep you think national security letters don't exist? +@m1sp ding! chapter complete! The Huuuuuue of Wraaaaaath +Things my husband asked if I had remembered to do: take out the trash, do laundry, queue up more skills to train in Eve. I got told off! +@bhelyer yep, or Diffie-Hellman key exchange +DH, playing new Final Fantasy beta: "whoa! We're collecting CRYSTALS? No waaaay" +@chunkycupcakes I know but they are heavily represented among the fandom posts I am drowning under +@ryanmr isn't that kind of the point of reading +Honestly the whole thing of the giants with NO SKIN is the only reason I haven't read it already that just creeps me out too much +Am I gonna have to read Attack on Titan? Dangit I'm gonna have to read Attack on Titan aren't I. After Clash of Kings... +There's one thing tumblr does very right: figuring out when two different tags should be treated as equivalent +@jesster_king we do, but on a Saturday, like, once an hour at best, and, it's a straight shot so I'd rather walk +I have no idea how someone got this reaction out of @sergeybratus http://t.co/Nuv4Ifw676 +# 368874300477935616 +@homakov get out of the city, go to New Hampshire and see the mountains, if you can \o/ +@homakov welcome to the best part of America, comrade +@cryptocatapp @kaepora *squint* +RT @aeleruil: “Ye Olde “The”” by @TPrime https://t.co/TyBD5L7fbs +RT @ellievhall: Benedict Cumberbatch to paparazzi: "Go photograph Egypt and show the world something important." http://t.co/l0ADTHnZOU +RT @Mornacale: WHAT IS WRONG WITH OUR INNER CITY YOUTH? *closes schools* WHY ARE THEY JOINING GANGS? *tears down community center* OH THESE… +Patent idea: mechanism by which the road between home and school may be made uphill both ways +It's interesting to see old people talking at restaurants. They could have met five minutes ago, or fifty years. +@MechMK1 thank you for accepting my age identity and using the correct age-noun +@thegrugq and to think I was JUST about to give twitter a cookie for not making this joke +@saving_state they would DIE WHERE THEY STAND +Wasn't me who said that, but I think I will identify as not cis-age from now on. I'm a transaged nine-year-old +OH "don't be a baby" "maybe I identify as a baby! Not everyone is cisadult." +@ulysseas I think I have literally never seen a skateboard here, actually... +PS. the pharmacy is more like forty minutes away on foot but I have no sense of time or scale and a poor grasp of consequences +@ulysseas the only actual Bad Part is the rather aggressive traffic. I'm just a neurotic mess. +@ulysseas no, the most peaceful, low-crime Boston suburb imaginable :p +@chriseng I DON'T KNOW HOW TO INTERFACE WITH HUMANS IT INDUCES KERNEL PANIC +@meursalt I suspect being honked at is the occasional manifestation of being stared at +I did it! I walked all the way without being murdered, robbed, abducted, talked to or honked at. Now about the way back.... +@zcutlip I'm not even worried about the word count itself anymore, it's higher than I ever thought it would be, but the plot needs ends! +Conveniently, the cafe is next to the pharmacy, so I can do another push of a few thousand words to hurry up and finish this dang novel +You might be an introvert if: walking ten minutes, on a sidewalk, in suburbia, to the pharmacy is the biggest deal of the week +RT @DarrenPMeyer: @0xabad1dea ia; ia; require_once("fhtagn"); +@yacCz I haven't actually gone to look yet, but I assume it's text, as that was the modus operandi of Mark Reads Twilight. +@thegrugq @homakov @chriseng @WeldPond I cannot be held responsible for what happens if we let crazy Russian hackers into the office +Apparently, Mark of "Mark Reads Twilight" also did "Mark Reads Harry Potter". I think my next few hours are booked. +@m1sp “What does he do, does he have some sort of cabinet of bottled souls? Do they spoil?” +@m1sp aside from that, it was interesting, she had gone into hiding, and seemed to have decided to learn Latin while hiding +@m1sp I'd be pretty happy with being Ginny... +@m1sp I don't even like Ron +@m1sp today on transgendered dreaming experiences: I had a dream about pursuing Hermione's love and I was Ron wat +@m1sp oh you. +The Necronomicon is written in… https://t.co/RP7yGP4ijz +@m1sp what… are you watching +@JackLScanlan I tried mentioning it to my grandmother and she looked at me like I made zero sense trying to compare it to abortion +RT @GooglePoetics: How can I change my IP address How can I change my name How can I change my Gmail password How can I change my life - ht… +RT @SimonLR: What. The. Fuck. is wrong with developers? http://t.co/3eo8MTEeZw +RT @oh_rodr: #SQLErr http://t.co/jxF6kxkX5i +RT @Myriachan: LOL... #DuckTales Remastered has the Visual Studio .pch compiler output in the public Steam release. Waste of 11 megs of dow… +@jbrechtel http://t.co/73LsBY5Mee +Dear Apple Goddess please make it against store rules for apps to have modal popups advertising other apps or deals +@iirelu also, the Computers Are Hard problem has resulted in people who know, okay, type into this bar to search and DON'T CHANGE ANYTHING +@iirelu I'm just saying, google sits on a huge chunk of the very content it searches +RT @ra6bit: I once told @0xabad1dea I'd been paid to write an EMR in JScript. Her reaction of genuine disgust still makes me laugh when I t… +@iirelu duckduckgo doesn't run the world's biggest video distribution site or the world's biggest email site or... +When Google stops, the internet stops. https://t.co/87Uqf6qJq1 Except in China I assume. +@Niki7a but but Hello Kitty +@dastardlylemon @vogon tonight we dine on ground pepper and sugar cubes it is a local delicacy +@Tomi_Tapio okay… now imagine that someone just walks up to your house and puts you under such an NDA without your consent :/ +@tqbf @ErrataRob I think the real problem is a pathological hatred of REWRITING existing unstructured queries, which are vast and terrible +RT @tqbf: If you pathologically hate SQL param queries, I’d like to talk to you to find out more about what makes you tick. +@nelhage @Myriachan sorry @DefuseSec wins :p +@bascule @qmx that’s kind of its specific purpose in life. “It’s perl, but reimplemented by someone who doesn’t understand perl” +@nelhage @Myriachan I suspect it would involve “use less registers” and hence have a measurable performance impact +RT @Myriachan: I'm curious... how feasible would it be to modify a compiler and linker to resist generating code sequences that would be us… +@Myriachan wait… they had a variable that controls signing, a mechanism to prevent patching, and failed to apply the intersection thereof? +RT @Myriachan: @0xabad1dea And I just found an awesome way to use such an exploit to break into kernel mode, too. Now I have to wait for an… +Unsigned code on RT, aw darn, it’s patched http://t.co/jmn6g75mRx +I took a nap and google went down? The frequency of such correlations is beginning to convince me I am the goddess of the internet +@bascule it appears to be dated 2008, so… +@Tomi_Tapio not any NDA I’ve ever seen — as most of them are simple prerequisites to publicly visible processes like buying stuff +@DrPizza King Hitlear +@HanakoGames um… are you still playing the nice boat game? I’m pretty sure it’s intentional… +@homakov you haven’t seen America yet, only New York… +RT @mikko: Next time, I surely won't vote General Keith Alexander for NSA's Director. +We only even know about national security letters because of people brave enough to fight the most totalitarian court order imaginable +@M0zilla you’re not supposed to acknowledge you have one! We only know it’s an NSL because others have disclosed their existence +RT @pusscat: @0xcharlie thats cool - its probably easier to pop mobile safari than write an objective C app anyhow... +It looks like the gov is going to argue that saying there’s something you can’t say violates an NSL. #lavabit +RT @runasand: Lavabit's owner threatened with arrest for shutting down rather than spying on customers: http://t.co/4j8HeyqL56 +RT @ChuckBaggett: 8 year old used to place tracker on surrogate dad so US could murder dad. http://t.co/43DhKDQ3fx +@kevinlange now to go back in time and tell my professors THIS is why to upgrade from windows XP +@The1TrueSean well I’ll be madamed +RT @matthew_d_green: 'Dear Author: You don't *have* to assign copyright to us, but if you don't we'll make sure you never publish in a top … +@kevinlange implying RDP does directx now?! +RT @Asher_Wolf: Oh grow the fuck up @bbc. RT @TechoPirate Debating the UK 'porn law' can sully your name http://t.co/4WCLVOEBqY +# 368498405825605632 +RT @garybernhardt: Reminder that in an HTTP transaction, the server tells the client to return its printer carriage and feed a line of pape… +Office art http://t.co/RE3Za07GkP +@geekable I meant a ' should only take half as much space to encode as " because clearly " is really just '' +@geekable um... maybe my joke wasn't as obvious as I thought. +Look, if the double-quote character is one byte, then shouldn't a single-quote be one nibble? +@m1sp well, in this context, being afraid that people who thought you were a Real Person would suddenly disown you though nothing's changed +@tapbot_paul there was a sign on the thing that said the frosty was free if they forget to ask. +@m1sp "scared of coming out of the undead closet" as an analog to LGBT. Discuss! +@cowtowncoder but they have "caramel" which is clearly a vanilla shake with added caramel!!! +@cowtowncoder last week they didn't have strawberry. This week they didn't have VANILLA. +My new conspiracy theory is that Wendy's is trying to drive me insane by giving me different lists of what flavors of milkshakes they have +@mndell @alcyonsecurity @DrWhax hahaha yes my mother pigged out on the fish filets there when she was pregnant with me :D +@mndell @alcyonsecurity @DrWhax lemme think... I think he was there from '86 to '88. The air base he worked at belongs to the Dutch now +@kc1rtap @RSnake just a humble commercial researcher! +@RSnake My job is to study what hackers do and devise new ways to stop them or slow them down. +@DrWhax I can read it pretty well but my sentences always fall apart :) my father was stationed near Utrecht with the American Air Force +@SteveD3 @helpareporter @msjoanieg no no no he should say “The word 🐔 should not be used to end a sentence” +@TweetsofOld oh, never mind :p +@TweetsofOld and whatever is a biggie I wonder ? +@DrWhax weet je dat ik was in Nederland geboren? Maar, mijn Nederlands is vreselijk +@DrWhax because I set my iPad to Dutch for some reason and was too lazy to change it back +@pusscat @halvarflake @rantyben ooh ooh I studied some Greek in school I’m not a barbarian +Oopsie daisy @rsasecurity http://t.co/jD4odlIbHw +@Casiusss it is. I believe the current model of government is fundamentally broken in a word of instant global communication. +I’m 25. By my reckoning I have 50 years to think of better solutions to hard problems than I have so far. Wish me luck. +@Casiusss but that’s the thing: governments never actually trust, they are broken in this respect +@DavidBHeise to lack of sneezes +No, I don’t have a magical pixie dust solution to the mutual spying problem. That doesn’t mean complaining about it is naive, I think. +.@nullwhale I certainly think Egyptians have every right to privacy that I do! But you gotta work Americans right to get them to care ;) +Little details like “yes we accidentally executed a program against Washington DC calls instead of Egypt” are why we need the transparency +@kivikakk I swear to gods you are Asian in my head +Good morning America! Did you know the difference between the Egypt and Washington DC area codes is one digit? And someone in NSA typo’d it? +RT @kris_kaspersky: wincalc is buggy! Win7/x64. go to Scientific mode, type 1/255. Press ENTER or [=]. Press [F-E] button. Crash happens. h… +@JbMokuZ yeah, that was the day random people on the internet accused me of hacking Flash, because their mitigation was buggy :) +RT @LeVostreGC: Thou: subjecte. Thee: objecte. Thy: possessif (:thyne, yf yn front of a vowel). Now thou knowst, and the knowinge ys wel ha… +@savagejen at least that’s not unconstitutional I guess +RT @STLonAir: "I'm not fat and I don't live in my parent's basement." -@0xcharlie #hacking +@vogon you have to get a JavaScript extension to actually filter tags properly, to my understanding … +RT @JackLScanlan: if anime is better than manga then why is manganese an element but not animenese, checkmate Jayden +RT @conor64: Guys, out of ten amendments, the NSA is violating one of two at most. That's, like, a B on civil liberties. +RT @katecrawford: NSA made 2,776 privacy violations in a year: from typos to unauthorised intercepted comms. That's an *internal* audit htt… +Remember when our biggest question about the government was what kind of cool stuff was at Area 51? http://t.co/BjuYLWKgzL +RT @nickm_tor: Man, who *wouldn't* want to use this nifty new "My illegal activities are a vanishing fraction of all my activities, honest!… +@pzmyers @TheTruePooka aw man no one EVER gets MY ethnicity randomly wrong I must be boring +@ELLIOTTCABLE @savagejen aka Adrian Lamo, I’ll let you google and decide for yourself… +@savagejen he should have the sense to be ashamed. OTOH if someone has threatened his safety, that’s wrong… +RT @nickm_tor: (Ask not for whom /dev/random blocks; it blocks for thee.) +@m1sp @mcclure111 the military is the one sure fire way for a 17yo to escape their parents +@ggreenwald @onekade oh my gods. @20committee blocked me like a bazillion years ago but I see he’s still being a bigot +RT @maradydd: Huh. Young or female engineers and CS folk experience major depressive episodes more often than older or male ones. http://t.… +RT @OboeCrazy: "If you know bringing the oboe means you get searched then why bring it?" Life advice from airport security. +@m1sp you should check, Bars loses his cool again ! +word count: 87,434 #novelquest +"I found nothing weird whatsoever about a priest raining me with expensive gifts," says archbishop http://t.co/KxfeAy78ZK +@vinski_ combination of slapping on cross-platform glue and the secondary platforms being less of a priority +@vinski_ it is an extremely common pattern for multi-platform programs to only be stable and smooth on their platform of birth. +# 368156286254587904 +@KluZz my subconscious wanted to use it as "was made to become placid" +@IveGotMyDoubts I actually did type "placify" and was confused when it got red squiggled +I strongly feel that the intersection of "placid" and "pacify" should be a word #placify +@octothorpe it did not seem to completely destroy it +@eevee how to screw with human cultural conditioning: all those ants are girls! in fact they're all SISTERS! you monster +Also I forgot I was spraying febreze directly behind a fan and now my lips taste like febreze thanks Obama +@MatthewOden actually, watching them, I'm not convinced it does. It probably doesn't bind to it or however febreze works. +Empirically determined: febreze does not kill ants. They will freeze up for a sec like "wtf was that" and slowly start moving one at a time +True fact: I am emotionally incapable of playing Pikmin due to a nightmare I had several years ago about undead pikmin +"real" in quotes because Melissa is an okay name but it doesn't really have the ominous ring of hexadecimal digits you know what I mean +gdi google stop telling me to use my real name on my youtube like I am so stupid that it never occurred to me to wonder if I ought +I can hear it, I can feel it, and I am actually... er... just a little... http://t.co/hLyIlLsUfh +@m1sp Chakori's original concept art http://t.co/Zbqt6uhfKt +How can we know so much and still be discovering new species of mammals like we haven't even opened our eyes yet http://t.co/ohQJEb6jlb +I'm sad every time I get a used book and there's no signature and date inside the cover. I feel like I've been denied a story +I completely forgot I ordered these for the vast fortune of $6 http://t.co/K0zZHLraDd +@blowdart @0xcharlie don't forget to say DOCTOR +User-mode apps should *never* have to manually seed except when reproducible runs is a feature ie certain games and simulations +RT @vogon: @0xabad1dea also they're not actually fixing the RNG to do the right thing -- they're just advising app developers to do the rig… +RT protected: now we wait for 1 billion android devices to get their timely updates +@m1sp you seem to have come by at like 4 am I assure you I was in fact asleep +*・゜゚・*:.。..。.:*・’ sorry about the uninitialized random number generator, bitcoin!’・*:.。. .。.:*・゜゚・* http://t.co/PtG7yl3FfW +RT @goldshtn: Obscure WinDbg Commands, Part 2 - DML, .printf /D, .dml_flow, and .browse http://t.co/qQ10TOG7wa << also a super-obscure hidd… +There were already a bunch of piddly countries I couldn’t go to. But I can’t go to Russia because there are too many cute girls there +@lindseybieda yeah I’m pretty sure someone was embarrassed it took so long and hoped this would serve to excuse them +@itinsecurity @biosshadow they are saying STRAIGHTEN UP OR GO TO JAIL NOT OUR PROBLEM +“We ship on the same platforms as games like Skyrim, but multiple character meshes was just impossible!” http://t.co/nFAitJzm7X +@biosshadow @itinsecurity EXACTLY +@itinsecurity @biosshadow and said “oh well” to the ENTIRE CONCEPT that people like me can go to jail for breathing while gay +@itinsecurity @biosshadow or do you suppose straight people never do anything noticeably straight? +@itinsecurity @biosshadow yeah hang on my friends need a moment to get divorced and remember not to hold hands or kiss like Normal People +@johnnemann @vogon complex custom looks! Because you need gigabytes of ram to have two different player characters :D +@itinsecurity @biosshadow there is no moral high ground to be found in keeping the peace and having the show there anyway +@itinsecurity @biosshadow the short version is: “gay? Pretend to be straight.” Try: “black? Pretend to be white” +@johnnemann @vogon I feel like I may have missed someone saying something amazingly, spectacularly dumb +@itinsecurity @biosshadow being a candidate for being arrested for freakin’ breathing is not me picking a fight +@pusscat @IAmTheMenace don’t be hasty, it could just as well be she! +RT @apiary: Sure random person on the phone with an excellent phone voice, I will just give you admin privileges on this random account, no… +RT @bSr43: After struggling with Windows version during a whole week, I’m pleased to announce the availability of Hopper 2.8.1! http://t.co… +“Holy cheese people had to give up Olympic dreams because they were gay? In 2014?” say fourth graders in fifty years +Olympic committee defines being gay as political, so it’s not their problem gay people will be arrested in Russia http://t.co/kjUJfu1lBA +@vogon it’s p obvious so prob convergent evolution +@dwrkoa @trap0xf she’s wrong. +@Dirk_Gently you seem to be speaking in past tense for some reason... +@stillchip I like to give apple engineers a little something to look forward to +I always feel really sorry for programs that segfault in their user-invoked exit routine You were so close, little buddy! Next time!!! +On that note http://t.co/QG0I7W6s0j +How did people give birthday presents before steam +@nelhage “why didn’t Instance come in to work today?” “He… got an *early retirement package*.” +@natashenka well, it’d minimize average distance to arbitrary other points on the board, wouldn’t it ? +RT @chriseng: Motion for @tqbf and @dakami to settle their PRNG disagreement via slapfight. +@vogon why would +@HersonHN why are we listening to the security advice of a girl who names her computers Vulpix and Flareon?! +… I actually met @natashenka at Defcon but my social protocol stack had a BSOD, I am not good at human +I had a dream I went to a convention where there were boy’s dorms and girl’s dorms and me and @natashenka had the place to ourselves … +@xa329 but re: MIT thing: it's academic, which often just means a fancy unicode proof of what was already believed +@xa329 the compression-related problems we've had in recent years were 100% expert designed, tested, and approved +Photographic evidence of the echo chamber in action http://t.co/0sInymfaZz +@xa329 but if we've learned anything recently it's to slow down and re-evaluate our use of compression in cryptosystems +@xa329 ah sorry, twitter wasn't loading the metadata that it was a reply +@IAmTheMenace good use of gun-centric language +.@IAmTheMenace this troll would be about 3000% more effective if you replied to something I said about security and not about a cartoon +@xa329 I mean... those are quotes, where is it from, and what are you asking about +Part of the punishment is that I have to watch it dubbed, not subbed #cruelandunusual +@xa329 can I have a little context there? +.@codeferret_ is making me watch a gender normative cartoon as punishment for not taking out the trash +@rantyben but but manifest destiny :( +# 367794628663058432 +@m1sp @WhiteMageSlave http://t.co/TFK44z7mjG I link for no reason while writing a scene with Ziazan +I don't understand why the world is full of nations destroying themselves #egypt +@m1sp I think a nascent dialect withered when smart phones with autocorrect became affordable +Hey kids! Do your parents complain about newfangled txt spk? http://t.co/FJQB1ZXRlV +@hattmammerly I'll just pretend I know what's going on +@0x17h maybe if @th3v0t4ry wasn’t acting like someone far too young and bratty to hold a gun, we could have a productive conversation +@0x17h the best part is that my dad is a veteran and I wouldn’t be surprised if he would get in a bar fight with this guy… +@0x17h and only men are soldiers! I guess I must have imagined all those veterans I met who were mothers. +@th3v0t4ry aaaaaand blocked, thanks @0x17h so glad to see our military is in good, reasonable hands +RT @chriseng: #Veracode Hackathon is over. Some people waste no time reverse engineering their prizes. http://t.co/llpsoQ8XZn +@th3v0t4ry @0x17h @_stux_ good use of gendered vocabulary to associate courage with maleness I’ll be over here in the corner +My poor sweetie is Mr. Abadidea’s Husband to the industry. His name is @codeferret_ ;) @thorsheim +RT @thorsheim: (husband of) - @0xabad1dea, @marshray & @dropdeadfu at #passwords13 Penthouse. Picture by @marco_preuss (thx!) :-) http://t.… +RT @elwoz: Why can't I give you $X a year for no spam, @Twitter? +I also find it remarkable how many seconds it took for my brain to realize that what I thought was boxed apple juice was really cranberry +The result is that when I kick off the compile on the server, my brain expects my laptop to get hot and run out of battery really fast +@froztbyte I see a CPU-intensive process spinning away; I see a battery meter; my brain connects them as one will drain the other +I am unable to mentally disassociate the battery life of the machine in my hands from that of the server I am remotely logged into. +@codeferret_ you're supposed to put it in QUOTES you're so bad at twitter T_T +@mbhbox there is no java on this machine. There is a black void that devours starlight where java once thought itself to be. +Autocorrect makes an excellent suggestion: memory allocators -> memory alligators +@elad3 what's to file? Oh look pages with tons of JavaScript are still Satan on memory allocators +@Yurienu normal Chrome actively +inb4 browser wars: I 100% want Firefox to exist and thrive to bring balance to the Force. I just also want it to not lag my machine +"why don't you use firefox" because this is me trying to close a single tab http://t.co/JeKAiVqz1P +@mbhbox WHO KNOWS? +Oh, of course. GMail decided the sensible thing to do about expiring my session is to leave everything open and just return timeout errors +@vinski_ forgive me if I don't trust the screen blinking and emitting an audible beeping sound that it is not charging +@stillchip there's no way every Windows laptop I have access to has cheap, bad, low rated USB ports. +iPad 4: $500 MacBook Air to charge it with because it will refuse to charge off any other USB port: $1000 +RT @kaepora: Paris: Beautiful city, not-so-beautiful Internet regulations: http://t.co/BdE1qZvZGF +It was entirely too many clicks to convince Windows 8 that I wanted to apply pending updates NOW and not as a surprise in the near future +@shellbryson https://t.co/QHqFwE52An this is what cool kids used instead of sourceforge +RT @savagejen: To all my Mom friends: if you have a nanny cam or baby monitor you would like me to test, let me know. +Wait… doesn’t google have… their own github competitor? https://t.co/cuh6QTDIBJ +.@z0rlac it’s not literally the same problem fortunately ;) Also it’s apparently unreliable +Ping of Death 2: IPv6 Boogaloo https://t.co/qfOqSxd1Oe +@m1sp mew. Google drive is being funny for me I don’t know if it’s showing latest updates +Come for the Dropbox 2FA bypass, forget about it and stay for the python monkey patching https://t.co/01oZneI528 +@JackLScanlan GDI Jack you’re like 21 or something and the first 20 years are just the boot sequence +Not trolling cryptographers this time http://t.co/pUfntGYAXL +I want to be like @attritionorg when I grow up http://t.co/EmLe40r9RG +RT @halvarflake: Lavabit founder presumably on NSL: "there’s information that I can’t even share with my lawyer" - talk about a level playi… +RT @mniemietz: Best XSS fix ever by Linksys (4.30.16, Cisco): they fixed a known stored XSS vulnerability by blacklisting "alert". +.@AdvancedThreat @matthew_d_green by “most computers” I meant “phones” +RT @matthew_d_green: @0xabad1dea The attacker will jump and down to force your gyroscope into a known state, then he'll attack your keys. +But you have to admit: “Generating key… dance around with your phone for a bit” would be fun +@skattyadz there’s a relatively small number of unique states (and you could only use for seeding as they change too slowly) +I have already succeeded in getting someone to send me a flood of private messages to the effect of: no +@technololigy phones is what I mean by most computers ;) +Hmm, it seems most computers have a gyroscope and compass in them these days. Can we use that for entropy? (Just provoking cryptographers) +@thorsheim @marshray @dropdeadfu yep +@thegrugq @jonelf dust your stuff in flour! You’ll find out one way or the other… +RT @thegrugq: Pics from my hotel safe in Vegas, after: http://t.co/MglekMkizb +RT @thegrugq: Pics from my hotel safe in Vegas, before: http://t.co/bHCVlUX4c0 +RT @ioerror: It sure is rich to read the US Secret Service valuation of different seized items from @aaronsw - "Masters thesis ... " ... "n… +@dakami gee why do I have so many new tweets from the past several hours Oh +@ra6bit if it doesn’t do anything x86 dependent… +@m1sp now with a scene where Littlenar realizes she will never get a letter to Hogwarts +@m1sp @WhiteMageSlave word count: 84,496 +@m1sp If social currency was convertible to dollars I'd be... well, what's the exchange rate on follows? +@m1sp now for an unfortunate accident to befall whichever boy I don't like so the other one is free! +@m1sp I was just thinking: my setting lends itself rather well to OC Mary Sue fan fiction, doesn't it... +@trackzero \o/ +@m1sp @WhiteMageSlave this answer redacted for reasons of national security +@WhiteMageSlave @m1sp yes, P3. So I think my entire multi-universe of characters can eventually be condensed down to Everquest +@m1sp currently extremely sad that I cannot find ANY of the other word docs I remember writing around that age +@m1sp what's especially cute is that I remember replying to her that I would always remember my first fan mail. +@m1sp this one appears to star my cute little robot and @WhiteMageSlave's big one +@m1sp I may or may not have the actual text of this short story +@m1sp true story I just remembered: I got my first fan mail for a short story set in the Phantasy Star Online game when I was maybe 14 +@Kufat yes, they don't even pretend it's otherwise. +It's true, I wrote like, a fifty page long fanfic about my half-elf rogue from Everquest in 8th grade, and made my teacher read it +I hope I'm a successful novelist so that when people say "how did you get started" I can look them in the eye and say "Everquest fanfic" +# 367408640283914240 +RT @Myriachan: It must be from @0xabad1dea's bad influence that I bought a Hatsune Miku case for my iPhone. The corruption is spreading...b… +@WhiteMageSlave I don't think hindsight counts as a superpower :D +Wow! It looks just like a quill pen! -- -- yep I'm an idiot http://t.co/A3RyHRy8dM +@DanlAMayer and if you don't see something where you'd guess it would be, check at half that and twice that. +@DanlAMayer largely guess work and scanning. The screen I demoed was at (800 width) * (480 height) * (24 bits per pixel) * (approx 70 FPS) +@cyclerunner to the watchers? not at all. That's only relevant to marketers. +@rantyben nah I am definitely a genius But only at things that don't involve hand-eye coordination +IN MY DEFENSE it’s a little one-piece pop up tent with some sort of pulley mechanism and it folds funny +Me, programming: "I'm a GENIUS" Me, folding a tent: "I... I'm an idiot" +@mattblaze wait, so, what happens if you refuse? +If anyone knows of any bad 0day in Nintendo 3DS that could get RCE in my animal crossings, please warn me now +@kaepora I don’t know! It’s at home at the moment, sorry, remind me when it’s evening-tide stateside +@mattblaze my dad’s a paranoid fed and he only worries about *cargo* trains (where you can stash literally tons of Bad Stuff) +.@solak here’s the thing: it DID search for “covert”, it just considers “convert” to be equivalent! +RT @mattblaze: Conductor on my @amtrak train is doing 100% ID check of all passengers. First time I've seen that. Because terrorism or some… +Gosh dang it google I am actually trying to google “covert” not “convert” I swear on @thegrugq +@raudelmil the idea is relevant to my job, and we’re one of very few groups doing it commercially. +I googled to see if anyone else had an idea I just had and most of the results on the first page are my own coworkers +@declanm @hellNbak_ I can’t tell if this site is a parody, or they don’t know Internet Chronicle is a parody +@m1sp in America it is a checkbox when you renew your ID card. It goes on the card +RT @runasand: NSA liar James Clapper to head Obama's “independent” review over NSA surveillance: https://t.co/kcCt8Azesc +RT @SecurityHumor: Before you profile or attribute a threat actor, walk a mile in their IOCs. +(Think of it this way: if I watch a ten-hour YouTube video, there’s only one relevant bit: me hitting the URL) +Remember: some small fraction of a percent of all internet traffic is, in fact, all the important bits. http://t.co/pjTVkmvBc3 +RT @rantyben: Being a "Legendary Cryptographer" should be subjected to 5 yearly re-testing. #snakeoil #fuckups #mediawhoring +@JackLScanlan @marchofclouds you’re Australian. I am pretty sure you are seven feet tall. +RT @frogworth: We literally killed it. RT @magnus72 We did it guys! We killed English! http://t.co/Hlik89rcMT +Just got to demo an Occulus Rift with a roller coaster sim. The falls and loops are actually very convincing. (Sharp turns are not.) +I have extreme difficulty waking up in rainy sorts of weather. I think I deserve a doctor’s note excusing me from morning meetings +@m1sp he hasn’t beenTHAT kind of busy! +RT @benwizner: If the NSA were defending #StopAndFrisk, they'd say it's not a stop or a frisk unless we find contraband and arrest you. +RT @m1sp: TIL a >> is called a guillemet and Gmail accepts a search keyword of "has:orange-guillemet" +@m1sp I HAVE HAD THIS LINE PLANNED FOR LITERALLY YEARS http://t.co/9tVKXLh7mD +@m1sp yeah, but this is CANON, and that's hot. +@8BitAce you can probably get some cool ideas from http://t.co/bTvYH3cp3P +@eichin yeah, it was returning textual strings and each sample I saw was correct. However it's very sensitive to lighting. +@phyre5 of course then I went and started my own world setting where the epistemology of the divine is ambiguous so people can fight over it +@phyre5 where he freakin' physically incarnates to give Nerevarine a pat on the back just like the others +@phyre5 I got extremely angry because I was metagaming with my knowledge gleaned from playing Morrowind :p +@phyre5 here is your cookie for acknowledging the divinity of Tiber Septim +@m1sp except in this case Ismyrn would be Harry as a lesbian +@m1sp zomg Barsamin's inner monologue I am writing could be right out of HP, self-berating for getting caught up in the Saving People Thing +@vogon and increase the consumer price of the platform by ~$100 as I understand it +Don't think I don't know which of you are Microsoft employees! Your opinions on Kinect suffer a -5 modifier to persuasion ;) +@vogon er'ryone I know was complaining about the kinect before the NSA was dragged into the spotlight recently. It's gimmicky. +@locks uhh what? It's pretty undeniable that Nintendo's target age group is a younger average than xbox's. +@HaydnJohnson I do have one. And no doubt we will have a PS4 *and* an xbone because Pokemon Syndrome +I understand what I said is not literally true for 100% of people older than 12, but it *really* isn't xbox's core market. It's Nintendo's. +XBone removes kinect requirement. "Turns out no-one older than 12 really finds that fun, and that's not our market," said Captain Obvious. +@m1sp btw I rewrote the last bit of Solornel's exposition to Houri. Is better, I think. +# 367054564551176192 +@ameaijou @boredzo @NSHipster IMO time() should only be used for gaming. And not the kind where money changes hands :) +RT @codeferret_: @0xabad1dea apparently kickstarting "Wife Public Embarrassment Kits" is not allowed T_T +@m1sp that's different ! That was for my own good. THIS is for public safety +Appending to the list of things my husband isn't allowed to have: a kickstarter +We apparently have an internal music video montage now. I think the best band name was "Framework of Pain" (because that's all of them) +It's not a good meeting until the intern is dropping 0days in someone else's website on stage Yes she reported it. Oh well +@AdvancedThreat I didn't. The emails are github notifications. +@grp he put an apology on his repo's readme +@AdvancedThreat lol I was just really confused +Someone accidentally sent me a zillion mails trying something cute with the twitter archive on my github. Lol thanks. +@biosshadow all I know is that the URL I've been using for weeks suddenly shows an old copy of the document and its current URL lacks perms +I'm so glad Google Docs decided to generate a new URL for my shared document when I updated it. #UIRage +@sakjur what "green stuff"? I mean they gave him an entire second burger. With no vegetables. +@demize95 he doesn't need encouragement ! +Today on Only My Husband: the burger stand giving him more cheesy, meaty food for free because he's so loyal. +@vogon yeah, it mostly just relies on good lighting, because the screen is not backlit +Another hackathon project: OCR’ing RSA tokens from a webcam. Don’t leave them lying on the desk. +“Dammit! As soon as I showed my demo to @0xabad1dea, it stopped working.” +@jb33z that’s about me. I check once every few hours, because I am not customer facing. +@spacerog unfortunately, most apps seem to just give themselves all permissions, some even notate they won’t “really” use it +Not shown: there are colored "pellets" in the tube and when the snake hits them it "eats" them and becomes that color. +One of our hackathon projects: glowing tube snake controlled by dials. http://t.co/cBye21Uk7W +@pa28 I am pretty sure I would indeed look silly with a beard. +@jlwfnord especially when you're someone who doesn't have email popups enabled and just check every hour or two +Things I don't like: email with instructions that says "this MUST be done by noon" sent at 10:30 +I just found out my baby brother is growing a beard. My baby brother and I were able to swap ID cards when we were younger. He looks silly. +@m1sp please to be refreshing the PDF. Multiple betrayals! +TIL bosses have "dad voice" too: "Monty, wanna help me with this?" "no" "*clears voice* Montana, come help me with this" +RT @arstechnica: Scientists create “impossible material”—dubbed Upsalite—by accident http://t.co/LBXJWtgySz +A little girl told me about her comic strip: it stars a gray cat made of a poptart. No wait, it’s different, you see, it has poptart lasers +Today on Only My Husband: being sincerely confused why I’m waking him up on a Monday morning, and deciding it must not be important +@abby_ebooks >.> +RT @stetime: thanks @virginmedia for protecting me from dangerous radical website / slow search engine duckduckgo http://t.co/xuSll7HKzG +@jpgoldberg just for you http://t.co/Yy42g3VXhj +Word count: 80,951 #novelquest +# 366705408343162880 +WTF tumblr: somebody replied to my post. I liked the reply. It seems they deleted it. And now it says I liked my own post like some perv? +Today's wiki walking brought me to this bizarre little side story: http://t.co/DgPSt91Dum +@m1sp @WhiteMageSlave “I don’t want to be carried by a woman,” the boy protested. “Then you should not have been shot by a woman.” +@MennaEssa it's a vaguely steampunkish story set on a fantasy version of the Silk Road. Politics, magic, monsters, and teenagers. +I've gone to a cafe to do a writing push to finish up my novel. Gotta make up for time stolen from me by Defcon :p +@m1sp @WhiteMageSlave “Let me get my bear-killing equipment,” Oseni said, “but I must warn you, it’s only been tested on tigers.” +@m1sp but but but blonde is a recessive trait, Mispy!! +@m1sp however, the boy in my dream was clearly Occidental — wavy blonde hair and a striped shirt — so dream me is not on the up and up +@m1sp oh well I am pretty sure they’d be totally down as long as they’re further apart than first cousins +RT @auerfeld: The miserable tragedy of web #filtering: Hamlet is banned in the British Library, for violent content. http://t.co/LNTW6rhFD3… +@m1sp apparently I am Law’s Issue, because I had a dream where I met a cute boy and double-cheeked that he wasn’t. +@amazingant I share because I think she deserves to be remembered - as an individual, and as a face of violence against children. +@Packetknife in the meantime please enjoy this music written to go with the story https://t.co/zAQRjXcg0p +@treyka @Packetknife I fancy I am doing well on that front as well. +@Packetknife I am working on it Right This Second. Had to put it aside during Defcon stuff. Word count: 74,851 +@m1sp @WhiteMageSlave #StrongFemaleCharacters http://t.co/i2VUHs6IgY +@Bagelturf almost certainly. Thanks! +Two people in one minute told me that the problem is the update silently does not apply if you are using OSX's built in encryption. GREAT +@WretchedWinston by fail silently you mean fail to apply in the first place, not catastrophically fail and break my drive, right? +@m1sp I am Writing!!! The guard that Evren savaged was a woman. She's not quite dead. +@The1TrueSean I blocked them +Reasons I am crying tonight: I remembered that the voice actress of Ducky from Land Before Time was murdered at age ten +Jeremy Soule's (of Morrowind/Oblivion/Skyrim fame) first video game sound track was Secret of Evermore http://t.co/E7xruZjDMK +@jeremiahfelt nope +I'm pretty sure my Air is asking me to reinstall the same firmware update for the sixth time. That or Apple REALLY likes firmware patches +Maybe I need a #notlookingforaliteralanswer disclaimer tag +@therulerofchina #whoosh +Recursive philosophy: what is the "it" in "it's best not to think about these things"? +@sciencecomic I’m not sure which I should find remarkable: the pizza on the roof, or the windshield held on with blue duct tape +@vogon so close to looking intense and dramatic… and so far +RT @abiodork: Damned if you do, damned if you don't. http://t.co/luKqGk1YfI Speaking out or staying silent about sexual harassment. Either … +RT @TweetsofOld: What a fine world this would be if all of us were as broadminded as we pretend to be. UT1922 +RT @centerofmath: "Friend bought a french baguette only to witness this MATHEMATICAL HORROR" (http://t.co/GJ6efXdm8d) http://t.co/aBeEFg68hK +@MechMK1 I have what I call Hermione hair +# 366336918377607168 +I have some sort of rapport with toddlers. They always just walk up and start pulling on my hair +@MechMK1 (oh, also, most pre-made stuff like this is simply not cut to fit me, I am tall and husky) +@MechMK1 sure, but I'm in trouble if I come home with $500 of new dresses :p +@MechMK1 I wanted this dress and I got it ;) it's just *I'm* not satisfied with how I look in most dresses. +@MechMK1 oh I like the look, I just don't have the figure for it +@MechMK1 I bought this on impulse recently +@MarioVilas I already left the religion after being raised very deeply in it. +.@sakjur I'm pretty sure she meant petticoats and pantaloons +@MarioVilas it is. +A little girl made me stand up and show her how the skirt works. She then confessed she just wanted to see if I had princess underwear on +Dress > hula hoop http://t.co/VTfambrfid +OH "I was born in 2006" augh +Off to do the princess thing at @MarkKriegsman's house +@Kim_Bruning @ELLIOTTCABLE mijn ouders zijn amerikaners, er, English now, they were stationed with our Air Force +"Please run instructions.pdf to install your software" Wait do you mean there's a link to the real installer in it or -- +Let's add the assumption that permanently destroying the relationship with this person is out of bounds of acceptable solutions +What is the polite way to deal with someone who keeps sending you "hint hint" links to stories about people who converted to their religion +@blazingcrimson but my point was it was a tautological complaint, one I found bizarre that someone took the time to make of random freeware +@ELLIOTTCABLE wuh? +@blazingcrimson this is true of all languages, you just have to implement it... I'm pretty sure Ruby has some of those +@ELLIOTTCABLE ik was in Nederland geboren. Maar, mijn Nederlands is vreselijk. Ik las kinderboeken +(Or it can be “opslaan”. I’ve decided that Dutch is at least as synonym-happy as English, if not more.) +@hacktress09 hail season in North America is March through October. +RT @mark_e_evans: Cool pic: Undersea cables are all sheathing. The internet flows on a 3 strands of FiberOptics http://t.co/NoHWrUpLPP http… +The Dutch UI text for saving a file is “bewaar”. I feel like it’s reminding me to double check every time I go to download something +RT @obs3sd: @CipherLaw I was asked & refused to provide a backdoor to BitLocker back in 2005 +@jb33z being excessively literal in a way not compatible with actual human communication :) +@jb33z you know what you’re doing… +Also it seems everyone forgets size is metadata. For fully arbitrary messages, you still have a rough size after encryption. +RT @JamilSmith: Why @MotherJones is joining @Slate and other publications in banning the word "@Redskins" from its publication: http://t.co… +The time a message was observed being transmitted is metadata. The IP it came from is metadata. You cannot remove these from your protocol +A new class of programmer security mistake: only counting the textual metadata they explicitly put in headers as “the metadata.” +@jennifurret I woke up at 11:58 today. Still counts! +@radarpixie lots of professional programmers don’t have degrees. If you have a knack for it you can get to professional level with time +@radarpixie there is only one “real world” language I am fundamentally opposed to, and that is php :p +@radarpixie … yes? +“It does not work well on systems without ruby” complained the redditor, of a program explicitly written in ruby. +@DaKnObCS it is +@DaKnObCS I have such a monitor actually. But the touch runs over USB +RT @savagejen: "Eeee! What have you done to my sister bun-bun?" ..."you will be assimilated" http://t.co/OkvWbJF43r +@LambDaTom it happened to both of us +@thegrugq rong* +I'm convinced these live DOTA matches that DH is watching are crashing our router +Right click isn't working in dosbox. I can't kill the rat. The tutorial was unprepared for my failure. #daggerfall +I'm impressed. The Emperor in the opening CG of Daggerfall looks and sounds like the one in Oblivion. Or the other way around, I suppose. +@chavezery also, re: Firefox: I use OSX on two different machines. So, no. +@chavezery Flash ships binaries to Chrome. I lack sufficient data to know if it's in all recent builds. +@M0zilla @metrotwitapp no, I mean the official one +Time to add "silently fails if connection is down" to the list of ways Twitter for Windows 8 is not a real client +@chavezery as opposed to...? Noting that the problem is *Flash* +I'm really enjoying how Flash for Chrome, across multiple machines, decided it's time to start skipping music randomly +@LambDaTom I saw the rolled-up mattress in your room and sat down on it to see if it was comfy. My eyes started watering immediately +@AlanSwithenbank actually this tablet has worked perfectly with HDMI so far.... +My first world problems: I want to squish this bug, but everything within reach is an electronic device. I'll use this disassembled netbook +@amanicdroid I do all my actual typing on a laptop. When I bust out the USB keyboard, it's to play a game on something... +I think 12yo me would be quite pleased with my computers. And note that I seem to still have the same freebie keyboard and mouse. +At some point a standard USB keyboard became more cumbersome to carry than my actual entire high-end computer +@LambDaTom what detergent do you use? I’m apparently allergic to it +@_larry0 name and shame, especially for the gendered insult language +“Email hates the living” http://t.co/kaL32b7QqF I laughed, I cried, I wept openly +@focalintent something in the set [Chrome’s HTML5 audio, Soundcloud’s support thereof] broke recently. Flash or iPhone should work… +@ErrataRob @Packetknife @krypt3ia you’re typing ? +Much like with real weapons, I would not recommend using “active defense” against a real target for “fun.” +“Fun with active defense” — what’s that Lassie? Timmy fell into a ditch he dug after shooting himself in the foot? http://t.co/n3QmFAa1iX +I had a dream that I dropped my large Windows tablet, and inside was another smaller tablet, with HDMI out to the screen I had just broken. +# 365984392306368513 +Dear internet, I wrote you a song https://t.co/zAQRjXcg0p +@jozacks @anildash iPad, iOS6, tested in Tweetbot and in Chrome +@anildash that is a much better answer than "because screw you" I guess ;) +@anildash why does your blog resist pinching to resize and force me to scroll back and forth horizontally for every line? +Doubtlessly accurate future history. http://t.co/2NcRoAlQkB +RT @thegrugq: NSA firing 90% of SysAdmins can mean only one thing: DevOps … http://t.co/WogAlD7EhD +@MechMK1 @nrr IE6 is dead in the free world but not in China. IE 7/8 is not dead. Deliver us, almighty gods. +RT @xor: Obama: "Core Al Qaeda" is on the run, but we're still in danger. Orwell: "The war is not meant to be won, it is meant to be conti… +RT @nrr: http://t.co/N6FffekQTn http://t.co/uHuy3mvpCK +@alethenorio @TheDukeZip a document which CONTAINS its hash as visible text IN the document. This amounts to breaking the algo. +@alethenorio go ahead and try it then, some agencies will be very interested if you can solve this trivially ;) +@WillSecurity it's soup. +My subconscious just screamed at me not to get up from my desk without pressing control-alt-delete on my soup to lock it +@asiekierka fwoosh! https://t.co/Ca4AnAvnlG it's a mix of chiptune and orchestra (fake orchestra, of course) +@yacCz I'm not going to bother trying to calculate how many zillions of zeroes there are, but it can be derived from http://t.co/UaI5fqUSyA +@myfreeweb @Kufat yeah, like, a few billion :p +@yacCz it would be an absurdly massive computational effort, but hashes are decidedly more finite than possible documents. +@yacCz and if the VISIBLE garbage data is longer than the actual document, that doesn’t seem very entertaining ;) +@yacCz yes but my point was that you would end up with many kilobytes or even megabytes of random garbage padding for what I am asking +@collettiquette do you mean programming or linguistics? C and Dutch… +@yacCz but note, converting something that has its hash *appended* does not count, only the whole file counts +@yacCz sure, you can use a text file, except then you can’t hide your arbitrary padding and it’s ugly +@DrPizza not if they’re using internal mixers of some sort. I don’t know what Lavabit’s architecture was, though. +@billpollock the fundamental problem is that unlike anything else in comp sci, one takes lives into their hands with this subject +@DrPizza no, but they can demand all the other related data. Or maybe they think they can crack it… +RT @billpollock: We really need to publish a practical book about privacy and anonymity. +@sciencecomic the confederate flag thing is weird around there. There are different reasons people fly it and you can’t always tell… +@Kufat we *have* generated MD5 collisions; one could adapt the algo to padding a PDF, and go get some fresh coffee, and some more… +@sciencecomic do you remember which county? Shenandoah’s is the best one I saw.m +.@Kufat it could happen if you have enough computing power laying around and nothing better to do with it than amuse me :p +Trick I want to see: a document in a conventional format (such as PDF) which mentions its own MD5 or SHA1 hash in the text and is right +@focalintent (noting that I will count almost anything as an art - programming, fixing cars, whatever) +@focalintent kind of my first question about a person is “but what is your art?” I have met people with no answer and it confounds me +@focalintent there remain many people confused that I didn’t pursue an English degree. As if that would have improved me :p +@Tomi_Tapio nope. Gods know I couldn’t keep my voice pitch steady enough unless I was singing along to a recording… +RT @thezeist: Kartlytics: Applying Big Data Analytics to Mario Kart http://t.co/tOBNBrxUny +I guess I’ve been programming for 11 years, interested in infosec for 8, and composing music for all of 3. The last one needs some work :) +@pborenstein lol I was never particularly healthy to begin with +Sometimes I get frustrated with how little I know then I remember I have approximately 50 years remaining +What a cute idea: writing programs that guess the contents of other programs based only on their input/output http://t.co/UiWK1yu2Ti +When I see stuff like this, I imagine a guy who got drunk and got in an argument with himself on reddit http://t.co/gww8VozCuY +RT @profoundlypaige: http://t.co/a134yPtTZ4 +RT @AdmiralA: This is a first: Linux-only banking trojan tested to work on 15 distributions and 8 desktop environments. http://t.co/e5j6MFX… +RT @MarkKriegsman: Snowing? In August? At @Veracode's #hackathon? (Not shown: dry ice fog mix-in.) https://t.co/cEsFzschdy +In a year and a half, this is the first forensic evidence acquired that our team member in Israel actually exists http://t.co/VlwXoTVXay +@osxreverser you can talk to me… +@travisgoodspeed I never got an ack on this one… http://t.co/rglxyckkvV +@Motoma a world was and then suddenly was not +RT @arstechnica: Building a panopticon: The evolution of the NSA’s XKeyscore http://t.co/0kPsaMUbe8 by @thepacketrat +RT @puellavulnerata: http://t.co/KgxxRhSTVa Gotta love the "crosshairs on your co-workers, they might be an Insider Threat!" imagery: http:… +@m1sp what are you saying about furries?! +RT @Packetknife: I just published “Dear Leakers, Terrorists, and Uncle Abol,” https://t.co/NaaUhCHI2S +But seriously the NSA is burned by a sysadmin and their reaction is to lay a bunch of them off? They have clearly never met a sysadmin +@docsmooth @kvegh Thaaaaank you. I may or may not have spent years terrified a family member would shoot any boy I liked +RT @docsmooth: Hey, guys. The "hope you have a shotgun" joke isn't funny. My girls will be capable and strong and independent. So, STOP it… +RT @oh_rodr: Inlaw1: what can normal people like me do to avoid state surveillance? Me: nothing. +“NSA to cut system administrators by 90%” “NSA closes because senior officials got locked out after three guesses” +@Twirrim do you see why I would maybe want to wear the intestines of people who don’t write my name on things like a necklace +@Twirrim it is fundamentally placing me below my designated man to such an extent that I do not deserve to be called by name +@Twirrim and why the hell does that make it okay? +RT @ibogost: Facebook kept pestering me to take their platform developer survey, so… http://t.co/CpQjGizeSa +In retrospect the URL "Yaoi 911" was probably intended to be a subtle hint +I started reading what I thought was a normal super hero comic and it turned out to be yaoi yay! +@m1sp @WhiteMageSlave so I'm reading a well-drawn comic about a superhero who discovers the yaoi websites of his fangirls +@dancapper Lots o' things are traditions. Like tearing out beating hearts to appease the sun god +@Tactical_Intel I don't consider them advanced enough of a threat +@thegrugq true story I should have a chance to wear it this weekend to something with no luggage involved ~ +At least @codeferret_ has some idea of how hurtful it can be, because at infosec gatherings, he's Mr. Abadidea's Husband. :p +I don't see anything "polite" about sending *me* a letter that only has my husband's name on it. Good way to get negative faction points +@blowdart yeah, so, what's the proper format for introducing your slaves? Does it matter if I bought them or they were born to the family? +Why does MY side of the family send me letters addressed to Mr. and Mrs. Thomas Husbandpants as if I were subsumed by his flesh by the pact +I know what this is a picture of (Peter is going to town on that guy's ear) but it looks like a fabulous dance party http://t.co/xksxdiN6yc +@ndouba I don't have anything to upshift or downshift frequencies - yet - but should probably stop getting strange packages for a while ;) +@m1sp oh gods Bran is a furry #abadideaReadsBookTwo +@m1sp by which I mean: doesn't everyone find it a bit *odd* that a 7yo prince of Baratheon would shout "for Casterly Rock!" +@m1sp finally reading book 2, I'm struck by how brazenly Cersei has instilled her house in her children against the cultural standard +@fuzztester by the same I mean, nothing will break. You'll just have a visually blank name. +@fuzztester as if I have a num pad! but it should be the same. The dollar sign is the terminator because I don't know ask DOS +@fuzztester your seed factor is dollar sign space space space if you hit enter at the name prompt +The seed of zcaravan's Random Number God is based on your name. Choose wisely... +@_larry0 what sprintf? +@0x17h what are you trying to say about me +@m1sp conquering the world one ebooks at a time +RT @MotherJones: The NSA is reading every email sent to and from the United States http://t.co/BmXWN2umlH #ICYMI +RT @solak: There's no such thing as too many #blinkenlights @veracode #hackathon https://t.co/WSagW25Zoy +RT @Niki7a: Anyone from #DEFCON lose a bag at the Vadara Hotel on Monday? Spread the word and have them contact me, I might be able to re-u… +It’s clear Lavabit got an NSL. Time to disclose I have never gotten one! My secret is forgetting to check the mail +RT @i0n1c: So it looks like US gov kills http://t.co/0gIoAAlrCM over #snowden +RT @Myriachan: Oh hai from #WindowsRT 8.1 kernel debugger #JailBreak http://t.co/tC64uBAq33 +RT @Diunoctis: @0xcharlie @thegrugq http://t.co/EK4xVCiv0e +RT @dinodaizovi: Dear Twitterverse, please make this picture of @AmberBaldet and @0xcharlie into a meme: https://t.co/CVNyp2jZAe +@nasko wat? Something MUST have changed that on you… +# 365620323003011072 +@mistydemeo apple clang +I've concluded it's simply desperate to avoid the div instruction at all costs and goes on quite the adventure +@guamwatt I promise I know the difference between the opcodes in my own function and a library I didn't link ;) +@meursalt it is clang +Oddly, the compiled output of the C version of my itoa() is about three times as many opcodes as my asm version - even though I wrote both +@0x17h not as such. There are spiritual siblings. But that does not matter here +My itoa() works :p #asmquest http://t.co/C23F8YKAei +Yes, apparently smuggler is the sort of occupation you put on your tax forms in this game's universe +@iSentriX It's my weekend project. +@vogon nasm +Now with interactive name-writing class-choosing activity! So dynamic! Hey gimme a break I had to roll it all by hand http://t.co/0dy2R0pHF4 +@alethenorio I'm not sure what exactly it is doing. I think OSX is set to require password after 5 seconds. +@alethenorio um, that is kind of the problem. +@zcutlip off-handedly I'd guess the locale data broke an assumption of mutual exclusion somewhere +We're camping! Say hello to @GWakaMurray everyone http://t.co/GAUiDbrezK +This is a contest to see how much of the standard C library I can reimplement in a slightly incompatible way +@bhelyer nasm. dosbox. Close and restart dosbox and remount my folder every time I hose the imaginary machine. +Very glamorous. Top-notch effects http://t.co/xXHGttX3VK +// non-reentrant as heck I believe this counts as adequate documentation of the function's side effects +@mister_borogove I'm not too terribly worried about that :) +@mister_borogove essentially I just implemented a static char buf for this function that happens to live within it :p +@mister_borogove no, it needs buffers right where I put 'em +@chead it is dosbox. And it is definitely taking longer than half a second. +Not making this up. I thought I was going crazy earlier when I found my MacBook unlocked! https://t.co/Jt2ewvgBhe +(I'm guessing it's generating a mouse or keyboard event before the few-second timer for canceling lock kicks in) +Uhh so if you lock a Mac with dosbox open it will unlock about five seconds later thanks dosbox +(or as opposed to my bulk of asm for NES with rom banks, where you also can't do that but for more basic reasons) +It feels so weird now that on DOS I can just put a buffer in the middle of my actual routine and write to it and the OS doesn't care +Amusingly enough behind the screen depicting a forest is a window overlooking an actual forest but that's too analog +@sam82490 what if I told you it's actually a flickr stream +@sam82490 sad?!?! how often do YOU go camping at work +Authentic camping experience http://t.co/TVZQ3AH8e2 +@gu3st namely, the PHP language designers +RT @vogon: @0xabad1dea in about 20 years or so those'll make great bits for a "2000s-era computer programmer" halloween costume, keep them … +I got some... "merit" badges... http://t.co/8H0ArBOjG3 +@m1sp @aeleruil … I’m pretty sure my husband would eat humans if he thought he could get away with it. +I don’t understand why the first word Hayden came up with to describe Snowden supporters was “nihilists.” We care because we don’t…? +RT @norton_tim: Ten stars, Wikipedia whale editor. http://t.co/uTsjsmhHeF +RT @fbz: tltl;dr -- too long to load, didn't read. +@DamnViolas paging @attritionorg +@m1sp I had another dream about you! What is this +Wanted: iOS “cloud storage” app I can share to that will scp the files to a folder on my web server +@SurprisingEdge first chapter under PC architecture +@SurprisingEdge did he fix the part where he says IBM PCs have up to 512 bytes of ram? :p +Wow I just accidentally implemented Dwarf Fortress in like six lines of asm http://t.co/u1CxImLF8X +@codeferret_ because I was in the bathroom +@daviottenheimer yes... and... 512 bytes is a few orders of magnitude below that :p +@daviottenheimer the reference to 8088 on the page is to contrast it to the 286 ie what IBM PCs have +@WhiteMageSlave \o/ +@markoff @ioerror but in any case, maybe we should consider using crypto for mundane purposes a civic duty. +@markoff @ioerror standing out because you use crypto is, in my best guess, better than showing up in a text search in xkeyscore ! +RT @yesterbits: @0xabad1dea 640 bytes ought to be enough for anybody. +Either this is a misprint or DOS was more memory-efficient than I thought http://t.co/6Fw9bPXj75 +@sergeybratus @dildog pretty lucky I know so many old people ! +Implying that yes I own so many random old technical books I had no idea I already had one on the subject I was researching… … … +I wish I had noticed this book on my bookshelf in my living room about two days ago http://t.co/HpclRrO3yL +@marshray no, I’m trying to program DOS, and that’s my cutesy XOR screen test pattern +@dildog I'm trying to learn how to hook the timer so I can feed the speaker music from a table +@dildog you just made the mistake of revealing to me you are a source of information for what I want to do :p +@jinkee no, the colored part is the screen :) I'm apparently drawing it backwards +Well... I discovered exactly how much of the screen renders before the first timer interrupt goes off and gets hosed. http://t.co/JY3sri4nkY +I'm so glad this source code editor decided that I definitely wanted the unicode ellipses and not a literal dot-dot-dot +@thegrugq @asshurtACKFlags @0x1C and then you vanished off the face of the vegas! +The Exciting Adventures of "Looking For Documentation Older Than The Internet" Girl +@thegrugq @asshurtACKFlags @0x1C you didn't talk to me at ALL at the party, so... +@vogon to be fair, this sphere is finite. Not going to be exhausted in the next fifty years, but finite. +@crash8100 yeeeeeup +Maybe the NSA misunderstood “the unexamined life is not worth living” +RT @marshray: http://t.co/IRqSfFBzjd Official treachery: IRS, DEA, and NSA conspire to launder intelligence info and hide evidence from leg… +@travisgoodspeed http://t.co/rglxyckkvV +RT @codeferret_: recursion: when you curse because cursed when you are trying not to curse +@ashedryden @0x17h I’m sure tea partiers were a healthy portion of subscribers! +@tenfootfangs my life has only been getting better +@xkeepah I’m not THAT young :) +Engineers reporting for hackathon duty http://t.co/lQWYla4iL2 +@elppaeht8 I don’t think you understand. This company. LOVES. Programmable LED displays. +OH “I need to go find an extension cord so we can plug in the camp fire” +# 365260420665188352 +RT @zygen: We are literally heading to a scifi dystopia. http://t.co/Zkq4gBJoru anyone who doesn't agree with the current govt will soon be… +RT @dguido: God damn it! Who keeps giving these people my name!? http://t.co/Dl5Ti9bFDL +@tenfootfangs oh gods it’s Satan +@taviso “we’re too busy making money to defend our design decisions” +RT @taviso: I'm not making this up, http://t.co/LqqY6nDSn8 +RT @taviso: Bromium are hilarious, they won't give me a demo copy to evaluate because their security model is too complicated for us to und… +RT @dangoodin001: MT @awpiii: All I did was plug into the CHARGING port in the seat back. http://t.co/7hubWAaykR > mile high juice jacking +The boom box was made from a cooler by @MarkKriegsman to be Burning Man proof and more critically Veracode proof +@glesec it'd be hard to find something it can't play somehow :) +@Kufat we'll be done Monday. +I'm being told the stuffy suits may not enjoy finding an eight-person tent in their meeting room in the morning +@techpractical binaries! +Upgraded the hacking tent http://t.co/GXVSjtMEzc +@clerian some people don't understand the difference between Black Hat and Defcon +Some redditor's impression of me: "Gee willickers scooby" Jinkies! I actually say gee whittakers. +@Rorosaurus whoa it's my reddit birthday ! +@YourMomBot your timing is occasionally excellent +Hey Michael Hayden, former NSA director- your "opposite sex" comment is juvenile and prejudiced. Good job. http://t.co/qls5he8GwJ +I see Twitter for Windows 8 finally got a new update. I should probably put it through some paces before sending that #UIRage hate mail. +@clerian I just changed it so it's if(seed == 0) seed = 0xABAD :) +.@clerian the seed is getting set to 0 if it doesn't fit in a short. (Because I'm porting it to 16-bit.) Apparently it's a dull seed. +This is my Oregon Trail-like game so far! I think I found a bug in my home-rolled random number generator. http://t.co/Hvyk1besNJ +Noooo I can't be coming down with con flu during hackathon stop it body stahp +"Click here to switch to the beta of the new http://t.co/aoeU8lshVg!" "LOL welcome to the front page hope you weren't reading those docs" +@jonoberheide @mtrumpbour @thegrugq @0xcharlie @quine @mdowd @aaronportnoy @no_structure http://t.co/RophkGBQds +@philpem already linked it :p +@N0SSC I was a mere student, but the GBT has that certain special something that your higher resolution can't make up for :p +@eevee I just can't get over how its behavior is fundamentally different from eval() despite being in theory the same thing D: +New PHP Manual Masterpiece: four people voted against deprecating this. http://t.co/MO0f2YUHUA +@philpem I may or may not be writing a new blog post about that RIGHT NOW. +@elwoz I'm too young to know perl. So it doesn't have this eval feature? +(btw I did find it after looking through the file checkin history of the C implementation https://t.co/rLUBqQ2CPC ) +@OrwellUpgraded please see point about checking procedures and policies ^_^; +@botnet_hunter it's "deprecated", but so far that looks like that just means someone put a note in the manual +@OrwellUpgraded yes but that wasn't really what I was talking about, I meant ie "MegaCorp has six a year and JumboCorp has eight!" +I'm on a mission to find the bug report or patch where PHP realized that PREG_REPLACE_EVAL was a terrible idea. No luck so far o_O +@OrwellUpgraded presuuuuuumably vulns get fixed :) +It’s not really possible to get absolute vuln count in large, old products. Compare their processes and policies instead. +Are you comparing vuln counts between two competing products? STOP you are probably doing it wrong http://t.co/b5S42F0ZvT +RT @bSr43: I’m currently refactoring Hopper (for several reasons), and adding Python methods. Please send me all your Python needs! +@_larry0 thirteen years ago I was in middle school +This corporate carpet is now a war zone - many feet will be lost this day http://t.co/cVhR81SoQn +@vogon @grahamvsworld I realize now I actually slightly misread your tweet as “start pronouncing spelled…” instead of “start spelling…” +@thegrugq time to hit the safe house +@vogon … how else can you pronounce cooperate ? +@m1sp @aeleruil @WhiteMageSlave I’m told I’m actually a nightmare hell-student +@mubix … :\ +@m1sp @aeleruil ask @WhiteMageSlave about the teacher who said to the class “kids with divorced parents like @WhiteMageSlave …” +RT @Packetknife: "A modern, fast web-mail client with user-friendly encryption and privacy features. Free and Open Source software." http:/… +@JackLScanlan make a contact of yourself. +RT @rethinkdb: https://t.co/2mvnTYyitp -- some fun notes on implementing date support. Read it and weep. +@Packetknife so far my best baby experience is the one who decided the brown spots on my neck are removable +RT @menendymendez: in new zealand, the centimetres have eleven millimetres. http://t.co/g7Pv015390 +RT @kaepora: PuTTY SSH client for Windows releases new version fixing four security vulnerabilities: http://t.co/MMBVqucztf +@blackswanburst @wimremes hahahahahahaha no. +RT @nickm_tor: Feature request for the next version of RealityMUD: Restrict PvP to PvP zones. +@thegrugq @asshurtACKFlags not sure if insult… +@thegrugq @asshurtACKFlags wow you must think I’m a commie spy then +@m1sp I had a dream I showed up at your house without warning, and you were grumpy and hid under the blankets +RT @simonnix: "I want to print a synthetic chicken burger why the FUCK do I need to replace the synthetic beef cartridge?!" - future person… +@0x17h @ashedryden where’s my commission +Software changelog, 1989: "Negative numbers may be used for tempo on really fast ATs or 386 machines." +Thanks computer that's not creepy at all right after I was there and thinkin' wow these balconies sure are high http://t.co/UT0r0wyMRQ +@CaucusRacer I'm pretty sure this is just someone who thinks less keystrokes == less opcodes +@CaucusRacer of course you don't, they almost certainly didn't actually check. +@kcarmical I'm told it went well.. and I got like two hundred new followers... +@ELLIOTTCABLE its name is Zepto-Caravan! Zepto because it is so small, see +@ELLIOTTCABLE no I really meant not at the moment I am busy with my own project X_x; but @GWakaMurray and @hypermice like mods, so: ping +@ELLIOTTCABLE OCCASIONALLY BUT NOT AT THE MOMENT +However, http://t.co/Eaiydp1iLq did suggest "Inept Chocobo: The Lost Levels" +It is very hard to come up with a generic computer game name that someone else hasn't already come up with. +@billpollock -- because you got me thinking and if I wrote a book it would probably be about the joys of programming the asm way :) +@billpollock I'm still here! I'm actually taking the next few days at work (tis hackathon week) to try to implement a game entirely in asm-- +@zooko I'll need to run it past a few cryptographers... I'm just a lowly appsec type +RT @dylanhorrocks: If a group is 17% female, men see it as 50/50. At 33% female, men think there are more women than men (Geena Davis): htt… +@rantyben @julianor "padding" is a dirty word around here! +# 364886959769923585 +@codeferret_ I'm so glad. +@jpixton in context, they are integers. It would take the world's simplest, dumbest compiler, undergrad sample implementation, to screw up! +@stylewar @puellavulnerata @Bruce_Schneier ….. No tor node should be using a browser. At all. +RT @dangoodin001: Twitter rolls out two-factor authentication that’s simpler, more secure http://t.co/jwPNVoIl9D +@voqo @0x17h “sure, I see you have a kid, but it looks like the child prostitution ring has custody and you don’t pay support to them” +RT @puellavulnerata: .@Bruce_Schneier should really know better than to refer to a browser exploit as affecting "Tor nodes" +@ericlaw @innismir you know, I think everything still doesn’t parse rar. I assume for licensing reasons. +RT @WTFuzz: Thank you IE F12 Developer tools for creating an RWX memory section in my process, I needed that ... +@Packetknife @thedesertgate it’s not “hilarious”. People have a right to CHOOSE how much to share. +@pa28 yep +Found in code: /* v/=radix uses less CPU clocks than v=v/radix does */ If this is ACTUALLY true, slap your compiler silly +For new followers: here is the rainbow tree I was telling you about https://t.co/qpqqa3RMr5 +RT @pushinghoops: white people are rarely asked by the culture around them to identify w nonwhites let alone see them as humans, so: http:/… +@julianor I think it’d be a lot safer and just as reliable to take a byte distribution! +RT @julianor: I haven't seen anyone suggest using emulation to detect x86 code in JavaScript objects. Would be fun to exploit the emulator. +RT @justinschuh: If you're tweeting at me anymore about saved passwords, I think I've responded thoroughly here: https://t.co/3ELSmxhcTu +RT @AmberBaldet: Ugh, Children's Place drags out the "Math is Harrrd" trope (via @consumerist http://t.co/VSsLp1J5zv) http://t.co/t7nxyq8x… +Y'all are giving me some really good examples going back several years. I salute your memory! +@4Dgifts oh this totally counts IMO - because you get bitten by a language feature while using correct algorithms :) +@tef @alex_gaynor perfect! I had a vague memory of this but couldn't put my finger on it +@cybergibbons yeah, that's homerolled, can't help there. I'm thinking like: oh good the RNG is broken and undermining the API +@uppfinnarn that's my aim! +This is motivated by some recent crypto bugs that I think could have been plausibly detected by following a checklist of modes of failure +Crypto nerds, please cite me some real world examples of crypto failure that could have been unit tested (hash returning all zeroes, etc) +@chunter16 @amanicdroid nah it was just mentioned to me in passing. I think maybe by @thorsheim ? +@xkeepah without the paper, I'm guessing it comes down to average finger length. So it'd only work on adults and certainly not 100% :) +.@chunter16 yeah, I assume it comes down to a distribution of physical hand sizes. Allegedly I have "piano hands" +Someone mentioned to me that a study found typing timing differences between men and women and now I want to know if I type like a boy +@pa28 @codeferret_ we have like, the exact same body type and hair type http://t.co/n9Icxxp1yq +Wow looking at pictures of us on stage @codeferret_ and I look startlingly alike from a distance +It looks like Exchange was so offended by my 20,496 unread mails that it locked out my domain account +@McGrewSecurity @beauwoods for me the barrier is when there is an accent thicker than mud, not their fault but I can’t understand a word +RT @AnttiIsokangas: Chart of the day: The most controversial Wikipedia articles in different languages http://t.co/vOUbGSnd9Y +RT @agentdarkapple: From the WTF files: Gag order forbids kids from discussing fracking http://t.co/lh8k88B0nf +@homakov business goes much smoother with that personal connection, as it forms a trust deeper than anonymous paperwork +@ra6bit my first apprehension is how often DNS gets jacked +My husband seems to have con flu and I have a persistent cough. We’re coming to the office to share :) +@hellNbak_ it was a Firefox exploit. And the vuln was disclosed by @nils some months ago +@m1sp I just had the most vivid dream of becoming engaged to the prince of a small tropical island with a Muslim-ish religion +@DragonStuff a decorative tree sculpture with lights, and tuning into the noise generated by them. I said aloud “I can hear the tree” +@zorm but then that’s more bits than actually fits! :) +@puellavulnerata if they were consistent about it, I’d just accept it and move on, but they arbitrarily do or don’t lead with an extra zero. +@puellavulnerata …. So maybe this code is actually in real mode but that does not clarify the mystery to me +@oh_rodr not that I know of +Why did this programmer write 0x00009? Not 0x9, not some number of zeroes to pad it to a register size, but five hex digits. I can’t sleep +Our housemate moved out a few hours ago. It just now occurred to me at 2 am that I am once again free from the tyranny of pants in my house. +@savagejen https://t.co/s90fXxHyEd +RT @savagejen: Whelp, there goes the only reason to choose trains over planes. http://t.co/cNJsDa7ynB Sad. +@savagejen bunny is eternal +@hemantmehta because a webpage rudely shoved it in my face today +RT @KdotCdot: Best #Defcon tee shirt so far: white guy at airport with dreadlocks and shirt that reads "I'M NOT @MOXIE" +@m1sp_ebooks @m1sp yes +@dakami @bascule they should ship — as Math.WeakRandom — for games and other realtime simulations. +RT @nils: Seems like the Firefox vuln used against Tor users is CVE-2013-1690 reported by me in April and fixed since June http://t.co/XAES… +@dkabot AHHH charge it!! +@iFlames_ if I open the calculator, it's for programmer's mode... +calculator.app for OSX failed to open any windows. You are a calculator. You don't get to crash. +@vogon suuuuure you did. And bogosort returned a sorted deck on the first iteration +@vogon and the magic of C is.... ..... the same, but with semicolons +@JeffCurless I certainly write more than most people :) +I am quietly astonished every time an asm program I wrote actually executes to completion without segfaulting or hitting halt-and-catch-fire +@bSr43 what do you mean Hopper doesn't happen to have 16-bit DOS executable parser lying around?! :) +Hey @paypal why do you even allow vendors to do this? Most of them don't know any better - but you should. http://t.co/zhS9z6APyG +I was thinking about Morrowind and then this happened https://t.co/fSgwrNDPna +# 364498580398014466 +@myfreeweb yes, anything can have its own URL handler. That does not make it okay to launch another app without my consent. +BTW here are my slides if you want to grab the URLs https://t.co/p3dpOZ53xe try not to crash google docs again thx +“Requirements for this programming tutorial: you know how to operate an IBM PC (or 100% compatible)” Dang, I might be out of luck +@vathpela I don’t know, what’s in this hard drive from the late 90s? +Also, I find it extremely amusing that my “x86 computer” has one x86 chip but possibly three or more ARM chips. +Also note how easy it was to circumvent the checksum. It’s clearly only checking for accidental corruption, not tampering. +@ShadowTodd no, I am pretty sure that one was an on-the-fly decision. +Absolutely top-notch research on reflashing hard drive controllers that just came out of OHM http://t.co/WQNWnVld58 they have ARM CPUs!!! +@billpollock awesome. Were you looking for a particular topic +There’s no point in warning tor users not to visit CP websites. Either they never do, or they will anyway. They already accepted huge risks. +RT @Akamai_InfoSec: Security Reminders Inspired By Van Halen's Brown M&M Test - The Akamai Blog: https://t.co/cZtgpdIGo3 +@Vanguard_Group @eevee why only twenty? +@Kufat that’s not a requirement +Summer hackathon starts at work in a few days and I don’t know what I am doing yet +@anildash @hypatiadotca I actually heard a mom say to her little boy last week: “I picked THIS dress because it has pockets, honey” +RT @0xcharlie: ...and that is why we release everything so you can judge for yourself who is right: Paper and code available now: http://t… +RT @nudehaberdasher: Dear Toyota: Our attacks did not require dismantling of the automobile. We just wanted to look inside. +RT @0xcharlie: So now Toyota is saying you can only do our attacks if you remove the dash board. This is absurd and very troubling Toyota … +RT @thegrugq: Stop fetishising the technology! Security requires more than just sprinkling tech on something. +@DrPizza why not? True story: my high school was named Carmel. They ordered hats and they came back saying “Caramel” +RT @runasand: Firefox vulnerability was Windows-specific and targeted older versions of the #Tor Browser Bundle: https://t.co/q4D4meMozm +@kragen the one where I am extremely annoyed +@m1sp I mean the firearm that Tsovinar has taken from Aramaz +@Packetknife @krypt3ia it randomly did that to me once too +WTF: a webpage in Chrome for iOS redirected me to Candy Crush in the App Store app with no user interaction. This is not acceptable +From reddit: “APT1 really emphasizes the ‘P’” +Twitter is finally getting an abuse button. http://t.co/nwZz3xLfq4 the noun, not the verb. Do not abuse the abuse button. +@thegrugq @jduck if @fredowsley gave me the cloth one and kept the plastic one I’m gonna have to pay him a polite visit +@thegrugq @jduck wait there’s more than one?! +@donicer well that’s kind of a different issue entirely. I just meant that what *happened* didn’t happen because of a flaw in tor. +@snare I listen to baroque era music all day… +@thegrugq @jduck noooo I mustn’t destroy it +@thegrugq ffff I can’t get my barcon bracelet off !! +RT @vlad902: Brief analysis + annotation of the TBB payload here: http://t.co/B02R2R4hHd +RT @vlad902: Wow, the TBB payload exfiltrates the hosts MAC address by looking at gethostbyname()->h_addr_list and using ihplpapi!SendARP +@vogon I know nothing about Magic, how is this one? https://t.co/iOg7z29Xez +@MagicCardMe ?! +@charliesome @kivikakk seriously though expect this on PHP Manual Masterpieces in the very near future +@kaepora in the meantime: disabling JavaScript completely will break the exploit +@kaepora no, who knows, and trying +@charliesome @kivikakk WHY WAS I NOT INFORMED +@john_t_lutz @torproject that’s… not what closed source means >_> Go read the source, and then compile it yourself. +@donicer how does any of this reflect badly on tor? It’s a Firefox 0day which was used to target someone known to use tor. +@john_t_lutz @torproject …. Wherever would you get the idea that Tor is closed source ? +RT @runasand: Looking for info about #Tor, hidden services and the Firefox 0day? Please read https://t.co/R8SyqgaKDO +RT @DonAndrewBailey: OH: "I spent the last 24 hours analyzing a new 0day and my advice is to disable the Internet." "Where can I sign up fo… +RT @djrbliss: In case anyone else was looking for this too, here's the Bugzilla entry for the Firefox exploit: https://t.co/HkKbc7czy5 +RT @torproject: Dear global press, it's called Tor, not TOR, see https://t.co/CE4LQWdhGB +@kevinmitnick definitely the one by that Melissa girl +In my house. Not dead. Nobody broke in and stole my iMacs. Further bulletins as warranted +@jmgosney yes, and that thought is “lol” +@m1sp hey! I figured out what to do with that literal Chekhov's Gun I planted +@boblord it turned out he didn't work for them, so no death. +# 364143625346637824 +My good friend General Protection! I haven't seen you in over ten years! What brings you to heavy machinery http://t.co/OBzLQYOvkC +@dan_crowley just saw you on the tv in the airport +@Bitweasil it went normally for us at noon. Except for "FEMALE opt-out?!" Guy. +On the news in the airport: "Another tough week for the NSA - agency chief asks hackers for help" +@boblord I'm wearing my new Twitter security shirt. Ran into someone wearing a Facebook security shirt. Staredown!!! +RT @Packetknife: And - of course - the idiots going VPN VPN - as if any of these single items are an OPSEC solution. +RT @Packetknife: I think the Tor damage assessment(s) will be a while in the making - and then lessons learned for ages. +@tapbot_paul all I know is it executes shellcode at some point. +@BaconZombie yes but I mean because otherwise it won't work or because otherwise it'd start hitting non-targeted users +@ShadowTodd the art of software security assessment +Has anyone figured out yet if the FF exploit used against tor users only affects ver17 or did they artificially restrict the payload +@zedshaw I'm just saying, I doubt there are any nodes running on the same host as a Windows browser bundle. I hope. +@vogon it's the ONE thing the Feds can do right now that won't get them bad press, so... +@zedshaw so far the exploit has only targeted Windows, and most (all?) nodes are Linux, but it could conceivably be used to stage +@zedshaw I just mean that "tor servers" sounds like the actual tor nodes +Maybe we shouldn't put half of all anonymity services in the same colo next time +@thezeist free stress test +@zedshaw I wouldn't call them "tor servers" as tor itself doesn't need them; servers accessible only over tor. But yes. Eggs, basket +@codinghorror might as well! We already have all the fat binary infrastructure and the ARM compiler infrastructure +RT @Atencio: Ohhhhh, so Doctor Who is kind of like nerd pope, and today the conclave burned white smoke. I get it now. +In this RT: compression ruins everything again +RT @thezeist: Xerox scanners/photocopiers randomly alter numbers in scanned documents http://t.co/7IgUWtPoZI +@comex I haven't had a chance yet, maybe on next leg of flight +@supersat I kind of opted into the extended screening anyway +@skullmandible @tenfootfangs maybe he's just whitekin! +RT @csoghoian: Top security researcher @0xcharlie (ex-NSA) on NSA spying: I don't think anyone should believe anything they tell us. http:/… +@charliesome check my timeline +@MechMK1 I picked up a casual interest around 11, started programming at 14, got more serious at 17 +@michaeldinn don't see any actually but the box part might be tucked behind something +@MalwareJake http://t.co/cksK7witgr +The desk at this gate is unattended. Both workstations are unlocked. I see text boxes, buttons and checkmarks. +@jtauber not sure, as I was planning on opting out anyway, but they didn't open my luggage +My twitter stream suddenly stopped being Defcon and started being people freaking out about Doctor Who +I'm very sad there's less than a year left on my chipless passport :( +I think they might have given me a handwritten SSSS because I'm using a pre-RFID passport as ID for a domestic flight +@ioerror do you ever get handwritten SSSS or only printed ? +This looks like an SSSS to me. But I thought it's printed if you get one. http://t.co/BDiSOOVwbt +@MalwareJake the honest answer is there is fresh blood on my clothes due to an unexpected medical issue. That may have confused it +I award no points to the male @TSA agent who exclaimed "a FEMALE opt-out?!" Stay the hell away from me, buddy +The bomb detector machine crashed when the nice TSA lady fed it my sample +@RichardBarrell I forgive people of misspelling that. I don't forgive them when they misspell Melissa w/o asking; it's a dictionary word +These touch screens won't let you press the same button twice in a row. Guess how fun it is to type Melissa Elliott +@kherge (yes the person arrested supported this that and the other, good for law enforcement I guess) +@kherge 0day doesn't discriminate +RT @runasand: Any Mozilla security engineers at DEF CON? Please find/email me. #defcon +Fascinating thread of the day: law enforcement using 0day against Firefox extended support edition http://t.co/kCzTwge9bl +RT @PennyRed: Actually, I don't think the internet is 'a breeding ground for misogyny'. It makes already existing misogyny more and differe… +@techpinscher @thijs I'm amused at how many people still take "Thanks Obama" very literally... +Unfortunately we have a noon flight tomorrow, so, goodbye Defcon! +RT @Packetknife: @0xabad1dea In real terms I'm not sure there is a difference but customers I've worked with want to move simply on percept… +RT @addelindh: @0xabad1dea I've talked to people, both customers and internally, and consensus seems to be that $ > concerns. +To be clear: just repeating sentiments of some Europeans I met. They are skittish of using American cloud services... +@WilRockall has he fixed it? :/ +@WilRockall do you let your children out undressed ? +@addelindh your sarcasm meter may need calibrating ;) +OH: "FTP... that's one of those hacker tools, like wget!" "Once you start curling, you never go back" +@SimonZerafa that was what I was getting at :p +"I think Veracode is hogging a disproportionate amount of compiler engineers" "no wonder Microsoft hasn't shipped that C compiler" +We as an American company with a cloud storage component are losing European business because of the NSA... thanks Obama +@Bitweasil @marshray okay found a sign if you never see me again the casino ate me +@Bitweasil I.... don't know.... the big one up front? +@Bitweasil I'm going down to the lobby. With husband, if I can wake him up. +The problem with these casinos is that they are all self-similar in every direction. Hey yep it's glitter and neon down this way too! +@Bitweasil in the fantasy tower I think it's called? I just mean this place is huge and directionless to me. +@Bitweasil how exactly do I get into palms place +@kaepora IDK..... pokemon and mario kart? and animal crossing +My hotel's webpage says "you deserve a staycation." Good job on getting the meaning of that word exactly backwards, marketing! @Palms +My Nintendo 3DS offered to do a firmware update today. Well I guess that's one way to find out if the code is signed... +@LowestCommonDen @eevee sit downstairs. Watch child play. Come upstairs when they start climbing on the bookcase. +@LowestCommonDen nope! +RT @jodymelbourne: just got threatened at #defcon #isightpartners party by isight staff member who to hit me cos he said my eyes made me lo… +RT @runasand: Poppin' calculators at Caesars: http://t.co/B6gBxWTtNO +@0x17h yes. The given figure is they have $4/user/month. +@Kufat yes, thank you +@SteveSyfuhs nah it was normal Linux and I was surprised +RT @schemaly: What Happened When My Son Wore A Pink Headband To Walmart http://t.co/kh9xwOeJ8b via @HuffPostParents +@landley see @boblord ! It's *not* just me! +RT @DrPizza: So why deliberately do things that serve only to reinforce tech as a boy's club, when it would have been easier not to? +What does it say if I hear about a cool vulnerability and I just assume the speaker meant Android as opposed to normal Linux +I'd like to thank everyone who was in the front row with their transmitters and DIDN'T blast my demo out of the sky. I know it was hard +RT @jonoberheide: Things in Vegas seem to break more frequently during DEFCON. http://t.co/daaM2Gveey +@MB5 thanks! Much less blurry than the one I had +@spacerog I did specifally ask if it was you but he said he figured he could tell if it was :p +Trying to figure out what acquaintance of mine talked with my husband. His description: "he had a beard... and glasses" so, like, 73% of you +@AndrewMohawk my screen decoder is terrible and useless! And also a bit API-specific +.@yaakov_h the goons swarmed the stage with alcohol. I had to designate my husband as my proxy +BTW I did notice my goon say "we got a first timer in track 1" into his radio but I didn't realize I would be raided halfway in +@m1sp what if I didn't and I'm actually a ghost now +@m1sp I might be a little bit delirious +@chriseng @focalintent gods I look awful in these pictures :( +Thanks everyone... my feet hurt. +@leEb_public my email is melissa.b.elliott at gmail I will try to get to it :) +RT @natashenka: "By informed consent I mean everyone knew I was up to something"-- @0xabad1dea +RT @chriseng: Since @0xabad1dea doesn't drink, hubby came up to take her whisky shot. Goon: "Do *you* drink, sir?" Hubs, with conviction: "… +*collapses* +# 363804668100489216 +@quine the speaker room is looking for you +I hear I won an award for "desperation to win an award" from @attritionorg. Yaaaay !! +RT @Zac_Mueller: @0xabad1dea that's how my parents got robbed +@blowdart @vogon I'm not payin' +@blowdart gdi @vogon you favorited this before it was fifteen seconds old +@WilRockall I'm talking about video feeds. +I think I have put the fear of @0xabad1dea into Twitter's security team, good and proper. +@sakjur they have these large cutouts that hang from the ceiling in layers +@sakjur they use projectors and a video which has black pixels to match the gaps in the sculpture +Infiltration complete. http://t.co/BXmX0sy4bo +@boblord be there in a sec +@boblord where you at +I really like Defcon's animated sculptures. It's a low budget effect, why don't more places have them? +@p0wnlabs it should be 1. Online schedule has two track 2s for the time slot +In the chill out lounge seeing which of my demos are still working ;) +.@savagejen and the bunnybroken baby monitor http://t.co/2alUtBoBNK +@Kufat instion hub or something +@Kufat I already forgot its name lol +@cybergibbons track one, hacking smart homes +@dasshuchan lol nope +"The password is the last three octets of its MAC address." About a device that controls your locks and garage doors +@eevee video. Toddlers. There are a few people into that... +@Emyylii though the chances that someone who wants that lives within a block or two of you are probably pretty low. +@TheDaveCA @thejefflarson what threat? I reserve the right to mock advertising they actually spent money on :) +@Emyylii it's a video feed of a child's room +(Though remember, conventional radio baby monitors are easily tuned into by people in your neighborhood.) +I'm glad I don't work for the toy company that's being revealed to ship a baby monitor toy that can be hacked into by pedophiles ... +@chriseng @apiary though I did type BHDC out of habit I realize +@chriseng @apiary we're at Defcon, not Suit Hat +@apiary we know it's not anonymous, but to us asking to see photo ID just sounds rude :) +@apiary it's a sensitive topic at BHDC +.@mescyn the nice man at Starbucks said they do it year round because people lose cards in the casino +@SimonZerafa I asked and they said lost cards in casinos are a huge problem. +(No cost, these are from the crate I ordered on the super cheap) +@afreak @Kufat @cyan2049er I will give them for free but only to four different people. +To everyone asking: a lot of places in Vegas demand photo ID if you don't pay in cash, even for coffee +Not leaving Vegas until I give these away to four good homes (with photo this time) http://t.co/Z5m3zmcJIj +The coffee place in the Palms is good and they do NOT ask for photo ID +@tpw_rules will link slides afterwards. Video out of my control +@Achifaifa as much as I'd like to attend @quine's... +@zooko @dangoodin001 it must be a mistake, as they have two talks in track 2... +Well apparently I have no idea what track I'm in because different schedules say different things. Yaaaay +@0xcharlie <3 +Today, 5pm, Track 1, I will give you a new source of paranoia: the emanations leaking from your electronics http://t.co/fztGYMBRNF +oh wow for some reason I thought I was track 3 but I'm in track 1 with the glowy rainbow sculpture stage +@MalwareJake (I was taken by surprise. It's off schedule.) +@MalwareJake It might or might not, it's different every time, I'll let you infer the rest +@nrr yes you are on my list +@MalwareJake no, I'm sick. +@boblord hey you're on my list of people who are here that I haven't seen yet +@nrr you know what I am getting at :p +@Kufat @cyan2049er ahh sorry my mind was fixed on the "31" and thought "that just happened" +Of course my body decided that today specifically I need to be in horrible pain. You know, the one day of the year I'm going on stage +@rantyben but so was everyone I saw wearing those boots +@Kufat @cyan2049er it's expired. +@blowdart not me personally, just venting +Of course after checking morning twitter I learn defcon had strippers at jeopardy or something. Of only one gender, of course. +@ircmaxell I wasn't particularly surprised to learn this person has already blocked me on twitter :) +RT @DrPizza: That a girl was being stripped as a reward at hacker jeopardy at #defcon was pretty incredible. +@minus1cjb eyeroll.gif +@k8em0 @marthakelly fortunately nothing in particular has happened to me so far :) +@stevelord well we kind of spend our whole childhoods being warned, warned, warned, men will touch you, men might rape you, run away +@minus1cjb I'm just subtweeting someone on twitter who thought it was great and feminists are stupids who make fake drama +@stevelord Apparently it has 0% discomfort for many men! Unless we gender flip it and suddenly that's gay :) +@pryv83y3s ............... what ? +@stevelord I am attracted to nerds +@ircmaxell I'm subtweeting someone who thinks it's "great" some slides had objectifying imagery because "stupid" people will make "drama" +@Packetknife @savagejen IDK, I've been mistaken for Not The Interesting One countless times as a subconscious thing. +@nrr wat +And remember, jerktrolls: *I am bisexual. I find ladies sexually attractive.* But my first reaction is still to feel acutely uncomfortable. +Because nothing makes a woman surrounded by men she doesn't know feel safer and welcome for her skills than sexual objectification, YA KNOW? +Subtweeting OHM, not Defcon: if you don't think sexual objectification in slides is a problem, I can only conclude you don't want women here +RT @savagejen: @ashedryden Photo of the invite they handed to my male co-presenter (despite speaker badge, they didn't give me one) https:/… +@vaurora I am here because I want to be here. I guess technically I got "paid" in two free badges. But so far so good +@joshcorman @spacerog IDK. The wizened beard doesn't match the youthful hair. One or the other! +RT @RT_com: ‘Encryption is a human right’: Wikipedia aims to lock out #NSA http://t.co/9c0Twuq13W +@danchodanchev I'm pretty sure "exploitable" in that presentation does not refer to vulnerable to attack. +I made it back alive. They were not the NSA +@puellavulnerata his wife isn't a citizen !! +Don't tell my mom but I am totally getting in a car with a guy I met on the Internet +I don't own any knee high black leather boots. Am I doing Defcon wrong +@caeliat I'm in a gray hat with pink hearts on it right in the front door +@caeliat cominnnng. +@caeliat oh um well they have a big front lobby and um um I donno I can wait down there? ^-^;;; +@caeliat I am at the Palms. Is that okay? +Google Docs is convinced there are six different instantiations of me all looking at the same slide. Six little Kasane Tetos in a row! +@charliesome my tweets sure are postin' good, in that case! +Boy I wish I could check @tumblr on this open wifi but they don't support SSL for reading the dashboard hint hint HINT +Twitter, it'd be more efficient to tell me when there WASN'T an internal server error when I click tweet +@Xaosopher I'mma hop in the shower I assume that's okay time-wise? +@m1sp but I don't have any kittens T_T +@m1sp why do I pick fights on the internet? +@8vius key word, *as a woman*, because men already had these rights. +@8vius You are running around in circles and making no points. Feminism is about MY RIGHTS to have a job, be educated, etc, as a woman +@Xaosopher only the finest in local cuisine ! +@8vius Because I identity as non-male, that is a critical component of my existence, and that MATTERS. +@Xaosopher *checks clock* I reckon +@8vius then I am not sure what we are disagreeing about. Yes. I am a feminist. I fight for gender equality rights. +@Xaosopher I'm awake +@8vius Thank you for sharing your opinion on my rights and my identity. +@8vius I will say it again in bigger letters EQUALITY OF RIGHTS IS NOT SAMENESS OF IDENTITY +In this thread: I pick a fight, then act surprised they're ignoring my point. I realize I should go back to sleep. +@8vius @dresdencodak It is a fight for equality. +@8vius @dresdencodak because equality of rights does not in any way imply identical identity????? +@8vius @dresdencodak "stop identifying differently from me! it's weird!" - the rallying cry of the comfortably privileged +@8vius @dresdencodak if I recall correctly (ie not confusing my crazies) he's a raging misogynist among other things +@leighhollowell I am, if you want to grab food downstairs or something, but I'm not feeling well and not going out. +RT @vogon: do you roguelike her, or do you roguelike*like* her +@blueg3 I guess @m1sp doesn't count... +@m1sp I'm not doing anything illegal! On stage. I pre-filmed those parts. +@0x60 I already retweeted it +RT @TimKarr: #Snowden's wikipedia page is edited to label him "traitor." IP address of editor belongs to someone in Congress https://t.co/b… +@m1sp but I'm in America... +"Hurr hurr intelligent people with useful skills and good jobs don't have gurrlfriends" - @Unilever, maker of axe body spray +RT @thejefflarson: Hey, axe body spray, no one can understand this because it isn’t programming: http://t.co/257xsuCQAG Also, you are all… +@Reversity @Bitweasil last year someone tried to "get me into" ninja party. I was already invited. He wouldn't go away. He was uninvited. +@rezaaslan @sciencecomic it's special sorts of people who never get a second opinion on anything. +RT @eevee: http://t.co/xPz6pLrIFY dear haskell: where do i even start. +RT @dinodaizovi: Text message from Unknown. Phone acting up at #DEFCON, nothing new here. http://t.co/j7oZZSOqOm +I tried very hard to shake @dotMudge's hand, ending up having to settle on Kingpin :p +RT @nickm_tor: I'm betting that people will find CRIME/ BREACH variants for years until compress-and-encrypt is treated as guilty-till-prov… +@m1sp no, that's in about 22 hours! +@m1sp *collapses in hotel room* hi ! +Flash mobbing @dotMudge http://t.co/iHFGjQYY6x +They're dropping hints that DARPA has a new initiative coming up ... +@codeferret_ thank you dear +# 363444153364914176 +@attritionorg meanie head +Today I am undercover infiltrating Akamai +@MalwareJake I found one Tylenol but I may come by after this talk... +@pmylund fortunately I know a hundred people here at least. Probably a few hundred ... +I need ibuprofen or something. I'm behind the AV guy in track 1 if anyone I know isn't shady has any I can have :( +@joneszach at the palms buffet with @_larry0 :) +It was like this when we got here I swear http://t.co/KrkYIW9k9C +@matthew_d_green ie I am Loud and Proud. +@matthew_d_green but the original proposition was: faced with non-anonymous review, conceal your minority identity. I hate that. +"A java app for Windows" write once run somewhere +Listening to about how horrible Java smart cards are. "Ints are optional" +Apparently @aaronportnoy and @aloria fell for it... +.@the_navs you know that's fake, you always knew it's fake, and I'm sad you can't go a year without posting it for no apparent reason. +@mczonk It is an autogenerated name for an offset into the stack; are you looking at something that is pushing values? +@G13net to Mr. Portnoy, who I think considers the discussion over. +@kennwhite I'm actually tall for a lady and into normal range for men :p +@DrPizza you actually didn't catch me in bubbly mode... +If you have a non-anonymous review process and my chances are improved by having a "generic" (white male) identity, I don't want it. +I refuse to censor my girly name on a non-anonymous submission to anything. Because the pink and glitter is part of the deal you're signing. +@aaronportnoy right back at ya :) +Attention web developers: why aren't you using the protocol-relative URL to prevent SSL mishaps? It's REALLY EASY http://t.co/J97orRgfU7 +@vogon The protocol-relative URL. The protocol-relative URL. It can be deployed with a regex +@aaronportnoy I believe you, I believe you! I'm just a dissenting opinion! +@aaronportnoy okay, but I am still 100% dead set against it as conceding to the status quo of what's "normal", and empowering it. +@vogon It is the only policy that doesn't break the entire point of SSL. USE THE PROTOCOL-RELATIVE URL, WEB DEVELOPERS. +@aaronportnoy one of the biggest motivators for me several years ago when I was young was seeing women's names on schedules. +@aaronportnoy hiding varied identity does not improve the ability of people of varied identity to become established in the field. +@homakov maybe +RT @m1sp: "You see, patents are like Pokémon cards..." +@aaronportnoy No. I am not missing the point. I simply refuse to conceal my identity to improve my chances. That's not meritocracy. +RT @chort0: If you stayed at Caesar's, check your bill. Heard yesterday people were billed phony local phone charges. Found one on my bill.… +RT @newsycombinator: Creator of xkcd Reveals Secret Backstory of His Epic 3,990-Panel Comic http://t.co/gfMvD1D86W +@aaronportnoy hell no. Rather be rejected for being a woman than accepted for not being a woman any day. The pink is part of the deal. +RT @tojarrett: Here's to my fabulous, funny, smart and friendly @Veracode friends. cc @annenielsen http://t.co/VR9naoF3tl +@DaKnObCS it looked like a narrow FM broadcast, but it sounded nonsense. +@m1sp reminder that I adore you +@Bitweasil @spacerog we're standing on the stairs at the raised dais bar at the center of the casino area +@Bitweasil be down in a minute +@Bitweasil @spacerog there's more than one lobby? I only know the giant one that's a casino food court +@Bitweasil I'm in my room atm. Want to meet in the lobby? Maybe we can find @spacerog +@matthew_d_green well my talk is at 5 on Saturday +@spacerog okay I'm done +@spacerog I'm not inviting you, sorry. But I should be done soon... +@spacerog I am upstairs, Chewie is trying to make me take a bath because my legs hurt so much... +@Odysseus8yzx about twelve years ago IMO +how DARE you encrypt your radio signal! I'm CURIOUS! oh gods this is how the NSA feels +@Randominterrupt nowhere! I really mean it. I am going to sit RIGHT HERE and work on my slides and not move my legs :( +@KronicDeth I think I just did myself in with alternating walking miles with sitting for hours, and having several computers in a bag +@MalwareJake Palms actually. +@chriseng @Xaosopher fine food is completely wasted on me. My favorite meal is rice with gravy. +RT @DrPizza: @julianor I almost worry that the hardest part for you is not making it practical, but coming up with a nice acronym. +@0x00string not that I know of, sorry! +@tenfootfangs so @codeferret_ has been playing this again recently and was thrilled he got a street pass today +@matthew_d_green yay you're here I didn't know that +RT @DrPizza: Crypto experts issue a call to arms to avert the cryptopocalypse at @arstechnica http://t.co/H8cntne0nM +If anyone wants to hang out, I'm in the Palms and my legs hurt too much to leave *grows roots* +Two hot dogs, two lemonades, $30. Yes @Xaosopher I know that if I walked for an hour I could find some reasonable prices :p +@spacerog Chewie and I are going to the Palms cafeteria if you're around +My demo of observing the capacitive field of a touchpad isn't working. Did it freakin' migrate +@zeroday nah I'm not sick just not built for running back and forth across Vegas sixteen times in two days lol +@0xcharlie *Doctor* Miller, you should know me better than that. +Did you know in Nevada it is illegal to disclose the EXISTENCE of someone else's radio communication? Do not tune to around 860mhz +Remind me to dismantle this giant antenna rig feeding into a nest of wires and glowing lights before the maid comes tomorrow +( @0xcharlie is my benchmark because he's not good enough for Black Hat either.) +it's a good time for Imposter Syndrome to set in. <s>I am blood of the dragon</s> I am definitely at least as smart as @0xcharlie. Right? :( +My entire body is sore like I've been riding horses while lifting weights what is this nonsense +@spacerog yo you in palms? +RT @savagejen: Someone put a black hat on top of the statue of Caesar! http://t.co/CtpsUTq8VB +@homakov I've got over forty thousand tweets, a husband, AND a few boyfriends. ;( +RT @eevee: apparently @Fidelity only stores passwords as digits, as typed on a phone keypad! replace e.g. A with B, C, or 2 and it still wo… +The police's response about the pressure cooker google search thing http://t.co/5dYfnrMjhn +@spacerog That's not in our room! But... never stick things into strange ports. +"Another device on the network is using your IP address." Hey knock it off jerk face +# 363086545307185153 +@blueg3 ie, random people visited by the police over assorted harmless internet activities. +@blueg3 I was discussing this with some journalists today. There are some complicating factors, but the core stays the same +I won't post the back. You have to work for it ! +The deluge of people who want to see the back of my badge has already begun +zelda_get.wav http://t.co/ta1y7YxAl5 +My plan to subvert @arstechnica is going swimmingly. But I didn't know how to own @DrPizza's Windows Phone bc I've never seen one before. +@joneszach in the women's bathroom, I wouldn't recommend it. Heading downstairs to get lunch with the Ars reporters +@dangoodin001 are you at Blackhat, or just Dr. Pizza? +@DrPizza I'm in some sort of wifi lounge (aka sofas in a hallway) near the sponsor hall ATM +@DrPizza yo I have a badge for a few hours if you wanna talk for more than thirty seconds +@authentic8 noise floor :) no worries it was loud as heck +I am become Chad, Worker of Booths. It's uh... short for Chaderella, don't judge me +In tvtropes terms, Tsarnaev has a http://t.co/isCl0yksZA that sees him as http://t.co/vcz7TadPeA +@itsdapoleece I think they have a right to insist they believe he's innocent, I just also think the evidence is tremendous he's guilty. +@vogon should be set to global +RT @chriseng: Thesis: There is a *small* but real chance that both RSA (the algorithm) and non-ECC DH will soon become unusable. @alexstamo… +I know all of you use Adblock or API clients. I want you to know someone is paying to promote Tsarnaev's fandom group on Twitter. +@jennifurret praise the science ! Seriously though, congratulations +RT @vogon: exhibit A: why browser escape bugs mean less and less as the browser gets more powerful http://t.co/tx8vD3UnCR +I'm at the lobby at the base of all the escalators #blackhat and apparently all my friends are still asleep. +This is why the surveillance state is a freaking PROBLEM, America http://t.co/6mAvDFlkqq +RT @mikko: She was googling for information on pressure cookers. He was Googling backpacks. Then they got visited by the feds. http://t.co/… +Pink hacker owes @annenielsen now +Pink hacker needs mocha badly +@wimremes ... Wuh? :( +Who is going to be at the Rio after lunch? +@DonnyVantage @mikko you sound like the idea of a government suppressing someone's rights is just too crazy to imagine. +RT @birgittaj: #Snowden finally receives asylum for one year in #Russia. +@fuzztester well, of all three or four women there last night, I was the only one in a pink shirt +@dangoodin001 only by betting our understanding of the math is incorrect. Or common libraries have massive implementation flaw 0day. +@tab2space we kind of attend as a company, but, I don't have a badge of my own this year. +@m1sp I am sleepy and what is this +Why yes, stranger laughing at me going to Defcon but not having a Blackhat badge, we DO all have to start somewhere. +@canweriotnow technically we make a living cheating at the halting problem :) +RT @NewtonMark: @0xabad1dea If you can’t find a restaurant, at least you won’t have to solve the dining philosophers problem. +Veracode: we can solve the halting problem, but we can't pick a restaurant to meet at +@Packetknife \o/ +@amanicdroid and written in latex +@amanicdroid this is someone who was up for a pwnie :) +@Bitweasil yo. Still at Caesar's. still going strong at palms? +I'm at the kind of party where people hand you a copy of their upcoming research paper +Happy Annual Run Into Your Industry Ex Night ! +And @c7five forgot I don't actually have pink hair +@vogon it didn't make the journey... +I found my cousin. So this is what I would look like if I were a boy +@DrPizza yes waiting on my bag +@Myriachan this is the internet. It happens. Also, they're blocking the guardian at .gov +@comex I'm told "it's a Japan thing." +Seriously READ THIS it is bad very bad http://t.co/RQWxGxLPwM +@vogon that does exactly 0% to placate me +@profoundlypaige @mikermcneil NO +xkeyscore *brags* about not needing "strong selectors" (ie the name of who you're looking for) after they talk so much of protections +RT @vogon: @0xabad1dea those slides are 2008-era, when 20TB of data/day meant a max retention time of 5 days +Xkeyscore, according to slides, sometimes can't keep up with incoming data with 500+ servers. +@cpu @vogon No. If you press too hard on the walls, you will discover it's a hologram +RT @BlackHatEvents: Demand for the #BlackHat Keynote from Gen. Alexander has been so high, we put it on YouTube http://t.co/cdEAdGujmv +@jennifurret wooooooooo +@DrPizza my internet is about to expire and we're not landing for another hour at least T_T, but I will contact you later ~ +@Myriachan yeah they'd have been promoting it differently if it was a new way to break code signing +@xa329 it kinda looks like it might be my name XD +@DrPizza there's barnes-con hosted by @thegrugq and the password nuts are having a party and that's all I've been invited to so far +@xa329 @_defcon_ woohoo look mom I'm famous +@Kufat yeah, Android has failed completely at keeping users patched :/ +@chriseng I ain't touchin' no phone at no def-con +RT @a_greenberg: If you have info about the plot to egg the director of the NSA during his Black Hat talk, contact me at agreenberg@forbes.… +RT @winnersusedrugs: Before you make a joke, ask yourself, am I reinforcing an idea or status quo that makes life harder for other people? +@tumblr Thanks for redirecting me to plaintext when I manually type in https:// . It is very helpful to defeat my attempts at privacy +@DrPizza I am ready to get the !@#$ off this plane but we are still so far away and my internet timer is ticking down +@Kufat if you're still running gingerdead, USB ports are the least of your problems +Use a USB power-only condom when connecting to strange ports... http://t.co/lIzcuDFQaK +@xa329 that's a battery/CPU thing +@vogon no actually, it seems. I was reading some comics and they looked fine. They're typically already gzipped +@vogon pretty sure they are proxying and recoding the image. JPEGs are blurry. +# 362724029892788224 +*gasp* they... they change animated GIFs to only be one frame. This is an assault on our core values +Looks like gogo airplane internet automatically recompresses jpegs loaded over plaintext. I just now visited a plaintext page... +@matthew_d_green @marshray .... we hope +RT @chriseng: Don't assume lower rate of vulnerability reports mean things are getting better. More likely it's publication bias. @attritio… +@ra6bit IDK. My university of 1800 students had 65535 IP addresses. It just kind of happened. +@fuzztester it wasn't but we've been on the plane almost an hour and it hasn't left yet +RT @Packetknife: I wasn't kidding - they ~forgot~ I was a US Citizen. The word "forget" was used by my DSS liaison. This type of stuff is s… +Follow @Packetknife for the perspective of someone "suspicious" +I don't know the travel etiquette: do I get to challenge the guy who brought three carry-ons and took my backpack's spot to mortal kombat +@xkeepah @trap0xf the difference is that's not particularly sexualizing. A few women are into that, but not many. +@blowdart well you did it wrong. Try again +@blowdart some sort of x-bone +@_wirepair that's why you got carded +RT @kwestin: At Blackhat/Defcon not even taxi meters are safe http://t.co/EjHvRg7rSF +RT @LTorcello: @puellavulnerata @AnonPressOffice Given human cognition #NSA meta-data is too broad. Analysts own cog bias will create narra… +@boblord y'all sticking around for the weekend? +In funnier news, I hear Microsoft is thinking about calling a do-over on their product unveil. Great job +@Xaosopher wrong letter. N +@MechMK1 context: NSA at Blackhat +I'd be more inclined to be polite with leaders of an organization if it wasn't engaged in, you know, "being too cute by half" +RT @evacide: I'd be more impressed with crit of #BlackHat heckling if it didn't add up 2 "respect the guy w/ all the power who won't answer… +@puellavulnerata hallo vriendin. Hoe gaat het? Engels is een dom taal. #suspicious +RT @puellavulnerata: #XKeyScore Page 15: to find terrorists, look for anomalous events, like someone using encryption or a foreign language… +Hanging out in an airport is a good time to invent a new system of buffer overflow tracking I guess +RT @moxie: Gen Alexander says that we shouldn't worry about NSA collection because analysts have taken a pledge. Also, they took a class. +RT @vogon: most unexpected thing in the #xkeyscore deck is the way it mentions decrypting VPN traffic as if it's a thing an analyst does be… +RT @KimZetter: Heckler in audience yelled "bullshit" at Gen. Alexander - audience applause +@partytimeHXLNT the look on my face when I found out about tab breaking... +RT @Packetknife: a US Citizen the very day they decided to violate my rights. My DSS liaison suddenly was asking me if I was a Citizen. I w… +RT @Packetknife: Keep telling yourself they get warrants for US Persons (as if that makes it blanket OK for everyone else anyway). They "fo… +I travel rarely enough that the complete pointlessness of the "security" rigmarole still amuses me afresh every time +@DarrenPMeyer I tried to put all the nice plastic cases back on... +@DarrenPMeyer I had no choice, but I do not need them, they are the extras +"Dear TSA, this suitcase is full of wires and circuit boards because science." +RT @chort0: If you have to redefine words in order to answer questions, you're probably lying. +Both these programs operate on a very large scale. We made sure to redact the important part. http://t.co/w5PfGjfRvL +RT @ODNIgov: DNI Clapper Declassifies and Releases Telephone Metadata Collection Documents: http://t.co/Twg8d07FuW +Here you have it. Finally. Documentation about NSA tools to query actual web site transactions http://t.co/wDY6YMXLRy +RT @ggreenwald: REVEALED: NSA tool that collects 'nearly everything a user does on the internet' http://t.co/EIksUzEF5w +@MechMK1 you can't type that on an iPhone lock screen keyboard though :p +RT @vikrum5000: @0xabad1dea iOS7b1 had a bug where slide/swiping to pick an accented character would scroll the view and dismiss the keyboa… +For the record, iOS totally lets you use accented letters in passwords. Yes, it's Impractical Phone Password Week for me +@DrPizza hey can you hang out with @codeferret_ that would tie things together nicely :p +@Irrnick ehhhhum. +@DrPizza whatever Dr. Calendar I’m already asleep +Because why would I want to use an accented vowel in a password? #android http://t.co/Rg8FXtpZac +@DrPizza by tomorrow I mean it is today already here in Boston but not in Vegas I think +@DrPizza tomorrow night +Holy cheese. My android tablet knows about my flight and reservation. This thing is too smart +@mattblaze oh boy I should probably take advantage of not being en route yet and be the only girl with a patched tablet at the ball +@fredowsley your challenge, should you choose to accept it, is to go figure out if @thegrugq has bracelets this year +Things found searching for my bathing suit: AV cables. Priceless jewelry. My other iPhone charger. Last year’s Blackhat badge +The hoop skirt is definitely not cooperating. I was starting to worry too much about random guys harassing me anyway, honestly… +RT @Sci_Phile: Holy s***: Because nerve signals are driven by ion gradients, salty soy sauce can make food with unused ATP do this http://t… +@eevee my IT department would have banned servers if they thought it wouldn’t just make the CS department even more overtly rogue I think… +@amanicdroid it’s my suitcase, and now my husband’s. +DH just realized his backpack is gone so now his stuff is in my suitcase. … there might not be room for the hoop skirt. +@pborenstein yeeeeup +@washiiko unfortunately, there is no Teto doll. +@washiiko ARE YOU NOT ENTERTAINED? +Improving my slides based on feedback. http://t.co/dbInts2f64 +@vogon I’m pretty sure the text accompanying that screenshot was semi-sarcastic. Obviously it was a bug. +This player-written guide to Daggerfall is complaining that Bethesda still hasn't shipped Morrowind. +# 362352830868226049 +Already knowing that multiple endings shipped broken, my impression is Daggerfall is the buggiest thing to ever succeed. +Reading a guide to Daggerfall: "do not pick this trait for your character because it was never implemented" +RT @ericlaw: @fugueish @chort0 @0xabad1dea I've seen that before; I believe it's caused by registry corruption in the ZoneMap keys. Sorry. +@chvest on the defcon floor? Gods no. I'm not TRYING to generate harassment. +RT @AlSweigart: Browser plugin idea: Appends to your user-agent, "By accepting this HTTP connection, you agree to nullify your terms of ser… +RT @chort0: @JZdziarski @0xabad1dea I assume you're responding to the Google-claim. It's all sites in 64bit IE, cannot add any. +@docsmooth http://t.co/bukJSnElTu +@codinghorror “has entered”? At least half of all geeks are too young to have ever seen Clippy in the wild. +@MechMK1 Vulpix +RT @chort0: Dear Microsoft IE team: F-you very much for this. Artificially blocking your competitor is a dick-move. http://t.co/ZAXf7xe65o +RT @Pinboard: On the plus side, tonight I have a dozen new servers +RT @Pinboard: One thing I won't miss about this colo is how they let me remove servers without checking any ID, and even lend me a cart +@Wanyal I prefer the Bootleg Crystal way of saying it. http://t.co/CNpPRKLtr0 +It will be easy to find me at Defcon. I dress like a Pokemon trainer http://t.co/bqFeuYtfzD +Hey @USAirways you forgot the most frequently asked question of all - WHAT IS THE URL http://t.co/qv0xMRGzBL (first google result!) +@longshanks_ I'm not @natashenka. Mind blowing I know ;) +“22 packages can be updated. 22 updates are security updates.” Guess I should stop putting that off +@RSnake now, I keep Flash as click to play, if only for performance/battery life, no matter how secure it gets :p +@RSnake Java. Flash problems have tapered down quite a bit IMO. +@jruderman Amazed that JavaScript is a language that has semicolons as a token but you can often omit them nilly-willy and it will still run +RT @marshray: #passwords13 conference lays down the rules: no physical fights allowed during the talk "Defining Password Strength" +@jruderman @JSHint @miaubiz amazed that JavaScript is a semicolons but we’ll try to parse without them language… +That’s exactly what the APT would say, @CiscoSecurity … https://t.co/4BnVcEGXxn +Is this what @6 wanted? +RT @ph1: "My house is on fire, but only a bit. Do I really want to call 911? It's expensive." How US healthcare feels to a Brit living here. +RT @arstechnica: Bradley Manning not guilty of “aiding the enemy,” convicted on 19 other counts http://t.co/iXYyDr0jc3 by @cfarivar +RT @MotherJones: BREAKING: Bradley #Manning has been found NOT GUILTY of aiding the enemy, the most serious of the 21 contested charges fac… +@vogon nah I mean I can scroll with my cute little fingers and the page bounces and stuff +You wanna know a secret? I use IE10 on my tablet sometimes, because it actually understands touch. Except when it doesn’t. +RT @corkami: PE102 - a Windows executable format overview http://t.co/geaC6axH4l http://t.co/KAodpVbwW2 (available in poster & booklet) +Internet Explorer is literally bribing people with cupcakes http://t.co/yEvLPlU7fl +@fugueish lol I got like three hundred retweets when I shared that when it was first found. Mongo peeps were hurt we were laughing +TIL that “import *” is its own opcode in python +Here are some slides about things you absolutely should not do in python (first slide is blank, skip forward) http://t.co/X4AbFTEbXM +@EddieCLeonard a few different people on reddit said this indeed would work +@EddieCLeonard they called him, he hung up, he picked up again, they were still on the line, they played a fake boop bleep bloop +@EddieCLeonard this whole thing relies on the quirk with who hangs up first in UK landline phones. +“If you are a religious zealot about git one way or the other… well, there’s only one way, the other way is SVN zealot…” “who?!” #meeting +@DrPizza yeah, and it’s possible to get fairly cool outside at night. +@DrPizza a light sweatshirt or something +@ZackMaril @steveklabnik is it thinner than an iPhone? (Mind you, I have never been t New York and never seen these bikes.) +@EddieCLeonard except he hung up on the people who called him and called the bank himself. He thought. +.@ZackMaril there probably *is* a camera for reviewing after an accident. But that person has a paranoia that makes even me blush :) +@Achifaifa I’m just saying, “it’s the live-streaming panopticon of New York City! Bloomberg Bloomberg” is uh… prooooobably not true. +@jmdeliso also I consider Skyrim’s magic system the funnest by far. I actually can’t play magic in Morrowind… +@jmdeliso I feel like large portions of Oblivion were fairly uninspired. Skyrim recovered a good portion of it. Good environment +@Achifaifa clearly they’re for reviewing footage after an accident. But it feels creepy to point one up at your face without warning. +@TimoHirvonen @ChromiumDev oh thank gods +RT @TimoHirvonen: RT @ChromiumDev: Animated GIF decoding time was sped up 50%: https://t.co/jUKmssqz5i lolcats, Chrome fast. +@ZadowSapherelis @m1sp eeeeeee +This is kind of creepy. But Citi Bike is a privately owned company. It is not “New York.” http://t.co/50RP7mrd8i +@misuzulive which one is that? +At least, the reddit comments said it was a UK landline thing; I barely remember using them, but I don’t recall US phones doing that. +A sophisticated bank fraud scam that relies on quirks of UK landlines http://t.co/ScBMmrFrMW +RT @mattblaze: MIT has released the "Abelson Report" on its involvement with the Aaron Swartz prosecution: http://t.co/FgH1IWogQ0 [pdf] +@nrr aren’t you glad we live in a universe that doesn’t lag and crash when we get too frisky? +@mike_acton someone needs less crunch time +I’m pretty sure at this point you could accuse @briankrebs of anything and his local cops would laugh it off. https://t.co/CK4pqsSZEp +@miaubiz http://t.co/MFwpYikwoY +I can’t be behind UnthreadedJB. However, I *might* be Pinkie Pie and I am definitely Satoshi. Rumors settled. +RT @capotej: programming http://t.co/8hAUv0Xa4e +@i0n1c do you really think I would NOT put pink and sparkles everywhere +@KronicDeth it could probably run the mod but I am running bare. +@Sektor9 I got rid of everything that would not result in hardware losing functionality +@i0n1c yo tree nose you’re only allowed to troll me if you unblock me so it’s a fair fight +@m1sp I only have a Divine Intervention scroll... let me think, that'd probably take me all the way to Castle Ebonheart +But here is my pretty elf. Because Morrowind lets you layer armor and robes http://t.co/RXEzwT87Pr +I’m going to bed, Morrowind, I have work tomorrow. “You can’t rest here enemies are nearby” +@nelhage @nickm_tor @matthew_d_green maybe we need a guide for how to unit test your crypto API usage +@miaubiz yes it is a kind of fruit soda. It is too sweet, I do not like it. However it is extra caffeinated. +@miaubiz … tea? Cola? Mountain Dew? Bawls ? +@chriseng no, no, it’s fine, I’ll survive. I’ll need a way to find y’all when I stumble off the plane… +@attritionorg most kawaii, @0xabad1dea. Most desperate for awards, @0xabad1dea +It’s that time of year when the very dignified @chriseng starts drunk texting +@vogon @nickbreckon @chrisremo *takes notes* +@matthew_d_green this is all perfectly apparent. Why even document it? :) +@raptastics @natashenka they don't get paid until you confirm you received it or the dispute period expires. Good plan I think. +@jmdeliso I would put Skyrim between Morrowind and Oblivion +Guess who forgot that Morrowind ghosts can only be harmed with silver weapons #dead +@natashenka I’m two for two so far +@thegrugq sir yes sir +@WeldPond not on SSDs integrated into a tablet there aren't +"Get a real PC" he said "you can't play games on that thing" he said "the SSD is small and there's only 1 USB port" http://t.co/WKpUJoy3pM +Now to do a battery rundown test of the tablet running Morrowind and see how that compares to a flight from Boston to Vegas +I remembered to get three ounces exactly of lotion to take to Defcon. The TSA can take my dignity but they can’t take my complexion +@eevee welcome to this end of the network. There are hackers, watch your step +@Zookus Duel Masters! It’s time to d d d d DUEL! http://t.co/2gyRaJcZ3V +@hokazenoflames the video card isn’t a gamer’s card but it still plays most things fine if you turn off the extras. +@hokazenoflames well, I didn't cheap out on this tablet. It is an i5 with 4GB ram. It's fairly high end laptop range. +@DrPizza http://t.co/IeSvYlv5Yn +@DrPizza well he kind of did a whole song about DOTA several years ago +RT @TNG_S8: Picard must choose: caulk the Enterprise and float it across a tachyon river, or attempt to ford it. Barclay gets dysentery. +@DrPizza dang it man I don’t have time to learn about the creepings and the sleepings and other words I learned from Basshunter +@pusscat @smallesttiger aww :) we were broke too. I ended up with my mother’s ring +@homakov no idea. But elder scrolls 2 is free and runs in dos box +@DrPizza it often breaks real-world exploits. I added steam.exe and steamservice.exe and they seem to be working fine +@DrPizza do what I’m doing: opt everything into emet +@homakov it’s on steam you know +@homakov I've written fan fiction about my Dunmer character if that's what you're asking... +It's a shame my tablet doesn't quite have the oomph for Skyrim... but Morrowind should run juuuuust fine :) +# 361996393361051648 +@charliesome I've been using tablet computers for many years. First rule is: don't remove anything related to the tablet hardware! D: +I should get out my radio antennas and fool around *thunder rolls* or not +@kevinlange you know why I followed you? Because you claim to be the shadowy force behind the miku telnet host. That's why. +@WeldPond the latter. Because I've never once in my life clicked a link and it was an RTF. Certainly not from browser to wordpad.exe! +Protip for anyone else taking Windows 8 on stage: sidebar -> settings -> notifications -> hide for one hour +I'm fiddling with emet because this is the computer I'll be taking on stage and I know y'all have Steam daemon 0day +Of course that reminds me of my most fun-to-research blog post: the time a vendor app ate ram when I shook the tablet http://t.co/4c9o7b2gcn +@WeldPond Yes. I am saying that is lame. +@hokazenoflames http://t.co/4c9o7b2gcn :) +Oh, some of these *are* signed, they're just missing fields like company name... +@hokazenoflames I trust you saw my article about the debugging utility with a memory leak that Acer left on my tablet? +Almost every process running on my Windows machine is signed. The six that aren't were all preinstalled by Acer. Thx +Oh, that compressed badly. It's the list of processes emet protects by default +Who even gets owned by a wordpad exploit I mean seriously http://t.co/fuYA1uzJYP +@Jonimus so is your favorite color black, or white? There's more black... +@m1sp that quote on tumblr is the most mispyish thing +@Jonimus contrary to popular opinion, that’s not even my favorite color +@JackLScanlan the future +I found the USB hub. It was directly under my chair, tangled up with a USB mouse that is exactly the same color scheme +It's okay everyone... I'm trustworthy http://t.co/yRTWxUhCUo +@almightygod I mean nobody knows it’s a parody :p +@kyhwana that is a good thought. I will check when I can +@MaraWritesStuff @qDot in New England, we have novels. +I keep forgetting my iPad is still set to Dutch, mostly because Tweetbot doesn’t have that language, then I see a button like “snij bij” +@almightygod linking the Daily Currant without a warning isn’t nice, Mr. Godhead. +@jesster_king it’s actually just my gaming hard drive. It has eve and guild wars on it +@m1sp @ibutsu in other words Mispy dearest you are as haplessly hopeless as I am +RT @snipeyhead: Hah. http://t.co/sSX3S98RgY +@m1sp @ibutsu you wear coats when it’s not cold and eat a lot of macaroni and cheese I am positive of this +@Kufat offer not valid until USB hub is in my hand +I will give three dollars to whoever can tell me where I left my USB hub with my flash drive plugged in +@m1sp @ibutsu I kind of envision you curled up under a blanket in front of a laptop in a dark one-room apartment is this accurate y/n +RT @solak: Headed across Long Island Sound on the ferry. Of course I had to snap this pic. http://t.co/RhrIVDRZqt +@snare as opposed to… +@ibutsu @m1sp am I idealizing your behavior Mispy +(She apparently saw the news on TV and inferred, correctly, that everyone in infosec knows everyone.) +My mother just texted me out of the blue to ask if Barnaby Jack was really his name because that is clearly a pirate's name. +This program's sanitize function may be nearly useless... but at least they only used it on about half of all code paths that create files. +@kebesays possibly relevant is that I definitely typed echo "blablabla" > .. just to see what would happen :p +@kebesays nope; it's a folder on my local system that I just made. +Ya know how Terminal.app shows cutesy icons for what kind of folder you're in? Okay, what did I break? http://t.co/9aUWf9uIvX +@arlieth I mean the code underneath. If they're also doing the visual design, that's PROBABLY two mistakes. :) +PSA: if you are letting your research scientists write your web interface, you have made a terrible mistake +@nudehaberdasher "bluh bluh bluh it's a Roman numeral ten" - Apple designers +Support ticket: urgent high: need new flaw validity setting. "Valid as HELL" +This kid totally blew his chance for an amazing final line of the article http://t.co/eY6KtuA4Fb +@ra6bit @dildog it’s ok. HR doesn’t have twitter +@dildog check the internal humor list for a screencap… it’s not a security bug it’s just hilarious +I should renegotiate my contract to state I can submit any customer code that makes me laugh until I cry to DailyWTF +string sanitize(string path) { return path.replace(”/”,””);} Yep that’ll do it. You’re safe. I can’t hack this. Just don’t- oops too late +Everyone else is already in Vegas, it seems. See you Wednesday night… +@kevinlange I don’t care what Apple says. “OS Ten 10.8” or whatever sounds dumb. +@hypermice they have been since about 2002 or so +@hypermice @kll @nudehaberdasher apparently the “official” way is “oh es ten” +@kll @nudehaberdasher oh es ECKSSSSSSSS +Also @nudehaberdasher pronounces OSX the same way I do so I award one (1) abadpoint +Dr. @0xcharlie and @nudehaberdasher on real TV! http://t.co/33BKzBcUWV +http://t.co/gC4MRtGMZx “A couple weeks ago I discovered a way to gain arbitrary shellcode execution via PowerShell (on RT)” +@chibitech (I guess I was closer to blonde then.) +@chibitech when I was about 13, my father’s exact words were: “If you go to Japan, they will all say, you are Sailor Moon! We love you!” +@chibitech I’m kind of scared to go to Japan now. Would my obvious foreignness discourage them or encourage them? :/ +@Foolishoverlord on the wall… the picture was not taken straight on to the mirror +Here is a moth on a mirror for you. I’m sad this was the closest the camera could focus http://t.co/2VlhG47fbq +RT @TiloJung: "The sudden reconsideration of post-Sept. 11 counterterrorism policy has taken much of Washington by surprise." Thanks, Edwa… +@thegrugq hey I learned a Thai insult http://t.co/UtFLw5j6vj +wow this article about paleontology sure has a lot of comments *third comment raises question about possibility of time travel* oh nvm +@hypermice (really what I was getting at is that I sound like a teen but I’m an adult and I already have my degree) +RT @Shit_MSDN_Says: Unsafe code is less secure than safe alternatives. +@_wirepair wow @thegrugq looks so young and boyish +@hypermice no it makes you 18 +@thegrugq it's dated 1517 how can you not tell this is pre-Elizabethan +No matter how bad your day is going... http://t.co/IuUmLXQgwC +@thegrugq @marshray pretty sure this trick still works on FBI +RT @harper: @0xabad1dea "dear nsa" is a fun twitter search +@marshray @thegrugq like my daddy always said, look for the ones with the class rings +@m1sp I read in EXCRUCIATING GORY DETAIL how to treat arrow wounds today. D: +Dear NSA I am googling how much different kinds of wounds bleed for a novel not for covering up those murders I didn't do thx +Word count 76,131 #livetweetingmynovel +@nrr I’m kind of you know talking and stuff +@nrr o/ +RT @natashenka: I need a name for my 6502 assembler for Tamagotchi. Please submit your best puns +@loli_vampire @washiiko dude how is she supposed to clean in that do you know what it feels like to get dust in there +RT @arstechnica: Why YouTube buffers: The secret deals that make—and break—online video http://t.co/pelULf0VPS by @JBrodkin +@m1sp !!Atomic Laser!! +@peacefinder he says "it doesn't count as incest when you're different species" +DH: "Aragorn, relax, those orcs are all level 1. Just use Greater Cleave" +@m1sp details, details +Think I just blew DH's mind by mentioning that Elrond is half-elven and his brother chose mortal during his "mortality suxx" speech to Arwen +@washiiko I'm saying he's going to actually buy everything for PC anyway and the PS4 will cry. +"I can't wait to get a PS4 so I can actually buy all the games for PC" - paraphrase of my husband +@singawhore @sophiaphotos 80s apparently +@CyberSquirrel1 why is it ALWAYS Virginia +RT @netik: Nice SSL man in the middle attempt, SFO. http://t.co/VGKdy8HiMl +# 361633584752230400 +RT @sophiaphotos: Trans* folks turned away from ER and told to see a vet. http://t.co/hP4zK5OEbr http://t.co/U9s8u1J3rq +I fully endorse @Hakin9 for their pwnie nomination. They really deserve it. +@meangrape that was kind of part of my broader implication to begin with. +@SpireSec @monsterlemon no, I called them stupid dummies I am pretty sure :) +@ScratchFreedom "normal" in quotes. +@SpireSec @monsterlemon there you go mis-ascribing things to me again :) I believe in both freedom of research and pressuring vendors to fix +The psych[iatrists|ologists] all started from the flawed premise that I wanted to be "normal." Oh hell no. +@SpireSec @monsterlemon in particular, the research that prompted this was not paid for by Volkswagen. They have no right to silence it +@SpireSec @monsterlemon my opinion that full disclosure is A Very Good Thing remains firmly in place, I assure you. +@thegrugq @homakov actually I just live in a liberal commie outpost called Massachusetts +@IRStrutt by ordinary locks I mean pretty much everything you're likely to see in the real world short of treasury vaults. +@homakov it's just a neighborhood very near clusters of tech companies. Rent is a bit high but not absurdly high. +@SpireSec @monsterlemon so this whole thing was you assuming I'm completely colorblind to nuances? :\ +@SpireSec @monsterlemon maybe my philosophy is not a black and white 100% immutable absolutionist little thing :) +@IRStrutt I *have* a deadbolt. So? +.@homakov You're wrong. My neighborhood has as many Indians, Africans, and Asians in it as white folk. If not, added together, more. +@SpireSec @monsterlemon you don't understand the difference between being paid to do a review and choosing what to do with own research? +The psychiatrists I've met were all useless at dealing with someone who was never neurotypical to begin with. They lack imagination. +@SpireSec @monsterlemon how many times do I have to repeat in this conversation that oh guess what the world is still imperfect +@SpireSec @monsterlemon they're idiots who won't take advise they not only asked for but PAID for? That's stupidity beyond my reach to cure. +@SpireSec @monsterlemon and then OH MY GODS YOU ARE SETTING A POST VARIABLE AS A COMMAND TO RUN AS ROOT ON YOUR DB AAAUUUGH +@SpireSec @monsterlemon we rank things by ease of exploitation and severity of impact. It's up front that most findings are fairly minor. +@elad3 yes, and the psychiatrists failed from top to bottom to really understand at all what I do +Now, I live in what you call a Nice Neighborhood, and that itself is a stronger mitigation than the actual locks. +@SpireSec @monsterlemon (many of our customers come to us AFTER they were publicly owned.) +@SpireSec @monsterlemon not 100% of the time. Sometimes we get in shouting matches with them about it. But usually. +@SpireSec @monsterlemon it turns out our customers actually fix the flaws, because they came to us because they WANTED to fix them. +The psychiatrists actually made a big deal about me worrying about stuff being broken into, as if it were irrational. +@SpireSec @monsterlemon My employer discloses everything found to the entity that paid for the review. My personal stuff is full disclose +@SpireSec @monsterlemon I don't know why you'd think I'd think everything is ever fixed. Being vigilant is my *job.* +@SpireSec @monsterlemon World Is Flawed - Perfect Security Not Measurable - Reel At Eleven +@SpireSec @monsterlemon stuff don't get fixed until it's disclosed because vendors are cheap. Disclose, disclose, disclose. +@thegrugq thank you doctor buddha +@SpireSec @monsterlemon "Known" vulns can be fixed. "Unknown" vulns can be exploited without detection. +I have a constant anxiety about my house and car being broken into because I know how !@#$ useless ordinary locks are. No peace of mind :( +@SpireSec @monsterlemon but my tolerance for known and unpatched flaws is effectively 0%. +@SpireSec @monsterlemon and who said there is no threshold of tolerances? +@SpireSec @monsterlemon but indeed, no software system yet devised by the minds of mortals has proven unquestionably secure. +@SpireSec @monsterlemon I said "it can't be secure if there are known vulns (that are not fixed)" +@SpireSec @monsterlemon yes that is definitely my position. That is all the nuances precisely +@LJonhny don't worry, she's not likable at all 8) +@LJonhny oh yeah. +Why doesn't this giant, page-long hyperlink go anywhere?! http://t.co/8QnKKBa8O6 #geocitiesproblems +@willbradley it's actually an ajax form that clears itself... before it gets the OK response. +@s0bercom it... it *is* black +@thegrugq no, it's when I stopped feeling suicidal over being bi, among other things... +There is a phone - like, the kind with a wire coming out of it - sitting in its dock on top of my back patio's fence. Am I being lured out?! +RT @sergeybratus: @0xabad1dea It so happens that the "worldview change" token reloads eventually, although not in the same room :) +@testbeta .... wat +I already spent my one "radical worldview change" token in college. I'm officially Old(tm) and set in my ways now. +I know I come across as about 16 on Twitter. I'm irresponsible as heck but I actually already took Philosophy 101 about seven years ago +@CliffsEsport I believe in leadership earned through respect and trust, not in Rugged <s>Individualism</s> Selfish Jerkism :< +@CliffsEsport wow. THAT was uncalled for. :( +@CliffsEsport I'm saying I don't agree that "to oppose something is to maintain it." I'm just being snarky. I can't turn that off. +@CliffsEsport I, too, base all my philosophy on fantasy novels (it's true. I just also happen to write the fantasy novels I base it off of) +@CliffsEsport I'm pretty sure I don't have any 6th grade art teachers to oppose at the moment +@CliffsEsport no actually, my childhood access to fantasy novels was fairly restricted. +@CliffsEsport I sincerely regret my past willingness to submit to arbitrary authority. +@CliffsEsport oh, if I had known what I know now, I would have turned a lot more things in late or incomplete, instead of being an angel. +@CliffsEsport I think I am old enough, smart enough, and SUCCESSFUL enough to say no, she didn't teach me anything. +@CliffsEsport she completely ruined something I had worked very hard on and was proud of, solely out of spite. Could have written on back +@CliffsEsport I already *knew* it wasn't supposed to be late. She taught me nothing save contempt for arbitrary judgment. +@soulmech @vogon I feel like you two should probably meet each other +I will never forgive the 6th grade teacher who wrote "D" in red ink on the FRONT of my art project because it was late. Hateful witch. +@netmork Yes. There are two extra syllables because uhhh, it's translated from the original Japanese and that was the best I could do ;) +Compose carefully Submit with trepidation Internal server error. +@m1sp I'm starting to like Tamal. I'm a horrible person, developing characters just so I can murder them in book 2. +@ra6bit on my honor I will not be drunk +RT @bascule: 1984 was "We're at war with Oceania. We've always been..." 2013 is "We can't tell you who we're at war with, that's classified… +@willbradley a pterodactyl may or may not be involved I can make no guarantees +@m1sp people who reblog sad things get hugged +@WhiteMageSlave he's doing it ALL WRONG you see +@WhiteMageSlave did you read the new part where Chakori chews Barsamin out for not falling into her trap like he was SUPPOSED to +@WhiteMageSlave lol I guess you really like the Alks +@WhiteMageSlave all my IRL laughs this is perfect +@inferno232 hmm, that's just crazy enough to work http://t.co/H1T5jzyYhq +I'm gonna take a screenshot. Oh, there's a smudge on the screen, lemme clean that off fir.... wait. +@0x00string no he is the wife. Definitely +@0x00string I already did that... the door doesn't shut... +@0x00string husband says I'm not allowed to get any babies until I learn to keep my room clean +@0x00string now I just need to get some children... +@Raxphiel but you know when it's 100% finished you HAVE to read it, no excuses. I started working on this back in college... +@0x00string I have OPINIONS about SOFTWARE. +@0x00string my children will grow strong feasting on the flesh of software that has displeased me +@0x00string I WILL WEAR GOOGLE DRIVE'S SPINE AS A NECKLACE. MY CHILDREN SHALL DRINK FROM ITS SKULL +@Raxphiel I can't make heads or tails of the Chinese one honestly... +@Raxphiel Also I own a copy of the first book in seventeen different languages so... +@Raxphiel daaaaang dude. Never too late to start. But the first two books are written to a low reading level, unfortunately. +@Raxphiel did you finish the first Harry Potter book? It is currently a little shorter than that :p +@Raxphiel HEY WANT TO READ MY ALMOST-DONE NOVEL +@Raxphiel I AM AN ARTIST SIR +My mother is going to disown me over this novel. I killed off a main character...'s horse. +@m1sp chapter 19, in which Tsovinar shouts at a horse and is angry it has the audacity to ignore her +It's a shame how insensitive Twitter's follow suggestions are to context. Yes Twitter I know all my friends are talking about him. He died. +@m1sp <3 +@joshrossi in any case, I do not believe there is an official google drive Linux client. +@joshrossi if my trouble keeping things in a consistent state doesn't warn you off that, WHAT WILL? +@JeffCurless it's actually a mess of python and obj-c glue running *on my system* :( +@BenBrocka it's the same file!!! the exact same file +wtf is this google drive do you think this is some kind of GAME you can't just rename my file to have a "(1)" in it http://t.co/1I6JsKcR5b +Oh good I got the document synced. Good thing it also synced the open-for-editing lock file and hasn't resynced that it's not locked anymore +(The chapter is not lost; it'd be backed up on the other computer; but I was kinda hoping to WORK ON IT maybe) #UIRage +"Sync complete!" Google Drive you filthy liar I am going to strangle you there is an entire chapter missing from this project file you litt- +@ArranDStewart just garageband actually, with some good soundfonts. +# 361269666569654272 +RT @alex_gaynor: OH: “I’m not entirely sure our org-chart is acyclic” +I wrote an orchestra piece very quickly, and I have no idea what I'm doing. https://t.co/5JCX4d6Jnm +@ra6bit pretty sure my hat has sequins or something +Just so we're clear, everyone: I am kinda a fan of dropping full disclosure bombs on commercial vendors. NSA: that is a metaphor kthx. +@SpireSec do you really think I just crawled out of the woods and never heard the disclosure debate before +@SpireSec ........... yeah I haven't spent the last eight years thinking about this or anything +@SpireSec no offense but you're not even making sense to me anymore. It can't be secure if known vulns aren't fixed. +@SpireSec it's objectively *fixed* when the exploit don't work no more. That doesn't mean objectively secure. +@SpireSec the customers already HAVE breakable locks. Criminals already HAVE private research going on. +@SpireSec time and time and time again stuff doesn't get FIXED until vendors have their nose rubbed in it by angry customers +@SpireSec you're probably thinking of the law against inciting riots. The whole point of that analogy is FALSELY shouting fire. +@pborenstein he's actually always like this, I'm just indulging him because he has an ouchie. +@chriseng yeah, but it costs a third as much as the chicken we had delivered last night :p +Went to McDonalds to source more chicken for DH. It's full of children openly weeping because the ice cream machine is broken +@seanmckaybeck http://t.co/8bKMeXc9Xm +A court ordering researchers not to disclose flaws sends the message “we will protect car manufacturers from having to own up to mistakes” +@wolffhechel @savagejen @aantonop ter’rist AND puppy-kicker +@savagejen @aantonop Prosecutors: “ZOMG Apple is shipping hacking tools to our teens” +RT @savagejen: It's not possible to anticipate whether any particular person or unknown algorithm will find you suspicious based on data st… +RT @savagejen: The problem with trying to anticipate what other people spying on you must think of you is that everyone will have a differe… +@MrToph I’ll hate you forever +RT @asintsov: And yeah.. because of this hotfix I got shell on Sony and Apple services. Have sent reports to them - so now they are secured… +RT @asintsov: Why all hotfixes for Struts2 redirect: issue limited to GET? It's also works via POST. Please be careful and re-check your wo… +@Paucis__Verbis dang +I had a dream about a VN game where the heroine must convince Father Time to willingly become young again. Thought of @HanakoGames … +RT @__apf__: this train's internet wants to MITM me to censor image content (shown in safari since chrome silently blocks) http://t.co/bTdS… +@realscientists I wrote a story about that in 8th grade… specifically about the one girl who couldn’t fly in such a situation @JackLScanlan +RT @dangillmor: Think twice before buying a car from Volkswagen, which got UK court to gag researchers who found bad security flaw http://t… +RT @Dinnerbone: Holy crap. XKCD: "Time" finally ended. A comic that has been going on for 4 months, frames were released every hour. http:/… +RT @smartwatermelon: @_minego @climagic there was a tip awhile ago “alias ffs=sudo” # when you get a sudo privs required, type “ffs !!” +@Myriachan no it's just SOUND FONTS +*clicks through installer* yes yes yes augh why is my mac rebooting ack ptth choke spittle RAGE +@thegrugq @homakov at least porn is legal here +@homakov @thegrugq color me completely unsurprised +@thegrugq @homakov no pretty sure it's all rails these days I hear it's pretty easy to get right though +@thegrugq @homakov waiting for Egor to go broke on USA prices +@Taiki__San all of those colors are 3000% better than Nokia Yellow +RT @SecBarbie: BLOG: SecBarbie Backup Buddies - My way to help ensure positive experiences at #BlackHat #DEFCON http://t.co/5OwtpmtcYV +# 360902332457811969 +@thegrugq I guess you're into taxi traffic BDSM or something +@thegrugq why dud you ever move there anyway +@thegrugq do you know what it's like to go to the doctor and some 60yo nurse leans over and coos "oooh you got good veins" +Oi @GooglePlay good job putting the flash widget for music preview UNDER layers of HTML junk so it's not compatible with flashblock reenable +@drwilco I'd go the conferences in Amsterdam instead of saying they're not cool :p +@SamusAranX I'm so sorry about your father. +“You can’t scare people skinny” http://t.co/mmjkAPsItU +@M0zilla but I will think less of every human being who willingly adorns their body with that deadly yellow +@kivikakk \o/ +Nokia: “Apple only sells boring black and white phones. We decided to innovate by selling SEARING YELLOW that will melt your eyeballs” +@melaniepinola @howtogeek it’s like how single people watch strip tease stuff and be like “yeah… if only I had that in person” and sigh +RT @BoingBoing: UK censorwall will also block "terrorist content," "violence," "circumvention tools," "forums," and more. http://t.co/BdLC… +@DrPizza a user mode process should never be able to misbehave so badly that Windows itself bails D: +@DrPizza whuuuuaaat +@Casiusss all right young man I will DM it to you but you had best not leak it or there will be Consequences(tm) +@comex check your DM inbox in about one minute +@comex it's *almost finished* +@comex my novel of course. The one that isn't about Adelie and Sammers but is still good I think :p +@jesster_king Harlem, NY is named for Haarlem, Netherlands. +I got my husband exactly forty pieces of chi— 39. Hey these are pretty good. 38… +@jesster_king no, you’re thinking of Harlem. Totally different. +RT @cpedraza: These 90-year-old headlines about radio could be about the internet today http://t.co/9nFaC8AVGQ +RT @Viss: This is probably the best picture I have of @barnaby_jack - from his 'I made an ATM shoot money' talk http://t.co/qiu2bBk0K7 +A kid in Haarlem is complaining to me about how all the COOL hacker conventions are in the USA. Dude, if *I* lived by Amsterdam... +I noticed the blue veins in my arm are really vivid today and now I am grossed out by the grossness that is the human experience +@solak @c0ntr0llerface I'm envisioning whole, unbroken eggs somehow wrapped around cheese +@GWakaMurray dominos. They do, in fact, sell it by the 40. +My husband came back from the clinic, collapsed in a painkiller-induced haze, and demanded that I order "like forty pieces of chicken" +@docsmooth @Viss (we're all hot by virtue of being hackers, there is no "not") +@docsmooth @Viss Hacker Hot or Hotter +@blowdart @Viss what part of "without even trying" made you think I even know how to use a curling iron +.@Viss but which one of us has the cuter hacker curls ?! +@Viss sure my hair is frizzy but I also get these ringlets without even trying http://t.co/cggFBhUfAP +@testbeta @SoundCloud I'm blocking Flash 100% on purpose, I assure you. Always have been. +@garrettreid not at all. But my other cousins would be the villain if it were a movie ;) +Don't worry, he's the cool cousin, the one with the rocket science and stuff +@tangenteroja @nelhage it's a sibling thing! +@tangenteroja @nelhage it's okay, the Americans have an infinite blank check for making fun of the British. They feel likewise. +@tangenteroja @nelhage the difference being.... +@katzmandu he is not baby, at least I assume, haven't seen him in a few years but I am guessing he got bigger +I'm apparently bringing my younger cousin with me to Defcon. This sounds like the setup for some sort of comedy movie +Surreptitiously opting in @MrToph to the Veracode BHDC chat-by-SMS group. Whether or not he's coming. +Yo @SoundCloud what gives everything was working fine without flash like two days ago http://t.co/Ac7yUIfXIQ +@nelhage however my husband adores it. And tells me of convoluted plot twists I think are severely contrived. :p +@nelhage (I have no idea if the author is actually British or just emulating them, but I can't stand it) +@nelhage yes, I read the first several chapters, but it has that dry British style I can't stand. +RT @clerian: @0xabad1dea Well, you should. It's not coincidence that the Ministry of Magic was compromised so easily. +This is the sort of thing I worry about all day. Operational security of wizards and witches. +Even if we suppose that wizards know nothing of muggle literature, Voldemort still went to a muggle school at some point. He's not ign'rant. +@pusscat yes but within that constraint I think REMUS was a poor choice +also the Harry Potter characters have TERRIBLE opsec. "We need a code name for Remus. lolol I know let's call him Romulus" "brilliant" +@clerian no, I am blaming his parents! Totally different +"you know maybe if his parents hadn't named him Remus Lupin he wouldn't have been so likely to be bitten by a werewolf" +@Md1986ok oh my gods don't tell @hypermice +@tapbot_paul he was just enough of a magnificent bastard that everyone gives pause to consider. +@tapbot_paul his family hasn't said what the cause of death is, they seem to be a bit overwhelmed +@m1sp someone claimed it was unintentional but they couldn't say how they knew; that's all. +@m1sp mispy dear I has a sad +Meeting him was on my list of things to accomplish this year :( +RT @chriseng: Confirmed by @treyford that Barns' session room will be open for friends to gather. #bh2013 +RT @dakami: Some can rage. Some can hack. Some can talk. Few did it all. To @barnaby_jack, you magnificent bastard. What the hell. +Oh no. @barnaby_jack. Is it true? :( +A perfect match! http://t.co/gr7z09JYw6 +@captcarl13 pretty much +@CyborgCode I *am* smiling! I just apparently have a small smile. +I am Difficult To Photograph. http://t.co/WoqC6d1MnF +@Raxphiel your avatar is actually looking pretty good +@amanicdroid @0x17h wow I’ve been so wrong about myself all these years! +TheMostBritishPictureEverTaken.jpg http://t.co/fmiAaa9qJH +@thegrugq I'M AN ADUUUUUULT +Yes the identical-looking links do actually go to two different places, at least. +I can think of a trivial optimization that will reduce the size of this message by 50%. Hit me up for details, Google http://t.co/gsrzYg9TTI +@thegrugq when I make you read the final manuscript you're going to be really surprised when it doesn't actually sound like that huh. +@odexcide they got the "concise" part down +RT @odexcide: @0xabad1dea Is this clear and concise? http://t.co/RzDlL0dMef +Swear to gods my first thought was "hey they forgot to cross the 't' in 'smite'" http://t.co/aLUC3286mq +(It’s not updating from the disc; tis an old disc. Nintendo is just abysmal at clear and concise UI messaging.) +@Myriachan Nintendo is just Really Bad At Interfaces. +@Myriachan it definitely didn’t come from the disc, I’ve used it a hun’red times afore. +@Myriachan the power bit makes sense, I just don’t know why it would need the game disc to stay put to do a system update. +“Do not turn off the power or remove the disc during update” Why? Are you re-burning the disc?! +Wii-U more like Wii-Make-U-Wait #amirite +@vogon you know what else Nazis used thousands of gallons of? Dihydrogen monoxide. +@0x17h that crazy you won’t stop retweeting seems to have already blocked me before I ever heard of them. How did I get so lucky :) +@jennifurret on the other hand, saying “God will judge them” is a great way to get anti-gay-marriage people to calm down +RT @charlie_savage: Creepy having armed MPs in camo patrolling behind each row of reporters & looking over shoulders as we take notes on Ma… +@ternus that, I can safely say, is *cheating* +That was a joke I am not actually that arrogant only very very close. Best infosec account is @thegrugq according to today’s zodiac. +RT @dangoodin001: “NASDAQ is owned.” Five men charged in largest financial hack ever http://t.co/R5ySgGex7T +It’s a good thing none of you nominated me for best twitter pwnie, because my flight would be landing in Vegas right as I win it. +@m0nk_dot @tqbf @nickdepetrillo way ahead of you, I don’t even have a license +# 360549079001997316 +RT @jeremiahg: RT @vegasnewsnow: BREAKING NEWS: Computers Down at McCarran Airport http://t.co/PEEnFHTyk3 #vegas < party is getting started… +@focalintent happy birthday 🎉 +RT @MammonMachine: Teens still share malts right #piracy #dads #teens http://t.co/svDUFKN5dV +@themarkcaudill I'm sooooo close to being done, and then having some edit fests, of course. +@Fengxii yes ~ +Novel word count: 71,965. Where was this productivity my whole life? +@imgur I can't repro now either! It was definitely more than ten seconds - a few hours actually - I happened to notice it didn't stick. +@imgur and no extensions that should be interacting with the page in any way that I know of. +@imgur Chrome, up to date, OSX +@imgur this is the particular page I was trying to favorite. http://t.co/JZQ6sJKfxs +@imgur no, I manually checked that it was not in my favorites page. Tried a few times. It only appeared after I did upvote and then fav. +@imgur hello I have a bug. I clicked favorite and it wouldn't "stick" after a refresh until I upvoted first, THEN favorited. +@Forkk13 um, no, I will not cry you a river, that's the point, I'm celebrating your misery +@ErickStaal sufferrrrrrrr :D +@waruikoohii and they'd be flippin' out because they didn't have symptoms of anything in particular and didn't know what was wrong +@waruikoohii I went to uni in the mountains, where it did this all the time, and every year a bunch of students got sick +I'll have you know it's currently 61 F / 16 C in Boston. How is your July? +@m1sp @WhiteMageSlave 70,451 +Humm.... guess I found a good reference for male musculature next time I try to draw something! http://t.co/JZQ6sJKfxs +@aeleruil I'm pretty sure it does correlation of sets of people who view certain pages. It suggests to me classmates + random Asian kids. +The simplest tricks can be pretty neat http://t.co/TpG4hBRcWz +"Today's comic is an allegory for the War of 1812." http://t.co/fLWrCV0Yk2 +@leighhollowell uh wow… breach of contract… +@blowdart it’s very basic. But I’m followed by a lot of beginners. +RT @thezeist: How HTTPS Secures Connections: What Every Web Dev Should Know http://t.co/S2Em9POvvl +@WhiteMageSlave … +@aeleruil it did the same to me. You know those Facebook like buttons on random webpages ? +@ZadowSapherelis @m1sp maybe like your avatar, but less sketchy? I need to scare up what passes for my character art to show you the chars +@ZadowSapherelis @m1sp I'm in 'merica though. Do you take paypal or whatever +@ZadowSapherelis @m1sp I'm almost done with my novel and I need a cover that portrays four teenage fantasy characters +@jruderman yes, but sloppiness in final human-readable output is more likely in some environments than others :) +@jruderman I bet you a dollar the common factor is Javascript +Wiki walk: start with looking up verb conjugation table. End at color variations of Shetland sheep. +@rantyben @thegrugq you're not hiking around the world on a whim to see my dress Mr. Ben? Lame in the utmost +@thegrugq @rantyben then I shall be sure to arrive by 8:59. +@rantyben @thegrugq or I could just trust that y'all will still be there when I get there at like nine +@m1sp @WhiteMageSlave super high school level passive aggression http://t.co/rLJ7Kq7aw7 +I better not be billed for that extra quintillionth of a megabit http://t.co/8JFv5WbVLy +@thegrugq is it in the Palms by any chance? That will make things easier for me... +Will my mother believe me that for the second year in a row I already have plane tickets to Vegas the week she'll be in town? (I do.) +@thegrugq okay. I just realized I will actually land in Vegas DURING the pwnies. After I said I would make it this year. *sigh* +@thegrugq hang on I just realized... what night is barcon? +@eevee the latter +RT @EFFLive: Amash amendment that would curtail NSA surveillance loses in a very close vote 205-217. +RT @wilw: Remember: when you sext with anyone, you’re also sexting with the entire NSA. #SextResponsibly +RT @EFFLive: Rep. Poe now saying the NSA phone records program is akin to a general warrant, which caused the US Fathers rebelled against t… +RT @EFFLive: Rep. Lofgren: The executive branch's report on the Patriot Act Sec. 215 this year was *eight sentences.* Congress is not getti… +RT @xor: Does Bachmann really think the phonebook has more information about us than the NSA? Wouldn't it be cheaper to just send them phon… +# 360126159528263681 +“If you can write assembly by hand better than a compiler, please contribute to the compiler” https://t.co/rgrdIA6Q0F +@m1sp look who's getting married! http://t.co/1Y9EIUGdr6 +@m1sp I do! But they’re at home and I’m at work T_T +@m1sp halp I am falling asleep at my desk +RT @savagejen: All my letters to Jeremy get to him, but only some to Weev. Jeremy's responses are untampered, while Weev's are steamed open… +@0x17h … +RT @Viss: holy shit! Adventure Time level truth! http://t.co/hKvkaX6k1b (h/t @missbadexample) +@marsroverdriver it is the opinion of Real Programmers that Real Programmers take notes with paper. +"Finish your severely oversized plate the restaurant gave you, because children are starving in Africa" "why is my child overweight" +RT @0x00string: @0xabad1dea that's why hackers wear ski masks! +Someone *may* have just taken a picture of me over webcam messing with their unlocked workstation. Not sure if I ducked in time. +@fredowsley smooth +This just in: floating point is satanic http://t.co/gBmRjYoj7z +“the C/C++ standards don’t actually mandate IEEE floating-point math.” Somewhere, an engineer shivers. +@0xcharlie sure, that too, I’m just saying, “ooh you need local first, wah wah” is a weak excuse on their part +Car manufacturer writes off car hacking via physical access as no big deal, because cars are never left unattended overnight. @0xcharlie +RT @0xcharlie: News article about me and @nudehaberdasher 's defcon talk http://t.co/uNERqKbXXB with amusing videos. +Aw yeah I found a good pencil that wasn't entirely out of lead. That's like Christmas. I made character art http://t.co/fEIyePh2T1 +@m1sp D: +@0x6D6172696F whuh? +RT @sergeybratus: A great summation of the non-constitutional nature of the current US executive branch surveillance, by @maradydd: http://… +@Packetknife it got a copy of my manuscript. +RT @0x00string: Feelin kinda bad about how many people keep RTing my erroneous tweet about what carrier tech support told me earlier. #SIM +@Packetknife you know I only say that to geezers I like +@Packetknife geez old man don’t give me a heart attack I thought the vans were coming for me +@Packetknife genuinely not sure if sarcastic or serious +@nelhage in this case it’s someone I suspect I have serious ideological differences with +That awkward moment when you try to retweet a peer and they’ve pre-emptively blocked your account from interaction. Wonder what I said… +@jennifurret I don’t care, raised both north and south. I consider it a “homeowner classism” thing, really. +@jgeorge 'm too tired. =.= +@hexadigital it's actually a trick to reduce unsolvable support calls when the user blames the last thing they installed for unrelated junk +@deathtolamo @ioerror well see I kind of don't want to get to Vegas to find my costume is gone because it was declared a terr'rist +@m1sp @ZadowSapherelis is your sister for hire for the arting of the arts +@Neostrategos no, that's what the denim jacket and biker's hat are for. +@Neostrategos to a certain villainous convocation in the city of sin, and maybe also this Friday +Anticipated mode of failure: TSA searches my luggage. Folded hoop skirt springs out. They think they’re under attack +@vogon that was an actual question you favoriting bandit +@sneakin I can’t fit in my computer desk +@_yossi_ yes, it’s bendy enough +I got my hoop skirt. It swooshes around in the most amazing way and is the least practical thing I’ve ever worn. +@vogon *leans in reeeaaaaaaaal close* hey kid wanna see a maaaaaanuscript +@vogon nuh-uh +Re: “don’t blindly trust vulnerability data”: some otherwise responsible companies just silently patch stuff like it ain’t no thang +RT @OSVDB: Black Hat: Don't Blindly Trust Vulnerability Data - http://t.co/S3slqZAKne +RT @0x00string: Talked to carrier: if last two digits on #SIM card serial are <25, your card uses 56 bit DES, and you're vulnerable. +# 359814678010011650 +@m1sp of course the kicker is that @ternus called me on Katarosi looking too much like me... +@m1sp "Everyone liked Houri better than Katarosi, especially the reade<backspace><backspace>" +Still haven't found out who left a Nickelback CD on my desk. Maybe I should check if it has leaked NSA documents on it. They'd never find it +I found Satoshi http://t.co/1yHt6WFhPT +There's no way I ever could have written "she laughed allowed." OSX autocorrect is sabotaging me. +@m1sp <3 <3 +@m1sp ps. not really +@m1sp I found two typos in chapter 17! You're fired ;( +@craftstudiodev even better is when the beginning programmers don't realize why this is a problem and willfully imitate it in production +"This sample code has no error checking for brevity" is the root cause of all bugs. +@vogon No official example. Community-contributed example has "no error checking for brevity" +.@vogon I'm not. I never **use** 95%+ of the functions I have to look up +Should I contemplate the finer points of this documentation or just go ahead and start self-flagellating http://t.co/eK38Z6jXVY +@m1sp fantasy economics! http://t.co/EFXSkX0V4z +@maxtch of course the real solution is RAM IS NOT THIS EXPENSIVE, APPLE! +@maxtch I’d want its suspension routine called so it dumps essential state and then give it a mercy death, yeah… +@maxtch not really. It becomes completely useless and I have to kill it manually… +It’s kind of cute how iOS realizes it’s out of memory and will just render giant gray squares on web views as if I won’t notice +RT @stevesilberman: Do not miss this lovely piece: What it's like to lack a sense of smell. http://t.co/H7LlUh04Wh +RT @AvoidComments: I once showed a comments section to a man in Reno, just to watch him cry. +@Packetknife more evidence for my theory that the children of infosec workers are the true APT +@Neostrategos I also have more followers than 4/5 of them, but I talk too much about anime ;) +@zedshaw you know, it was just magically there when I realized I needed it, and I didn’t ask questions. +@realscientists @JackLScanlan one day you wake up stare at the ceiling and go “whoa hang on I am actually legit now” +@zedshaw easy_install pip, obviously! Or just easy_install what you actually needed… +@0x17h oppressor power ! Hoo rah! +I can only begin to imagine why this is in my cube. Since @MrToph isn't here, @fredowsley is guilty by default http://t.co/4KLlYkCRzS +@horse_eatbooks it's salty *ba-dum-pssh* +@m1sp by birth I mean first +@m1sp that’s a good thought. I think I will write it off as the difference between birth language and otherwise +From my tenth grade class notes: "scientific notation - gzip for math" +@chriseng oh boy +Now the contemptible desk has gone and eaten my four-way USB hub. +@tapbot_paul … :| +@ktneely "noise floor" +Tomorrow I am giving a practice round of my Defcon talk to my Lovely Coworkers… no leaking footage, @Neostrategos +@addizins @wilkieii heck yes. +@JGKD705 no, they replaced all of them, so they’re as good as they were until they get popped again. +RT @nobodyrobot: do u guys know why it's turnips in animal crossing. it's because the word for "turnip" and "stock" are homophones in japan… +@thegrugq @WeldPond btw you saw my dress right +@thegrugq @WeldPond all the better for me to slam my faraday cage door on… +RT @leighhollowell: Has anyone ever gotten repeated unwanted 2 factor codes from twitter or is someone trying to get into my account? #just… +@WeldPond “guys”? +@tapbot_paul you don’t believe in the magic anymore (it’s not my style. But I appreciate it for what it is.) +RT @wilkieii: http://t.co/Ssu77uaeLk Study: female handles 25x more likely to be harassed on IRC, hindering women from collaborating and le… +@wilkieii @hypatiadotca I’m here to shank the first person who suggests that “obviously” I should not use a gendered online identity. +RT @bug_reports: Cannot get senpai to notice me. +RT @simplenomad: 13 yrs ago we were "paranoid" w/personal mail servers, encrypted chat, etc. Next time listen to us. +I was wrong. The desk *teleported* it to the table downstairs. +After searching for a solid two minutes, I am forced to conclude my desk is sentient and has consumed my RSA token whole. +# 359441229878005760 +@m1sp I am crying my heart out for happy reasons wake up I need to show you +@mescyn I was in private school K through 3rd, where sexuality doesn't *exist*, public 4th through 8th, then back to private +@hirojin Nope. These dozens and dozens of notebooks count, though... +I think I get now why everyone seemed to be so confused when I wanted to go into computer science instead of English in university. +... And here is my cache of goodbye letters from friends when I moved in 7th grade. Every single one says "keep writing stories." +@mickeypt hahaha it will be hard to miss I will be so excited to finally fulfill my oath of finishing the thing :p +@mickeypt yeah, as ebook +@mickeypt it's almost done <3 +@0xdeadbabe @puellavulnerata I apparently annotated a bit of it sometime after 7th grade and before I forgot entirely... +@0xdeadbabe @puellavulnerata dude, I have NO IDEA. I remember like, three of these letters, and I think I was making words up. +@puellavulnerata I have a confession. I wrote the Voynich Manuscript. In 7th grade. http://t.co/RTu6MUdixN +@Kufat actually I did say I was gonna marry a girl named Christina when I was 5 or 6 and my mom was like uhh no sorry can't +@kyhwana I kinda BSOD'd like "huh? How does that even work" and he just rolled his eyes +I literally had NO CONCEPT that homosexuality was a thing until my first big crush told me he had a boyfriend. +RT @InfoSecRumors: Rumor has it... @0xabad1dea flirted with Snowden in 7th grade. http://t.co/HZ29OSzyxK +Judging by my 7th grade journal, I was really into Tenchi Muyo, angels, and that boy in my Latin class who was actually gay. +I just found a note I traded back and forth with a boy in 7th grade. He said "I think the government is going to destroy identity" ... +@akopa @m1sp actually at that age my mother was kicking me off the computer every day when she got home. :| +@m1sp my father just mailed me my notebook from SEVENTH GRADE. I'm almost scared to open it. +RT @solardiz: ADS-B amateur reception with RTL-SDR in Moscow, Russia (inbetween SVO and DME): http://t.co/HFdBHpZzTb @antirez @0xabad1dea @… +@tenfootfangs though if any men would like to join me, a like one should fit with a bit of help from a tailor. +@tenfootfangs decided to really play up the fact that YEP STILL A GIRL when I go to infosec happy week this year +@m1sp a character nobody will like! http://t.co/KhiqjIN611 +But "Eowyn" isn't, with or without the little accent. Oh, I got issues with that. +.... That sounds an awful lot like I'm writing fanfic. I swear to gods I am not writing fanfic. I just happened to notice okay?! +And that was the day I learned that "Gandalf" and "Galadriel" were in OSX's spell check. +Saurik finds eight distinct implementations of the unzip code in Android. You know, the root cause of the crypto bug? http://t.co/O5qeZXKmyu +@WhiteMageSlave @m1sp makest* ** I'm awake +@WhiteMageSlave @m1sp maketh* but I mean I slipped up and Ismyrn said "you" to Barsamin +@chriseng well, see, I need the hoop skirt, which is scheduled to come tomorrow, do you see my dilemma +@chriseng guess I'll have to test-run it at 404... +@m1sp eeeee I got a dress like Clarion's! I'm so pretty +@okoeroo I'm gonna wear it to @thegrugq's party. Through TSA? Not so much. +RT @hackerfantastic: The SIM card 56bit DES key & hashing information leak exploit rocks my world. You could OTA install malware on the SIM… +The hoop skirt part isn’t here yet, which is of course essential to complete the effect +"what did you get in the mail dear" NOTHING JUST AN 18TH CENTURY BALL GOWN http://t.co/3hLNlhS18J +@savagejen according to old timers, it used to be that you’d go to the woods behind your neighborhood and find someone’s cache. +@savagejen google in its infinite wisdom adds calendar invites by default. +@pontelon @TraceBullet too bad the context is Britain ;) +@mavjs the friend is asking when +@chidpen so did I, but I am guessing someone wrote a bot to do that just to be annoying. +Anyone else get emails from twitter that their password needs to be reset? Asking for a friend (no really) +@m1sp there is a new section at the beginning of chapter 7 that is the rewrite of a scene I tried to sketch already, and new past!Rashk +@homakov 18. The only thing that waits until 21 is alcohol. Because you can vote and buy houses and die, but ALCOHOL? +@waruikoohii that’s your fault for being Box Bot +Also I’m pretty sure everyone I know got an eyeful of porn before they were 18 and lo and behold it did not destroy their souls +GFDI why do governments want to destroy the internet to “protect children” instead of acknowledging that is a parent’s domain +RT @mikko: UK Prime Minster is calling for "horrific" search terms to be blacklisted so they will bring up no results on Google. http://t.c… +@m1sp *hug* +RT @nrr: "Poverty is a more powerful influence … than gestational exposure to cocaine" #shitiread http://t.co/Yl3OiKd9lk +@Netbus :| +@kivikakk grats. +@m1sp ZOMG this is the novel I was working on ten years ago http://t.co/6Wypl1oI9O +@m1sp I don't remember drawing this. They look way too happy http://t.co/H3EnSs9g1v +@AdmiralA no actually most of them have photographs. I'd say @kivikakk isn't infosec but then suddenly she was writing shellcode +.@kivikakk I am the name that parents whisper to their children when telling of the dark corners of C +RT @kivikakk: @0xabad1dea oh hi! http://t.co/zzgMvUYI0t +@damageboy https://t.co/EXNqnVVS6V +@m1sp @WhiteMageSlave silly editors, you're supposed to point out to me when I slip up on the you/thou thing +# 359084613026594818 +@RenBussell bitly is a point of failure. It lengthens load time and often never loads at all. +@profoundlypaige and I'm not planning, I passed 63k words today, it's almost done :p +@profoundlypaige no, it's set on a fictional Silk Road with a touch of magic and a touch of steampunk. +@sam82490 @Cae_9 sure. they have tracking "value proposition" for the poster. Not so much for the person who can't get it to load. +I can't believe not a single pedant has pointed out those are MP4s with no sound, not GIFs. +@Cae_9 the one where you don’t. All URLs count the same length in twitter now +@snare sorry. Already married one of those +@thegrugq Spare me the sting of thy venomed tongue, wastrel +Dear everyone using bitly etc: you are actively slowing down the internet and increasing page load errors. +@profoundlypaige “that” Silk Road has presented problems to me while researching for my novel. +New York Times understands it is not a literal paper anymore; use of GIFs is a nice touch in this photoset http://t.co/0xhJIlOjFp +@jesster_king past tense of bid +RT @fugueish: @0xabad1dea Don't forget "make clean; make" +I have yet to meet the problem that couldn't be solved by blowing the cart, rebooting the router, or checking for graphics driver updates. +RT @bhangakhana: @0xabad1dea ooh, the bare infinitive - http://t.co/HwNxucvnVM +@pusscat lol you probably couldn't stand my husband... +@USSJoin *twitch* "thusly" is not a proper word! It is slang! +@bleebsen I bid thee win Mario Kart +@bleebsen this applies for bade (bid) + any verb. +@thegrugq she who spendeth her childhood reading the King James gets stuck speaking thus +@thegrugq that's right, thou art thou to me, but I'm not thou to thee. +@thegrugq I bid thee humor me. +Why on earth do we say "she bade him wait" and not "she bade him to wait", English? +@nickdepetrillo @djrbliss Mr. Bliss has never ONCE invited me to go to a shady place by taxi. He is impervious to my charms. +@vogon *checks phone* ಠ_ಠ +@nickdepetrillo looking back on that I'm pretty sure you're that guy my parents warned me about +#BHDCTips get in a taxi with @nickdepetrillo five minutes after you meet him, it will all be fine +#BHDCTips Inviting girls to the pinball museum might totally work. Just be prepared to be beaten. +@nickdepetrillo unless they ask. +@dan_crowley :’( +@0xcharlie if I succeed in reminding my husband he owes me a cat, you'll get a photo dedicated to you ;) +@supersat @osxreverser Windows' native string type is two bytes per char, so that should actually be hard to screw up. +@0xcharlie you do realize I have gone an entire year not posting cat photos because you asked me not to ?!?! A YEAR OF NO CATS +@0xcharlie I'M YOUR FANGIRL I COUNT +@0xcharlie your fangirls https://t.co/g0WJwu3Y4f +@anthonicaldwell yeah pretty much +Apparently Dear Housemate is moving out soon. Time to remind Dear Husband he said we could have a cat if only we didn't have a housemate. +@inversephase if I thought all men had to have muscles I wouldn't be friends with nerds like you HEY-OH +@inversephase they don't. I was trying to draw a muscular man. And didn't feel like googling it. +@WhiteMageSlave my kind of villain http://t.co/QHwjMPnbNw +@inversephase I DON'T KNOW WHAT DO MEN WITH MUSCLES LOOK LIKE my husband only has a bit of chub there +Time to set some appropriate music for writing chapters where characters die. http://t.co/VEXK6t1HVm +@wimremes and Belgium is like "we should probably have a revolution, but they're staying JUST on the side of the line where they survive" +@wimremes I just find it funny. All the other countries are like "look at this expensive but pretty symbol of our heritage!" +@elad3 nope. Don't worry you will definitely see me tweet links when it's ready ;) +@b3nzilla it's @weldpond actually +@Kufat black hat def con +#BHDCTips Lotion. No, for the air. It’s dry. Like, more dry than should be allowed. +@grygrflzr the joke ;) +RT @osxreverser: Microsoft, why the fuck can't http://t.co/m6Vd4oO2pJ passwords be longer than 16chars? What's the problem for your hashing? +@wimremes I don’t think I’ve ever met a Belgian who liked their royal family… +My super confidential sources are telling me the Ubuntu forum password hashes were stolen while I was sleeping. +@snare wait, those really ARE your feet? +RT @spookyskeletons: Hard to make friends as a skeleton. Not many ppl share my hobbies of attacking people with rusty swords and dropping n… +@pchengi yep. +@phyre5 passed 62,000 words yesterday… hitting the climax if the action +@Packetknife yep and I’m soooo close +@Netbus because she is one of the few people with magical power, which makes you go crazy easily, so she avoids emotional attachment. +@elad3 they’re inspired by Armenian. +@m1sp btw I succeeded in unnerving @WhiteMageSlave with the trope:arcwords +@m1sp but Solam's one and only POV section was snuck in to the end of chapter 14 +@m1sp WELL YEAH and it's like "yeah hey. this is a trap" "cool. good job picking the one bait I *can't* ignore even after you told me that" +@vogon you are The Worst +@m1sp good morning ~ +@vogan gahhhhh +@vogon did you just favorite and UN-favorite my tweet you monster +Motivation to write the final few chapters: how dang GOOD it looks on a kindle. http://t.co/zcl8SrOefW +@Packetknife tell her that’s illegal in America, glossing over West Virginia of course. +@aeleruil no, don’t do it, whatever you do, do NOT read One Hundred Years of Solitude +RT @mikko: The official #OHM2013 party network cable has an integrated firewall activation feature. #handy http://t.co/F3r4Y5VS5u +@m1sp I just wrote the George R.R. Martin chapter, where everyone Barsamin ever loved dies. +@callmegiorgio @Packetknife @ggreenwald don't send out the privacy calvary, I snagged an engineer and it's a chat system bug of some kind... +# 358731742271651840 +@fugueish @bensonk42 I'm not certain it counts as a security bug though. I was mostly joking about the bug bounty :) +"No way. This SCP can't still possibly be going. Wait why is it.... FFFFFFF symbolic link to my home directory in wine's config folder!!!" +@fugueish this @bensonk42 fellow claims to work for the googles. Hope I didn't give my super secret bug report to a charlatan. +@marginoferror but I don't have "multiple accounts" per se. Just two distinct gmails, of which one is the recovery mail of the other. +I may have broken google's account system somehow, hope I get a bug bounty ;) +@bensonk42 sent you quite the missive +@bensonk42 I don't see any chats / pending notices / alerts of any sort in g+ or gmail... +@bensonk42 an *internal* one? I've found trying to deal with google from the outside to be shouting at a brick wall. +@bensonk42 @adpaolucci and there was a "so and so wants to chat yes/no" pending request in the old email's chat bar. +@bensonk42 @adpaolucci specifically, I use incognito mode when I need to log into the old one, usually to get a password reset email +@adpaolucci I don't know a way to be logged in to two gmails in one browser session... +Most specifically, Coworker George sent a chat invite to my new account, and it showed up on my old account also, which he's never heard of. +@Kufat no idea. +My two gmail accounts seem to have decided to have the same chat contact list. I find that more than a little eyebrow-raising. +Word count: 60,261. I'm winning !!! +Me, every six months, my entire life: "WHOA! Have these birthmarks on my neck always been there?!" +Thanks for that mental image, Obama http://t.co/NLF9rzxm5C +As I slave over my manuscript about a boy and girl in competition to earn the right to use lightning magic, thunder shatters my sky. #metal +Download captcha is a flash widget? I'm sure that's totally innocent. +@m1sp someone go freudian on that plz +@m1sp as I write Ismyrn's inner monologue, this is the third time I've brought up "adults don't believe children when they tell the truth" +@kaepora :( +RT @apblake: 1: Snowden exposes spy programs. 2: White House says it's a discussion we should all engage in. 3: We all said stop. 4: FISA… +@m1sp I should be allowed to be this pleased with myself http://t.co/0bQGRbSKu3 +@m1sp the one kind of animal I know how to draw http://t.co/OiwChbsQ6H +@vogon so I guess the universe conspires to keep you down to one pen. +@vogon if you have one pen, you’ll never misplace it. If you have 5, you’ll quickly lose 4 +Abadidea’s Law: the more pens you own, the more prone they are to going missing +RT @BBCWorld: Norwegian woman receives prison sentence in Dubai after reporting she was raped http://t.co/Gvyjf3vwTs +@m1sp @WhiteMageSlave MOOD WHIPLASH http://t.co/pn2aGwLL69 +@m1sp @WhiteMageSlave remember this old page?! http://t.co/VFDfFUtxO8 +@m1sp @WhiteMageSlave I designed Constans before I even *met* you. It's not your fault he's my friendship type. +@m1sp said to @WhiteMageSlave: "Constans being Mispy I was trying to type Mispy's favorite character, but the statement stands" +I tried my hand at covering "Hagrid the Professor" from Harry Potter as chiptune https://t.co/wk8j5CiMaW +# 358372844125683712 +@Myriachan @xa329 W700, it's a true Windows laptop in 11" 1080p tablet, 8 to 10 hour battery +@Myriachan @xa329 nah surface pro has a terrible battery. Got better for the same-ish price. +@Myriachan @xa329 I just ended up spending the money on Acer x86 tablet with a heavier battery for ARM-like life :) +@Tomi_Tapio I had the next model after that. Loved it to pieces. Small but enthusiastic community. +RT @areur00t: @0xabad1dea and @attritionorg action figures lol http://t.co/eziy7kdKWy +@sakjur pretty sure he's an engineer but I'll grant @eevee honorary infosec status based on anger alone +@sakjur it's just some tech rag. I'm not on their top 25 women list either apparently ;) +@vogon I also want you to know this running monologue is your fault for putting "linguist" in your twitter bio +@vogon I want you to know I went on a linguistic adventure today to make certain of the correct way to pair "thou" with an imperative. +@WesleyFlake if there's anything I've learned from the Dutch, it's that the proper word to apply to anything positive is *lekker.* +@M0zilla #thejoke :p +These are the crimes committed in your name, America, the murder of innocents for association with the suspicious. http://t.co/y56TYc2G6g +@loganb @gu3st it's displaying unicode, I just can't imagine what would be sending bells. +@r2ranch you can se it when it gets here :p +No matter how bad my Dutch is, at least it’s a sight better than Siri’s. +@vogon take me +RT @bascule: Military Grade™: https://t.co/Iy8oXhEaMC +I only just noticed that my iPad’s interface language is in Dutch today. What was I doing last night ?! +@xa329 no I am pretty sure they would just flip out and throw out your hoops and call you a hula hoop ter'rist. +Callin' Oracle out on their systematic screw-up that has been the Java Reflection API http://t.co/cyis2eoMDL +Reasons it's good to be an adult: you can buy the princess ball gown you wanted when you were seven years old and no-one can stop you +@xa329 the "not crippled beyond belief" one is the Surface Pro, which is apparently doing okay. +@m1sp and if you're wondering, my gingerkin status is specifically because of that doll. +@m1sp but you must realize, this is spot on for everything I wanted when I was seven years old http://t.co/0Ved0XjT1K +@m1sp I had to go with a light color, because I am *not* wearing a black polyester dress to Vegas. +I wonder what the TSA thinks about hoop skirts being worn through checkpoints +@rantyben @thegrugq well, the dress and hoop skirt are ordered. I am going to be THE PRETTIEST GIRL AT THE INFOSEC BALL +@m1sp https://t.co/xZG3NgzVSz +@rantyben @thegrugq gosh well what is even the point if the people I want to snub aren't going to be there to have their hearts broken +@rantyben @thegrugq hey btw is ionic invited no reason just asking. +@pa28 it was already at 15 when I woke up... +@rantyben @thegrugq but what color should I get?! they don't have orange. +@rantyben I was just thinking about that... there's a fairy princess one that's not too expensive and looks like it should fit. +@gu3st so it's bell characters? must have been in Asian filenames or something (it's running a huge SCP...) +@TokenScandi nope and nope for sure... +My terminal icon on OSX had a "fifteen new items" badge that went away when I clicked it. Fifteen new what?! +If only somebody, ANYBODY had anticipated that the Surface RT wouldn’t sell well, and told Microsoft. http://t.co/wUIZlitnZi +@no_structure I grew up shoveling manure, didn’t you ? But no, it wasn’t a career, it was their version of teens staffing cash registers… +@lindseybieda context https://t.co/y635xtovqX +@Beaker @HackerHuntress I promise I’m not annoyed with anyone *on* the list :) +.@thegrugq I know, I only follow a few people on that list so it’s clearly wrong ;) +@pusscat @rantyben for me it starts making sense around #15… +“We did a list of top 25 infosec accounts, all men. We’ll do a second one that’s all women so it’s fair, implicitly ranked 26 and lower” +@rantyben *looks at official reply* *giggles* +@m1sp idk, you’re cute ? +Check @ODNIgov for some sort of stream of consciousness blogging from Clapper and/or minions. +RT @ODNIgov: “We collect metadata—information about communications—more broadly than we collect the actual content of communications..” +@m1sp *takes your hand and waltzes* +@kragen also, for the purposes of this discussion, tank tops have sleeves. +@kragen which, for me personally, means just as much “doesn’t look <s>slutty</s> suggestive” as it does “suits my body type” +@kragen that’s for going to work. This is for going to a party. I want to wear something I want to be seen in. +@savagejen people have gotten approximate results out of it in the past +@kragen srsly dude I know I play up the kawaii online but I am simply too tall and viking-ish +I should probably go to sleep instead of ordering a dress. I'll leave the tab open and see if I think I'm crazy in the morning... +@Packetknife I never forgave my mother for not buying a certain child-size ball gown while I was still small enough to wear it. +@_wirepair @thegrugq do they ship amazon prime +@jonathanstray contrary to my carefully cultivated online personality, I have a bit of a viking build. +@m1sp plot twist: Keromeir is a Skarmory. He dies when Clarion turns him to rust +goodness amazon I think bare shoulders looks hot too but some of us don't have the right body type. +It's one in the morning and I am seeing if I can get ball gowns on amazon prime +After midnight thoughts: I should totally show up to @thegrugq's party in a ball gown with a big hoop skirt and party like it's 1899 +@yeshua3s @abby_ebooks yeah, she's my little statistically representative mini-me +I wonder if I could convince the NSA algorithms that @abby_ebooks is actually me and throw them off the trail +@geekable sixteen bits is, like, WAY too many bits. +@DrPizza really? Well… +Shame on MIT. http://t.co/pCOOjvswjj +# 357998144354660352 +@m1sp aspects abridged, part 2 http://t.co/hatRQ4siCQ +Google Image Search: one in seven results may be random anime chicks http://t.co/ChKP754rN0 +@friestog @0x17h some people. +RT @SciencePorn: You're doing a documentary for the BBC. You get attacked by a polar bear. What's the 1st thing you should do? Answer http… +@skynetbnet @Kufat Mario deliberately does not clear ram across a reset, as a poor imitation of a save file :) +Glitching Super Mario by deliberately removing the cart and plugging in another during play http://t.co/4KbMRNsMIo via @Kufat +@matthew_d_green if there is a flag that will let goto'ing a bare integer literal work please let me know... D: +I'd be a lot more disconcerted by example 16.2.4 if it actually compiled in gcc like they say it does... http://t.co/Yh0mE9hI5I +@sciencecomic yes yes but what about THE PITCH DROP +Sooo... is there a CVE for this rather critical Android vulnerability? https://t.co/Hn0qbeTQx2 +RT @tobiasmayer: #Breastfeeding in Public: Tips to Avoid Problems. I love this twist—placing the "problem" back where it truly belongs http… +RT @MrToph: If you think politics is petty now, wait 20 years, when people seeking office can be tied to shit they posted online when they … +@m1sp dunno if you found the time to read *all* the new material? Finally settled on an I Want speech for Clarion... +"I couldn't sleep last night! I will sleep in for an hour or two." "bzzzzt hi I'm here to change your window shutters" +@m1sp also, that will be how the world ends, not with a bang but with a girly cackle +@thegrugq @matthew_d_green @0xcharlie he does kinda have that pallid super villain look… +@m1sp that is the sweetest thing anyone has ever said to me +First there was @m1sp_ebooks . Then there was @abby_ebooks . Now there is @m1sp1dea_ebooks , brother and sister souls forever entwined +@Tomi_Tapio attn: @attritionorg +RT @Kufat: Looks like the BB10 sends your e-mail account credentials to RIM: http://t.co/QZP7rXFxAa cc @0xabad1dea @neilhimself @afreak +Microsoft is still waiting on the government to let it stop withholding the full truth from us. http://t.co/Y1eoOmNhZq +@m1sp why do we have a fan bot +@m1sp yep, Rashk saw an opportunity to push his art even further, since perfecting this is what he wants +@m1sp ah, you're close, but... +@m1sp did you pick up on what happened to Erasmin :) +@m1sp I changed the fate of the Arcocelli family slightly ... +@m1sp if you have the link to the PDF in google docs it is called the end of the sky +@m1sp Clarion actually doesn't appear in it, though she is mentioned. She can meet Sweet Clarion soon enough +@m1sp that's what Official Tumblrs are for +RT @marshray: If you're so worried about privacy, maybe your contacts of contacts of contacts have something to hide. +@2s0cks I meant what I said and I said what I meant. A spider LANDED from the air, one hundred percent. +A spider just LANDED on my screen out of nowhere. Send in the Nope Troops +# 357649794581266432 +@m1sp wake up wake up wake up you have to read Ismyrn's orrriginnn storrryyyy I made it so much better +@stylewar @vikemosabe that does not imply the inverse, that any child whose parent says that but once and annoys me is "not smart" +@stylewar @vikemosabe then that I study parents of smart kids to see what they have in common, and it's not saying stuff like that often. +@stylewar @vikemosabe you're deliberately misreading me from start to end. First I said I don't like **that phrase**, -- +@stylewar @vikemosabe I said the reason was unreasonable. Don't apply actions as universally representative to actors. +@stylewar @vikemosabe I didn't say I thought she was a failure of a mother :) +@stylewar @vikemosabe also one is just as likely to hear a parent say it to an 8yo as a 3yo. +@stylewar @vikemosabe I'm not talking about infants. Children: more capable of reasoning than adults think, since 50000 BC +There comes a point in every writer's life when she makes a new browser window just to hold all the open tvtropes tabs. +@unixronin I think I got this one under control. +no, I don't need rescuing from his patriarchal rule, I'm explicitly planning on ze-ro pregnancies, that stuff freaks me out. +@jason_shell nope. +Husband says I'm not allowed to get pregnant because I'll hack the planet in a hormonal rage +@Mongoose_Q I guess I just considered it only from the perspective of we all consume huge amounts of text. +@Beschizza @Mongoose_Q though typography is considered by almost all designers but accessibility to non-visual consumers often isn’t. +@Mongoose_Q @Beschizza that is not what was meant and you know it ! You and I both interact with text all day. +RT @Beschizza: Typography isn't a snooty design thing. It's mainstream, because everyone with an IQ higher than carpet spends all day readi… +RT @runasand: 2010 study showed that 50% of Twitter users were 4 steps away from each other. The NSA will look at 3 steps when evaluating t… +@vikemosabe "because I say so" teaches children that everything is equally unimportant as a dictator's whim. +@vikemosabe and if you have a history of being reasonable instead of "because I say so", it turns out people will trust you. +@m1sp http://t.co/IbEq5jOl7A PLOT! +@csoghoian @ioerror just like phone numbers are totally anonymous +RT @csoghoian: Good to know that DOJ doesn't think that they get identity information when they obtain firstname.lastname@gmail.com via FIS… +RT @savagejen: In my college data mining course, the professor told us "data is money, never erase it". +@jennifurret I’m convinced they made their political system artificially complicated just so they could make more fun of Americans. +@VTPG I’d like to THINK a java implementation wouldn’t have overflow bugs… +@letoams that’s a funny way to spell 4294967295 ! +@VTPG well, the problem is that things are signed by default, usually, and signed has Complicated Semantics +Oh geez. Google Glass was originally configured to AUTOMATICALLY follow QR codes in pictures it takes. http://t.co/MjZALQETcM +This is why I am religiously opposed to signed integers. http://t.co/8PlTC7Ledc +@m1sp they better be cool things! +@m1sp I miss you in chat land hint hint passive aggressive public display +Also, a notable portion of kids on my "smart kids" list are adopted, speaking to it being parental involvement over genetics. +If I had to say what the parents of smart children I know have in common, it's that they talk WITH children instead of AT them. +@pkutzner it can be, at times. If your child doesn't generally TRUST you, I think I found the real problem. +@pkutzner now that I don't agree with :) +@RSWestmoreland they don't say stuff like because I said so. +@Kufat six? Seven? +I know I don't have kids, but I've made a point of observing the parents of kids I think are smart. +In the most recent case, what the mom meant was "because it's safer" but what she said was "because I said so" +I really hate it when I hear a parent say "because I said so." That is the least reasonable of all reasons. +"Hey Google Drive for OSX. I notice you haven't synced the latest document changes from my other machine. "*yawn* *stretch* meh" +@vogon what does it say about me that I have steam, I use steam, I bought things recently, and I have no idea what these card things are? +@whitequark @miaubiz because it reveals that unix wizards are, in fact, made, not born ? +@DustySTS would bla be there? I’m still not convinced he exists. +@whitequark @miaubiz it is, and I have a legit PDF copy. Unfortunately the whole thing isn’t illustrated. +.@tumblr first mistake: shipping plaintext password upload. Second mistake: not promptly fixing before reporter got fed up and went FD. +RT @darrenpauli: Tumblr Apple apps sent clear text passwords. Patch issued. http://t.co/iseXNGit6Z +@skynetbnet I’m just saying, pretty sure it’s a rubber stamp formality, not that she had direct input into the decision. +@skynetbnet I don’t think it’s different from how the president of the US is required to sign passed bills. +RT @schemaly: Women offered as perks in a job ad http://t.co/iT48GAGXx4 #everydaysexism #geekmisogyny #sodonewiththis +@natashenka thumbs up.gif +RT @AP: BREAKING: Gay marriage becomes legal in Britain as Queen Elizabeth II gives royal approval +RT @rantyben: Learning a new programming language is like a real one. Faux amis, weird idioms, and native speakers conflating illiteracy wi… +RT @McGrewSecurity: My niece has been located and is back home safe now. Thanks all for the RT's and good wishes. +@McGrewSecurity yay! +@Myriachan well, yes :) that’s local-only obviously, but, that’s both a jailbreak vector and a forensics nightmare :) +RT @MrToph: I made @leighhollowell a necklace using hard drive components. I think it came out alright. http://t.co/oR4hQOZE7B +RT @tomscott: The Vatican offers indulgences — time off purgatory — for following them on Twitter. I swear I didn’t make this up: http://t.… +@m1sp but no, the vaguetweeting has to do with finally figuring out what to do with this God of Strength who's been in the canon for YEARS. +@m1sp also, I am pulling out poetry I wrote in middle school for Ismyrn to quote as good ol' folk songs. Amazingly I remember every word +@m1sp *whistles innocently* it is a compliment unto her purity. +@L0sPengu1n0s google music lol +@m1sp my greatest literary accomplishment http://t.co/dnzAg5hgPO +I have a (legitimately purchased) soundtrack MP3 which has a title tag of "The Council of The Elrond." The Elrond. The Galdalf The Frodo The +# 357279156725231620 +Internet flamewars, 1600s style http://t.co/jhxdykuJgW +@jgeorge ps view source +@jgeorge try it and find out ^_^ +@jgeorge it didn't need Reiser, we can all agree on that \o/ +@landley @mirell but the bug dates to 2006, so it festered under his watch, so let's blame him anyway ;) +@SoundCloud it's more than a little annoying to show me this huge "get a pro plan!" banner when I **already have a pro plan** +@Ionustron Melissa Elliott, 198X - 20XX, one of those artists who gained fame only after death for her square wave waltzes. +@LnxPrgr3 there isn't really a context, just Torvalds being himself when rejecting some patch, and everyone being like, sigh, again +@Ionustron @bbbradsmith @kyuubethe3rd I’m a lot better now, but medieval harp chip is just not a happening scene. +@Ionustron @bbbradsmith @kyuubethe3rd I’ve only ever entered one compo, and it genuinely was not that great I’m sure ;) +@meursalt CSS maaaaaaaan it's pretty trippy +@meursalt right click, view source, peel back the layers of deception ;) +Oh man. Linking this to you is just too mean. http://t.co/oKVWJ8QXPD Don't blame me. +Here we go! Pointer mangling has been completely broken in things statically linked against glibc http://t.co/VgtSn9Qozs unit tests you say? +@puellavulnerata I choose to interpret that as he is stalking me personally. For beauty or for brains? +We’re in the quiet time of infosec news leading up to the convention glory blitz, I guess. Not enough for me to be mad about. +RT @SwissHttp: Anonymous commentator: "So according to NSA logic, I'm not a pirate, downloading movies and TV shows, until I actually watch… +@cowtowncoder not really. It turns out 50% of humans are women so their opinion is not statistically different from that of humans. +@jgoldschrafe @puellavulnerata would “shows typical signs of excessive aggression in a male-dominated social group” cut it? +@cowtowncoder so… “Someone told me I am too rude! I noticed she is a woman. I will make it clear I noticed she is a woman.” Yeah. Great. +@mtheoryx just another round of Torvalds being his cheerful self http://t.co/xldWjkPR5j +And remember that Linus Torvalds has a reputation that stretches far beyond his git tree and touches all of open source. +So yeah, go ahead and tell people it’s their fault for trying to contribute to Linux all you want, Linus is making himself an active problem +I notice that Linus, responding to one of the few visible women in open source, told her to go ahead and make it about gender. #sigh +RT @arstechnica: Man organizes satirical NSA walk, authorities come to his front door http://t.co/tsczQxaEiL by @cfarivar +RT @thegrugq: I really hope this matures and works out. https://t.co/r3kckjL7Ee +@snare yeah, that’ll solve open source’s splintering problems. +I was confused why the baristas flirted with George and not with me. What's wrong with me? I was then informed not all humans are bi. +Coworker George: "let's start a coffee shop with an IT worker discount. And skim all the badges." *teary eyes* he's all grown up +@Neostrategos yeah so I’ve been growing mine longer than that it kinda slows way down at some point +@Neostrategos grow it out four feet and we’ll talk… +@Neostrategos I’ll let you in on a secret. Everyone who is attracted to men is attracted to Sephiroth. Everyone. +It has come to my attention I might have only a vague idea of what men actually look like. http://t.co/6rG4OJCxdr +.@gsuberland iPad. “Never save, it’s all automatic!” +Got three quarters of the way through a nice drawing, and the art software segfaulted. That’s what I get for straying from paper. +RT @dhw: If you discuss a Microsoft 0-Day over Skype, does that count as responsible disclosure? +@thegrugq the word is “miles, leagues, whatever”, the unit is definitely five; I was studying Tocharian texts, actually. +@thegrugq but what a twist ending! Not seven days but five miles! +@maradydd my friend George Washington has been suspended from Facebook… multiple times… on the same account. +RT @maradydd: Been suspended from Google+, Facebook, &c. over your choice of name? http://t.co/EVPtGPIxf7 wants to hear from you. http://t.… +RT @jacobian: Linus hasn’t ever been a jerk to me, personally. However, he’s a role model, so lots of people think his behavior’s normal an… +@zedshaw I believe the situation is that the name was openly stated to be a pseudonym to begin with, so the whole character was fictitious. +@McGrewSecurity probably just a bunch of thought leaders then :p +RT @McGrewSecurity: This is my 14yo niece, who ran away yesterday, is possibly hitchhiking in Florida, call #'s (or police) or DM me: http:… +@McGrewSecurity did I? +Tonight’s news: “Hezbollah, America told me to tell you that she’s still not talking to you, but she heard that Al Qaeda said…” +@m1sp look at you ninja-faving. I just found a way to tie so many plot-hooks together it's like I planned it all along. I'm absolutely giddy +@m1sp you know how I leave myself open plot hooks trusting I'll find a way to fill them in later? :D +@invalidname Dunno. Turned out that wasn't the ending yet. He made a beautiful painting then hanged himself. Literature ! +(If you must know, the story ends with the wooden doll falling apart and the guy has a Buddhist epiphany about his body's fate as dust) +I think I just found some several hundred years' prior art for android sex dolls. http://t.co/GfURYLxHbB +@Mr_Reed_ it's a paper "men" sign taped over the permanent sign, implicitly women. +@Mr_Reed_ um, without the sign, it'd be a woman's bathroom, and you'd have to be pretty confused to not know the convention of entering +# 356921108978606081 +“Gee, not a lot of women at this con. Let’s bar them from the nearest bathrooms, that’ll show they’re welcome and first-class citizens.” +RT @georgiaweidman: Asked about the sign was told that since there aren't many women attending we should use the bathroom on the other end … +RT @georgiaweidman: So this is what they do to the womens bathroom at hacker cons? http://t.co/7xaCR1zHyZ +RT @steveklabnik: Linux 3.11 officially titled "Linux for Workgroups" http://t.co/T38nw7vCzf +RT @mtabini: Confused the hell out of a “Windows Service Centre” scammer by asking him if they could come fix my blinds. +@NaNoWriMo @ScrivenerApp I legit love scrivener, I’m coming up on sixty thousand words :) +RT @TheOnion: Nation Throws Hands Up, Tells Black Teenagers To Do Their Best Out There http://t.co/ugYiZYOLH6 +@sambowne I don't actually know for sure they were running wordpress, and the index.html is replaced http://t.co/Nn78YjhUc9 +@Soulmech @plussone trying to use one of the $50 alibaba laptops as an *actual computer* would be folly :p go $100+ +@Em_Space_ I doubt it's literally miles, just translated that way, but it's unambiguously five of them +Sigh... one of the webcomics I read is currently displaying a Turkish skiddie banner... must be a new wordpress bug. +@vogon ps. starring is consent +@vogon lemme know if you're bored and want a copy of the 3/4 finished manuscript ;) +@vogon I use it in my silk road fantasy novel. +@vogon even better, ask me why +@vogon http://t.co/lAsdhjBzmQ +@vogon so close, it has like, ten bajillion Sanskrit loanwords, but it's much much more obscure +@vogon ps. You get a cookie if you can figure out which IE language I am studying. It's not Latin and it's not Greek. +@vogon these pretentious Indo-European languages and their tenses and their cases +@vogon well, I'm not studying how to speak English! It's all one word, which would translate as he went. +Buddhist text: "He walked 7 days through water, 7 days through mud, 7 days across lotuses and 5 miles through snakes, screw patterns" +@vogon you, you're a linguist, I blame you +"verb suppletive absolutive; masculine singular ablative" That is a lot of freaking words for "he went" +@pneif @m1sp because it is fantastically obscure, delightful to my mind's ear, and was spoken by real-life redhead Asians. +@pneif @m1sp a few years ago, I arbitrarily chose to base the naming conventions of my fantasy setting on it +@m1sp the number of real Tocharian words I can recognize in context of real Tocharian texts is quite startling. I accidentally a language +@blejz it's the dining room, but we occasionally co-opt it. +@mike_acton I try not to in the general case. But there was no change in smell, no discoloration. +@mike_acton like, at my uni there were twinkies hung from the ceiling in a moderately humid environment going back years and years… +@mike_acton @AmyChu @fugugames longer than INFINITY? +@jennifurret don’t do that. Ignorance’s biggest trick is sounding louder than reason. Most people are mostly reasonable. +@Urraca @arstechnica Super Mario Bros 3. A masterpiece of constraint engineering. Which I am not very good at. +@jennifurret there are too many high-brow people who don’t understand that social data is just anecdotes in aggregate. +I just got a compiler engineer to yell and smack a table loudly enough to echo by bringing up Pascal +@BeethovensBook I don’t play, ask @codeferret_ :) +Every meeting between young employees here starts with commentary on DOTA. +@kaepora I’m pretty sure I made a libpurple guy cry once. +“@msftsecurity: #FillInTheBlank: The Microsoft Security tool I use most is __________.” Checking the dang signatures on executables. +Is there anything we won't put blinkie lights in ? https://t.co/OByNuQDE83 +@focalintent mek is pretty much writing a love letter to you up on stage right now +Confidential Veracode slide deck leak http://t.co/FAHcwSvQbD +@wimremes like, on paper? I filled about fifty pages with sha-1 rounds back in etiquette class… +.@chriseng is concerned about how amused I am with this charging connector... squid... thing. http://t.co/siT2PYxHeC +@m1sp my definition of success probably excludes most of those +You can be lazy or stupid and still find success in life. But certainly not both. +@wimremes got 99 problems but three letters ain’t one +@m1sp that’s Aramaz, he has a nice fuzzy fur on because it’s cold. And Hayr. Who thinks he’s probably Aramaz’s cousin. +@m1sp http://t.co/829pGWuftn +RT @mikko: New Mac Malware uses Right-to-Left override character (U+202E) to cause OS X to display this… http://t.co/wGxuRK1ReG http://t.co… +@invalidname my handle is known by most people here, it’s usually something like “This is Melissa. … the pink one” “OHH” +@dinodaizovi it seems the very act of observing that changed the result. +@mikko can I get a translation on that… +@bhelyer everyone whose name starts with Chris, including Christian. +At one time, Veracode was a solid 10% Chris. As the company has grown, Chris resources have not scaled. It’s 5% Chris and falling. +@ELLIOTTCABLE no, I’m pretty sure that says 1-883-YOUR-CIA +@spacerog eleven. +(When I say high school of fifty students, that’s actually 7th through 12th instead of 9th through 12th. And it was mostly boys.) +@hirojin they ended up calling me Misty. +It’s nice being the only Melissa around here (at work). In my high school of 50 students, there was another… and she was awful. +@m1sp good morning! Introduced Aramaz. I think I need some new fantasy swear words. +RT @BrandonDoughan: "The US imprisons a larger percentage of its black population than South Africa did at the height of apartheid." http:… +@chumeet I hope so :3 +@chumeet a silk-road setting fantasy adventure +@m1sp I'm hearing rave reviews about the "Rashk drowns someone" chapter from @WhiteMageSlave. +"You're so happy when you're happy. I mean beautiful when you're bea-- I mean--" - Dear Husband +@m1sp http://t.co/D8QKk6VZSc ... secret. +@dshaw_ and written over years, and essentially my diary. +My manuscript is currently over two thousand tweets long, if we max out every one. And my timeline is currently... oh... +@m1sp NotQuiteAsOld!Rashk does the most meanest thing and it's great +@m1sp haha, nope, but they should try that. This is at sea! +# 356562971712954369 +@m1sp it fell into this section which is going to confuse you because how did this even happen http://t.co/8YFinAb8Kb +Google Drive for iOS has progressed from not showing folders I know are there to actively unstarring things I just starred #UIRage +.@nickdepetrillo is harder to kill than I thought. He is a worthy adversary. May his car rest in peace. +RT @gather_here: "It ain't right, Atticus," said Jem. "No son, it's not right." We walked home. +@Ljay90 @0x17h may his gods judge him if he doesn’t give every cent of it away as fast as he can. +@DarrenPMeyer all I want to hear is "it's like Tolkien and Rowling had a baby, but better" ;) +@pa28 MY EVIL RUSE IS DISCOVERED. +@ErrataRob @sambowne that's actually a different project, which deserves my full attention after this one. +@ErrataRob as I hinted at recently, I think my stepsister has opened her eyes to what perfect little angels her deviant children really are. +@amanicdroid when we went to Amsterdam she got super grossed out by two girls kissing I don't think she's ready yet +In other words I'm about 3/4 done with my novel and then I will force each and every one of you to read it. Except you, mom +@m1sp the 50,000-word mark fell EXACTLY on the end of a sentence I am so happy +Ten years after the first time I participated in @NaNoWriMo, I finally have fifty thousand words in one freaking manuscript. +@m1sp word count: 49,929 Gahhhhhhhh just... a little.... more!!! +@singawhore (after all, women are a technical majority or tie in most places, but they're considered a minority anyway) +@singawhore people yell at me when I call it white privilege, I can't win :) Majority *power*, at least, even if not majority population. +@singawhore that's majority privilege, I can bum around in a hoodie if I feel like it and no-one's gonna assume I'm some sort of criminal. +@singawhore white people don't get harassed for merely looking vaguely suspicious nearly as often as black people do. +@singawhore No-one mistakes white girls for thugs armed with lethal skittles. +@m1sp I need a font that shakes on the page for Tsovinar right now +@1ncadence point of it was some people get huge punishments for not killing people, other people get off free for what looks to be murder +I guess hoodies are staying on the list of things that are my majority privilege. FFS. +@blazingcrimson my point is that locking someone up for TWO FREAKING DECADES for a crime that spilled no blood is excessive in the utmost. +@blazingcrimson oh, and remember, now the public is paying for her food, clothes, healthcare and shelter, for twenty years ;) +@blazingcrimson murderers and rapists get less than twenty years all the time. +@blazingcrimson Twenty years. You know how old I was twenty years ago? Five. The whole world has changed in twenty years. +@blazingcrimson yes, obviously. Twenty YEARS? +RT @damonayoung: J.K. Rowling is officially an incognito badass: http://t.co/SGA51abuoh HT @jasonpinter +@1ncadence and that justified twenty years how +@blazingcrimson yeah, and? Twenty years, for shooting at not people? That’s extreme. +@nickdepetrillo :( !!! +@m1sp seriously? Was this when you had blue hair? +RT @LauraALiddell: This picture summerises pretty much everything that needs to be said about the outcome of the #Zimmerman trial. http://t… +@m1sp eeee I found a word http://t.co/ahx3Xtvu5Y +@m1sp http://t.co/ixzu2DlW4G +@fascinated English, I'm afraid :p +@fascinated working on my novel, actually! +Another weekend, another coming near to the brink of passing out from hunger. #geeklife +@QuantumG @kenners my radio equipment smells faintly of day-old pizza. +@m1sp I just checked, so far there are seven instances of (some variation of the string) "HOURI!" +@m1sp and you can see where the land was torn apart by... what was probably not ACTUALLY a giant hitting a river with a mace. +@m1sp anyway, I hope the map makes it clear why the trade route works the way it does. +@m1sp the town that university-town.nsf is named for, I've wavered on its name a few times but I think I settled on Campanile. +# 356196834814861312 +@SamusAranX you haven't heard me complain about the disaster that is Twitter for Windows 8 before? :) +@m1sp look! An extremely approximate map! http://t.co/K0iz0WC1PG +@Dirk_Gently I'm sure it's Valve's fault something is wrong with the dmg, but there should be no such thing as silently fail to mount +steam.dmg silently fails to mount. Hoo-freakin-ray, OSX +@dijama http://t.co/QgicpZc6rO +"assassin" sounds like a hardcore word until you find out the etymology is "dudes who get high" +A cursory glance at Wikipedia suggests that all the FUN princesses, the kind who gambled and hunted and flirted, came from Portugal. +I like how everyone in this painting is clearly bored out of their minds with the ceremony. http://t.co/Dh0FDlpiiQ +@kaepora because open source still comes with politics, so much politics. I think it's good for there to be outright rivals. +RT @daveanthony: Congrats to Texas, who greatly limited abortion but did nothing to change inspection laws when a fertilizer plant exploded… +@DrPizza you’re acting like it’s a Nokia phone unveil, I think you need to sit down +RT @drlangtry_girl: THIS, gentlemen of Twitter, is how you help a woman who's being bothered by a creep when she's trying to read | http://… +@kaepora that would effectively reduce the world to chrome vs. IE. I think we need three competing renderers. +New chiptune, Stormwaltz, in which I attempt to arp. https://t.co/bn9vYUrfGo +I tried to use arpeggios in a chiptune, and it might be good or really awful, I seem to lack the capacity to distinguish. +@benwmaddox that can also happen as @mtheoryx just mentioned. +@benwmaddox abortions *are* a type of prenatal healthcare. Most late-term abortions are strictly medical in purpose. +@benwmaddox @savagejen the ones who died because of lack of access to prenatal healthcare. Texas ranks pretty high. +RT @savagejen: If you want to hear why abortion is important, talk to women you know about their personal experiences. Some might not be al… +@m1sp poor Constans. http://t.co/QhzPmgDJ5E +Not to subtweet extended family, but I bet my mother now appreciates that none of her children ever called her from a county jail. +Every time I think I screwed up, I can remember I have relatives who have screwed up so much so badly that I look 100% stone cold sane +RT @David0Monroe: "Only in America can a dead black boy go on trial for his own murder." ~ Syreeta McFadden +@_____C all parents, everywhere, hate all kids shows. +@_____C I think you may have missed that this is sanity-preserving self-mockery :) +@bdomenech @0x17h come to my neighborhood in MA. Saris and hijabs everywhere. Would love to raise a child here. +@m1sp @aeleruil ps wrote a piece I didn't show you where Shanlar is like "dude Solornel, you're self-aware of your mortality? Rashk is evil" +@m1sp @aeleruil I don't wanna anyway! http://t.co/p0Dh1sud9t +@m1sp @aeleruil me?! What did *I* do?! +@m1sp @aeleruil you confessed the SAME THING to me, more specifically, that your definition of cute was too mainstream, and you were ashamed +RT @JillFilipovic: A reminder that two Texas counties have maternal mortality rates that rank them between Somalia & Sierra Leone. #prolife… +@XTreeki @xkeepah high fives all around, it only gets better from here, the point where you decide to reevaluate critically. +@i0n1c I’d RT this with honors… IF I COULD +I just discovered this excellent blog column. http://t.co/DuXbABA6Mv +RT @slashdot: Aussie Telco Telstra Agreed To Spy For America http://t.co/65Pk7XFBEd +@strcpy @mdowd I have seen the man, this is exactly what he looked like. +Making infosec a better industry, one kawaii at a time +@mdowd @strcpy I *said*, needs more kawaii http://t.co/OkTRCNrv7s +@mdowd @strcpy needs more kawaii +@hypatiadotca but but the cannibals will get me. At least that’s what I heard happens to sweet innocent Americans abroad +@JackLScanlan I’m pretty sure the sort of people who dislike evolutionary biology aren’t aware of evopsych’s problems. +I wish I could give Malala a hug +@KairuByte information agency? That extra A matters a lot ;) +RT @estr4ng3d: Happy birthday, Malala! You're 16 and you've already changed the world. http://t.co/R5kZInPYGx +RT @ggreenwald: Carney said today Clapper "explained himself" about having lied to Congress, so that settles that. Does that work for all c… +@hypatiadotca aww… +RT @oh_rodr: Twitter, Inc. is looking for: Senior Network Security Engineer http://t.co/mFIGMSdb3m #job +@kaepora can you hear mine from Boston +RT @s7ephen: FaceDancer (http://t.co/6eG1dWQl63) screenshot. repeatable and intentional ;-) (cc @sergeybratus @travisgoodspeed) http://t.co… +@inversephase there’s a dunkin donuts right here by my house +@ra6bit they should hook up. Romantically. +@tenfootfangs well, then let me note that the games are HU-UUUUUU-UUGE, the most successful world building of which I am aware. +@nasko tweetbot remembers where you left off (it does scroll up, but, you’re still reading old to new.) +@tenfootfangs “still”? Is Skyrim a shallow well, that one tastes but once and it runs dry? I haven’t even exhausted Morrowind yet. +# 355828193409777664 +"Only once he was alone did he light his lantern." "Did you mean: lit?" No google autocorrect, you are bad and you should feel bad +Airplane crash? Better make racially-tinted puns, that'll fix it. http://t.co/kcmp7kEXeb +@Casiusss I assume so! +@m1sp good morning, sweet prince :p +Protip: if you're gonna use manga reaction pics, try to make it not obvious you clipped them all out of hentai +A dude just hung down from the roof in front of my window with a chainsaw revving. GEEZ HI HELLO #RoofRepairSaga +@Mordicant yeah, but not a medieval western Europe setting, that's been DONE. +@Mordicant and perhaps I am arrogant, but I think I know how to work the young media machine, on twitter, tumblr, etc, for Many Fans :D +RT @pithycomments: THIS is happening in the US. TODAY MT @SaraLang: Looking for a source on #tampongate? @HuffingtonPost's got your back ht… +@Mordicant I think I'm aiming for 60k for the first book. +@Mordicant the characters, characters who I know so well as brothers and sisters. +@Mordicant this story has been boiling in my heart for many years, arranged and rearranged and changed but the constant is not the plot but +@Mordicant it comes in fits and bursts a few thousand at a time. +Current novel wordcount: 40,598. By the definition of Science Fiction and Fantasy Writers of America, that's officially novel-length. +@spacerog yeah, they are new, and REALLY GOOD. +@1BlackICE1 Parsee: the blonde Persian Japanese bridge monster. Sure, green eyes, why not. +Why is jealousy said to be green-eyed? Having good, colorful eyes is something to *be* jealous of. +@d2acc1 it is a chocolate peanut butter one +I've listened to so much vocaloid music that synthesized Japanese sounds more natural to me than organically spoken Japanese. +@inversephase from reddit specifically? :< +There are people on my roof and they are tearing off my roof I'm glad I got the memo from my landlady or I'd be pretty freaked out right now +@Myriachan @rikardlang also, forgot to mention yesterday both my NESs are NES 2s that don't have that connector. +@Myriachan unfortunately, "how do I get this info to someone who both can do something and will" is an Unsolved Problem, case by case +@Myriachan fff, I somehow missed this yesterday. You sent me an email I haven't answered too... +@chbidmead @Falkvinge ie I don't test it, I make it so. +A chiptune - two square waves and one triangle wave - under the proverbial microscope http://t.co/NGba41wUnl +@chbidmead @Falkvinge by using my own layers of encryption, and by prosecuting the government when they're caught spying illegally. +Let's ask this artist from 1893 how "gif" is pronounced http://t.co/SMKzJMWjHW +@chbidmead @Falkvinge I'm a professional security researcher. My every *breath* is making the noise not so empty, good sir. +@Kufat in a bit +Random numbers: finicky http://t.co/aHLSlZsLOG +The landlady's roofing guys decided to park their truck squarely across my front steps. Like, if my door swung outwards, it'd hit them. +@basedwhale yes, so this outrage might stand after all. +Hey whoever thinks "abadidea" is their reddit username: no pretty sure it's mine, stop sending me password reset mails kthx +Peanut butter pop-tarts come six to a box instead of eight. This outrage shall not stand +@chbidmead @Falkvinge that never stopped me from demanding anything I feel I deserve +Also, I shall immediately adopt the term “born offline” to describe the vast chasm crossed only, so far as I know, by @jack_daniel +The fallacy of “you use Facebook so you shouldn’t expect any privacy” http://t.co/np2DEtahqg +@inversephase o/ +@jack_daniel all out of fuzzy pink bras? +@WeldPond you know none of that works for an intelligent child :) +RT @taffer: Rammstein does some coding: https://t.co/1YLQGcKKn2 via @twMaize +@m1sp true story: I use the word “convocation” so much because I attended one every morning for four years in high school +@m1sp I just woke up… +RT @swb1192: NSA gif, Pixar-style. http://t.co/Y86E06IExX cc @aral +@m1sp your new avatar is very you +Amazon browser extension: catastrophically vulnerable tracking code http://t.co/r04HneHwlu +RT @jedisct1: OMG. RT @DefuseSec: This is the worst crypto I've ever seen. http://t.co/iXzMETUWpO #php #cryptofails +Holy moley, someone actually posted half a million dollars for the Facebook not-terrorist kid http://t.co/ZIsVsP4Q3n +It's so cute when a married couple's chat icons go idle at the same time +@jesster_king I got the 64GB and I think about 30GB was free. Ended up compressing the drive, as it has little performance impact. +Google Drive has quit: Reason: PRIMARY KEY must be unique Oh goody goody good, my data feels so safe. +@jesster_king I paid $850 I think, $1000 must be with all the SSD fixings +@jesster_king http://t.co/IeifsKJ34C +@m1sp miiispyyy where did you go I just wrote a whole part where the perspective character is 10yo Eodar +@judsontwit pp-mck MML compiler. Tracker GUIs are the devil's work! +@McGrewSecurity @abby_ebooks I deny everything +# 355458649289793536 +@rikardlang <3 some of them are pretty old and hit some sour notes, but I think I am improving :) +@clerian I absolutely only use the Real True Channels, all expansions are blasphemy +@clerian I use the pp-mck MML compiler +Apparently my Very Special Gift is writing chiptunes that are mistaken for FM chips instead of the plain Nintendo chip. Keep hearing so. +@rikardlang (there's also a few songs in that soundcloud with soundfont cellos and oboes, I trust you can distinguish.) +@rikardlang there's about 24 of them in that there soundcloud :) they are all plain 2A03, no expansion. Two squares, triangle, static +@rikardlang it's the 2A03 <3 Emulated, because getting the sound off my old TV is A Lot Of Work. +It went away after I gave up and rebooted - airplane mode didn't fix it. But I guess that means it wasn't the feds, and that's BORING. +@Kufat ah, good/not good, I can still get messages even though my phone is convinced it's in la la land. +@Kufat kindly text me over real true SMS and let me know when you have. Debugging. +Apparently 108 is sometimes used by spoofers. Why would my phone be presenting a spoofed number as its own to me :/ +@meursalt the emulator I use is Audio Overload +@meursalt I have the powerpak, but that's a lot of work to get the sound off my only compatible TV +Uh... so my phone is self-reporting that its number is in the 108 area code, which I don't even think is real. +I think I found their secret base http://t.co/8jTmS53jTk +I wrote another chiptune, or rather, fixed up and finished one I started last year. https://t.co/D2htI6ZsMZ +It's always the side projects with attack surface that get you owned. https://t.co/JiLPGSGFMb +@m1sp and as an aside, note that all the women on the right-hand side have curly hair, and so does Chakori. +@m1sp what have I done http://t.co/qSrU6X6pLw +@michaelminella some of us prefer to live with fewer failure modes :) +@SamusAranX D': D': D': D': +@SamusAranX FYI your avatar freaks me out. The way he smiles. Never stops smiling. Everyone is h a p p y i n A n i m a l C r o s s i n g +My mouse is on the right, the cable goes left, wraps around keyboard tray, comes back, plugs in on right. Who wired this?! --- oh. Me. +@blowdart the "halfway" part was incidental. I mean as opposed to, like, the first time I heard of these problems, when I was twelve. +@Kufat https://t.co/sjRSTTlqun +@chosafine emphasis on the 2013 :) +Why did it take Microsoft until halfway through 2013 to formally decide to do something about its family problems +“Giving teammate bunny ears in class photo”, 1922. http://t.co/njXfThhpxJ +@savagejen @no_structure the universe ends, is reborn, and the next iteration finds out about your weird fetish. +@leighhollowell ;-; +@vogon I don’t think it will actually change anything. They’ll still show up, and it will still be in lower numbers because sequester.z +RT @atheistium: Just a daily reminder on why so many of us talk about sexism in the games industry and community http://t.co/S0U3lg68sc +@savagejen DID YOU KNOW “MELISSA” MEANS BEEEEEES +Buying a queen bee is $25… buying a queen bee plus literally thousands of bees bees bees is as little as $55. +A very long, wandering, and interesting post on mobile memory management http://t.co/HNra7OtA7K +@Kufat yes, I am unprepared to comment at this time +I’d comment on the Defcon/feds thing, but the site seems to *still* be down. +RT @afreak: Cat is out of the bag! Announcing a beta release of CanaryPW! (https://t.co/om03vAo88Z) - More details here: http://t.co/fo4EMR… +@m1sp ... or at least, that would be the implication in the interpretation of Clarion, which Rashk mostly shares. +@m1sp but anyway, it's a two-edged sword. It might not be Solornel! But that would imply someone kills Solornel while Rashk yet lives... +@m1sp I believe the word you're looking for is foolhardy +@m1sp do you know how many hundreds of times I threatened to drown the computer science lab in my future husband's blood for some offense +@SMBCComics err, has the random comic button always been so... deterministic? +@m1sp in summary: you wanna play the vague prophecy game? We'll play the vague prophecy game. http://t.co/FUny2706mG +@m1sp of course not! I changed the exact time and reason Clarion decided to aspect him. +@m1sp tweaking Solornel's early story to make it cruel in ways I'm surprised I didn't think of sooner. :3 +@iain_chalmers well, they didn't kill Al Capone... +@tapbot_paul someone proud of what they did +@DrPizza @blowdart yeah, I'm just saying, the root of the groupies is his friends instinctively sticking up for him on social media +@blowdart to all appearances, he was a dead normal college kid. Dead normal college kids have friends. +He's accused of 17 capital crimes. There's five dead, and I can't even begin to think of twelve other kinds of capital crimes. +@mleveck I just assume terrorists to have pride and admit they did it (and the evidence he was involved really is quite large) +I must admit I am a bit baffled that Tsarnaev the Younger is pleading innocent on all counts. Did his conveniently dead brother coerce him? +RT @TheOnion: Dzhokar Tsarnaev Rushes Out Of Summer Class To Make Court Hearing http://t.co/tmACylWcEQ +@Chispshot @AmyLukima also, I don’t recommend ending suggestions to women with “honey” +@Chispshot @AmyLukima you know “coworking space” implies she probably has no idea who this person is right +RT @egyp7: WTF? "The webpage at chrome://config/ might be temporarily down or it may have moved permanently to a new web address." +RT @AmyLukima: Guy in my co-working space is loudly talking about how he immediately deletes applications from women. Yay tech! +# 355080904298868736 +@m1sp Rashk, in his 50s http://t.co/dNO19RFngk +Oh good, my iPad connected to “attwifi” in this hotel without asking me. I’m sure there’s 0% chance it’s a rogue access point +The door opens. "Hello sweetheart," I say. "Hello," says a voice too high to be his. I turn. It's Coworker George. Does that make us married +@katzmandu @bdunbar @yesjrk when I make fun of anonymous people, you're not supposed to go and humanize them! +I have been given this screenshot of a now-deleted blogpost in which NASA reveals their admins have no freaking clue http://t.co/I8sQVKENnb +I know almost nothing about DNS and I just manually set up a WWW cname record in literally five seconds. Govt DNS admins, wat r u doin +@grp 404 +@vogon ..... my maiden name is Elliott. My parents, thankfully, did NOT give me a middle name that is also a last name AND a boy's name. +@grp I just set it up on http://t.co/cpqQzwiaPU in under five seconds. +@grp too expensive? Their DNS providers are taking them for a ride, it's a line in a config file. +Whenever the town sends us correspondence, they put my middle name on my stuff but no middle name on my husband's. What's with that +G+ is the ravenous beast which consumes APIs. G+ devours all. http://t.co/GnAfhGCPda +RT @deviousdrdave: @0xabad1dea You could play bullshit bingo http://t.co/nb5W6pfFhn +Blue dot problem solved, but now this banner is stuck over my tweet button. http://t.co/SG7Dz9eGVe +@zoevkl what is your avatar from? +You say mandatory company meeting, I hear two hours to work on my sketchbook +@lebijouambre @iShark5060 @MaxBlumenthal your absolute faith that he'd get off the hook if he was innocent is heartening. +@lebijouambre @iShark5060 @MaxBlumenthal if you think a sarcastic joke against no-one in particular is a real and actionable threat... +The blue dot is fixed, I take all credit +But Cyndi, all my best experiences in life came from meeting strangers on the internet and not telling my parents http://t.co/yT064L1lXK +@Myriachan direct message +.@chriseng I mean it's corny, cheesy, and an assortment of other words to describe things that look silly, not that it's bad per se. +@Xaosopher by silence on the DM wire +If you google "nsa kids" to find that ridiculous website, and click the first result... http://t.co/22DiIPjgmz +@Xaosopher my hordes are disappointing me, so far. +As such, there is a moratorium on sending me DMs until such time as blue dots learn where they belong +I'm so glad read status of DMs is serverside now! Too bad it's currently 100% broken and none of these blue dots will go away for any reason +Someone did the work I was too lazy to and double-checked that @NSApubrel is in fact a parody ;) http://t.co/MYJxRI8ryy +@MalwareJake I’m just reading it… +.@_yossi_ no, there’s a separate fax number. No-one old enough to know what a fax is would confuse a fax and a phone number :) +On NSA website: “Phone number for verification of employment: … All requests must be submitted in writing” +@Kronos666_ @NSApubrel getting verified is actually a pretty opaque and arbitrary process +But the number of government websites that fail to resolve if you omit the “www” from their domain name is astounding. +I genuinely cannot tell if @NSApubrel is a real account or a very in-character joke. +RT @NSApubrel: "Does anyone think about the children?" - Yes, we do: http://t.co/D3yDRpuHZ1 #cryptokids +RT @chort0: Again, not particularly fond of Greenwald, but making up obviously disprovable lies only strengthens his case: http://t.co/8S4H… +@hellNbak_ @WeldPond if by companies you mean large corporations. +RT @dangoodin001: Documents Reveal How the NSA Cracked the CIA's Kryptos Sculpture Years Before the CIA: http://t.co/MsvJQQdW35 by @KimZett… +Whoever is in charge of the Windows App Store needs a wake-up slap http://t.co/RjQun3zQnz +RT @kivikakk: '{"stat":"fail", "code":100, "message":"Invalid API Key (Key not found)"}' -- from flickr's own website using its own API. uh… +@edyong209 @InkfishEP @JackLScanlan we were so wrong… it’s not humans who have souls, it’s worms. +RT @edyong209: WTF? Decapitated Worms Regrow Heads with Memories Still Inside http://t.co/rQOFhMRXb7 HT @InkfishEP +@JackLScanlan you have a sick fetish for convoluted puns +RT @botherder: If the disk is smaller than 50GB, this malware prints "Yeah, right, maybe 5 years ago" and quits https://t.co/dR7WvOlMaq +Siri is in on it… keeps transcribing NSA as NASA. +RT @ashedryden: This is why I have panic attacks about answering emails. #tw http://t.co/t7slhCTTSS +There shall be no tumultuous petitioning in this house http://t.co/TfjvwHme6V +@m1sp btw the sigil of the Republic is now boars as makes sense. Here's Ismyrn and Luzcrezo. http://t.co/fBvbl4lH8T +@m1sp Mispy, if they can't have potatoes because that's new world, they darn well can't have sugar gliders! +@Mordicant House Cuttlefish, led by Fell Lord @pzmyers +@meangrape Ancient and Moste Noble House of Goatse +It's really hard to write fictional royal houses and avoid all mention of wolves (dire or otherwise), dragons, and other such "taken" sigils +@marshray @WeldPond dang man I live in Massachusetts and there are three air conditioning units in my townhouse. Go on strike +@WeldPond should we pay Microsoft royalties every time you can see someone using Windows on camera? :p +@WeldPond a violin can play any genre of music; a match between two players can take on any timbre. It contains rules, but not the outcome. +@WeldPond not to the degree that no two Smash Bros matches are anything at all alike +@WeldPond a game is not sheet music, it is a medium. The experience follows the gamer's direction. +Every time I link a wikipedia article to @m1sp, a long silence follows. I'm pretty sure he's becoming the seed of the singularity +(yes, I am saying playing a game is a type of performance art; and it's not a set, prearranged performance copyrighted by some old fogey.) +Also saying one needs permission to broadcast a live play of a game is not unlike the inventor of violins demanding permission to play one +Some people are telling me they reversed the decision (but I can't get links to load). Sounds like a classic legal department PR bungle +@SwooshyCueb it's not loading... +"We really hate fans and we especially hate it when old games get new fans" - @Nintendo +RT @Kotaku: Nintendo blocks top fighting game tournament from streaming Smash Bros http://t.co/KXPBKuly9M (Fans had raised $95k to get game… +# 354738988189364224 +@m1sp is Tsovinar... smiling?! http://t.co/lLuveTx2eO +The Linux password and Windows password on this old machine are different. I don't remember being that paranoid +Could whoever had me pwned in 2011 DM me my Linux login from about then ? +@m1sp *draws an awesome pterosaur* *realizes she has made the same error as most dragon artists and given it six limbs* +@sam82490 ....... how would it do that? Its level would be below the mountain peaks then, that's the point. +@sam82490 because it won't tunnel through rock +@sam82490 @Kufat right, and the segment where the drain is would empty completely and the rest would stabilize behind their mountains. +@m1sp she gets a lot of use out of one simple word. http://t.co/S8tsCOpa0i +I am technically Dutch and I 100% approve of this plan. http://t.co/1ALnNQNnWT / h/t @Kufat +Lens flare ! https://t.co/jFJIAOLyIn +@hokazenoflames no, it was CS crushing their dream of robot maids +RT @gollmann: Root SSH Key Compromised in Emergency Alerting Systems | http://t.co/mSUqGiHSBu http://t.co/OhmRxQpAGA +@WeldPond eww… +@pewpewarrows @alertnewengland http://t.co/gznnZfpzzA we solved it! +RT @alertnewengland: "Another driver with two eyes...why do we even have a spot for this on tickets?" http://t.co/X6zplM4axA +@m1sp today’s script: in a kind of manga-ish twist, Barsamin realizes Luzcrezo’s girlfriend-in-Canada-type is a bajillionaire +For some reason, the philosophy professors at my university thought it’d be cool to have a Philosophy vs CS debate on AI. Poor souls. +@JastrzebskiJ …. I just realized I have not even seen you in weeks +@natashenka at my uni, we had an AI debate: comp sci vs. philosophy departments. I think the philosophy students cried afterwards. +@thegrugq @snare easy: I don’t drink. But I guess that makes my seemingly drunken antics even worse… +RT @feeniks: Jeeez Microsoft Even though we are all aware of Prism isn't this taking things a bit too brazenly? http://t.co/vmTJlYvPjz +RT @pof: to everyone saying I spoiled @BlueboxSec BH's talk, that's not true: details were already public, see https://t.co/x66eQrQkSO +@strngwys @kvegh I was there a few times during my childhood, but not continually. +Cats and dogs unified by a love of human cosplay, attending furless conventions. The most passionate go shaved in everyday life. +@JackLScanlan I’m a failed European :( +RT @mattblaze: Given how almost cheerful Torontonians look under horrendous flooding, it's clear I'd never qualifiy to be Canadian. http://… +RT @dijkstracula: HN got it right. Twitter's actually a single-threaded select() loop running on a Mac Mini underneath a desk. Don't tell … +RT @edyson: First time I've spotted a #drone warning - near Court Square in Queens. How many to come? http://t.co/nGs5MmXzfM +@nrr perhaps, like me, they live in terror of their electronics being among the mountain of electronics stolen by baggage workers… +@apiary I can at least say I’ve never heard of a corrupt firefighter. That job is pretty hard to do wrong. +RT @timdenee: This little comic about Batman the Hoarder is pretty great. http://t.co/ofxyn8mJTj +RT @marshray: I wonder if these folks criticizing #Snowden for stuff he said pseudonymously on forums when he was 20 realize they're provin… +@meursalt trying to build apache +"WARNING: error: bla bla bla" These words have meanings in programming, computer. Incompatible. meanings. +@m1sp in particular, I'm doing another iteration of adjusting the dialogue of minor characters to be more in-character +@m1sp I JUST WANT MY BABY TO BE PERFECT also it needs a few adjustments to keep the canons aligned +@m1sp also I am editing the heck out of the poor manuscript tonight +@m1sp definitely. Only a very professional internet thief would be able to steal your internets. +RT @m1sp: @0xabad1dea http://t.co/UJOxr2wFwU This is how you protect the internets right +@m1sp I just had a fit that "Kushan" is etymologically disconnected from the rest of the lore and replaced it with "Tarimin" +.@0x17h @stillchip a means of registering I didn't even know existed, and clearly introduced an alternate codepath /cc twitter engineers :p +@0x17h how did you find this +RT @0x17h: @0xabad1dea try to go to this user's main page https://t.co/nGabnFtUW7 +I'm listening to two big tough men loudly trade braiding tips for the sake of their small daughters +I went to a local restaurant and the waitress asked me if my tumblr blog was still popular. She knows too much ! +@WhiteMageSlave if you search for capacitive stylus on amazon it's a completely generic brand +@m1sp I hope I sound like I know about swords http://t.co/1T4qvemBcj +# 354386648718508033 +@m1sp he is definitely the best Occidental http://t.co/rMx8L6aQu2 +@m1sp look at Barsamin you can see his NECK and he’s SMILING for an emotion other than awkwardness he’s all grown up +@m1sp look who it is!! http://t.co/Q3ItC926el +@window !! +@m1sp it’s almost as if a faintly remembered event was interpreted by all parties in a way that appealed to their culture! +@nickdepetrillo @fredowsley ewww, you were camming right next to me?! +Oh my gods. The twitter goddess is real. She has granted our prayers for server-side tracking of which DMs we have read +RT @raffi: we've solved the hardest problem in CS! "Direct messages now sync across all your devices." https://t.co/X8k1NGXxMe +@m1sp :( http://t.co/2mNqeKSKX8 +@m1sp in one of my books of poems, there’s one that’s just straight up “who is the tempter, who is evil and corrupt? Women.” +@m1sp there's an entire section labeled anti-feminine http://t.co/mQJYAzY9Mc +@m1sp http://t.co/9vU7GOzmA6 +*looking out window* "Your husband seems to be outside. I assume he is lost." - @fredowsley +@thegrugq Twitter web interface has decided to auto-prepend new tweets with @thegrugq okay Twitter I know I talk to him but not THAT much +@thegrugq but I haven't gotten an email! I even actually checked my email. +@thegmanehack I heard a lot of people recommend them when godaddy was being godaddyish, and they support unicode domains +@fredowsley @thegrugq … I’ll allow it. +RT @chriseng: I dislike how The Guardian is milking the Snowden story, trickling out in bits (e.g. waiting a month to post Part 2 of June 6… +@MarkKriegsman I swear I just saw like, 30 to 2 in the big glass room +@apiary emphasis on relatively +This seems like a relatively gender-balanced workplace until I see a meeting of the big people up top. +@rbf_ um…. I never said it was +@rbf_ um… that’s still sovereign. They didn’t become a colony or a province of some other place. +@dinodaizovi @dguido is this… a problem y’all have been having, gentlemen? +@rbf_ I meant Japan the sovereign country, with an imperial throne. +@rbf_ I’m just saying, that I believe the Japanese would agree with me that Japan has been Japan for A Very Long Time. +Orwell accused Wells of having some violent agenda against horses… but it was Orwell who sent them to the glue factory :’( +@rbf_ you seem to assume I will defend with vigor every date listed on some http://t.co/UrOpiLliRu page +@rbf_ there was the Shogunate phase too. But there was still an Emperor then too. +@rbf_ there’s still an Emperor. They added representative government, but there’s still an Emperor. +And yes, it turns out defining the starting moment of a country is undecidable in the general case. I know. +@rbf_ Japan’s imperial line is unbroken. That one I will grant being quite ancient. +RT @_FloridaMan: Florida Man Falls Asleep On Couch In The Middle Of Burglary; Found Next Morning By Homeowner | http://t.co/ByZXU71Ou0 +@0x6D6172696F sir I like the way you think +@innismir I’d personally consider that whole revolution thing to be starting over, but I guess they reckon it as just a reform… +RT @jbrodkin: Noticing any slow/buffering/non-functional YouTube videos? Send me links if so, doing some YouTube performance testing. +I don’t think there is anything quite so unsettling as the receding timestamps on the online activity of the newly dead. +@drewtoothpaste @vogon oh my gawd is that a PEAR? My life’s ambition is to eat a pear, of which hundreds grow in this town. +RT @ioerror: Pro-tip: if you want me to do a Skype interview about #Snowden, I'm not even going to reply to your email. +@randyknobloch @DrPizza “Misty Shock” is definitely a stripper supervillain name. And I say that as someone called Misty in high school… +The average age of today’s governments is younger than you think, except Japan really skews the average. http://t.co/VQ6U3B3Aai +@octal @thegrugq I definitely mind the intel a mite more +@snare Mr. Dawkins is plenty smart as long as you realize his erudite tower reaches into the clouds… +@wwwtxt this is a definition of car fax with which I was previously unfamiliar ! +@DrPizza they seem to have some sort of single vendor deal going though… wonder how steep the discounts are. +RT @DrPizza: I want to work for Contoso corp. They are consistent early adopters for shiny new tech. +RT @nicktail: Nintendo managed to not notice a month-long brute force attack... http://t.co/lFiKSLO199 +In this RT: I can’t make this stuff up. +RT @whitehouse: Obama: "We’ve made huge swaths of your government more efficient, more transparent, and more accountable than ever before."… +@Jodzio yes, I got a fellow woman pregnant, I’m just that hot. +@octal @thegrugq except for the way this guy’s happy go lucky one-way signing implicates a bunch of people together +I think the Starbucks lady thinks I'm Coworker George's other woman. And his wife is pregnant. +@m1sp also, Houri has a lot more of it, but she’s still in harmless nascent sidekick stage +@m1sp I think the GoT way of putting this would be waking the eagle +@kivikakk so… is that your name now, Amelias, in the plural ? +@puellavulnerata btw your key-signing fan is easy to find on twitter, if you haven’t checked. Must be him, timeline is very leak-centric +The key problem with PGP is that the web of trust can have one-way nodes inserted nilly-willy. http://t.co/OZJqgCiXUE oh and metadata leaks +@Viss and the only reason I’m not on that list is I forgot to sign @puellavulnerata’s key because my local installation was broke… +@gsuberland I suspect someone may have been trying too hard to make fun of “there’s no such thing as rape” +@iShark5060 @MaxBlumenthal oh yeah I complain. I complain a lot. But I’d never think “I should call the cops and hope he rots in jail!” +@rantyben get your mind out of that gutter ! +@iShark5060 @MaxBlumenthal sounds like a good way to become too frightened to say much of anything +@iShark5060 @MaxBlumenthal what did we learn? You go to jail for pre-crime. +@m1sp last one tonight I swear http://t.co/EMUg1HTPha +@thegmanehack but it’s at http://t.co/1FUyPttxdD if you want to ping it gently :p +@thegmanehack I’ve been using it as a general Linux, even ran dwarf fortress over ssh +@thegmanehack I bumped up the ram to 1GB I think… +@thegmanehack I’m quite satisfied, and it’s speedy from most of the world, it’s like, two hops from Amsterdam… +RT @MikeTaylor: Not sure whether to laugh or cry at: How many historians does it take to change a light bulb? (with peer-review): http://t.… +@m1sp the perfect excuse to draw Bars with his hair down! http://t.co/Z9Lxa9CJXZ +@m1sp writing dialogue for clever little girls is my one true joy in life http://t.co/WUyknME8wg +@puellavulnerata curse you autocorrect +@puellavulnerata stop repressing their /user/lib/ERTY +RT @tab2space: I’m sure they were just plumbers. http://t.co/Wt8bSCGzTr +@nickdepetrillo … this picture is definitely better. If you were wondering. +@homakov the state-run lotteries are considered by some people to be one of the worst things the US government does… +@homakov it’s a lottery if you buy numbered tickets, and they draw the winning number, who gets the money. +@misuzulive yaaaaay +RT @MaxBlumenthal: 19-year-old kid jailed for a sarcastic comment on Facebook. Now he's on suicide watch. Who's next? http://t.co/xTmXgGFqz… +@Viss ohhh baby your signal’s so cleeeaaaan +@DrPizza they are almost all from cargo trucks, out all day every day in the summer heat +@m1sp Should rename the book "teenagers generating international incidents" http://t.co/sMiDAJYbPB +# 354022889118384129 +@m1sp one of these people is not cut out for intrigues. http://t.co/jlvJKy85yu +@m1sp then be a good friend and star my drawings :p +@m1sp arai arai! http://t.co/kSnwvVDzg6 +@m1sp *poke* chats? +@m1sp and that's why Hayr resolves he'd sooner throw himself off a mountain than join a camp. +@m1sp a bit deliberate! The boy shirking off arranged marriage is their cultural archetype rebel +@m1sp no, no, Kandakari and Arakel have two different aspects, only one of which remains in Tokhar. The aspect of truth drifts. +@m1sp anyway if you still have the link I've been expanding the lore book +@ibutsu @m1sp Petragon, named for its stonework, is one of my fictional countries - the token white people. +@m1sp I think that anyone in Petragon too old for fairy tales would say that the story is greatly exaggerated. It's just *Antaram.* +@Kufat this is your notice that I have bailed +I had a dream that I came upon a rural homestead, abandoned. One word hurriedly carved into the snowdrifts: "UNIX" +@marshray pretty sure that only helped software piracy… +RT @RealTimeWWII: Col. Amilakvar wears dress uniform (no helmet) in battle: "When one risks meeting God, one must be properly dressed." htt… +@marshray privateer has a nice roguish ring to it… +Incidentally, “illegal x: don’t do it because of punishment z” is possibly the most circular argument I have ever seen seriously used. +RT @awallens: I asked Siri: When is my next appointment with Beth?" She said, "I don't see any appointments with Death!" Um, good to know! … +@CyborgCode there is no trick. It’s a completely false dichotomy that a woman can be attractive OR she can pursue job skills. +@CyborgCode the fact that you think so means you have bought in to patriarchal ideology :( +RT @dhh: Thousands of spies and billions of equipment will find a way to justify itself by inventing new enemies far beyond their original … +“Illegal gambling: it isn’t worth the risk. Because we’ll set you up then murder you over two thousand dollars.” http://t.co/ALzN98LpGC +RT @maradydd: This is the only 3rd Amendment claim I've ever seen in my life. Are they working backward? http://t.co/0zrlq6nrFj +@DrPizza and the reason they’re not only still open, but USA is spending a fortune on an entirely new facility in Germany, etc ? +You do realize I know all the reasons and I’m making an observation that we are imperialistic right +@DarrenPMeyer I know a country called France who would object to that assertion… +@Sonikku_a and we’re so worried about Germany? :) +@HersonHN the country +I’ve always thought it strange that America has military bases in Europe but Europe doesn’t have any in America. +@hemantmehta ohh, that explains why everyone I ever knew is dead ! +RT @chriseng: On Android, Google replaced the Talk app with the Hangouts app, but in alphabetical view, the Hangouts icon still shows up wi… +RT @MadSagamoreBrdg: Don't worry, I know there was a power outage but I don't run on electricity. I run on the frustration of people stuck … +RT @suigenerisjen: Anyone who isn't outraged by this isn't awake http://t.co/1xkdUssEgA +RT @zoeimogen: I'm told I do not have eldest daughter's school report because the apostrophe in our surname broke the school computer syste… +RT @20000TinyJars: if you see someone staring into space dont bother them bc theyve just leveled up and are allocating stats & skills and w… +@rgov someone mentioned that it has a high number of users in Certain Countries. +@m1sp http://t.co/hEBiix4XAH +@QuantumG dang... that's actually... a really good price, aside from the fact that it'd be a cruel prank +@innismir thank gods it wasn't actually the one with the blue light. It's better and they stopped making them. +I seem to have finally succeeded in frying one of the $10 dongles. A moment of silence… +@theROPfather though of course there’s a lot of perfectly fine music which imitates it in broad terms with the blips and the bloops :) +@theROPfather if someone doesn’t mention what model chip the song is for, it’s probably not a chiptune proper. +@theROPfather it has the very specific meaning of being produced by a programmatically manipulated synthesizer chip +There should be audio attached to hear satanic!Miku... https://t.co/lNaz2ksvK8 +When I started the Eve client, it broke OSX's sound somehow so that it's only playing lower components. Hatsune Miku sounds... satanic +# 353661539728900096 +@scottmarkwell based on the frequency I suspect it’s related to the lower touchscreen initializing. +@Kim_Bruning @blowdart I don’t like it. The style grates on my nerves. +Watch out world! I now know the exact frequency to scan to detect a Nintendo 3DS boot sequence. No secret is safe! +“… I can’t pick up any FM stations. They’re all static!” … *unplugs the entirely powered off Terrible Laptop from charger* “There they are!” +@stiabhang no and not yet +There is a checkerboard pattern on a subset of the LCD I'm tempesting. I'm so close I can taste it. http://t.co/N4oDNWs7RL +@DarrenPMeyer it wouldn't be a problem if my algorithm actually worked, but I'm stuck in the tweak-and-rerun loop :p +(I'm actually only processing an array of ten million things, but it can only possibly be more true of a billion. Especially with 8GB ram.) +It takes far too long to cast an array of a billion things to a billion other things in Python #firstworldscienceproblems +@blowdart I think I was twelve the last time I actually went to a fanfiction site to read fanfiction. +@The1TrueSean I'm telling @WhiteMageSlave all about what a meanie you are +@The1TrueSean @WhiteMageSlave I can't tell if you don't know you're being made fun of +@The1TrueSean @WhiteMageSlave my asquib what? +@WhiteMageSlave TECHNOMAGE +@WhiteMageSlave NO I AM NOT A MUGGLE I AM NOT I AM NOT I AM NOOOOOOOOT +@WhiteMageSlave I was in Salem not two nights ago and I didn't meet any witches :( +#fanfictiontaughtme you can get your Hogwarts letter even if you're American!... ... ... I was a lonely child +@ScratchFreedom @MyLittleDroney I’m not adverse to it but I’ve only seen like one episode ;) the pinkie pie is a good luck talisman I guess! +. @MyLittleDroney , my little droney, death from the skies, it’ll be a surprise ! http://t.co/F8ehhhJlPT +@Myriachan ha, they’d never give me one no matter how nicely I asked, I bet :) +@savagejen @th3j35t3r as usual, he seems upset there are countries other than America which get up to country-ish activities occasionally +I dream of the weirdest tech- like an electronic pink diary with a hash breaker feature for breaking into other diaries +Gah I can't escape the surveillance !! http://t.co/nR1SATU4XO +@snare if those are my only choices, I’ll take fight +RT @jzy: Outside graphic isn't as good as it used to be. http://t.co/TrhErGu2c1 +Wait, did the US seriously send Venezuela an extradition request after they’d already offered asylum? Horse, barn, and the barn is on fire +RT @scanlime: The Zynga mistake reminds me of back when I managed to register "mailer-daemon@aol.com"... http://t.co/W7tjJeKIUG +@apiary hot +RT @kevinmitnick: WOW! Venezuela President offered Snowden asylum. USA shouldn't have messed with the President of Boliva's flight. http://… +@DrPizza DH complains of the same thing +@m1sp http://t.co/R1iqrNilHG +@nickm_tor *googles* wtf +@m1sp you disappeared without sharing an opinion ;-; +@Baneki @nickm_tor I know they're alpacas, but that doesn't alliterate ! +@nickm_tor llama lovin' http://t.co/48O311OMCy +@JeffCurless @The1TrueSean gods deliver me, he's even worse than the husband I got +I heard Irish music in my house. I came downstairs and my husband was gone but @The1TrueSean was just sitting there like he lives here +# 353286342286901250 +From the dictionary of the ancient Tocharian language http://t.co/ZxU6T4a0NE +Next edition of "abadidea draws angry girls" http://t.co/N6iJ9MMmVd +RT @DoritosOntario: @SaddestTiger What you're feeling is the actual universe. This is existence. A brutal, unrelenting, laborious drudge. P… +RT @AndrewCrow: My #Comcast #Xfinity experience: Rep: "I see your modem in our system and it's online and fine." Me: "Really? It's curren… +@m1sp wake uuuuuup I have stuuuuuuff +@tenfootfangs also my stories have snakes as a motif of one of the cultures so yeah. +@zaralynda @azurelunatic mayhaps twitter needs a downvote button... +@tenfootfangs I just wanted to make sure, for purposes of writing a fairy tale, that pythons can measure at least as long as a person. +"google, python length" "the length of a list can be found by..." "google, just this once, python length SNAKE" +@JavaKrypt @pandy92 away from this, actually. Obsession with gender roles is a mark of early stages of human cultures. +(Congress people do not automatically get a *true* clearance but they get a lot more than the normal humans.) +@innismir indeed, they don’t HAVE clearance, but they still have broad access to classified information. +And if you were refused a clearance and then got elected to congress, I don’t think anyone could do anything about that! (Or could they?) +@raudelmil you don’t have to convince them *you deserve a security clearance.* :) +It occurs to me that being elected to congress would be less paperwork than getting a security clearance the conventional way +@blowdart yeah… sigh +People complain about other people who look at phones in public. But they’re a lot less intrusive than newspapers. http://t.co/ZRgJb1hCVb +@BettorOffSingle pff…. Snerk…. Hahahahahahaha this is a good parody account +@IndigoCCS you stole my clever tweet! I’ll report you as spam! (Nah but really, please do.) +@chort0 idg… oh +FOIA requests denied because that would prove they have capabilities they want us to think they don’t, then. https://t.co/89PMfqqpss +RT @aestetix: "Your request is denied because the fact of the existence or non-existence of response records is a .. classified matter." +RT @aestetix: Wow, my FOIA request to the NSA for my phone records was denied. Fuck you, NSA. +RT @KillerMikeGTO: I read this and........"Naw I'm cool" http://t.co/x8fXPG1tvC +@grahamvsworld @innismir need to meet more government contractors then! +RT @TetZoo: Look: holotype of Eocene #lizard Yantarogekko, preserved in Baltic amber. Incredible, c54 million yrs old! #reptiles http://t.c… +@OrwellUpgraded I said don’t use it as a social justice button, not don’t use it as a report spam button o_O +RT @pandy92: There's a website selling wigs for baby girls so they don't get mistaken for baby boys. It starts early. http://t.co/g1fElY7A3a +@nickm_tor there’s a llama one too… +Please don’t use “report as spam” as some kind of social justice button. Even if it’s an abusive account, you’re just being abusive too +@BettorOffSingle … well, I think *everyone* is better off if *you’re* single, yes! +@geekable I want you to know I live next to a Dunkin Donuts and never go. +@SimonZerafa certainly not! There are artists a thousand times better who need the money. +@tangenteroja Salem murdered “witches,” which was basically any woman who was the slightest bit odd. +@m1sp so. much. LORE. http://t.co/JLczROwm3e +@no_structure DON’T MESS WITH THEM. http://t.co/zogXMEbyYF +@GermanCityGirl @The1TrueSean am I the only one who doesn’t understand why an Amazon princess wears the star spangled banner +RT @natashenka: You say my code is self-modifying like it's a bad thing +@matthew_d_green and then every time Amazon's East Coast availability zone goes down we have a global traffic jam +Salem, Massachusetts apparently rejects traffic-sensitive traffic signals as witchcraft +My hobby: seeing how young I can make myself look by making my pupils big http://t.co/sVpRxPENuD +@ra6bit ever hear New World Symphony? Russians got the American music thing NAILED. +@flyhachi probably not, as we already have a cross-country trip coming up... :( +They're playing the 1812 song live and the fireworks are gonna be the cannons eeeee! +Animal Crossing blue-screened. http://t.co/qAaK5qf3nV +My favorite thing is when twitter silently fails to post images over 3G +@tangenteroja though a few hundred years ago I'd have been murdered here +@tangenteroja I'm here. I posted a picture. I just like ships :) +This guy is breaking my heart with reading the Gettysburg Address +My animal crossing town is now open, over 3G, at the beach +Nice town, Salem. http://t.co/uou6hCOkyr +# 352927361571889153 +Going to fireworks … at the beach! 🎆🏄 #America:#TheGoodParts +@grp @comex aw man, evil organizations never try an’ recruit ME… +@kragen because of things related to that, yes +I’ve been angry since literally three minutes after I woke up, so here’s another angry girl #arttherapy http://t.co/GCLcWJB57f +@0x17h sometimes you read too much into things. +@jesster_king they’re apparently not on there. +@0x17h it was never perfect so we should just give up ! +@jesster_king to stick it into another thing +@loganb that... makes sense, if you don't say restaurant. Sorry :p +@jrmithdobbs do you know how many THOUSANDS of real-world buffer overflows I've seen with my own eyes at work? Not "perpetuating" jack. +@jrmithdobbs in C/C++, Java, .NET, PHP, etc, pretty much everything except Javascript, which needed manual prodding. +@jrmithdobbs and I note that this entire process was an EXCEPTION to our usual methods; you never hear about our thousands of routine scans. +@jrmithdobbs it uses sound, non-novel algorithms. The bug was not in a novel (homegrown) algorithm, it was in an entropy failure. +Somehow missed this when it came out... really good owning of a Chromebook. http://t.co/hAH4qJDIUw +@THEwmAnderson they save crummy jpegs to the SD card +I don't suppose there's a way to coax Animal Crossing into not saving screenshots at super low quality +I'm *so close* to having a theme going. Anyone have any high-tech things they want to gift me? http://t.co/MwONOdJ5kJ +@bascule and only America could not understand they’re being called barbarians with that statement +Paula, you are a bear. In a video game. You are not “busy until 3:00.” You are wandering around shaking virtual trees +An AI in Animal Crossing just made an appointment with me to hang out at 3pm. And I feel obligated to show up. Ffff. +@ErrataRob @mikko you know, in most legends, the one who wins the impossible dare for a marriage is killed, imprisoned, or tricked out of it +@jrmithdobbs clearly, you’re so privy to our conversations and business contracts that you must be the NSA… +@jrmithdobbs And it was hyped by Not Us, and *at the time* we tried to tone down the hyping of it, because it wasn’t cryptanalysis. +@jrmithdobbs take a stand against WHAT? We did what we do and were honest about what we did. +@jrmithdobbs wow, if it is fraud to not find 100% of all possible bugs after saying we won’t, the whole industry really is screwed. +@jrmithdobbs but it wasn’t up to me, and I’ll get in trouble again if I keep yelling about it :( +@jrmithdobbs if it had been up to me I would have said to refuse the contract because it’s too far off from our core service +@jrmithdobbs did you actually read the report? +I started up Animal Crossing without an SD card and it punished me with three dialog boxes before it told me what was wrong #uirage +.@thecharrr then we shall INVADE Animal Crossing and LIBERATE THEM. +Time to find out if Animal Crossing celebrates America Day I guess +@gsuberland don’t be silly. There’s no such thing as numbers BETWEEN powers of two. +@WarOnPrivacy same here :p but the east coast is quite vertical +@WarOnPrivacy in all fairness, I grew up accustomed to ten-hour car rides at the drop of a hat +Apple Maps, how far to Salisbury beach? “13 hours” Okay, how far to the Salisbury beach IN THIS STATE? “Oh. Forty minutes” +@WarOnPrivacy also, sorry, still pretty small ;) +@WarOnPrivacy but the only person who lives in the western half of Massachusetts is @Paucis__Verbis +Goodness, I keep forgetting how small Massachusetts is… http://t.co/i1UGF1PqHT (also, my, what classy fonts you have!) +@DarthNull @i0n1c I’m pretty sure it’s one of those things where there are more people making fun of dummies than original dummies. +@jcran NSA has added you to list “NSA/watch” +@SimonZerafa ie it’s only a bug BECAUSE the entropy of the result matters in context. +@SimonZerafa go look at any list of common JavaScript errors, calculating the entropy of something won’t be on the list :p +@brinxmat but in the end you must understand the remark was playful. People in England in the 1770s stood up for us to the king +@brinxmat yes, that kind of supports my point ;) the first waves, who did the hardest part, were religious exiles, criminals, etc. +@SimonZerafa in the end the bug comes down to where I always said the bugs would be in JS — the genre of casting errors. +@SimonZerafa we don’t specifically offer JavaScript line-by-line auditing, no. At least not yet. +@SimonZerafa we did a manual penetration test to verify that it behaved as the spec advertised. +@brinxmat ah, back in the old days, we did it with slavery and indentured servitude (which is slavery with a time limit, for Europeans!) +.@j4cob well, I wasn’t on a phone, though perhaps it can’t distinguish between iPhones and iPads reliably… +@brinxmat I don’t think I know many Europeans who immigrated so recently, they’re vastly outnumbered by the Indians and Koreans :) +Anyway @kaepora claims that one-on-one conversations, which is I presume where the most sensitive stuff is, were not affected +@hackerfantastic what! How do you have almost as many as me +Anyway, if anyone wants to have a fight over audits of enciphered felines, I’m totally game as long as we do it where my boss can’t see. +RT @Number10cat: The Home Office is using an online tool that recognises sarcasm. Great work guys... http://t.co/RSw0nU02hC +“Oops, you will need to generate a temporary password on twitter dot com to contine.” Err, why not just text me my login code…? +RT @cryptocatapp: Blog Post — New Critical Vulnerability in Cryptocat: Details and more: https://t.co/Hu7WbKFSqt +RT @Pinboard: Towards the end of his demo, Doug Engelbart skips over some material for lack of time. That's why we don't have hoverboards t… +The little firebrand is stirred to wrath by a bug. The little firebrand has cold water poured over her head and is told to go back to bed +@andreybelenko @chriseng @thegrugq @solardiz @WeldPond and as it pertains to entropy amount, I’d classify that as cryptanalysis. +@andreybelenko @chriseng @thegrugq @solardiz @WeldPond it’s a stupid bug, but looks like more than one smart person didn’t quite catch it. +@solardiz @WeldPond @andreybelenko @thegrugq (yeah, this one was a manual. Our magic engine doesn’t support JavaScript analysis) +@rantyben @chriseng @thegrugq @solardiz @andreybelenko @WeldPond not a comprehensive source audit and certainly not a proper cryptanalysis +@rantyben @chriseng @thegrugq @solardiz @andreybelenko @WeldPond it was a time-limited exterior manual penetration test 1/2 +RT @EdwardTufte: An enormous contribution to the art of scaling by placing object of known size into a graphic. http://t.co/RrLRStvYvF #d… +@chriseng @thegrugq @solardiz @andreybelenko @WeldPond Namely, that it was using known-good algorithms and such. +@chriseng @thegrugq @solardiz @andreybelenko @WeldPond and we don’t do cryptanalysis. The report enumerates what was checked wrt crypto +@blowdart no actually the last one it’s seriously a tigger word with me for real. +@brinxmat ungrateful? America was built by the people Europe didn’t want! +@blowdart ..... ouch dude, trigger word +@geekable and Thomas Jefferson owned slaves and George Washington probably was mean to someone once. +@geekable spying on someone you are formally at war with is a trifle different from spying on a beloved ally. Even if they're both England. +@CreetureNZ and most of them, including the 4th, very specifically address something they were fed up with. +All the British are sleeping, they can't object. +On a lighter note, Happy IN YOUR FACE ENGLAND Day +Happy Fourth of July America. The Fourth Amendment is one of the things we had to fight a war to have. +RT @zephyrfalcon: @0xabad1dea You should make a game where you throw angry girls at chauvinist pigs :P +Abadidea Boots Up Bootleg Pokemon! http://t.co/5PN7k5J46y tonight: an old man gives me the thing good! +@adamely @supersat yeeeaah... The store detects only the most trivially overt stuff +@xa329 @ra6bit http://t.co/E0tJ2XvZaN +@Disguised99 chemistry, he is from an educated country and he shall have it called *chemistry*! +(I lied. Sometimes I draw pensive boys) http://t.co/Qfccbn9Toc +@ra6bit also, it’s okay, you can say “it’s the glasses… and being stocky… and angry.” +@ra6bit she usually wears these bigger more kawaii ones. http://t.co/ji7hodau4m +@ra6bit dangit @ternus thought this character looks like me too But she is NOT the one who snaps and kills everyone +Fact: the only thing I draw is angry girls. Dozens of notebooks of angry girls http://t.co/a9kK9GslvO +(Uncropped source, because it's really quite pretty. Yes, I'm researching historical costume design...) http://t.co/gWyUTjI8M7 +@CharlieEriksen it's really just a markov chain run over tweets... @m1sp birthed it one night +"I think we're better off as friends. Why don't you ask my sister out?" "Giiirrrrrl don't try to pass him off on me" http://t.co/s2kLiOyF9N +@NireBryce I cower in the suburbs, I'm afraid. +Folk north of Boston: what sort of outdoor nonsense should I drag my <s>cave troll</s> husband to tomorrow? +Okay I get it’s a Blackhat talk but wow this disclosure is a tease http://t.co/8DUR28PaSx +“The United States does not support specific individuals or political parties” Sure, sure. http://t.co/eSxhHgjnfm +@botnet_hunter this particular site - you will know it by its good taste in pink - has done right by me in the past +I find it bizarre that a payment processor would have a rule against anonymization services as if it were immoral http://t.co/BhF6nuaDha +@kivikakk actually, I need to learn more, and learning from a technical document like this would probably be easiest for me ! +@marginoferror you can copy multiple lines without the line numbers, as it’s a table cell or some such +@marginoferror fprintf(stderr ,"引数が足りません\n"); +@dijama yeah I don’t type it out directly to avoid automated spamming +@dijama it’s not particularly secret… +It then turned out I can’t actually read Japanese. http://t.co/wUZCuICqFz +Success! The publisher takes Paypal. I have the PDF \o/ +Our little AI project apparently considers Minecraft to be an arousing word https://t.co/Njvr5PLlpa +Currently seeing if I can stumble through the publisher’s site for it… +# 352577240799780865 +Unfortunately, Amazon.jp won’t let me send to my dirty American kindle… or I’d totally buy it to support this masterpiece +@kivikakk pro +Proof: gcc is not the most kawaii compiler http://t.co/V9ZIxUt0ol +@mof18202 @nrr @_am3thyst k… k… kawaii (≧∇≦) +@_am3thyst @nrr I know the *book* is real, I mean did it really appear in some anime ! +@Tomi_Tapio I find it physically difficult to tap-to-close such pictures +@nrr is that… the original text? +@ErrataRob @donicer @Apofus no doubt a green laser pen will now be as sure a sign of terror as a Casio compass watch +@rallat @bbhorne either it’s old or made from simple, reliable parts. +RT @bbhorne: Here's the inside of the bug that Ecuador found at their London embassy: http://t.co/pDKUgEdN4C +RT @Zookus: Note to the person currently running @MtGox. Twitter has a cap of 140 characters. You shouldn't try to type out a full e-mail r… +@natashenka perhaps old hoary nesasm ? It will generate an iNES header but you can lop that off… +RT @savagejen: There are nationwide protests against NSA spying tomorrow, the 4th of July. Find your local protest: http://t.co/bCSeI22ko4 +I've discovered I can control the weather. If I set something on a windowsill to warm up, the sun will retreat behind clouds. +RT @RT_com: BREAKING: Al Jazeera #Egypt offices raided as national broadcast shut down: http://t.co/8jxskuArBN +Let me sing for you the song of my people http://t.co/Di4YvioO9T +@veorq @marshray the correct exponent is never 1. +I get nervous when I see @julianor tweet acronyms… +RT @jricole: Dear Egyptian revolutionaries: Just remember, we in US already have dibs on July 4; so hurry up or slow down +@solak @Veracode ugh, I couldn’t eat that, it looks like mould… +@noirinp @superglaze @hypatiadotca I have no idea what’s going on but I want more of it ! +RT @noirinp: RT @superglaze OK, this European Parliament debate on #PRISM just got very weird http://t.co/lNEMHmzsrx +RT @SteveD3: On the other hand, this is funny. http://t.co/H76P2EI0ab +@gsuberland they didn’t “pick a slogan.” To my understanding it was a spontaneous response to singing religious songs to tick ‘em off. +@joecarter @gsuberland what’s wrong with “hoes before embryos”? I do indeed value allegedly loose but sentient humans over pre-sentients. +@chriseng I'm checking who RTs this... *cough* @fredowsley +RT @chriseng: OH: "When I first joined the company, I thought it was @0xabad1dea's full-time job to tweet." +If you start a PHP hate blog on tumblr, people will send you mails asking for homework assistance. +@kcarmical postcards are treated differently and often “lost” so I was just gonna go ahead and write on envelopes that won’t fall to bottom +@kcarmical randomly on the envelope, it’d need a valid address. +A fun experiment would be to send letters with encrypted text written on the outside of the envelope and see who freaks out. +RT @ioerror: This is a privacy violation that nearly everyone understands: http://t.co/6AaWs2zWoI #USPS #NSA #postalspying +@McGrewSecurity and that’s a problem, if it doesn’t work both ways. +RT @LINGUISTICSHULK: HULK USE SINGULAR "THEY!" PEOPLE UNDERSTAND! HULK SMASH PRESCRIPTIVISM! #linguistics #language #descriptivism +@katzmandu @MrToph oh, and people actually *trying* to smuggle weapons on planes have a near 100% success rate :) +@katzmandu @MrToph only if you suppose that small weapons found in luggage correlates with in-flight murders prevented. +RT @MrToph: The TSA has an instagram account. Your tax dollars at work. http://t.co/S9ooIngLti +@m1sp that sounds like a prophecy or something +RT @xeni: Obama warned of retaliation for any nation aiding Snowden. But today, South America is pissed. Pres of Argentina calls emergency … +I certainly have learned the names of a lot of presidents and prime ministers recently +RT @BBCBreaking: Bolivian President Morales says diverting his plane was "an offence against the country", via @BBCGavinHewitt http://t.co/… +RT @mrbellek: Hey Ubisoft, your email telling me to reset my password because you were hacked is flagged by Gmail as a phishing scam. Good … +@m1sp a guard! With a name! http://t.co/QFFD0DeKpb +@thegrugq you’re actually right this time +@thegrugq I’ve seen you, you’re not too fat. I could totally shift you if I threw my weight into it… +@thegrugq I’ll shift u +@thegrugq if America wants to be called a lady she had best act like one even around people she considers small folk +@killerswan @oh_rodr me either, but I’m rather against organized religion in the general case +Due to Klout’s algorithm, I was once the world’s leading Hitler authority, beating out seventeen parody accounts and one guy who was serious +@killerswan @oh_rodr I’m sure people lacking basic sanitation will be pleased to know that the political landscape has obsoleted a word. +@janinda @oh_rodr I was once The top klout result FOR HITLER +@oh_rodr @killerswan the argument is that it slowly begins with a distinct lack of a distinct moment sometime after conception. +@oh_rodr @killerswan Ferns are alive. *Bacteria* is alive. It’s harder to prove something ISN’T alive, when you get too philosophical. +@oh_rodr @killerswan I’m happy for your baby but that is such a straw man argument ;) of course it’s alive. +@oh_rodr @killerswan sadly? Sounds like a happy occasion +@oh_rodr @killerswan if someone abuses that protection of the mother’s life, they can answer to their gods. +@oh_rodr @killerswan the law draws the line on the side of “you know, sometimes women DIE if they can’t abort, we should make room for that” +@killerswan @oh_rodr also, there are many religions in the world with priests, and the requirements for all of them tend to vary :) +@killerswan @oh_rodr you don’t need a law to stop you from doing something you sincerely believe is wrong. +@killerswan @oh_rodr I’m just saying, when there’s no clear line, there’s no one answer, if you think something is right then do it. +@Scott_SanfordTX @0x17h someone can’t tell when they’re being trolled. +@oh_rodr many do. If they don’t, it turns out they have moral agency of their own. +@oh_rodr one should ask their priest, or themselves. +RT @billkendrick: @a_greenberg @0xabad1dea Clint Eastwood should interview Snowden's emtpy chair +@oh_rodr only for medical reasons. No sane person suddenly changes their mind that far in. +@innismir goodness I just googled that. That seems unwise also, but at least they had some sort of reason +❝technical difficulties❞ now with bigger quotes +RT @alanc: @0xabad1dea for bigger quote marks, just use ❝more unicode❞ http://t.co/npNMTP1Xeo & http://t.co/JBZI49VXQR +Harsh: “now the colonies are not in the Americas, they’re in Europe” https://t.co/WNzdBHJ4zL +Bolivia claims two different airports turned them away for “technical reasons.” I can’t make those quote marks any bigger +@pborenstein @CFKArgentina I’m not happy either. My government is engaging in puerile behavior. +@vogon according to other news sources, they were told they had to be searched and the president rightfully flipped his wig +I have never heard of a head of state’s plane being searched. Imagine if some random country wanted to search Obama’s plane? +RT @a_greenberg: I can't believe another Snowden news story has been illustrated with an empty plane seat. http://t.co/JhItP8mJzl +Everyone, whether you have a pgp key or not, search your email and see if anything unexpected pops up http://t.co/WTzCatGTBL /nod @kaepora +And on that subject, this is my public key. It’s huge because including my avatar was completely necessary. http://t.co/vehdEfcun5 +@kevinmitnick well then he turned 30 +@dakami security product? It’s already encrypted. I’m only worried about reliability of transport and storage. +@kaepora @charliesome perhaps they mean to use it to sign things +@dakami maybe if twitter wasn’t notoriously flaky :p +@charliesome @kaepora that’s… only in theory, if you ever need to email arbitrary strangers. +Surely there must be a more reliable means to send encrypted messages than pasting them 140 characters at a time onto twitter! +RT @kaepora: WTF?! There is a fake PGP key for my email address that was generated last week. DO NOT USE: http://t.co/UvlCSqhxtQ +@Anon_Central @druidian someone’s never been trampled… +Aw yeah lay down those well-tempered beats (is what I imagine Bach’s groupies said) +@NedGilmore I did consider “unwitting” to be an essential part of what I said +@NedGilmore Not getting your rights is wrong. Getting your rights and not realizing you’re lucky in that respect is the blinder of privilege +RT @KimJongNumberUn: Today I am officially offering asylum to Edward Snowden's laptops. +@JeffCurless I was set off by someone who didn’t understand why anyone would be afraid of cops. After all, they *did* help him. +@JeffCurless but this isn’t “white guilt” I’m talking about. I’m talking about being blissfully ignorant of problems that don’t affect you +@JeffCurless Massachusetts is indeed the closest to Utopia I’ve ever found in this country. +@JeffCurless then you live in Utopia, is there room? +@JeffCurless replace with your local group who frequently enjoys the benefit of the doubt in the legal system based on appearance +RT @kll: O.O this. is. awesome. Real Life Tron on an Apple IIgs http://t.co/Gc1PoPDzRm cc @0xabad1dea +Chiptune ! Just a short simple one. https://t.co/HjEBSVSS0B +@txs well, while we’re on the subject, I think only about one in a hundred of its tweets are funny… +@whyallthenoise I must have told the psychiatrists three billion times I wasn’t depressed and they acted like they didn’t even hear me +@HersonHN how did you know my secret of being a bot +(I’m not depressed ! Just for some reason I feel tears in my eyes at the slightest provocation recently, spilled my coffee, crying time!) +The good news: haven’t had a random panic attack in a while! The bad news: random crying spells o_O 😢 +RT @USDayofRage: Bolivian presidential plane forced to land in Austria over suspicions Snowden on board — RT News: http://t.co/Fr7fYAL0c4 +@InfoSecRumors @txs @SecurityHumor is this true ?! +Unwitting White Privilege: the system genuinely helped you out when you needed it, so why would anyone be against the system? +RT @qwghlm: Pointless pedantry to rival @StealthMountain - Instagrams of people lying when they use the #nofilter tag http://t.co/kpTotHwJ90 +@codinghorror who also have the good experiences of being saved, but also the bad experiences of being tackled and maced for no good reason +@codinghorror I did not mean you. I did not mean your mother. I’ll be blunt, I meant black people and brown people. +@codinghorror (and before I go on the record as some sort of universal cop-hater, my father was one and The Situation Is Complicated.) +@codinghorror they can be welcome in some situations and a source of fear in most others for an awful lot of people who aren’t bad people +@codinghorror that is the most Unwitting White Privilege thing I have ever read in my life +RT @historyweird: 1051: Priests who seduce boys should be whipped, shaved, drenched in spit and given horse food, argues Damiani. http://t.… +RT @mike_br: http://t.co/UVbXmsVEAB +@tenfootfangs people who argued on the internet saved me +# 352214248862126080 +RT @Viss: oops. email from ubisoft saying to change my pw because they got popped. +@CaptainSaicin yeah, I guess that's why it's in there with the stamps which are probably also valuable +@m1sp @JackLScanlan http://t.co/pQqfezxb7C +Just got an email that pebble watches will be in stock at Best Buy starting Sunday. I need one so I stop missing Dear Husband's texts...! +OP breaks into a safe. Contents: nazi memorabilia, thousands of stamps, exactly one Virtual Boy game cartridge http://t.co/Rk6wPSUeGZ +@DarthNull their global empire is an aberration ended, but they sure don't act the part sometimes ;) +@DarthNull was wiki-walking through some stuff about Armenia. Many ancient kingdoms came and went. +It's easy to not care about the significance of an ancient culture that lasted only 400 years until you do the math since Jamestown... +@jgeorge nah, I am largely ignorant of web stuff, though you can probably get that out of wget somehow. +@wimremes yeah, I don't get why that bothers you, they're just cornrows... +@thegrugq is a bad man +It's so humid that the weather widget thinks it's raining. +My lap. A paper coffee cup. Compromised structural integrity. My pants. I’ll let you do the math #sadpanda +@tapbot_paul we won’t forget you +@christinelove @vogon gods that sort of attitude traumatized me as a young girl. I thought no matter who I loved my father would kill him +@tufts_cs_mchow @chriseng improvised lunch meetings, Veracode style +@wimremes o_O you hate braids? +RT @chriseng: How to pick the worst seat in the conference room. (/cc @0xabad1dea) http://t.co/JvYuntvs6o +RT @FDNY: BKLYN ALL HANDS 23 STREET, A LARGE AMOUNT OF A THICK UNKNOWN SUBSTANCE ARISING FROM THE STREET., +@torvos it’s as Canadian as you can get without going to Canada, but I see you’re already there. +I’m at a lunch meeting. The guy who called it forgot and went to Maine. +OH “I need a computer” “Want a banana?” “If it’s Turing-complete then sure” +Simple-looking Android lock screen bypass... thanks, Skype! http://t.co/4cN6UoiuiL +Roll thy own crypto for thy Warcraft game and yea verily shall it be cracked http://t.co/aoK6FyG7UE +This is the most meticulously researched conspiracy theory I’ve ever seen http://t.co/9iiQO33SEs +@flekkzo oh, hello… +@m1sp my pastor had a bar bent by them… +RT @InfoSecJesus: I heal the blind SQL injection +@ra6bit @innismir @_larry0 you say that like trains aren’t awesome +@_larry0 kid knows what’s important +RT @kivikakk: nop http://t.co/O8rtTMWHLB +RT @0x1C: BLACK METAL!! \m/ \m/ http://t.co/A0nxKVv9Vn COMIC SANS HAS NEVER BEEN SO BRUTAL!! @addelindh @csearle @snare @darrenpauli #black… +@m1sp ‘tis Katarosi’s father. +RT @0x17h: http://t.co/wKYJLZxTC6 RT @BrandonDoughan: Today at noon, the Hispanic population matched the white in California +RT @mmpackeatwrite: Best sign I saw today on the Capitol grounds #hb2 #sb9 #txlege while standing with Texas women under the sun. http://t.… +@b_scheller @0x17h united we stand etc etc. +@b_scheller @0x17h — where the strong son could not break them but the clever one could, by untying them and breaking them one at a time +@b_scheller @0x17h everyone stand aside, I have a factoid! Washington deeply loved the story about the farmer and the bundle of sticks — +@m1sp *tempts you out of twitter slumber with Plot and Writing* It's from a giiiiiirl character's POV +RT @spenchdotnet: @0xabad1dea Looking forward to your DEF CON talk! On the subject, I thought you might appreciate some sonified LF RF: htt… +@CharlieEriksen that would be near one of those poles I warned you about... +@comex I'll delete the remark before I have to explain it was edited to a bunch of people, then... +@comex yep. +@blowdart has it been experimentally confirmed that blind people experience a field of blackness? I've always wondered... +@comex United States +It's always darkest at a point equidistant from dusk and dawn unless you're near a pole and then it just might not really change +Why do all "online notebook" developers take so many vacations to Paris and the Grand Canyon? +@armcannon also #RuralLiving +There’s a word for making “erroneous statements” you already knew were erroneous. Lying. Under oath. +RT @kaepora: James Clapper apologizes for lying to congress: http://t.co/k8SXU1YFkI +Mom my hacker handle starts with a ZERO geez it’s like you don’t speak 1337 at all +RT @vogon: "Unable to stop debugging. Operation is not supported." you and me both, Visual Studio, you and me both +Motorola apparently has some cloud thing which feels the need to know all your passwords. http://t.co/rgpcbRCWhD +# 351852436673134593 +@kaepora lol what did the army say that has their president swearing no relation +RT @ternus: In case you feel the need to compare something: http://t.co/kwhy9pfQlG +RT @hillbrad: If the helpdesk tells me to downgrade my browser to complete mandatory security training, can I placement test out by saying … +RT @timothypmurphy: If pro-choice activists really want to stop Texas from regulating clinics maybe they should just rename them "fertilize… +RT @matthew_d_green: The Guardian needs a 'skip' button like Pandora, for when you'd like to move on to the next leak. +@ioerror I have no trouble with it, I just think he has a British spell checker :) +@aquavitaecoll yeah. You see it with words like "team" in news coverage +@aquavitaecoll "The United States has fifty members." "The United States have fifty members." +Spot the distinctly British copy-editing. http://t.co/98KpL3ZON3 (hint: British and American English treat collective nouns differently) +@vogon since I haven’t seen Cambria much in the wild at all, I postulate you have a Microsoft Problem. +@CaptainSaicin I consider URLs that end in .pdf to be a PDF warning… if your client only shows the tco, it’s terrible. +@vogon not times new roman, still counts +This is the prettiest disclosure I have ever seen http://t.co/4hRxRrSNVc oh and there’s a catastrophic bug in Atlassian stuff +RT @RUSALGBT: This is how Gay Pride looked TODAY in St. Petersburg, Russia. Unspeakable violence. All Pride marchers got arrested http://t.… +@Mr_Reed_ I don’t know that I have access to a plasma screen! +@m1sp @WhiteMageSlave http://t.co/abSbmIvx6d +@ra6bit @_larry0 if you’d been showing up to the infosec cabal meetings, you’d have known of this weeks ago ! +RT @jerryshenk: RT @Crypt0s: Oops! CNN Publishes George Zimmerman's Social Security Number: https://t.co/aKZbMng7DH <- and DOB, height, we… +RT @Pinboard: Amnesty International warning that Edward Snowden can endure two, maybe three more Cinnabons before living in airport becomes… +@chriseng no twitter account? Mua ha ha ha +@aredridel @silentbicycle but that one actually makes sense. +@raudelmil now that'd be a vipper +Vipers gonna vipe. Whatever that means. +RT @mippadvocates: #StandWithTxWomen RT @WholeWomans: The crowd via @TexasTribune http://t.co/EpRd8LuXvm +@m1sp I'm thinking of removing all, like, two of Deloram's spoken lines and making her factually mute. +RT @sec_reactions: Vendors that threaten to sue for going full disclosure - by @aloria http://t.co/YsXgEmMNRV +RT @mikko: First US declares they will consider any foreign hack against their governmental systems an act of war. Then they go and hack EU… +@icculus @vogon lemme know if you figure what hash it is… +RT @icculus: So your software uses weak hashes because reasonable data will never have a collision, huh? http://t.co/Q9RHX7bOVH +RT @vogon: @0xabad1dea he'll probably want an ad hominem, that entitled asshole +If You Give A Moose A Slippery Slope Fallacy +"If you give that moose a muffin, next thing you know, you've replaced Linux's entire userland with RPMs from 2005" #meetingquotes +@xa329 it's a plain single cpp file in a plain "gimme a console app" project pretty hard to mess that up D: +I was fuming because I wanted a brownie for lunch and didn't get one. Then the gods dropped surprise chocolate cake into my lap! +"This project is out-of-date. Would you like to build it?" "yes" "Build succeeded: 0 failed 0 succeeded 1 up-to-date" +Good heavens gcc at least Visual Studio knows that no optimization means no removing function calls entirely in favor of a strcpy +@dragosr @chriseng I don't. It was probably a poster delivery for the marketing department. But that's not fun. +@Taiki__San don't worry, I'm *trying* to break things :) +@chriseng I don’t know but if no one else wants it, I’ll take it! +@jeremiahfelt dunno, didn’t get to see who it is for… +.@thegrugq called it: some company open since at least the mid-80s is actively traffic shaping to favor NSA taps, according to German news… +RT @csoghoian: Unnamed NSA partner company "aggressively involved in shaping traffic to run signals of interest past [NSA] monitors" http:/… +It’s in my blood, apparently http://t.co/Hfc6wqdf6b via @hypatiadotca +RT @SecurityHumor: Same-hex marriage with computers is an abomination. The Codex clearly states marriage is between a little-endian and big… +The UPS guy brought a package to the office eight inches wide and seven feet long. Had to swear I did not order a giant antenna. +@vogon apparently the null termination semantics are a trifle different, but that just moves the lack of adequate explanation downhill +And that day, abadidea discovered that snprintf was among the C99-ish things Visual Studio doesn't deign to support +@DrPizza I am so happy about that. Ad NOT just because I keep trying to arrange @m1sp’s marriage +Enjoy Canada Day while you can, Canadians. *sinister and distinctly American chuckle* +@thegrugq @pusscat it’s not even noon, Mr. Asia +RT @kansasalps: It's official, @fakedansavage has won: You can't use Santorum as a name in the new Animal Crossing. http://t.co/4WoaGbADKM +@BenjySarlin @innismir and by global, I do mean many-to-many +@BenjySarlin @innismir why does it need to be “patriotic”? I’m more interested in fixing the global surveillance problem. +@pusscat @thegrugq he’s convinced I’m a minor +@ptolts more or less, I work on a decompiler and control flow analyzer thing :) +@Hypnodrone heh, not with transmitters :) I only own a bunch of the cheap RTL-SDRs. The best one of that lot is Elonics E4000. +@apiary his name is allegedly Jared and he’s allegedly on Research +I have new coworker. His first sight of me was sitting on the floor. Hi, new coworker! I am noted for a disdain of my chair. +RT @daveshumka: Google Reader still works! It's a Canada Day miracle! +RT @MarkKriegsman: This is 10% CLOCK, 20% mem. 15% bit-banged P-W-M. 5% ACK, 50% SYN, and 100% reason to rewire the pins. (Good luck & god… +RT @wwwtxt: For what it's worth, I've been told that TrueType _screams_ under Windows 3.1. ☯91NOV +RT @mikko: Photo of an ATM skimmer and camera recovered yesterday: http://t.co/Nj0vucI89H Note the camera hole. Photo © Helsinki Police Dep… +RT @jedisct1: American Express, Dell, Fanta, Google, HP, Microsoft... malayisian DNS records have been hijacked, redirecting to 173.199.138… +@LargeCardinal when you talk about someone on twitter, and they have a username, but you don’t @ them +@m1sp designs! Of character! http://t.co/Ujfpglscdo +@CreetureNZ @thegrugq considering how few of you there are, I feel like I’ve met half the country on twitter :) +@puellavulnerata I really hate to break it to you, but that quote sources to the Daily Currant. +@puellavulnerata … he didn’t actually literally advocate bombing Hong Kong did he ? +@ChuckBaggett @puellavulnerata no, no, we’re stuck with Canada. And China. For completely different reasons. +@thegrugq poor India and South Africa and all those other places too obscure to remember +@thegrugq New Zealand must feel like a beloved kid brother, not even having the population of one American city. +@pingudownunder sdr touch +@Pepyri_ when you talk about someone, who has a twitter handle, but don’t @ them. Yes, I subtweeted them. +Someone *subtweeted* me! This is an outrage! +RT @jack_daniel: He could brainstorm for hours and never get wet. +@quine @nickdepetrillo I was being sarcastic, Lord Quine. +RT @Sapphykinz: "A wizard is never late. Nor is he early. He comes out precisely when he means to." http://t.co/uArfGbSUxw +@aeleruil since API 1.1 +RT @pueblokc: Celebrating freedom with this.?! I RT @ParanormalAR: RT @TehDissident: You're Drunk Freedom, Go Home! ~~> http://t.co/h85Nxwu… +RT @jmechner: "Whoa, is this a Game Boy?! COOL! I can't believe you still have one!" -10 yr old, born in 2003 +@WhatHoCenturion the Netherlands +RT @Cairo67Unedited: BBC just confirmed what the majority of Eyptians knew hours ago as fact this is the largest demonstration in the histo… +@cgiffard NOT *THAT* MUCH +@mcastilloy2k yeeeeup. +I'm reading a Japanese manga where the girl who moved to Japan from America likes to say "Do it or I'll sue you!" ... ... ... ...... +@m1sp I am inexplicably attracted to this man. http://t.co/ghqZFnfZY6 +@ilkeryoldas Because you are actively being part of the problem by saying that if I just played better this problem would go away +@ilkeryoldas also, you're mansplaining yourself to hell and back. +@ilkeryoldas I've been playing video games for nineteen years. I'm DAMN good at them, son. +@ilkeryoldas um..... did you miss the whole point, being, that NO MATTER WHAT, women are slandered and abused? +@ilkeryoldas @sascha_d wtf no feminism is not misandry. If you think women wanting the same rights and respect as you is misandry, get out. +@hokazenoflames it seems two of them are generating tmp files and then can't delete them lol +@0xcharlie @nickdepetrillo aww, it's okay, Dr. Miller... *I* think you're smart +@focalintent @MarkKriegsman is this prompt enough http://t.co/HU4m6B9INY +Currently running three different Visual Studios, may the gods forgive me +@0xcharlie @nickdepetrillo yeah yeah it's only defcon right? Neither of us is big-time enough to present at Blackhat, after all... +@i0n1c I forget why we hate each other, can you unblock me from following your wisdom about iOS? :p +@chriseng @nickdepetrillo I'm only in it for the pinball +@chriseng @nickdepetrillo we already do that on iMessage +@nickdepetrillo @0xcharlie which issue was it in? :) +@nickdepetrillo I enjoy feigning outrage +@0xcharlie @nickdepetrillo I'm working on my slides, what do you think? http://t.co/FXRokmH7uw +@cwebber I don't want to be called a *certified* hacker :) +From the archives: Don't mess with Steven. http://t.co/zogXMEbyYF +@grumpybozo I know -- I have tuned that very telescope with my own hands :) +There's a murder of crows just, like, camping my front yard #nsa #conspiracy +# 351487430408421377 +@grumpybozo it isn't, I was able to see the real hydrogen line last night, it's junk that's a harmonic of something inside the radio +@iosvap @nitoTV indeed, I definitely don't have any, though I don't see how that's relevant. +@KronicDeth the ghost girl from Paper Mario 2 is another one whose transgender identity is swept under the carpet in translation +@SimonZerafa it's an elonics 4000 + generic OTG usb-to-micro adapter. The tablet is nexus 7 +@liquidvicodin elonics e4000 +@asyncsrc just getting the thing to work with android was a success +@Havokca come to Defcon! :p +The antenna was getting in the way so now it's a hair accessory http://t.co/YFCrm6qLAG +@puellavulnerata at android +@Havokca running the radio on android :) +Success! Until you bump it anyway. There's just BARELY enough power. http://t.co/I7zqms766p +I found the missing lightning cable, while looking for a different cable altogether. +@niteshad in the dark, it might as well be +"You know what this radio needs? A LED status light you can see from outer space" http://t.co/Qy4aaPP93k +@ReturnInfinity no, go ahead, I consider it completely free (though a credit in some file would be nice :) ) +@mattblaze @xa329 well, locking it up in my faraday cage as best I can, it has a harmonic at 355.2mhz, which isn't ringing any bells +@hokazenoflames the vertical donkey kong and warioware were off but I remembered them; it was the POW block stage I'd forgotten +@jesster_king I'm not indecisive about things I *actually care about* +@robotharvest I prefer to think I'm cute... but I'm quite tall +@jesster_king it's globally illegal to broadcast in 1400 through 1427. It is reserved for radio astronomy (which is what I was doing) +@CyborgCode to do what? But generally one doesn’t need a specific degree to do what they want in programming they just need to learn +@CyborgCode I applied, there is no other way. +RT @MrToph: Reminder: You have less than 12 hours to get your shit out of Google reader. Last call, folks. +RT @deborahhorne: #nwpride Scouts provide color guard for Pride Parade for first time ever in Seattle. @kiro7seattle http://t.co/tAQX1IcT1u +RT @mortman: Foxtrot today FTW http://t.co/Hd9Ob31hw7 +@geekable I don't know, I don't care, just saying, that sign is kinda passive aggressive rude-like +@geekable “just saying” is passive aggressive to the max :p +@geekable well, just glancing at the sign, that looks more like demanding one look hotter. +@maradydd @leighhollowell @HackerHuntress @Secbuff I *tried* to wear men’s pants but I couldn’t find any that fit over my hips! +I hate pikmin. They freak me out. Die, little pikmin, die. http://t.co/NgNhvELyNR +@xa329 @mattblaze it’s an iMac. And there’s noise all over the place. Thousands of noises. Gotta catch ‘em all :) +@geekable I prefer to phrase it as: unhealthy living is a choice. +Apparently certain stages have been turned off random select in my 5yo Smash Bros save for so long I forgot they even existed. +@mattblaze the noise floor is about -86 and the peak is about -70 +RT @nagoul1: Please share > In case they shut off access to the internet: Dialup no. 004-949-23197-844321 User: Telecomix Password: Teleco… +@ErrataRob @maradydd we had… sword drills… which are not as cool as you’re thinking. +RT @savagejen: I also think we're seeing evidence of self-censorship as a result of the NSA surveillance. This is what "nothing to hide" is… +@mattblaze here's mine http://t.co/4cDTEgJU9Z and I'm using a USB radio with no external power +@tapbot_paul I simply *have no answer* and it sometimes infuriates people +@tapbot_paul I wear glasses yeah but I mean more like questions which ask for opinions on things that just, like don't MATTER to me +It drove the psychiatrists nuts, it drives lots of people nuts, and all I want to be asked is about technical things +One of my perpetual problems in life is that if you ask me if I'd prefer this or that I often literally cannot answer. +@mattblaze I found several people on the googles who, looking for the hydrogen line, also noticed the spike at .8, steady and unwavering :< +@akopa well, regardless of whether slavery was the reason the South went to war, it wasn't very conductive to the liberty of some People. +@stillchip I'm just quoting the quote +"Whenever any Form of Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it" +@akopa if SETI could automatically discard all terrestrial signals, their job would be a lot easier I imagine! +@raudelmil though I do live in a townhouse so the neighbors might. But, this is in many people's radio astronomy charts. +@raudelmil well, I don't think I own any devices with RAM at that speed, as I made a point of surveying them recently. +@travisgoodspeed (and this 1420.8 signal was there when I was picking up the 1420.4 one) +@mattblaze it's always there no matter which antenna I use, including none (the radio still picks things up very fainly w/o one) +@travisgoodspeed no, I got the hydrogen line last night, where it's meant to me, at 1420.4 :) +But at least I know it's not RAM (someone makes RAM at that speed apparently) if SETI was seeing it over a decade ago. +Trying to determine what is the spike at 1420.8mhz... only finding a decade of forum postings asking the very same question. +@maradydd and I ended up a writer at a young age, all my stories starring girls with stabby implements of some description. +I awoke to find a single hair upon my face. It’s finally come… my unix beard +@maradydd really not sure. I remember desperately looking for girls in the comics and stuff I had available and usually disappointed +@maradydd my father once criticized something I wrote because the princess rescued her husband-to-be. +@maradydd I don’t think so, as the children who are victimized by it see the same in reality, and fiction was supposed to be their “escape” +@sciencecomic @Lubchansky “She kept it all bottled up. Until she met…” +@kvegh it took me a moment to even figure out what it was… +RT @savagejen: That's not how free speech works. Either you let everyone print or it's not free. +RT @savagejen: Here's the thing: if we allow the government to decide what is a journalist, then we let them decide what's acceptable to pr… +@kyhwana not afaict. I had @vogon retrigger a few times to mixed results… +@nelhage what have I told you kids about running with scissors and using crypto with no sanity checks +This is driving me nuts. Sometimes when I get a twitter alert, I get interference on the waterfall display. And sometimes not. +RT @nelhage: Can we take a moment to talk about the fact that M2Crypto will even *let* you request RSA with e=1? +@DefuseSec @nickm_tor @solardiz the best part is where they act like it was merely suboptimal and just a casual fix +@Packetknife cheer up, the soda ban was found unconstitutional. +@_____C and apparently some people are protesting against adding women avatars to Arma 3 bc they’d have an unfair advantage due to manners! +@_____C it really varies by genre. Shooters are the worst. +RT @tavisrudd: Ada Lovelace on the pains of dealing with mutable variables and state http://t.co/BmG82aXXkl +@0x17h you might be overthinking it. +@nickm_tor … what +RT @nickm_tor: Wow. "It's questionable whether 1 (not a prime) was a good choice for the exponent to begin with." https://t.co/Y6UwnVQoEw +@vogon ahh, I kept the phone awake and the spurt didn't happen this time +@vogon favorite this tweet for science +@vogon I'd already lost it, but there really was a spurt if noise when you favorited it +@scott_r_harris but there was a very thin, very faint line right on the dot, in a sea of nothing. +@scott_r_harris just a plain RTL-SDR. Could actually see it better when I removed the external antenna +That is, until @vogon favorited a tweet, it woke up my phone, and the interference ruined my reception. +Tonight's excitement: I was briefly able to pick up the hydrogen line +@asyncsrc I got into radios years ago and have only recently had the time and resources to invest in getting into trouble ;) +@thegrugq that's my desk at home actually; you can tell because of the sleeping bag jammed in to keep the furniture steady. +Oooh this looks like so much fun http://t.co/615MsRgOZY I can't resist anything with the word "heterodyne" I mean really +@thegrugq @matthew_d_green I NEED SOME ENTERTAINMENT, MAN. +@ra6bit that's probably it. +@ra6bit http://t.co/Oa5jBAWK5S I remember it as being big enough to lay three people across, perhaps. +@ra6bit I just checked and apparently by 14 I meant 40' diameter. Not sure why "14" was lodged in my brain. +@ra6bit I got to play with the old analog 14' dish though... +@audpicc @himatako I doubt it was conscious. Trans-everything has a bit of a visibility problem, I think.... +@crash8668 I prefer to leave that to Pinkie Pie... I prefer to think of that event as someone making a tribute to my honor ;) +My life's ambition is some day @TheNRAO will let me steer the Green Bank telescope. You know, the big one http://t.co/KB1cD6DPoJ +@crash8668 heheh yeah there's a note about that on my webpage ;) got some very confused and angry tweets when that happened... +@crash8668 oh gods, they're still defaming me... ! +I'm having so much fun doing my slides for defcon. It's hard to not just spoiler the whole thing. +@iShark5060 any girl who ever held a controller knows all about this sadly. +@skynetbnet @gentilkiwi @msftsecurity @msftsecresponse uh yes you’re screwed but there are trivial steps to take to make it less so +@skynetbnet @gentilkiwi @msftsecurity @msftsecresponse you know about swap, right? :) +@nickm_tor I’m dropping some mad postulation yo +@pete_rood there’s definitely a 9 in hexadecimal :) +Heck I’ll straight-up hypothesize P9 was meant to be Twitter. +So there’s P1 through P8 and then Apple is PA? Come on why are they so special. Or did a P9 get dropped? +@oh_rodr it would imply a certain amount of infrastructure… +RT @m1sp_ebooks: Gzip your friends! +New prism slides, finally. Note that some data types are called real-time. http://t.co/7FGdQ2c55w +@skynetbnet @gentilkiwi @msftsecurity @msftsecresponse it’s considered inferior to not doing that, for forensics reasons. +@pborenstein “we help people find mistakes in their computer programs” +RT @mike_br: what happens if i press No http://t.co/vqcvgjWbTz +@chort0 last time I had one take so long it was waiting for network boot +RT @gentilkiwi: Oups, @msftsecurity @msftsecresponse did you forget to use security in Windows 8.1 preview ? - http://t.co/8N6JflPX6z http:… +RT @DrPizza: Send someone DM, snigger quietly to yourself with the knowledge that they'll be marking the damn thing as read for weeks to co… +A man logs in as his wife’s username in a video game http://t.co/wFuiTXvnqe +I’d like to see my America argue it tapped the European Union offices because of their suspected terrorist associations +@Paul_Rout @linkshund @0x17h I dunno, where do landlords live? +# 351123131559182338 +I thought defining my job to my grandparents was hard... then an eight-year-old asked +I'm talking to an 8yo. "My brother is a bad influence. He's in jail... and he was late to our grandmother's funeral." +@rder0 however it says they MAY store it if they want, not they do store all of it +@rder0 they don't deny that the leaked document saying they are allowed to do so is real +Soooo.... I have a problem. I don't think I can get through my Defcon presentation without using the word "dongle." +@vogon do YOU have a toddler too? +A website selling milk just demanded to know my age before letting me in http://t.co/5lLCoDboRw +@tangenteroja they're fairly evil, but this is prebottled stuff at the grocery store, like bottled soda. It costs a lot less. +@Myriachan haven't installed windows 8.1 actually! Though really, heh... +Did you know Google Docs lets you use animated gifs for slide backgrounds? ;) +@WhiteMageSlave yeah go to the emergency room if you can +@WhiteMageSlave whaaaaaaaat what broke this time D: +Currently scouring the danboorus, the konachans and the pixivs for the finest in radio-related sickeningly cute pictures +@elad3 there's no chocolate in this, they also make a mocha flavor, I just mean, this is milk + flavor + sugar (the flavor being coffee) +@0x17h but my true blue original apple one (the one that isn't frayed anyway) is teh missing +@0x17h I hesitate to buy the generic ones because they reportedly have a very high flake-out rate (got an Amazon Basics one) +@maddashdan311 the gas stations mark them up... if you get them in packs at a grocery store they're about $1.60 +@devuberoi I will never survive in India then :( +@hokazenoflames ript one-day sale... I did link on that day... sorry :< +@argonblue @nelhage *contemplates taste* definitely a colloid. +(It's not coffee. It's like chocolate milk, except with coffee. And it costs the same as a bottled soda around here.) +@DrPizza if you like chocolate milk you'll probably like it. +@DrPizza I've been hooked on them for a few years now. But I only really like the plain coffee flavor. +I don't have a problem, I have a hobby http://t.co/nDRj5h5KCN +@RSWestmoreland sounds like they did, but the bieber escaped. +@WhiteMageSlave MOM THERE'S NO "M" IN HEXADECIMAL well okay there is in the word "hexadecimal" itself BUT STILL +@WhiteMageSlave what. +@matthew_d_green what a delightful young man he's become. +LOST: one lightning cable. Not frayed. White. REWARD: Less than it costs to get a new freaking lightning cable +@elomatreb but we don't have problems nearly as schadenfreude (and it's even in Germany) +How did I not hear that Germany confiscated a living monkey from Justin Bieber http://t.co/AaYuUZxeZq +@apiary looks like your kind of fashion... http://t.co/F3SV1rDSLk +@TeamAndIRC @pof if they have some public system equivalent to CVEs but with different numbers, that's good enough for my question I guess. +@TeamAndIRC @pof but my original question was where are the CVEs, which are public. +@TeamAndIRC @pof well what good is that? +@TeamAndIRC @pof okay, where can I find it? +@pof so I heard, and I was looking to see if anyone could find a contradiction. +Adding Grenada to the list of places where almost everything I say is illegal. http://t.co/tsy6ARDpVF +@securityd0g just searched on Amazon for wifi dish antenna +@securityd0g the generic wifi USB adapter which unexpectedly came with a copy of wifi password crackers :) +Finally got the thing apart, and found the MAC (overturned) literally taped to the processor. http://t.co/xoVabZ3a7C +@grumpybozo @geekable @joncallas oh I don’t think he’s an enemy of mine, I pick on the wording of things good friends say too :p +Me: “There’s no screws…” @codeferret_ : *peels off rubber footpad* Me: “Well don’t I feel silly” +I have a shirt. I am pleased. Yes, that halo effect follows me everywhere I walk. http://t.co/NWt11hINbj +@Packetknife @thegrugq I believe the word for what just ran through my head is “guffaw” +@OSVDB @_grimhacker I’ll take being told there’s known RCE (and not told the details) over being left in blissful ignorance any day. +RT @thegrugq: Sorry people, there are no terrorists who were a credible threat who used Skype. That was not the comms tradecraft of any kno… +The “antenna” sticking out of my new wifi adapter is a pure plastic cone. The real antenna is a metal disc it covers. +I’m on a scavenger hunt. I need a CVE that was filed for Android (incl. Google official apps I guess) that was originally reported by Google +@jack_daniel they raise prices on things you’ve bought before +@geekable @joncallas so it’s a PR disclosure filled with PR words that actively mislead, buried somewhere so they can say they disclosed +@geekable @joncallas it’s on their blog. Though it is a blog that looks brand new and doesn’t show up when I google “silent circle blog” +RT @hdmoore: Dear $vendor, if you place your passwd, shadow, and ssh keys in a read-only location of your firmware, you are going to have a… +@geekable @joncallas they included one, but it was actively misleading. +@geekable @joncallas this isn’t a virtual pet pony website, they sell security, probably mostly to people naive about it. +@thegrugq @haroonmeer @rantyben oh, so you’ve hacked my local vote and removed me, then? +@haroonmeer @rantyben there are at least a few of us in America who mean to stand for you +RT @haroonmeer: Why the reactions to NSA snooping make us "foreigners" sad pandas: https://t.co/Cnb9T5Hj2w (tl;dr: because it reminds us we… +@eevee hi Anise ! +@mdowd yeah, I know, with all respect to you, I am not happy with Silent Circle’s disclosure process. +@geekable @joncallas as it sweeps under the rug that 0days can and do enjoy long periods of silent (*cough*) exploitation +@geekable @joncallas I don’t accept misleading statements implying the first person to disclose the bug was necessarily the first to find it +Further more how can you say no one noticed the patch on GitHub, I myself was linking it like crazy @Silent_Circle +Hold the HECK up. You can’t say @mdowd was the first to find these bugs. You just can’t SAY that, @Silent_Circle http://t.co/Tc6XPDRpQf +@bobpoekert more bigger expensive ones ? +@Niki7a well now that you’ve gone and mentioned it, I need one +@bobpoekert not sure, perhaps they are a loss leader or whatever you call it +@ErrataRob @savagejen it’s not like our government tried to drive any civil rights leaders to suicide or anything +@bobpoekert err you get a terabyte included +Just noticed that my hosting provider http://t.co/jOyhKoqpc3 takes bitcoin... +Let's Play Bootleg Pokemon: Don't Do Dangerous. http://t.co/5PN7k5J46y +@MalwareJake Stone cold sober!!!! I can't handle even alcoholic cough syrup +@joshuajuran and had pulled it in under 8 minutes and made a tool to fix anyone up who got burned in that 8 minutes +@joshuajuran thought prompted by remembering how Malwarebytes accidentally shipped a bad update which flagged Windows as a virus +Living wild on a Friday night, updating Windows on battery power +@G13net ...maaaaaayhaps. +@mendel @hypatiadotca it was declared a point of historic interest, can’t cut it down without a permit +@StackSmashing don’t. That text was not written by any teen alive or dead. +@rbf_ one at my university too ;) +Do you speak teen? http://t.co/jM42srrI1E dedicated to @pborenstein +@Kufat you sneak cheat ! +Oh, also, there were no computers at my high school. Except in the principal’s office. It ran Windows 95. In 2006. +@Kufat it was explicitly forbidden at my school except for final drafts of, I think maybe five pages or more. And only final drafts. +@pborenstein well the cure to that is to post on nerd forums and get flame shamed +Teachers always act like every boss will be out to fire you for the slightest perceived offense. Never seen a teacher get fired though… +@geekable because you get fired when your emails use a different font size +At my high school (03 to 06) turning in homework typewritten was not allowed, I get the impression that has already changed most places +@deathtolamo not at all, this was back when children hand-wrote their essays ;) +I had the same English teacher for four years. A year in, I started writing a fake name on all my papers. Took her two years to notice. +@jack_daniel every now and then someone checks me on fav star and retweets my all time hits from eons ago +@my0b it’s a chastisement. I’m none too chuffed with Silent Circle. +@chadwik66 I stand around waiting for him to pick new headphones +@chadwik66 I want you to know I own one pair of shoes and one pair of boots. +“I see you just finished a novel about medieval warfare. Would you like some harlequin romance?” Amazon’s ad engine is a bit thick. +@kaepora @RiptideTempora it’s true, it’s me, I’m prism. All of it +@RiptideTempora @kaepora dang can’t believe I slipped up +@kaepora someone’s browsing imgur +RT @mattcutts: If you want to get *all* your data out of Google Reader (every read item, like, etc.), a former Googler wrote a tool: http:/… +# 350764191210143744 +@kaepora or just acting up for attention +@qole @StevenLevy I’m not sure if you’re kidding or you just got back from an expedition to Antarctica +Visual Studio to support subset of C99 http://t.co/A8ncGaIBbm As in 1999 +@ebcube her Brawl trophy describes her as intermediate gender; that’s probably her newest game aside from Mario Party 217 and a half +RT @StevenLevy: Yahoo shutting down Alta Vista Like getting invitation to funeral of someone who you thought died ten years ago. http://t.… +RT @hchamp: #Prop8 plaintiffs Kristin Perry and Sandra Stier at City Hall: https://t.co/KU01w9jiMQ #LoveIsLove +And yes, it is actually canon that Birdo from Super Mario is genderqueer. +RT @inversephase: In light of all of the recent (and constant) trans issues online, Birdo would like to remind you: http://t.co/bysX6q5fUR +@ScottMadin @0x17h http://t.co/aSKWFUsxQ6 +@0x17h this is the sad fate of the technology serfs +@0x17h I would, once its interface is no longer beta and its OS is no longer two major versions behind +@0x17h well, unless they cancel it outright, I think everyone’s taking it as a given that the mass-produced one will be a few hundred $ +@0x17h Glass doesn’t cost $1500. Getting a Glass from the first small production run costs $1500. +@ameaijou I don’t think I’m qualified to be coauthor! Never even written kernel code for OSX. Probably qualified to beta read it though… +RT @DanaDanger: The first post-Prop 8 same-sex marriage is taking place in twenty minutes at SF City Hall! +@ameaijou help with what exactly? +@ameaijou I haven’t blocked you have I? Even after you admitted to working on php :p +TLS forward secrecy: like everything else, easier to screw up than you think. https://t.co/KTX9rfLUjn +RT @thierryzoller: WOW - Vendor asking for weaponised exploit based on previously patched vuln. Forgets to remove mail trail from .MIL aski… +RT @steveklabnik: Neo-nazis chased me down the street for taking this photo. The Golden Dawn is a real problem, they… http://t.co/36oEbGRf… +RT @adamcecc: Young Hacker: I'm going to break RSA! Hacker: Crypto Math is hard. Old Hacker: I broke every crypto I've ever looked at sans … +@loligurolove or Kickstarter and its recent PR rather than technical colossal screwup +@loligurolove Malwarebytes prompted the thought, they pushed a bad update that flagged Windows, for eight minutes. +I feel safest using products that have had exactly one colossal screwup and handled it well +RT @thegrugq: @WeldPond @tufts_cs_mchow @violetblue move fast and break things ... apparently applies to trust too. +RT @aaronportnoy: The Chicago Blackhawks bought a full page in today's Boston Globe: http://t.co/slsQ8JoH1T +How the heck do you “accidentally” upload and store the phone numbers of people not even logged in? http://t.co/0RpmnW7nce +RT @hemantmehta: This is as good a time as any to remind everyone to export their Google Reader feeds *somewhere* because they’ll be gone a… +@hypatiadotca but… the one that looks like me dies :( +RT @heyadam: Think your app is intuitive? Set the OS language to Chinese and hand it to someone. +RT @Silent_Circle: The updated version of Silent Phone has been completed and is available on Google Play & the Apple Store. Please update … +@axiomfinity and I feel free to use a fatal example given the gravity with which Silent Circle (which prompted the remark) promotes itself +@axiomfinity what’s the difference between a car wasting fuel and the brakes locking up randomly and killing you? +@ternus you’re no fun at all +Have I ever mentioned how much I hate it when security patches are marked as “bug fixes” without comment? +RT @kaepora: Incredible — this is the update log for the @Silent_Circle update which actually fixes many critical vulnerabilities: http://t… +Abadidea 101: If I won't stop talking to you, it's not because I'm an informant. I probably just have a huge nerd crush on you +@bhelyer there are few people he bends his ear to, and they had best go bend it a bit harder. +A proud man injures a small country’s pride. http://t.co/mJgw0Jbk53 +@Kufat see also me doing the firebrand thing re: silent circle +@Kufat the theoretical math is sound but a bug is a bug is a bug is a bug is exploitable. +@welshypie interestingly it’d be the reverse of the story: the king would do what his evil advisors tell him +RT @a_greenberg: Here's What It Looks Like When Two Hacker FBI Informants Try To Inform On Each Other http://t.co/wOT8jsbCht +Real-world cryptography is just as much about software engineering as about the math. If not more so. +@info_dox well they all get EIP. It’s just a question of sorting ones that only get EIP when the user could get it anyway. +@kirkmurphy @Silent_Circle which is, in my opinion, a breach of responsible disclosure practices +@kirkmurphy @Silent_Circle there has been a patch for a serious bug in third-party code they use, but they haven’t announced that afaict +RT @MarkKriegsman: In C, an uninitialized "bool" can be BOTH true AND false at the same time: http://t.co/lzgVNAZTNx Yes, really. +@TXVB it’s probably already been pushed, but that wasn’t my complaint. +Since I just read Game of Thrones, Sansa pleading for her father’s life is fresh in my mind, I say for no reason http://t.co/83t6FtdFlg +@ladykayaker @AnonymousIRC @Silent_Circle that’s public knowledge to begin with for anyone who knows how to deal with binaries +#ff @CyberSquirrel1 not a week goes by without an assault on our infrastructure from the furry terrorist menace +@WhiteMageSlave probably. I didn't. +RT @arlenarlenarlen: No really guys, ball chain is only $50/km. http://t.co/QIlUhGkbTC context https://t.co/9rsTmFemUE and http://t.co/mYej… +@ioerror it looks like they’ve been taking the “silent” approach to bug fixing, instead of keeping customers informed where the risk stands. +RT @rogueclown: this is wonderful: Trans 101, Up Goer Five style. http://t.co/iIVvOh7y5h +@shmoosr @Silent_Circle if so that’s super great but I’m a fan if loud and clear disclosure :) +@MarkKriegsman the unlock fairy flitted by, hesitated, felt guilty, and didn’t wreck anything +Though I realize @Silent_Circle has no more power than anyone else to get critical fixes through the bog of the Apple App Store Review. +@shmoosr @Silent_Circle this one https://t.co/VfyGpBhizx +@thegrugq @Silent_Circle @mdowd here we go. https://t.co/VfyGpBhizx I know how to reverse from that… +@thegrugq @Silent_Circle @mdowd doesn’t matter, the patch is on github +I note @Silent_Circle hasn’t mentioned on its twitter feed that serious security bugs have been filed against a library it depends on +Tales of ten years ago: first time my baby brother played Morrowind, he ate the mushrooms called Bungler’s Bane. He was a bungler I guess +@miuaf http://t.co/IuaGms1k7A I reckon +And no, my first job wasn’t an abusive holiday hater, I worked at a summer boarding school +At my first job we didn’t have the 4th of July off. At this job I get that AND the Fifth! To mourn for the 4th and 5th amendments, I guess +RT @rgov: Every time I visit Amazon I get put in a different A/B test group and the page looks significantly different. +@thegrugq dunno how I missed this last night… I’ll go drag the truth of it out of my Akamai friends. Hey @ternus is this so +Fairy conga line http://t.co/Tf96BIxIL0 +@tapbot_paul that’s a pretty good random dungeon generation algorithm +@doismellburning @finn copy-paste it to notepad and find out :) +@thequux the infosec industry is Ethical Bad Guys: The Movie +@hypatiadotca unfortunately it was run on a deliberately old copy, it’s not 0day ;( +Oh snap, Mayhem found an exploitable bug in iwconfig in 1.9 seconds +@nickdepetrillo @fredowsley *leans over cubicle wall* *highest of fives* +I should write back to the person offering lists of database customers, and ask for the list of mongodb users, as I must send my condolences +I apparently have no head for corporate politics. One of those “stubborn in their honor” types who gets beheaded. Wait, no, wrong book. +RT @timothypmurphy: How should you talk to your kid about the New Yorker cover? Probably something like, "Damn, you read the New Yorker? Yo… +@erwinkooi Thanks for being the first follower over nine thousand ;) +The research work on MAYHEM looks great and useful. (Just remember 1200 EIP hijacks != 1200 real-world attack vectors.) +RT @apiary: it is a bad sign when I ask someone to clear their cache and they have no idea what I'm talking about. +@sec_reactions @robertauger but… she wins that match, as I recall! +RT @41414141: "@joernchen: .@41414141 they just cannot read your preso: http://t.co/zvOHKSajuF" <- epic CiscOMFG vuln handling: just block … +Red panda baby red panda http://t.co/xjYkJZjnp6 +I just got an email at my work address asking if I’d like to buy lists of people who use certain databases. Wat +@i0n1c @wimremes potato is a vegetable! We’re fierce good win potatoes. +RT @bSr43: Hopper 2.7.16 is available (and submitted to the Mac App Store) http://t.co/eMtLbIBb4r +@wimremes @thegrugq he spells bad. “I don’t know what a grugq is, but it must be something really cool, because I have a man-crush on one” +"Herald of Arms Extraordinary" I'm petitioning to have my job title changed to "Researcher Extraordinary" immediately +@puellavulnerata it turned out to be transient +Category:Articles I Am Glad Will Never Mention My Name http://t.co/rjayfxjJ5R +@m1sp "let me look up the list of typical court positions." http://t.co/EBbjgDR2KQ +@dan_crowley and womansplaining will be a good word for the coming feminist dystopia. :) +@dan_crowley and anyway patriarchynormalizationofprivilegesplained is a mouthful. +@dan_crowley I never said it has nothing to do with being a man! Being a man is necessary but not sufficient to be a mansplainer +@dan_crowley and, gods forgive me, I’ve probably whitesplained to someone at some point. +@dan_crowley it is something women say to other women, who nod and understand and commiserate. +@dan_crowley The word “mansplaining” is not used as a weapon. It can’t be. It bounces off, meaningless to them. +@dan_crowley mansplaining is not about being a man! It is about being a man noted for talking down to women. +@dan_crowley they both are meant to imply there’s something shameful about being a woman or being gay. +@dan_crowley because people who abuse privilege sometimes need a cold slap in the face to remember they have it. +@dan_crowley whitesplaining turns up hits on google and of course on tumblr… speaking only for myself, I’d use the word readily. +@dan_crowley it is the best word I know for that feeling when a man looks down his nose when I open my mouth. Certain men. Never all. +@dan_crowley it’s of privileged origin. If we gave all power to redheads, I’d be a brownie subjected to gingersplaining no doubt. +@chriseng @ioerror @kylemaxwell As I recall, you were there too, though you missed out on some good pizza… +@dan_crowley it is about power balance. +@dan_crowley When there comes a time when a womanly congress tells a man he shall not have a vasectomy for his own good, womansplainers all. +@ioerror @kylemaxwell you coming to Vegas? Wouldn’t want my suspicion flag to expire for lack of suspicious activity. +RT @TriciaLockwood: My body is an internet ... the government doesn't understand how it works +RT @csoghoian: When US gov officials say "we are not collecting X type of data under this program" they just mean that surveillance program… +RT @xor: The newest member of @EFF's board takes no prisoners, so there is never a dilemma. https://t.co/2FKruHIpQ2 http://t.co/sVpKjQ0tam +@JackLScanlan I’m not sorry neither +@JackLScanlan every meme repeated is a prayer fair to the ears of our atheist god, Dawkins +@mikesacco @JackLScanlan Jack (and stranger), I’m going to fight you on this. There is not something inherently wrong with turns of phrase. +@oh_rodr of course they are. And it’s no coincidence the only American citizens they’ve been sent against are brown. +RT @starsandrobots: “Asking a professor whether you should do a PhD is inquiring with a lottery winner on whether you should buy a ticket.”… +@dan_crowley and it’s slangy, but I’m not sure what better way to term the phenomenon of certain men telling women what women think. +@dan_crowley a man saying something does not make him a mansplainer; it is not an insult that casts a shadow over the whole gender. +@CyborgCode with github, they have free utilities for Windows and OSX, and there are other git clients for Linux, to manage the codebase +@CyborgCode Programming, and that's as broad a question as asking how to learn art. +@allicient @elwoz it was never built with any such concepts. It was built with one concept: receive get or post. Spit out text in reply. +@Izkda it's a single syllable, but I'm told it means eye or snow, the latter probably being what's triggering the weather card. +RE: the Icelandic WL defector: don't put heavy moral burdens on the shoulders of teens. They need time to think and grow in a safe role. +# 350402743120326656 +Bing Translator super helpful. http://t.co/AfgNyxBD8Y +@IPvFletch I hate to ruin your pun and point out that’s hangul +I heard your client lacks unicode support >(눈‸눈)< good. +I found a new emoji 눈‸눈 +@hentaiphd @kivikakk says one who doesn’t need to fear mob violence +@pzmyers I’d much rather see them spend their tithes on factional infighting than outwards… +@elwoz concurrency: it’s definitely not the PHP way +RT @0xcharlie: Ugh, car hacking is real. I accidentally made myself crash into my garage today :(. http://t.co/NKeYeeIs7c +RT @matthew_d_green: Oh good, the ZRTPCPP bugs are in the Hello packet. The one ZRTP doesn't properly authenticate. +Here is the ZRTP patch — several classic easy-to-make C mistakes. https://t.co/VfyGpBhizx +“We decided to ninja-edit a public bug report even though THE PATCH IS ON GITHUB” https://t.co/xgcol2udu3 #helping #nothelping +@homakov I only like nerds. +@nrr that smile is because of the brain damage from the concussions +@puellavulnerata it is known that my email address has contacted the email addresses of anarchists, communists, and worse, Australians. +@cl_atlanta @tenfootfangs ah yes, Thomas Jefferson’s famous missive, Against Unions Mofte Gaye +RT @puellavulnerata: http://t.co/SjKEi12k3T Page 13: "Contact chaining and other metadata analysis do not qualify as 'interception' or 'sel… +@axiomsofchoice it’s not unreasonable for most people, but for some of us it’s completely unambiguous :) +@DarthNull it is in the style guide of the New Yorker, iirc, as they think it makes them high-bröw. +@kylemaxwell @ioerror @thegrugq oh of course. But I don’t think I’ve ever emailed him… only late-night twitter DMs… +@kylemaxwell okay, I did email @ioerror a bug report once, so sometimes one. +Regarding email collection: there is no doubt in my mind that I am two degrees of separation by mail away from Bad Guys Of Some Description. +@maxtch no actually… as I hear the apps I use are still crash-prone +Exactly as I assumed, they play games to maximize the amount of packets they snarf, not minimize. http://t.co/ZO0K5vHEHO +@profoundlypaige I pin the business cards of my favorite industry peers to my wall as proof they deign to speak with me :p +RT @puellavulnerata: http://t.co/aEIBiQUUKu Pg. 10, note 4: "...at NSA's request, a vendor diverted a shipment of servers intended for othe… +@DrinkTillKaren and I'm sure maybe not every clinic in Texas is wholly up to those standards! But it's used as an excuse. +@DrinkTillKaren that is a general healthcare concern and we have legions of regulators to keep common sanitation from even being a choice. +RT @thegrugq: “@mdowd: @moxie @thegrugq "uses java...so is not vulnerable” << the first time these words have ever been spoken! +@singawhore @GovernorPerry I was raised in the same faith he was. Am I arrogant to suppose I turned out better? :) +@matthew_d_green see you there at definitely not a conference +@Samurai336 and that is their greatest sin, that they presume freedom of religion to mean freedom to enforce theirs. +Also @GovernorPerry by his own words wants to “protect women” from their own healthcare choices, as if they’re small children. +I’m disgusted by the way @GovernorPerry shamelessly promotes his personal religion as if it’s the decider of the law. +@GovernorPerry protect women from what, their own choices? +@CyborgCode I'm not really sure what you're asking; naming the file which explains how to install "README" is just a tradition. +#siblings http://t.co/Vk50qRTJRK +@JackLScanlan I'm told this should be tweeted at one Jack. I assume you were meant. http://t.co/QiK3OBPSx1 +@vathpela yup, and they failed me by the tiniest sliver. Good thing too, what was I thinkiing? +@MalwareJake 'merica +Every few months, I get an email asking me to apply to be an information services specialist for the Foreign Service. It's cute. +Gods forgive me for indulging in wikileaks drama, but this is all kinds of messed up. http://t.co/pZjf9zWLLV +@spacerog it’s a big leap of faith, but most in fact do not automatically post without user interaction +@philpem yes but the key point is that one definitely shouldn’t assume the crypto-phones are totally safe. +RT @mdowd: Would like to thank @Silent_Circle for turning around fixes for these bugs really quickly. Great job, guys! +@mdowd I wanna see let me see I won’t hack no phones sir +Mr. @mdowd has some serious vulns in crypto-phones. You know, those ones we’re all using to avoid the NSA. http://t.co/7jp4Qo6J7d +RT @photonstorm: My 7 year old found a box of 3.5" disks in my office, he said (and I quote) "are they like a collecting card game from Vic… +@DavidNakamura @ioerror 30-year-old, your grace. +Of all the things one could say to defend the NSA, you say it’s a job creator? https://t.co/B2nOmvwrt1 (congressman) +@Call_Me_Dutch never seen a politician say so plainly he will put up with anything for money. +@m1sp It is his very first meeting with Our Lady of Overreaction. +@m1sp I forgot what I originally asked for, and assumed you meant the European Space Agency +RT @MarkKriegsman: @Veracode goes black tie at the E&Y Entrepreneur of The Year awards. We clean up nice, don't we! http://t.co/iBKFDrdKn6 +RT @mccv: New interview question: "what's your favorite build system?" Correct answers: 1) Rage face 2) None of them 3) Literal table flip +@themarkcaudill @puellavulnerata you know, like squirrel marriage and stuff +RT @puellavulnerata: Oh, now that's taking stupid to a whole new level: https://t.co/MRa1DTywfq +@BryanJFischer I have read many willfully ignorant things today. The throne belongs to you. +@m1sp he’s not so tough without a pterosaur to back him up http://t.co/HWnD6anUKZ +RT @stevebenen: 3 hours ago: Rick Perry declares, "Texans value life." 1/2 hour ago: Texas carries out its 500th execution since 1982 +@dakami well that was cute +Heck of a Facebook bug. A moment of silence for a merciful death. http://t.co/utewTpZBFf +@dakami I have a word for that… +RT @SCOTUS_Scalia: Yesterday I voted to overturn a legislative body. Today I said it was offensive for a court to do so. The difference is … +@eevee sorry, please adjust your decoder for sarcasm and try again +@rgov they are steadily slipping more into the defaults to, I don’t know, drive engagement +@eevee that makes them sooooo much less creepy. Thanks. +@jduck even Apple Maps can find him http://t.co/HqUGH1F3Nb +@ioerror @puellavulnerata who’s invited? +# 350040625170751488 +@_larry0 knowing where you work, that gives me The Worries. +RT @cjcmichel: And here we go again. RT @ArletteSaenz: Rick Perry just called a special session, starts July 1st +RT @dangoodin001: Can Apple read your iMessages? Ars deciphers “end-to-end” crypto claims http://t.co/JJMrjf41hF +@jonelf she is a character in my novel, not known for being emotionally balanced. +@chort0 ah, sorry! The mail came. I was busy writing the first Scathing Review of Malware, but I intend to write several. +@fdiesch The Lord never looked so ladylike, I’d reckon… +Look look I drew something! … why are you all looking at me like that? http://t.co/auabk3SwkF +@ternus fair enough, but city folk are notorious for being too scared of horses to go near them :) +RT @fivethirtyeight: By August, about 600m people worldwide will live in states/countries with gay marriage vs. about 300m a year ago. +@ternus you know you’re a city boy when you think that’s a problem folk don’t have no more. :p +I don’t know which mystery is greater: why my USB stick has a folder named gayporn, or why it only contains signing certificates +RT @vogon: @0xabad1dea a Halliburton always repays his debts +In a thousand years, they will speak of corporations as we do noble lineages. “The House of Sun crumbled, and became vassals of another” +RT @jgeorge: An article about HP admitting a backdoor in a product was interrupted by an ad. For HP security analysis software. http://t.co… +LEGALISTIC ARGLE BARGLE http://t.co/kH1UTugQwl +RT @chort0: When a few officials say "trust us with surveillance, we'll follow the rules" you should do no such thing. Official lie & cheat… +RT @chort0: The TX Senate's attempt to blatantly break the rules should be a good argument for why transparency is critical for legitimate … +@ternus I only pray to red pandas. +@Neostrategos he’s been on the record as believing gay marriage is fundamentally evil for many years. +Best fundie response I’ve gotten yet: I am, to my surprise, a goat worshipper. +@DanMudd @0x17h yeah, that’s me, I went to school to study science and ended up praying to goats. What are you smoking, friend? +I await Orson Scott Card’s brave assault on the White House to fight and die for the right to not look at two dudes holding hands +RT @ternus: “Any government that [legalizes gay marriage] is my mortal enemy. I will act to destroy that government & bring it down”-Orson … +The future: Microsoft advertises 3D printer drivers shipping with the operating system. https://t.co/PkJ7KpasMN +@DanMudd @0x17h naw, see, treating animals humanely is a “lib” thing, abusing their bodies is more what the other side prefers +@mirell Catholics in rich countries are left to their own rational devices for the most part. +I will not hesitate to tell fundamentalists that they preach a religion of hate. I came out of that darkness, I know it intimately. +@ternus Melissa Elliott does not QUOTE, as if her words could fail her. +@GovMikeHuckabee You seriously believe your prophet is upset that human beings embrace in love and freedom? He sounds hateful. +@MadAttorney @0x17h you mean that place that turned down the opportunity to rape Lot’s daughters at his suggestion? +@ternus when the smile is soft and the eyes are gentle and the words truthful but not harsh. +@VirginiaProdan @0x17h I’m sorry, nobody could hear your tribal god over the calls of living human beings for their rights +RT @chriseng: Can't figure out how to add this test case to the regression suite. #veracode (h/t @MarkKriegsman) http://t.co/9mi1OSKOLy +RT @ScottFilmCritic: Woman opposes gay marriage for religious reasons. Facebook friend explains why she probably shouldn't. #DOMA http://t.… +@wimremes good gods man how many languages do you tweet in +RT @neiltyson: Science literacy is less about what you know & more about how your brain is wired for asking questions. +Expired cert stolen from Opera, used to sign malware http://t.co/lz8V2dkxex this is why checking those dang dates matters +@m1sp hey, you can gay marry an American now and it will count. Just saying. +@CyberiAccela nope. +@bhelyer the engine loves me ! +// need to review what the point of this function is And that’s when I knew this code base had achieved sentience +@codeferret_ haha probably. +@BatesLine almost no-one is advocating for late-term abortions for any reason other than life-or-death medical emergency, afaik. +@m1sp emotional support request +@BatesLine you’re deliberately ignoring that such a thing is typically in fact illegal ? +@hirojin it's actually just variable names +Someday I should ask my static analysis elders what is this “Solaris” they refer to in old documentation. Sounds almost… familiar… +@m1sp @CyberiAccela it’s okay, money, and furniture, grows on trees. +@CyberiAccela @m1sp it’s not stealing if you’re human, it’s manifest destiny. +@BatesLine and probably ignoring that the womb carries out far more natural abortions, often before the woman knows, than clinics ever will. +@BatesLine of course, you’re ignoring that almost all abortions happen as early in the pregnancy as possible, no one WANTS to wait +@BatesLine yeah? http://t.co/HowUPvt6IO +*・゜゚・*:.。..。.:*・’(*゚▽゚*)’・*:.。. .。.:*・゜゚・* F A B U L O U S +@Tomi_Tapio the heck is wrong with their hands +RT @ginatrapani: Very good morning hugging my wife and daughter, celebrating our upgrade from second-class citizenship. +@DarthNull @WeldPond I bet Amazon’s east coast facility went down. +@WeldPond you were struck by lightning ? Sudden clarity. +RT @hypatiadotca: Technical term. MT @ryangrim: Scalia calls the DOMA majority opinion "legalistic argle-bargle". Srsly. I think there's sp… +@pusscat high five +I was wondering why my morning twitter log was so large today… no wonder heh +@BryanJFischer back to Philosophy 101 with you. https://t.co/44AfBN28Rj +RT @nonstampNSC: Congratulations to those who have overcome the Mormon church's obscene anti-gay campaign of 2008. #marriageEquality #prop8 +RT @wyethwire: One last time: Privilege means never having to wonder if your Constitutional rights are about to change in the next 30 minut… +RT @SCOTUSblog: DOMA is unconstitutional +@kaepora a curiously American thing to do, really. +@cs2501x so mostly I was wondering if advocating to make sure someone’s phone line is nonstop busy is incitement to a crime. +@cs2501x I was reading tweets saying to make sure the phones of the Texas governor never stop ringing today +@DrWhax ah good, it’s an idiom… it sounds a touch odd translated literally +@cs2501x these seem to both fall under computer laws, and phone laws are older and generally more peculiar to my understanding +RT @notch: I love getting called gay as an insult. In my head it's like calling people swimmers. I don't swim, but I kinda like the idea. S… +@DrWhax err is blue eyes an idiom I am unfamiliar with or are they referring to shared ethnicity ? +RT @djon3s: There's never been a better time to gift an old laptop with a Tor and an EFF sticker to a seat at a train station. +Re: harassment: if ten thousand people place one call each to a publicly disclosed telephone number, who could you charge? +RT @CecileRichards: The official vote was recorded at 12:03 a.m. Know why? Because of you. #StandWithWendy #SB5 #TXLege +Are there actually any laws in America against manual telephone DDoS ? +RT @aurosan: Everyone, say hello to the Texas GOP: http://t.co/t037uUKDMp +RT @vogon: if nothing else my twitter feed is making me glad that I wasn't the only college student who tried to change timestamps to evade… +One of the villains of my novel is a cute, sweet girl easily provoked to sudden violence. No, I have no idea where I got the idea for her. +If you take my words too literally I will throw you off a bridge Metaphorically, one hopes +@m1sp I did not say anything about expertise dear Mispy ! +@rantyben I'm speaking of the sheer amount of free material and you know it. +If you have the internet and speak English, the only thing you may say after “I am ignorant on the subject” is “for five more minutes.” +@raudelmil there comes a point when base ignorance is a grown man’s danged own fault. +@BatesLine pick up a biology book, if they haven’t burned them all wherever you live +RT @MatthewKeysLive: Texas Senate changes website, now shows vote on SB5 happened before midnight on June 25 - http://t.co/YwKA6xKKSC +RT @MatthewKeysLive: Texas Senate website shows vote on anti-abortion bill SB5 took place on June 26 (after midnight) - http://t.co/KahMSwy… +@thegrugq it is always heartbreaking, it is not ever anything someone wants to do. +@amanicdroid @BatesLine He mansplained so hard that the Men’s Rights redditors just all fell pregnant. +@thegrugq Texas is a big place. Not everyone is crazy. And I understand that everything is illegal in Thailand. +Check out this guy’s timeline. @BatesLine Not hesitating to call him out as a privileged little festering wound. +@BatesLine Or mayhaps because to every one of those people, this DESPERATELY MATTERED? Tantrums, indeed. +@BatesLine Do you suppose the tiers of that gallery were packed with throngs on a Tuesday night for sport? +@BatesLine What a majestic dismissal of the desperate fight to protect half of humanity from the dark elements of the other. +@snare “We have to adjourn at midnight, unless it ‘twar a woman who kept us up so late” +@L0sPengu1n0s I don’t doubt that someone vandalized a potted plant or something, but that’s rather besides the point. +RT @jltowns: Omg. Just for the record - in this moment, this is the information the CNN machine is giving us. http://t.co/YtBc5biqWG +RT @rare_basement: THIS SHIT HAPPENS TO WOMEN EVERY DAY. "JUMP THROUGH THESE IMPOSSIBLE HOOPS TO SUCCEED. OH YOU MADE IT? WELL YOU LOSE ANY… +RT @amanicdroid: Hey, @BarackObama, there is oil in Texas. Let's take democracy to them. +Am I to understand that people of my country are being arrested within the halls of a legislature for protesting an illegal vote? … Damn. +RT @doubleNNjen: More than 50 troopers arresting people in the gallery +RT @nikhilgoya_l: Image of state troops entering the gallery. http://t.co/7YvFLOJYmF #StandWithWendy +@m1sp he does not know of such things; after all, Ismyrn is NOT the Aspect, but one who could be, and this he knows. +RT @spacerog: RT @KimZetter: Vine video showing the crowd outside the Texas Senate gallery tonight - https://t.co/0XAY0E1bB9 <- Local TX ne… +Do these senators even know about live streaming +@m1sp plot! http://t.co/UuLZTmytXo +What news from the mark? http://t.co/VLjUGI792l +RT @dresdencodak: I think we're officially seeing #OccupySexism +RT @andykilgore: Welcome to Whose Legislature Is It Anyway where the rules are made up and the points of order don't matter #sb5 #standwith… +Tonight: about six billion people hear the word “germane” for the first, and last, time. +RT @chriseng: Occupation: "The LeBron James of filibustering" http://t.co/BLi1QZNBPL #StandWithWendy +@maradydd apparently it’s three strikes and you’re out or something +@vogon /me tosses you a hundred RTs Pocket change +@vogon “member since June” looks legit… “2012” +RT @tikva: BTW, "point of order" is my new safeword. +@wookiee guilt trip much +@wookiee :O +RT @Seraph1337: hi. Wendy Davis, whether you agree w/ her or not, is a colossal badass with nerves of steel for doing this AFTER her office… +RT @rare_basement: hey non-americans confused about filibusters: dont worry most of us dont fully understand them either +@_wirepair he’s dead, man. They need to move on. +RT @ginatrapani: Yo @twitter, work with @falcon_android, will you? Your arbitrary token limit is killing a passionate community & dev who l… +@_wirepair @rantyben @thegrugq until they let him through customs * +@thegrugq @_wirepair but but but America has so many wonderful things! Like… like me ! +@m1sp how many days of school are there from kindergarten through third grade ? +@m1sp tonight in Abadidea Draws Dresses: Wow Abadidea Did You Know Dresses That Cover Shoulders Are An Option +RT @JasonAller: #standwithwendy in Texas how do legislators in wheelchairs filibuster? Do they have to stand? +@MalwareJake “cracks passwords” is a heck of a buzzword. +I don’t ever answer unexpected calls from mystery numbers on their first call… but 000-0000 is all kinds of special. http://t.co/LzvyoUEfPk +RT @natashenka: @0xabad1dea It was my clever ploy to get everyone to clone the entire repo ;) Slides on there own are here http://t.co/1kHk… +@m1sp never do anything with only one purpose in mind! If nothing else, you can always complicate the plot. +@me_irl as a larper I will respect their fantasy +In which a newspaper refers to killing combatants as hunting big game. http://t.co/TiApcBSicI +@m1sp I have determined that I need a short prologue starring Young Rashk. +@natashenka error: blob is too big :( +Dear cryptography community xoxo I think you are all swell also all crazy +@tapbot_paul @MikeBeas Sorry I blew my lid. +@tapbot_paul @MikeBeas precisely. +@MikeBeas @tapbot_paul and it is all fundamentally the issue of the living human whose body and health is compromised. +@MikeBeas @tapbot_paul it’s not a baby, and the point of regulation is to keep abortions on the side of the line where it’s not a baby +@MikeBeas @tapbot_paul you ASK for their kidney. There is no reason pregnancy should be different. Bodily compromise by consent. +@MikeBeas @tapbot_paul You would never tackle the nearest person and harvest their kidney against their will, for someone who needs one +@MikeBeas @tapbot_paul that’s not what I said. But you know what? Listen to this, please: +@tapbot_paul @MikeBeas I take that ground too ? +@MikeBeas @tapbot_paul of course, this is another pointless argument with someone who has never had to worry of pregnancy +@MikeBeas @tapbot_paul damn my conscience, I would probably be too queasy to have an abortion. Damn lives ruined for religious pretension. +@MikeBeas @tapbot_paul the idea that there is no difference from conception to birth is purely a notion of particular religions. +@MikeBeas @tapbot_paul an egg is not a bird. Go study developmental biology. I did. Learned a heck of a lot. +@MikeBeas @tapbot_paul gfdi nobody is killing babies +@spacerog @th3j35t3r whence the respect? I’ve never known him to have any reaction to anything but DDoS. +@MikeBeas @tapbot_paul the strawmanness of this has left me twitchy… +@brennantom @c7five the 1337 motley fool, naming someone narcissist? Takes one to know one. But sir your geolocation is classy. +@m1sp dangit mispy NO TIME TRAVEL +@mikeestee @starsandrobots @marshray oh my gods. This is going in my meme folder. +RT @johl: If this was a movie, the plot twist would be that Snowden's encrypted security file is already in the Bitcoin blockchain, in Base… +RT @ZoeQuinnzel: I hate it when games tell me to press x because I panic for a split second because of this http://t.co/BhTVGAXSE8 +RT @repjustinamash: Congress has highest security clearance level for classified information. Why, then, are most of us denied access to FI… +RT @MatthewKeysLive: This is the NSA 'fact sheet' that was pulled earlier today from the NSA's website - http://t.co/Xa5znZSQum +RT @oiwan: HK Sec of Justice Rimsky Yuen explained the U.S did not specify the "J" in Edward J Snowden whether it is Joseph or James in the… +RT @deliciousbees: "Ask yourself: should such people be handed over to be imprisoned?" says president of country who imprisoned three women… +It seems somewhere along the way this PHP bot lost all instances of the string "." (including quotes) from the source file. +# 349675707259027459 +@0x17h *squint* RTL8187L ? +@0x17h http://t.co/mqxWSbBdjC +@asyncsrc because it's a hacking tools CD from China +It came with a CD, but my husband won't let me stick it in the only computer we have with a CD drive. +@abditum did your eyes glaze over? Read it, really read it... +So I bought a wifi dish antenna off Amazon. This is the box. Uh... http://t.co/cIHzK3rCYx +I'm writing my first professional review of a PHP bot. /* implicit variable creation is the devil's work, son */ +@WeldPond @QuantumG yeah, so... they do unplug :p +@grumpybozo I do most of my work on Not My Work Machine, but I needed it for something particular... +@jlwfnord I'll assume that's why IT hasn't fulfilled the ticket I filed like a whole 26 minutes ago yet then! :p +@mtheoryx it's not a bug, it's a well-known property. And no, there's no check-as-you-type. +@daviottenheimer I wouldn't call our local network particularly slow... +Someone please tell me the sensible reason that SMB can take over a minute to decide a share you typed in isn't valid +@skynetbnet *I* don't. It's the work machine... +RT @blowdart: ARS makes firefox cry. http://t.co/6m1Q1KMUWa +@grumpybozo what else would you call a thing where you type in a user name and password? +Let's take a look at this malicious PHP *click* *antivirus flips out and deletes it* Hmm. I'm going to hear from IT about this... +Well bless my bit9 sysadmin's prickly little heart, he done give me an "allow" button to use on these here DLLs and my build be workin'! +@dakami bet you I can make one that is +@jeremiahfelt thank you but no operators are free at this time +@cowtowncoder the last time I said the word “serbo-croatian” a Croatian threatened to murder me +“So… you’ve been letting us have electricity for months, we gave you money, the electricity is on and the money is missing?” “Yep!” +“Oh it’s a good thing you called because we apparently lost all your bill payments ever into the black void of despair” +@spacerog I keep getting to a live person and disconnected because all lines are full +“Account locked out” “I understand you have a billing question. Are you moving?” “Account password reset” “I understand you have a billing q +@nrr wh… wh… what. why +RT @ternus: “Akamai Adversarial Resilience: We *Can* Repel Firepower of that Magnitude” +Hello, I am an automated assistant. Please state what you want, given no hints as to preferred input, so I can wildly misinterpret it. +@savagejen @r4v5 @0x17h I’d recommend a tutor under the rules of homeschooling +@r4v5 the jawbreaker I posted earlier is not mine, I only have receivers. +@Wxcafe @codeferret_ the shocked one was a “bonus figure” iirc +RT @arstechnica: World of Warcraft mobile auctions closed after rash of account hijacks http://t.co/fCdI3prhBB by @dangoodin001 +@apiary write a python bot to attend meetings +@jennifurret I tend to make a reply to what they said and then throw in “also I prefer the other pronoun” just incidentally +@r4v5 nope, never. Move along. Nothing to see here. +@Wxcafe @codeferret_ bought a box set from… some Japanese import site I guess? +@DoktorJeep *whistles innocently* +Should have bought more shielding for those serial cables my little friend… http://t.co/ZFGgwXUePd +This one isn’t mine but it consented to photography http://t.co/mRaevZXjed +Expect this sort of thing in my slides http://t.co/5mjbjgEOTd +I’m telling Engineering to freeze the code base forever as soon as my build runs so I never have to see a bit-nine dialogue again. +RT @sec_reactions: How I feel trying to get non-technical people to care about PRISM - by @aloria http://t.co/Dwmhxc1eHX +@tapbot_paul and hence, the Recycle Bin was born ! +@shoebox aww, well, make the most of it ! +Ever notice that in video games, the elevator is ALWAYS on the floor you’re on? #nsa #conspiracy +@raudelmil I actually specifically tried to avoid sending too many me-toos on him cuz I didn't want to be blocked +I think the NSA guy finally blocked me. Well that was inevitable +@kyhwana it genuinely doesn’t occur to a lot of people that an https form loaded through an http container is a problem +@kyhwana eww. One rarely sees iframes at all anymore actually, except to load another site entirely. +@grumpybozo @cba well, Mr. Assange says he is not truly missing, and is safe, so I presume he wasn’t abducted. +@mikko the jester disgusts me. He wields his little sword against everyone he has the vaguest reason to dislike. +@ShadowTodd and no back pain. +@DrPizza I want you to know I’m sorry ere I fall asleep. +@psobot now find the waste and trim at at source level ;) +@DrPizza I’ll miss you. +@oh_rodr small numbers matter too. Though I can’t speak to this UCMJ thing. +RT @eevee: http://t.co/hEq33TMxKC oh, imagemagick. why are you "parsing" xml by hand. +@0x17h you know what else reminds me of schools in Soviet Russia that Texas doesn’t do? Math. +@bojanrajkovic @Edcrab_ and I think people who do not like the word do not like the theoretical future of “needing” to say so +@bojanrajkovic @Edcrab_ which it wasn’t. Cis is not an insult. I am cis. Most people are cis or mostly so. +@mdowd woohoo !! +RT @hypatiadotca: Today marks the 40th anniversary of the worst act of anti-LGBTQ terrorism in US history. Never forget. http://t.co/YBH0ji… +RT @grumpybozo: Who seriously believes that a jr. sysadmin who has demonstrated poor strategic planning was the first guy to walk TS data o… +RT @BenDoernberg: If #Snowden can cover his tracks to hide what documents he accessed, what stops other NSA agents from covering tracks of … +RT @xepheraux: the fact that people who own multiple homes and people who live without shelter exist in the same societal framework is awfu… +@ioerror @hellNbak_ I think, by and large, there are many legitimate security services to which they are just another rich customer +RT @Edcrab_: People mad because cis is an "invented word", unlike those pure naturally occurring words found inside fruit and in the format… +@oh_rodr wait… are you saying gays HAVE to join the military now to show their appreciation for it being a possibility on the table ? +@0x17h though somewhere in my heart I have sympathy for him, the correlation between Marxism and arson eludes me. +RT @trevortimm: Senators claim NSA is lying about privacy protections in its "fact sheet" but can't say how because it's classified. http:/… +RT @sinak: Hemingway killed himself while hounded by FBI. He seemed paranoid to friends but FOIA reveal truth: http://t.co/uUNyBzFXok via @… +@eevee but if I search for Hermione, it’s there. +@eevee example: I have a jpeg of Hermione that has a numerical filename and no textual metadata that says anything about Hermione at all +@eevee unless you’re not the only person with that file, and the aggregate metadata tells them a lot about it +RT @doingitwrong: I remember as a kid reading about the worst excesses of the collapsing Roman Empire and thinking “why didn’t anyone DO so… +RT @djrbliss: I'm so glad that Comcast decided for me that my cable modem password would be much better without special characters. +@WhiteMageSlave WORLD BUILD GET https://t.co/61HBSusPmR (optional: @ELLIOTTCABLE @ternus not optional: @m1sp ) +@thegrugq @hellNbak_ I was told today I'm a firebrand. Edgy. Mad bad and dangerous to know. I'm totally cool. +@RSWestmoreland would explain why no-one can find him... +oh boy oh boy I've been chosen to receive a "bahanas" cruise for two by SMS! +@thegrugq There are many terrible things to say about my educators. Being "Christian Scientists" is, blessedly, not one of them. +Me an' BFF @m1sp on some kind of digi-date http://t.co/1uIM6DIB2z +So I've read about six hundred pages of game of thrones so far and now I'm calling @m1sp my vassal +@jgeorge IDK, but @m1sp is here and I guess there's room for one more! (Actually I don't actually have cherries) +"I'm opening my gate and you can come get my cherries. In Animal Crossing, IN ANIMAL CROSSING" +# 349312542591549440 +It sounds like there was a mass glitch and a bunch of google sessions got terminated. Weird. +@xa329 @0xcharlie *my* DH? He is... how do you say... into physical security? And I don't mean locks. +@apiary all the radio signals you didn't know your electronics are giving off. +@xa329 @0xcharlie I don't even have a transmitter and HE'S FORMER NSA IT'S NOT FAIR +I was just kicked out of gmail and gdrive "for security purposes" and had to log back in. *ominous.wav* +@m1sp gtalk seems to have disavowed me +Writing protip: need a bunch of minor characters in a hurry? Recall one of your classes from school, no matter how vaguely, and run with it +@m1sp slathering random "historic" versions of SDL onto my drive, we arrive at Function 'TCOD_sys_read_file' not found in ... libtcod.dylib +@m1sp Library not loaded: @ executable_path/../Frameworks/libpng.framework/Versions/1.5.4/libpng And there it is- the problem I always had! +@0xcharlie there shall be NO MONKEYING ABOUT WITH THE WATERFALL DISPLAY. +@0xcharlie haha.jpg wait that means I have to wake up to be polite doesn't it +@TakoArishi that's why I RDP :p +@RSWestmoreland she's seen our customers' code a few times too many... +@JamesTCave HEY!!! LUKA WAS FACING THE OTHER WAY! PERIMETER COMPROMISE!!! +I only RDP into this machine, can you tell ? http://t.co/hw3Z1IsCK2 +@scriptmonkey_ @TriCorce @phillips321 spoiler: it's badg3r5 +@Viss @fbz in general, I do not remember the 90s. +@solak come on man you're not even European. +Youtube has me figured out I'm afraid. One of these things is not like the others. All of these things are spot on. http://t.co/EPr1MkYnXm +Allegedly my defcon talk is at 5:00 on Saturday. Good. I was afraid of having to wake up before 10! +Stocking up on non-black t-shirts with which to establish my alpha geekdom https://t.co/iYEsiQhyWh +@d_olex I'm making fun of him. Personally. :) +@amanicdroid somebody stop these maniacs ! Or not. Their loss… +RT @JimmyS: @0xabad1dea check the last anecdote out on page 1: exploitation of your owen code for great victory! http://t.co/LR5wXtBJU2 +@d_olex @rantyben he is indeed no stranger to wrong! +@amanicdroid and they specifically have the most serious threat model on earth. As much as I hate them I'm embarrassed. +@amanicdroid they're specifically using the terms root and super user. They specifically designed their own solution to this +I always wanted a set of rainbow books, but I’ve never even seen a single volume in person. Born too late, I guess ! +@marshray rainbow books… now there’s a blast from my shadowy origins past +@CelestialBeard @0x17h http://t.co/opCtaYYciX +Like seriously if it’s actually true that agencies can’t distinguish between different system admins’ actions the incompetency is… gross. +@amanicdroid no but you’d think knowledge of the existence of RBAC would be uniform among people managing NSA computers +@oh_rodr @chort0 well if you don’t spam me it’s all good +This just in: three-letter agencies don’t know about sudo, even though they developed SELinux? http://t.co/v6RlzFk4XL +@chort0 can you send a zip to [firstname].b.elliott at gmail ? (Do spammers even scrape for emails any more?) +@chort0 I want some unambiguously malicious code it is easy to make cruel fun of +RT @djrbliss: PS4 evidently runs a FreeBSD derivative. I guess there will finally be a place to use FreeBSD 0days besides Defcon CTF! +@eevee please tell @kufat and @codeferret_ I am officially not the world’s worst laptop purchasing maniac +RT @tinycartridge: dang gotta take advantage of this deal at Re-Tail http://t.co/W04kUyvuF6 +@WarOnPrivacy he seems to “defer to the wisdom” of his military and never challenge them on anything they want +But a nice innocent girl like me doesn’t know where to find malware source code ! Preferably stupid IRC bot ones or some such +@ntavish yes, either deliberately (intended to be customized) or by leaks. +@WarOnPrivacy @puellavulnerata I’m pretty sure half the reason we’re in this mess is that he can’t bear to handle warlike things himself +Perhaps, for good sport, I should do a “serious” code review of the source of some malware. +Here’s the complete emet slides btw. http://t.co/MvgecELJAU +@xa329 but… EBP didn’t actually change. +Okay, maybe I’m missing something but I don’t understand why a compiler would emit that. http://t.co/qZHE1JZNC3 +RT @ioerror: I'm glad to hear that Former Italian Prime Minister Silvio Berlusconi was found guilty. +RT @katespencer: This article on what's happening in Texas cannot be RTed enough: http://t.co/fIpNbjzPjs +You can has root on HP storage devices http://t.co/0K0dONtHD2 (via both /r/netsec and @TriCorce) +@L0sPengu1n0s the Netherlands, as that’s where all the cables join, so ping should be low ! +@Kufat /me points to 4chan and the beliebers +@L0sPengu1n0s high holy priestess +@Kufat the idea behind making the Internet its own country is to MAKE it an act of war silly +@sanguis3k “Send in… the BELIEBERS.” +My solution: 1) Make the internet its own country 2) All government surveillance is now an act of war 3) ??? But it will be great +RT @paradroid001: @0xabad1dea Can't hack a computer that has no free memory. Just allocate it *all*. +@jdiezlopez it’s probably effective against a large portion of wholly generic, non-customized payloads +This is the hackiest anti-hacking measure I could possibly imagine. #emet http://t.co/ZqYpCgZV6c +@kaepora I tried to tune in but it was so stuttery and over compressed I could hardly get a word +RT @savagejen: Julian Assange is answering questions about Snowden on RT: http://t.co/6SpHl15MAs "He is in a safe place and his spirits are… +@MrToph mine beeps again after 24 hours… +@wimremes oh come now, a man five thousand followers tall ought be used to it, however will you bear the pressure of nine thousand? +@Gadgetoid @dildog and that my friend is how religions are born ! #SacredKnee +RT @ioerror: When the question of the US pressure on #Ecuador came up - the #BBC feed ended - attempts to reload it "The broadcast has now … +RT @SnowdensSeat: I feel empty. +RT @halvarflake: Correction: US has approx. the same number of people with TS clearance (relative to population) as the Stasi had when the … +RT @dildog: Want to feel old? Every 12 year old was born AFTER the "All Your Base" meme got started. #forgreatjustice +RT @conor64: How could Snowden go to Cuba, a country where untried prisoners on hunger strikes are force fed with -- oh, wait, it's us doin… +@m1sp let us do the dance… the Dance of the Timezones +@m1sp are you chat-enabled today ? +@m1sp I’m at work ATM I guess in a bit I can dig out the air and install rvm on it +RT @offmessage: Big question of the day: If you lose a tooth while abroad does *your* tooth fairy come out or does the local one deliver? A… +This is an amazing tweet thread starring our friend Former NSA Guy. https://t.co/7G0zchXW00 (who apparently has very delicate ears) +Halfway through the book. I propose renaming it A Song of Deus Ex Direlupus +@marshray green? Well some of the nebulae are green… +@marshray I like it, but you can’t take it personally when someone is mean to you +Oh so Hodor really is a Pokemon I thought that was some kind of imgur meme #AbadideaReadsGameOfThrones +@jesster_king in game of thrones +@daveaitel @thegrugq posting safes on imgur — a risky gambit, which paid off. +RT @daveaitel: so I heard you guys like safes - Imgur http://t.co/HGrvrOl3XF +RT @drunkenpredator: Hong Kong? Moscow? And now Ecuador?! Just PICK ONE, dude! This is getting exhausting! #idonthaveajetengine +@thegrugq a keen anger flared in me, and I willed your destruction. It might be the book. +@thegrugq I will not take the grugq seriously I will not take the grugq seriously I will not +@thegrugq Harry Potter picks up a mature reading level around book four +@thegrugq mature reading level does not mean “mature” gratuitous content +@savagejen I’m pretty sure most large departments do by this point +@ELLIOTTCABLE feel free to sample my wares http://t.co/ciIHCvtYKu +@ELLIOTTCABLE in any case yes I write an awful lot, and it defies my guardians that I hold a paper of the sciences. +@WhiteMageSlave I will tell you why progress has slowed: I have been too happy +@WhiteMageSlave the written manuscript hasn’t gotten much longer, it’s all been my patented Manga Notes +@ELLIOTTCABLE you should probably follow my muse, @m1sp , to see the constant flurry of midnight exchanges on the matter +@ELLIOTTCABLE particularly of one of the older characters, and to establish the common people of one of the cultures. +@ELLIOTTCABLE the one which I am a hundred pages into, and in the process of inserting some more scenes for characterization +@ELLIOTTCABLE regardless my story is better +@WhiteMageSlave but as a writer I can guarantee he went back and added that remark after he decided it was a convenient plot device +@WhiteMageSlave nah his mom totally mentioned it a chapter or two before +@ELLIOTTCABLE I made a bad decision to read Game of Thrones +@ELLIOTTCABLE … hello? +@spacerog you’ll look ridiculous +# 348948206761156608 +@m1sp in any case, I intend for it to be clear that, once both of age, anyone of common taste would say that Houri has the Aspect of Hot. +@m1sp your next post was about… oh never mind, sure, some other child’s issues, I believe you :p +@rantyben yeah one of them already got thrown off a roof +@herodfel I’m reading game of thrones… +RT @Packetknife: You know - you're allowed to not like Snowden, Wikileaks, Manning, Greenwald, etc. etc. AND EXPECT BETTER FROM _YOUR_ GOVE… +@The1TrueSean throne of games or something like that +@ameaijou I did specifically ask if it was grooooooss +Why did none of you warn me about the twincest +@m1sp goodness am I the only writer who gives the youngest sister the good looks +@JackLScanlan that’s cheating unless you bring some to share … wait… that sounds really gross. +@jennifurret they all gave me an odd look. +@jennifurret last time I was in Vegas people kept asking me — because I look under 21 I guess — and I said truthfully it was business… +@stevelord I don’t watch TV, but it’s hard not to encounter the fandom on the internet. +RT @arstechnica: California sends a cease and desist order to the Bitcoin Foundation http://t.co/tkhxlr7O79 by @nathanmattise +@savagejen what? They bothered you ?! +@BettyMcGraw7 @sneakatdatavibe yes, but I’m pretty sure I can’t simply visit it. +Read the prologue. Wait, there are zombies in this story? I though it was just about knowing nothing, especially the location of dragons +@iHum4n no actually, and I really need to work on that… but I have a much longer fantasy story inching towards completion +@gangstahugs which isn’t necessarily wrong or bad but it does give one pause +@gangstahugs it’s disconcerting in that the tone of the ad suggests Amazon and my bank have a deal to target my bank’s customers 1/2 +Is it because I’m American I never knew one could simply fly to Cuba +@skynetbnet well, I use my bank card to buy things from Amazon, that might be an easier trail to follow :) +@pa28 @KateElliottSFF same last name — it’s a sign. +@RenaKunisaki yeah, you can pay the difference to opt out of the ads at any point +And no, I never jailbroke my Ad-Supported Kindle. It used to just futilely offer me romance novels and local massage parlors. +@RenaKunisaki the cheapest one does +Considering that this is my actual bank, seeing this pop up on Kindle is a little disconcerting http://t.co/tnJfgFbq8r +@addelindh I can’t stand the writing style of Narnia actually. Tried three times with three different volumes. +@akopa most of the fiction I’ve read in the past several years has been manga and webcomics rather than conventional novels +(I really like stories written on a mature reading level which include children as proper characters.) +But I guess I will go read GoT because I know it treats children as actual characters rather than scenery props based on fandom stuff +In fact my own Secret Novel Project is rather Potterish in that it focuses on teens and reams of personal character development +@nickdepetrillo CHECK OUT NICK DEPETRILLO EXCLUSIVE PICTURES OF HIS HUUUUUGE YAGI HERE IN ANTENNA NEWS it satisfies the radio ladies +I’m more of a Harry Potter kind of fan, will I just get grossed out? +So I’ve been debating actually reading Game of Thrones for a long time now, knowing that it’s heavy on sex, violence, and death. +@puellavulnerata @smarimc I assume they have their own little diplomaticy ways of propagating such information without broadcasting it +@bhelyer high five for five eyes ! +@smarimc @puellavulnerata I’m amused they seem confused how he was able to leave Hong Kong without it,as if they’d be terribly fussed. +RT @thehistoryb0y: This is what Alan Turing's statue in Manchester looks like today, his 101st birthday :D http://t.co/HXJGpZ3ubp +@bhelyer the American attitude is that all foreigners are under suspicion by default. Sorry. +I continue to be astounded at the number of people who conflate unfriendly states towards the US with ENEMIES of the US. +@donicer pretty sure the paparazzi saw him get into a car at the airport in Russia +@rfunk how does going to jail separate one from common criminals? Why does suffering make a cause more legitimate? +@rfunk I just don’t buy that civil disobedience must or even “should” necessarily end in voluntary arrest. +I think humans have a problem with feeling like someone’s cause isn’t legitimate unless they’ve suffered for it. We glorify suffering +@jilliancyork @ioerror cognitive dissonance: I voted for him because I liked his platform therefore this isn’t that bad because after all I… +@kesgardner @McGrewSecurity I fail to see how a layover in Hong Kong affects the genuine status of the documents. +@ErrataRob because a state interfering with a civilian flight always goes over so well… +RT @PRISM_NSA: #FunFact We often swap phone tapping tips with @piersmorgan! He's pretty good at it for a civilian - been doing it longer th… +@rfunk and why does Thoreau get the last word? +@vogon insisting someone be punished for doing the right thing is worshipping Law as a god who has conquered Justice. +.@vogon I don’t think it’s morally consistent to say “I agree the law was wrong but I want you to suffer for breaking it anyway.” +RT @NightValeRadio: Wow, the continuous nuclear explosion in the sky is really nice today. Hardly any floating water in the way. +I don’t get people who both say he did the right thing AND want him to willingly face the music. As then it’s entirely the wrong music ! +@trufae I get it! Is language joke! +How many whistleblowers can the Ecuadorian economy support? +RT @Falkvinge: No, #nsa, it's not "irreversible damage to the USA" by Snowden. It's by _you_. Don't blame others when it's your actions tha… +Talk to your teen about Linux… before you have to talk to them behind bars in chroot jail. +@inversephase TALK TO YOUR TEENAGER ABOUT LINUX BEFORE YOU HAVE TO TALK TO THEM ABOUT OPENBSD +I think what Kaspersky was TRYING to say was, if you have absolutely no idea why this is on your hard drive, that’s suspicious @inversephase +@zedshaw you got my hopes up for a moment… +Via non-criminal Linux user @inversephase , something just a little bit fuddy: https://t.co/4k6ZSs87W1 +@bhelyer @Wxcafe @inversephase well how’d that happen gosh +@Wxcafe @inversephase weird… +RT @densaer: Confidential documents from WookieeLeaks shows that Han shot first. +A little anteater in Animal Crossing just told me he was gay. Is “buying a car together” some sort of Japanese euphemism? +So how do we protect Snowden from torture conditions without seeing him become the next pretentious jerkface +RT @jilliancyork: If you're saying surveillance isn't a big deal, then pretend for a moment that you're not talking about the United States. +@MyLittleDroney do you have any coupon codes for these shirts +@Rikev @Tomi_Tapio I’m so sorry. I hope no small children were present to witness this. +RT @KimJongNumberUn: Yo Edward Snowden: please settle in North Korea. We do not spy on phones or the Internet. In fact, we do not have phon… +RT @BBCDanielS: The Ecuadorean Ambassador is still here at Moscow airport. It looks like Ecuador is Edward Snowden's destination http://t.c… +@kcarmical and I meant in total perceived international clout, though the gap between China and US narrows every day… +@kcarmical first as someone said, “Hong Kong and Beijing are in the same country but being in one is not like being in the other” +RT @mjdominus: strftime("%p") produces "AM" or "PM". strftime("%P") produces "am" or "pm". That is some fucking genius right there. #fuckin… +@donicer @thegrugq dunno if you ever met any Marines Mr. The Grugq, but they be cray cray +@donicer @thegrugq yeah I didn’t think he was advocating it — just reminding that the Marines have a glory problem… +@_wirepair @thegrugq the severity with which civilian plane incidents have been treated in the past points to the outcome we know now +@RSWestmoreland @m1sp in Mispy’s case, yes! +@m1sp you don’t sound bitter at all +RT @vogon: new buzzfeed article: "10 hottest countries to claim will better defend your civil rights than the united states" +Hong Kong really knows how to turn down a larger power in a classy fashion +@m1sp well to be fair they’re trying to give you a chance to pick without “ARE YOU A BOY? OR A GIRL?” +@PiennePN yeah pretty much +I cheated and looked ahead in my overnight tweet backlog. So, uh, Russia, huh? +Don’t tell me all the interesting things happened while I was asleep http://t.co/6RNokDaps3 +@thegrugq Actually I already read the archive about a year ago It was pretty gross +@thegrugq just making sure you’re not the devil trying to lure me into The Pornographies. +@vinski_ DH stands for Dear Husband! Then we got a housemate so I called him delightful to riff on it +@thegrugq why you link this +@hypatiadotca did you try gandi? As many registrars aren't equipped to handle it yet +"Updating certificates in '/opt/local/etc/openssl/cert.pem'" @m1sp confirmed for being APT, thanks a lot! +@DefuseSec hahaha bin-go cc @m1sp who told me to run it +@thegrugq yes, I told my Mac my name is Melissa. I don't consider that classified information since I turned 18. +Dear shell script, you think it's cute to pull my real name from system files and thank me for running you, but it just comes off as clingy +@meursalt on my system, whoising the unicode version will attempt to escape it and search that and be like shruggle XD +@meursalt sounds like it understands it's pointing back to the same page then yeah +@meursalt as the link is the unicode version and if there's no support for it you'll get some dumb error +@meursalt I changed the page to clarify it doesn't matter which way it displays as long as it follows the link back to the same page +@dong1225 I literally have an entire playlist of remixes of her theme, unfortunately many have gone missing http://t.co/EgtQrqLsHy +@dong1225 why not?! http://t.co/3QL9dcPG3m +@Twirrim it's fine as long as you end up back at the same page with the spinning girl +@RSWestmoreland note professional use of a typo to make sure people will complain whether they're offended or not +@dasshuchan it doesn't really matter but I think most everything will show the ascii version +@DrPizza it wouldn't be if everything supported displaying the unicode version +Is your browser dumb? Find out here http://t.co/0pw6pZvNvw +However they do not have good unicode-in-domain-names support. "Communication Error" is a very helpful, specific error, no? +@oh_rodr ha! "communication error" +@oh_rodr actually wait I will just put a unicode-encoded URL on my webpage and click it and see what happens +@oh_rodr nah, just thought I'd check what my webpage looked like. Though I lack a means to enter kanji directly into the URL bar. +Nintendo devices may have ridiculous web browsers but at least they have good unicode support! +@jgeorge I planted some peach trees but they haven't grown yet +@cji kapow! +@jesster_king bam! +@IrritatedGoat zam! +@jgeorge bam! +@NinRac kazam! +@dkabot foosh! +@kjatar boom +@kherge yeah well unless Find My iPhone can distinguish between floors of my house... +@CamJN Incorrect. O is an address. Oh is an interjection. +I wonder how many different antennas in one suitcase I can get through airport security +@CamJN spelled wrong where? +@thegrugq @mattblaze @nickdepetrillo to who? +@0xabad1dea paging Dr. Phone, please buzz +@trollball yeah. A little bit of tempest for fun and profit. +@DatsunInsult @rejectionking oh probably, but he’d notice, as I don’t remember the password to the 5ghz band he uses either XD +RT @mikeklonsky: Did you hear? All over news. Some TV cook is a racist? Yes, and 50 schools closed in Chicago's black community. 30,000 kid… +@trollball http://t.co/LWfMHMKO5N +@ameaijou pretty much +@ameaijou controlled by he bought the router and installed it while I was away from the house +PS if my router is remotely ownable, blame Delightful Housemate, as I don’t even have the password to it. +What. (Minus the IP address so y'all don't DDOS me.) http://t.co/GZbLtGdCyJ +@ELLIOTTCABLE @brforums I’m a lot more incredulous. Check the screen shot I’m posting in about three seconds. +@nrr are they TRYING to get your bike stolen? +Does an integrated GPU clock speed of ~650mhz sound right for a media ARM SOC with a CPU of 800mhz? Trying to identify source of a signal. +.@WeldPond I have no idea who those are! The joke is I just assumed everything related to it would be Canadian. +@focalintent I am super excite about the info I am coaxing out of this 32khz-ish signal by painting patterns on the laptop's screen +I can pick up the FM station with my wifi yagi antenna! At a very specific angle, held directly over my head. +FACT: when I was a child I assumed O Canada was to the tune of O Christmas Tree +@ra6bit well the tinfoil I was holding was the antenna at this point :) +I accidentally tuned into a hockey game. Wait, why are they singing Star Spangled Banner? I just assumed it would be O Canada. +@ra6bit I was touching the connector on the USB radio end +@ra6bit noting that I think I have more of an aura than most as I have lit up things with my hands that many people cannot before +@ra6bit well this is the second time I've stuck my finger into the antenna connector when it was live and feeling tingly afterwards +I wonder if this tingly, prickly feeling all over my body has anything to do with me jamming tinfoil into an antenna connector +# 348591069702782976 +@DrPizza to be honest I was thinking more of things like variables_with_underscores_which_I_hate .. ... .... +In programming as in life: be strict in regulating what's under your control, be forgiving of what isn't. +@KatharineBerry @kaepora as a hexer I am all too familiar with the pain of JavaScript making “interesting” casts on one’s behalf +RT @KatharineBerry: @0xabad1dea @kaepora 2a is the solution. +.@KatharineBerry @kaepora Guess 1: you’re operating in at least base 29 Guess 2: JavaScript and/or PHP was involved in this somehow. +RT @KatharineBerry: How can this even happen? (look at R0): http://t.co/TXvg3H7sBK +@Packetknife that’s not mega creepy at all. +@RSWestmoreland for things he said about transgenderism +RT @puellavulnerata: http://t.co/FTsGHbkWv4 What Cop T-Shirts Tell Us About Police Culture [@radleybalko] - includes "U raise 'em, we cage … +I think Bootleg Pokemon crashing for the third time today is telling me it's time for Radio Science. +@WhiteMageSlave thing is I just bought a giant flying saucer so I guess I'll run with it. After I get a bigger house. Cuz it's huge. +@ebcube "Idea inserts item into pocket" (Idea being my name) +@sakjur They consistently confuse the word "insert" with... some other word. +Let's Play Bootleg Pokemon!: this one deserves its own post http://t.co/t9avMkZBPn +@WhiteMageSlave I let Sahara do my house and came inside to find… a space ship. I honestly can’t object to this. +RT @TheOnion: The Land Of The Free: 10 Ways You KNOW You’re Living In The Greatest Country On Earth http://t.co/cSuIWbkJ37 +@homakov it's not a crime to kill you now +@USSJoin he said some ignorant things about transgenderism +Well I’ll be darned, @cwgabriel apologizes http://t.co/Kjrzyu0WjB +@yolocrypto safe mode because it wouldn’t boot otherwise? +@0x17h @pondswimmer yes of course that is completely outside of anyone’s control +And no I don’t think duckduckgo is single handedly the savior of search but that guy sure is angry about their easter egging +@mattblaze @nickdepetrillo it’s okay you don’t have to justify your small antenna to me +@pondswimmer @0x17h I read that, there’s an explanation, an apology, and a list of steps taken to correct it, so, resolved ? +Before flipping out that a company is taunting you out of spite, make sure it’s not just an automated twitter bot. http://t.co/JSSNCulQSD +@pondswimmer @Anne_Roth @0x17h yeah, so, that Easter Egg thing is automated. They’re not doing anything “out of spite.” +Great, now I have antenna envy. https://t.co/ogjD9hMVBE @nickdepetrillo +@homakov don’t use such an ugly default font. +RT @sec_reactions: umm... maybe... I forgot to lock my screen?!?! - by _2501 http://t.co/yTbradzLmW +@spacerog it’s very Movie Plot, but then again, so is everything else that’s happened recently. +@spacerog the question was asked as to how such a question could even be answered. I think that’s fair. +@20committee you say that as if he asked people to say these things, or that anyone who defends him is necessarily a fanchild. +.@pmocek @puellavulnerata I’m [am|conf]used at people who berated the stupidity of his choice followed by switch to calling him defector +RT @ioerror: If Michael Hastings was killed by Mercedes 0day, how would we know? How might we disprove this theory? What forensics exists t… +RT @mattblaze: Surveillance in infrastructure is a technical and architectural weakness, separate from whether we trust FBI/NSA/President, … +Please check @20committee’s timeline for full context as he says my interpretation of his words is incorrect. +@20committee @ggreenwald what I saw was saying that Greenwald not writing the article was a weak excuse wrt his accountability for it. +@20committee @ggreenwald which is why I just told you, so now you know ! +@20committee @ggreenwald and I shall continue to listen to every side until there is some cessation of saying they’re all lying/delusional. +@20committee @ggreenwald I’m from a government family too you know. And I’ve been listening to you from the first tweet of yours I saw +@20committee @ggreenwald and all I want is the freaking truth, and everyone on every side is screaming that all others are lying +@20committee @ggreenwald you outright rejected the reasoning that he didn’t write certain articles and continued hold them against him +Suicide note of a participant in American war crimes. http://t.co/jW11VnqFeM +Meanwhile @20committee opines that @ggreenwald is personally responsible for everything the Guardian says +We don’t look at American emails! Unless our British friends happen to also have access to them. +@WhatHoCenturion … D: +@JackLScanlan I am literally in favor of smacking you +@nmonkee @miaubiz not dollars, and they are all the same size +@pchengi drew it in Notability on iPad +I should find more games with considerable amounts of badly translated text. It’s an interesting mental exercise. +@dakami why thank you +@savagejen it’s a good place to be, with or without toddler. +RT @stroughtonsmith: As seen on a poster at Facebook HQ: "Advertisers are users too!" +@Packetknife Albert Reggie Angelo +RT @gerryeisenhaur: You don't need to speak turkish to understand this. RT @gde54: Ozgurluk mucadelesi bitmez .. http://t.co/kXxOtIEAr0 +@oh_rodr I’m going to suffocate you out of mercy if you keep using tumblr words you found on the ground +@0x17h the effect they were going for, if I recall, was “fell and hurt my back.” +If there's one takeaway from Pokemon Crystal Vietnamese, this is it. http://t.co/GbMX98McXW +@m1sp <3 <3 <3 you on teh talks? +@name_too_long @chriseng and darnit the SOLE REASON I moved out and got a job was to afford to have it every day +@name_too_long @chriseng I'm actually addicted to frappuccinos specifically as a comfort/ritual thing. +@name_too_long @chriseng WHY WOULD YOU THINK THAT???? http://t.co/Q6bM51ySGt +@wbic16 I've never been drunk, almost drunk, or anything other than having a violently ill reaction to alcoholic cough syrup in my life +@0x17h I was doing DF, but we're currently following the adventures of Ms. Idea in Bootleg Translation Land http://t.co/5PN7k5J46y +my Let's Play side tumblr already has significantly more posts than my real tumblr +@chriseng I maintain that my behavior is outwardly indistinguishable from that of a drunk tweeter +@chriseng I'm getting into the SPIRIT of sending ill-advised and unsolicited opinions of a compromising nature +I stubbornly insist you don't have to actually be drunk to send drunken DMs on twitter +@nelhage @ternus I’ll pedantically u +@ShadowTodd I was also slut-shamed in high school for natural dimensions in that respect. It’s a genuine issue IMO. +@dildog in my experience it ends up looking like ____ + ____ says someone who tried to crash the platform today +RT @arstechnica: Facebook sqashes bug that exposed e-mail addresses for 6 million users http://t.co/y6gqJYSPEw by @dangoodin001 +Random hipster project generator http://t.co/ap1rzFztDB +RT @binarybits: So far four people have emailed to complain that I'm helping the terrorists by writing this article. http://t.co/cwhADUzjEQ +RT @kurtopsahl: The NSA says it removes Americans and the GCHQ says it removes UK citizens. But when you add it together, its still everyon… +.@ternus’s house is named The Event Horizon so I’m not sure how I got out. +@_larry0 just that @ternus guy... +# 348228307050954752 +On a porch in Cambridge with a bunch of MIT nerds... This is the Massachusetts life I was promised +@ra6bit @ternus both ! +Going to @ternus's house ! He has terrible opsec +@eevee I’m declaring war with you not over tabs vs spaces but over dedent vs outdent +RT @kpoulsen: Former #WikiLeaks volunteer @anarchodin just found out the FBI got the entire contents of his Gmail account http://t.co/cRURj… +@grp @comex I thought we were still pretending… +@xa329 yep +RT @craigstuntz: @0xabad1dea Terrorism: Complaining about tap water quality. http://t.co/TbNFZV0ymg +oh come on where did my BRAND NEW bag of antenna connectors go +Aww yiss http://t.co/98VOppbJsT +This allegedly came all the way from Japan. I'm almost afraid to try it http://t.co/J2ieBWQEJj +RT @THEwmAnderson: @0xabad1dea Its also a Voltorb +The flag of Greenland is red. Thought you should know. Carry on. +@ra6bit we probably have openings... +I'm casually submitting maliciously constructed binaries to the engine for fun. But any outage in the next ten minutes is coincidental +RT @mikko: GCHQ is looking for experts on high-speed internet processing, network exploration, data mining and stream analysis. http://t.co… +@Savag3 @comex ("there's no such thing as bad publicity" only applies to shameless celebrities who need to stay on front pages) +@Savag3 @comex we're doing the opposite of promoting it. We're highlighting that Kickstarter regrets their actions enough to donate $25,000 +Buggy client-side extensions that modify the DOM must be a nightmare for tech support, sorry @duckduckgo :) +.@duckduckgo @built Sorry!! It was a github diff enhancer extension screwing it up! +@built @duckduckgo they were on two different computers, Windows and OSX respectively. Disabled adblock, no change. No idea... +Huh weird... I searched "C# hello world" on @duckduckgo and on Firefox it displayed an actual code snippet but not on Chrome? +@nelhage (we do run the *web interface* component through it successfully though.) +@nelhage actually no because it mangles and demangles pointers which our analysis can't gracefully handle. +@vogon most of them are under \windows\ so +Apparently our engine ultimately has over 22,000 include files. It defies belief that it ever compiles at all. +RT @vogon: and the file mode of the beast shall be reckoned as seven hundred, threescore, and seventeen -- /dev/elation 13:17-18 +RT @mjg59: Today's just going to be one long Shit HN Says, isn't it. +@chriseng @ioerror is it illegal to testify in an anon mask? +RT @_FloridaMan: Florida Man Robs Banks Dressed As Iron Man | http://t.co/CkTGXkT7FX +@hemantmehta I’m sure it has nothing to do with peer pressure within the religion to put on a happy face in public. +@joshrossi @comex yeah, and rapes perpetrated by complete strangers are the minority. Date rape happens a LOT. +@joshrossi @comex Because I am in the primary demographic for being a rape victim and I am not going to play games with maybes. +@joshrossi @comex I would, unapologetically, consider any forced explicitly sexual contact with my body to be initiating a rape attempt. +@joshrossi @comex let the women decide that please :) +@joshrossi @comex as a woman: NO. ABSOLUTELY DO NOT DO THAT. +@joshrossi @comex his advice is to physically take ahold of women without warning and “force” them to escape to prove they don’t want you. +RT @chriseng: A quick bloggy... To Be a Secure Developer, Learn the Fundamentals: http://t.co/6qFGYMFMzJ +@comex of course they are... +@DrPizza yeah, dude does have his money now. I read it as they didn’t want to wreck something on 2 hours notice, then woke up feeling guilty +Kickstarter apologizes for allowing a funding to go through after they saw the guy’s really rapey reddit posts… http://t.co/6PhedjcxJy +@skynetbnet I haven’t been playing long enough to really count as a care bear yet I think ! I plan to move to null sec someday +Running a logistics corporation for other players in a video game. http://t.co/p06ArURJ6e +@savagejen @thegrugq eww gross +Well you see NSA, there’s a funny but perfectly logical reason I’m getting all these emails in Arabic… so there was this unicode bug, and… +RT @FTLgame: FTL is 75% off! That's only $2.50! It's cross platform, DRM free and includes Steam key. Buy it here: http://t.co/FMFP7RCXxg +@dangoodin001 but no Happy Winter Solstice for our southern friends? Hemispherist! +RT @nrr: http://t.co/XdzVWAx0Ig +@nrr ouch +@thegrugq @hackerfantastic @savagejen YOU’RE a big meanie +RT @chriseng: That is not a very good password. http://t.co/41aI7IIJvT +@hackerfantastic @thegrugq @savagejen I’m afraid I’m a lot more faux-flirty on twitter than irl. But really, about those 0day… +@dawnluebbe @vogon PLOT TWIST: he loved gardens +@Nirgoldshlager grats! +@thegrugq @savagejen yes. I don’t like you for your looks, only your 0day. Sorry, but that’s just who I am. +RT @puellavulnerata: http://t.co/bNHGPeqxzm A love letter to the NSA agent who is monitoring my online activity (via @isislovecruft) +RT @eevee: look, laptop manufacturers, 768px tall is not an HD screen. we had that over TEN YEARS AGO, except it was only 1024 wide back th… +@thegrugq @savagejen harsh, you sunk my battleship +@niteshad but I confirmed experimentally the effect got louder when I moved my hand closer to the laptop, not the antenna. +@niteshad about five ten and a shade under 600mhz +@tenfootfangs that’s more severe than the circumstances that led to the downfall of the Third Reich +RT @avibryant: I hope that part of Google's evaluation of their interview process involved a control group where they hire applicants compl… +@savagejen @thegrugq “0day is somebody’s fetish” Hi +@focalintent I can hear a BSSSH when I bring my hand within a certain range of the left side of the laptop. woohoo +Guess what: I can now pick up on radio *when my hand is over the laptop's keyboard*. Not even typing. Just physically close. +@focalintent the timbre changes when the screen's display changes, but the spikes are still there when the screen goes dark. +@dangoodin001 I'm pretty sure they were kidding. Pretty sure. +@focalintent this is the soc inside the terrible laptop http://t.co/LWfMHMKO5N +@focalintent representative sample. http://t.co/H69REVtEk2 this is the Terrible Laptop, in a faraday oven. +@focalintent it shows up between 52mhz and ~1600mhz. One of those is the bottom range of my radio and the other is near the top. +@focalintent hey hey do you have any idea what in a laptop would generate a signal spike every 32khz over a very broad chunk of spectrum +@RSWestmoreland yeah but how I'm usually dressed when sitting at my home computer doing Science is between me and the NSA +I PROMISE I'M NOT SETTING ANYTHING ON FIRE +let's play a fun game called getting the microwave door and the iMac's array of USB ports as close together as physically possible +RT @dildog: in iceland cool ranch doritos are cool american flavor. http://t.co/vK85xHRz4a +@matthew_d_green @thegrugq @imichaelmiers yeah, if I find something they didn’t then they really need to get their lives sorted out +@matthew_d_green @imichaelmiers sounds fun, I didn’t know this one had source, where is it +@WhiteMageSlave https://t.co/MCGaGc5Y4O +RT @SarahMPottratz: @savagejen I'm serious. I've heard army personnel bragging about getting off to data they intercept. +RT @thegrugq: @_wirepair @chriseng all I'm saying: if Eve Online had that bug, their economy would crash inside a week. +Tonight’s smash art http://t.co/0Konmjhwa9 +@matthew_d_green @rodrigobijou I disassembled one of those a while back looking for lulz. It was pretty meh. +@ErrataRob *have* to? My Nexus 7 offered but let me decline. +@matthew_d_green though I did here an urban legend of some terror groups refusing to use any western developed crypto +@matthew_d_green well there’s that South Korean one… +@benwmaddox http://t.co/sLd8VrxYco +RT @savagejen: If you've slept with your cell phone, does that mean you've slept with the NSA? P.S. Sorry @dan_crowley, can I be forgiven f… +@chrisflesner @chriseng hello, my usual assigned NSA friend! You know my sense of humor, is joke, yes? +@ra6bit they’re called raccoons. +My boss @chriseng hacked the stock exchange and destroyed the economy you heard it here first +RT @chriseng: Schwab CSR: "I've never seen this happen before, but I've always wondered what would happen if you tried to do that." +Some girls are heart breakers but baby I’m a shield breaker #smashbros +RT @supersat: @0xabad1dea remember, the IPv4 RFC (http://t.co/32s5XUi7Q7) has an optional header to mark the packet as CLASSIFIED and its l… +RT @chriseng: My brokerage acct executed an old order I forgot to cancel and sold shares that I no longer have. Now showing negative shares… +@chriseng and that’s why I’ll never be happy +I hope someday I can tell someone they’re banned from the network for failure to comply with RFC 3514 +@chriseng I’ll never be happy with much of anything related to this really, but there is more happy and less happy. +RT @ephoz: @0xabad1dea let’s reuse the URG flag then, US packets should arrive faster anyway. ;) +@MrToph eep! +Seen on Ars: why don’t we just use an IP packet flag to indicate our American citizenship status? ;) +@doctorshrugs @vogon non-dismembered privilege +RT @seananmcguire: In tragic news today, there was a fire at the Fucks Preserve. All the fucks have escaped and are running wild. No more f… +@0x17h @moomism no comrade +And hey if it looks interesting oh well it fell into the net and we can’t put it back so might as well use it! … 2/2 +In particular the NSA writes itself a mass forgiveness for all “forbidden” data gathered alongside intended data at low network layers 1/2 +@0x17h @moomism you have no right to judge my taste in grumpy old men +@moomism @0x17h being grumpy on the internet endears you to plenty of people as long as you’re cute! And he’s… kinda cute, for an old guy? +The exceptions afforded by the NSA’s secret rules are broad and flexible. You could justify almost anything. http://t.co/op7UMehQT1 +# 347853023843856384 +@jgeorge nope born teh abroads ! +"Would you like to visit a nearby town or a faraway town? Err I mean... are we connecting to the internet?" - Animal Crossing +So I hear you like friend codes - respond in kind http://t.co/Qu7Qrk1AIW +@mescyn and making it less breakable has been traditionally what everyone else does +@GreatFireChina @nytchinese their DNS server is down from my perspective here in Massachusetts +@kherge no idea +This is the third time in under twenty four hours the 3DS has said it needs to reboot for a firmware update. +@scottmarkwell I sincerely doubt they are bothering to record the SSL sessions of completely public websites they can also subpoena. +@mescyn I’d assume. But the fact that decrypting things is on the table is concerning :p +@mescyn but it’s allowed to be kept for the broadest reasons of vaguest suspicion of maybe possibly someday even if domestic +@amazingant I’m just saying that the rules say encrypted data may be retained forever until it can be cracked if they want to. +These rules portray encrypted communication as being inherently suspicious and easy to get authorization to store indefinitely. +If the director of whatever is allowed to sign off on multiple communications at a time, it’d be trivial to authorize basically everything. +@chriseng and we know for total sure they’re not allowed to sign off on multiple communications with one signature? +@chriseng their definition in 2(i) is so broad that it reads to me like a single sign-off could cover eg all data from a certain tap +@vogon but did you make the gun +@eevee they malign the bit operators, but I’m guessing every php script I’ve ever written, save the random quotes one, uses those things +@chriseng and doesn’t it sound… INCREDIBLY broad? Minding that it may be retained FOREVER even if domestic ? +Please do read these documents — less for the rules themselves, more for the technical practices implied. http://t.co/ZCPzKYsWw9 +@chriseng may I have your thoughts on section 2(i) of the second document and the broad retention thereof +@vogon I guess that was his cunning plan +@vogon that graphics design is worth more than $50 +Uh hey this document straight up says they may retain any encrypted communication regardless of who sent it FOREVER until it is cracked +@20committee as a technical person, their definition of inadvertent collection includes a huge chunk of all internet traffic. +Note that they say they get rid of “incidental” American communications if it’s CLEARLY NOT related, not that it isn’t clearly is. +Oh hey they list “equipment emanations” under types of data they store ! +@mirell he is, and he accepts bug reports from iOS7 users if they’re technically specific. +NSA may keep electronic comms of Americans gathered due to technical limitations of the taps for up to five years. http://t.co/nOZP001ICA +An unincorporated association headquartered outside the US is not a US person unless a “substantial” # of members are known to be American. +RT @mirell: I still think MacOS 10.9 should have been “Maru” +@zipkid my Dutch is terrible and it apparently has a distinctly Flemish twist — do I blame the Belgian ex or Belgian television? +@zipkid Nederlands! Maar, ik hou van Kabouter Plop. +@astro_luca @BadAstronomer I once heard it described as an emerald necklace someone carelessly lost at sea — now I see why +RT @GooglePoetics: I actually hate my mom I actually hate myself & my life I actually hate my sister I actually like Windows 8 - http://t.… +@bmirvine not as such! Lol actually haven’t logged on in a week, been really busy… +A person in the US shall be treated as a US person UNLESS it is positively identified they do not have citizen/permanent residence status. +The last paragraph on determining if someone is foreign says that when in a hurry, break the rules and we’ll talk about it later. +Don’t reclaim any yahoo addresses that belonged to terrorists or you’re screwed. Past usage counts ! +@The1TrueSean yes it’s pronounced a bad idea did you skip an entire semester of L33T CL455 +@The1TrueSean it says right in my bio: the zero-x is silent. +RT @DrPizza: @0xabad1dea that sounds like a bad idea. Oh shit, you are *fucked*. +I sure am on the buddy list of a lot of foreigners. It’s a good thing I have this American birth c—— uh-oh. It’s in Dutch. +*Speaking your username aloud* on a *phone call* to another country is evidence the person behind the username is foreign. Think about that. +@Packetknife do you mean abadidea I BET YOU MEAN ABADIDEA +Being included in the “buddy list” (their quotes) of someone associated with a foreign territory counts as evidence for being foreign +@DrPizza most criminals and terrorists are lousy at their job, and that’s good, but that doesn’t mean I can’t laugh at them derisively. +RT @Microsoft: #ThrowbackThursday goodness: How metal-icious is this logo from 1980-82? http://t.co/LMeZpgokb1 +“For example, if a CIA report indicates that a known terrorist is known to be using a certain phone number…” then they’re a lousy terrorist! +@chriseng we think “Xbox One” is the dumbest name possible and calling it ex-bone is our little rebellion +@chriseng yes that is the idea. It’s supposed to look dumb. +RT @ShadowTodd: I also saw an elementary school with the "ABC's of Good Behavior" on the wall. I forget what A and B were, but C was for "C… +@lindgrenM indeed! https://t.co/LVnEnCEPzQ +@tapbot_paul I reckon web view +@supersat http://t.co/LCjZ0DMVgE +@ajyasgar if IT administrators went to jail every time they typo’d… +@daviottenheimer in that case I hack myself several times a day +FTR the LinkedIn DNS thing was not a hack, someone just put the wrong number in the wrong box. +An Apple product with ANTENNA problems? http://t.co/mlyFxpGPns +@locks @valleyhack #thejoke +RT @valleyhack: Facebook's 15 seconds trumps Vine's 6 seconds. We're on Moore's Law trajectory now. Someone will hit 30 seconds next year. +RT @skimbrel: tweets on a map, colored by device type: http://t.co/bVDJk4kJKB class/race divides in some cities (eg DC) are shockingly vis… +@m1sp I think it’s more they resent “traitors” to their ideal of strict gender binary +RT @ajyasgar: @0xabad1dea Everyone knows you're computer-information-systems-gendered. +But indeed, the very fact that I know I’m cis means I acknowledge there are people who aren’t. +In particular he doesn’t want to hear from people who use the word cis, like me. I am so cis. Let me tell you how cisgender I am +@captcarl13 opinions change all the time, otherwise I wouldn’t be here.., +@callmewuest you can look at his recent timeline to decide for yourself how you feel about it +@captcarl13 this is not the first time he’s said that there’s basically no such thing as being transgender. +Though whoever sent him death threats or similar threats needs to Not Do That, that is not legitimate discourse // @cwgabriel +I’m sad to see @cwgabriel whose art I respect continuing to vehemently refuse to consider the transgender experience as a real phenomenon +@WhiteMageSlave @m1sp it’s almost like she’s concealing… some terrible secret. http://t.co/SXIxboMF1d +RT @CDA: Six months of work, "Dimming the Internet: Detecting Throttling as a Mechanism of Censorship in #Iran" #filternet http://t.co/LHgZ… +@m1sp @WhiteMageSlave okay, but the way Reese freaks out if you try to talk to her husband is pretty disturbing. +@m1sp @WhiteMageSlave Barsamin wants to know why you equate being left-handed with being evil ! +@WhiteMageSlave “Oh, I’ve heard of you, Melissa! You’re one of the reasons I moved here!” +RT @mollycrabapple: #GTMO war court- the rooms where attornies met with their clients had, unknown to the lawyers, recording devices inside… +@wimremes you are?! +Shouldn’t have played Animal Crossing before bed — I had a nightmare the town was attacked and the little animal people died. +@hellNbak_ those are the words of someone who does not fear for their safety +@txs @fredowsley aw man it’s his birthday?! I’m not in the office to humiliate him! +RT @kaepora: Skype began “Project Chess” in 2009, secret effort to make calls available to intelligence officials: http://t.co/F9mRSAn6Ah +@NaNoWriMo #my1ststory John and Sarah made a rocket engine out of soda cans for their wagon and flew to Saturn. +RT @hackerfantastic: #OccupyGezi - A protestors banner is absolutely brilliant :-) http://t.co/MId5tVr294 +RT @gsuberland: I once had someone tell me his favourite online psychic must be real, because he knew where he lived. GeoIP must count as s… +@ShadowTodd doing exactly what The Lord commands, doing it happily! +RT @chriseng: LinkedIn DNS hijacked for an hour, traffic re-routed to alternate site: http://t.co/ToGfUtKIHt (and most cookies didn't use S… +@hacktress09 ? +@BrennanML @Earthpics @vaurora SKEPTIC used SKEPTICISM! http://t.co/p8FGWf1GiY +@m1sp character development! http://t.co/a0SIdsoJuE +RT @TonyDanzaClaus: Reminder: men's rights dudes want to criminalize women not putting out on a first date. Their actual serious term for t… +@ELLIOTTCABLE I have no idea what’s going on +RT @mattblaze: I was just told that I'd feel differently about privacy and "so-called rights" if I had been in NYC on 9/11. +RT @jenvalentino: Aw. Courthouse News story that made me LOL was wrong. Judge just ordered gov to respond, not disclose records. (For those… +And in conclusion, don’t start a new Animal Crossing at eleven at night. +Animal Crossing is racist against numbers, it won’t let me put “0xabad1dea” in the comments field of my ID card +@WhiteMageSlave ayep +@WhiteMageSlave you betcha +!!! Finally, a game which acknowledges my identity on my terms! http://t.co/NtsOCJvGAB +Nintendo is great at child-friendly interfaces http://t.co/GP3fk0Tzbi +@Viss that's his reply to her http://t.co/wfiaTKhciJ +@laneshill his full name in this translation is WUSIJI DOCTOR. +Read my Bootleg Pokemon Let's Play or many worms will follow you. http://t.co/5PN7k5J46y +@m1sp @WhiteMageSlave ZHIB CRY! BUT BEIL UNHEARING. This game's dialogue is tugging at my heartstrings +# 347502591472717826 +@dipidoo I do actually ! +@partying101 @hellNbak_ no matter what he told you, @jack_daniel is not a real doctor +@ternus what! You stole that honor from me. Jerk. +@Viss and you are so representative of the general public! +@Viss that’s not exactly trivial to correctly set up though. +RT @dannysullivan: Asking Microsoft support on how I correct my son's birth date turns into "How about you start a new account for him." ht… +@nickm_tor *siblings* Ew +@ELLIOTTCABLE you… don’t respect me? +Do I know this guy? No. Do I know Ms. Weidman? Not really. Have I ever heard she’s mentally deranged? No. http://t.co/DBOcEzPwna +RT @WyattEpp: #Xbone <bVork> IF YOUR WEBSITE CAN'T HANDLE NERDS F5ING, GOOD THING YOU'RE REVERSING YOUR PHONE HOME DRM +RT @vogon: you know why they call it the Xbox One, because when you see it you turn one radian and walk slightly to the left +@alethenorio @RSnake @mat #victimblaming +@alethenorio @RSnake @mat I think that’s a slightly smaller concern than people getting hacked +@spacerog Texas thinks everyone is subject to Texas +RT @RSnake: “@mat: Yahoo’s very, very bad idea: http://t.co/objFXXofZN” < wow spammers who have old invalid email lists will love this. Ees… +@kivikakk @tenfootfangs https://t.co/eHzCH1BZPi !!! +@pdo well it finished and that's the outcome I was hoping for +@uppfinnarn or, less nightmarishly, a watched pot +I swear this svn checkout is only progressing when I look at it. +This is a trending hashtag I can feel proud to use unironically #Xbox180 +WAR IS OVER - MICROSOFT IS SO SORRY PLEASE COME BACK. http://t.co/ixnDKJjD4L +"This folder contains filenames that are too long for the Recycle Bin." Cyclic hardlinks: not even once +@pusscat affirmative response sent publicly because you don't follow ~ +@kebesays I'm on the third floor of building 65, keeping an eye on Oracle. +Guess who's in build error hell hint it's me +@comex ... I'm not sure *what's* working, but it clearly is. +@comex MUAHAHA IT'S WORKING +@tenfootfangs lol it's just trolling. I *always* find out when someone checked the source if I leave a comment they object to. +@tenfootfangs neither is peaking under source code skirts without consent! :p +If you were wondering who is the girl spinning on 厄.net, this will not answer your question http://t.co/WwlfbTdPaN +@curi0us_s0ul http://t.co/8QIv0ebPlu :O +Ahhhh youtube 502 ahhhhh I can't reach my touhous +@klingerock Actually they're quoting the Enquirer so never mind it might be made up. http://t.co/p2RswdIhs4 +@kebesays yeeup. +@CptSexy the entire building is. This is Sun’s old building. +Oracle campus rebranding status: not 100% http://t.co/fMy3rFeczV +@androolloyd help help +Countdown to wearing infrared emitters being a crime in 3, 2,... //cc @WeldPond +@KairuByte don’t tell @Neostrategos that I had a Gaia account in *counts fingers* 2004 and made avatar edits for forum coins in mspaint +@WeldPond because, as someone constantly attending conventions and meetings in an official capacity, your whereabouts are oft unknown. +RT @WeldPond: Goggles that block facial recognition devices. I'll have to get these LEDs installed in my glasses frames. http://t.co/Oq8ph7… +@MrToph @jlwfnord also it was his brother, and we all know domestic disputes don’t count. +Inside Skype is a straightforward voice chat software crying for help http://t.co/LgBRB4FGnj +@XTreeki it’s crying for help you monster +Also I am pleased that the Microsoft bug bounty pays extra to hear your thoughts on how to fix it. +@ygjb @Veracode success! +@McGrewSecurity @innismir incidentally my SDR was marketed at going to 1.7ghz but software reports it going to 2.2ghz and it seems to work +@McGrewSecurity @innismir generic bunny ears have adjustable length and are like $15 +@innismir @McGrewSecurity also, what sort of girl doesn’t show up to Defcon with a special wifi antenna ? +@hypatiadotca it wasn’t me what did it, I swears ! +@innismir @McGrewSecurity I know it is, but my best SDR goes almost that high! Just wanted to to test it +RT @MrToph: It looks like Valve is proving once again that they know how to run a digital goods store better than anyone else. http://t.co/… +@McGrewSecurity http://t.co/x6KQjcmB9X just for fun +@MrToph @Packetknife didn’t you just say you were almost to the goal at the beginning of June? The secret to marathons is pacing +@Neostrategos should probably drop in a line acknowledging that’s a Gaia Online avatar edit… +@MrToph @Packetknife meh. Not the most attractive I’ve seen you. +Okay, which one of my coworkers just photoshopped in Microsoft as a white mage? http://t.co/KHJrf9lSwd +@McGrewSecurity and when I got a bunny ears at radio shack, they had the connector barrel with pal male on one side handy. +@McGrewSecurity the sdr’s have a pal female connector. Avoid the ones that have a micro-connector +@McGrewSecurity I’m waiting on a yagi antenna in the mail, they don’t amazon prime that stuff. +@McGrewSecurity I currently have a generic bunny ears from radio shack, and almost no experience. +RT @k8em0: Announcing Microsoft's new bounty programs: http://t.co/oHJuTuyGNU +RT @mikko: From our blog: An example of a drive-by site that only attacks smartphone users and leaves computers alone. http://t.co/aopRXqd8… +@J4vv4D @gsuberland got that one down I think 💣 +@sciencecomic non-spoiler remark acknowledging that the ending has been observed +RT @landley: Huh. Apparently the original Torchlight is a free download today only: http://t.co/YK4q9lkjc5 +RT @KimDotcom: VERY BAD NEWS: #Leaseweb has wiped ALL #Megaupload servers. All user data & crucial evidence for our defense destroyed "with… +RT @pneif: @puellavulnerata @isislovecruft @SebastosPublius But correctness is very important to us here! http://t.co/4VZxdRrQXG +@MugiMafin @m1sp then that the trend is increasingly problematic rather than just increasingly different. +@MugiMafin @m1sp https://t.co/44AfBN28Rj first you need to show that there IS a trend and not just notorioysly unreliable nostalgia, +@mescyn — I can’t remember where. But majority support him, majority oppose him! +@mescyn and even if they did they’re all completely different. But I know I saw some actual website polls, though in the haze of events — +@mescyn every news site has run its own poll and they all act like their readers are a random sampling of Americans (and not others!) +@snare @djrbliss I have met @djrbliss and this is true +Well this sure is two-faced https://t.co/t0X3kkMBz7 +“Some percentage of Americans say xyz about Snowden” — Dear news sites, your readers are probably not representative of the whole country +RT @johl: #prism Demo at Berlin's Checkpoint Charly. The signs were updated. http://t.co/L9kiBgstnM” +McAfee, the company, should probably just burn its branding to the ground and start over. +Go look at today’s xkcd. The world didn’t end when the telegram was invented and it’s not going to end now. +RT @puellavulnerata: Exploiting that could give a miner about a 5% edge over one that naively evaluates all 64 rounds. I wonder if @Butterf… +RT @puellavulnerata: Observation on BTC mining: the nonce is 12 bytes into the 2nd SHA-256 block, so the 1st 3 rounds of compression functi… +McAfee trolls the living daylights out of… McAfee http://t.co/jWFySgjnZ0 +@_wirepair mistweet? +@thegrugq so nature is so opposed to those finger-shoes that she broke your foot so you can’t ? +@mickeypt it’s just such a common reaction, when a woman says “help he raped me”, for people to enumerate ways she could have “prevented” it +@mickeypt so, uh, no woman should ever interact with any man ever because if he suddenly rapes her she should have seen it coming?! +@Macheh sorry! I try to not sleep, but it doesn’t work. +@_wirepair as if dynamic is better +RT @natashenka: My first stab at answering the deeper questions of Tamagotchi life http://t.co/9zWOxvGrpU +@whyallthenoise ;) https://t.co/SJ56JAWde4 +@jinkee bandcamp?! blasphemy https://t.co/Ca4AnAvnlG +Dude. Remind me to remix the Dark Cave theme from Pokemon g/s/c. It's groovin'. +Abadidea Plays Bootleg Pokemon: Youngster Joey Edition http://t.co/CNpPRKLtr0 +@whyallthenoise probably, but everyone thinks it won't happen at THEIR conference. +@WhiteMageSlave cheer up, have a mistranslated Youngster Joey. http://t.co/CNpPRKLtr0 +@whyallthenoise though I'm not surprised, as neither of them spoke Polish, the police wrote it off as fast as they could. +@Packetknife @oh_rodr it doesn't matter if he's serious, as that's effectively how the ruling goes. +@sneakin just casually observing. I suspect most would languish in "workaround: use the ascii conversion" forever, or already are. +@woodrad those feminist guys are my favorite :p +@Kim_Bruning though the github one complains too +@Kim_Bruning 厄 dot net ( http://t.co/1FUyPttxdD ) +@sneakin and I've already confirmed copy/pasting it verbatim breaks most standard command-line tools +@gangstahugs I'd print out the complaint and frame it +@sneakin (I break it out like that because twitter "helpfully" preconverts it) +@sneakin it is AFTER conversion. It isn't when I send someone an email directing them to download from 厄 dot net! +@RSWestmoreland no no no I am the source not the victim! :D +On the other hand, a domain name with a kanji in it probably pushes me over the 51% chance of being foreign threshold. +Coworker George suggests a good idea: perhaps the NSA tools will choke on my fancy unicode domain name. After all, Americans only use ASCII! +@thegrugq DON'T MISQUOTE ME, SCOUNDREL +@bhelyer there is one Japanese unicode symbol that is meant to display beneath the girl if that's what you mean. +@puellavulnerata it's like how I insist on a patdown rather than a nudiescan. Except in reverse. +Up to three people who've complained that my HTML page's source complained of being looked at ;) +@niteshad the con of def +@thug_lessons ♪ +@vogon I’m not your friend? :( +@thug_lessons of electronics! The air around you is buzzing with the song of a thousand processors. +@vogon this implies you don’t check your overnight tweets when you wake up on yonder coast ! +And thank you everyone for the congrats, the topic is exploring unintentional emissions with cheap SDRs. Also, I’m bringing my husband. +RT @http_coed: what idiot called it kosher salt instead of taberNaCl +RT @Pinboard: NSA testimony in a nutshell: comprehensive system of checks and balances protects against misuse, unless someone types 'sudo' +Also I am very disappointed in anyone who assumes a woman allowing a man to enter her hotel room is consenting to sex thereby. +@nitiger rape. +This is why I am too scared to go to a conference alone. http://t.co/wfiaTKhciJ +RT @DrPizza: Also I'm deeply (un)impressed with the way Skype encrypts its own log files, making them useless for end-user diagnostics. +@reviktra I used gandi +@RSWestmoreland gandi +@tapbot_paul I used gandi +@drwilco and yes, whois'ing http://t.co/1FUyPttxdD works; the point is it'll take 厄 .net but not convert it. +@drwilco #whynotboth +@tapbot_paul I'm pretty sure the concept has been there for a decade but end-user application support trickled in slowly +And I'm delighted with how the whois command will accept 厄 dot net as a valid domain name but fail to find the records. #breakingthings +And yeah, 厄 == "yaku" == misfortune, bad luck, disaster. I thought it fit my identity well :p +@vogon try now Mr. Archaic Encoding Pants +@THEwmAnderson yep. I like the kanji's look and it's vaguely related to my name +@hrist says the one looking behind the curtain! :p +@vogon yes +@jesster_king http://t.co/lLtk5phY9a +@bhelyer :D +@vogon Chrome defaults to WRONG but I don't even know what encoding it's in I just pasted it into the terminal! +Stupid Twitter is auto-converting my fancy unicode domain. It's 厄 dot net, or http://t.co/1FUyPttxdD. Isn't that a pretty name?! +First world problems: I bought a vanity unicode domain and it hasn't propagated to me yet! +@eevee I paid $800 for my 11” 1080p laptop (actually tablet but it’s quite powerful) +@Xaosopher mistweet? +RT @ELLIOTTCABLE: Wow, Google Docs *really* doesn’t like emoji in your content. Tried to backspace over one, got: http://t.co/MxFa0i0MJf +@focalintent fffffff I svn update + build and Parity just flipped out and the build is broken ;-; +RT @mollycrabapple: The phones in the #GTMO pressroom have a sticker saying "this telephone is subject to monitering at all times. Use cons… +@WhiteMageSlave x_x! That include this one ? +@Xecantur there’s nothing python itself did wrong; there was just an incidental bug in a third-party library. +@matthew_d_green @DarthNull though my ipad, air, and iMac all don’t have sims +@DarthNull @matthew_d_green I had been assuming the key was derived from your account password +@reviktra silc is also obnoxious ! +@Viss @chead but the mindset of extrapolating incidental traits of an “enemy” to infer everyone who resembles them is an enemy is toxic +RT @Viss: hah, oh boy - Rep. Jan Schakowsky "how many more snowdens are there? how many more contractors?" - rad. all contractors are now p… +Funnily enough, in that story, it looks like if your username contained only “weird” unicodes, you were safe! #☆ +A story of unicode string comparison gone wrong http://t.co/UdVs4AR8hY +@Viss ha, you’ve seen me, no mustache, no matter how impressive, could ever genderbend me… +@Viss so I may have to try to pass as Chris … Tina +@Viss I have to figure out what we’re doing about badges… last year I was the only girl so I got my own :p +@Viss it may be the only time in my career I make it to a keynote +RT @codinghorror: What the hell have you built. http://t.co/Tq7ktgDWzD +@0x17h aren’t your parents from some weird country with sustenance farming (South Carolina?) +@DogeMocenigo they are slightly less ridiculous than they used to be, but not much. +@DogeMocenigo Bob Jones +@EmrgencyKittens @nrr do not get wet. Will break glassware +RT @zachsherwin: It's unfair that if you get up early, you're a morning "person," but if you stay up late, you get demoted to owl. +RT @mollycrabapple: For security reasons, we can't show the faces of the soldiers guarding the #GTMO war court. So I drew them like this h… +I genuinely resent the people who’ve made wearing a fedora into a bad thing because fedoras look pretty cool +RT @kgosztola: RT @JoshGerstein NSA Chief: Snowden apparently obtained Verizon call tracking order during training at NSA HQ http://t.co/PK… +@leoofborg line . +@leoofborg but for whatever reason, they determined that Japanese and Scottish ancestry didn’t cross their imaginary linen +RT @PixieGirl89: Steam sales have become so good, that the prices have collapsed in on themselves and have started giving YOU money. http:/… +@leoofborg yeah I suspect a lot of them are whiter than me in terms of absolute hue, but BJU thought interracial children were a Bad Thing +@alindeman it’s like it’s got some kind of reputation ! +@savagejen #FREEADASMOM Ada-Crying.jpg +And yes, my father went to a deeply religious, and southern, private university. +@Samurai336 bin-go +@savagejen they’ll lay a trap by sending you free coupons to a tanning salon so you’ll start qualifying +@techpractical younger blood took over the presidency of the school and changed it pretty much immediately to my understanding. +@JR_Nelson @techpractical Bob Jones University. Look it up, be appalled. +.@techpractical late 70s early 80s… they dropped the policy in the late 90s. +True story: my dad’s university forbade interracial dating, but they let him date a Japanese girl because that’s almost like white! +HA!! That guy who demanded the NSA phone records on him to defend himself is getting his wish! https://t.co/vwNWY8vQ4r +RT @GonzoHacker: What To Accept When You're Connecting: A guide to delivering your first http response +RT @PwnieExpress: MT: It comes with a mandatory Geek Squad installation. http://t.co/wb5fpWuwwZ /via @mrtoph +RT @snipeyhead: Best attorney reply to a C&D ever. http://t.co/E2nCV41e2y +@MrToph … that’s a pwn plug isn’t it +Delicious http://t.co/00LZvgYiar +@MrToph hi Courtney may I have a free iMac +@yolocrypto #YouOnlyPadOnce +RT @yolocrypto: Nobody's forcing you to use a one time pad just once. Reuse that shit brah: http://t.co/Ucp4HEuz81 #YOLO +RT @kaepora: Saudi Arabia is planning to ban Skype and WhatsApp in coming weeks: http://t.co/jbKRxF3MbG +So I tried to file a complaint with the government… http://t.co/NMCQ6i9CpH +@m1sp Gridbug is defeated! +@attritionorg you forgot Squirrel Girl, the most successful canonical superhero of all time. +@Kufat the extent to which the police will play mind games to convince you to say something is terrifying +@willjohansson and yeah it probably was him who used the gun! He probably murdered someone! But that’s a separate issue. +@willjohansson against him, that it was him who used the gun, because he wouldn’t answer a question about it. +@willjohansson yeah except for what the Supreme Court just said about they can use evidence a man didn’t answer a question about a gun +@harper not sure… but apparently refusing to answer doesn’t count as obviously using right to refuse to answer. +RT @EFFLive: DOJ mentions "relevance" standard in Patriot Act, but the current "relevance" standard is ALL calling info in the US regardles… +RT @EFFLive: DOJ mentions "relevance" standard in Patriot Act, but the current "relevance" standard is ALL calling info in the US regardles… +The idea that you have to wait until the cops remind you of your right, or you have to remind them, to HAVE that right is absurd. +@Kufat @tapbot_paul I read the story. The entire point of the right should not be dependent on whether the cops reminded you of it +Suspending being angry at the NSA for a few minutes to be angry at the Supreme Court for stomping all over right to silence +“On our honor, we do not use our internal tools at a CTF…” Team Veracode +@ioerror a moment of silence for the slaughtering of the right of silence +RT @KimZetter: NSA: Snowden did not have key/certificate to access area where VZ court order was stored +On a lighter note: improvise! http://t.co/1uujMtvKuX +RT @attackerman: Notice how many times Gen. Alexander says "industry partners" are "compelled by the court" to work w NSA. Imp for coming c… +RT @declanm: NSA's Alexander: We've never seen an analyst do anything wrong. NYT: NSA analyst "improperly" viewed Clinton's email. http://t… +RT @EFFLive: Confirmed, no court review of individual queries. Rest of the checks are inside the DOJ — this is not oversight! +@zeightyfiv oh I know that NK is objectively worse but they’re still technically right +@20committee apples and oranges, while distinct, have a common genealogy; I’m opposed to the tyranny of fruit! +RT @EFFLive: Confirmed: NSA Analyst doesn't need a separate court order to query database. Analysts can decide what is "reasonably suspicio… +@20committee how does that jive with the Verizon Order? +RT @EFFLive: If the NSA's "job ends" once info is inside the United States, as Keith Alexander said, why do they have every American's phon… +RT @puellavulnerata: The assumption that *it's completely okay* to spy on people as long as their (*gasp, horror*) foreigners goes complete… +@mrkoot I’m ashamed. And we JUST had that kerfuffle where the Boston Bomber wasn’t read his Miranda Rights in a timely fashion +RT @feministtswift: I said "Leave" / But all I really want is you / To leave / Because the "no-means-yes" narrative undermines the value of… +Could someone in position of authority please say “I don’t give a damn, I asked you a question” next time an agent says “that’s classified” +RT @EFFLive: "Have you collected any info besides phone records through the Patriot Act?" Cole says that's classified. +RT @EFFLive: No names or addresses in the call records database, just phone numbers. Thankfully phone numbers can NEVER easily lead to anyo… +RT @EFFLive: Inglis describes "queries" as being backed by reasonable suspicion, and that NO court order is needed. +@ak_____28 … it’s not like I have citizenship in Ireland, Scotland, and Sweden, all of which my recent ancestors are from. +@ak_____28 @EFFLive that’s not relevant to the legal definitions under discussion and you know it… +RT @EFFLive: Inglis focuses on foreign aspect of collection, but according to NSA they just have to determine that you're "51 percent forei… +RT @EFFLive: Talk of protecting info sidesteps core issue: By getting all call info, NSA spying is a general warrant in violation of Fourth… +@wimremes is one of them Ilja? Tell him I had a dream where I lectured an American reporter on how to spell his name XD +@wimremes hmm, most companies wouldn’t have “three employees one town” on the risk register I think… +@ELLIOTTCABLE @vilhalmer this year was replacing my old iMac. Hopefully there will be a retina air someday…. +Is there anything more embarrassing than being called out by North By God Korea? http://t.co/dlHPNSIABx +@m1sp we have some bad news… you have a case of… DNA +@runasand see you there! +RT @stillchip: Bank of America whistle-blower’s bombshell: “We were told to lie” http://t.co/RXY28YK4vP via @Salon | It was OBVIOUS! +@ELLIOTTCABLE at least the 2012 airs also recharge absurdly fast +RT @ashk4n: When they NSA says they can tap all your emails -- this is partially why (hint: no encryption between webmail hosts) http://t.c… +RT @EFFLive: Alexander stresses, "We could've stopped 09/11." But 09/11 Commission cited gross mistakes by CIA/FBI, not lack of information. +RT @ioerror: Don't trust anyone to govern your internet or to design policies if they don't understand TCP/IP #FOTunis +RT @TanyaOCarroll: ¨each and everyone of you is living under the #surveillance colony of the United States & you have no rights΅ @ioerror #… +@amazingant @MrToph the title is “Noise Floor” as it’s mostly about radio noise and Defcon discloses everything +@0x17h that’s a weird thing to name your son… +RT @puellavulnerata: Does the #NSA have to worry about BLARNEY/UPSTREAM spying on itself recursively, like running tcpdump in an ssh sessio… +@MrToph yes, but actually with a focus on the unintentional emissions of electronics rather than deliberate signals. +@MrToph how to get in trouble with a $10 radio from China +@froztbyte I have had this conversation many times: “Hello, girl in nerdy shirt, have you heard of nerdy thing that sounds impressive?” +Now I can’t wait for the next time some random guy asks me if I’ve ever heard of Defcon when he’s trying to impress me :D +ACCEPTED. See you on stage!!! +RT @riskybusiness: This week's feature guest, @thegrugq, reading up on his area of expertise. http://t.co/5mXjYL3hOU +Someone call the 2600 Payphone Rights Association! http://t.co/XtDBpfUZHW +@0xabad1dea @JackLScanlan @realscientists @wendyzuk whereas when it comes to… whatever it is you do with pipettes, I’d trust you mostly :) +@JackLScanlan @realscientists @wendyzuk so yeah if you wanted to do a thing on physics…, I’d want to see a lot of reference to other works +@JackLScanlan @realscientists @wendyzuk but like, if I extolled evolutionary biology, I’m not an independently reputable source +@JackLScanlan @realscientists @wendyzuk I’d say so. Note that I’m not trying to insult science journalism; I read a lot of it, I reckon. +@realscientists @wendyzuk perhaps more precisely: are they the peers meant by peer review? If not, it’s journalism @JackLScanlan +@rantyben if you wake me up at 3am with some remark about elephants I’ll keel you +@realscientists @wendyzuk @JackLScanlan participant vs. non-participant in the field under discussion. +RT @oh_rodr: @whitehouse I think you forget who you work for. +RT @whitehouse: Obama on NSA: "I've asked the intelligence community to...see how much of this we can declassify without further compromisi… +@thegrugq @oh_rodr oh sorry. I figured your looks canceled out the whole rich foreigner thing and you broke even +@thegrugq @oh_rodr when do we get to the part where you look at illegal pron? I assume that’s what you do +@thegrugq @oh_rodr if you’re creepy to naive little me at Vegas I’ll tell my daddy. He’s a government man ! +@thegrugq @oh_rodr which you said again and then deleted again so now it’s in the prismbase not once, but twice ! +@oh_rodr @thegrugq they say The Grugq’s heart grew three sizes that day +@0x1C @thegrugq I habitually pick on Australia out of love and respect. +@astroduff @JackLScanlan haha but only serious because technicolor writing is a classic indicator of schizophrenia :( +@thegrugq I just bet the question “can they afford ____?” is “yes for everything up to and including Australia” +@thegrugq with the scale of budget we can assume, it’s a fleet of Batmobiles. +@thegrugq yeah but if I’m traveling Europe on SEVENTEEN GADZILLION that’s a different question I think ! +I mean, I think it’s a given their budget is effectively whatever it takes. So it’s hiding it from the taxpayer a lot more than The Baddies… +Honest question: why is the NSA’s total budget size classified? How would knowing the total help Those Bad People? +RT @m0nk_dot: @quine @Niki7a http://t.co/4a5JbLy34H +@vladkov Not yet, the nice scary lady said it would be later tonight. +@0xdeadbabe @puellavulnerata so in their case, five months. +Am I paranoid to assume companies quote their six-month surveillance figures to make it sound like half as much as it is? +@m1sp http://t.co/sFkShivIKq +@m1sp I can hear gooses in my marsh <3 +@a_greenberg @kashhill @joshbearman SadImNotPettingAPhoenix.gif http://t.co/BvSLiu1xfj +RT @lawblob: girl your body is a temple. but it’s the water temple from Zelda so once I’m in there I have no idea what to do +@ikmultimedia Please do not put goddammed pop up ads in paid apps. Thanks. http://t.co/Clf7eMkxKK +“Policy is a ratchet that only loosens” (Snowden) I guess it is so, as exceptions to policies always, always happen +@ra6bit @eevee maaaan that’s such a false dichotomy! Function and form are not separate for a device you look at and touch all day +@secboffin @VTPG actually I’m better than average at everything worthwhile except humility and the platformer genre of games. +@secboffin @VTPG don’t worry, I’m really good at not thinking I’m better than average! +@eevee there has never been a thinkpad that wasn’t hideous +@0xcharlie we’re trusting you Dr. Miller. Trusting you with our tweets +@0x17h it’s NASA’s lucky day +@0x17h maybe we should just ban all three-letter groups of the form N*A +@20committee @steven_metz I know, that was the part you quoted immediately after he said he approves. +Internalize please https://t.co/UqFQSPSd2F +@20committee @steven_metz most legit whistleblowers seem to approve on the whole, including Binney who you partially quoted on the matter ;) +@steven_metz @20committee I just feel like people are too busy not liking him for things unrelated to the documents themselves. +RT @The1TrueSean: "the card have to be renewed in 4 years time which is 2016." Spammers really need to update their e-mails.#spam +@steven_metz @20committee ah, apologies! https://t.co/h35wgK3TB0 fits that better. +@steven_metz @20committee https://t.co/UqFQSPSd2F Please find better reasons for someone to be wrong than their diploma +@boblord middle syllable for both +@everyunicode oops again! +@Tomi_Tapio whaaaat. My poor Boston! +RT @jaykelly26: Say goodbye to some more Freedoms. SCOTUS Deals Miranda Rights Blow - http://t.co/apNcN3SyVD +@dawnchapel @qDot I’m… trying to decide if the image was switched, or that’s the joke. +RT @RedactedMedic: http://t.co/Bk3P4QeSoU first date. “@AppFlyer: Awkward. @mitrebox http://t.co/SzT9AkPmoB” +RT @arstechnica: Texas becomes first state to require warrant for e-mail snooping http://t.co/8xeUFRKa6x by @cfarivar +#woburn #burlington water on the road is four inches deep in places... Be safe +@Niki7a @tufts_cs_mchow @ErrataRob it's fine!!! I'm just anxious :) +@The1TrueSean where can I get massages by mail +@zygen grats I guess +RT @oh_rodr: . @janinda as someone who worked intimately on this surveillance program, I'm very happy that #snowden leaked his shit. +@solak @everyunicode they deleted the E and inserted the D before resuming I’m pretty sure +@qDot @tinysubversions … wat +@tufts_cs_mchow @ErrataRob it would be fair to delay my rejection until the last day because I also submitted on the last day lol +@everyunicode oops. Start over. +RT @solak: @0xabad1dea @everyunicode Now that you've called attention to them, they seem to have skipped "D". #performance #anxiety +RT @adamshostack: From the weekend: New iphone settings? I could see this through a paranoid prism...(/cc @att) http://t.co/SHPzjjfEjS +RT @mikko: Hugo Teso will run a webcast on Thursday: Practical presentation on how to remotely take full control of an aircraft… http://t.c… +I just tried to lock a paper notebook before getting up from my desk +RT @codeferret_: The NSA knows I'm uncool because I have to google for the definitions when my friends use slang T_T +EMET 4, finally! It has certificate pinning http://t.co/Kqo5G7JZLy +@chriseng wat +Follow @everyunicode for a very exciting buildup +@ErrataRob I don’t really have much of a problem with public speaking! I’m just nervous waiting to hear if I’m accepted or rejected +Sooo… today is the final absolute last day for Defcon CFP notices, right? *refreshes mail* *refreshes mail* +@eevee I am constantly taking photos with my iPhone in dreams then, shortly after waking up, be surprised they’re gone +@FioxyFluff @Tomi_Tapio is your garden a nuclear waste site?! +@chriseng oh geez. What is it? +Is this just creative writing? http://t.co/TwCA7cMx5t +RT @sweis: Snowden:"Encryption works. ... Unfortunately, endpoint security is so terrifically weak that NSA can frequently find ways around… +RT @MsEntropy: Why is this not bigger news? Texas jailers ran "rape camp" | http://t.co/2DPzmsbTxr cc: @WomenUndrSiege +@gazoombo I nominate @marshray and disappear into the shadows +@gazoombo though I am not #1 Crypto Expert +@gazoombo in theory, I think, the sticks are a good idea, though simply storing password-protected key files on a plain one can work okay +RT @ioerror: Someone doing SIGINT and openly advertising on LinkedIn actually brags about a program named Panopticon! http://t.co/2JXYEyTLW… +RT @chriseng: Snowden doing a live Q&A shortly: http://t.co/gPVBuT8CAv +@ioerror he deleted a tweet a few days ago agreeing to defend citizens but wondering aloud why he should care about foreigners. +How worried should I be to find this on my computer? http://t.co/2HFO5nNVRj +@wookiee you are a bad person +@WhiteMageSlave indeed you are +@m1sp @JackLScanlan it’s complicated. +@JackLScanlan @m1sp Mispy will attest that this is exactly what happens +@JackLScanlan @m1sp no, their world would be a happier place if there were only gods of fabulous fashion. Oh and there’s undead people +@JackLScanlan @m1sp basically: fantasy Silk Road, small poor country trying to politically maneuver, crazy people with powers, gay teens. +@abditum @m1sp Novel loading… please wait… 50%… 50.0001%… +@JackLScanlan @m1sp the fantasy novel I’ve been writing behind your back… the scribbles I pass to Mispy are my notes +@m1sp this Father’s Day, let us reflect on how I have developed literally hundreds of characters, but not Hayr’s unnamed father. +@m1sp well, it’s him, Rashk and Tsovinar vs. Hayr, Ziazan and Chakori in the Demographic of Hermit God Strongholds. +RT @wolfpupy: what if the headless horsemans original head was a horses head and the horse he rides has nothing to do with the name +@z4ns4tsu it turns out knowing what you don’t know is intractable. +@m1sp http://t.co/OmvYGROkcZ +@DrPizza yay! 🎉📱 +RT @ErrataRob: Bah, I spent all that effort learning to pronounce "Ahmadinejad", and now they've replaced him. +Wifi is literally invisible and might as well be magic. Please don’t blame people for not having a detailed risk model of it. +@JeffCurless @docsmooth @mattblaze technology is not intuitive. Internet privacy is extremely not intuitive. And a quick google won’t fix it +@JeffCurless @docsmooth @mattblaze WE are the technical experts and WE need to help rather than write off victims as deserving it +@JeffCurless @docsmooth @mattblaze right, so I’m sure you have a medical degree, a law degree, entirely self-sufficient in knowledge +@joshrossi once long ago +@WorldsHeadiest @0x17h /b/ is for /b/anned, /b/locked, /b/ye! +@joshrossi *applause* +@JeffCurless @docsmooth @mattblaze in a perfect world everyone would know everything about all technology they use, but, well. +@JeffCurless @docsmooth @mattblaze any time you use the word “deserve”, stop and evaluate why you think it’s their fault. +RT @tinysubversions: Whoa, @silentbicycle markov'ed the GPL license: https://t.co/RiteBuUZ9v ... Markov works very well with legalese +@WorldsHeadiest @0x17h you’re a real credit to Anonymous team. Giving them a good name. +@docsmooth @mattblaze assuming it was free wifi, there’s no way it could NOT attract civilian moths to the flame… +@PaulM @mattblaze I’m… assuming that’s exactly what they did. +.@mattblaze better question: what happened to the traffic of normal people who surfed at these internet cafes? +Spying on your own guests is simply rude. http://t.co/QAF0FrUJ3v +@PRISM_NSA ugh how did you know +@kivikakk @tenfootfangs I’m just saying, if you’re ever in the area, gay marriage is legal here… +RT @0x17h: Throwing children in prison turns out to be a really bad idea http://t.co/iuo6iStDbM +@20committee you know, most people would say there’s a difference between being at war with someone and not being at war with someone… +RT @m1sp: Found a paper in the arxiv database which was updated prior to its creation. Dealing with physicists here, not ruling out time tr… +“Phosphate, deposited originally as guano, has been mined on the island for many years.” How’s that for a job description +@rantyben @thegrugq why does CHRISTMAS ISLAND need its own investigation agency +@WhiteMageSlave he forgot how to tank http://t.co/3k6KzFh106 +@DrPizza :( +@ashedryden like why would you resent a piece of paper reminding the general public to not be rude unless you were planning on it? +@ashedryden sometimes I see people whine about codes of conduct and call it nannying. idgi. +@JackLScanlan I wouldn’t capitalize it for the same reason I wouldn’t capitalize the world, the ocean, and the sky. +@Sakurina @grp well technically it hasn’t shipped yet… +RT @EFF: Expert: Snowden's EFF sticker a "warning sign" https://t.co/zB8jB57MsD Really? Here's NSA's chief wearing EFF's logo http://t.co/… +RT @osxreverser: "Ms Nagyova - a close colleague of Mr Necas (…) - is also suspected of illegally ordering military intelligence to spy on … +RT @osxreverser: "Czech PM Petr Necas says he will resign on Monday following the arrest of a personal aide in an illegal surveillance scan… +RT @landley: Think the senate will fix domestic spying? Half of them didn't bother to attend thursday's briefing on it http://t.co/6bpyNMvV… +This music strongly evokes feelings of being ten years old, so I'm naming the rival after my annoying little brother who's now an adult :p +#pokemon quick, what's my rival's name? Asian version so only five letters. Hmm, IONIC, GRUGQ...? +@Kufat http://t.co/bfnmOrpcsm +I saved and reloaded and turned into a boy, so I guess I'll have to use emulator freezes instead. #BootlegGaming +Everything you need to know about this bootleg translation http://t.co/Nt9RQeAahE +@chriseng the scoop was that the representative *said* so, which he did say so. Then the representative said some other different stuff too. +I'm liveblogging games again http://t.co/5PN7k5J46y +Forgive me, download site, if I elect to not use the bundled emulator included with this rom I just nabbed +@WhiteMageSlave I love fighting Pikachu in smash bros... as I can just reflect everything. Yes, yes use thunder when I pass directly over! +@nrr I think our lease has something like a fifty pound limit +@kyhwana I would but he refuses because he thinks they're creepy +It’s easy to hate Gary Oak until you realize his parents are missing and his grandfather can’t be bothered to remember his name. +@sanguis3k I’m guessing they were so cheap they didn’t change the plastic between prototype and final +@sanguis3k there’s no connector inside, it’s just a hole in the plastic ! +RT @steveklabnik: Half of Americans living below or near the poverty line: http://t.co/47eytmM8bK +@Kufat you know I’ve owned cats before right I’ve even had horses. Entire horses. +So my husband was exposed to a cat and didn’t have a reaction. I really really hope he outgrew the allergy because I need a cat +@m1sp floor is lava +The URL of the video seems to be gone. But the cnet journalist doesn’t need to retract anything. I saw the video, Nadler did say that. +@chriseng but it’s on video. The journalist quoted him accurately. +@chriseng but it’s on video. The journalist quoted him accurately. +@20committee @ioerror It’s not particularly hard to find out what ioerror’s views are, he’s quite notoriously open about them… +@m1sp how am I supposed to send you pages when you're not online? :'( +@CaucusRacer nah it's clear and it looks like it drizzled off a glue gun, particularly on the underside it's not even touching any component +lol there are gobs of glue on both sides of this circuit board... pro +@xabean lol got it I had to wedge a fork in there... +@xabean it's actually stuck on there pretty good! +I peeled off the QC sticker on the cheaper radio only to discover an inexplicable microusb-shaped hole underneath +@THEwmAnderson no, because birthdays are a lot more fun when your parents love you! +@m1sp <3 +I can actually celebrate Father’s Day, but I think we need a holiday for people who survived failed parents. +That whole match, I thought I was fighting Luigi… then it turned out to just be Mario in a green suit… I don’t know what to believe anymore +RT @ioerror: Bush NSA begun scraping Skype call records and email metadata directly off US networks: http://t.co/zlJuDAx13X +@sciencecomic (it comes down to maximizing bulk movement rather than minimizing miles traversed per package) +@sciencecomic insert ramblings about the computer science field of of minimizing cost of package delivery +Hey twitter, we have successfully sustained conversation on a political topic for over a week without forgetting. Good job! +RT @hemantmehta: Christian College Expels Lesbian Student, Then Demands Repayment of Scholarships http://t.co/kNhEN2TkF1 +RT @zeynep: What Istanbul has come to. People now instragramming tear gas canisters that broke through their windor. http://t.co/nTAd26psCe +RT @NickHanauer: Coolest. Thing. Ever. Scientists re-discover the lost formula of Roman Concrete and it kicks our concrete's ass. http:… +@kaepora just a tad. +RT @vogon: @mattblaze @supersat koan: if you DROP TABLE in NUCLEON does the DBA make a sound +@chriseng I’m surprised Massachusetts is still your most frequent checkin… +@mike_acton pretend I didn’t auto incorrect that +@mike_acton largely a personal preference, but I’d ere on the side of current gender identity +@PatrickAK the spike is generated by the hardware and is always present at the exact center of the window. +@vogon what happened to the others? >.> +Behold the power of this fully operational science station http://t.co/HvdJQ0naFo +@CliffsEsport radio science ! +@corpsefilth that would kind of defeat the point +@QuantumG I am NOT paying shipping on several tons of metal from Hong Kong! :p +@QuantumG I don't see a price, and you know what they say about that... +The fact that the microwave is not big enough to contain the entire live USB cable, the computer it's attached to, and me is a problem :( +@puellavulnerata the script I put on github today specifically deletes a small range from the center before doing analysis +@puellavulnerata yes, it's an artifact of these cheap radios apparently. +@puellavulnerata MHz, but the spike will always be there in the center no matter what. +@jesster_king it's a microwave oven. +@puellavulnerata about like this one https://t.co/1tLeTTV4Ze +@vRobM there's not actually anything there (that the radio is picking up). That spike is spurious or whatever you want to call it +My yard sale faraday cage at work! http://t.co/skN64Rsj7O +@vogon that's an fc00013 on the left and an e4000 on the right http://t.co/yju8jrJxyo +@LowestCommonDen yeah that drives me nuts - also when people say "stack overflow is for people who can't google"! +I wonder how many times I can close the microwave door on this USB extension cable before it frays +@innismir I don't have one and I don't know. I probably shouldn't be trusted with a transmitter. :p +@jesster_king software defined radio +@_miw the noisy one on the left is a fc0013 and the clear one on the right claims to be an e4000 but I'm not positive. +@innismir yeah I know :) I guess the cheaper one goes beyond having no shielding to actively hurting itself +@xa329 @normative thanks +$10 sdr vs $20 sdr... don't cheap out too much, kids. http://t.co/nN2ovW5CRY +@a12danrulz my little bro refused to learn to read until he decided he wanted to play Pokemon without help lol! +Saturday night with KK Slider #smashart http://t.co/Tl4QCZd8em +@WhiteMageSlave they shall know of my greatness http://t.co/bwz2R6rIuO +@xa329 @thegrugq I blessed well don't swear. +@404ed http://t.co/yju8jrJxyo +The problem with writing a script that processes output of a $10 radio is it will randomly decide it doesn't feel it at the moment +@TDotWhiteHat @thegrugq I WON'T FORGET +@Brian_Sniffen @zooko http://t.co/d4EISKDJTz +@_wirepair I’m flattered I guess…? +@kaepora @matthew_d_green I suppose he meant the math is dull +Video of representative complaining he got two different answers from the NSA http://t.co/bIwklqRzER +RT @GooglePoetics: I am getting fat I am getting old I am getting married I am getting used to it #GooglePoems http://t.co/v4SvkLKCh5 +@grumpybozo actually I did end up on that page eventually but it wouldn’t play… +RT @ggreenwald: Whatever you think of the stories or Snowden or anything: can everyone agree that this increased transparency for NSA is ve… +@dangoodin001 @declanm representatives should all have tumblrs! +@Kytri Kytri Thompson, 198X—20XX: single handedly ruined comics forever. All of them. +@thegrugq I’m also good with stabbing +This reporter looks legit but what is the source of Nadler saying this? Or did I just miss it… http://t.co/bIwklqRzER +RT @trevortimm: BREAKING: In classified briefing, NSA admits it "does not need court authorization" to listen to domestic phone calls http:… +@thegrugq I’m great with kids. I swear. +@wimremes @thegrugq there’s not even a cartridge in that Gameboy! +@thegrugq why would you think playing Nintendo with me is traumatizing? Did Mario touch-a you? +@nrr I’m stuck at the house because DH left for the weekend and forgot to leave the house key. But there’s Nintendo at my house! +@nrr I live a few miles north of Cambridge +@nrr hello geographically adjacent friend ! +@zygen pedally. Manual is with hands! +Maybe I can advertise as a babysitter but only for kids who are worthy competition in Nintendo games +Grow up problems: I bet those kids outside would play Mario Kart with me… I also bet their parents would call the cops. +RT @levie: This should sum up America's problems: 53% of senators skipped out on a classified NSA briefing this week to go home early. +RT @ELLIOTTCABLE: Wish you could click those damn little loading-indicators in @Tweetbot, they’d stop loading and go away. /re http://t.co/… +@kirkenovak @Tomi_Tapio someday I’m gonna log back in and go ask that Redguard girl to marry me +RT @SteveD3: Pre-Father's Day comment from kids: If you're ever on life support, we'll unplug you and plug you back in, because sometimes t… +RT @jayrosen_nyu: "Don't savvy me." New shorthand: only 14 characters. It means: Stop dismissing valid questions with the insider's, "and t… +@collettiquette someone needs to learn of burden of proof :D +Code drop!!! https://t.co/x8HGNmZQX3 the worst radio scanner ever written #sdr +@jevinskie oh, well I guess that part is effectively a filter as it just removes a tiny slice from the middle of the array entirely. +@jevinskie it's not a filter, it's just generating a textual list of peaks in the sample buffer +Wee! I wrote my own script for finding local peaks that ignores the false spike always in the center. http://t.co/hFtfa5SZfz +@pchengi no, the opposite! I am saying a lot of Older People seem to not like people in their 20s. +@WhiteMageSlave the range is actually ridiculously short and easily defeated by a wall +@akopa I was trying to use someone else's already-written interactive one +Problem: I should get some fresh air. Solution: Wii-U tablet range extends to patio +Dear abadidea of two days ago, you put the pudding in the freezer. gg, champ! +@NotThatGreg wow... +@hackerfantastic nope, just the rtlsdr tools +@NotThatGreg ie the library detects my dongle as an elonics e4000 but its tunable range stops dead at 1700mhz +@NotThatGreg mass-produced Chinese radios are like a box of chocolates: the chart may or may not be accurate http://t.co/yju8jrJxyo +@NotThatGreg one of many roughly equivalent rtl-sdrs +@mirell not necessarily… depends on the family. +I made a graph programmatically! The most fun you can legally have on a Saturday with a USB dongle!!!1! http://t.co/bngqx7ErZp +Google "pylab". First result: wiki page complaining that the first result for googling pylab is not very helpful. It wasn't very helpful. +@sakjur "blah blah blah you're only 24 what do you know" "blah blah blah he's only 29 why does he make so much money" +RT @hemantmehta: This Woman is Being Denied U.S. Citizenship Because She’s an Atheist http://t.co/g4uRfCWhx7 +@kivikakk it’d probably be more efficient to have stored the RAM states +RT @nullwhale: @0xabad1dea A HN commenter clears up the translation a little — https://t.co/GYCZ0kncoK +@m1sp #youngnar http://t.co/WDAoWZua1o +RT @mikko: German Intelligence agencies claim they can 'decrypt PGP and SSH'. http://t.co/7YjaV8TTAi There's obviously something lost in tr… +@ralphtice it’s not my friends, it’s a zeitgeist +RT @xor: Oh my god, Google's been trying to warn us all along! http://t.co/xbBTMXUKxK +It really seems to me there’s now a disdain for people in their 20s that equates them with teenagers which didn’t used to be there. +@hypatiadotca how bad are we talking +@m1sp http://t.co/xnIw5inIYE +@The1TrueSean my only question is: why one glove +@ca13ra1 https://t.co/uUgXE1SWX1 +@amanicdroid @0x17h my village police are analog, and the Boston police were analog as of, well, was that even two months ago yet? +@0x17h pff, what could ever happen in Boston? +@0x17h oh yeah. +@niteshad It's not encrypted. There's just no-one talking. Because nothing is on fire. +@EightTons the time frame was not my concern... except that three decades ought be long enough to find out what NSA stands for. +@niteshad lol as if! +"Maaaaaan my local police and fire radio isn't very active! Wait..." +(That bright yellow blip was a fireman using the truck's radio about twenty feet form me, just saying something mundane) +@thegrugq nnnnnooooooo...... +@N3OX rtl-sdr +The fire department is outside my window... boy that signal sure is bright http://t.co/YtID7DEsCq +@_wirepair @thegrugq hmm it's not the touhou albums but I guess I'll try to get it anyway to cover for my piracy sins +@thegrugq @_wirepair also my taste is fine thank you https://t.co/cbQPhaEpjg +@thegrugq @_wirepair I suspect the answer is that CDs have *collector's value* +Japanese musicians!!!! y u no digital download so I can give you my monies fair and square +@smb lol I'm sorry. I only see "Super Mario Brothers" +@RandomStep submit child get request to adoption API endpoint +@lil_lost pretty much +@elathan because I'm planning on adopting and you usually can choose that +@MikeyASalazar me too! Actually I've been planning on adopting since I first heard the word when I was seven years old. +Y'all know when I get a kid you're going to be in for like ten years of scientific observation tweets about her learning stuff? Fair warning +When your handle starts with a zero, you get a lot of pocket-tweets, toddler-tweets, and hand-slipped-tweets. +@patrickwonders you seem to be having technical issues, possibly of the toddler variety +RT @Marie_Lu: Classic statues in hipster clothes. Is the best thing I've seen all day. http://t.co/VksjU5FHBs +I can’t believe someone put this much top-notch effort into a movie trailer about Java https://t.co/pkH9fgS00f +I don’t think I’ve ever seen a photograph of an in-flight entertainment screen that wasn’t of a Linux crash or reboot. +RT @marshray: http://t.co/ByTrXVhKH2 Thought I'd mention I proposed an enhancement to SSL which ENCRYPTS your METADATA. Speak up if you wan… +@stillchip lol I'll see if I can find one... +Antenna has female connector. Radio has female connector. I tried rubbing them together, but it seems they're not lesbians. +RT @PRISM_NSA: There's one Internet company that has bravely resisted us, no matter the cost: @GoDaddy haha JK they're total jerks like yo… +This source base has a configure script which does nothing but print "just run make" +This is how Massachusetts people think. http://t.co/m3VndDab9F They can't fathom going more than eight miles to anything! +@tapbot_paul to clarify, I mean robots in homunculus form. If your bag doesn’t have half-eaten candy bars, you’re suspect. +@tapbot_paul Androids. +@tenfootfangs what if you search for four guys or six? What is the limit of guys who can grind as n approaches infinity +@iowahawkblog @innismir I ain’t Russian ! +RT @iowahawkblog: Whenever I get retweeted by a hot chick, I assume it's some kind of Russian internet scam. +@kaepora @cakemail If they think *that’s* hate, they really need some more experience with controversy +@wookiee I’m disappointed there’s no full body shots of you gettin’ down in that video +@0x17h barbarian +RT @BrianBWagner: I'm starting to think that @PRISM_NSA is like Santa Claus. The more you believe in its power, the more it influences your… +RT @arstechnica: What does your cat do when you’re not around? http://t.co/CVotCjTLEH by @drgitlin +@bhelyer anyway it’s like “Celebrating the 191th consecutive year of keeping soldiers out of our quarters” +@bhelyer they don’t just show it to you? o_O +Third Amendment rights group celebrates centuries of stunning success http://t.co/1BRsaHAxus +RT @MarkKriegsman: Pink Shirt Day @Veracode. http://t.co/CLNmWWdzGr +@eevee well they already had that é using up a perfectly good slot in the character map +@HyShai that's the pager - the mp3 player has 32MB of ram by which they mean solid state storage +Review of a $300 MP3 player... in 1998 http://t.co/Lwi0L2SVgY (via @ternus ) +@meursalt not my pager - I'm guessing it's the base station at the local hospital (I haven't hooked it up to a decoder) +@alethenorio 13 is dang well old enough to use the internet and gaming forums. +Right where I thought it'd be. http://t.co/CI0Hepku7R <--> http://t.co/cBLQuwvpra +@m1sp @vogon I was so ridiculously harmless +The NSA could save a lot of money if they just hired my best friend to cyberstalk everyone... nothing escapes his keen google-fu +@H4RDC0pyLULZ >.> +RT @chaosTechnician: @0xabad1dea Don't be too hard on 15yo you. 25yo you set a laptop on fire. :) +15yo me called herself a phreak. 15yo me needs to be slapped +@m1sp SILENCE +"Someone" found a backup of my blog I started when I was 15. Will I hate 25yo me this much in ten years? +@akopa yup. Once again I am punished for buying the piece of fabric which was advertised to fit me +@The1TrueSean @thegrugq @codeferret_ he really puts the bear in pedobear +@thegrugq I'm ten. +I got a Pusheen the Cat shirt, but apparently "woman's tee" means "we cut out a hole the size of the moon" +@lindseybieda I personally have always refused to pretend to be a boy. I get TOLD I'm really a boy enough as it is. +And no, contrary to my mother's apparent fear that the internet is nothing but pedobears, I never encountered any on gaming forums. +When I was a young teen (13, 14) I lied about my age on the internet (saying I was 10, 11) because it freaked me out when guys hit on me. +RT @mattblaze: Didn't Sen. Feinstein reveal more than Snowden about telco metadata when she said it was going on for years & applied to oth… +@ErrataRob attn: @comex :p +@ErrataRob I promise I’m not being interviewed by the police over twitter +Why do I encrypt communications, officer? Because I’m planning a surprise party… several times a day… +@thegrugq I buy surprise gifts for my spouse several times a day! +RT @callmewuest: @0xabad1dea It's not like anyone is hiring people to weaponize those patches. Oh wait -- http://t.co/Q2lgmnSW44 +@reviktra I tend to comment on the thing I most recently RT’d :p though I realize, if you already follow, twitter’s behavior is arbitrary +Giving the govt advance copies of patches is a two-edged sword. On one hand it’s passive defense, on the other it’s so easily abused… +@thegrugq hey man, etsy is on the BALL. +@reviktra in this case it was office space and allegedly someone chickened out on sharing it after the past week. +@leighhollowell fun fact - the white part is technically leaves, and it has several tiny flowers in the center. Double flower! +@hoofadoo @innismir @wimremes no one said there are no adult converts +@innismir @wimremes I’m defining convert as someone who has explicitly prayed for salvation in the generally prescribed Protestant manner +@leighhollowell dogwood +@innismir @wimremes I have missionary training from the Southern Baptists, you know… +@wimremes it’s no coincidence that almost all converts to Christianity are under 15 years old… +RT @eevee: it is seriously cool that animal crossing allows crossdressing and only makes cheerful nods at it +Whether or not you think JavaScript crypto is a good idea, chickening out on helping Cryptocat at the last second doesn’t help anyone… +RT @kaepora: Wow. @CakeMail just canceled a deal to rent part of their offices for Cryptocat because of “what we work on.” Incredibly shame… +@ShadowTodd that’s what makes twitter followers! +RT @landley: Is it a good sign for the future of the USA that Sesame Street _needs_ to cover parental incarceration? http://t.co/7L1kKbExRn +RT @SecurityHumor: Bitwise and byte foolish. #infosecadages +RT @SecurityHumor: Bitwise and byte foolish. #infosecadages +@taoeffect that’s not what NSA stands for. +@rodrigobijou saw a screenie of it +How to destroy credibility in one sentence: “I’ve been covering the National Security Administration for three decades.” +@WhiteMageSlave but it’s the squirrel’s fault in the first place +@thecoleorton @Veracode honestly, we don’t … +RT @Veracode: MAME and legos, the keys to productivity. http://t.co/JbYB7HKbNk +RT @charliesome: Holy shit, this is a bootable Minecraft clone written in *assembly*: https://t.co/NSaPPIDpe0 +@WhiteMageSlave thank @CyberSquirrel1 ! +@Ionustron but the evidence points not to a backdoor, but to the spooks getting an advance copy of next month’s patches +@Ionustron Microsoft Security Essentials? Well it’s not like the rest of the OS isn’t also under their control :p +@octal @puellavulnerata and if people will still call him kid when he’s thirty years old +RT @m1sp: Twitter data visualizations will continue to grow until they reach peak silliness https://t.co/ZGfMA5AdNi +@H4RDC0pyLULZ :o +RT @csoghoian: Wow. Microsoft provided non-public info on software flaws to US gov agencies, which was used to exploit foreign govs. http:/… +@m1sp it’s a legitimately sad story! Solornel just doesn’t have much patience period +@m1sp #TheMeanestAuthor http://t.co/u9AHqIdkdK +RT @marshray: @DonAndrewBailey @tqbf @csoghoian like asking a fox to guard a henhouse,in secret, with exponentially increasing hen-eating c… +RT @thegrugq: A lot of the public evasiveness of the IC heads has been based on hoping that people will understand the non-IC definition +RT @TheAtlantic: A certain 'je NSA quoi': In the 1950s and '60s, the spy agency held a beauty pageant http://t.co/FNXw159dyB +@Kufat it’s been there for TWENTY MINUTES +I should throw out this jello cup before it attracts ants *picks it up. Soldier termite underneath* +RT @textfiles: A COMPLETE BOMBSHELL WAKE UP SHEEPLE http://t.co/VVZGfJoZ04 +RT @marshray: http://t.co/PKZTfT4QS2 "It’s not just meta data. The NSA is getting everything." +I um, missed this when it came out a month ago. FBI guy stammers and then says all digital communications recorded http://t.co/pR5ipQhPFI +In news that isn’t depressing, Supreme Court ruled against patents of natural DNA. That there was ever a question is frightening. +.@dakami xbone’s PR is so condescending that I am seriously contemplating it being sabotage +RT @dakami: https://t.co/uJ2YRk3ebI Wow. The lawyers are actually killing the XBox One. +RT @attritionorg: Is it safe @TrendMicro? No =( http://t.co/nC9BcOnHH8 +@benheaslewood it appears that the graph is upright but "x title" and "y title" strings are fundamentally swapped at API level! +In this widget library demo, the graph widget's x axis is labeled "Y AXIS" and its y axis "X AXIS" and I'm going to punch it in the face +@landley Matt Mackall. Most Malicious. I'm allergic to M&Ms. CONSPIRACY +@MarkKriegsman would that make the 2MHz NES twice as painful or half? +RT @MarkKriegsman: @0xabad1dea I still maintain that the Apple II ran at one megahurt. +I really feel like the singular of megahertz should be megahert +@MarioVilas I *get* it! But it's needlessly confusing because you have to remember two different things for two different contexts +@OptiMizPrime though it's not their fault. It has the correct address on it, but it's visually almost indistinguishable from mine! +@OptiMizPrime I did actually. "Hey so so the post office gave me someone else's kid's pediatric bill from you." "Wow uh..." +@bobpoekert nah I don't really write python. Trying to get some random thing off the internet working. +"Compiling wxWidgets failed because of missing Carbon support in OSX 10.8" If only this could have been tested BEFORE a 20-minute compile! +I look away from macports for two seconds and it starts compiling xorg-X11. All I wanted was some widgets in my pythons! +@null_ptr the one about Cocoa... +RT @mcclure111: San Diego Catholic Diocese fires teacher because she was a victim of domestic violence. This is not an exaggeration. http:/… +@nullwhale I use macports. But the problem du jour is mostly in python extensions +I should put "expert in interpreting needlessly obtuse errors in the process of compiling Linux utilities on OSX" on my resume +@joshuajuran well, let's just say I'm more concerned about wxPython still working in two years than in working 20 years ago :) +"WARNING: can't find headers for this library I need but I'm going to compile anyway and fail after littering the hdd with code corpses!" +It's a travesty that there is actively-maintained code written against the Carbon API. The O'Reilly book on its replacement came out in 2002 +@gdbassett @ra6bit lol okay +@gdbassett @ra6bit yeah it does, that's what I'm saying. There's an audit trail, and he probably had power over it. +@gdbassett @ra6bit which probably involved actually checking the personal files of other users +@gdbassett @ra6bit just on that he was a sysadmin, he got away cleanly, and people are baffled how he got those papers in particular +@gdbassett @ra6bit no matter how hard you try, you can't fix the fact that sysadmins have root. +@gdbassett @ra6bit I think the key thing was he WAS the one checking the audit trail +@rantyben @chriseng "HYDRARGYRUM" I meant the word "HYDRARGYRUM" also written ☿ +@name_too_long mentioning me on twitter would be approx 7000% more likely to get my attention in time :) +@schrotthaufen see my next tweet!! +@MarkKriegsman of course, that roughly pegs one core and consumes a gig of ram, because real time graphics in a scripting language. +@MarkKriegsman pyglet + https://t.co/WcnBfCeizz + https://t.co/f8ZyqEPEvv == http://t.co/bJlcly5L0X +@gpakosz yes, because.... it's ancient. +@chriseng we didn't. But we STARTED a few thousand years ago. +Am I more infuriated by casually inconsiderate interface choices than fundamental human rights abuses? Let's count my tweets and find out... +Splain Train that hg is the ancient abbreviation for mercury please stand down :p +"Let's name the package mercurial and the utility hg," said the most malicious person ever +I got the command-line version of the SDR tools working on OSX... what should I do with these four beautiful cores?! +@MarkKriegsman good news comrade https://t.co/uUgXE1SWX1 +@evacide yeah, and that's fine, it's just the venue comes with that nice tint of "maybe shouldn't get your opsec tips here" :) +“Here’s Vice, the magazine that accidentally leaked the exact geocoordinates of a man on the run, with how to hide phone calls from the NSA” +@DarthNull it was changing the ad every other click for me, unless you mean it doesn’t for YOU because Adblock. +A slideshow on how The Onion pays the bills with ad impressions… http://t.co/psoQArrUFh +@SeanTheProducr @PRISM_NSA yes but only archiving the data that’s public by definition… +@RSWestmoreland I’m curious if it was an auto handwriting recognition bug or a last-mile human error +I just got a medical bill in the mail for someone else who lives on same street with similar, but not identical, name. Huh. +@thegmanehack \o/ +@akopa never, EVER leave me alone with a soldering iron. You saw what happened with freakin' sealing wax. +I somehow doubt that this cheap radio's serial number is actually 00000013 +@TheNoButton (our housemate is a good cook, but he's gone for the week and I haven't eaten a proper meal since.) +@TheNoButton My live-in cook isn't here this week I'm afraid, so ramen and instant soup it is. +You're not a real computer scientist until you have to start over boiling the ramen water because you were tinkering with something +@Ammoniak @MikeTalonNYC @snipeyhead I was thinking you were linking me something pink and I'd be mildly annoyed... but no... you're right. +@CyberSquirrel1 and my freshman year there was an outage every few days until finally equipment started getting upgraded. +@CyberSquirrel1 the infrastructure simply was incapable of handling the load as college students all got their own computers, no joke. +@demon117 um, well, of course. The point is how is presented. +@CyberSquirrel1 it wasn’t me, it was the girl who insisted on using her jumbo microwave ! +RT @thezeist: Deep Wizardry: Stack Unwinding http://t.co/AJrRwZaraT +@send9 yeah… it sees where it sleeps, which it infers is where you sleep! +@CyberSquirrel1 taking down the power in Lynchburg is so simple a college freshman could do it. Repeatedly. I’d know. +@fadenb well Eve is basically a game about suicide bombing other players... +.@sanguis3k I *know* they're logging it; it's just creepy to see them try too hard to be cute with it :( +@sanguis3k I don't think I've ever not been logged on to at least one Google service for a few years now +Google Now is creeping me out. It's showing a list of my recent searches on other computers and asking if I want to continue researching Eve +I will pet my good luck Pinkie Pie while waiting to hear from Defcon http://t.co/dFMMRTopxd +@ra6bit @awpiii yeah that's what I meant by it stays in place when I scroll, sorry. Always straight down the middle. +@ra6bit @awpiii oh, the spike in my output is not at 108, that's just where I was. It's literally everywhere, all the time. +@ra6bit there’s more around 145 yeah +@gpakosz in response to my submission a few weeks ago +@ra6bit with no antenna you can clearly see them... they stay in place as you scroll http://t.co/BVwasjFcSl +@ra6bit lines which are always present in the waterfall. I think some people call them biases? +The cheaper radios I got have not one but five imaginary peaks clearly visible! +@CyborgCode kinda a bit late there. CFP == Call For Papers == submitting a talk proposal +@CyborgCode by submitting to the CFP +Other people are getting their Defcon letters… anxiously awaiting mine +RT @0x17h: London police are confiscating sleeping bags and food from homeless people http://t.co/HeEdjB5oxE +@techpractical @jasonmoliver someone authorized to maintain computers can physically open the case and then… so on and so forth. +@blowdart my mother is IT at a southern university. It’s probably the most peculiarly redneck IT department in the world. +@blowdart yes actually she has domain administer credentials +@blowdart and active directory is controlled by who? :) +@jasonmoliver they already do that +The real Mission Impossible is keeping thumb drives off your network. http://t.co/OGjIRKP2mp +@Motoma that’s the spirit! +RT @zooko: “NSA chief drops hint about ISP Web, e-mail surveillance”—@declanm http://t.co/RUUzwdMyqQ HT @dangillmor +RT @_decius_: I want my views on Twitter to be tracked - thats why I express them here. Facebook is slightly different. Gmail is very diffe… +@oh_rodr he linked me his bio at the naval academy or something and it says so. +@Viss :< +@RenatoFontes his username is 20committee , trying not to @ him too much because getting blocked would be inconvenient :) +I guess too many people bothered the NSA guy about his remark of why should he care about foreigners, as he deleted it. +@solak wow… he said of course he’ll defend Americans but why would he care for the rights of foreigners +@MarkKriegsman gee, what prompted that thought… +@Motoma better than %APPDATA%\Roaming +@wwwtxt my tablet has 2048 rows of tiny blinky lights, what do I win +@MarkKriegsman nasal demons are totally in-spec! +@MarkKriegsman soooooo… how in-bounds is a custom compiler? :p +RT @Veracode: Webinar in 5 mins w @chriseng & @jlavepoze Mobilizing the Masses: Building BYOD Security Awareness in Your Workplace https://… +@MarkKriegsman you’re pretty suspicious… hey has that dollar been claimed yet +I managed to avoid the trap of buying the sugar-free jello, but I realized too late they had already gotten me in the cookie aisle. #bleh +“The “If You See Something, Say Something™” Campaign” If you think of something, trademark something +@landley a better question, indicative of mindset, would be “Would you be ashamed to even try out dressing like a woman?” +RT @gparker: Fast path through objc_msgSend() on arm. iOS 1: 20 instructions. iOS 6: 19 instructions. iOS 7: 11 instructions. +@rantyben @wimremes Morality is messy. But legality is what the power structure allows, hopefully but not necessarily what is good. +@SunTsu they got the check mark, Mr. Tsu +RT @DHSgov: “If You See Something, Say Something™” emphasizes the importance of reporting suspicious activity to the proper authorities #se… +RT @jamesseddon: The Sun at its best RT @JamesManning4: An apology in today’s Sun: http://t.co/H0g6eq9udK +@SurprisingEdge I’m surprised more people don’t ask… I was short a lanyard and my dad gave me a veteran’s administration one and it stuck +@earlzdotnet I think it should start working from the point you first logged in +@tapbot_paul Nah, definitely not. Latest stable on iPad. Snapped a pic, it resprung as it was thumbnailing for the tweet edit sheet +@i_intelligence @Packetknife silly gizmodo, the moon is already dead! +@JastrzebskiJ hahaha … … … +@JastrzebskiJ it was more being annoyed by people who act like it’s a travesty a 29yo with no degree DARE make so much money. +@JastrzebskiJ I’ve kind of been assuming it was sudo cp * +@m1sp http://t.co/N0q8rEM47V +Just experienced a spectacular respring while taking a picture. I blame @tapbot_paul though I doubt it was actually Tweetbot’a fault. +RT @Packetknife: Stacking tolerances.. it applies to software too. +@PresidentHoodie it involves seeds ? +@ELLIOTTCABLE if yours is purple, you should uh, maybe see a doctor… +@kivikakk but are they all in R— if I assume that’s Russian, it won’t be. +@ErrataRob my face clouds over as I read this tweet. +I’d encourage @LorettaSanchez and all other representatives to remember they represent *us* and we want to hear what the NSA told them :) +@NedGilmore now if I had that… +Representative Sanchez sounds like she’s begging someone to leak as best as she can without saying so http://t.co/qaU5jhIu1l +@ELLIOTTCABLE AM NOT +@MalwareJake it completely ignored the SD slot. This was USB, of which it has two +@MalwareJake “Do you want to format this device?” “Please make sure the device is the only one inserted” “Do you want to format this device” +@MalwareJake I expect to be asked, but it asked the same questions multiple times for no apparent reason :( +@WhatHoCenturion you should. +@H0lyPuma it’s so childproof! +RT @Packetknife: And if you think #Snowden harms US-China relations. HAHA. BWAHAHA.. because yes, China went *gasp* what is this Enn Ess Ay… +“I don’t see a USB eject option in the Wii-U… do I just pull it out…?” http://t.co/8hZiGiNG1U +“Once the file transfer has started, the process cannot be cancelled, because we don’t know about journaled filesystems” +Confirming to the Wii-U that yes I really want to format it literally took longer than formatting it +@sarahcuda @vogon yeah, I loved not feeling safe until I left… +@unimp0rtanttech I would *never* make fun of Sonic. The sad thing Sega has become, however… +@Kufat Before. I apparently suppressed the memory. It was traumatizing. +But hey, at least I found my SD card! It was in the Wii-U after the absolutely miserable process of migrating the old Wii's data. +Bonus: I shut down the WinCE laptop with the USB stick plugged in, and now other computers can't recognize it +@H0lyPuma apparently not because there's one in the slot and it's ignoring it ?? +@gangstahugs @H0lyPuma I would generally advise against getting kernel code off a torrent +@H0lyPuma sharing save files: the scourge of innocent game devs everywhere. +@Lavarsicious The Terrible Laptop from China That Came With Windows CE 6.0 (the one I lit on fire) +@H0lyPuma to back up a save file so I can delete it and see if that fixes a bug, if not put it back. +@Lavarsicious ... it's not THAT primitive, thank goodness. +ZOMG Wii-U wants me to reformat my USB drive to some special snowflake format ?!?! +Windows CE doesn’t have an option to safely eject the USB drive! I guess it’s stuck here forever :( +@puellavulnerata Blackhat however is explicitly commercial +@puellavulnerata the Defcon invitation, I feel, was done to deliberately lend a voice to an ideological opponent +@puellavulnerata oh no no no last year he talked at DEFCON. he’s moving up in the world ! +@puellavulnerata ie will he still have the nerve to show up, and will he make it through the talk without being boo’d off the stage +@puellavulnerata Keith Alexander and his appointment to address the security community at Blackhat +@puellavulnerata so what’s the betting pool on him and Vegas at anyway? +@tenfootfangs it worked almost fine until we unlocked Robotnik… maybe I should wipe the save files? +Oh boy, Sonic Racing Transformed has a patch! Maybe I can finally play it without it freezing! LOL NOPE where’s Mario Kart +@tenfootfangs >.> +@DrPizza my husband except… *British* +Someone should take me on dates to the orchestra to hear classical music (my husband is a philistine) +@tenfootfangs wow I am actually jelly +Nintendo in one Vine. I went upstairs to find the phone at five seconds remaining https://t.co/Ujni06VKaR +@fncombo Accessibility -> Increase Text Legibility. You’re welcome! +RT @NightValeRadio: Help control the pet population. Stop calling ants pets. They do not love you and it's inflating the numbers. +@coreplane @puellavulnerata heck, most Americans have only a vague idea of people in other parts of the country +@MarioVilas which I don’t think is a widely held view anymore, although “my marriage is a right, yours isn’t!” is. +@MarioVilas no, the other way around… if you say freedom is a right, then you can’t also say slavery can be moral. +@onekade @puellavulnerata at this point I’m pretty sure they meant as opposed to fiber taps; they request data at rest they didn’t snarf. +@puellavulnerata one of my private essays on ethics is a rant about the moral imperative of meeting those who are different... +@puellavulnerata (only men? Don't look at me...) +@puellavulnerata my grandmother (bless her) said "well you can't trust foreign men!" when a local murderer turned out to be Brazilian. +@puellavulnerata I feel like some older people I know have had so little contact with non-Americans they have no concept of them as people. +@akopa there's a time and a place for privilege, like privilege to use the part of the beach reserved for local taxpayers or w/e +Maybe my sympathies for The Foreigners(tm) is an internet generation thing: everyone I know is equally far away, and yet equally here. +@chriseng HA! Our klout scores are the same again! +@emptythevoid @Twirrim #closeenough +If you claim you deserve a certain right, but others (foreigners, gays, w/e) don't, then you actually claim you deserve a privilege. +If you claim you deserve a certain right, but others (foreigners, gays, w/e) don't, then you actually claim you deserve a privilege. +@JeffCurless @20committee hence all the talking I do. +@JeffCurless @20committee the world works the way that people let it. +@JeffCurless @20committee If I gave a damn how the "world works", I wouldn't be here, an openly bisexual atheist woman with a computer job. +@JeffCurless @20committee I don't care that someone's a "foreigner", I will afford them what I claim I deserve. Rights, respect, no dif. +@JeffCurless @20committee um well my point kind of was: why would geographic location determine whether I apply basic respect to someone? +@m1sp I will give you a present next time you log on chat... to apologize for the digimon thing. +@amanicdroid @chriseng twenty-two dollars for the velcro?!?! +@bigeasy janitors are disrespected gods of physical access, and "uppity" is a privileged word. +I'm picking on @chriseng because I'm fuming over something he said about tinfoil and haberdashery +@0xcharlie @chriseng I take offense to your implicit denial of my gender identity +@katzmandu but not enough to keep the darn kids and their animes and pokemons out ! +@tenfootfangs but you like The Animes +Not to say that ALL Boring Old People don't know how to computer... @0xcharlie and @chriseng for example ! +The fact of the matter is that comic-book-lovin' kids control the world's datacenters because not enough Boring Old People learned computing +And people like @20committee will find it hard to fill their hacker ranks if everyone who lacks a degree and likes comics is disqualified :) +@thegmanehack \o/ +I feel like some people are just mad a “kid” who dropped out and likes comic books made more money than they do. Computers: learn them. +RT @inversephase: @marshray @0xabad1dea oh no! what if they find out that nearly every government hired CS/math/etc student was into anime?… +RT @marshray: http://t.co/n8UCahnwXS "How can I be concerned about blanket electronic surveillance if the guy who leaked it was into anime … +RT @avestal: MS confirms Xbox One has console-level region locking; will not function outside 21 launch countries. http://t.co/6xkXLMthIp +@ChronicleSU @0xcharlie this is how you know you made it, Dr. Miller! +RT @EFF: As far as we know, our victory in the secret FISA court today marks the first time any party other than the US gov't has won in th… +RT @EFF: BREAKING: FISA court rejects Justice Dept's catch-22 secrecy argument, @EFF's case will proceed https://t.co/5Kk36J9hRj +@hypatiadotca didn’t you hear? Everyone with pink hair is actually the same girl. +RT @AlSweigart: Unlike online advertisers, gov. tracking can end with literally being imprisoned, tortured, and executed. THAT is why we ar… +This guy continues to make me very sad https://t.co/FgpC06LnFt +@20committee because being born wrapped in red, white, and blue doesn’t actually make you special? +RT @csoghoian: Alexander's unwillingness to reveal whether the NSA is collecting non-telephony metadata (such as email contacts) should be … +RT @gigideegee: in everything you do on the internet, please remember that at the end of the day you are dealing with real human beings +@0xcharlie I’m four percent of your followers ?! +@Fe3Mike now I'm upset I didn't think of that +@alethenorio oh definitely not. Windows, Linux, OSX and Google Drive +@alethenorio implementation dependent! +This was necessary http://t.co/SrHyRlVaGO +So @txs is leaving the company... we got him a present http://t.co/ZJ4nv6FhGj +And yes, the excess coworker variables have smashed the floor stack and are obstructing foot traffic... +Go to restaurant with coworkers. Fill table. Attempt to realloc the table twice as large. TableMalloc() returns null. Segfaaaauuuult +@alethenorio I meant the filesystem metadata +@aredridel @shu @thinkingfish ahahahaha +@thegrugq pff. My husband's forehead is more than subtly too large *right now*. +@PBTender I'm actually a Magical Girl http://t.co/2hQ6SBKoBP +My github comment signature is :sparkling_heart: it matches my avatar pretty well! 💖 +@Mordicant when you buy something in Google Music it kinda automatically gives free listens to your friends +@mtheoryx You just hurt Siri's feelings... +I often have nightmares of my phone dying. Dreamed of a sudden firestorm consuming my car, first thought, "my spare battery's in there!" +http://t.co/7VnhyQ5JYx my imagination or does that legal footer say 2011? Definitely on the bleeding edge of image sharing +@kehopper well, "issues created by you" actually means "bug reports submitted by you"... +@bobpoekert then their growth metrics don't include user retainment. +"Issues created by you" this interface text sounds so hostile out of context, doesn't it? +@bobpoekert and it took me time and made me angry. http://t.co/8I3PWnisv7 +Thank you @_Delts for reminding me that Twitter Mobile Web actually makes you do EXTRA taps to log in rather than sign up ?!?! +@bobpoekert except when I'm staring at tumblr going "............... there's no signin button" (it's a tiny text in the corner) +@skattyadz I can't tell you how many times I go to sign in on github and I instinctively click the green button next to the white one :( +#UIRage the signup button should be obvious. It shouldn't dramatically MORE obvious than the signin button. Ahem @tumblr / less so @github +@SamusAranX actually I suspect it also starts that ticker after first login +Twitter fixed all the bugs I complained about yesterday. Now I'll complain my Connect tab goes back one hour before jumping to 13 hours ago +@SamusAranX it shows that for some of them for me where I know that's wrong too... +RT @netmork: @0xabad1dea Account ineligible. At this time, we are only accepting advertisers tweeting in English (…). +@jonathanw probably because the adblocker unilaterally blocks domains with "ads" in the name, or something +(It appears that the timeline at the top of the dashboard doesn't start until the first time you log in, so it will be blank first time) +Did you know?: https://t.co/LD87egqkJo will show you the analytics dashboard for your account even if you haven't bought any ads. +@landley archaeology suggests this error is about as old as I am. Therefore it's his fault :) +@pborenstein yeah; I suspect it was an actual hand-maintained text file listing servers for their script to mirror ! +My father once reminisced to me that there as a time in the 90s when a three-letter agency could simply download the internet… +RT @hashbreaker: You think your RSA encryption is safe because the attacker doesn't have a quantum computer yet? Serious attackers _save_ y… +RT @trap0xf: http://t.co/SrIqGLqqF1 greatest subtitle +@Urraca @arstechnica by which I mean, when I open and it loads new posts, it jumps me to the top of the timeline +@Urraca @arstechnica it’s okay and works a lot better than it used to. I hate that it doesn’t seem to support remembering where I left off… +@ggreenwild @0x17h Dr. Russler, you should be ashamed of this behavior! +@alsmola @presidentbeef awesome… had to open an incognito window but I got in +@sintixerr I’m asking if you realize the article is from a parody news site, as your comment on it is ambiguous :p +@sintixerr you realize that’s a parody right :) +@jennifurret is that better or worse than waiting on the ethics committee ? +@NamTaf well yes, but The average American household has had more bandwidth than that since about 1982 +RT @arstechnica: Microsoft: No internet connection? You can still buy an Xbox 360! http://t.co/YIZWaWQaLS by @KyleOrl +@SimonZerafa @callmewuest that’s the joke… +@_losh I ain’t old enough! +RT @callmewuest: @0xabad1dea Careful--Use of non-latin characters carries with it a 51% certainty that you aren't a US person +After the military gets the hang of mixed upper and lower case, we will BLOW THEIR MINDS with ÜTF—8 +BREAKING STOP MILITARY DISCOVERS ASCII ENCODING STOP http://t.co/yu74CxEMZo +“As a loyal patriot, I support the NSA! *wink*” “Good thing winks are harmless emotional metadata.” +@Pebble @Iamkenpage my answer depends on whether that’s a parking lot or a road… +@lindamartin52 @ggreenwild because this is a fake account :( +@ErrataRob @puellavulnerata actually I assume everything you say is literal and you are the worst human being ever +RT @wimremes: OMG, someone is DOSsing the South China Morning Post website. Must be the US censors!! CYBERWAAARRRRR +Not every day you get to score someone’s home-rolled tiff parser. Pretty sure it’s better than the official one though… +“Public outrage has led to lawsuits but no results” Not even *I* am so idealistic as to think one can sue the govt and win in under a week. +@alethenorio seems probable that moving it between so many filesystems including the internet would lose the time stamp at some point +@ELLIOTTCABLE in all seriousness, sitting in a towel at home reading technical documentation +@ELLIOTTCABLE hello +RT @anildash: My marriage, like millions of others, is possible because interracial marriage was decriminalized 46 years ago today. Happy L… +Is it my imagination or have Barbie’s proportions gotten even worse? Look at that neck!! http://t.co/tReKaRaXXp +South China Post teaser for upcoming Snowden interview… http://t.co/jrwuQflZBe +@m1sp o.o +@pchengi :D +@rantyben @thegrugq @_wirepair anyway it’s sleep o’ clock +@xa329 all terrible, wicked things! +@rantyben @thegrugq @_wirepair what is wrong with you +@thegrugq @_wirepair only when you apply a Hatsune Miku theme to the widgets +@thegrugq @_wirepair anyway I did start this to support larger projects, so… I should write something cute huh +@thegrugq @_wirepair *copy* *paste paste paste* +@thegrugq @_wirepair no, but if you can find a security bug then you’re beating Dowd :D +@secolive yeah, I just expected the latency of downloading from across the continent to be a bigger factor +@_wirepair @thegrugq (that was a fun but silly attempt at embedding canaries in buffers) +@thegrugq @_wirepair I said right in the tweet that wasn’t my code +@_wirepair @thegrugq my code may not be USEFUL but it is PERFECT. https://t.co/0j3hNdFjv4 +@kivikakk do you follow that person because their name is Arlen +@thegrugq *my* C is perfect… I am the avatar of native code +@armcannon to be fair, it’s not exactly a skill needed outside of enumerating Final Fantasies +@thegrugq @chriseng @_wirepair me me I’m coming +The emphasis being, of course, on writing C that doesn’t blow up and segfault and overflow and ignore return values +I should write a book on C for people who know Python/Ruby/etc... call it Grimoire of the Old Magic or something. +The best part of Pokemon Crystal Vietnamese is where they apparently just used a thesaurus to find words like "diathesis" +@wickdlee69_man I'm just sad at the whole prism state of affairs. At least Google stood up to them today. +RT @norcross: well done Adult Swim http://t.co/OzU6SPZXqN +@xa329 yeah, and that’s… not a timeline to submit a request to Facebook for private data, get it back, and evaluate it… +@xa329 yeah I still don’t think that all goes through in fifteen minutes in the back room :p +@thegrugq @chriseng @_wirepair surely you wouldn’t be the first patron to ever demand bacon at a swanky hotel +@xa329 someone who speaks German confirmed that the original says they had the printout and surprised her with it +@xa329 I don’t think Immigration would keep someone sitting in their office for several days while they ran a fisa… +@thegrugq @_wirepair I’d totally do that. I’d understand it wasn’t good bacon, but I’d still do that. +@wickdlee69_man A lot of things ! Our government spies freely on the vast majority of human beings who are not citizens here with no concern +@thegrugq getting collectible rubber bracelets again? +RT @MarkKriegsman: All it takes is two flipped bits to ruin your whole gay. +Deleted original tweet because other German sites aren’t reporting it. Perhaps the girl exaggerated. For your ref: http://t.co/NHfT9ofcWl +@_wirepair got confirmation from a German it says what it sounds like it says, but that’s the only site reporting it, so… +@wickdlee69_man sigh +@mike_913 well, if they actually were going to show it to her, I assume they wouldn’t be like “here use our computer” +And I use “allegedly” strongly because I’m not convinced customs officials would have printed evidence for such a trivial case ?? +@ScaleItRon based on the rest of the code, I can assure you that wouldn’t work and, in fact, can overflow itself with intended inputs !! +RT @puellavulnerata: .@Salon Oh noez! There might be *homosexuals* in an all-male organization! Shocking! +RT @Salon: Pope confirms "gay lobby" at work at Vatican http://t.co/cRmfdo7zrm +@20committee yeah, who needs adult women with sexual choice?! They should live to not make their father feel awkward!!! +@akopa IMO Human, as I insist on addressing him, should have been a girl, like in the Animal Crossing movie. +@akopa I don’t. I’m pleased there’s another girl character, though not pleased at lack of established personality… +RT @JeffMcMahon: If toddlers have killed more people with guns this year than terrorists, obviously we need to declare war on toddlers. +@ELLIOTTCABLE “The transpiler accepts an existing JavaScript file, and transpiles it into SJS” My intuition would have gone the other way…? +@zygen bonus: it supports IP range globbing so there are conceptually valid inputs that exceed 19 characters. +If politicians in Germany call the NSA Stasi-like, are Americans now allowed to say so without being offensive? http://t.co/xXcxsfUPVc +RT @NTarakanov: http://t.co/OXYyW7Xw5D a length is multiplied by 4 when allocating the buffer but is multiplied by 8 when copying data into… +Why 20 bytes in particular? Why omit the two characters that would make that scanf not overflow? Why, coder I downloaded this from in 2007 +Found a C program I didn't write in my backups. Let's have a looksie... char ip[20]; fscanf(fp," %s",ip); Wow I had awful taste as a child +@matthew_d_green well we can't break compatibility with useless errors across multiple complete OS rewrites now can we?! +@matthew_d_green "File system errors" +I would be raging at OSX that my 65GB super slow transfer failed except it's because I accidentally yanked the power cable somehow. +@zygen also I think DM's are working for me now +@zygen thumbs up! +Excellent error explaining that the copy from X to Y failed because server Z disconnected. Bravo, OSX! http://t.co/dhz1qSXyvs +@zygen refreshing and trying, hang on... +@amanicdroid even better, I found it on a page that said "Please point your browser to <working hyperlink> to see..." +"Please point your browser to..." remember when people said that? +@zygen my bad weather hasn't cleared up yet :p +@0x17h y u so protected +I'm drowning my surveillance sorrows in a rewatch of the most important Let's Play of all time http://t.co/l8aZrOLC3J +How evil is it to tickle a sleeping husband and whisper "SPIDERS" +@themarkcaudill first, this rearranges my windows, second, it's paginated +Wait. Does youtube really provide a complete list of every video you've ever watched but *no way to search that list*? +Apparently I have the wavs and midis to SimCity 2000 in my oldest backup folder for no particular reason, then. +What game from the 90s had a helicopter pilot ("mayday!" "I'm hit!") and a woman who said "reticulating splines"? I have these wavs... +@uppfinnarn who's checked in from every major city on earth within a span of hours +I have a feeling that this NES rom dump with a file creation date is 1983 is stretching the definition a bit +@Kufat though I don't have any HARD DRIVES I've been using since 1997. +@Kufat It's from a game I had installed in the 90s, though I can't remember what game. +@invalidname Apple naively didn't anticipate it being used as a tracker. +@uppfinnarn yeah it returns a constant now in iOS7 +@Kufat 503.wav Created August 10, 1994 8:00 PM +Can't wait for all the iOS apps which snarf your MAC to have really interesting errors on iOS7 +@thegrugq actually it was the Governor's School of Math and Science, which was hosted by my university +When I worked at a summer boarding school I sneaked a scan of Harry Potter 7 to the kids. They had no other means, poor angels. +@theLoneFuturist @_yossi_ depends. Are we talking 64MB per movie or for all eight? :p +@_yossi_ Was working in a school at the time. Copied it to USB and snuck it to the kids. +@_yossi_ yeah I had that too. I felt no guilt because I had already paid for the preorder. +@zeroday no, I don't remember tape drives. I have literally never seen one in my life. +.@_yossi_ I mean PDFs of the Harry Potter books (If I could compress the movies to 64MB I'd be rrrrrrrrich) +Found a 64MB zip I made when I was a teenager of my Most Important Files... mostly bootleg Harry Potter... and some anime wallpapers. +@Aranjedeath it's basically a trail of every picture that ever made me smile, even if I can't quite remember the reason. +I remember downloading it over dialup onto a Gateway laptop running Windows 2000 Professional. +I have a GIF that, through 10+ computers, and being downloaded from Google Drive just now, still has the original metadata: January 31, 2003 +I read that automatic updates on iOS will "allow developers to iterate faster." I was under the impression the bottleneck there was Apple. +.@reed @wookiee "iOS 7 fixes" "definitely not got caught out using MAC address fixes" +@eevee I still say his name is Human. +@vogon do you favorite everyone this much or am I your… 😎 favorite +@vogon my phone just buzzed. That was you favoriting a tweet. I don’t even need to look +@vogon How un℈lous +@vogon how did you even find the unicode for that squiggle +RT @wookiee: Get ready for an unusually high number of app updates with nothing but "bugfixes" in the description. +RT @mike_br: accurate portrayal of e3 http://t.co/ffDiC0J0yA +I got a pet! I hope I'm ready for this responsibility http://t.co/TMLQpBG4wB +@thegrugq you’re racist against loyalists then +@pa28 yeah but the cloud is in Mountain View! +Consensus is that the streams to and from the router are colliding, but I’m not entirely ruling out AFP just being terrible +@Kufat the only Ethernet cable I have is about a foot long +@mtheoryx literally the only wire attached to that computer is the power, so I guess my house has Ethernet over Power? +How can copying 65GB between two computers on the same wifi be slower than one of them copying 65GB from the cloud?! +@ErrataRob (this is what we need those darn @chriseng constitutional scholars for) +@ErrataRob Apparently he is nominated by President, which is a yes, but it’s also a military position and I’m unclear if that’s a civil role +@JZdziarski @KimZetter I am personally convinced that Google GENUINELY does not want to be handing over as much data as it’s being told to. +The FISA queries Google isn’t allowed to disclose are manually processed and handed over the old-fashioned way. http://t.co/8MvwV6H7ff +@mtheoryx I’m pretty sure we all agreed it really is Sea Lion +@mtheoryx I’m pretty sure we all agreed it really is Sea Lion +@parityzero hmm well, the only Windows machine I could do that on isn’t particularly powerful. +@zygen I like the implication that Twitter is a weather system ;) +@mtheoryx true, but it’s not like it updates once a major OS revision… right? >.> +Is Director of National Intelligence an impeachable position? +@bNull @quine @youbetyourballs I admit I’m a touch jealous +@zygen these issues are Web, Chrome, OSX. API client seems to be working as intended for me +@tangenteroja you already did! +@wimremes well that’s not the prelude to any massive act of government violence ever +RT @wimremes: holy fuck, Greece has pulled the plug on their national broadcaster. what in the hizzy? +RT @a_greenberg: Clapper must be sweating as he reads this: http://t.co/5dA4q2m1hc +8975 (Safari) vs 15786 (Chrome): is Octane this rigged or is Safari this far behind? Minding Safari is 64-bit and Chrome not so much! +@zygen now who do I whine at that I can't get this photo to post AND the blue dot of new DMs won't go away :p +@zygen the best thing you could tell me is it's related to my name +@elyseboyajian @0x17h I can’t tell if she’s serious anymore actually +RT @mattblaze: No comment MT @NSACareers: Test your Crypt skills with #NSA’s #CryptoChallenge game app. Download it now on iTunes or the Go… +@0x17h @elyseboyajian meanwhile some of us actually care about the real Snowden and the *actual files disclosed* +@0x17h @EJosephSnowden @elyseboyajian I see she “punished” you too with her “retweeting a fake account” strategy +RT @0x17h: sexual jokes about 12 year olds. stay classy, fake @EJosephSnowden @elyseboyajian +@sophwilkinson @nnimrodd apparently the matter weighed so heavily on his conscience that how could he not? +@kherge the first one was Dutch, actually. Curiously, both were otherwise the same demographic: blonde, mature women +@Jonimus I cheat, and rake in karma on multiple sites simultaneously +@maxtch well I’ve seen the official screenshots. But I am waiting for the iPad beta +Go get them @ACLU +RT @arstechnica: ACLU sues four top Obama administration officials over Verizon metadata sharing http://t.co/lyUASJpKSs by @cfarivar +I'm pretty sure the FBI could save some money by replacing their spokesperson with a recording that says "per policy we do not comment" +@ebcube to talk and talk and say nothing but hot air +Is it my imagination or has the word “bloviate” been seeing a lot of use the past few days +I don’t wish to force anyone to listen to me ramble about ethics and philosophy! However the opt-in to opt-out ratio has been great so far. +@canweriotnow in this case, the lovely individual doesn’t even say I’m wrong. She just doesn’t want to hear me talk I guess? And that’s fine +Why do people complain I engaged them then continue to @ me after I show them where the block button is? +@elyseboyajian @EJosephSnowden I’m confused why you think RT’ing a fake account from yours is some sort of blow to me +@unclemeow @EJosephSnowden but a fake “truth teller” is a rather dangerous thing to hearken to and take seriously. +@elyseboyajian @EJosephSnowden hooray I’m a whacko! The WHOLE POINT of praising the real Snowden was telling the truth! +@unclemeow @EJosephSnowden I’m not *questioning* it. Check with @ggreenwald his media contact. +@elyseboyajian @EJosephSnowden the onus is on you to block me, ma’am. That’s why the button is provided. +@elyseboyajian @EJosephSnowden because people are falling for it and lies can be dangerous ? +I asked two people if they realized they were praising a fake Snowden account… one cussed me out and the other asked why that mattered +@0xcharlie @chriseng well in that case what are you complaining about? :) +@elyseboyajian @EJosephSnowden so you’re deliberately feeding someone’s poor sense of humor by sucking up to a fake account? +RT @marshray: RT @dangoodin001 Guardian reporter delayed e-mailing NSA source because crypto is a pain http://t.co/bLw7UyEkIV < We need to … +Yeah so apparently that Turkey thing is still going on +RT @CNN: Chaos overtakes Istanbul protests - tear gas, water cannons, fireworks: http://t.co/07acaiGTvJ Details live on @CNN TV. +@sakjur because my IT department won’t give me a Mac at all (I actually BYOD Air), never mind 27”! +My mom needs a Mac for testing things before she deploys them to the Macs her IT dept manages... so of course they got her a 27" iMac! :'( +@alsmola @presidentbeef hey it worked ! (getting twitter’s attention by complaining about twitter on twitter) +Hey twitter, I think I found another broken in 2-factor as https://t.co/D6oyUpc7Zb goes 404 after I auth ?? +@bdconf @ELLIOTTCABLE so not fair +@ELLIOTTCABLE @bdconf … wrong image +@bdconf @ELLIOTTCABLE it’s not a lack of data I have but a lack of a website to say so! +@bdconf @ELLIOTTCABLE I get a 404 when I log in. Possibly more two-factor breakage. +@hyperpape @silentbicycle though demanding that they lie is not out of the question +@osxreverser lol are you confessing to a few million felonies? +@osxreverser they sharply rate limit hits on large files. I hit it in literally seconds linking that 100MB gif +@synfinatic they already publish the transparency report. Calling out the govt increases overall trust I think… +@ErrataRob good thing I’m using neither a browser nor OSX ! +@ErrataRob that tweet is displaying right-aligned like Arabic unicode +@ErrataRob how did you right to left the twitters +@jerrigirl @pusscat you say the first two as if you find them as contradictory as the second two? +@matthew_d_green grab the phone book for your favorite country and start transcribing ! +I’m anticipating the secret that Google has been forced to sit on is FISA orders against something absurdly broad like an entire country +@DrPizza I saw on Authoritative Twitter that DRM will be a publisher matter +@chriseng and it wasn’t just you, a lot of people have said more strongly worded things against laypeople +@vierito5 and shouldn’t the ones making the call whether they care be the people actually affected, not some govt pencil pusher ? +@vierito5 in the most extreme case, that fisa orders have covered literally EVERY foreign account, that’s not of interest to users? +@chriseng and my point of view is that it’s so basic that any literate person is qualified to comment with gravity. +@vierito5 it’s not the number of requests, it’s the number of unique accounts covered by requests. Hint: it’s secretly A LOT +Lighthearted intermission: http://t.co/y3RN72gsbk +This is —HUGE—. Google calls out govt on forcing it to lie by omission on transparency reports. http://t.co/L2VgX5gu2k +@mattblaze twitter-stalking him has proven oddly insightful into the mind of someone born and raised in the NSA… +@mattblaze guy who said that is both right and a bit of a tool on twitter who can’t get over the fact he didn’t graduate high school +@amanicdroid @ggreenwild @EJosephSnowden that was explicitly who prompted me to make the remark, actually. +Okay, technically they’re making demands of the Attorney General. Like Vice Presidents, I’m not sure what Attorney Generals do on a dull day +@ioerror ding ding ding!!! http://t.co/L2VgX5gu2k +IMPORTANT: Google makes demands of the NSA to be allowed to tell the truth http://t.co/L2VgX5gu2k +How modern metadata analysis could have been used to stop the American Revolution from getting off the ground http://t.co/GKKV1VLsD3 +@0x6D6172696F where can I get my unicode domain? +@ggreenwild @EJosephSnowden oh COME ON. #fake +@jennifurret ffs. Can’t they at least keep the misogyny out of my favorite childhood memory. Crystal was 1st game I played as a girl avatar! +@pokemon_ebooks except, gods forbid, INDOORS. +@small_data @thegrugq private school, sorry :p +I’m not saying there’s no debate on the meaning of those words, I’m saying the bar to participate in that debate is not “scholar”. +The Bill of Rights is under 500 words. You don’t need to be a Constitutional scholar to have a meaningful opinion on interpretation. +RT @BriannaCahn: Oh wow.... http://t.co/f439Bh7EUV +@timzania argument is fine! I hate being told I can’t argue because I didn’t get a degree in Constitutional Ritual Theology or something +@adpaolucci @0x17h @lumeet @scumbagjames lol that probably does matter a lot actually +@chriseng @djrbliss whence the presumption one needs a special degree to understand a few hundred words of plain English? +Okay, you know what bugs me? “You’re not a Constitutional scholar therefore you can’t criticize.” It’s not THAT hard to read and comprehend. +@scumbagjames @0x17h @lumeet either that you know a lot of white males, or that the patriarchy is working as it always has re self-hate :) +@scumbagjames @0x17h @lumeet and if Occupy victim stats lean white (I think they do), that’s because the protest leans white, because etc. +@scumbagjames @0x17h @lumeet statistics always have shown that you’re LESS safe from cops if you’re not white +@scumbagjames @0x17h @lumeet or that certain faces of occupy say things like this https://t.co/qCDHAbG8BP +@scumbagjames @0x17h @lumeet or that white males feel safer than other demographics in turning out to protests +@scumbagjames @0x17h @lumeet that more white males hit the bottom than ever and they still had the fresh energy to be surprised ;( +@thegrugq he was astounded that little miss goodie two shoes would take issue with him +@thegrugq I walked out of a chemistry class in high school when the teacher went on a rant about worthless welfare recipients +@spacerog I actually never had any, I guess it was out of vogue by the time I was old enough to eat solid food ;) +@scumbagjames @0x17h @lumeet it’s not “offensive” it’s “indicative” :) I support the principles of Occupy in general +I think my biggest social responsibility is to remember I grew up on welfare, and to remember the reasons each family was there. +@scumbagjames @0x17h @lumeet though, for the theoretical average white straight male, economic position is the key distinguishing factor. +@scumbagjames @0x17h @lumeet I’m white, not male, not straight, formerly poor but no longer. All of these affect me, not just class. +@scumbagjames @0x17h @lumeet so it’s not possible for problems to exist on more than one dimension? :p +@scumbagjames @0x17h … I was just struck that you seemed to think privilege was a conscious effort. It isn’t, but fixing it is. +@scumbagjames @0x17h oops, I don’t remember saying that… +@sergeybratus I’m just wondering at a stat that said there were four thousand new radicals in Germany last year, totaling over 40,000 +@decktonic @TristEndo gods I *want* them to play it safe and stop messing it up +Where do numbers of “radical Islamists” in predominantly non-Muslim countries come from? Is there a form to declare radical intent? +@thegrugq or too much faux metal shading +RT @thegrugq: Jesus fuck, can the US military please hire some fucking real designers? “You can never have too many eagles or flags!” +RT @thegrugq: “@Walshman23: @thegrugq http://t.co/J7wABPpXGl”< awesome! next question, do they take BTC? +@puellavulnerata I associate you with hating air shows! Colored exhaust for bonus points +“Salary discrepancies? How can we trust Snowden on anything!” Well the govt agreeing the docs are real is a good start, I think. +RT @20committee: "In God We Trust - All Others We Monitor" - NSA in-joke. Used to be available on T-shirts (yes, I have one). Probably out … +RT @AlexOlesker: The Russian Duma passed two laws today, one making it illegal to "offend religious feelings" and the other outlawing "gay … +@joshuafoust @20committee I’m amused we’re worried about his salary and not the Verizon Order the govt agrees is completely real +@marshray @yosp it seems they paid more attention to Microsoft’s negative feedback than Microsoft did +RT @ashk4n: New privacy feature in iOS 7: Apps can no longer track using MAC address (ht @anuaimi @jonathanmayer) http://t.co/90FkTiVmcv +RT @yosp: And yes, PS4 is region free :D +@thegrugq @lcamtuf and use the voiceless water sample as the baseline for the noise removal. +@thegrugq @lcamtuf test what results you can get in Audacity with its built in noise remover. Let water run, then talk over the water +@miketheitguy @ioerror he seems to have a critical shortage of imaginative power +With apologies to the environment: iMac, y u go to sleep while syncing with cloud overnight?l bad iMac! Desktops do not sleep. +@miketheitguy @ioerror I personally consider the legality of something a poor metric for whether or not to be upset :) +Sensenbrenner seems genuinely surprised that his Act was abused in exactly the ways the privacy community said it would be! /cc @ioerror +I wish Sensenbrenner had asked my opinion on the Patriot Act and whether it could be abused — the fact that I was thirteen notwithstanding +RT @ioerror: Sensenbrenner: Congress was not briefed, and did not authorize broad metadata collection: http://t.co/VYP3Ojalkc +@puellavulnerata this tweet reminded me of you ;) https://t.co/opyJ24jle6 +I don’t care what y’all say, the main character of Animal Crossing is named Human. +@WhiteMageSlave … Human? They added HUMAN? (That is definitely that character’s name) +My inner asthmatic is looking forward to the doubtlessly healthy future of the person smoking outside my window and depriving me of breath +@WhiteMageSlave I saw something on twitter about megaman? +RT @msuiche: If you have also been offended by NSA Slides, here is for you: http://t.co/UdKQh0Uvsm +RT @m0nk_dot: 1 ノ( ゜-゜ノ) (╯°□°)╯︵ 0 Flipping bits +@DrPizza calling it turbo makes me twitchy +@CipherLaw @thegrugq well, if it meets MY definition of secure, then sure! Sadly, I’m the demanding type +@ra6bit the officials have the same question, but I’m pretty sure it has something to do with a hash-mark :) +Does iOS 7 fix the bug where it stubbornly refuses to admit “its” is a word distinct from “it’s”? +@TheEijk there’s no shortage of those! But I’m only legally Dutch :p And in my country that doesn’t count! AMERICA! +@TheEijk namely that I have a Dutch birth certificate :) +@homakov but remember that time you asked which spelling of your name to stick with? +@TheEijk ik heb geheimen! +@homakov what! I told them not to trust you, you steal rubies… +@kylemaxwell @mikko yes we all do, but that doesn’t address the American mindset! +@annebruijne @runasand @EJosephSnowden do you always flip out at people who check in to make sure you know you’re being lied to? +PRISM in the Netherlands: “direct access to the data on a silver platter” http://t.co/4UQ9jDV20U (how reliable is this news site, .nl’ers?) +RT @mikko: What if Google and Facebook were headquartered in, say, France? How would americans feel about French intelligence tapping into … +@scumbagjames @0x17h nobody opts in to being more often given the benefit of the doubt, or opposite, based on race gender etc! +RT @checker: Every once in a while I wonder why we get the same boring games served up over and over again, but I'm soon reminded: http://t… +@Asher_Wolf @0x17h this drives me nuts. I called out a former NSA’er on this and his reply was “he’s too immature to do his job” +RT @Asher_Wolf: Infantilisation and disregard of a generation. +RT @Asher_Wolf: When newspaper describe hackers and whistleblowers as kids, the vast percentage of ppl they are mentioning are over 25. +@thegrugq the fake Snowden account is pimping your code! Fess up :p +@elyseboyajian @EJosephSnowden fake account! Someone is trying to enjoy his glory by proxy +@EJosephSnowden @annebruijne fake account +RT @ggreenwald: Fake account ----> @EJosephSnowden +@saumroze No, not by any stretch of the imagination, I am, however, acclimated to using an actual mouse. +@angealbertini @corkami I missed this earlier — you do the silliest things :p +@troubledskies by the hour +@troubledskies the bill, however, is about the same… +“A process can even send a signal to itself” — processes have weird fetishes! +@0x17h with a notch in its ear! +@Sektor9 maybe, but that’s not the public +@sneakin no, it was considerably less than a decade ago :) +I am such a spoiled child, upset that my 65GB cloud sync hasn’t finished yet. Wasn’t too long ago I was on dialup… +@Packetknife hey now, some of my best friends are Australian! It’s not their fault. +@uberscientist just ask Nearly Headless Nick, one can be mildly beheaded. So too… +I think I mildly electrocuted my foot with one of these deteriorated Apple wires. +@killerswan that would be a heck of a loud bunny! It was in the marsh and I in my room. +@eevee #NotDestinedForProgrammingGreatness +@mdowd your haircut is very win32. But what’s a Metro haircut? +@mdowd nice quote btw http://t.co/PLH5SDN2NA +@mdowd @savagejen well you can’t mean OSX, and you can’t mean Cygwin… +RT @Joi: Was taking pics with iPhone while waiting for ride at the curb at Logan Airport and cab driver threatened to call Homeland Securit… +@mikkosniemela *cough* @BlogsofWar *cough* +Twitters and blogs are public, but flooding an innocent bystander with negative attention for your own amusement is malicious behavior. +@20committee @EddyElfenbein good to know! So you *are*, in fact, trying to ironically portray negative stereotypes of the Government Man? +So certain accounts are taking delight in a dramatic reading of Snowden’s girlfriend’s social media, as if this has something to do with her +@20committee @EddyElfenbein one of us needs our sarcasm detector adjusted. It might be you. +@BlogsofWar you voyeuristic creep. +@lsjourneys I’m so sorry. +@_am3thyst I just want to know if they’re random or they cycle through some small list +@20committee @EddyElfenbein You make me feel more at ease with every tweet. +Has anyone ever done a study of fortune cookie lucky numbers to see if there’s a pattern? +@20committee @EddyElfenbein see, this is why people think the NSA is creepy! What does she have to do with it? +@thegrugq @chriseng @rantyben I’m telling @SteveD3 +@thegrugq @chriseng @rantyben pff, who would give me a clearance? +Per @gdead , YouTube recordings of foxes sound close to whatever I heard +@RSWestmoreland I don’t think it’s in any distress, I think it just has an incredibly creepy voice. +@WarOnPrivacy suburban swamp. +@puellavulnerata @savagejen Eve is like this too. NPCs hire players to personally deliver documents because transmission is unsafe. +There’s an animal outside that sounds like a shrieking toddler and I don’t know what it is. No, not a shrieking toddler. +RT @KayinNasaki: best random Metal Gear boss idea from someone: Boss that yells "X-Box Off!" during the fight. "Snake, to win you have to l… +@vogon yeah I don’t know how you can mess up “like the 360 but more so” would’ve bought it in a heartbeat +@mike_acton something something Sony something something all is forgiven something something “Microsoft: Knights of the TOLD Republic” +@vogon I also get the feeling there’s trouble at home :p +RT @nico_prime: Rasterization and raytracing are two points on a fluid rendering spectrum. Algorithms between them exist. I call those "re… +I get the impression from Twitter that Sony’s presentation went a little better than Microsoft’s or something +RT @matthew_d_green: What the hell is with these DoD diagrams? Who makes them? They don't make any sense. http://t.co/R1b6wWNiwE +@EddyElfenbein @20committee do either of you think obsessing over this man’s girlfriend is of any non-voyeuristic use whatsoever? +@kherge I know. It’s just that the effort is so pointless. +@kherge I know. It’s just that the effort is so pointless. +@jamie_gaskins @plussone yeah, it’s just, what’s the point in treating public leaks as if they’re properly classified? Horse, barn, etc. +RT @JackLScanlan: Has science gone too far? Has it missed its stop? Will it have to take a taxi home from the end of the line? +@ShadowTodd it’s definitely aimed at younger children. It has an A+ ranking among eleven-year-olds everywhere. +@rantyben @chriseng but then again that never stopped the government did it +@rantyben @chriseng it instantly becomes a moot point to waste paperwork on +@chriseng @rantyben I’m just saying it’s nonsensical to classify looking at already-public material as a classified oopsie. +I love the government’s logic in “oh, classified materials leaked! Cover our employees’ ears while free citizens discuss them.” +RT @plussone: US soldiers ordered not to view or download NSA leak info on Guardian website. Memo: http://t.co/3Roe1YwkGv +@natashenka digimon? +@thegrugq all my computers are kawaii, they all gaze at me with big sparkly eyes +@1BlackICE1 as if I'm so talented! Got it off a random wallpaper site... here is a copy http://t.co/nRNeuLSdWh +@ereslibre lol sorry I'm half asleep +@ereslibre ... .... ....................... what? +There we go, nice and cozy. http://t.co/hRHgq4GLpR +RT @JessicaValenti: FINALLY: Obama administration will no longer block over-the-counter status of Plan B to women & girls of all ages http:… +@chriseng who are they overselling to? >.> +@JamesTCave pretty accurate… +@kyhwana @SIGKILL yeah so neither do I, since I do not live on a pacific island ;) +Google Drive: “You know what she REALLY wants to sync first? A few gigabytes of 1980s magazine scans” +@m1sp I can’t find any Flareon wallpapers of at least 1920 wide that I like :( +@m1sp_ebooks @m1sp aye. +# 344240787057414144 +This computer’s hostname is flareon *pat pat* +@DrPizza Dwarf Fortress in particular benefits from putting all the weight behind single-threaded performance +@DrPizza I actually don’t own a single processor with as much clock speed — the one I got today is 2.7ghz vs. 2.8 +It’s 2013 and I still don’t own a computer that gets more Dwarf Fortress operations per second than the Pentium 4 my mom bought me in 2004 +@demon117 eight should be enough for me into the foreseeable future :) +@demon117 21” no frills +And yes I’ve been using a generic USB mouse with actual right click button like the gods intended since I got my first iMac +@0x17h OSX can right click, if you plug in a godsdam generic USB mouse +I’m being told there’s a *software setting* I need to go change to get *right click* on a *mouse* +@tpw_rules it’s mouse-shaped and you can scroll by stroking its back but I couldn’t figure out how to right click +@dildog yeah so apparently in general they’ll just hang up on you +This stupid iMac mouse can’t right click. I have no use for it and I can’t give it to my mother-in-law because she knows how to right click! +@Kim_Bruning @chriseng (psst don’t make me look bad in front of my boss) +@Kim_Bruning @chriseng I don’t think he underestimates it I think we just have an ideological disagreement +“Hey do you want to set time zone by location?” NO OSX I DO NOT WANT TO TURN ON LOCATION +“Do you want to set up location services?” “No” “You sure? You need it for Find My Mac” “I’m sure” “Okay. Hey wanna set up Find My Mac?” +@chriseng look, that article you posted acted like there’s simply no way to compute over a dataset of all call metadata +@chriseng and that’s different from, say, the NSA how…? +I guess blocking is finally coming to iMessage so I’ll be able to share that with the public ! +If you ever typed something in to Google and it worked, you have to realize there is no such thing as too much data to process. +@chunter16 @eevee compared to how often any online user database at all is stolen +“I don’t know jack about data processing therefore metadata is harmless” http://t.co/87T1fp71vi +@ghostie_ yes that's a devil horn headpiece +@etzolin when I make up my mind, I make up my mind! +Welcome new baby! Old baby is going to a good home with my mother-in-law http://t.co/SjERp8aHoh +@Kufat actually the photo I posted apparently didn't post +@kufat inb4 judging it was three years old +I will not buy anything in Best Buy I will not buy anything in Best Buy I will not hey the thing I want is on sale Oops +@invalidname nope +@_paperino I never resell I give them away +Been thinking of getting new iMac and giving old one to family. How sorry will I be if I get one on sale instead of wait for haswell? +@innerproduct the iOS 7 video goes British American British +@janiczek just get a third party cable… cheaper AND sturdier +@mattblaze because ad hominem ! +I find a switch between a British and American speaker in a video very jarring +@Nial Amazon makes lightning cables now. Much sturdier. +@Nial nothing in particular. My lightning one started to show signs in under a month with me being consciously careful. +“We can make the best everything on earth, except for our $20 cables that are inferior to $2 ones” +Apple forgot to announce cables with insulation that doesn’t deteriorate within weeks http://t.co/oQogoEN7Rx +@secondlooklinux thank you but I meant the injection vector (though detecting it after compromise is obviously important) +@locks @ejacqui so it is! :( +@fiveinchpixie @travisgoodspeed @Jolly @sergeybratus and I take no responsibility for photoshopping it! This crazy foreigner made me do it. +@jenniferbn2 “that” == Apple keynote +Well apparently the iPad beta isn’t even in beta yet! Hmph. +So I can put iOS 7 on my iPad with the corporate developer account, right ? After the download server recovers from heart attack, of course +@lil_lost OSX updates tend to stretch a lot further. +@Anon_Central the hell? You’re not qualified to be an anon spokesperson if you’re going to be blatantly sexist +@thegrugq certainly not until after lunch Mavericks time… +@carl_vinas good grief man stop encouraging them to make an iPad every six months ! +Well that’s over. Back to the part where the NSA lied to the public by playing “cute” word games +@cji @jack_daniel I couldn’t watch the stream but Ars said it’s iPad 4 and Mini. +@quine it just deactivated, it’s safe +@Megan @grp and now she has an optional man-voice! +@snare actually… it is. I can tell them apart without needing to hear the words… +.@Sonikku_a I mean to be a *source* of public location-based app usage data +“Find the most popular apps based on LOCATION” where do I opt the heck out +@invalidname well the iPad mini is, to my understanding, an iPad 2, and that’s supported +@janardanyri I had one, it was actually fine IME. I got a 4th and gave the 3rd to a family member +@runasand what the heck kind of venue checks citizen status?! +Wait, did they just say it’s supported on 4th gen iPad but not 3rd even though they’re basically identical and six months apart? +@thegrugq http://t.co/gkYHtfuaGY I roll ascii-style +Oh gods. I had already managed to forget the word “mavericks” and there they go bringing it up again +@segfault314 no it does not! It’s my one major criticism of Apple’s security model vs. others. +They’re adding a flashlight ! Because it turns out all freeware flashlight apps are address book siphons +Is it my imagination or do these iOS7 screenshots actually look like what Android ought to be +@hirojin buy a Pixel and reformat it. Pricey, yes, but it exists! +@eevee I remember when I was 12 and getting the E3 issue of Nintendo Power was The Biggest Deal +@0x17h @dong1225 actually the Air plays medium-graphics steam games just fine +@tapbot_paul here’s hoping for a hell of a one more thing +“The new Mac Pro has a handle on top” so it’s a thermos?! +@txs dude, don’t release during WWDC keynote!! +Haswell sounds great but I wanted a better screen, so I guess this 2012 Air is subject to the hell of my backpack for another year +Augh, Apple, you forgot to say the new Airs have retina!!! Right??? +@tapbot_paul programming books, yes… +iBooks for Mac: “remind me why we didn’t launch this way again?” +@chriseng mine is both of these things AND Xbox coverage so nyah +Oh oh did they call Firefox's performance on OSX "kinda sad"? Preach the truth !! (But I use Chrome, not Safari, so uh, yeah) +.@Kim_Bruning yeah but like... who scatters all the related files for a project across the disk but takes the time to tag them? +But leading-edge science indicates that's a stupid name for an OS and I refuse to call it that +Tagging? I thought that was called folders… +Finder gets tabs! It’s like 2003 finally got through on a busy line +@captcarl13 it’s a joke I’m pretty sure :p +“We do not want to be the first software in history to be delayed due to a dwindling supply of cats” +"over half a decade" - also known in some circles as "five years" +@RyanHugh I *hate* cookies +#uirage Same Exchange calendar. Two different devices. One shows more meetings than the other. +I’m unashamed to say I’m twitter-stalking the NSA guy and talking about him behind his back. Because — well, you can figure it out +Holy rays of sunshine, he REALLY DID say he was playing word games that were “too cute by half” http://t.co/W9thNX4bSq Fuuuuuuuuck yooouuuu +Rival, yes, ideologically opposed, yes, we’d love to rearrange their political furniture, yes, but China is not an ENEMY of this country +That NSA guy I’m twitter-stalking keeps calling China the enemy. I didn’t realize we were at war with a country our economy depends on +@JeffGroves hey now, I am just as casual about hygiene as other geeks! +Is it my imagination or is the only apparent woman in this picture the one holding the camera? https://t.co/KkuqTOiIFr #wwdc +@captcarl13 ah well, never used two displays on OSX actually +The liberty/safety exchange rate http://t.co/Wit1ooKOTB +@captcarl13 useless if you have a mouse. Good if you have a swipey thing. +.@_nothingtohide <— No explanation needed. Mostly children. +@djon3s @savagejen it’s not in violation if they don’t distribute the program, which I somehow doubt they do… +@akopa I lack the time +@Jomann yeh +@travisgoodspeed @sergeybratus it is a fine work of art, but it would clash with the decor… +@fiveinchpixie @travisgoodspeed @Jolly @sergeybratus y’all jokers PRINTED it?!?! +What iOS users really want to see in an update: more Wacky Photo Effects! http://t.co/s78lmZR4AB +@mansaxel @pajp I assume that no matter where I host, some country will tap it, but some I worry a lot less about +@0x17h huh… I thought they were called tabbies as opposed to toms. +@0x17h where did this spelling come from +@comex @SebastienPage not real icons. Based on description. Yawn ~ +@WhiteMageSlave you live in a tent? No wonder you paid it off so fast… +#xkcd I’m anticipating a wave of people downloading Dwarf Fortress, running it without reading anything, and being confused… +Now the journalists are arguing over who the whistleblower liked better… gj +@Packetknife it’s not finished yet, but I have a great deal done +@Packetknife you’ll read my fantasy novel right? :< +@Packetknife I haven’t read it, but my impression is that the plot is more mundane but the characters more vibrant. +@RndPrecision @RandomStep nice hipster backpack, @wookiee … +Am I a bad person if I’m hoping Apple will release something awesome tomorrow just so I have something to say besides anger +@HollanderCooper @jesster_king presumably if someone was going to shop it, it’d be funny rather than just “huh?” :p +@focalintent remind me to teach the engine that the system’s line separator is not a sensitive configuration property… +@ErrataRob @puellavulnerata @sergeybratus @Packetknife she worked under Thicknesse, but there’s no evidence she was a Death Eater! +@ErrataRob @puellavulnerata @sergeybratus @Packetknife half the problem was Umbridge, who never worked for Voldemort +@puellavulnerata @sergeybratus @ErrataRob @Packetknife Harry goes from naively trusting the gov to outright armed resistance, you’d like! +@sergeybratus @ErrataRob @Packetknife they appear to solve the problem simply by employing the majority of Britain’s magical population! +@washiiko fifty functions that each do very little that call each other in a chain +I should host a class for Java developers on how to write code that nests less than fifty calls deep for fun and sanity +@zenalbatross hey now, Feinstein’s no man. +@ErrataRob @Packetknife or because he’s human, there’s nothing worse than a story with a faultless hero. That’s a religion! +@ErrataRob @Packetknife I can never tell when you’re serious +@_larry0 the college student in me says nooo leave it +@_larry0 🚓🚨🚓🚨 this is the pirate police! Come out with your hooks up! +@_larry0 … is that the entire PDF ? +@dipidoo hmm… I forgot about that button, as its functionality isn’t obvious! +@dipidoo can’t, opening keyboard collapses the dropdown and opening the dropdown collapses the keyboard! Yay! +I guess having a single dropdown with every single customer in it seemed more reasonable before we were so successful :p +Windows touchscreen + Chrome + trying to scroll to the ‘V’ section of a very large drop down list == #uirage hell +@jesster_king it is on a proper wall charger and this is a problem many people have had with this tablet in particular +@jesster_king was being literal based on past experiences; tried just now after > half an hour, doesn't work +I love how if you let the Nexus 7’s battery die, it takes hours to get above 0% charge during which time you can’t use it +@abby_ebooks timely, my dear +# 343879026399645697 +@ErrataRob @chriseng I don’t think they sit around planning super villain luncheons. But I don’t think anyone can be trusted w/ so much +@JackLScanlan … +@theROPfather and they stuck me in remedial English because I didn’t have Spanish or French on my transcript. +@theROPfather I went to a wealthy middle school that had a Latin program, then I moved and the new school was baffled at the transcript +@sciencecomic @BadAstronomer so you’re capping the world’s awesome con resource at about 50? +I know just enough Latin to be afraid of an insect species called bellicositermes natalensis +“The number of ants must be significantly larger than one to converge on the shortest path” gee whiz. +@ceelle1 @anamariecox sorry, I thought we were talking about communications, not loans… +@runasand yeah so… depending on just how off-the-grid you were… +@ceelle1 @anamariecox I don’t *have* a Facebook. Going Google-free is admittedly a serious effort but nonetheless possible. +@prbecky26 if you and everyone you love will NEVER disagree with the US govt no matter what, well that’s great, you’re safe. +@prbecky26 Yeah. No government has ever harmed anyone without fair trial over intercepted free speech. #nobigdeal +It’s a bad day, so here’s a Jigglypuff smash art http://t.co/gnFR4ZojI8 +@chunter16 we’re trying!! +@JeffreyGoldberg @wimremes incidentally, a huge portion of people who have defended the NSA to me live in Virginia or Maryland! Hmm… +@ceelle1 @anamariecox consensual sharing with a company with a privacy policy is different from involuntary surveillance with no opt-out +@LiamReddington <3 +I really wish I had a kitty to cuddle with right now +@Dell56 @anamariecox (and if I’m not satisfied, I can leave their service. How does one opt out of the NSA?) +@Dell56 @anamariecox (because I don’t know about your service providers, but mine have privacy policies I can call them on) +@Dell56 @anamariecox there’s only no expectation of privacy if you roll over and take it +@gilbazoid <3 +@20committee can you please give me some more concrete reasons to not like him than standard fallacies? https://t.co/h35wgK3TB0 +@0x17h SI unit of radiation is the banana, right? +@TheRealMKGandhi also why do I know so many people who make fake accounts?! +@Eyenstyn_v2 I don’t think screaming at the top of your lungs that you’re a celebrity is anonymity in a debate ;) +@DefuseSec I’m pretty sure @EJosephSnowden isn’t getting any money for being a fake account +Why do people make non-parody fake accounts? It’s not funny or insightful. +@albertwenger @EJosephSnowden @zooko https://t.co/yXVfKezdqE +@EJosephSnowden @ErrataRob @ggreenwald said all such accounts would be fake… +@CEJohnson_CEO @anamariecox but it actually *worked* this time and that kind of matters +In other news: it’s pretty manipulative of Nintendo to put play icons for games you don’t own on the main screen +@DrPizza I thought we all agreed by now that “direct access” meant via the order process rather than off the fiber taps… +@DrPizza @raudelmil maybe (just speculating) he had reason to believe going to Iceland would raise suspicions at home +The Guardian says Snowden leaked “the NSA files” and linked to this page http://t.co/QWUj0sUJMx so presumably he leaked the Verizon Order +What is right is not defined by what is legal. One had best hope that the opposite, however, is true. +@TheWarRoom_Tom @20committee I’ll grant that, minus the unnecessary ageism, if you can define Turing machine without googling :) +@Dell56 @anamariecox please understand that exchanging data willingly with a service provider is very different from all data being siphoned +@gallifreyan @Twirrim different person, completely arbitrary, coming though the RT chain. +I assume the bit about Hong Kong is less “champion of free speech” and more “champion of a perfect opportunity to show up America” :p +“We” (the broader security/privacy community) have been preaching the Bad News for years, but our audience is a trifle bigger now +@CEJohnson_CEO @anamariecox I was also talking about this in 2006 (when I was a minor), where was my audience? +Basically a surveillance apologist told me that a judge said it’s okay therefore it’s okay. No deeper concept of morality? +@TheBigFoxx @anamariecox yes, I completely disagree with your entire premise from roots to roof, but whatever. +@TheBigFoxx @anamariecox than* +@TheBigFoxx @anamariecox I have a big fucking problem. +@TheBigFoxx @anamariecox that presumes that “having a fisa warrant” is ethical. But the Verizon Order is 100% a blanket order of all calls +Got RT’d by someone with over a million followers which is cool except for the flood of invasive surveillance apologists +@TheBigFoxx @anamariecox I said stop arguing about prism because there’s this OTHER problem people are forgetting +@TheBigFoxx @anamariecox but the Verizon Order is Don’t tell me everyone forgot already :( +@chort0 @WeldPond great, now I can’t say I think Snowden is cute or it’s inappropriate workplace behavior +@j0emay (at him in a way likely to drag in ten billion people to a pointless fight, that is) +@j0emay still didn’t at him… I am Subtweet Supreme Queen +“The leaker doesn’t have a diploma, so don’t hire people who lack diplomas.” Top-notch surveillance state thinking https://t.co/9jhVGoETsm +@chort0 @justinschuh (I know I’ve said this already, but: I don’t blame Google, I absolutely do not blame Google for anything in any case) +@20committee do you always extrapolate to huge groups of people based on one who did something you don’t like? :) +@20committee you know, technical skill with computers has little to no correlation with formal education. All good hirers know this… +@justinschuh which is great! But the underlying theme of the NSA being far too data-happy remains +@justinschuh I’m saying there’s been a huge kerfuffle over what direct access means and it apparently does NOT mean google gave them root +STOP arguing over the semantics of prism “direct access” — HELLO THEY’RE COLLECTING ALL PHONE METADATA ALL PHONE METADATA +So, Snowden leaked the indisputably evil Verizon Order, right? The NSA-loyal are trying so hard to mudsling all over him right now. +@kcarmical well you’re always your parents’ child no matter how old you get, that’s a different use of the word… +@justinschuh didn’t he leak the Verizon order too? Not a lot of room for not understanding that. +@WickedSmaaaht @20committee I am interested in this definition of childhood which includes being twenty-nine years old +Now the former NSA’er is retweeting things calling 29 years old a “kid” +@zorm presumably @ggreenwald would have a good idea if this was the person who sent him the docs or not +@chead his username is 20committee , not atted because I’m not looking for a fight. +That former NSA’er I twitter-collected seems to be primarily offended that $200,000 wasn’t enough to shut Snowden up. +@null_ptr but it doesn’t have cartoon eyes! +@jonelf so he can’t be disappeared, I assume. +The whistleblower has outed himself. http://t.co/GsiaPI4zwz +I take it LaTeX doesn't have an ant glyph. http://t.co/MNsKMgmchJ +@tapbot_paul it’s not unfortunate except that you remind me of my stepfather — entirely not your fault. +@tapbot_paul is that really you? :o +@tapbot_paul geez, who jailbreaks? Not that I can recall though… +@tapbot_paul good assuming the pin is neither generically obvious (0000) nor personally obvious (birthday) +@matthew_d_green @mikko well, they’re clearly labeled as most likely not related to nothing ! Wait… +@EddyElfenbein @20committee this strawman joke really really irks me every time I see it :| consensually public info is different +@ErrataRob @WeldPond you really have no sense of humor, do you +@JackLScanlan I had raw meat in an Ethiopian restaurant once, it was amazing +@ragekit @puellavulnerata it’s a joke +@doot0 forwarding to @eevee +@chc40 @toddemaus context hardly even matters here :) +@rbf_ I have read it a few times in my life, but my opinion of that article is quite low +@troubledskies @0x17h in principle, it should be possible to run a USB cord to a battery in your backpack, if you’re going to a protest +@DrunkTzu now I have to guess who you are… +@dijkstracula @m1sp maybe the question is genuine. “No really. Why won’t anyone tell me WHO IS JOHN GALT?” +Don’t say something is “classic Sun Tzu” unless you’re prepared to cite, please. http://t.co/J36gSez9u8: bleh) +@chriseng alright who got your phone +@French_Freddy nope! We are very lax types +@KGLlewellyn @Tomi_Tapio … why are there more toilets than beds +@French_Freddy well for one thing I am already married! But I doubt he will ever marry anyone, that’s too normal ;) +Hang on, have we really not solved the cdorked thing yet? +@Tomi_Tapio darn. Apparently my furry radar needs more calibration… +@kaepora I’m pretty sure their denials are in fact true *as written* +@Tomi_Tapio serious question: are you a bunny furry? +@0x17h no-one who played Pokemon ever gets light year wrong ! +@jesster_king I also bought a t-shirt and it was $9… donno if they just put it in an envelope for just a necklace +@JZdziarski it’s not the jewels that count! +I can’t believe I just bought jewelry on the internet http://t.co/Wz2ioX71MS +@ioerror let us know when you get off the plane and we’ll have the cliff notes ready +@ioerror “hosted on corporate services” == amazon? +@thegrugq @hypatiadotca @pusscat I expect one at barcon then +@ioerror dollars to donuts they define metadata as not data +Fwiw I don’t blame the American corporations for this mess — not when we know that things like NSLs are handed out like candy +@dewitt if it’s any consolation, I genuinely believe Google puts in its best effort to try to resist +@dewitt what I originally meant was the govt calls leaking “reckless” because oh no people are complaining ! +@dewitt you need to get your sarcasm detector calibrated +@dewitt yes, it is well established I am Supreme Leader of Earth. +.@bhelyer context is reporting *true* things (like Verizon Order, everyone can agree that’s true and govt is so upset) +Media can only be “reckless” if it gets people hurt. Bruised egos don’t count. +@wimremes … referring to the tendency of services to spew identifying data when you connect to them before auth. +@wimremes it’s clearly casual terminology… +@wimremes then I guess he means “the data returned when one simply connects to an open tcp port” +@wimremes lol context? +@xa329 yeah — don’t understand why the GeoIP databases are convinced it’s in Colorado. +@m1sp_ebooks @m1sp well that’s a shame +# 343506050198147073 +@raudelmil the US govt basically considers itself to have unlimited rights to foreign data passing over US soil +@jesster_king on the webpage +@siuying pretty sure they speak English in Colorado, which was the joke. +@The1TrueSean @codeferret_ ouch +@The1TrueSean it’s nice someone invited you to a costume party you don’t need a costume for. +@Mudgutz what *doesn’t*! +@natashenka !xkcd:standards proliferation +They say they need a “specific” purpose - like “prevention of terrorism” which we KNOW is INCREDIBLY broad. http://t.co/xQUxF62LWP +@nwerneck well, it routes straight across Canada then drops down. But contacting Canada doesn’t route through Canada :p +@wrl @eevee I’m not quite a font hipster… but I literally can’t read ClearType, so it’s pretty easy :p +@tangenteroja @xa329 the host name isn’t in the Netherlands! It’s presumably in England but GeoIP says it’s in Colorado +@PBTender they're definitely from Africa, but I'm embarrassed to say I can't identify more specifically than that. +@PBTender I promise I could identify Greek! +@xa329 I'm starting in Sweden, but it seems everything I could possibly connect to outside Sweden goes through same spot in the Netherlands +I can usually identify languages but the couple of families picnicing out in the yard have me stumped. And their food smells good. +@dshaw_ in my case it was a parody account with like five followers. +According to traceroute, I can get to *Lima* from Europe without passing through the USA, but not Montreal, Mexico City, or San Paulo +@crstry confusing they didn't say londuk in which case it would have been obvious +What the heck, Twitter is urging me to "reconnect with [username], use a tweet to get in touch" Back off, Twitter +@crstry @tangenteroja I think someone's suggestion of Lond[on], En[gland], UK is correct +.@Yirba_ stop being reasonable +@ebcube and the US, is, in fact, a major cable hub! +I suspect the GeoIP is incorrect for that, but that would imply that someone in London didn't know how to spell London and that's just sad +@ebcube They're mostly interested in connections with where servers are, I assume! +@ebcube but wouldn't connecting to Spain provide an overall faster internet experience with fewer hops? +Guess the geolocation of this host's IP: http://t.co/YDHlwz0YD3 Hint: it's a place that can't spell London +@ebcube yeah but... what about all the cables that have absolutely nothing to do with such a concept, why would this one be special +@r4vi I am. We're not *all* monolingual ;) +I admit I'm really confused why everyone assumes that the placement of long-distance cables has to do with language ancestry. o_O +@r4vi I know, I can read it. +@tangenteroja that was kind of my entire point +@ebcube I don't think that's how networking cables are laid ^-^; +@deathtolamo um... none... I just tracerouted from my machine in Sweden to South Africa +@aris_ada @meikk I have no idea, but if it does, why not just alias traceroute? +According to the traceroute I just did, the Netherlands has a direct connection to South Africa?? +@tangenteroja yes, that is what I have been yelling at the top of my lungs about for a few days now +"E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?" You're the computer, you tell me! +Why on earth does this ubuntu install have traceroute6 installed but not traceroute +@giovannibajo I consider SSL mandatory, but there is still a lot of metadata, and the US can’t simply up and seize servers or whatever +@jgeorge but you know — I have serious depth perception problems — I probably shouldn’t be shooting at anything ever. +@jgeorge my father is LEO and a veteran, it’s not like I’ve never seen one :p +@ramonsuarez @treyka well, I did say “help”, it’s no guarantee. :( +@elad3 my Arrogant American(tm) opinions on Israel as a government are not very favorable +@r00tine though how many are properly regulated? Probably like two :( +@r00tine yes, but it’s not an inherent trait of intelligence agencies to tap civilian fiber, if they are properly regulated +@elad3 routing through most of those places would already see a lot of arbitrary dropped connections +Of course — I’m sure other countries are spying too. But I doubt any of them have as big a budget. +@RSWestmoreland I assume… +@octal unfortunately I don’t think there’s a good way to route to the rest of North and South America without going through US +@jgeorge the only gun I’ve ever owned is the NES light gun +You can help protect your non-American customers by hosting in places unlikely to route through America except to reach Americans. +PS — I have been using this hosting service owned and operated entirely in Sweden and have been satisfied — https://t.co/N9Bj6awL58 +@batslyadams oh gods it’s the Shadowgate nightmare of my childhood on acid +@akopa @m1sp yes +@m1sp let’s engage in matelotage which is my new favorite word +Have New Super Mario Bros for Wii? The fan-made sequel (depends on having the disc) is finished. http://t.co/ECFAr02haH +@wimremes I believe the EU said the Verizon thing was purely a US internal matter — which makes no sense. +@apiary am I allowed to say he’s actually looking pretty good :p +I got a hat at 7-11. Somehow. http://t.co/vUmDiFQLoj +Matelotage, gay marriage for pirates http://t.co/vs2P24yNfe +Started a signal intelligence flamewar. Going to 7-11. #typicalsaturday +@donicer I’m not ignoring you, I just can’t make heads or tails of “humit making a sigadz I do ew” +I leveled up in American today - someone sent me a selfie of them posing with a gun! +@donicer @20committee @TheWeek maybe we should continue this discussion when you’ve sobered up enough to spell with the aid of autocorrect +@donicer @20committee @TheWeek I’ve found sources, other than this article, which say it’s “signal activity designator” +@profoundlypaige that looks incredibly painful +Hey - someone who claims to be former NSA (@20committee) says to read this http://t.co/rpSpy0koSG and it actually makes A LOT OF SENSE +@chriseng but we’re arguing until we’re blue in the face about semantics, which is spot on for our industry +@grp and bless their hearts. But the point is more getting people to actually acknowledge that it’s real and happens a lot! +@matthew_d_green they do specifically deny getting an order THAT absurdly broad. +@grp — through direct communications with employees, *as opposed to* fiber taps. +@grp and that’s my point; that “direct access” was taken to mean, like, a shell on the database server, when really they mean it goes — +@DrPizza we knew all of this for ages, really +@grp “Here is a letter which describes what we want. Fulfill it or see us in court.” +@grp I’ve posted or retweeted all the links to them myself. They agree with me: they have direct SOCIAL access. Whether they want to or not +Anyway if we take the new slide as being real it seems to unambiguously agree that massive fiber datataps are totally a thing, yay! +@grp and it seems the PPT meant direct access in a social sense, not a technical one. +@ioerror you have almost 44,000 followers, I wonder how much of the internet is within two degrees of you? +@tenfootfangs @Sakuya_Izayoi *maximizes pic* wow, fangs would love this pic *minimizes* oh +@bobpoekert they all are? +@French_Freddy heheh well, I don’t think he’s going to marry who I suggested, but we love each other but not in THAT way +Another alleged slide from prism.ppt, yes just one. http://t.co/Q8Ef05v6R8 +@savagejen @ioerror I aspire to become a node prime in my own right! +@nickdepetrillo you appear as a character in my dreams far too often for someone I’ve only met irl once! +@French_Freddy what? It’s the best thing ever +@m1sp I love you platonically (=^ェ^=) #nosleeptweets +“That is a very 5am 0xabad1dea tweet” yes indeed!!! I am just going to own not sleeping tonight and have some coffee… +Like this relation-ship has sailed over the Friend Zone event horizon beyond which there is only friendship and rainbows +@washiiko @MAID001 lol what Who even sits there and thinks “I’ll make a twitter bot…of a hateful maid!” +@Wxcafe other gender than mine +I’ve reached previously unexplored depths of the Friend Zone: trying to arrange my other-gendered BFF’s marriage +@die_no_might only with pills. Forget pill == toss and turn all night +@washiiko one night I couldn’t sleep. And the might after, and the night after, and every night since, to the point of tears +Still kinda freaked out how I spontaneously lost the ability to sleep a few months ago +Forgot to take my sleeping pill. 4am. Wide awake. +@kivikakk #closeenough +@renpytom ooh, yuck +@renpytom or more precisely: did you have a directory structure with seventeen *trillion* small linked files or what +@renpytom what was it doing?! +@kivikakk winnar! +# 343154396982554625 +@ErrataRob and I clearly just found it funny :) +@ErrataRob I just pointed out that the guy in the video says Australia is on another planet. +@ErrataRob My claim? I didn't make any claims... +@innismir @thegrugq change starts at home, which is why I've been shouting at the top of my lungs for two days to stop spying +Maybe the problem is that Americans think Australia is on Planet X https://t.co/qClir6Y3Wh +@innismir @gangstahugs Chilling effects bro. Even my grandma jokes nervously about texting the word "bomb". +@dijama I don't always agree with my opinions either! +@gangstahugs and congresswomen, and congressbeasts of all stripes of monstrosity. +@innismir @thegrugq by common sense? Yes, insofar as the EULA/ToS goes. By the NSA's twisted definition? No. +I hold this truth to be self-evident: that the right to free speech, privacy, and freedom of association does not depend on geography +@innismir @thegrugq yes, but that's a tiny footnote to the broad theme +@innismir @thegrugq I believe that privacy and freedom of association are *human* rights. I would be remiss not to stand up for them. +@innismir @thegrugq same difference, considering how bloody difficult it is to get in here legally +@xa329 @wimremes we hold these truths to be self-evident, that life, liberty, and pursuit of happiness only apply to people born here +@Mr_Reed_ now that, I actually would not say, as the censorship is active rather than passive +@thegrugq American exceptionalism is so ingrained that many perfectly nice people are confused why I'd say foreigners have the same rights +@m1sp you around to play tonight? <3 +@m1sp “who let the minmatar design Eve’s server cluster?” +@BurnWorldgov I think they don’t know some things, know others but have to dance around them +@BurnWorldgov I suspect the denials are literally true but dance around some details +It’s here! It’s going to be an exciting weekend http://t.co/ZNZqdb3Zkx +So we’re in a weird position where the companies deny it but the government does not, just that the article contains inaccuracies +@demize95 I think the compiler is only allowed to error on things that cannot be compiled +@0x6D6172696F @lcamtuf I think what is true all falls under Google’s concession that it is forced to play along with SOME stuff. +@0x6D6172696F @lcamtuf well, it’s 100% possible to be involved with prism and not know it by that name; +@nickm_tor that episode is over twenty years old you know. +Google’s long form denial http://t.co/V4oCufESmr +The rainwater management in this town is... poor. Mini-floods everywhere +This is her opinion on most customer code http://t.co/fwCev9wzLd +@friestog Source Insight +The code she's standing on is open source btw, I'm not leaking Customer Secrets +Reached that part of the day where I’m taking code auditing advice from a vocaloid figurine http://t.co/BcC3ZjBH9g +@lorenzoFB @a_greenberg one of the files is literally an HTML to PDF of one of Cryptome’s records of voluntary redaction +@lorenzoFB @a_greenberg they straight up copied stuff off Cryptome as I was shouting this morning but this was lost in the noise… +@savagejen in the context of the time, can you really blame us? +Bing. (It works if you use "MSDN Search Powered By Bing") http://t.co/hMKV9W0mQ7 +@demize95 hmm, well, conceivably it could be doing something “cute”, I’m looking for the exact code that would trigger this warning now… +@ReinH unless you’re @MarkKriegsman +One of the warnings this code has disabled: "recursive on all control paths, function will cause runtime stack overflow" ... ... ... +"It compiles without warnings!" #pragma warning(disable:...) +workstation, playstation, I am 19 years late to the pun +@xxDigiPxx if this were at home, it'd be a PlayStation +Is knowingly leaving your workstation unlocked for the cheap thrill of risk a known psychological disorder yet? +@yakushim do I really believe that privacy is a right if I say “well of course not for people born outside of this arbitrary border”? +@yakushim I can’t force foreign governments to do what I think is right, but I can do what I think is right: to apply human rights evenly +@kcarmical unfortunately there is no perfect answer as to where exactly the line goes — just doesn’t go where it is now! +@tapbot_paul yeah, why not? +@kcarmical transparent, accountable, limited? Or just “we said it’s legal therefore you can’t stop us neener neener”? +@tapbot_paul (obviously some American rights, such as to not quarter soldiers, don’t translate to this context) +@tapbot_paul in this context I’m talking about basic rights like communication, free association, privacy and being presumed innocent +@kcarmical secret snooping by secret programs for secret reasons == totally invalid and morally bankrupt +@tapbot_paul it’s not a “right” if you stop treating people with respect because they don’t have feet on the right dirt +@kcarmical my stance is there’s no valid reason to go digging around outside a specific, documented, transparent criminal investigation +@kcarmical basically what the govt is saying is they would never read *my* gmail, how awful, but my BFF in Australia, fair game! +@kcarmical respecting the basic human rights of communication is not putting the concerns of foreigners above Americans +@blowdart I’d let you vote but nobody asked me, funnily enough. +Also maybe some of you are sick of hearing me rehash how angry I am but the time is now the place is here to be very very angry +I realize that statement has a bit of length-induced grammatical ambiguity. I am saying “FOREIGNERS” DESERVE ALL RIGHTS. +@itsdapoleece err ambiguous * autocorrect +@itsdapoleece rereading my statement, I may be grammatically unambiguous? +Also I’d like to smack all my fellow Americans who genuinely don’t care if it “only affects foreigners” ffs that’s most human beings +not a joke???: Fox News calls to gorge on donuts to stick it to The Man who wants bike and walk friendly cities http://t.co/tc0yCEo76b +@Pubteam okay, yes, but that wasn’t my question ? +Also why the hell is the entire government acting like obtaining phone numbers ISN’T obtaining identity? Do they know about PHONE BOOKS? +I know no word nor art to display my contempt for the President’s definition of secrecy. http://t.co/mNg3SMJ4uk +@0x8badfl00d @ca13ra1 that’s several degrees beyond the point with the government :p +@boblord but @0xcharlie can and he’s just holding out, right? +@snare w… what did I do :’( +@YourMomBot @armcannon buuuuurn +Emotion is the social logic, subject to a calculus far more complex than our mathematicians can reckon with +@hattmammerly that's the one I already posted as just being taken from cryptome +@TruyCrussley @kyhwana we don't know what you do or don't do, why would we? Why SHOULD anyone? That's the point. +@drunknbass I make a lot of money ;) +It’s fighting back… http://t.co/M5hWrG7Wzu +@drunknbass where I lived in VA, going rate for IT workers was thirty five thousand … +@drunknbass because you described to me a twenty thousand a year job maybe +@drunknbass well you don’t need a high school diploma. And I live in America too and California must be a very different place +@drunknbass where the hell do you live that pays forty thousand a year for an unskilled job +@bcarpe211 @savagejen false dichotomy :) +@drunknbass it goes up to eighty thousand which is quite a lot for a government job! +What are these arbitrary numbers even supposed to be http://t.co/YAPUrZfjLu +“White House put out an advisory that National Security Advisor Tom Donilon will hold a media briefing on Saturday” someone’s weekend ruined +@randalleclayton @fakedansavage an old internet meme is reused! +@savagejen but, if the whole point of Prism is that it’s totally okay to spy on foreigners, what are we to do? +@vogon not necessarily? I’d assume it would have some semi-idiot-proof interface for data monkeys to use +@RSWestmoreland @HackerNewsTips yes, and that’s what we want to happen +@WeldPond @GerriWillisFBN green room so they can put a matrix effect in the background, right? :p +Though, checking the real Cryptome, they have some resumes which name Prism as a data collection management tool http://t.co/ozt44jvCqp +FFS Anonymous, rehosting Cryptome is not a leak http://t.co/bkdJpVJolU +@txs @collinrm @nickdepetrillo clearly NickDe is the beauty because of those feminine eyebrows +@danhett @Tomi_Tapio except for the way it tends to be the first google result implies there may have been a lack of good google results. +Soooo…. Is Keith Alexander still coming to Blackhat or…? +@Pontifex @nonstampNSC I’d like to give a Missing The Point award to the Americans who say there is no food shortage in America +@trufae they lost plausible deniability. It’s the difference between “you’re cheating on me” and “you’re pregnant!” +@m1sp wat +@nrr @SwooshyCueb @eevee well I know you’re adorable irl, but I lack data on eevee +@TruyCrussley @mikko gods, some people, can they really not understand this is about friends of friends and networks? +@trufae yes we ALL KNEW, that’s really not the point +Bill to deny alleged hackers and their *family* entry to US http://t.co/1WMOp1gr3C #GuiltyByAssociation +@shalecraig it’s on Windows 8 by default! +@a_greenberg June Bug Day +@chead lol I just mean that if protection is what she's so worried about, that seems contradictory. +@chead one or the other lady! +@ELLIOTTCABLE @rfc2616 ... +"It’s called protecting America." A literal quote that Feinstein actually said +@ELLIOTTCABLE @rfc2616 I'll respond to anyone who @'s me (which in turn just causes more people to @ me) +@rfc2616 aerial floods are the bane of my roof +Personally I wouldn't issue emergency notices featuring a highly unusual word that looks like "area", "a real" and "arial" all at once +Bing Weather wants me to know about "areal flood watch" and that's technically correct so I can't decide if it's a typo +@WorkingDemocrat @AdamJGreene Except for the English language, of course. +@spy604 more steampunk actually... but a major theme is power in the hands of too few people +@averagesecguy @MalwareJake because, when it's possible to retain it for effectively forever, and you suddenly "need" it in ten years... +The 404'd thing is back. Maybe they had a glitch because they've never had to publish two things on the same day before :p +@ErrataRob no? I reckon I am unaware of such a contest +I should channel all these emotions into work on my novel +@dong1225 was his dad killed by slavers or something because I seem to have hit quite the button +@RandomStep “permanent damage has been done to our ability to spy on Americans!” I might be summarizing. +The Director of National Whining About Being Outed’s confession has gone 404, I see +@MalwareJake whoa +@Kufat why would I? I was trying to have a discussion with them +@dong1225 man what the hell was that about? +“Wahh stop replying to me replying to you!” — twitter person who I finally convinced to block me like nature intended +@superMTW yay! +@superMTW …. Stop what again? I was replying to you replying to me… +@superMTW block me, it works better. +@superMTW o____O cool story bro Spying on the general public is wrong no matter where they live +@superMTW and it’s a REAL EXAMPLE of something that was TOTALLY LEGAL in THIS COUNTRY. +@superMTW I’m way out of line? I didn’t extrapolate. I just copy-pasted the logic that something is moral if it’s majority. +@superMTW just like a huge majority of the American public was okay with slavery? +@superMTW just because something has “always been done” doesn’t mean it’s okay +@superMTW …. Sooooooooo? +@superMTW seriously? Whether or not a human being deserves basic rights depends on whether they have a foot on our chunk of dirt? +@superMTW this one is about the Verizon thing, actually. But so dirty evil foreigners don’t deserve no privacy? +“Wahh, boo hoo, no fair” — Director of National Intelligence http://t.co/W1xHFPpBgy +@m1sp don’t scare me like that ;-; +@m1sp … right? +@m1sp … no you don’t :( +The good news is: I found cartoon fan fiction my BFF wrote when they were ten years old #treasure +@puellavulnerata probably because it’s so compromising that the NSA would literally be out for their blood. +@puellavulnerata pretty sure they have deliberately not posted the whole thing +I can’t even keep track of what already leaked vs suspected anymore +@excsc not by THEIR definition. By THEIR definition, automated collection is not surveillance, only human eyeballs is +How paranoid is it to think the US would trade data with close allies so they can each “not spy” on their own citizens? +@innismir nothing! I’m just using it for its shielding +@kyhwana and I can’t go into it, but suspicion of US govt interest is not unfounded in this instance +@kyhwana a log-on to the account from within the Google Datacenter itself. No similar things in other accounts +Incidentally, the most prism-like thing I’ve encountered happened to the gmail account of a non-citizen +“Prism is real but we only use it against foreigners” http://t.co/uFqkm4RaTT +@DrPizza as my father with a clearance says: “Half of all rumors are true and half of what they say is a lie. But you’ll never know which” +@RSWestmoreland @pmocek @declanm AOL is listed under prism… +@DrPizza IMO the denials are very specific and emphasize “legality” of actions +I undid a retweet because the domain name in the image didn’t exist, but it turns out their admin is just incompetent +@paulg @sanitybit hello yes this is Cassandra speaking +@DrPizza between NSLs, clearances, and legalese, that is necessary but not sufficient to actually not participate +Ctrl-f “prism” in this article from 2007 http://t.co/WWl5CzHBST h/t @panther_modern +@panther_modern @bobpoekert haha sorry, some of the smaller details were lost on me as I stared at the slides themselves… +@RSWestmoreland @m1sp when two people love each other very much, but like, not like THAT, I mean…, +What is a SIGAD? +@JR_Nelson @kurtopsahl yeah I’m not sure what difference they think there is +@m1sp I need a friendship hug +@TVietor08 you say it’s a joke, but not in very good taste… as one ought to know the difference between willful disclosure and otherwise. +@apiary we all figure they are it’s just there’s no proof +@ELLIOTTCABLE Verizon metadata being shipped to govt on daily basis +@tapbot_paul ONLY twenty million a year? That sequester really works! +@ELLIOTTCABLE prism, I’m not saying it is, I say I’m reserving a chance for it to be +… Though the information, as presented, is technically feasible IMO. +@redtwitdown @jperkin government officials are not known for aesthetic taste +Since this follows last night’s news so closely, I do reserve a chance of it being an elaborate hoax meant to ride the media wave +.@panther_modern suggests (via Ars comment) the codename PRISM may refer to fiber splitters “reflecting” the data stream; farfetched? +@dan_munz @tapbot_paul *slow clap* +@dan_munz @tapbot_paul *slow clap* +@eevee @habnabit *facepalm* +# 342792505340858368 +@Pepyri_ well, it’s completely unambiguous that Apple can decrypt iCloud and iMessage server-side +@trevortimm @0x17h I have a problem, and that problem is the urge to simplify your statement to not include Skype and YouTube +@Pepyri_ well the gov immediately admitted the thing he published last night was real, so let’s see what they say tomorrow :) +@Pepyri_ and apparently Paltalk is big in the Middle East? idk. But @ggreenwald thinks it’s legit and he’s pretty good at this +@Pepyri_ I’d assume gmail is easily the biggest, most important, most useful thing on that list (even gets a separate icon from google) +@Pepyri_ as it syncs constantly what you have in the text editor +@Pepyri_ non-technicals are prone to incorrect descriptions of technical capability; but in gmail’s case that could actually be literal true +@Pepyri_ I doubt there’s a unified interface for all of them, it’s probably very piecemeal and ad hoc +@SteveD3 though adamant refusal is not out of the question given they’ve resisted smaller things. +@SteveD3 relatively low volume of private data, I assume. +Of course the PowerPoint is terrible. That’s how you know it’s legit: the NSA graphics department doesn’t have the clearance +@m1sp though, the amount of data passing through twitter that is private is very small compared to the public data. +@DrPizza because the graphics department doesn’t have the clearance. Duh. +@kaepora I heard in Japan they call it “the fox god takes a bride” so the association with deity actions seems cross-cultural +@dangillmor @kaepora I’m assuming it’s legal dancing about the definition of backdoor. +And @ggreenwald’s version - http://t.co/TPgNsfripO - time stamped within a few minutes of each other, so idk whose scoop it is… +Washington Post drops another, entirely different surveillance bomb. Check the slides. http://t.co/hrIkTPny1l +The Japanese soft keyboard in iOS is so much better than English this is incredibly unfair http://t.co/H8qwoENY4m +@myfreeweb seeing as tor is a charity project. +@myfreeweb or we could acknowledge that there's not really a good reason to throw plaintext around and solve the problem entirely +@myfreeweb private by default is the only way to ensure privacy is ready when it's needed. +@myfreeweb if the person downloading it happens to consider that act private, because they're in Censorship Nation, they're out of luck. +@0x17h @ashedryden idk, I wouldn't dare call myself devops lest someone who actually has to stay up late for Push Night beat me to death :p +@vladspears @cyclerunner "equally true" != "the same" +@elad3 @glyph ... though perhaps a many-to-many signing system like pgp, possibly complete with real world corporate signing parties! +@elad3 @glyph If I knew THAT... +@meursalt Gov never silently disappears people who leak. They make a big show of it. +@glyph yeah, pretty much. It's the issued certificates that are broken, not the cryptography. +@Kufat #FactsFrom1998 +@Wxcafe that was the (fix HTTPS) part :p +I think it's high time we push to get plaintext HTTP officially classified as a legacy protocol in favor of HTTPS. (And then fix HTTPS) +@attritionorg are there even 32 different certifications in the world? +@tapbot_paul Feinstein is flipping out and on a witch hunt. Also, no FOIA has ever been processed so fast! +@hemantmehta @comcast that… sounds distinctly not legal. +@matthew_d_green (one time pad) ^ (plaintext) == (cipher text) +@stephenfry <3 +Dear whoever leaked the order: I deeply admire you. NEVER leak any evidence as to your identity. +@xthread unfortunately, it turns out I have zero votes in Georgia +@n0x00 @gsuberland @ioerror I was polite and didn't hack them. +@thegrugq @ioerror a lady never swears when writing a formal letter. The automated filter might catch it. +The last time I wrote to a representative, I did get a non-canned response, but it was basically "thanks for wasting your breath, kid" +cc @ioerror: complaint registered. http://t.co/4tYh2148M2 +@eevee sounds like you’re in quite a … … sorry, I’m sorry +@ioerror (really though, how DO I register a complaint with this lackwit?) +@sciencecomic whoa spoiler alert +@ioerror where does one find the official public complaint box for secret orders? +@DrPizza I have some ice water here that they may wish to borrow… +OH @ternus: "Why is your job title listed as VP of SQL Injection?" +@EightTons also, technically the output is neither graphical nor audio, but can be cast as such :) +@EightTons well, SDR# actually supports receiving the output over TCP, and there are the command line tools for Linux +@EightTons in theory it's an FC0012, and my tablet only has one USB port... +A system administrator types into irc: "ls" Go on... +@tapbot_paul my sensors indicate probably not +@Neostrategos @The1TrueSean I don't think I could keep a straight face on Fox, sorry... +@nullwhale yes I know ;) +My demands list for being spokesperson: - A scepter - The scepter needs a +5 bonus (to spokespersoning I guess?) +@Ammoniak because then I'm not allowed to complain about <redacted> +@ra6bit well I figured you *had* to do it, but that doesn't imply that you *wanted* to or that it was a pleasant experience :p +Hey kids: Don't make the same mistake I did. If you're too active on Twitter, the PR department will classify you as a company spokesperson! +@ra6bit this is one of those things where you’re not sure to offer congrats or not +@batslyadams \o/ +@jennifurret you don’t follow enough security and privacy advocates +@jesster_king @GreySyntax I use the official client because I like to complain of misery. +Android trojan exploits bugs in dex2jar, the manifest parser, and the permissions system. Wow. http://t.co/jvnr7Bptdm +@MimiHound LOL for a second I thought you were responding to my quoting Benjamin Franklin at someone XD +So yeah I have a literal wicked stepsister. And a neurotic step-nephew who may never recover from the behavior problems she's given him... +@furicle there are countries which emphasize helping criminals rather than punishing them and it turns out that's better for society. +.@furicle there wasn't really enough space in the tweet for "Jail, as envisioned by the so-called American justice system" +Jail is a fundamentally evil concept, but a distant family member who abused her toddler son is going and I'm fresh out of tears to shed +@codeferret_ I am also there is a package here from your mother and it's really big ?? +I have a fever, so some part of me is hoping I'll wake up and the American surveillance state was a fever dream +TIL the Microsoft Outlook web client makes a Windows ding when you get a new mail, which is confusing as all get out when you're on OSX +@tuomotanskanen @marshray I don't think we're using the definition of "valid" that means "the machine understands it" ;) +Google Voice transcribing a voice synthesizer comes up with my name being "Melissa Yeah I Read It" +@MatthewOden I don't think "SELECT * from * where * = *" is a valid court order... +Venting, please ignore: why do people exist who think it’s okay to spit on the grave of the Fourth Amendment +@jesster_king @normative http://t.co/i9453JQcBu +@dangoodin001 @thorsheim @jpgoldberg it's just a stupid redirect bug in the first case, echoing someone else's claims in the second. +Note to self: Don't attempt to adjust VPN settings while being talked through a problem on an IRC channel connected to over VPN +@jesster_king @normative my gods. +@thorsheim @jpgoldberg I was told Twitter already knows of the first one and it "should be fixed" two days ago already ;) +@jesster_king @normative and that makes it totally not the most flagrant violation of my privacy forbidden by the constitution imaginable? +@jesster_king @normative it’s no laughing matter +@jesster_king @normative I’ll show you my house if you really want to see it… I won’t show you my communications metadata. +@DrPizza everything. Just… everything. +@gsuberland @addelindh well it’s just that I’m at home because I still have a slight fever so if something comes up… +@savagejen why does a creative content site even have a downvote button +“To my knowledge there has not been any citizen who has registered a complaint” of a top-secret order with a 25-year expiration. #gotohell +Fellow Veracoders: am I the only one whose mail server connection is completely borked (from multiple computers) +@DarrenPMeyer I’m not even mad at Verizon as it’s not their fault the gov did this and standing up to it is not a trivial matter +I’m convinced that Dianne Feinstein is the devil. http://t.co/wuwBTz8PVL +@jack_daniel acceptable at small font sizes, looks way too bland at large sizes +@ErrataRob on 3G, 174.236.3.x +@_wirepair I guess they still get the phone book delivered at the NSA +@thorsheim @jpgoldberg and you bette hope you never uninstalled tweetbot or whatever. +@thorsheim @jpgoldberg second, if you deactivate and reactivate an account with two factor, you can’t log in through the web anymore +@thorsheim @jpgoldberg it will break when it redirects you to the mobile twitter instead of to the page to enter your one time code +@thorsheim @jpgoldberg I know of two problems: first, if you try to authenticate to a third party with twitter from a mobile browser, — +@zephyrfalcon nope… +@ELLIOTTCABLE @vilhalmer you are so drunk (I assume) +@ELLIOTTCABLE well *something* you did/said made me think you were 16 or 17 :p +@ELLIOTTCABLE this is documented under “some other stuff” ;) http://t.co/NQeo7qAGMr +@ELLIOTTCABLE haha well, I just remember you being a minor on Google Wave and bragging about your eight-core ;) maybe 17? +@bmirvine never +I have a fever, Twitter’s 2-factor breaks in corner cases just like I bet it would, and this country is everything it said it wouldn’t be. +@nicholsong yes I assume so too +(I’m being told that Verizon Business Network is just a subset of Verizon, which they refer to as Verizon in the paperwork) +.@tapbot_paul oh I assume it’s all of them in perpetuity, but we *know* I’m monitored until at least July 19th! +I have Verizon, and I’m sure you’re all dying to call me now +@tapbot_paul what do you think all this “secret interpretation” stuff is about? They give themselves the OK according to whatever loophole. +@tapbot_paul about ten years ago, according to those who have spoke their conscience +@mattblaze oh I would assume so. The dates are very arbitrary, like a calculated deadline based on a rule. +Damn the American government’s electronic dystopia. http://t.co/Xr9xVMSFdn +@ggreenwald @ErrataRob @trevortimm @guardian well, yes, the link could actually work, for example ;) +@ELLIOTTCABLE sorry, everyone is stuck at the age of which I first met them in my head forever and you were like sixteen +@ELLIOTTCABLE you’re 21 already? +.@gangstahugs I assume it’s poorly written because all the journalists and cops together couldn’t imagine the lock may be flawed +“They’re hacking the car lock in front of our eyes, but that’s impossible because it’s secure!” http://t.co/QCdlzTVOKG +@0x17h how gracious of them to encourage the field of study which most handily destroys them +Load up face recognition experiment, assume it will work on iPad... "press space to continue" Who lets scientists near a web page anyway +@Randominterrupt no... +@zephyrfalcon black, skintone, light green and dark green (I would guess the two light colors are what look the same?) +# 342429670341484544 +@xa329 no, no, no +Internet, I have a dizzy, please to send cure +@pervocracy @hypatiadotca do you know how often I’m accused of stating opinion as fact even WITH the disclaimers? +@RSWestmoreland @dshaw_ nope. Because no-one else would ever be able to make heads or tails of it anyway. +@PiersonBro well, conceptually, they're brass. But I only have four colors. +I made an art!! Like all good arts, it has exactly four colors http://t.co/EjwhFmcw1c +@0xcharlie @MarkKriegsman you're supposed to extrapolate to code more than two lines long :p +#uirage Pixelmator (cheap photoshop clone) has tools which aren't listed on the toolbar and you have to psychically infer shortcut key +*rolls over* wheeeere's emet version fooouuuuuurrrr +Wow why are people talking to other people in person so much today *checks work mail* *error* oh +@Saturn500Jared @trap0xf @BadMiiversePost yeah yeah, kids these days, don’t know how to operate record players either, America is doomed :) +How to prove you are a robot http://t.co/XwJsRHnv8D +@argonblue @MarkKriegsman (sorry if that sounded cross btw. I sound cross a lot in ASCII) +@argonblue @MarkKriegsman … without concern to the fact that almost every C program ever written won’t work as intended *somewhere*. +@argonblue @MarkKriegsman sorry, by real world I meant, on the computers we actually own and compilers we actually use in every day life… +@argonblue @MarkKriegsman turns out in the real world that doesn’t really matter +@BadMiiversePost @trap0xf so we’re making fun of kids for being young huh +@jcchurch @MarkKriegsman well we know who here has never tried to hide a backdoor in a codebase +I am required to inform you that the monstrosity I RT’s from @MarkKriegsman proves the superiority of binary analysis over source +@MarkKriegsman w w What are you doing +@spacerog @hdmoore @hellNbak_ and that doesn’t make it relevant to the events of the last 50 years; we need new agreements +@spacerog @hellNbak_ @hdmoore I don’t think anything to do with computers should be reasoned about with reference to a treaty from 1648… +.@inversephase I eventually realized that the waterfall render algorithm skews its coloring based on the y-dimension of its region… +@spacerog I read it, it sounds totally reasonable and minimal to me +@hypatiadotca it’s a tumblr thing, and tumblr is a teen thing +@brandonmblack no I’m pretty sure I’d be adding value. Too many customers don’t realize how much they don’t know about programming. +@spacerog heaven forbid hackers be asked to practice human decency +@Neostrategos @JastrzebskiJ I’m under the impression copy-pasting customer code is a no no :) +@invalidname pretty sure that all went to court and it was decided they did not “steal” anything ;) #flame +@spacerog how does a residential building in a first world city just up and *collapse*, that is a travesty +What major API? I’d tell you, but sales told me to stop giving this particular company such a hard time… +@RSWestmoreland in theory our system is completely automated, my job is checking the automated output for improvement areas +Googling for documentation of a major API: “A description for this result is not available because of this site’s robots.txt” #helpful +My job would be so much better if I was allowed to pass on my written opinion on code to the customers +@chort0 funding ! +Hmm, figures - the one time I remember to generate character indexes before I need to text search, they’re already generated +@tshanks or in my case, not surprised at all anymore ;) +@ryanqnorth hi, I have a cool name +@TwoLivesLeft hmm yeah me too actually +@tomslominski that’s more than just a little bit unrealistic. There’s no such thing as a secret signal. +After-midnight work in progress because I couldn't sleep... let's try again. http://t.co/asfjglMmmp +@sanguis3k it does, despite me putting it in a microwave tonight, but it’s ARM. +@MarkKriegsman http://t.co/DJjAuUjBzI +@chc40 well, it *is* open source, so that’s more tacky than risky +@vogon http://t.co/O0BIfKqA1z +Via protected: phpbb losing its cool over an emoji. http://t.co/Bq7i8nWJH4 +@JZdziarski @nycjim @Reuters and what the hell do you think they’re doing, picnicking ? Last I checked they’re clearly resisting +@XTreeki … was it the cake unicode that crashed it? +@JZdziarski @nycjim @Reuters yes, far too passive, being afraid to take on hundreds of cops at once ! +@XTreeki may I repost this, o locked account +This microwave (the new one, not the faraday cage) is going to #uirage hell for continuing to beep after the door has been opened +@areur00t now that’s just silly… oddly my iPad will not render them +I’ve employed a highly scientific notation for signals: line, dotted line, squiggle, wider squiggle, and bright red squiggle +@CrappyCodingGuy #neverliveitdown +@Em_Space_ heheh :) from what I’ve seen of tear downs, the exact parts and their emanating frequency vary between production runs +@solardiz http://t.co/yju8jrJxyo :) +@gangstahugs pending radio science! +@0xcharlie according to the rest of twitter, you were taught wrong +@tapbot_paul no it goes to 1.7ghz +@unixronin one of those is too easy, the other too hard ;) +@ptolts the computer's emissions! +@tapbot_paul my install process was get the nightly of SDR# and try each of the zadig drivers until one (of three iirc) worked +@ptolts nothing! But it's made of shielding +@MakagiAkito radio science ! +It's working http://t.co/SgCdFnTGTe +oh yeah new followers: I kind of have this hobby of seeing what weird things I can pick up from electronics with a radio ;) +@octoqueer @xepheraux shielding :) +"Just throw out that old microwave", they said. "What possible use is it..." http://t.co/WkGHytvS29 +@HaydnJohnson it’s a good idea that desperately needs that pending service pack. +Yeah so about those discount radios: don’t jiggle the connector http://t.co/oVlrlWmIcy +@stillchip @0x17h this is a real signal; the artifacts on this radio show as thin lines down the middle of the baseband. +@_larry0 yeah, plenty of apps can artificially generate this sort of noise, but this is *artisanal* white noise sourced from local waves +@_larry0 it's just generic analog white noise, very clean/quiet in FM +@bmirvine too low, you need one of those shifter thingies +I have no idea what's generating this white noise at 74.25mhz but I find it very pleasant to listen to +@akopa I've been convinced it's oiler +@innismir I ordered ten, both to have spares and to give some away +I should probably figure out how to pronounce Fourier huh +# 342064308924059649 +Oh look at that the noise gets stronger when the screen gets darker... https://t.co/oe8WvKQu7d +@Mr_Reed_ yeah, and Dutch and Danish people are, on the whole, extraordinarily tall +@Kufat not from my timestamp’s point of view +@jennifurret iTunes backup / iCloud backup? +@sneakin I’ll keep them in their very benign wrappers. “Mini digital TV stick” +@coolacid I doubt it gets more generic than a $10 USB stick from china with no model number on the packaging :) +@Mr_Reed_ ie I am taller than almost every woman on earth. But I don’t feel tall. +@Mr_Reed_ it turns out your definition of average may be skewed in comparison to the global population +You better hope I get accepted to Defcon because I’ll bring all these radios with me… +@aquavitaecoll I didn’t get this to tune into television :) SDR just stands for software defined radio +It came with a CD! Who dares me to install the TV viewer app +Here is the exact model I ordered — paid $12 ea from someone with free shipping, but some merchants go down to $10 http://t.co/PPyDNUjyOo +@silentbicycle http://t.co/PPyDNUjyOo +The $10 radios work! The antenna is just especially bad (but replaceable) +Wow, we really do need a tumblr for Kerry being awkwardly tall http://t.co/K5erAcOybW +I like to swap out USB devices while the computer is asleep and imagine it having an identity crisis when it wakes up +@Balgan they’re FC0013 according to the description, we’ll see :p +@Balgan I just got on Ali Express and searched for the cheapest SDR that included antenna. +zomg these plastic cases aren’t sealed, they just open! This packager has my undying admiration +@bhelyer @kevinmarks (yes, I assume we were all joking :) ) +@bryanbrannigan they went halfway around the world safe and sound, so good enough +@kevinmarks and we got labor protection laws first; we need to get more protections for people all over the world +Speaking of, my box of radios from China has arrived. Do you reckon they used enough tape http://t.co/mLUPw8K2ij +First world problems: being accused of not caring about factory workers, based, presumably, on the audacity of being born a first worlder :( +@RadCurmudgeon @decivilized @0x17h thanks for telling me what my beliefs, practices, and convictions are! PS you’re wrong! Blocked! +@RadCurmudgeon @decivilized @0x17h sorry I can’t hear you over the sound of how awesome and apolitical radio astronomy is +It’s time to quit an argument when the other person says science is bad because sometimes it changes its mind +@0x17h I assume they just have a twitter search for their group to keep abreast of it +@RadCurmudgeon @decivilized @0x17h but I just came here to giggle at the Primitive Twitter Tribe and get back to studying science +@RadCurmudgeon @decivilized @0x17h I think you’re extrapolating a bit if you think I think that’s totally okay +@0x17h well… yes. You are definitely a magnet for argument. +@RadCurmudgeon @decivilized @0x17h I don’t remember the gun part the last few times I was homeless, but that’s my first world privilege… +@decivilized @RadCurmudgeon @0x17h (nor are all miners coerced or left in excessively unsafe conditions) +@0x17h I only accept anti-technology arguments written on vellum by a small, privileged literate class +@RadCurmudgeon @0x17h @decivilized Foxconn is the most awful thing but that doesn’t mean its abuse is an axiom +@aaqian @eevee but then it’d be pink…! +@decivilized @0x17h … but you must realize that complaining about technology on the internet just sounds very silly. +@decivilized @0x17h why would I have a theoretical understanding of someone else’s random personal beliefs +@eevee what’s with that giant pikachu with the ditto face? +@dontrebootme it’s about the [censored] that happened in [censored] +@decivilized @0x17h … says… someone… on… Twitter…? +@zackfreedman hmm, well, if we go by everyone who self-identifies as such, you’d be ruling out most of America as a market +@SamusAranX it wasn’t broken in Melee though; unless you considered it over eager to assign suicides +The self-kill algorithm in Brawl is so broken. I had the most unambiguous self-kill imaginable and it still gave a point to an NPC +.@nelhage curse you, typo gods +Finland gives baby clothes and sanity supplies to all expecting mothers so no infant is without necessities http://t.co/g2r5H46GTR +@kivikakk you encountered an alternate path ghost of yourself +(I feel sorry for anyone who seriously thinks “a magazine said this is against my religion so I can’t” rather than “*I* am against it”) +Today on stupid headlines: “Can a Christian watch Game of Thrones?” Yes. It is not against the Terms of Service of HBO. Next +@innismir because #uirage is the unix way +@panther_modern *sits a little further away* +@panther_modern so deliberately spreading *dangerous* falsehoods hoping that people will fall for it is cruel. +@panther_modern the difference is: you can’t BLAME a child for doing something stupid. +@panther_modern yeah, because there are no children on the internet, only stupid adults +@donicer the fact that blog is read by many children and they know it is especially cruel. +@MalwareJake I don’t know, I was just googling and found that gem :) +@shoebox \o/ +@m1sp mrrrr +@ErrataRob yeah I’m sure the *three years* in jail without trial thing was just a paperwork error… +@bobpoekert sounds like they’d get along with my laptop manufacturer Spacer +Also, be sure your exception logger has at least five lines that, themselves, can except, and be unprepared to handle any of them… +@RSWestmoreland nor in a continuous loop :) +Yes, don’t worry. No one ever lost hours or even days of productivity over a freak race condition… +Documentation comment: “do not worry about what others call the race condition. Thousands of people have run this code successfully” +It’s one of those “the database is being so slow I might as well get in a two-minute Brawl match between queries” days. +@theonlyrobjames @itsbeno http://t.co/xrf7I9Wq9x +@ReinH I use chrome, but this was specifically for a JavaScript-intense web app, where safari gets roughly 2x performance +@grp in this case I was trying to go to http :// foo rather than http :// foo/page?option +Geez, Mobile Safari’s URL history is useless. Couldn’t remember the domain of the tab I *just* closed. #uirage +@itsbeno the ghost of a bard appears to congratulate you on having better luck than he. +@itsbeno there’s a Forsworn camp in some ruins with a waterfall into a pool — if you jump from the top and land safely, +@thegrugq he started ranting about kids not caring until we were like “I… was two years old… … and I wasn’t born yet…” +@thegrugq my philosophy prof asked us to share our memories of the day the Berlin Wall came down and received a room of blank stares +@thegrugq technically +@ElderScrolls I was pretty pleased when I jumped off a waterfall on the run from trouble, hoping I’d survive, and a ghost appeared to me +I am free to post this link. http://t.co/aSVo6ID2bA +@Kufat http://t.co/BrvcZG8j7Q! +This variable naming scheme is making me uncomfortable: delete(myhead); +@nicolette8174 yes, because it needs both context and translation +More proof that the most advanced and persistent threat is children with their parents’ iPhones https://t.co/7MXFhfria4 +@TwoLivesLeft 😃 +@thegmanehack https://t.co/N9Bj6awL58 +@und0xed @botnet_hunter I was already considering whether I should torment mongo some more… +Attack surface, attack surface everywhere http://t.co/PsHa7GWNqi +@shalecraig this one was the target of one of the citations needed on last week’s xkcd what if blog :) +Citation was a horse who won sixteen consecutive races (citation needed) http://t.co/TsoEeNfaI9 +@ZOMGitsCriss I can access it, including Romanian version, here in US… +@MarkKriegsman I want one… +@doctortovey @vogon “AMEN” +I had professors like this— wouldn’t let you cite anything dee-gee-tal. Even if your paper was on internet censorship http://t.co/c5GxW3Vjbq +@Neostrategos I feel like this may be construed as exploitive rock star behavior… +@kivikakk \o/ +@Neostrategos and my house is… not on twitter! But really I have a perfectly good husband for the but he won’t go get one +@Neostrategos there’s a Starbucks in the strip mall with the Chipotle, in the plaza with LL Bean, and in the Barnes and Noble :p +@jensechu well, I was going by the pikachu hat mostly… +Would anyone like to bring me a white mocha from Starbucks while I hide under this blanket +@jensechu … I get the feeling you like pikachu +Today is my first really bad panic attack in a while. *hides under blanket* +@emptythevoid from that photo, it looks halfway accomplished +@kivikakk be careful. I found it seven years ago, and look what happened. +@maradydd how did you get 1080p? I plugged mine in to hdmi and it just stretched +Reminder that US drone cockpits run on Windows, the primary target of generic malware, and pilots have infected themselves before +Hmm hmm, I've actually been in Jefferson's bedroom, both of them, the main mansion and the summer getaway. +hottest pic I found on imgur tonight http://t.co/6Jifwq5WOM +@USSJoin whaaaaaaaat *flop* +@USSJoin sezwho +"Hello best friend!!" "hey... would you say a staircase is terrain, or an object?" We solve the big problems in life +So all defcon notices go out by June 4th huh... *refresh* *refresh* *refresh* +@geekable well we can’t all be as awesome as I am *bro pat* +@geekable what are you then? +@afreak @dakami (it’s the star) +@dakami are they both 18 yet? +@nrr … but not on iPad :( +@Havokca err… how worried should I be that you know? +Smash Art: he’s right behind me… isn’t he http://t.co/VKa6Nku0FP +@mrHithron I can’t find it now but an ex-employee had a rant on his blog about it +@sciencecomic condolences. +@mrHithron it was implemented literally in the 90s back when no one cared and they don’t want to change it now… +@tapbot_paul my fav was where it would randomly return that I followed someone when I did not. Other way is understandable, but that?! +@tapbot_paul well, yes, but not in such a *byzantine* way. Some past bugs were utterly baffling +@Pentanubis I’m nothing if not judgmental of other people’s code +@tapbot_paul am I the only one who lays awake at night wondering how Twitter’s architecture got to be this way +@tapbot_paul and it’s just… sitting there? It looks like a simple redirect would fix it. +@botnet_hunter oh, I have a paid account <3 +(The bug is very most likely on Twitter’s end, but I am not one of the fabled OAuth Witches.) +@botnet_hunter you know you can host on imgur without submitting to the gallery right :p +Wow I can’t log in to imgur via twitter because it triggers the two-factor then bounces me to the mobile site and 404’s +@focalintent @Viss all glory to the hypno-byte-editor +@m1sp_ebooks :c +@innismir I never get calls from those people… +@Xaosopher I know, I'm not shedding any tears +@DrPizza man with how many thousands of times I've seen DH flip out over that game... I really just have no interest +Also I died because I wanted to visit a star system just because I liked the name. It was full of bad people who do bad things. +# 341703689058258945 +@demize95 eve, and just to be annoying, this guy went around and put small bounties on a bunch of people. +Though I wouldn't be surprised if he then has one of his friends just kill him to reap the bounty. Sigh... +Someone just randomly put a small bounty on me... so I put a huge one on him. #notinthemood +#tweetfleet never mind, should have figured that was the socket being lost again. +#tweetfleet so my probes got stuck at zero seconds remaining... I can't cancel and I can't recall them. +@m1sp they’re pretty objectively the least secure thing ever done in the name of efficiency +@und0xed @BrianFargo it would be reprehensible of me to suggest dropping tables, so I won't. +@und0xed @BrianFargo I seem to recall being angry that they went the extra unethical mile and laid them off during a big media event +@kyhwana @kivikakk php is *all about* the configuration. In multiple places. With runtime reflection +@brentrubell as for why unix scripts tend to break on spaces, well. That’s a problem older than most people I know… +@brentrubell you have a space in the directory name again :p +@indrora okay, that sounds like expected behavior and doesn't interact with the core complaint that it's implemented as a fake function. +@brentrubell this perhaps? https://t.co/WMuPYY82tr +@brentrubell @stroughtonsmith it's choking on the space in the pathname. Either remove the space or edit install.sh to cope. +@kivikakk ... ... ... .... +@comex then define a new syntax rather than overriding existing syntax and returning a parse error for completely, utterly valid syntax +@comex The fact that it converts the argument to a string is both a given and immaterial. The point is, it keeps calm and carries on. +@comex php > if(defined(NULL)) { echo "true\n"; } else { echo "false\n"; } false +@indrora Which sounds like another WTF, but this author wonders how does that change the underlying point? +@mof18202 more effective than heatsinks +@comex I clearly use "in my OPINION" several times to mark where I think the underlying design is bad. +@comex what's still wrong? Is anything I said about isset's behavior factually untrue? +Dear twitter engineers who follow me: <3 <3 I rage because I care Dear PHP fans who follow me: >:) >:) I rage because I revel in your tears +@comex I discuss in the article why it's like sizeof() except worse. +@ameaijou I guess "well don't design it that way next time!" doesn't cut it ;) +@chriseng @focalintent http://t.co/c35oHQkYaH +@comex and that justifies a massive exception to the general structure of the language instead of just returning false? +I notice my profile page is completely gone. Thumbs up for Twitter +PHP Manual Masterpiece: all about the majestic wtf that is testing if a variable is set. http://t.co/c35oHQkYaH +@focalintent but it already contains the sentence "unless the PHP parser has solved the halting problem" +@focalintent it's running a bit long. +@afreak ;) https://t.co/JYW8tqJ8dV +@hirojin http://t.co/hkXeEfRus0 +*opens tumblr* *switches to the php hate blog* *starts typing* +@weskroesbergen thank you Dr. Twitter! +@laneshill I'm allergic to that so no :p +And yes I totally trust Dr. Twitter over Dr. Google. +MEN AVERT YOUR EYES: anyone here other than Dr. Google ever have a period with no blood? (I'm *definitely* not pregnant.) Do I have the sick +@marsroverdriver maaaaan that battle is lost. “Whom to follow” sounds weird to the modern ear, defeating the point of correctness. +@matthew_d_green I’m confounded as to why only the calories match the display +@kivikakk that’s a Ruby on Rails mantra iirc. +@0x17h because of a requirement of the Mormon religion, and a similar mindset infecting other religious groups. +@kenanbolukbasi I promise I’m 100% for your right to protest and I’m glad to see your internet seems to be working… +@kenanbolukbasi “… I can’t trust this journalist, because they include known fakes.” +@kenanbolukbasi I don’t mean “all the pictures of Turkey are fake”, I mean “in this particular set, some I *know* are fake, so…” +@lukegb @i0n1c o_O;;; +@mrHithron @mikko for terrible reasons. +@0x17h I need this power, see also @m1sp +@Jedi_Amara in a bin of Legos in your brother’s closet +@rantyben @_wirepair I’ve fallen asleep in a dentist’s chair more than once… +@jesster_king nope, it's definitely running with some help from wine (and the launcher is python) +@raudelmil my problem is that it acts short on CPU when I ask it to render multiple streams of sound simultaneously and it stutters +(I tried killing processes with names like coreaudiod, but that didn’t help) +I dunno what Eve (or Wine) does to OSX, but every time I play it, OSX struggles with sound processing until I reboot +(In cases where they do stay aligned, obviously. But some people just genuinely prefer TV over books and even comics which is alien to me) +The same thing happens in anime. “Ahh I can’t wait to see what happens next” “have you considered checking the original comic book” +I don’t read/watch Game of Thrones. But I sure do get a kick out of people freaking out over plot twists published on paper ages ago… +@lindgrenM Chrome totes does it in both iOS and android +@almightygod unless you count being toooootally wasted on the road to Damascus +The mobile UI paradigm of displaying webpages in grayscale when they’ve been RAM-reclaimed has made me hate grayscale webpages :p +@dangoodin001 @ErrataRob (since it *is* an online game, downtime on a weekend is A Really Big Deal) +@dangoodin001 @ErrataRob yeah, but it sounds like generic “reassuring the customers we’re doing something” +@dangoodin001 @ErrataRob if you prefer conspiracy theories maybe they really botched the next patch and are blaming the downtime on skids ;) +@dangoodin001 @ErrataRob I think it’s just technobabble for “stopping this DDoS has not proved trivial and we’re doing all that we can” +@ameaijou also it’s not necessarily the wording of the manual that is the problem, but the subject matter which it must cover… +@ameaijou … how much of the php manual did you write ? +@dangoodin001 I interpreted it as “this DDoS is hitting us harder than we thought it could with current mitigations” +@0xcharlie *refreshes mailbox* *refreshes mailbox* +@jinkee @ZoeQuinnzel @christinelove here’s a god place to get some ideas… http://t.co/BTyk2ZWMAz +Me, reading the php manual: “this part sounds promising for finding something dumb. Hmm, okay, okay, that’s reasonable, aaaand… there it is” +@0xcharlie @chriseng don’t you work for some kind of big company now? +@pdo I keep cryptographers prisoner in the basement. +DH has his headphones on so loud I can clearly hear the words from here. And he’s sleeping. +@chriseng @0xcharlie so when’s the rogue talk where we roll out of the hotel’s parking garage in new wheels? +@ternus be… be strong ;-; +@The1TrueSean http://t.co/4KckdNybVp +@eevee @matingmind but yeah, most evolutionary psychology is just making a sport out of confusing genetics and culture +# 341343096124088320 +@eevee @matingmind Yeah, I saw that one already: “signs suggesting possible food addiction indicate that writing papers is too hard!” +@herodfel @EurosportCom_TR a marathon, as dated on that page. It keeps showing up in everyone’s protest photo sets. +@matingmind @eevee okay I’m convinced this is actually a troll account peddling parody science now +Attn: If you include the following image in your Turkish protest photoset, I’ll have to assume they’re all fake http://t.co/knnJZMJAd6 +@AnnabellSciorra @PolicyMic @C_Rice3 @WeldPond if people could stop mixing in photos from marathons, that’d be great. +Okay, that’s bizarre: Slashdot now looks like 2011 rather than 1997, but only from a mobile device. +@rbf_ … apparently it’s their mobile skin. +What happened to Slashdot?! It doesn’t look like 1997 in there anymore +@matingmind Classy. Note: sarcasm, laced with contempt for falsely conflating things. +@zeightyfiv my hypothesis is that most of the “being gay is a choice” crowd are secretly bisexual and don’t know it. +@thegrugq we call them parking lots. Totally different! +@thegrugq cars don’t have parks silly, parks are for people +@dakami I’m sure there are more toxic things, but it does put pure asexuality on a pointless pedestal. +@j_evns @MyRainbowNinja @ioerror @CourtneyPFB apply palm directly to face +@Packetknife *twitch* +@m1sp @kivikakk let me know when you’re on Skype and we’ll find out +@techpractical I have it easy because I up and married a manly man +@m1sp @kivikakk giiiiiiiiiiiirrrrrl you need to get yo’self a new ring-ring +Of course, most of the people who said that to me when I was young also deny that bisexuality is even an actual thing so whatever I guess +@chriseng Florida Man, Florida Man, does whatever a Floridan can +@Kufat I honestly don’t even know if the Wii-u has an sd card slot, never mind where my sd cards are +@CyborgCode news to me and pretty much all my friends. +@Kufat it would actually probably look worse and is a LOT of effort to get the dang thing off the machine and into jpeg? +When someone says “men and women can’t be just friends!” what I hear is “bisexual people can’t be friends with anyone!” :’( +You can probably tell, but - playing Smash Bros alone, I’ve been taking a lot of time to pause and admire the artistic details +Smash Art: no I’m not going through Eve withdrawal look I have spaceships right here #tweetfleet http://t.co/DlJ4hI9U8Z +Smash Art: “I’m sorry, Electrode. I’m breaking up with you because of your explosive temper.” http://t.co/NDJx4guEE0 +@niallgdonaghy you want a photo of my kitchen from the outside?! +@HorribleCoders @m1sp it’s really amazing to read it aloud with the appropriate amount of bewilderment +@yacCz … I’m sorry :( +@tinyblob yeeeeeup +@focalintent @unalmas is it a Saint Bernard? I got to tussle with one once, it was great fun! +View from the kitchen window — life is good (even when my game server is down) http://t.co/CXDOwpM3Hb +@LeafStorm then it sounds like what one wants to use is Symfony itself :) +I don’t know why, but large animals seem to like me. One time I caught a dog’s eye from 100 yards and he ditched his owner to sit with me +@bascule @_larry0 @egyp7 @snare @MarioVilas “emits a warning if an unknown cipher is passed” The wrongness of this surpasses my vocabulary +@vruz that is the idea, yes ;) +@TakoArishi @eevee eeveengelism +Hello new followers, if you haven’t read this article on the design of PHP, please do so at earliest convenience! http://t.co/GHsl4VRgjz +@nelsonmenezes @Tesseraction also, this is required reading. http://t.co/GHsl4VRgjz +@nelsonmenezes @Tesseraction bad design compounded by bad documentation compounded by bad management compounded by many years. +@TakoArishi you should have seen me when they ddos’d Minecraft +I will drain the freaking blood of whoever is DDoS’ing Eve when I want to play. I will find you. I will END you. #tweetfleet +@elad3 maybe it’s regional depending on what database you hit, as many other people see it too +@elad3 empirical evidence disagrees http://t.co/9fqxXLUd9Y +Github is down. Eve is down. What is a weekend even for then +@rhodesjason @Tesseraction a good web language *wouldn’t even let you* use “old functions in bad ways.” +@wbpre cutting corners where it “should” be safe is setting up future disasters. +@nelsonmenezes @Tesseraction actually I’m a professional security code auditor for several languages. … PHP really is that special. +@anthonicaldwell the NES is inherently tile-based; 60 times a second you have a chance to change tiles. +@anthonicaldwell that’s not really how the NES’s GPU works, and it can only render so many sprites horizontally before it fails. +@doeg @vogon @dijkstracula that’s a very Dutch-sounding name, which I suppose explains everything ;) +@doeg @vogon @dijkstracula I just checked, the E in the author’s name stands for… Ekkehard. +@doeg @dijkstracula @vogon is this real life +@WhatsTheBigIT http://t.co/Rqdemzkdv1 +@anthonicaldwell number one rule of NES development: minimize sprite use. always. +@Rhythmreactor I spawned within its borders, actually. :p +@AdamTReineke oh I can believe it! +After-midnight art sharing! Pixels I have so far for the little NES project that's been kicking around my hard drive http://t.co/46DmPH6F5w +#tweetfleet 2809 players - wonder if I'll ever see the universe so empty again :p +@_wirepair no players involved, I'm just tormenting the AI in Brawl +Ten kills in three minutes, it’s more effective for my score to do 3v1 than free for all - because then they all come running towards me! +Smash Art: “I’ve made a terrible mistake.” http://t.co/tTZiSuDTwA +@brrian well, my bestest friend plays too +@nonstampNSC because they’re still at the “well that’s what my dad said” stage of reasoning :( +@StillCountCrows @indrora the idiots are the ones who say “I don’t need to make my app secure” ;) +@StillCountCrows @indrora if someone can get an SQL query working, they’re already not “idiots”; they just *don’t know.* +@StillCountCrows @indrora no, there are a lot of people who don’t understand that PHP is setting them up to be hacked. +@duckduckgo @41414141 gasp +#tweetfleet kindly inform me when my space ship works again, until then I am smashing things in Brawl +#tweetfleet AHHHH SERVER DOWN AHHHHHHHH +@indrora nope! Why would they? How would they? +@SAlbahra the very name is rather evocative of supreme confidence, isn't it? By which I mean: always used prepared, very hard to screw up :) +@Balgan even so - I haven't actually played brogue, but Dungeons of Dredmor goes for a parody vibe (and has "real" graphics) +# 340977723969265664 +@voltagex http://t.co/ix6SPGEKEk +@thereals0beit … I am very passionate about hating PHP. +@thereals0beit which is fine for native assembly macro wrappers like C but PHP claims to be a gods damned web language. +@thereals0beit it wouldn’t be their fault if a programmer had to go way the hell out of their way to cause this. PHP is ownable by default. +@thereals0beit Of course it’s bad. And they DON’T KNOW and the language does none of the many things within its power to help them. +@voltagex the “bad tutorial” I learned from was written by the inventor of PHP. The problem goes straight to the core. +Remember: most of those devs genuinely have no idea what the dangers of throwing GETs into query strings like that are. #blamePHP +@Tesseraction PHP: from zero to owned in more trivial ways than one can enumerate. There’s a reason I preach against using it. +@Tesseraction yes. Note: not literally every single one of these is unsafe. But most are. +.@rrrrrrrix well… not *all* of them are exploitable. So more like 77000 +Hey guess what time it is again? That’s right: “github searches which show up trivially exploitable code” time! https://t.co/x4TBnUmVUk +It’s pretty much the most dwarven let’s play imaginable, right down to hating excess migrants and… the ending. +An exceptionally well-done, in-character Let’s Play of Dwarf Fortress, with original art http://t.co/rDpipM5mmL +@eevee @gwestr that was the joke, wasn’t it? >_> +@eevee sure, sure, and they cast it to float and it got buggy and this was their genius solution +.@eevee probably because they noticed that using a float was buggy! +My iPad’s battery is draining absurdly fast, and when I took it out of the case, it’s practically melting. Hmm… reboot time. +@Balgan that’s Fuji apples to Granny Smith apples :) +@sanguis3k Bug: geese lay iron chairs +“Burning monsters will not ignite terrain while they are submerged.” (Yes I’m reading https://t.co/BHuXmfJZd1 ) +“Fixed an issue that could cause foliage and rings to appear as colorful emoticons under Mac OS 10.8” #roguelikeproblems +@benwmaddox “Polymorph will no longer generate liches or phoenixes, to avoid odd outcomes with phylacteries and phoenix eggs.” +My hobby: reading bugfix logs of games with complicated AI subsystems +@vogon oh boy something for the TSA to confiscate +@Viss … this imaginary guy really cares about yoghurt parfait +@0x17h (but only if they’re straight) +@0x17h are you… are you cat factsing a tag +@thegrugq they play Null Dereference. The only winning move is not to play +@vogon when I was just making an artwork improvement suggestion. +@vogon … so then I was annoyed that the bot is trying to make some profound comment on the worth of redditors’ politics, +@vogon well, my comment was “I think you should tone down the colors in the background…” :p +Weird reddit bot encounters: replies to comments beginning “I think” or “I believe” with “wow! I never thought of it that way” +Gender identities are like a sports team. Most people support their home team and that’s fine – but there are other options, including none. +@infosecjerk @Packetknife “why don’t you drink?” asks everyone else of me. Gee… +@Packetknife autocorrect went there +@Packetknife hmm trying to think of a pun concerning being overweight +@bSr43 yay +@michaeldinn @_wirepair I apparently have both, simultaneously. +@michaeldinn @_wirepair uninstall *what*? Chrome itself? +@_wirepair pasted some text and it silently failed… +@abby_ebooks this tweet makes too much sense, please revise +@jesster_king kill -9 frontmost app +@m1sp ... so I did! +@m1sp http://t.co/RgOcBZvw9Q +# 340586398841204737 +@janiczek yeah... except I can never remember what that middle squiggle is, either! +@Ammoniak ninety-one degrees fahrenheit is the exact opposite of brrr, my friend! +@Xaosopher ..... Super Smash Brothers? :p +@Xaosopher hahaha, I hate Cards Against Humanity ;) +@Xaosopher July Twenty-Somethingth through the first few days of August +@marginoferror yup, got my first two levels of that, third is in the queue +@Xaosopher that reminds me... don't let me forget to bring moisturizers to Vegas this year. Which I had never needed before in my life. +@marginoferror I am All About The Drones, it's basically all I've been training, Drones is 5, Scout Drone Operation will be 5 in four hours +@marginoferror vexor +(I was just mining in the background while I worked my way through some IRL technical reading, in the combat ship I was already in.) +Eve Online: apparently if you go mining in an un-miningish-enough ship, people will assume you're too poor to buy one and give you money +@alethenorio kill-nine the frontmost app. Critical when an opengl program bites it +@m1sp *polite proddling* +@thezeist I assumed this would be about pointers… +@_larry0 people who live in places where water freezes in May should also not own a pool +(The problem was that a minimized full-screen program crashed and took over when I accidentally alt-tabbed to it) +@gu3st yeah if I could do that I wouldn’t be looking up commands on a second computer. +@rikardlang yeah - because a game crashed. +Someday, I *will* remember "command-option-shift-escape" without having to look it up on a second computer #osxproblems +@jb33z um………… no it’s not? Because I’m not fat. I’m objectively not eating too much. +@jb33z but I basically *never* have three meals a day +@jb33z well my soda intake is almost zero if that’s what you’re asking. Mostly drink juice. +@m1sp wat +@savagejen grats! +@xa329 probably because I’m already speaking English :p +@DrPizza I ate a frozen personal pizza for lunch every day for four years in high school. It’s part of my genetics now +@qDot lol overnight shipping +@jb33z it turns out lots of calories is a good thing when you only remember to eat once a day. +I deserve a medal for walking to the store in 91° weather to buy a frozen pizza rather than have one delivered to my door. +@securityskeptic @WeldPond one can’t rectify a decade of lax security by moving from three patch cycles a year to four. +@splicer83 @LarryBundyJr nah, you’re misreading it: if the price lowers before release, Amazon, at least, won’t shaft you. +@securityskeptic @WeldPond Enabling Java is never okay. +@FVT too little too late. Java is a mature project and it’s been Oracle’s responsibility for a few years now. +In particular, Oracle wants us to be impressed they went from 3 security patch cycles a year to 4. Vastly more secure sw than theirs does 12 +I’m deeply amused by Oracle’s optimistic spin on Java’s security https://t.co/9z3nSfPiV5 “record high of security patches!” +@chort0 a ha ha ha haaaaaaaaaa!!! Forwarding this to coworkers… +@Md1986ok TinyKeep game +@thegrugq that reminds me — you’re coming to Vegas this year right? I promise not to stare at my shoes. +@chort0 context? +@tinyblob @gsuberland wh… wh… why +@i0n1c @geekable I’m so glad those 7,994 filenames were inlined before the graphs. +@xkeepah D: +@DrPizza I am aware of humans who use them, but I wouldn’t call them a mainstay… +The “drunken bishop” algorithm behind visual ssh keys http://t.co/VV3iZGCYkf +@DrPizza oh it works, just not in a way I find particularly productive. +@trap0xf Waffle House is open during the day?! +@thezeist yeah so I guess my real complaint is the sudden implementation of special snowflake image picker +@ra6bit @mattblaze @eevee oh it absolutely counts. The grisly detail was amazing. +@sanguis3k yeah — apparently the issue is that since I’m paying pounds the bank thought I was suddenly *in* England +I got an automated fraud prevention call! It wants to know if I made a purchase in the town of Internet, United Kingdom +@ternus … your traveling salesman algorithm is broken… +Kickstarter is claiming my card was declined. I can log in to my bank and see their one dollar test charge just fine. No notices. Whaaaat +Also I have a critical case of the grumpy tonight 👿 Disregard my intense misanthropy +@bhelyer I noticed that they’re pestering me, that doesn’t mean I care about them. +@bhelyer no, I don’t use their code, I have no use for their code, it would not affect my life if their github was swallowed by Cthulhu. +@bhelyer I posted about being annoyed by yet another open source project that treats all passerby as having infinite time and interest +Hooray, more open source maintainers who believe that I owe them my time for a project I don’t care about. It’s your crummy code buddy +@DarthNull @xkcd @zygen they already covered why you can’t do it *from earth’s surface*, but we can put a projector in space… +Chrome on OSX has this new marvelous feature where it flashes my wallpaper when I change tabs! +.@zygen I’m really surprised America doesn’t just project a giant star spangled banner on the moon yet because who could stop them +@zygen I need to get a bat signal so I can complain when twitter is completely down +@mojinations yeah, I'm on autopilot, that's the idea :) +@_larry0 no, cookies are banned in favor of salmonella-safe cookie dough, which is superior in every way. +Happy compromises: reading a programming ebook while flying between points in Eve. +@PhilippBayer actually I really need to play Daggerfall (it came out when I was too young to be allowed to play games like that) +@PhilippBayer so, do all missions in broad daylight, got it. +The definition of metagame is: the NPC offers you a mission he says will be easy. The promised reward is remarkably high. Better suit up... +@m1sp @ELLIOTTCABLE I think "Blameston" is my favorite star system name yet. "Yeah sure pin it on Blameston just like you always do!" +@Packetknife I had a feeling it was her :) +@Packetknife hi +None of you objected to my assertion that I am supreme leader of earth - and that makes it true. +As supreme leader of earth I shall now ban sounds that strongly resemble IM chimes and dings from all techno +# 340251824403656704 +@sneakin I’m not playing around. I was actually trying to see the page. It gave me json. +@_JerryWood chrome on iOS, yeah. +My local bookstore is two floors… and has a built-in Starbucks… which sells cheesecake. #help +@puellavulnerata but the bondage is the best part… +@kyhwana aside from the occasional psychotic breakdown, yes :) +Click link to iOS App Store, receive spew of json. Yes, yes this is helpful +@kyhwana that was the only justification I was aware of… she was a bit too sheltered, I think. +@kyhwana the best part is she ASSUMED he did illegal drugs. The shadiest thing he ever did was give a 20yo a beer +@kyhwana this same furry friend of mine also liked to drink though and my mother seemed horrified I would hang out with him +@kyhwana nope, never had a drink in my life +@kyhwana I’m not a furry though :p I also don’t remember at all why I had a cat ears headband that day +@kyhwana … when I walked in with kitty ears she gave me a look like I said I was gay. But that didn’t happen yet. +@kyhwana well, see, there was this boy, who I was friends with, who was a furry, and I don’t know exactly what he told her about it but… +@waruikoohii I think she was mostly afeared that the young man who had told her about being a furry was corrupting my innocent youth +True story: my mother found out what furries are the same day I happened to come home in a kitty ear headband. +@kyhwana considering who the author is, I’m surprised that text isn’t really offensive (in my opinion anyway) +Hmm… furries, when did you wake up and realize you’d gone mainstream? http://t.co/3tPTtEvRR7 +@geekable @dinodaizovi do you take me for a fool? Pinkie Pie’s cutie mark is balloons +@geekable @dinodaizovi why does your pony have mp3 buttons on her pastern +@TwitterForNews well… that escalated quickly. +So apparently the twitter client suddenly needs location services because they implemented a special snowflake custom image picker +@grp also why don’t my photos just, like, not have GPS tags from the pov of a sandboxed application without location services? +@grp except that it just started this yesterday. +And the license on the back says that using the card is consent to the terms, but maybe their lawyers said to get that signature anyway… +My visa gift card is “not valid unless signed.” To what possible end? There’s no name on it. It’s not registered to anyone. +@gangstahugs I am, but it didn’t do this until yesterday. +@JZdziarski actually the phone is on 5.1 and the privacy tab was added in iOS6 or I assume so as I can’t find one :) +@JZdziarski http://t.co/cfbOpvoXNQ +@JZdziarski and you’re updated? Because I updated yesterday and it won’t let me do it. +@RSnake you realize I mean the doll I am holding right? Though I will double check with the Pinkie Pie you are probably thinking of :p +Oh, and taking a picture on the spot is different from accessing photos already stored. The prior doesn’t need location services. +People saying it doesn’t: you forgot the instructions on how to make it not do that. +Also: Twitter for iPhone now requires “location services” to use photos. It didn’t used to. Whaaaaat +I've been endorsed by famous hacker Pinkie Pie to be a judge for the Pwnie Awards - inform @dinodaizovi http://t.co/TZHidq4oUn +Got in a semi-argument on reddit and the other person used the word “presunpyious.” So now I imagine they’re an 8yo sounding it out. +@mike_acton I’m not sure. It’s just a gut reaction. I guess they have more history than most kick starting groups, though. +@mike_acton though clearly they’re not going to have any trouble convincing people to trust they’re double-good for it :p +@landley it came out a few weeks ago. +@mike_acton — beyond all shadow of a doubt before they presume to ask for more kick funding. +@mike_acton I’ve kicked dicier things for sure, but I still feel that a company should completely knock a kickstarter out of the park — +@Thedeadlybutter I think with Kickstarter one has a responsibility to backers to prove, beyond ALL DOUBT, you’re good for it +Should Double Fine really be doing a second Kickstarter before the first one is fully delivered? I realize it’s different teams, but still. +@innismir and that’s 100% totally okay with me. The burden is on cops to be adults, not on children to be adults. +I really love @verge ! The way their web page crashes my iPad’s browser EVERY TIME has doubtlessly saved me hours of reading. +@focalintent so, about my program that calculates pi… +@innismir what you want to bet a 14yo had no concept that shrinking away from unwanted touch is “resisting an officer”? +@innismir I’m not impressed with police who feel the need to arrest every child who gives them lip. That’s all it comes down to. +@innismir and he insists he was busy holding a dog at the time, how else would his arms be? But that’s not very threatening in any case. +@innismir and the point is — IN AGGREGATE there is an endless deluge of stories like this; a pattern of police overreaction. +@innismir the police freely admit they tackled him because he tensed up and turned away. Not because he sprinted or punched them or w/e +@innismir yeah, and the correct response is “excuse me, we’re still talking here.” +@innismir I’m not die-hard anti-cop. I come from a cop family. But I’m sick of their “everyone is a threat at all times” attitude. +@innismir if they can produce evidence that he had a gun, a knife, or an armed drone, I’d be happy to consider he posed a threat to officers +@a_greenberg no name? Is this literally a sample? +@innismir I am far more concerned with what is right, just, and true, than what officers can squirm out of being reprimanded for. +@innismir that’s nice. +If you can’t react to a teenager shrugging you off in a calm and reasonable matter, you *REALLY* shouldn’t be a cop… +@landley yes…? That’s the point. The book on the right implies that Linux is “rare.” +The language used by the police officer to justify tackling a 14yo holding a puppy for “resisting” is terrifying http://t.co/2VtwzfnLS1 +@dinodaizovi @0xcharlie ooh ooh pick me pick me. +@dinodaizovi “gravitational challenge” is my new euphemism +@ra6bit yeah so most of the TSA works at the TSA because they're not very bright +@ra6bit well come now everyone knows not to run with scissors. But who’s taught not to run with guns? +@TheNRAO hmm… I can’t quite put my finger on it, but this looks photoshopped. +Oh gods it blinks http://t.co/6wxADRbS4o +@Kufat http://t.co/teRRLv0bwq +I’ve actually had difficulty getting through the pointers book, and little things like that make me hesitate to recommend it… +@elliottcable hahaha. Well I’ve only lost one ship so far, not counting the ones the tutorial gives you. +@elliottcable I try. I also try not to blow all my gifted money in eve and I seem to be succeeding XD +gdi @github how am I supposed to taunt mongo developers now +http://t.co/3dXb6kOzf8 <—> http://t.co/zt11lTdg3p +Lady sees my "geek" shirt... sweetly asks me if I work at Best Buy. +@philsplace of course things will happen. That doesn't absolve the man of losing a gun in a playground. +@mr_chip @mkb I have no intention of hurting them, but they seem to lack this idea of their own personal safety +@kcarmical @_FloridaMan they do, but it’s straight up impossible to catch everything +(Everyone: whether he’s legally entitled to conceal carry is entirely besides the point that he brought and LOST a gun in a children’s park) +@spacerog right Such as… … a private park for children maybe? +“Gosh, how was I supposed to know a private park for children swarming with security guards doesn’t allow concealed guns?” - @_FloridaMan +@_larry0 I don’t think google takes longer than seven days to patch critical security vulnerabilities they are aware of +@info_dox err, not any more than before? The previous policy was 60 days +Google revises disclosure policy: if they find an in-the-wild exploit against your stuff, they will go full disclosure after seven days +@kivikakk hmm yes… I recognize some of these lines. +@mattblaze pretty sure that’s old speak +@Jono @0xcharlie he meant security researcher Jon Oberheide, who goes by ‘jono’ on IRC :) +@0xcharlie oooh someone’s in trouble. But are you sure that’s the right @Jono ? :) +The only way to cope with our commute is to model other drivers as video game enemies lacking malice rather than rational actors +@m1sp here’s another item for your juvenalia collection http://t.co/g0M7fMXghl +@amanicdroid @0x17h so THAT’S what I was doing wrong! +@_BluShine @femfreq then I'm not sure what we could be disagreeing about. +@m1sp ding ding ding http://t.co/RnAfkd73cU +@_BluShine @femfreq they are causing actual, material, measurable problems against her free speech, not just making fun of her. Harassment. +@aaronsnoswell @m1sp he is a boy from a fictional world without very many computers :), and he's a bit... dour. +@_BluShine @femfreq this story has been going on for a long, long time now, since the moment she started talking about the project. +@m1sp I'm drawing Katarosi now and she looks extremely dorky :D +@m1sp and tiny! Look at that wittle 16px Governor of Dour Town and his cape +@meursalt GIF AS IN GOD AS IN GOD'S OWN PRONUNCIATION +@elliottcable Every girl needs a CS hate blog +Also, metro seems to have... problems with gifs. +Pixel art for my slowly, slowly progressing NES project... http://t.co/mGKhddRnq2 (attn. @m1sp ) Hooray for extreme color limitations +@m1sp I'm working on Glory in the Thunder in an actual thunderstorm :D +@Forkk13 *checks profile* > Texas Insert generic remark ;) +Rewrote one of my fancy orchestra pieces as chiptune --> https://t.co/w2KWJXvrV9 +# 339859865839218688 +@Mordicant it’s… considering there’s no profound reasoning in the source code, I’d consider it borderline firing-worthy. +@Mordicant 10% of the time it will finish the exception and log it… 90% of the time it just silently returns. +@solak how did we get e-dialog’s? +@Office @MSFTnews how about the time it took to choose a wildly inappropriate, faddish font that clashes with the background? +@hackerfantastic well, renting a hotel ain’t exactly free. But in Black Hat’s case, they’re billing corporations to subsidize Other Things. +@_BluShine @femfreq … why do you suppose there’s a difference? +I think this is the first time I ever mouthed “what the HELL” looking at a single line of code https://t.co/jPDLjwNx5t via @cowtowncoder +@puellavulnerata sometimes they’re a gods-darned parody of themselves +@puellavulnerata … where is this from ? D: +@m1sp as harm none. +Freed. That word always looks wrong. Freed. Onwards my noble freed +@spacerog read my next seven tweets or so :) +@0x17h old junk is 32-bit computers that don’t act their size. +@sleepydashie they’ll make ones with integrated glasses when they go into mass production +It also looks further away than I expected it would. +Yes I could see it through my glasses, but it’s a bit faint and can’t sit right in the sweet spot. Too blurry to read without my glasses. +@sleepydashie awkward and difficult to keep lined up in the sweet spot, and it fades the image a bit. +However @focalintent has this sweet astronomy projection app on it A++ +Obligatory “I nicked Google Glass from a coworker” selfie. Unfortunately it taxes my weak right eye a bit much. http://t.co/WWnXIoNu4K +@Zavie I like how it's very explicit that this is the COMMONWEALTH of Massachusetts we're discussing. +It's been seventeen seconds and I'm not deluged by British people telling me clearly it means Boston, Lincolnshire... it must be tea time. +Google. http://t.co/tngY4zoXxi +@jenniferbn2 curse these oceans (really, Nevada is about as far from my house as England is, but it's a "domestic" flight) +@tomkrall only if I read newest-first. +@r3d4ct3d and with a pinch of luck, I will be presenting, so you will surely hear a lot about that :p +@r3d4ct3d since when do I not live tweet ANYTHING. +Reservation for Blackhat/Defcon hotel made. I'm not so broke I need to beg friends for crash space anymore :) +According to @ternus I have a doppelganger in Israel of all places. +@PiennePN @zenalbatross idk the people who survived Jurassic Park I guess +@emptythevoid doesn’t fall in enough holes to be me :) +@WTFuzz \o/ +I should request a week off just to blow through my reading queue. +“Hardcover: $92 Paperback: $70 Paperback edition not available in US or Canada.” That’s racist against rich people! +@_larry0 online. SHARE50 +zomg zomg half off at MIT press I don’t even know what to choose there’s so many +@blowdart I am aware. The point is still that the cartoon exists, not what they think of it :p +@comex haha yeah … +@blowdart sure, they mistakenly call MLP a “minor” success. But the point was that the cartoon exists. +Cartoon about a boy who gets a super hero ring but it turns him into a girl. I reckon I approve. http://t.co/UwrvrE0Z4r +The new <s>gtalk</s> hangouts UI built into Chrome is astoundingly space-inefficient. I say one word, previous line scrolls off #uirage +@AIRmusictech uhh I don't have a product key. Whence the original complaint that this is confusing. +@briankrebs what How are they even a paper then even personal blogs do that +Oh look. Apple AGAIN approves pirated, duplicate copies of an app already in their store. http://t.co/oaEPnrYWPm via @TwoLivesLeft +@zygen … nice. +@brokenhegemony @reoccupy @0x17h “all you vast majority of people who aren’t white men need to join the white men ie humanity!” #pro +Newbie @DarrenPMeyer hates Cygwin. He’s woken up in hell here at “it’s a Visual Studio project with a perl and tcl/tk dependency”-code +I had a horrible nightmare. My house flooded and all my electronics were destroyed and when I went I the store they only had Blackberries. +@attritionorg nobody’s too young for Squirrel Girl! Err… +@attritionorg what are you writing, fan mail to Squirrel Girl? +@_wirepair wut. +@mdowd now accepting donations to fulfill my dream of visiting Australia +(Just means I have to deregister the duplicates - I don't lose the book...) +Apparently I've downloaded this eBook on too many devices, which really means I uninstalled and reinstalled Kindle repeatedly +@mdowd but but but The saddest face! +You know, my little kanban app for Windows 8 has been done for a long time. I just need to make a logo for it... +@_wirepair @aaronportnoy it certainly puts my fans into high gear (if you know what I mean) +@Xecantur except the article doesn't have anything to do with strength of crypto :) +@_wirepair … who zips a 7zip?! :p +@_wirepair but Where is download +@mdowd nooo! +@m1sp_ebooks yay! +@bascule @miuaf “looking for the sort of coder who doesn’t take flak from fig trees” +@qDot what did I just read +@m1sp I found a pacifist player with this big long in-character bio. It's adorable. +# 339513178935422976 +@QuantumG it's not about trusting *me*. It's about handling customer-sensitive data. I don't go around looking for unlocked Gameboys. +@QuantumG so do code reviews, audits, and everything else that it's our job to do. +@QuantumG all I did was type in "don't leave it unlocked!" on the search screen. We handle sensitive data. +The Unlocked Fairy finds an unattended iPad. The owner returns and does not seem thankful for the Unlocked Fairy's magic blessing. +I take it the recycling bin is full http://t.co/5qiBzEKsOf +@kaepora have you solicited feedback from users? +Gmail is 502’ing… I didn’t do it this time +@casualmalexlfan @qDot I’m… guessing someone forgot to write a separate error text for “name rejected for vulgarity” +@echristo Ubuntu. +"A debugging session is active. Inferior 1 [process 2508] will be killed." Wow gdb that is a really harsh thing to call my program +"The program 'gdb' is currently not installed." But nasm was? Go figure. +@lintile it's... it's so pretty th-NO BAD ABADIDEA YOU HAVE A NICE GREEN LAPTOP FOR WINDOWS +This cutesy real-time roguelike with a focus on enemy AI is almost to its pledge goal --> http://t.co/3U5WI7niqX +@lintile the pink laptop still works just fine despite its little accident and I paid all of $50 for it brand new in the box ;) +The dynamic duo @MarkKriegsman and @focalintent are working on LED driving algorithms and cameras just can’t capture the vibrant range +@jgeorge inquire with @focalintent +I'm disappointed how pale this looks compared to IRL... typical Veracoder desk accessory. https://t.co/fXwzD63u7d +http://t.co/kvXomcqRQH I don’t agree with the final conclusion “don’t use cryptography.” We NEED it so bad. Use well-tested solutions. +@BenLaurie the first thousand are always the hardest. +I walked into a meeting and the wall was a flat screen TV with four webcam views of remote coworkers #thefuture +@m_cars I didn’t even realize the game would let you keep buy orders going that you couldn’t pay. +@_wirepair pro. +@focalintent Ohai!! +@QuantumG so when you sell the UI warns you that you're selling for 99% below average price but you're actually right on the money +@QuantumG in eve the "going price" for some cheap things is highly skewed by people trying to sell for way too much +Though the scams where they trade an item in exchange for your money AND your item seem to be largely the fault of a poor interface. +Example scam going on right now: "I'm selling for 600 isk each! Below local average!" Divide total by units, they're 6000 each. Duh. +Eve Online: flew out to Dodixie to watch the scammers. Who actually falls for these?! +@akopa it's not haskell that's bad and I know it. It's just that my creepiest stalker ever was a fanboy :p +@rantyben .... *slow clap* +According to the pi calculator I just wrote in asm, pi == 9.909090909090909090909090909090909090909090909090... . Hmm. Might need some work +@amanicdroid you're a doctor so it must be true +I need to glue a sign to my monitor: "if your asm is segfauling and you don't know why, YOU FORGOT BRACKETS AROUND A SYMBOL" +@JZdziarski @comex no, no, the reptilians. (Also, it wouldn't be a firmware patch, probably just a plist tweak) +Hmm you know it's been a few weeks since I've heard about anything getting ddos'd is it exams time or something +@stillchip @schrotthaufen no, it's straight asm. The process terminates and the OS reports a floating point error. +@schrotthaufen @stillchip well, yes, but the wording itself is what I am complaining of :p +@stillchip except I wrote the asm div instruction myself :p +# 339160383761825792 +Computer I agree that I divided by zero but I really don't see how an integer division instruction raises a floating point error +@snrson in my case it went very smoothly as it was actually a summer session for gifted teens +@panther_modern @Private_Dev most either fail out or give up after the first year +@panther_modern @Private_Dev in my experience, in the US, in a class of 20 you'll probably have one or two cheaters, but only at 101 level +And yes, I both taken CS101 and TA'd it :) +@panther_modern @Private_Dev how common cheating is in CS actually depends very much on what country we're talking about +.@Private_Dev the sorts of students who cheat at CS 101 frequently show a startling inability to remember the structure w/o a template. +In this case it was an otherwise complete program that omitted "int main() {" and final "}". That would probably stump most CS 101 cheaters. +@puellavulnerata it's a completely 100% working answer. It just omits main() { } in an otherwise complete file with includes and all. +I suspect some stackoverflow answers contain deliberately noncompiling code, to stop kids from simply copy-pasting as homework. +@dancapper @xthread @dakami you set ONE COMPUTER ON FIRE on camera... +@MarkKriegsman whenever "rep stosd" became a thing, which I'm guessing was 386. +@MarkKriegsman ... hey it's still cool even if it uses an operating system because it works on multiple operating systems w/o modification +My asm program has one unit test: did it segfault y/n +@DaKnObCS I know! They won't reassign me their IP block for some reason... +@DaKnObCS twasn't me! however did you actually notice that though :p +@thoward37 they better well read mine. Because my comments are hee-larious. +How self-praising are my comments in an asm program allowed to be? Is "look at that smooth devil" a little too far? :p +I think Amazon and Google are conspiring to hide the one page I want from the preview of a sixty dollar book +@comex kids these days, all think their elders are crazy… +It’s a beautiful day to go for a walk and have a mild allergic reaction to all the freshly cut grass. +@comex bet what's a coincidence? The behavior has objectively changed and I don't remember updating anything. +@comex then suddenly on Friday it stopped doing that and the VPN has not shut down no matter how long the device sleeps +@comex My VPN used to always aggressively shut down and I complained about it on Twitter a lot +@pmjordan don’t have a carrier +In particular I’m confused because I’ve never seen an iOS device silently change behavior before without an explicit update step. +@pmjordan I use the built in VPN +So did Apple push out a silent change to how my iOS VPN works? http://t.co/MOHWsnq4AA because it’s been days and it’s still going +@mattapuzzo @jenvalentino @thegrugq you better bet your bottom dollar you’re effectively a criminal in this day and age. +@m1sp hugglepoke +@rantyben yes, the difference is that everything I do, I do stone cold sober... which makes it even funnier IMO. +@zanelackey should I laugh or share sympathies? +@rantyben aaaaaand there it is. +@rantyben I feel lie this tweet is your version of my “I’m going to try something with a lighter” +@dakami well, the universe is expanding, so everything has to be moving apart. +@borgmamel @0x17h I think that’s more a basic limitation of storytelling format +@attritionorg and they say *my* after-midnight tweets are weird… +@rogueclown @niteshad the ad was insinuating that inorganic minerals are useless to your body because they’re inorganic, duh! #iron #irony +I find Haskell to be triggering. Yes, in the tumblr social justice sense. Loooong story, creepy dude. +* Start reading a paper on a spigot algorithm for pi * Surprise! It’s actually a Haskell propaganda tract http://t.co/ewWhGP9PDr +Just saw a health nut ad to “learn the difference between organic and inorganic minerals.” I guess they want me to take amber pills. +Check chapter 13 for what these people are advocating for “active defense” of intellectual property http://t.co/AN4N5C4RIh (hint: malware) +@Raxphiel I've never reached the "second job" stage of any game, actually... +@mdowd I pay you to audit code, not grammar (I don't pay you) (But you're still welcome to audit my code anytime) +@mdowd It's called "Victorian subtitling" geez http://t.co/D68NTFLkeA +@EntroX -- @m1sp and I briefly joined, but they were very suspicious of us and wouldn't give us any actual fleet location info XD +In which 0xabad1dea writes a love letter to her space ship. http://t.co/5Xf0wYa8jy +@comex I don't feel like teaming up with random strangers though :) +Also, today my husband said: "wow, you're STILL playing eve?" Apparently this was genuinely unexpected. +I think I need to start a corp in Eve just so people will stop inviting me to theirs... #antisocial +@JackLScanlan here’s your cookie for reminding me I don’t know everything +@WhiteMageSlave zomg did you know that Resetti says something specific in Brawl if the camera leaves him behind +Smash Art: I summon the dark fury of the Reset Button http://t.co/gBUwDA3QN9 +@Mr_Reed_ probably was back in Virginia. But yes 25 is exactly right :) +@Mr_Reed_ I like that you assume this was the year it came out — for all you know I could be sixteen :p +True story: when I was 14 my grandmother said I wasn’t allowed to play Morrowind because it looked too scary. So I raised the gamma. +But graaaaandmaaaa video games are SUPER educational. I can sing the whole Brawl theme in Latin +# 338804188068864000 +A sad chiptune https://t.co/oxaGvZMhLd "Not another hymn!" - @inversephase in about thirty seconds +@raudelmil No, it disappears *when you click Not Spam*. +@AIRmusictech your website is confusing and you should feel bad. It should say VERY CLEARLY, UP FRONT I can't just buy Ignite. +@infosecjerk @puellavulnerata they can’t implement in a bad context what they don’t know. +@PresidentHoodie peanut butter pop tarts?!? Oh gods want why doesn’t my store have them +Anyone know @jonmatonis ? His account has clearly been hacked and it’s just sitting there… +@MrToph well it’s not wrong. +@kvegh syncing flags is hard! +@pchengi and is *no longer on the screen I was just using to read it* +Eve warps your sense of scale really fast. “These maniacs have TWO space stations orbiting the SAME moon! How can they live so crowded” +@friestog so what?!?! It's fundamentally broken UI. It doesn't just violate Principle of Least Surprise, it throws it on the ground & spits +I should emphasize: *disappears*. It completely vanishes from my sight. It's gone. Poof. No more wordsies for me to readsies +@friestog it DISAPPEARS. I was STILL READING IT. +Dear gmail: 1) view legit mail in spam folder 2) instinctively click "not spam" 3) it disappears and remains "read" DO YOU SEE THE PROBLEM? +@puellavulnerata they were really popular in the 90s for blinging denim jackets :p +@vathpela you're actually close enough to my house to have done it so are you joking or +@puellavulnerata a bedazzler is a glue gun for children for sticking rhinestones on things. +Should I even ask how the beer box in my living room got bedazzled? +Someone made a smiley face out of sale stickers on the shopping cart return sign. I like this human. +Eve Online: I destroyed a shield generator! It dropped some loot! It dropped ... ... ... ... ... ... ... dairy products. +@Ruzvay @Kufat still counts ;) +@Ruzvay @Kufat a bad password is a bad password is a bad password no matter what technology it is implemented with +Ten points for style, minus three for spelling, anonymous hacker. http://t.co/XS5Tr12Wb3 via @Kufat +@m1sp I see you there. Stop being so afk on teh chats! +@savagejen it takes anywhere from weeks to years. I’m pretty sure the letters are normal to ward off being pestered about it +Sleep in late, receive dream vision of new static analysis algorithm. Good deal. +@rantyben in my opinion, only specific threats against specific people count as “not free speech”; that image not specific enough. +@kikitheman it helped me a lot in the Angry Newly Unconverted Phase. +@thegrugq @snare what did you do to make youtube prompt about opening in an external application +@thegrugq @snare #jokeexplainerexplainer +It's two in the morning and my biggest problem in life is: but who wrote the anonymous IOCCC entry of 1984? +@wimremes sigh +@wimremes wut, what did they confiscate ? +I wonder who at @StateDept got stuck tweeting after midnight on a Saturday night ;) +@snare your question answers itself +@m1sp o.o +@YourMomBot you have no idea +@sanguis3k for me that would be a fail :p +@Ionustron ... so I think the secret of my style is a stalwart refusal to actually study the "correct" way to do it ;) +@Ionustron I have no idea what I'm doing, I just am make square go wooOOOooOOOooo :p +@Ionustron well I already finished it --> https://t.co/AFbYL4C5XR <-- it's just another little RPG loop :) +@Xaosopher sure but is it legaerrrr ethical? +@Kosta_Kosta_ yup. Though safe to assume it refers to my husband lacking further context :p +I need to get some sort of decibel-based shock collar for Dear Husband and Delightful Housemate. +@tpw_rules played with it once, didn't like it... I actually prefer a few simple generators I have good control over... +@demize95 well you can never 100% avoid morons but you can come reasonably close :p +@demize95 basically, the "advice animal" parts attract the most morons. And there are actual MRA boards, of course, it's a free country. +@demize95 oh they're there. It's entirely a question of which subreddit you're on. They're distinct mini-universes. +I call this a "one laptop battery chiptune" because that's how long I spent on it. https://t.co/AFbYL4C5XR +@sakjur oh and the backpain. Oh and being accused of dressing improperly, wearing a normal t-shirt. +# 338444267460648960 +@sakjur It's like being really fat but only in one spot. Fitting nightmare. +@sakjur Indeed. If I go to the store, most of the dresses etc simply won't fit me. +@apiary I'm writing music! +On that note, I am probably the only reddit user who subscribes to this subset... http://t.co/c0jpzyflkc +@chead ..... :( +Never date someone until you see what subreddits they subscribe to. +@lindgrenM we've had zero problems and everything is great :) +Chiptune problems: halp my square waves are canceling each other out +Once again, half the company is here playing Drunk Quest, and I'm playing Avoid Drunks So I Can Write Music Quest #antisocial +Frustration that this Saturday is slipping by because it's rainy and I'm low-energy. Suddenly recall that I apparently have the Monday off. +Whoever wrote all the wikipedia entries on the different musical keys seems to think that music only happened in the 19th century. +@akopa well in my opinion their priorities don't make sense so no :p +@wgl8 and yes, at one point, a few years ago, in America, my electricity was going out a few times a week. +@wgl8 my access to water, electricity, internet, and health care went up when I ditched Ruralia. And so did my extra money. +@ameaijou the number of times I will need to *offhandedly* know the size of a criminally dangerous cipher is likely zero :p +@ameaijou it’s a certification that one holds a general USEFUL knowledge of IT security that can be put to use in general practice; +@ameaijou @veorq and is frequently accused of being… behind the times. Like so. +@ameaijou @veorq CISSP is a certification to do a job, not a four-year degree in theory. +@oh_rodr @thegrugq fortunately they let you count the nodes and don’t make you guess if that’s 500 meters away or 200… +I just wrote this very long rant on generational spending differences and tumblr failed to post it. Probably for the best. +@thegrugq I actually don’t have a license. Because I have poor depth perception. +@benwmaddox I like computers. +@me_irl I think I just searched Bluetooth keyboard mouse on amazon +@8bitstatic I have no opinion, actually… +@ezchili you northerners and your summer “evening”… +@angelXwind why would I want to make my most secure computer not very secure anymore? :) +@angelXwind nope. Never. +@Xaosopher rural is the worst +@jjarmoc fair +@8bitstatic in my case I had to run an efi recovery utility after Mint installed to put windows back on the boot list +@8bitstatic that laptop dual boots. If you get one with EFI instead of BIOS, do some googling to make sure your distro will dual correctly +Of course, I had to move to make the idea of not having a car viable. Don’t be both rural and a lover of technology. +@8bitstatic anyway I play Guild Wars 2 on low settings on my $300 laptop and it’s okay +@8bitstatic Skyrim is one of those games that’s a five-year benchmark :) +(Yes, I understand that if no one bought new cars, there wouldn’t be any used cars :p ) +@angelXwind the VPN is completely separate from the wifi, it aggressively shuts down more than the wifi does.m +@8bitstatic for $500 you can get a laptop that will play most games, but not Skyrim and other very intensive ones +@Kufat the bus, remember? Because we escaped rural hell. +@8bitstatic iPad, laptop, more laptop, more iPad, etc. +(We have a car now, and it’s used. Why do people even buy new cars?) +Older folk called me a “big spender” for buying a $500 computer twice a year, while their car payment was $500 a month and mine zero. +Quote from this article of several months ago, on the mystery of why people like me put off a car as long as possible http://t.co/JpyAq7XQbQ +“I don’t believe that young buyers don’t care about owning a car. We just think nobody truly understands them yet.” — only a marketer… +The true risk of Google Glass http://t.co/TLnOG5aIcq +Larry Page: “your dang privacy is getting in the way of my goals!” Eric Schmidt: “Fight for your privacy!” http://t.co/d6oQ4vwCFj +@myfreeweb I promise I would not be expressing confusion if I had just updated my iOS. +Two people suggested “ghost of Steve Jobs” within ten seconds of each other. +All of the sudden the iPad is keeping the VPN up across device sleeps. What did I do right? +I’m glad I found out DH invited my *manager* over for cards before I went downstairs half-dressed +@m1sp and your very next tweet… lol +@m1sp slice of life comics, which are popular in Japan. +@SarahAnneWillia @WhiteMageSlave agreed, stranger. I had a serious case of zora-kin at the time +@0x60 nope that’s right :) +I'm still working on that Paper Mario/Touhou cover btw. But I have no idea if I am make sound good??? https://t.co/CoHXbzxTRb +oh no I restarted Chrome and for some reason the font size of the URL bar is very. slightly. bigger. #uirage +@comex you can come fly with us :) +@m1sp "The Caldari would rather die than have their plans go to the Gallente!" They hate us for our freedom +@xa329 newest and it's a kindle edition, chapter one first volume, immediately before the section on unicode +Does health insurance cover Gamer's Elbow? +@PiersonBro I think the game is using the premise that everyone has essentially unlimited CPU, so there's no uncrackable crypto. +@PiersonBro well presumably computers aren't going to get twice as fast every 18 months for the next *several thousand years* +@PiersonBro don't know; cryptography has accomplished what was assumed impossible a few times already in the past century. +My favorite thing about Eve Online is that they have instantaneous interstellar communications but never solved the key distribution problem +@spacerog Adobe is Not As Bad As They Used To Be and Verizon screws up our billing Only Occasionally. +@H0lyPuma oh, are they still around? +@comex is so +@comex Google! So lackadaisy and inconsistent +@oh_rodr I see you there +@0x30n is utterly perfect in every way! +Oracle has bad process. Twitter is flaky. Apple is too secretive. Nintendo can't design a system interface. MS is bloated. Who did I miss? +Oh my gods this is too precious a tweet accusing twitter of being flaky was sent to drafts +Sometimes I say something negative about a company and someone who works there favorites it and I'm not sure what to make of that +I like the Windows Internals book's fantasy that most users and *administrators* will never need to edit the registry directly. +Intel rings 1 and 2 are very lonely. +# 338081226126659584 +@Kurausukun things that should take a minute like adding a new wifi end up taking fifteen to twenty >.< +@Kurausukun once I've spent seventeen years navigating endless menus that take forever to load and get to the ACTUAL GAME, it's fine! +@lukas2511 but the file does exist, and it does have a colon in its name. +SCORE!!! Free skillpoints in eve for downtime while I wasn't playing! +@m1sp ring ring ring ring ring ring ring melissa phone +So Windows has a "taskbar" and "task manager" but nowhere else are they called tasks ... Not quite #uirage but a bit odd. +@thegrugq it's one of those things you need to get in touch with your feminine side for +@fwsudia what did I break now? :D +@sakjur yup +Those asking if the Sprite is from my purse: it has been on my desk as long as the snowflake design suggests. +@k0ck4 mostly online video games. +Somewhere in the Wii-U is a cute and simple touch-driven operating system who wonders where its life went wrong +@dangoodin001 @vogon @jeremiahg I was under the impression Apple paid for that rather than develop their own at the time. +@jeremiahg @dangoodin001 I think one could reasonably say IE is included in the Windows licensing price +@Kufat *hug* +@Dykam I like the way you think. +@blowdart well they ought. But it turns out I do wear other colors ;) +@spangborn http://t.co/g8nKwpVe6P +@blowdart I’m a large men’s, so, extra large woman’s, which many don’t stock. +@sebasmonia @MeryPopppins un poco. +@blowdart yeah so I'm 5'10" and of stout frame - the drop of Swedish really shows +@blowdart depends on how big the girly t shirts go, as I am probably a lot taller than you think :) +@chc40 we sent them our notes on how the Kuaiyong pirate utility was circumventing drm +@grp @tapbot_paul I have your shirts muahaha +I thought my radios had arrived, I got the box half open before I noticed the return address was 1 Infinite Loop http://t.co/mfsNF7Adlx +@Wxcafe I'm allergic to cola ... +Things found in my purse just now: just the bare necessities http://t.co/1es3FQl2mQ +@tpw_rules lol I see you missed the fun... check my profile's image carousel +@tpw_rules Terrible Netbook, Post Fire Event +@maxtch well I gave up trying to fill it with wax after it caught fire. +!!!!! The USB port STILL WORKS if you push hard enough +@maxtch sure, but it's nice that it has both wifi and ethernet and three USB ports and a keyboard and mouse all at the same time +@maxtch heheh - I was trying to follow the tutorial video for sealing wax - but clearly I don't have that expert touch :) +@innismir @MrToph do you mean A Bad Idea or Toph? +@MrToph forgive the sales department, for they know not what they do +If you create "aux.exe" (one of the forbidden filenames) in cygwin then run it in cmd.exe, the error is that it violates your trust settings +@JZdziarski also, it would be 8 + 3 + no null terminator in a real dos implementation :) +@ColinTheMathmo well, I’m *trying* to break software, it’s just breaking before that software even runs :) +@JZdziarski it’s Cygwin. +@nullwhale true story: my cubemate @fredowsley tried very hard to light my ponies on fire with thermite. +@blowdart it's not my fault over twenty years of development wasn't enough to prepare Windows for me +cmd.exe has no idea what to do with this thing either. +@mof18202 cmd.exe doesn't get it either. But I somehow created this file in the first place +@vogon The filename, directory name, or volume label syntax is incorrect. +So I can't delete it because it doesn't exist, but I can't create it because it already exists. That's... that's deep, Cygwin. +I think I broke Windows http://t.co/A3SzStVk5e (again) +Well I’ve discovered new and exciting ways to break the filename before bit9 even gets a chance to refuse to run it +@p0wnlabs it apparently does, as I get an error in the form of (primary name) (unicode square) (alternate stream name) is not approved +I’m probably the first person to ever complain of this: Cygwin’s bash doesn’t support autocomplete of NTFS alternate stream filenames! +@no_structure yes, but simply running them from in bash generates that bash did a no-no +@dangoodin001 clients like tweetbot support “mute” which omits their timeline tweets but not their mentions of you +Bizarrely, the ‘mv’ command in Cygwin triggers bit9 as me trying to execute the argument, but not ‘cp’ +@apiary I can compile anything from source and run it but that’s cheating +Trying to break bit9 for sport. I feel like there must be a way to leverage the fact that Cygwin is approved +@duckinator @m1sp I can’t even dislike them I’m just so puzzled +@nullwhale lol bonus points if they’re bootleg +@spacerog @SEA_Leaks4 @itvlondon in all fairness, twitter two factor doesn’t work with all British carriers. +Babies: why do you throw things ? +A statistically significant portion of my trips to the mall include retrieving something a baby threw when the parent wasn't looking +@NationalistPony just remember… it was the taming of religion and in-group supremacism that gave you the freedom to be openly gay. Bye. +@kcarmical gods yes. No I don’t know why. +Because I’ll be honest “I like nationalism… and Twilight Sparkle” is just a bit outside my notion of great tastes that taste great together +Am I a bad person if I poke conservative bronies like a science experiment to see what they say +@NationalistPony @m1sp but you *do* put the word “nationalist” right in your handle, so you know, individuality, not your thing I guess? +@NationalistPony @m1sp Yeah they like the same things most humans do it turns out including choice concerning family +Honestly I would be in favor of Google getting its own root at this point. It’s probably just IE6 and Friends holding them back… +@NationalistPony @m1sp @tomblackuk oh wow again! Telling his fellow gays what gays prefer. The idea is to have the FREEDOM to marry, silly… +@NationalistPony @m1sp oh wow I think the entire point of that letter just went whoosh +Google is changing all certificates, including who the root is, on August 1st. Go adjust your hard-coded scripts http://t.co/QuEJ57uOGA +@siuying nope, it began with “My hobby:” and had no at-sign +@hemantmehta for another, that’s an extension of the “but you have nothing to hide, right?” justification of invasive surveillance +@hemantmehta for one thing, it’s basically impossible to not make a mistake, especially if you have a business or organization. +@Tomi_Tapio I found it physically difficult to tap on this photo to expand +@m1sp @profoundlypaige @JackLScanlan http://t.co/sm6XIlnf3v apparently we’re all peas in a basket or however that saying goes +Twitter isn’t letting me tweet with the “you can’t send a message to people who aren’t following you” message +@m1sp @tomblackuk @NationalistPony you don’t need to be gay to make a mockery of institutionalized marriage! My husband and I do every day +@m1sp @tomblackuk @NationalistPony because religion and nationalism have such a good track record of accepting different lifestyles. +@tomblackuk @NationalistPony @m1sp this is incredible. In the most literal sense. +@m1sp @JackLScanlan they can’t be one species. Clefairy is from space! +@mdowd my job description is cheating at the halting problem +@FiloSottile the sealing wax caught fire, yes. +@FiloSottile I did +@thegrugq he was busy playing video games… he realized mid-match what I was doing +@geekable I never received the original tweet… +@areyoutoo -- until I had turned the filing cabinets upside down looking for an answer +@areyoutoo if someone called me and asked when a bridge that just collapsed was last inspected, I wouldn't say "I don't know" -- +@JastrzebskiJ hacking power sources? Who gave them THAT idea? +@puellavulnerata @dani0xE … the sad thing is I can totally see the DHS afraid that terr’rists might use video games. +Unfortunately the news link broke. But the Department of Transportation “doesn’t know” when the bridge that collapsed was last inspected. +@DrPizza that’s a funny way to spell google employee… +@akTed_ experiment aborted: laptop is on fire +“The Department of Transportation is not sure when the bridge was last inspected.” http://t.co/Ayk8qvDXA9—208760201.html +@_wirepair one does not simply optimize X +So I have a pirate skull stamp and some fresh soot http://t.co/CKcqA9IJXm +@Zavie testing if one can "disable" it with wax and remove the wax and it will still work +@rob_rix (really though I got it off Ali Express, search netbook and sort by price) +@rob_rix a) China b) your corner store, and also China +@malbolgia it's sealing wax; it's supposed to melt and drip. Didn't go quite like in the video. +Hello new followers. I'm actually a professional researcher. I swear. Stop looking at me like that. You set ONE pink toy laptop on fire--- +So when I called it the ultimate "burner" laptop... +@thegrugq @dakami the ocean, I usually see good sunsets at the ocean. +@Souley Classy. +Let's get an instant replay to see where exactly 0xabad1dea went wrong tonight. http://t.co/EGYRMjdEsc +.@_wirepair @IPvFletch I wasn't sure if the wax would hurt it or not. Which is why I victimized the Terrible Laptop +@dipidoo I did buy actual sealing wax. +. @IPvFletch testing an idea of filling a port with wax to temporarily prohibit it with tamper evidence +And yes, I stopped to take a picture of the USB port on fire before I put it out. http://t.co/5OR7lnlSxg +I lit the candle too well and fire dripped down with the wax and caught the plastic on fire. So, hypothesis remains untested +Hypothesis: it is safe to fill a USB port with hot wax. Result: I can't be trusted with anything ever. http://t.co/cs3YlIHTLm +I lit my USB port on fire +.@kyhwana in that case it's working +Bad news: either I don't know how lighters work, or it's dead. +@nikitab sort of... Google "smart book arch" +Good news: I *found* the lighter. He can't impede science. +Going to go ask my husband for a lighter for Science; bet you $5 he won't let me use one without adult supervision. +@_wirepair @jesster_king that reminds me, I was going to experiment with pouring hot wax into its ethernet port tonight +@essobi @jesster_king I think I misread it. Oh well, what's four dollars. +Correction- LIKE my $50 laptop, but with half the ram- $35 - http://t.co/TdjHGL1g7I - screenshots are fake- via @jesster_king - expires soon +Effectively irrevocable SSL certificates http://t.co/vXxpCFVLxe +@m1sp well with five drones I can now literally instantly destroy the weakest ships +@Kufat maybe you’re transethnic Irish +@ioerror you? Cynical? I can’t see it :) +@Kufat I suspect it’s because you’re tall. +I suspect there’s a strong correlation between not liking Luigi and being the oldest sibling +Bonus smash art: Luigis gonna creep http://t.co/Qt1tx84eyt +Tonight's smash art: slaying the dragon http://t.co/m4rUGPqmTH +# 337714438746558464 +@HyShai … if he’s not a pedophile then sure ? Especially okay if he’s not the only adult. +The message sent by “we’ll allow gay teens, but not gay adults” is “we’re hoping we can straighten you out before it’s too late!” +@herodfel I’m afraid this is an untested area subject to case law. Because Nintendo 64 ain’t have system updates. +@nickdepetrillo @dakami because it’s a) duplicating work so everyone loses b) frankly dangerous to not share ? +If I were a kid on a “turn timer” for the Wii-U, 75% of my hour turn would have just been used on that update and my brother would cackle +@nickdepetrillo @dakami and they should be… sharing… that… data…? Why WOULDN’T you +@blowdart that’s the legendary Microsoft efficiency +@blowdart also “another office move” is the most Microsoft tweet ever +@blowdart maybe I have a small frame geez +Wii-U has a serious case of Microsoft Time: “14 seconds remaining … … … <five minutes later> under one minute remaining” +Let’s play Wii-U: Do you want to firmware update? <yes> Close current software? <yes> Do you want to firmware update? <yes> +@jdiezlopez … I can’t even tell if you’re trolling :p +@SheriefAlaa_ see @NedGilmore : “it’s not Always On! Except your games won’t work anyway, so…” +I look forward to a datacenter outage causing my game to go literally dark because the light physics were being calculated server side +Why put a stronger video card on the Xbone when you can just back it with a thirty thousand node computing cloud? http://t.co/Zoyi7UC7y5 +@oh_rodr oh, I’m not disputing their utility; I owned their manuals when I was younger. +@nickdepetrillo @dakami that’s the sort of thing that it shouldn’t matter what “country” you’re in. +And yes, Boy Scouts have been expelled for being atheists before. To my understanding, it’s not universally enforced. +@oh_rodr @JimJam1394 anyway google “boy scouts expel atheist” for a bunch of individual examples +@oh_rodr @JimJam1394 … yes. +Boy Scouts of America: “Okay. You can be gay. If you’re a minor. And you had better be a GODLY gay.” +@dakami @sneakin I buy spaceship insurance… in Eve Online… +@kivikakk @m1sp and, it feels so much softer than ice, it’s hard to explain. +@kivikakk @m1sp I consider this genuinely unfortunate! There’s nothing quite so entrancing as falling snow +@dakami http://t.co/dH6infxZCF insight into our minds… +@Kufat I’m just going by https://t.co/ZWUSl52wFC +@dakami here’s a super quick approximation of what I see http://t.co/p5MFnJCCUI +@dakami IDK; I think the sun looks bigger at sunset but I haven’t seen many unobstructed sunsets in my life +@dakami I see it. My dad sees it so strongly he swears it cannot be in his brain but in optics no matter what scientists say :p +Little things that drive me nuts: fake equalizers in music players that mean “it’s playing” but they have no relation to the sound #uirage +@dakami the leading theory is that the illusion is due to the mind modeling the sky as a shallow bowl +@grayj_ @miuaf this thread was originally sparked by a job posting. It’s one of those faddish words startups use +@grayj_ @miuaf few people sit there and say “I’m going to use gendered terms today, because BOY am I sexist!” +@grayj_ @miuaf but that’s precisely the point. People don’t THINK about it because it’s never been pointed out what they’re doing. +@grayj_ @miuaf as a craftswoman: thanks for not wasting any effort on my trivial concerns. +@dakami most people perceive the moon to be dramatically larger on the horizon than at its zenith; you don’t ? +@Schabse no, that’s definitely an abuse of their terms :p +We blow up people in other countries because they pose an imminent threat, being only thousands of miles away and sipping tea at the time ! +@0x17h anything and everything. It's always there, especially when you're in an office with hundreds of machines... +@0x17h I'm not transmitting anything? +@DrPizza it's a scientific image of highly non-compressible data. YouTube would just make it blurry +@zeroday that maximum size is actually quite low, like, 15mb I think +Apparently if you have enough viewers on Google Drive, you'll eventually get an "anonymous nyan cat" +@DrPizza in my opinion it's not very interesting when small and blurry. +Here, you can download it, but apparently not view inline https://t.co/aTTySZFwbP let's see if y'all break my Google Drive too +@grp it's like eight colors to begin with +@grp too blurry +@Schabse well that was fast +@landley yup. +Huge (112MB) gif of the cheap netbook booting and blasting an FM music station at ~100.5mhz off the air https://t.co/wpJrCWwpgU +I just made the most amazing gif of the netbook's boot sequence in EM. Unfortunately it's 112MB and even @imgur gold won't take that +I have been informed that children these days refer to life "back in the nineteens" +@VolumetricSteve heheh I love it, but only because I don't actually have to use it for anything ;) +@bobpoekert ... that stretches the definition of 'netbook' :p +@mof18202 all the tutorials say to copy a restore image to an SD card and boot from that to fix Windows +@VolumetricSteve you now know as much as I do: http://t.co/cgIyc56bbi +@mof18202 it has flash; I suspect it's literally an SD card glued down. +@VeronicaDire there's no interface to even change those to begin with as far as I can tell +Just noticed the Terrible Netbook has a reset pinhole on the bottom. What does it reset exactly? +Just had to refresh Twitter for Windows 8's Connect tab twenty-seven times for one day's worth. PLEASE test your UI with real accounts! +@locks @glyph @roguelynn “They have a bug in their code. Do you know how to contact them?” <— conjugated exactly as plural they +@grsecurity hey, my ex found vulns in X! +Change his wallpaper to a koala, change his wallpaper to a koala, change his wallpaper to a koala early in the mornin’ +What shall we do with an unlocked desktop, what shall we do with an unlocked desktop, what shall we do with an unlocked desktop early in— 🎶 +@eqe already have some in Sweden, it’s working out well +@bertjwregeer nope. There exist computers with different banks of ram that are fundamentally different. Went out of fashion though +Realize that implementing the system of a European country will be roughly 50x as difficult. America is consistency Hard Mode. +I think the American public school system as we know it is absolutely horrible. The problem is what can we do that isn’t even more classist +@DrPizza and normally that’s fine, not everything is international news. But it adds a counter-perspective to shocking international news. +@DrPizza well, from an *international* perspective, we didn’t hear of it right after it happened. +@Packetknife well, the free sample cuts off before he explains what to replace them with that won’t further disenfranchise the poor +It’s that time of year where my arms are pockmarked by dozens of tiny bug bites that don’t hurt but I can see the scabs +@m1sp wrapping in braces isn’t particularly hard :) +@b3ll @comex an astonishing portion of electronics on sale in China rip Apple icons directly :( +@m1sp “break can be used with any labeled statement” sounds like you can implement goto if you really want to +Wait. JavaScript has labels. But not goto. But you can break or continue to a label. Which is goto. What +@H0lyPuma get on Ali Express and sort by price :) +@DrPizza really I love it, it is perfect SSH device +I can’t get another $50 Netbook because I’d have to pay shipping too! +So the question is: what should I spend my anonymous $50 debit card on? +@philpraxis @thegrugq I see a bow and arrow, but other than that I can’t make it out +@ra6bit I didn’t learn this from eve because storage in space stations is inexplicably free and unlimited +@ra6bit things I didn’t learn from eve: also consider the costs of storing them safely for 20 years vs. what else you could do +@ra6bit except each one’s existence would drive down the price a little more! I learned this from eve. +@Packetknife well that’s a tragedy. But I try not to source my tragedies from sites with marquee gif banners… +@BomuBoi oh my gods you just filled me with so much retro programmer rage +(Yes I realize there are $60 games on Steam, of which I paid $60 for exactly one, Skyrim.) +@dakami wish I had as much money as such a “toy problem” generates :p +Everyone. Here is the difference between Xbone account lock-in and Steam account lock-in: fifty five dollars. Sometimes fifty-nine. +@dmca @kivikakk but there is some bogus kivikakk: @kivikakk_ebooks +Whoa they gave me a $50 prepaid card for a blog post. Everyone who said blogging isn’t a viable career is wrong ! +@m1sp and @WhiteMageSlave and I did the same with snowball items in an mmo XD +@m1sp it’s from a Calvin and Hobbes comic where he stores snowballs in the freezer so he can save them for when least expected +@m1sp where’s my cookie for being hemisphere-inclusive +@m1sp should keep stockpiling them so they're like snowballs in July :p wait, down under, like snowballs in January...? +@L0sPengu1n0s nexus 7 +@LowestCommonDen several, but in this case, my job’s corporate blog +@securitygen @McSkeets it is, but the actual tools are only available internally, without them I just bust out the disassembler :p +@ScaleItRon it makes sense when you have more than one kind of memory +@bertjwregeer different banks of ram. +@dakami … i* +@pat_wilson @DrPizza @travisgoodspeed as implementations of C :) +@pat_wilson @DrPizza well @travisgoodspeed is dropping the chip models so you can dispute it with him ;) +@pat_wilson yes, but that is not what I asked ;) +Okay are there any real world implementations of C where pointers to different types are different sizes +@Netbus yeah, it’s less black +Thank you Android, I get the idea http://t.co/abe8nSAWdH +@m1sp I feel far too much like I actually accomplished something for having my “Gallente special forces” certificate +@The1TrueSean just keep in mind your Bandwidth Privilege. +@bobpoekert … so that’s what that little critter is from… +@bobpoekert I think that was for the best… +@The1TrueSean Dude. I was on dialup until I left for college in 2006. +Long review (with bar charts!) of asm.js http://t.co/hPPMRFatry +And of course my iPad is worth, like, over three hundred vaxen. +I like how the Dhrystone benchmark returns results in units of vaxen +@ch1gg1ns to me it’s just a tacky heavy-handed sci fi with rubber suits about young ladies getting themselves killed for some immortal guy +@nrr those dirty homophones, always sounding the same +@ch1gg1ns hate it. So better I exclude it. +@sergeybratus I try not to let Rikki Tikki Tavi inform my international policy too much +.@Twirrim “Being a woman. Being a man. Middle class. Poverty.” +@TechJournalist absolutely not, tis a silly show +Actually my entire conception of British culture is the superset containing Charles Dickens and Harry Potter +@Twirrim it was The Sun I was just looking at +I always assumed the journalism style in Harry Potter was deliberately absurd, but you know, real British newspapers do sound like that… +I just went from over three thousand unread mails in my gmail to under two hundred in a few minutes. Because it turns out only bots email me +@CyberiAccela that's pretty much what just happened I think +Apparently I won some sort of award at work because you people click my blogs so uh thanks +@dakami I suspect it actually would, since the example they gave was "you there in the blue sweatshirt" +@C0deH4cker @H2CO3_iOS you are a bad person +That's one oooold svn repo. https://t.co/drrQhgC6g9 +# 337356244278976515 +@zygen but aren't I logging in directly through twitter itself when I log in through the mobile web interface? +In fact I'm nominated the completely undocumented "snlflg" as the most C-ish variable of all time +@DrPizza I am interested in make browser go more fast, don't worry :p +I shouldn't be surprised that the source of the first self-hosting C compiler is so... cryptic. https://t.co/3tVv8L3Z9H +.@nemof @jordan_newfield plot twist: next sign just out of view: “If we were not so well-educated, we’d write like this:” +@mof18202 also, logout on the mobile website is inexplicably hidden on your profile page +@mof18202 this doesn’t describe the workflow I had at all… +@rhcp011235 it’s been completely unplugged for most of that. +Mildly disconcerted that my Mobile Twitter login cookie is still valid on the Wii-U after… months +@DrPizza ooh, gimme a hint +Also I can’t get a Sunspider score for the Wii-U because several of the tests fail entirely +The Wii-U browser just said to me “hi there, haven’t seen you in a while.” Passive-aggressive electronics: EXACTLY what my life was missing +@tojarrett @MarkKriegsman 🏆 +@Hyder_Khan actually my nickname in school was Misty… +@Hyder_Khan haha wat +@WhiteMageSlave the computer gave me Hat Jigglypuff, apparently my subconscious assumes it’s you +@0xcharlie I just award myself pwnies whenever I’m down, don’t you ? +@WeldPond of course it was… +@nullset2 assuming it can export jpeg to real services and not just proprietary format to Nintendo Magical Portal To Nowhere +Conga Line of Pain (I main Zelda, can you tell?) http://t.co/pDTq0lZVS5 +@optshiftk @VTPG that's my middle name, don't wear it out 😜 +See photographic avatar. “He looks like he’d work at Apple.” View profile. Yup, he works at Apple. #acertaintype +Smash Bros gives me THREE Snakes as opponents? That’s random like stop and frisk is random +@Ask_WellsFargo I realize this is a generic response but really the text on that page is in general quite poor +“According to Nintendo, it’s the Year of Luigi.” “Wow, glad that’s not MY zodiac year.” +Oh wow you guys! @WellsFargo uses a firewall *so advanced*, only browsers that know the HTTPS protocol can pass! https://t.co/ef0HHszERN +@wookiee “tarnation” +@wookiee dagnabbit don’t laugh at me boy +@Dykam my bank has a fourteen character password limit and no support for other security features +@Dykam right. Because you’re European. We don’t do that in America. My husband can’t even check his balance online. +@0xcharlie this is what we’ll put on the projector while awarding you your next pwnie +@Dykam oh, you Europeans and your “modern banking” +Adding my Twitter to the list of accounts that are more secure than my bank +@zooko @hypatiadotca your mom’s a genetic fallacy, therefore so are you ! +@glyph @CISOinaBox @xkeepah amen, sibling +@arw Satan’s own corner case +@elad3 Twitter over SMS really doesn’t work in (I’m guessing) Israel? I thought it worked everywhere but, like, small island nations +@elad3 SMS and it works wherever Twitter over SMS already works +The verification codes aren’t very long, and digits only +It works! Also a maintenance worker just walked onto my patio and plucked a weed! I liked that weed! Also you scared me half to death dude +Whoops got it. If I suddenly stop tweeting, the 0xabad1dea Effect struck again. +@notch you sell out hater! Sater. Satyr? +@mof18202 it should work across the board (otherwise there’d be literally no point) +Apparently the news went out mid-rollout. +@harper for a whole five minutes now, try and keep up +I can’t actually find two factor on my account settings… +@mof18202 yeah I can’t find it either +@mof18202 have a confirmed email and phone number ? +@8bitstatic yes +Calling all media organizations who employ people who click things in email: You. Twitter. Two Factor. Now. +@kaepora you’ve probably been asked a billion times but is there an iOS bluenote in the future +@ElderScrolls Dovacat, Savior of Elsweyr +@MarkKriegsman 👏 +@CISOinaBox @xkeepah because you consider “woman” a trait but not “man” ;) +A common misconception is that bools are always packed bits. They CAN be, but that’s not as efficient as you might be thinking. +@CISOinaBox @xkeepah but generic programmers are women. Everyone knows that. +@CISOinaBox @xkeepah he? ;) +@CISOinaBox @xkeepah how much is unambiguous developer intent worth to you? +@CISOinaBox @xkeepah except, generally, bools aren’t actually bit packed :) +@xkeepah dear gods what’s a three +@SteveSyfuhs or possibly 16 or 64 +“IMO bool is an overhyped type, just use int” Ahh, I see we have a fan of truthiness in the house tonight +@MrToph several. http://t.co/HYMqOGudTF +@donicer @KimZetter #strawman I don’t see anyone denying scada is terribly insecure. Of course hackers “could” do a lot of things. +@JohnK___ this… is the pointer book. +This coder is using the variable “pi” to mean “pointer to integer” and I’m really confused because it’s not a float +When you accidentally reply all, should you immediately follow up with an apology or silently abide in your shame? +@Kym_Possible I did wonder, actually. +@rhcp011235 @KimZetter “They didn’t try to break in, they just knocked on the door.” +@innismir @sergeybratus @OrinKerr there’s a point at which you’re not a victim and just grossly negligent. +@rhcp011235 @KimZetter no, I think journalists have a responsibility to explain. +@zooko @hypatiadotca and yes, tap water with fluoride makes me feel ill if I drink more than a sip or two, but I still support it +@zooko @hypatiadotca anecdote: I’m allergic to fluoride. I use old-fashioned toothpaste. My teeth are a dentist’s nightmare. +@DrPizza the menu foretold by prophecy ! +@Taiki__San http://t.co/O2OLuOighZ :) +@therulerofchina @JoelEsler why? The point is to look up the hash, not to be resistant to brute forcing :p +@kebesays nope. It’s a \ which is a valid token in a comment if it’s the last character. +@Taiki__San no; we’re not considering aggressive optimizations here :) +For @kaepora who seems to think I am too pink and cuddly to be evil ;) http://t.co/D17xbH8xsO +@cdf123x no, the slash is what makes it a single byte zero; the escape does not go into the literal string. +@00_ach that's not "actually". The whole point is that it's in the spec but actual behavior is compiler-dependent. +Who's on xbox first? http://t.co/0MiPfAuahr +"<@kufat> oh wow, you are an evil creature" <-- Every morning I wake up and think "how can I be more evil today" +@asadr yes, it does. But the point is that's entirely compiler-dependent and gcc technically has part of the spec turned off! +@Balgan no flags. Actually just compile it with no flags on gcc and it will straight up tell you :) +@HyShai 15 printable characters + 1 null terminator == 16, but that doesn't matter. +Hello, fellow C programmers. Spot the bug. https://t.co/M4MiShpNtr #trollgramming +gcc, stop mitigating my deliberately vulnerable code!!! +If following @StateDept has taught me anything, it’s that Kerry is way taller than every official he meets and it looks awkward +@SimonZerafa @jdiezlopez to stick it to the man, allegedly +.@jdiezlopez I’m sure the police could have done a better job so it’s “their fault” to some extent, but anons are forgetting their mission +@jdiezlopez it’s not *terribly* surprising sensitive emails from the public could be found on an email server, really… +“We’re mad at the police, so let’s jeopardize the lives of thousands of whistle-blowers” GOOD JOB, ANONS OF SOUTH AFRICA +@mikko I’m a fan of how they risked every operation on none of the others being discovered with lazy cert reuse :p +@MarkKriegsman @JastrzebskiJ I didn’t know you were moving, where to? +Analysis of nginx bug: signed integers get someone owned again http://t.co/K0XfiLilZ5 +@xa329 of course it is. But you don’t need the keyword. Because it’s auto. +@washiiko … I have the dakimakura tag bookmarked +@antifuchs trigraphs also exist, I just prefer digraphs visually +.@antifuchs I once turned in a C++ homework assignment using digraphs. Troll level: how does this parse +@mike_acton Access granted, engage +@partytimeHXLNT err, this is a parody, right? >_> +@mike_acton @comex good recovery ;) +@mike_acton @comex err, isn’t that the register keyword ? +@Sidhpurwala it’s only been half an hour! I don’t know yet ;) +@comex we don’t acknowledge weird GNU extensions in Fort Bad Idea +@comex nope +@zygen \o/ +@zygen just had a bunch of mentions from the past 15 minutes show up as a burst; did you unkink the hose :p +Is there anything with an existence so sad and pointless as the “auto” keyword in C? +I actually bought the book. Will let you know how I find it, for your reference. I stole that joke http://t.co/jpwIBwLsiS +@zygen API client is not loading things… I’m going to cry +@Schabse wasn’t linked. Source was paper author on reddit +Aw yeah my order of ebooks qualifies for free shipping! Wait. +Allegedly the Indian APT asked for help on Stack Overflow. With sample code that contained URLs of their real C&C. Thumbs up 👍 +Gentle suggestion, @OReillyMedia : if I “successfully reset my password”, please reset my login attempt count too so I can actually log in +@LJonhny this being… +I wonder if I can pick up any pointers from this 200+ page book on nothing but pointers http://t.co/teRRLv0bwq +@comex @m1sp @pinkiepieebooks … #subtle +WKCPRG <-- 50% off ebooks on C at O'Reilly +@_larry0 that actually works? +@m1sp lol Wat +@benadida @marshray it’s a redirect now. There is actually an underlying security reason you can ask @homakov about… +@puellavulnerata taste the rainbow +@DarthNull @marshray @ralphholz when I was 6, my father set the Windows error ding to the entire themesong of his favorite cartoon. +@marshray @ErrataRob @drbearsec @DrPizza I’m pretty sure when you’re ordering RAM by the thousand you’re not getting express air shipping. +@m1sp I think @comex wants to be ebooked +@comex I don’t maintain them! The source is on @m1sp’s github +@comex there are many. @m1sp_ebooks @kivikakk_ebooks @etcetera_ebooks etc. +@comex @abby_ebooks I think it might have bugged, because its brother account did this tonight too +@m1sp the ebooks are posting whole tweets verbatim… +# 336994585945456640 +@ErrataRob @drbearsec @DrPizza found someone in Shenzhen who will sell me 8GB DDR3 for $9 to $13 each. Allegedly passes QC :p +Apparently I’ve made more animated GIFs than the inventor thereof has, so I feel emotionally justified in saying his opinion is wrong. +@kivikakk … lol +I’m not sure why suddenly we’re all arguing about GIF again but I’m game +@kivikakk at least they don’t do it in high contrast mode +@lifehacker all it’s ever managed to do is confuse me and obfuscate things +Tornado victims reunited on camera after all hope lost http://t.co/HxbZJa97cn +I think I’m over my First World Problems limit for the day. Or week. But really the next iPad better have 2GB+ of RAM +@attritionorg @cji well you’re on there twice so +@USSJoin and that has an actual firmware setting so they can’t just slide it up +@USSJoin I donno, I play with it off and it’s clearly labeled on the box to turn off the 3D for particularly young children +@thegrugq @USSJoin I do realize I have Adult Privilege here, but Nintendo 3DS is the best option for the “please mom please” crowd :) +@cji @attritionorg it’s my Wall of Respect +@jb33z according to my brother’s track record, an Xbox 360 lasts anywhere from two weeks to just under a year :) +@thegrugq @botnet_hunter 8GB; fair but that’s not on the five-year plan +@botnet_hunter @thegrugq they say keep costs down; I say I’m totally okay with a few extra dollars to double or more the ram. +@botnet_hunter @thegrugq yeah but I’m in a nerd war over he much ram is in the Xbox Dumb :p +@thegrugq “it’s not free therefore it costs too much” :p +@ioerror @carlbildt not when actual justice is being dealt fairly, at least +@ioerror @carlbildt funny. You can’t “know” what will happen with an accusation that hasn’t even gone to trial yet. +And suddenly thunder :D +@nelhage the biggest game I’ve ever installed was 18GB uncompressed; that’s Guild Wars 2 and it’s HUGE and highly detailed +.@matt_merkle or $500/$600 or whatever the difference would be between “enough ram, enough HDD” and “wow definitely enough” +I guess it just comes down to I’d rather pay (hypothetical) $500 for a GREAT console than $400 for a decent one. But I’m not 12 either. +@ioerror … sigh +@ErrataRob @DrPizza I’ll keep that myth in mind next time I’m saving money buying in bulk +@washiiko 16GB would be enough for most games I am pretty sure. +@hackedy not sure if trolling or literal +@ErrataRob @DrPizza (I’m assuming bulk rates; I can’t quite get a single stick of 8GB ram delivered for $20 yet) +@ErrataRob @DrPizza I don’t think their target market is gonna say “look if it was $410 maybe but $430? Deal’s off” +@itsdapoleece assuming an intelligent paging mechanism, it doesn’t have to be all loaded for the game to start, can keep going in bg +@torvos @tapbot_paul I don’t think very many games even come remotely close to the hypothetical size limit +@tapbot_paul well I didn’t watch the announcement but apparently it’s coming with half a terabyte standard? I think that’s reasonable +@niallgdonaghy nope +@tenfootfangs I reckon. Who would spend the time to pick up a $3 game used? +You all have some very strong opinions on RAM +@itsdapoleece no different from now +@CastIrony they CAN, but the biggest games I own are 18GB on disc; throw in some room for growth +@DrPizza I doubt RAM is the make or break cost factor +@vogon I have, get on my level +A pricey “next gen console” should have enough RAM to just load the whole game image as it boots and eliminate loading screens in-game +@Wxcafe @washiiko you know what they DO do? Stall every time you cross a zone boundary to load more data +@wireghoul @eevee @Rdio note that they’d have to be *inconsistently* stripping to cause this problem… +Why do I feel like I’m being trolled https://t.co/PLIW4OZL08 +@scanlime @qDot is this… reproducible? +@rgov you know about opting out right bro +@xa329 those last two are indisputably out of the question :) +@elad3 none, none, and not practical +@elad3 nope, first thing I checked +@stylewar most likely, as they say something specific to the situation like "you there in the blue sweatshirt" +Fascinating: the netbook doesn't start blasting EM like no tomorrow *until Windows CE is finished booting* +just heard a radio ad for a security service who will get on loudspeakers when they see someone on your camera and yell at them to go away +@demize95 hah my disguise is working +@_larry0 it appears to have NO shielding whatsoever; I've been scrolling through hundreds of megahertz of noise it generates +@_larry0 I am however profiling what the Terrible Netbook emits, and the answer is "yes" +@_larry0 in theory I could boot an outdated Arch and maybe get it working +@_larry0 no, the USB you see is a keyboard. The drivers would need to be ported to WinCE +Antenna stealth 101. They'll never know http://t.co/e16kWyIRJH +Score!!! ... Whose computer is this even http://t.co/26WHWjR5Cc +In fact I have no idea why or how this PS/2 keyboard is in my cube +I have this PS/2 keyboard I want to test for EM, but I can't find anything to plug it into +Adobe has released a decent freemium photo crop-filter-post app for Windows 8. Inexplicably, it's called Photoshop. +I super love it when OSX tells me to "back up my data to external storage" before installing an update. +@grp I wouldn’t call bliss’s work exactly trivial… +@grp “for every person who takes the time to complain, there are a thousand more who are thinking it” +@marshray @bobpoekert it’s 2013, they can put it on their website +@DrPizza IMO refusing to share code freely should be an automatic un-academicing. +.@bobpoekert I genuinely cannot fathom why CS journals DON’T require source for anything that claims to have implemented anything +@miuaf also someone once told me that character strings are implemented as linked lists of integers and my face was like 😱 +@miuaf so that’s what Haskell is tainted by to me :p +@miuaf according to my sample size of one, Haskell programmers are dysfunctional stalkers who are clearly thinking about raping me +I don’t think professional programmers are “anti-academic” as much as they are “anti-implementing-is-not-my-problem” +@miuaf @raichoo @darinmorrison that last one was openly hostile to teaching any OS/language used anywhere in the modern world +@miuaf @raichoo @darinmorrison my CS professors were: young and practical; old, theoretical, and wise; or old and living in 1982 fantasy +@41414141 I’m pretty sure there are polished VM-detection routines that can be cut and pasted +@vogon personally I’m baffled at anyone giving Sony any benefit of any doubt, I haven’t been impressed with them in a decade +@miuaf @raichoo @darinmorrison that or academics have a PR problem: I’m inclined towards the latter. +@jlwfnord you sound... bitter +1) web interface breaks 2) type up long and elaborate ticket 3) web interface unbreaks just as you finish +@Nash076 @Tomi_Tapio perfect avatar/tweet synergy +@DrPizza @RHY3756547 http://t.co/LU02KPHcYA +@blowdart you’re inside the Reality Distortion Field, sorry :p +@sciencecomic oh no, mushrooms are plants, you see. Because the Bible has “everything that has breath” and “everything that grows”!!!! +Oh, they’re not calling it Xbox Infinity, they’re calling it — What HEY MICROSOFT MARKETING THAT IS REALLY DUMB I take check or deposit +@marsroverdriver my current job is doing what my professors said to give up on. +@sciencecomic but I can tell you some other things about my religious science education - ie all living things are plant or animal. +@sciencecomic for the record I did encounter the “glass flows down in windows” thing as a child, but I don’t recall where. +If a user ever says “why is the—” not immediately followed by “oh I see” as soon as they interact with it: #UIRage +Tales of Bad UI: the reaction of 100% of first-time Visual Studio 2012 users: “WHY IS THE MENU YELLING?” +Every now and then I think of how there's a thing in the sky that blinds you and I freak out +@dangoodin001 the only thing you can see in broad daylight :) with a filter of course +Telescope + George http://t.co/9siVqBnq6R +Everyone: I am aware it's mostly in stars and we're not a star :p +Hydrogen: 73% of universe. Helium: 25%. All other elements combined: 2%. And yet we're running out of helium here on earth. We're special +Calling all Veracoders - there is a solar telescope in the front yard right now +@fredowsley @_wirepair D: D: D: +@apiary time to move I think +I’ve been assigned some PHP research, so expect some new entries on my hate blog soon +Signs you’re attending a technical meeting: you’re running late and arrive to an empty room. +And then the new model comes out six weeks later https://t.co/rtLCFHfYwm +@bedit you’ve linked me twice, that’s spam. +The news tonight is full of sadness and I can’t bring myself to comment on it +@eevee I assume they mean you can still connect with pidgin etc. +@MrToph you need to get out of that house more +@whyallthenoise SDR# plus generic radio dongle +Beginning to think that the Terrible Laptop is actually an Amazing Signal Jammer +Who needs FM radio anyway https://t.co/85ygT3jhml +It completely blows FM radio stations out of the water, which no other device I own does. (Only quite close to the device, at least) +@Xecantur well, all electronics are, to greater or lesser extents. +To the point that I doubt it meets American regulations about shielding! +@rjsalts or an HDD! +To the surprise of exactly no-one, the Terrible Netbook is leakier than a punctured kiddie pool in EM +Hey look I found a place to keep my magnetic antenna http://t.co/tZDhck5nry +@eevee yes. +@abby_ebooks ouch +I have to go do other stuff, so here's what I have so far for Paper Mario vs. Touhou https://t.co/CoHXbzxTRb +Who's up for a Paper Mario/Touhou remix jam?!?! Because that is totally what I am making right now +# 336617528208011265 +Geez, what did I do? http://t.co/ZTX8f1jY7c +@miuaf it’s like salt. You need some of it. But too much is just a headache +Dell kills cloud offering you didn’t know you had; is implicitly called not a big vendor. http://t.co/BJBHNvA59H +“I don’t care about anyone else but me,” chorused the emo rockers in harmony together. #reallyrics #realstupidlyrics +@claudijd @spacerog based on my impression of Fry’s gleaned from the internet, we don’t, unless you count Best Buy. +@tpw_rules that’s the jpeg itself. Solid red objects are its worse case +I think someone's excited http://t.co/N4r7cavhGR +@BomuBoi @Bopogamel … I’m scared +@WhiteMageSlave is there anything more that they can do for your foot at this point ? +I want to get home so I can implement what I just read in a paper. +@nelhage @matthew_d_green instead of just FIXING THEM aauuuugh +@nelhage @matthew_d_green but with the government “secret 0day” thing, there is no public exploit +@ra6bit hopefully this will be a good object lesson about windows then! +@IndigoShinx fact: everyone had a Pokemon username when they were younger. Mine was…. …. …. Well it involved Vulpix. +@ra6bit D: how old is he? +@matthew_d_green @WeldPond I’m already of the opinion that this government 0day protection scheme is mad, bad, and dangerous to deploy +@matthew_d_green @WeldPond guesswork dipped in unicorn tears +@ra6bit There’s lots of end to end stuff, they seem to more care that they can pull the plug entirely when they feel like it +@dhicynic my terminals are translucent, so basically always +@puellavulnerata or stretch a thumbnail of their grandchildren to grisly proportions +@puellavulnerata nope, still counts. I just care that they don’t leave the default Windows/OSX wallpaper up :p +@puellavulnerata faster time to custom wallpaper == better. Actually wallpaper-sized image == better. +I judge new employees based on how quickly they set a custom wallpaper on their machine. And whether they stretch a too-small photo +Basically every single thing we suggest necessitates code change, review, and test on their end, so they all want to pare it down +Today's agenda: playing the game of "what the customer wants" vs "what is actually good for the customer" +@SurprisingEdge yeah, I noted that too. Pretty sure they're using a definition of "enterprise" that only they do. +Gods why is this page taking so long to lo-- oh it's trac. Seriously what is trac's deal +@stillchip @thegrugq @schrotthaufen this is 100% on Oracle +DH: "I'm going to buy you glitter body wash so I can say I have a holofoil edition wife" #geekromance +"Common law marriage was out when gay marriage was in, to avoid thousands of surprise roommate marriages" +@Xecantur unfortunately pre-html5 software doesn't magically rewrite itself +@swb1192 @antifuchs I'm on 256-color mode on Windows 7 (and I can't read "cleartext", so it'd be disabled anyway) +@Jonimus yes, quite. I'm in 256-color mode over RDP to a powerful computer because it improves the framerate :) +SO MUCH FOR THAT PLAN http://t.co/CwC98WOmog +@Jonimus it's Windows CE; however a third party makes a full office suite for CE http://t.co/hcrlasUoD6 +"A new update for Java is available" Oh!!! Thank you for reminding me -- I forgot to uninstall Java! +@blowdart it improves framerate over RDP!!! +@blowdart I am she who uses features Microsoft would like to just let die +@cfloydtweets like "this icon is explicitly for low-color mode, but this next one is a dithered gradient" on the same toolbar +@cfloydtweets if you use Windows 7 in 256-color mode, there is an amusing hodgepodge of "supported" and "not supported" even in the same app +Office ribbon interface in 256 color mode: glorious http://t.co/Dk1gsTeYL5 +@tapbot_paul it's a laptop in this case, so there's no separate power button for the monitor :) +@tapbot_paul now you're just stretching it; that's what actual, like, logs and IDS and stuff are for :p +@tapbot_paul except it's not "emulation"; the screen is, in principle, Just Another Rendering Surface. +@tapbot_paul why? If I'm using RDP I'm dollars to donuts *not sitting in front of that computer* so it's just burning electricity +Just gonna mercy-reboot this poor machine before People for the Ethical Treatment of Computers find out +@OtaK_ Actually our main engine which can consume hundreds of gigabytes of ram in production really does run on windows :) +@docsmooth Windows 7 +@OtaK_ nope, I guess I ran through all that too. We do Real Computer Science(tm) here, sir. +@kcarmical out of memory +Apparently I managed to OOM my Windows machine over the weekend. I haven't done that since Windows 2000 +I like how logging into a machine over RDP wakes up the monitor on it. As if the entire point wasn't to decouple the two. +@DrPizza yes, I suspect that is precisely their definition. Because all enterprises use IBM mainframes right +By the by, I suspect IBM's claim that 15% of new enterprise app functionality is written in COBOL is using a rather narrow definition +Everyone from the "other" side of the office (ie not research and engineering) is giving me the evil eye for complaining about talking +I can hear three distinct conversations from my cube, it's fine they have a right to communicate but sdasfdagadsfcdx fffff +@ra6bit yes that would be the other one hundred four and a half notches :( +Granted that’s out of like a hundred and six notches +The fact that the verified yahoo account “promises to not screw up” tumblr takes my worries down approx. one and a half notches +@surfnorcal @ioerror have you *met* the @torproject people? If they had to cooperate with the FBI there’d be violence in three hours tops +@marliesanna @0x17h over a seven… what, exactly? Said I about thirty seconds ago. But I think I get it. What. +I’m glad malware authors are making dumb moves like signing two different projects with the same “burner” cert // @ioerror +@m1sp oddly, blood is like, the one thing in biology that doesn’t freak me out +@thegrugq don't worry I saved you one +@new299 I'd like to think I tuned into a radio play, but I doubt it contains minutes straight of "Three hundred three hundred do I hear-" +@HyShai one might think so: "she has fine genetics and is very feminine!" Fortunately there was a lot of bleating +Someone is now commenting that the sad state of America is reflected in the low price these goats (apparently not sheep) are going for +I... I just tuned into a radio broadcast of a sheep auction. A. Sheep. Auction. +I could go to sleep. Or I could read this paper on radio observation of USB and PS/2 keyboards +@TheDaveCA oh gods, that prior one is embarrassing (for them) +@TheDaveCA oh, not professional communication from *my* organization, I just found it on the internet +I get being called a “grammar nazi” when I pick on a reddit comment. I don’t get it when I get called that picking on official communication +@KasumiCR I super like your Pokemon fusion renders :) May I suggest electrode + chansey it’s terrifying +@ShadowTodd your career is gonna go in a tail spin if you don’t recognize the gold in ideas like that +@redtwitdown a computer ! I have many. +@blowdart it has lava... you do the math (You can play with respawn on or off) +@blowdart well they're funny, and mostly just play minecraft and screw up and get killed on camera :D +@blowdart you have the same accent as the guys on the yogscast. I can't tell any of you apart. +@spy604 http://t.co/GhhaQEg95x +@WeldPond just don't tell me we have to support it now +@jjarmoc I look forward to seeing the recording and being like "oh gods. I look so dumb. Ugh. Why can't I look as cool as I am in my head" +It's sent! *collapses* +@Xaosopher @caeliat so I guess there are businesses out there that sell USB radio dongles and baby blankets +@Xaosopher @caeliat ali express doesn't collect demo information and I doubt they have a sophisticated gender guesser. They sell to business +I think I've become the radio engineering equivalent of a script kiddie. Physics smysics, watch this!! +@demize95 this page has a list of the part numbers and their ranges http://t.co/N7U5Q7DHlA +@nullwhale Yup. However, "virgin" means "not chemically treated"; I googled it. Growing hair for wigs is an industry in Brazil +@demize95 assuming it's labeled right, 50mhz to 1.7ghz. If it's labeled wrong, probably 30mhz to ~800mhz. +@nullwhale they have a pastel-colored backpack that unfolds into a baby bed. I don't even HAVE a baby and I want one. +@hckhckhck @botnet_hunter it's working for me... +@sneakin well then that's what the algorithm is on; overgeneralizing instead of correlating on the actual item. +@demize95 http://t.co/GhhaQEg95x cruise around the site for best shipping deal to wherever you live +@narayananh http://t.co/GhhaQEg95x +@sneakin I doubt that many people are buying the Final Solution to radios to monitor their baby instead of, like, a baby monitor +"IBM brings COBOL to cloud and mobile" aaaauuuuuuugh http://t.co/P5YIglTcxH +People who purchased <radio dongle> also purchased <pages and pages of baby room decorations> what is ali express's algorithm on +@botnet_hunter http://t.co/GhhaQEg95x +@zorm I need to make sure I have at least one spare if I'm gonna be presenting, and I'll give away a few to people I think deserve one :) +@innismir ten to twelve dollars each depending on supplier. Some go down to eight if you order, like, by the hundred. +I just ordered *ten* more USB radios straight from China. Turns out it's a lot cheaper that way if you can get free shipping... +@dshaw_ r-r-r-RADIO! namely, spying on unintentional radio emissions (tempest-related) +@attrc more of what I have, but I can't find the exact model, so I'm settling on http://t.co/GhhaQEg95x +It seems if I want to order a box of SDRs straight from China, they replaced them all with ones that take mini antenna connectors +@jjarmoc whoosh goes the google docs link to your DM :D +Okay, my defcon CFP is all typed up, who *among people I already follow* would like to look at it real quick? ^-^; +@pzmyers @ReverendBull yeah, you have to respond directly to their actual beliefs or they’ll ignore you no matter how right you are. +Seriously - the first news org SEA popped is understandable. Second should compel attention. The Onion should have been the big tip-off +If there remain any media organizations that haven’t called a meeting about phishing, they deserve what’s inevitably in their near future. +# 336268094911684608 +@inversephase @armcannon just say that Taco Bell is fine but you prefer tacos with actual meat; should get the point across. +@spacerog I’mma DM you my Defcon CFP in a bit when it’s finished mmkay? +@spacerog so what you’re saying is I still have time to one-up you +@spacerog you look so young in that last one… +I just found a phone number written on paper from the Source Boston hotel tucked in my iPad case. I have no recollection of this event +@iShark5060 Clarion Maenad. Don’t blow me up :p +“Popular Tsundoku books” #blessthisalgorithm http://t.co/AHHxXK4o7s +@kivikakk please have this consolation emoji 💦🚌😢 +I have tsundoku except for video games +@ErrataRob it would probably be “huh” at first sight, and require some explanation to how money can be social rules +@ErrataRob evacuation protocol, military protocol +Nothing says “legit service” like an inability to spell basic words in communication with the press http://t.co/EjkDalToPn +@apiary that’s part of the exhibit, I think. +@GreatFireChina please be aware that western criminals have been caught while using this particular VPN service; it’s not foolproof. +(For everyone not from my childhood bracket: the main character of the Pokemon cartoon, Ash, is called Satoshi in the original Japanese) +I found Satoshi http://t.co/XHcni27rTk bitcoin is solved (cc @dakami ) +@alexstapleton @matthew_d_green yes, but… the “Shire” is not exactly what comes to mind when I think of the Us intelligence community +@matthew_d_green their marketing t-shirts say “Save the Shire”. My irony module blew out +@pbromide …. But they can ! I don’t know anyone who denies we’re all from the American continents +@pbromide yes, I know, which is kind of my point; that no one goes around spouting full legal names of countries all the time :) +@panther_modern @hemantmehta I was referring to billions (combined) Indians and Chinese :) and few hundred million Americans +@panther_modern @hemantmehta … except this is exactly the opposite? +@eevee “someday I’ll be as internet famous as eevee” <— a real thought I had after I followed you because of @m1sp +@eevee hey what’s that supposed to mean It’s because I’m very bitter about infosec while being totes adorbs +@eevee guess they missed that I follow you. Did they even check klout #yesMostlySarcastic +@panther_modern @hemantmehta even if not, that’s what we get for there being billions of them but millions of us :p +@Dokugogagoji — because other kids made a lot of fun of me for how I ran and I thought it was just my fault somehow +@Dokugogagoji I wish my parents had made it clear to me when I was about ten that I had been born with a foot defect — +@Dokugogagoji I never was a good runner, I run a little lopsided. But I can walk fine. +@Dokugogagoji I have no recollection of it; I didn’t even know it had happened until I was an adult and my dad mentioned it. +Mood swing to tears when I run into the charity group who funded my corrective foot surgery when I was three #takemymoney +@demize95 he was clearly from a place known for sexism so now I'm wondering if he was being generic rude or sexist rude +DH said I was grumpy today. I denied it. Then some guy just cut me in line and I wanted to shank him +Signs your existence is internet-centric: you start typing into twitter "have any of you seen my shoes" "wait" +I think my landlady needs to discover a cheaper source of RFID cards. One shouldn’t be so anxious about replacing one of hundreds +@chort0 my alma mater has 1800 students and 65535 IP addresses. They got in on this “internet” thing early +Why does my mouth taste like… *hears a bzzt on the window* oh hello stinkbug +O tumblr, my tumblr, the delightful romp is done The board approved e'ry point, your future has been won Gods dammit #poem +@apiary proof that our country doesn’t care about looks +@pzmyers almost everyone I love and cherish I met on the internet, some I have yet to meet irl. Give whoever said that a good hard glare :) +@Dykam oops, sorry about that, we seem to have sprung a leak +@WhiteMageSlave @m1sp http://t.co/R2tkxsF94Y +Slowlithe http://t.co/hBfvOErii4 #aftermidnighthumor +@m1sp_ebooks @m1sp … game is over, mispy’s most mispy-ish tweet has been produced +@m1sp_ebooks @m1sp :D +News to me, Twitter. http://t.co/BLBxQzMYBG +@comex @delroth_ the most important kind +@PuercoPop I went out to Iquitos, and not as a tourist really. It was certainly... vivid. +@ScaleItRon actually I was "randomly" chosen on my way out of the country, I believe because my father had visited with the US govt before +@donsalcedo eve +@c1tr1c @yaakov_h my dear friend just solved this. We are all Pangaeans. +@c1tr1c @yaakov_h it turns out the definition of continent depends entirely on who you're asking. Europe and Asia are not separate places... +@c1tr1c @yaakov_h in fact you call it Mexico in your profile. So I can call my country America for the exact same reason. +@c1tr1c @yaakov_h I really don't get it. I really don't. I doubt you refer to Mexico always as United Mexican States 100% of the time. +@c1tr1c @yaakov_h would you also jump down the throat of someone in the Republic of China calling their country Taiwan or China +@c1tr1c @yaakov_h I don't get what's so hard to understand of "people in (United States of) America refer to their country as America" +@c1tr1c @yaakov_h it's both, why can't it be both +@Phobos_11 @yaakov_h ....... *sigh* we. DO. share. Disclaimer: not speaking for the underbelly of American ignorance. +@Phobos_11 @yaakov_h ... .... .... wat +@Phobos_11 @yaakov_h ......?!?!?! It's our demonym! It is objectively our demonym. It's your... whatever you call a demonym for a continent +@Phobos_11 @yaakov_h sure, great, I don't dispute that. +Programmers always want names to be GUIDs because that's easier to deal with ;) +@cyclerunner it's our historical name. Names are messy, culturally rooted, and not GUIDs. +@vikphatak I think of America's "nicknames" as being like "Land of the Free" or "Droneland" or "Obamatown" +This rant brought to you by the one aspect on earth in which America doesn't get to play Chief Cultural Imperialist ;) +@0XiDi it's kind of like saying "Mister" is an integral part of "Mister John Smith" and incorrect to say "John Smith" +I've been to South America (Peru specifically). I love and embrace The Americas as in this together. Don't take my rant the wrong way <3 +@delroth_ it's exactly the same situation! Two places can have the same name. It's totally valid. Geographical names are not GUIDs +@delroth_ hahahahahahahahahaha http://t.co/py8zRTNxiq WRONG +"The United States of America" : "America" :: "People's Republic of China" : "China" <-- stop being obtuse +@delroth_ which usually it's America being accused of but not this time +@delroth_ it doesn't matter. Fussing about what other countries call themselves is cultural imperialism +You all DO know that "the United States" just as well refers to Mexico, right? No, really. Look it up. Estados Unidos Mexicanos. +@vikphatak it's not a "nickname." No-one goes around saying United States of Mexico all the time. It's Mexico except in formal contexts +@delroth_ incidentally no-one in America (the country) calls the continent America. It is called NORTH America here. +@delroth_ I'm sure the FormerYugoslavRepublicOfMacedonians totally get your point. +@delroth_ what about it? All countries' legal documents use the fancy title like "Republic" or "Confederation" +@delroth_ WE. CALL. OUR. COUNTRY. AMERICA. "United States" is a description also used by Mexico for similar reasons. +@delroth_ Wow this is EXACTLY what I'm talking about Who do you think knows what America's name is: Americans or not Americans +@TheEtherDotNet is it historically accurate within the cultural context? then yes || no. +@delroth_ Do you also call Mexico the United States? If not then the point falls flat. +@yaakov_h some people from Central/South American countries feel we don't have a right to use the word for our country +The fact that our country is called "America" does not invalidate the fact that your country is in The Americas. Both can be true. +Pet peeve: being told we can't call our country America because <reason>. Americans may be arrogant people but don't deny us our actual name +@m1sp you should get on a chat of some sort!! +@Ricky4fun North America and South America are continents. America is a country in North America. Its citizens are called Americans. +If my defcon talk gets accepted I will dedicate it to @i0n1c for all his encouragement +Nerves. Nerves. Gotta fill out this CFP. +@CharlieEriksen it's working out well so far - I sit far back and let the drones do the dirty work. Unfortunately I spawned close that time +@OptiMizPrime I was repeatedly pressured to attend one. All my girl cousins did and I'm... not impressed with the results. +# 335907422138933248 +@amanicdroid turns out no-one north of Mason-Dixon line has heard of it. And everyone south of it assumes I meant "Liberty" anyway. +Hint: I went to the one that is not specifically designed to make a bad situation worse for women and generally expel them at drop of a hat +@amanicdroid yup. +One of these is my university, the other is our rival university six miles away http://t.co/qHKGP3NYdD +@gsuberland for about two weeks now - genuinely surprised you missed all my other "SPACE AAAHHH" tweets :p +Me for about ten minutes straight: "AAAAHHHHH LASERS AAAAHHHH" (I didn't die) http://t.co/HrQk7lkL5J +Oh my gods my husband and housemate are having an argument about how to best calculate DPS in dota +@patrickwonders I still feel too noobish / prone to slightly botching implementation - if you need teh chiptunes I recommend @inversephase +@slow17motion blocky times ! +Nintendo: we're so bad at UI, we can't even get a yes/no question right http://t.co/xmWd61X625 +@comex it’s for breaking syntax highlighting +@jennifurret @slow17motion does this person seriously have the equality avatar Seriously +@apiary don’t eat it. +@codedit —> @Koning_NL +My entire understanding of Eurovision is based on a Dutch-language parody account of their king getting pretty critical +So I figured out why Yahoo still exists. It’s actually more popular than google in Japan. What. http://t.co/FkWn4Bdh1J +The foundation of a geek marriage is the mutual understanding that “but I’m in an online match” > * +@braket my husband actually asked me to close this video, thank you +Good deed for the day: suggesting to google translate that "hapibasude" in katakana is maybe probably most likely "happy birthday" +@m1sp 4 u http://t.co/ccvpUIxMHH +@misuzulive you probably have this one already but http://t.co/rlkXTAwTts +Looking at the bugfix history of Nethack. "The plural of nazgul is nazgul" +@SudoRossy fortunately I neither drink NOR drive so being accused of the intersection thereof is vanishingly unlikely +I can't say the alphabet backwards. I guess my programmer only implemented singly linked lists +@thegrugq @no_structure when you let HR do the selecting, the definition of “competent” they wield isn’t very… useful. +@TheDaveCA yes, this person was acting as though Linux cannot run programs that didn’t come from the repo. +@no_structure notice the “brilliant” qualifier — “no one would turn down someone from the top 1% of women programmers!” +@puellavulnerata no, because creationist argument hinges on being “wonderfully” made :p +@matthew_d_green yikes… +@sakjur I’m kind of accumulating these for my own projects, so… +@bearassentials @vogon O_o .... ...... cool story bro +Another new chiptune https://t.co/QxOwN1eofN this one is simple but has an actual beat +@psobot though I can’t imagine why html5 sound would fail +@psobot it’s not that it uses flash that’s the problem, it’s that I can’t right click -> enable the flash object. +@spacerog didn’t know you’re in town, old timer +@me_irl there's no joke. He's just not interesting and neither is his girlfriend. +You know what? I don't like Superman. He's a boring character. More like Superbland am I right +In this RT: no, the other Georgia. +Trying to get my nerves together to do a defcon CFP before it closes... really... soon. +@psobot why is forever.fm flashblock-hostile? :( the flash objects are beneath some foreground object +Save our tumblrs!! No acquisitions means good dispositions! +@jjarmoc plenty of boys wear panties ! +@m1sp_ebooks @m1sp excellent +# 335539796615233536 +@innismir I have a super power over all children +@WillMcAvoyACN @SarahPalinUSA @eevee http://t.co/l2WRkTVQfb +My face when: the computer Zelda beats my Zelda http://t.co/EG6qsGKA5A +@ScaleItRon I’ve got a mouth like a Gerudo pirate ! +The computer is not very good at playing Pit. I can tell because that was a whole match with no “Hi ya ya ya! Hi ya ya ya!” +@m1sp are you on voice chats tonight ? (I am downstairs playing Wii u ATM, I’d have to go all the way over there to check!) +@m1sp I need an ally hug, I rage blocked someone again +@ivanca I’m blocking you, because that was so unbelievably stupid I can’t bear to interact with you anymore +@ivanca oh my gods First sentence: Gender Is A R A N G E +@xa329 it is here too. Well in some places alcohol must be in certain places or certain times. +The controller doesn’t vibrate. What is even the point of winning if my controller doesn’t vibrate to congratulate me +@ivanca because your argument makes absolutely no sense and has no correlation or connection to mine. +@ivanca I… what? I suspect the problem is literally we do not speak the same language because … what ? +@ivanca gender is… not a Boolean. You’re thinking of sexual role in reproduction. +Wow the Classic Controller is so objectively inferior to a real GameCube controller +Holy triforce, I had to “swap screens” with the nonexistent second screen to turn on just this channel in particular?! Ht @RichardR +It won't let me activate the Wii Menu. And I can't go into system settings because the touch screen is dead http://t.co/hqUEO6gIZR +Why in the name of Princess Zelda won’t this Wii-u just LET ME BOOT THE WII GAME it won’t take me to the Wii menu +Okay found the controller now I just need to The Wii-U tablet thing is completely dead. Where is the… sigh +@akopa no, putty is compatible with some mouse over terminal thing +Apparently my husband packed Guild Wars 2 with the Wii games because it has a white case. I think he’s racist. +@ivanca homoPHOBIA is being upset that two people who APPEAR to share a gender are engaging in sexual attraction. +On my quest to find the game controller, so far I’ve found: a hitachi hard drive dated 2006 lying loose with Wii game disc boxes +@katzmandu I don’t know. I have only ever used a GameCube controller. But now we have a Wii-U sans GameCube ports :( +DH and Roommate are at the movies. I’m hunting for our classic controller for Wii so I can play Super Smash Bros… got a new disc. +@Killermari @RHY3756547 wait do they even have fed-ex in Canada +@Killermari @RHY3756547 “sorry, I can’t go swimming today - just got a delivery from red-x.” +@USSJoin @BsidesBoston unlikely, sorry! +@tangenteroja what happened afterwards in any given case is completely outside the scope of the original snark :p +@tangenteroja not having an Independence Day sounds so… British! +@tangenteroja https://t.co/776ZQGYwVS +@ErrataRob but in any case, https://t.co/776ZQGYwVS looks like most of the world sans China celebrates Independence Day. +@ErrataRob how joke-uncentric of you +@RageKit @puellavulnerata because mocking cavemen for willfully being cavemen is good sport +@uppfinnarn and I quote, because “this code was not written by <corporation> of Indiana” +@uppfinnarn in one case they literally filed a complaint that our report had false positives, as in, “mistakenly marked vulnerable”, because +@uppfinnarn it’s clear that they’re being forced to do it by someone higher in the company, usually. +I feel sorry for countries who were liberated from oppression during a cold or rainy month; how do they picnic? +@ShadowTodd I was going to say it’s an honor to star in someone’s fan fiction, no matter how bad it is, but Then I read it +@tenfootfangs deluxe snake (* extra charges may apply) +@sakjur to echo @eevee : I’m notorious for tweeting things people can’t believe I’d say out loud. But I’m a diehard privacy RIGHTS advocate. +@tapbot_paul because a westerner drew this font. Also that’s racist 👲 +@rezeusor actually the first word that came to mind was “strangle” but I prefer to not leave room for being mistaken for real violent intent +@puellavulnerata I suspect that’s due to likely legal problems for bitcoin in America in the very near future. +“I have to type in my root password to install software!” No, no, no, stop confusing your repo with all programs in existence +I’d like to slap the Linux cultist on Ars who a) calls OSX users “weenies” and b) insists that Linux users aren’t susceptible to malware?!? +@wookiee I was given a bunch of free accounts to hand out, so I imagine some of that is follower overlap running the twitter importer +The sad truth is we have customers who want us to ignore flaws in their shipping code if it's "by another team" +@brian_sniffen @joshcorman @veracode in my opinion, crashier == more exploitable +@eevee so I opened a twitter tab and noticed you were on fire and I was very concerned until I remembered what you were doing today +@isharacomix I use pp-mck which is a textual macro language that compiles to asm source +@vogon but zero is null! +“If you are sitting exactly on the equator or prime meridian, make sure you use a float 0.0 rather than an integer 0” +@LJonhny oh, it is the prior… so I guess that will actually return zero rather than crash +@LJonhny strlen() can return zero in getKey but it’d take some work to actually put yourself in that situation +@LJonhny there’s technically a divide by zero possibility but w/e. other than it leaving behind forensic evidence, it looks fine. +@chead not particularly +@dinodaizovi <3 +@_larry0 I'm a firm believer in the idea you CAN get Windows as performant as Linux- first thing, we kill all the printer drivers. +Great now did I cause redraw errors in elinks and why is it persisting after a terminal reset +The mouse works over putty for clicking links in elinks?? mind == blown +High-fidelity browsing on the $50 Laptop -- but really how do I put cacaview in 256-color mode http://t.co/CfIstMYyLV +@LJonhny only if you don’t make me type in the URL myself ;) +I want you to know I am excessively proud of https://t.co/z6KEnxhFES writing “traditional” music on chip is kind of my thing +@DarrenPMeyer actually it weighs almost nothing +@chead @AppDotNet though I don’t post enough over there because I can’t auto-post from my *twitter* client to both… +@chead @AppDotNet I funded it because I want there to be a legitimate competitor to Twitter, and so far it seems to be succeeding at that +So @AppDotNet gave me 75 free-tier account invites —> https://t.co/cRINYRIIPW will autofollow me, won’t be offended if you unfollow. +Company-wide email asking for photos for a directory. Included footnote: real photo only, not avatar. Well fine I see how it is +Here at Incredibly Inefficient Designs, we strive to make sure a simple 9V wall wart covers FOUR plugs on your power strip. +@rantyben homophobia == disgust at two people of *same gender* being too touchy. So on and so forth. +@quine did it have the control code that sets the high bit on ASCII and turns text into table art hieroglyphics? That’s my favorite +How on earth did my sandals get white paint … down the *side* but not the bottom?! +@thegrugq @WeldPond @Squelchtone I firmly believe that “Weld Pond”, “Space Rogue” etc are their real names and “Wysopal” etc is just a cover +@DarthNull about half my contact list is XMPP outsiders… not that I claim to be particularly representative +Today is a day to celebrate the decrease in homophobia, transphobia, and all other forms of gender-based prejudice. We’re winning. +@DarthNull it’s not the ability to use XMPP clients they removed, it’s the ability to talk to XMPP accounts that are not google accounts +@psobot if people can’t tell it’s automated, it’s a good automation +@rantyben @stevelord is looking fabulous +In my notoriously humble opinion, the government playing savior with private 0day protections is misguided, wrong, and frankly dangerous. +@rantyben @osxreverser around here it’s for snobby people and apparently the CEO would rather burn extras than give them to poor people +This anti-Google ad has at its core a valid point but then Microsoft owns Skype. http://t.co/3SdTxrb5nc +@fransla unfortunately in this case it was likely state-sponsored meaning they can just print new ID cards… +@fransla code signing certs are a bit of a different beast — much easier to actually enforce. +@pod2g should have figured @osxreverser would wear Abercrombie and Fitch… +@ra6bit @abby_ebooks the code is of the mind of dear @m1sp plus some patches from other friends +@Beryllium9 and it may not be some profound amount of money, but it's probably more than the ads/datascraping bring in for me per month +@Beryllium9 as I've said before, I'm actually a paying customer of Google +@ryanmr like I care, I'm not doing it. +@ivanca quite the contrary, she is a horrible human being +@TechieRuss a fake victim to lure in malicious hackers +@TechieRuss watering hole is reverse honey pot. Genuine malware waiting for legit user to fall in. +@matt_merkle sure, it's a simple and easy way to do that, that doesn't mean I'm okay with it +@m1sp can I hand this person over to your loving twitter care +@ivanca oh my gods. Recursive facepalm. One woman who's an awful person DIDN'T win the vice presidency! Sexism is over! +Google already knows my real phone number through other means, but it's the principle of the thing: exchange phone number for longer videos? +@landley ... I was complaining about OSX this time. +Youtube won't let me post this video unless I confirm my phone number. Well that's a shame +@ivanca you hear that everyone! someone called BS on patriarchy! It's not true that most power figures in the world are men! +New chiptune https://t.co/z6KEnxhFES to a melody I thought of one day in 10th grade +@ivanca ie shocker patriarchy is bad for ALL HUMANS. +@ivanca so I don't see how that's a "point" in your "favor" of being "oppressed", unless you think women are what cause wars. +@ivanca going to the war is the most horrible thing in the universe and no human being of any sort should ever be subjected to that +@Forkk13 I spent the better part of ten minutes trying to get it to stop appending .txt to my "duplicate" (ie "Save as, but weird") +@ivanca *facepalm* you are. totally. not getting. it. +@janiczek yes it does? there's a dropdown for NOT appending .txt. +@Forkk13 save as -> any type +# 335174534267289600 +@JordicusMaximus not 8-bit "style". It's an actual chiptune! +ffs TextEdit.app there are extensions other than .txt stop appending .txt even Notepad.exe understands this concept +@The1TrueSean I mean the photoshops, if that wasn't clear. +Decided I absolutely hated how I did https://t.co/y9jHJ5CyrY so I tweaked it a bit and replaced it... +Now paypal is telling me that as a German citizen I have certain rights. I swear this is a bare connection straight through an American ISP +@drwilco aan de slag! I realize that last word has many meanings. +@m1sp good morning <3 +@xa329 actually it's because I was trying to find a video in Dutch once, I think, and went to the Dutch youtube. +Also, I like that the "get started" button in the Dutch interface can be literally translated as "to the battle!" #excitableidioms +Of course, now Youtube thinks I'm British and I assume recommendations will start learning Dr. Who-ish. +@RvMouche ik spreek een beetje, maar ik wil mijn Engels :) +Huh. Going to the British (not USA/generic) youtube domain fixed it back on the generic domain. Hello again, English! h/t @therulerofchina +@therulerofchina wow that worked +So my youtube interface is in Dutch on ONE particular computer for no particular reason and no apparent way to switch it back. +@Mega_Turd the worst! (It was malware) +I got someone’s code signing certificate revoked today! I’m super dangerous, don’t mess with me! +@jdiezlopez uh, I’m not really sure. I classify chiptunes only by what chip they are a program for. +@_wirepair generic assets, not artwork and stuff, I won’t begrudge them that +@_wirepair I know he has turned down many benefits of pope which will save a fortune; hopefully he can find some assets to sell off +I never go to the @DunkinDonuts right next to my house — because they were rude to me for not being familiar with the menu already. No line. +@_wirepair did he really say so? Good on him. While obviously I don’t have strong agreement with anyone who qualifies as pope, he’s > most +@robertcromwell @vogon fractions: the fatal weakness of computers that almost no one knows about +@eevee I remember when my classmates found that out in freshman English… it wasn’t pretty. +@tomchop_ I need to change the file +@The1TrueSean are you… making these at work +@MrToph all my teenage websites were written entirely in notepad +@theROPfather can I save it back out ? +@jeremiahfelt can I save it back out that way ? +@Neostrategos cyborg privilege +What tool would you recommend for OSX to increase the base volume of a quicktime movie +I’ve obtained a copy of my NES talk, but I’m told the audio is Maybe Not So Good. +Why does Preview.app even register as a handler for XLSX if it's just going to hang or crash every time I try to open one? +@henmob it largely comes down to a) have a healthy skepticism of free programs found online b) keep your OS and browser up to date +@ivanca if you really don't get it, we don't have much to discuss. Ten. thousand. years. of recorded history of patriarchy. +And I use the word "several" because even security-wise people catch something occasionally. It happens. It just shouldn't happen a lot. +Consider "knows how to NOT catch malware on work computers several times a year" a basic requirement for any desk job. For serious. +And of course it's one of the "usual suspects" for catching malware. Don't let your organization *have* usual suspects. Teach them something +Someone at my mother's workplace actually caught ransomware. Actually. caught. ransomware. A for Amazing Fail +Signs my existence is electronic: "Wait! The serial number on that dollar bill is clearly visible! Someone will steal it!... ... wait" +Esteemed coworker George Washington got a custom sign plate for his desk for only a dollar http://t.co/zJ6mrOqNzo +@ioerror my OTR jabber should be logged in if you have a link you can drop (I'm out at lunch ATM) +@kennywyland @darkuncle @GSElevator @vogon ever see a Washington DC license plate? They ain't forgotten. They're a trite bitter even... +@GSElevator @vogon in all fairness to the (original) Tea Party, it *is* one of the most celebrated and revered events in American history. +@ioerror where might I find a copy of the Mac malware ? I want to appraise the competency level of the code +Re: the Mac malware @ioerror found: reprehensible abuse of signing certs. Hilarious inability to use a hidden folder. +@NGalbreath @rantyben is there a particular reason they thought we needed to know the exact processor model etc? +@kherge it’s… a real mailing list, that I subscribed to :p my filter to put it in a folder broke +@tsdNull it is better to rule in Scotland than… +@acfrazier_open I will read the fine print but I suspect I don’t really mind as long as they’re not cloning me for my genius ;) +I think I will order a genetics testing so I can prove once and for all I am in fact the rightful queen of Scotland, as I always suspected +@garlimidon http://t.co/TqsWrzdroK +@kdmurray only have the one actually (not counting internal mailing lists which just dump straight to my inbox anyway) +.@garlimidon tweeting is a free action +Dilemma: do I take the time to fix my email filter or do I take the time to just unsubscribe from this mailing list +@ArakinUK @Tomi_Tapio tell those kids to stop talking in the theatre !!! +@captcarl13 … seriously? I can’t recognize you at all +Does @0xcharlie even count as a hexadecimal handle? I say he’s out of the club +@thegrugq @justdionysus @0xcharlie I prefer the reading “Naughts and Crosses,” but that would also be a good name for a hacker gang +@mikko apparently the feds didn’t give their credit card for auto-renewal +@ivanca though I presume you live in a different country than me, and perhaps there it’s not routine to call boys “girls” to insult them. +@ivanca it’s not “ironic”, it hurts less because you’re already in the position of power. +@Raspberry_Pi thank you for actually warning of this… +@hypatiadotca @kreativedge \o/ +@marsroverdriver but but… the book is about the last two Mohicans. +@rhcp011235 @m_kopas please unfollow me +@Phoul @thegrugq @m1sp they did, but no fatalities. Then they said "you're alright." XD +@thegrugq @m1sp the context is we joined a faction and asked where their hangout was. Apparently they don't like that... +@thegrugq you'd like this guy @m1sp and I just met in eve. "I gave you the wrong system to meet up in because OPSEC" +And no, I wasn't in nullsec, I was in 0.4, nor at the gate either. +@ameaijou 0.4-sec +Baby's first podding in eve, nipped downstairs to put water on the stove while in a system with zero other players... +@BandeausStuff @chriseng hahaha don't worry about it! It's just a plain black case so whatever. +# 334785515284992003 +@ra6bit Blackhat has, funny enough, always been a white hat conference; it was Defcon that was truly weird. +"10.00 cargo units would be required to complete this operation. Destination container only has 14.53 units available." What #eve +@vathpela @no_structure I'm pretty sure he meant clients other than web. +Guess who’s keynoting Blackhat? He worked his way up from merely presenting at Defcon — General Alexander! +@dguido hey now!… but we don’t scan kernel mode code, which is what I presume they mean by “Linux.” +Playing an exciting game of screen shot forensics; someone in Ukraine is going to be amused by their ssh logs. +@eevee I enjoy seeing you rant https://t.co/Y6Vq8z120K +Hey @arstechnica I can consistently cause an internal error by submitting a comment with an emoji in it 👾 +@Xecantur the exact design of the casing was a little different from the box; I think it looks okay +@DaKnObCS you really go all out… +@bortzmeyer @endrazine completely lacking context, I assume that’s a Harry Potter spell. +@kittygetwet and nothing really caught my interest or blew me away; only thing that stuck is YouTube will load faster soon. +@kittygetwet I don’t know what I expected but all the quotes from Larry Page are weirding me out +@Kufat I only own one Chromebook ! +It seems that whether or not you can currently load Mt. Gox is largely continent on whether you’re on landline or cellular +I’m not too pleased with Google’s show today; and hold the “you’re the product” snark, my bank account is billed by Google monthly. +Someone in Luxembourg says Mt. Gox is loading but for everyone else it’s 502? +Something dark and evil has come out of Google this day https://t.co/Y6Vq8z120K +@cataspanglish @Penenberg really ??? You’re the only person so far for whom it loaded ! +@lukegb gack +Hey everyone at the keynote! I followed along for a while, got bored, went to lunch, got coffee, came back, checked my mail…, is it done yet +@DarrenPMeyer @dinodaizovi that was clearly a Cyrillic code page. To evoke evil. +@tapbot_paul but you have at least one friend ! +@_higg @DrPizza it’s my Technologist Privilege to do so, but that’s not an answer for the general public +@lukegb I want text chat. Over XMPP. Which is apparently going away. Lots of my contacts use non-google XMPP accounts +“Hangouts (replaces Talk)” is pretty much the exact opposite of anything I would ever want to happen to my android device +I’m pretty sure a kid in the next apartment over grabs his mom’s keychain and just locks and unlocks the car through the window #beep #beep +@DrPizza I’m sure this page will offer a perfectly sensible explanation as soon as it stops crashing my browser +@DrPizza wait what What +I’m my own team. http://t.co/IwUqg1MMCP +As a merchant of code review: don’t tell users they’re wrong about there being an RCE bug because you already had it reviewed. +@tapbot_paul my standards are low : you and I were in the same irc channel once and neither of us kick banned the other. Ergo, friends. +@mansaxel @runasand I admit my definition of "major media outlet" is a bit English-centric +@Ammoniak google io +@Xecantur I had an Aspire One, the keyboard is the same kind but a little more cheaply manufactured +@grp they’re extremely good at some things and good enough at the rest. +“Even Google’s own services have been fragmented at times.” Oh I get it, humor through extreme understatement +Nooooo stop with the “flip the card over” UI paradigm. That’s excess mental state spent on tracking geometry of flat things +@niteshad @essobi in 2011; I was trying to express wonderment at how quickly prices come down. +@xkeepah error: already on a retina screen, that’s like, eight pixels +@niteshad @essobi honestly, the Windows CE is probably pirated. But it’s not the current version so I doubt it’s a priority to MS +If anyone doesn’t want their Pixel, I can provide it with a good home +@Kufat one can readily install full Linux on it, without stupid tricks, to the best of my knowledge +They’re… giving away Pixels. Not the $600 phone, but the $zillion Pixel. +@tenfootfangs wow that’s a lot of dinosaurs +@tapbot_paul someone’s been spoiled by Apple secrecy ;) +@tapbot_paul I am Interested(tm) in my YouTube loading 50% faster (I already use Chrome, so no changes on my end) +@vogon “goal was to get it into hands of devs” => “this is a concept device no normal person would or could buy” +I’m pretty sure “why doesn’t Pandora do x” is “to qualify as a true radio station and keep prices down.” Re: Google All Access, $10/month +Not a fan of the Linux “silent fix” thing. Goal was to train sysadmins to always patch without delay. It has the opposite effect +@DirtySocks85 that’s unusual though. And who would fill in their mother’s age in a radio app?! +Google: we have the most bandwidth of anyone on earth. But we didn’t bring enough of it to our keynote demo. +@vogon honestly, I only spell it terr’rist to avoid the Suspicious Tweeting filters (which appear to actually be that naive) +@Mordicant they didn’t mark on the form that they’re a currency exchange! But… they’re not a real currency? +It’s official: the Department of Homeland Security (you know, created in response to Sept 11th?) is trying to take down Mt. Gox. +@morphcat :p +@chpwn did you repaste the URL from the deleted tweet? Because it broke +@jakx_ which is one advantage bitcoin has - you can’t have a mismatch between actual money and money you believe you have. +@jakx_ just a number in a field… it turns out that electronic banking is pretty much 100% dependent on accurate and honest bankers. +@garlimidon that was the idea yes :p +OH: pandora should use your age to calculate the probability you only think you like a song because your parents played it a lot +Connection between bank teller and bank database not encrypted. Sniff password, create account, make free money. http://t.co/VJrBLc0hRy +Props to @newyorker for being the first major media outlet to take serious steps to protect whistleblowers online http://t.co/7glokZDdPO +facial recognition surveillance tech still falls down in uncontrolled scenarios http://t.co/PGD0jC5h0o (and probably always will) +@m1sp btw I’m working from home today if you want to voice chat :D +@mdowd @pod2g listen, I can get you the number of a battered hacker’s shelter, they’ll protect you… +. @_FloridaMan shoots himself while bowling — now that takes talent http://t.co/kiBY3oD5ZO +@nonstampNSC as original as an Angry Birds knockoff +@jenniferbn2 you know, I thought a main trance sounded occultic, but I was gonna not say anything ;) +@m1sp diagonal movement?! I quit. Not playing. +@m1sp yeah, that’s actually the only post of his I’ve ever seen be widely mistaken for factual +@bpblack oh hi! +Based on the state of my inbox, it seems Exchange suddenly decided to disregard my filter rules after “planned maintenance” last night +@m1sp Mispy dear… google the name of the author +@Neostrategos I’m WFH on account of DH’s knee and one can’t access the blog login over VPN #acronyms +@ivanca and for the record, I did not point out on reddit that I (the redditor) was she (the author). +@ivanca misgendering people when all the information is there is freaking offensive. I’ve written extensively on the issue. +@nate_smith it has no brand. ali baba -> search netbook -> sort by price -> the WinCE one in five colors w/ ethernet that they all carry +@LJonhny her hostname is MiniSanguine, in homage to the pink computer I owned when I was 16 +Playing Dwarf Fortress over SSH again, but this time, on the $50 Laptop http://t.co/Ke302Vh6as +@m1sp probably every person whose data is specifically included, as a gesture of thanks +Time to make a sweep of reddit, hn, etc and comment "pronoun check" to everyone who referred to me as "he" with my real name displayed +@anthonicaldwell ali express -> search "netbook" -> sort by price +@L0sPengu1n0s I’ve heard of “Don’t Starve” but I’ve never played it +@L0sPengu1n0s that is a very very very vague question :p +This is totally inaccurate. I keep my iPad in a case http://t.co/5RBe7avWZk +@chriseng !!! Yaaaaay +@kufat oh noes I got an airline phishing email haha it thinks my name is Adam wait oh. +@chriseng :( +@kyhwana @DefDist probably nobody’s. +Amazing how every controversial video on YouTube is in violation of someone’s copyright and must go away +Ali Express is now trying to sell me a Muslim prayer tally counter that would make an "ideal Christmas gift" #cultureishard +@drwilco I think I can spare the seven minutes to get it to level one +@collettiquette @m1sp I mean "thank you for more money", not "I demand more money" :p +@collettiquette @m1sp more money!!! \o/ +Oh hey, WinCE comes with regedit! Oh hey, I can turn on file extensions this way! +@collettiquette @m1sp my character's name is Clarion Maenad +@m1sp kay <3 +@gbuzogany eve online +@m1sp give me a ring if you log on <3 +Got a long night of studying ahead! (cc @m1sp) http://t.co/FqdKMOsLNe +@davidjayharris https://t.co/ejH0GYfYuP my friends maintain it +@innismir nah my friend does +Uncanny ebooks is at it again https://t.co/WghUJjEQmy +@abby_ebooks of course it is +# 334456881542230016 +If the Mt. Gox/Dwolla thing was about specific money launderers, a total shutdown would be counterproductive to actually catching them +@ra6bit I think most people don’t apply skepticism to things they observe casually and just take them at face value +The American government believes in capitalism, but competing currency is economic terrorism! http://t.co/Uc95TO9W4l +@drwilco in this case there’s nothing wrong per se - everything is SSL’d with an appropriate cert, just not single server +@landley don’t forget the 4GB flash and wifi +@drwilco the html is served from the site proper and the images from generic dot CDN dot com +Does Microsoft still do tech support for their BASIC interpreter ? +@eevee I’m sorry. Had a series of dreams about my grandfather where I suddenly remember he’s dead and wake up. It’s extremely upsetting. +@sebasmonia *customers* keep things alive forever :) +So far as I know, the only product Microsoft has ever successfully put to rest is BOB, and even that took years, until they killed Clippy. +@sebasmonia hahahahahahaha Nothing Microsoft ships ever dies. Except Clippy… we hope. +@SGgrc @solak there’s no “snap” in comparing Linux of today to Windows of 2001. Their fault for not upgrading in a timely fashion! +@jennifurret you and @JackLScanlan are a surreal interruption in my constant stream of information security tweets +IE for Windows CE is actually TOO paranoid about SSL. I have to manually approve every single image loaded from a CDN +@nipungupta @essobi @niteshad everyone not in the first world, which to a first approximation is everyone. +@malwarejake ali express -> search "netbook" -> sort by price. Many vendors have them, compare shipping options +@chadwik66 @jastrzebskij I'm busy <s>working</s> playing with my pink computer +@landley could stand to use a few more comments +@niteshad @essobi or in $50 netbooks. +My marketing team would appreciate it if y'all's social network/newsreader apps would send referrer strings with jucier metadata +I’m not installing Linux, everyone. Shocking, I know. +@vogon with how often I have to cut the power, it’s a short matter of time until I corrupt the fat32 filesystem +Hey everyone I am really good at hanging Windows CE +@kufat but... it's already been announced. (for both.) +Currently browsing Linux sites like @lwnnet from Windows CE just to screw with their browser statistics +@briankrebs that's prejudiced against gay boys and straight girls who are also skiddies! ... not that I've ever met one. +@grp don't "duh" me. It isn't, in general, intuitively obvious behavior. +Blackberry has an identity crisis, gets black-out drunk, awakes to find it put its core feature on iOS App Store +Protip: if you use { gtalk, skype, aim, facebook chat, etc } assume that any url you paste WILL be acccessed and maybe cached. +@niallgdonaghy this keyboard only goes to F10! +I got Opera Mobile working, but it has this annoying simulated mouse I can’t make go away. +I’m extremely competitive regarding our corporate blog stats. I’m currently “winning” highest traffic day again. +@Xecantur it’s okay for the size, but the spacebar seems to have only one thing under it rather than the usual two +@blowdart XP is five years younger than the copyright on this build of CE, not hard to import features ;) +@blowdart it’s CE +@donicer @whitequark most native Windows programs should be recompileable for wince with a few macros / tweaks +@blowdart it has the Windows XP classic skin set - Marine, Spruce, Rose, etc +I made it more pink http://t.co/sLN6wEcX34 +@info_dox it has no brand, no name. It’s just “7 inch netbook - Windows CE or Android 2.2” +@info_dox there is no link to the exact product. There is only Ali Express -> search netbook -> sort by price +@ra6bit you got an ARM driver? +I love Windows CE! More accurately, I will once I can get Opera Mini or Fennec working. +@craptard @egyp7 it confuses me that people assume I’m using ie out of ignorance rather than a specific reason to which snark does not apply +You know, if someone wanted to penetrate our network, a watering hole that sells small, cheap, pastel colored computers would be ideal +@egyp7 as soon as I figure out how to fix the fact that I’ve hung IE ;) +@egyp7 then down in Navigator it says CPU class ARM, platform WinCE +@egyp7 pastebin is crashing. But it’s picking up as OS name Windows, OS flavor 7, browser IE 8 +@eyd go on a site like Ali express, search for netbook, and sort by price. +@CyborgCode she is by a certain artist on pixiv, the character outdates my account :) her name is Kasane Teto +@duckinator China ! And yes this is adorably retro! It’s like I’m using a laptop from the year 2000 but with today’s internet +Tweeting from the $50 netbook! If my account starts posting Chinese spam, you know what happened. +IE for Windows CE 6 doesn’t have Verisign in the certificate store +@whitequark there is an x86 windows ce but this is arm. +@sawaba the most generic one possible. No brand. No name. Just $50 and a probably pirated Windows CE 6. +@tapbot_paul it’s basically exactly like Windows 2000 but you need to compile for arm. </over simplified> +Step Two: Boot It Step Three: I can't believe that actually worked http://t.co/Cm9O7S1H4M +Step 1: Bling It http://t.co/oQomReIxKd +It came with a user manual! In ENGLISH! +It's here!!! There is literally no info on the box except "keep dry" http://t.co/vnpMF5gwgc +@gsuberland #AfterMidnightKickstarting +@WeldPond @thegrugq I’m not sure who that guy on the left is but @0xcharlie has good taste +@WeldPond @thegrugq look Mr. The Grugq, no matter how many journalists you pay to describe your boyish good looks…, +@MrToph “Payday 2? I better tell T — oh.” +And I’m not blaming/shaming her for being rich; our health care problem can’t be solved by celebrity charity. +Re: the Angelina Jolie story: shame we live in a country that doesn’t subsidize an ounce of prevention to keep pounds of cure on the shelf +My manager points out that “MEMS” is an acronym for a specific type of accelerometer, as I ought to have guessed. +@Twirrim nothing works with express anyway +@cab105 muahaha my plan to dethrone @MarkKriegsman with single most popular blog article is coming along nicely +I'm sure the youtuber I got the hard drive restore image from is totally legit because he has a British accent +My Terrible Netbook may be here as soon as tomorrow. I found a hard drive restore image (on... youtube) for when I inevitably break it ;) +@dipidoo I'm just screwing around with emulators for the fun of it :) +All I wanted to see was how truly terrible IE on Windows Mobile is. +Find option for putting emulated phone on network -> it wants a non-bundled driver -> MS has removed driver from its site +@H_kyber Chrome +Did you know you can just, like, download standalone Windows Mobile emulators? Can't figure out how to get this pretend phone on wifi though +@kyhwana it was something of a rush situation. “Honey I need the password” +He even installed Firefox and made it the default. We need to have a talk. +Hmm haven’t used this computer since I let my husband AUGH THE WALLPAPER what did he AUGH MY MOUSE SETTINGS +“We better censor what these articles in two major newspapers were about! Someone might go and READ them!” +The most adorably futile redacting ever [ @ioerror @normative ] http://t.co/6IKCpQvpCn +“Freedom of the press”: phone records of AP seized. With no particular justification. http://t.co/gwcpS8g9KK +@NamTaf \o/ +# 334044605270093825 +@JastrzebskiJ no need, I was referring to literal doors +@chort0 @chadwik66 the very fact that they call it “cyber security” would ward off about half the people worth pursuing +@c1tr1c I haven’t been able to clearly see what its number is yet +@m1sp @fncombo I mean they can’t photoshop a realistic looking artist’s conception to “show” the final product +@WeldPond hahaha HAHAHA *cough* I mean oh what a surprise +@m1sp lemme know if you want to go work on our space spreadsheets +@m1sp @fncombo Kickstarter has tightened rules on “concept art” to avoid misrepresenting what stage the r&d is at +@admung I really don’t approve of hiding lazily posting cool pictures behind the veil of parodying a real photographer; there’s no parody +Apparently this photo has been fooling people since at least 2009 https://t.co/lqPSeP3u6b you can’t tell that’s not a rabbit? REALLY? +@NatGeopix I suppose it’s too late to complain this is incredibly fake +@pa28 yeah but like - I’ve seen helicopters thousands of times - these are the lowest ones I’ve ever seen not in takeoff / landing +@C0deH4cker it’s Sun Microsystems’ campus near Boston. They are gone, but sometimes, under the full moon, you can hear the beards rustle… +Us Southerners are confused by your quaint Massachusetts notion of paying taxes directly to the nearest town +An, there is a helicopter school not too far from here, that’s probably the most sensible explanation. +@Beryllium9 fortunately I don’t think the office park has dehumanized us THAT much yet. +@amanicdroid I have a photograph! +It’s not traffic reports, wrong time and place; it’s not a news copter afaict, no news; circles low repeatedly; navy blue and yellow. +I saw that colorful helicopter again today; once is odd but twice is concerning, IMO. What *are* they doing so low to the ground? +@onekade @puellavulnerata unfortunately I haven’t been able to get a clear view of the tail number to look it up; could be normal stuff. +@onekade @puellavulnerata I keep seeing a yellow and blue helicopter circling around the Burlington Mall near Boston the last few weeks. +@puellavulnerata let’s take two things we don’t like And draw an “implies” sign between them Brilliant +@mikko the last color you see as something cools before its warmth becomes unseen to you +@0xcharlie @dakami cold, man +The special effects studio here always leaves their door open - who wants a copy of the Transformers movie pre-CGI? http://t.co/tcsVe1HEDs +@dakami making sure you see this http://t.co/4c9o7b2gcn :D +@AnthonyBlore yeah to me that’s a kind of spider. Freaky kind of spider. +@Se3ek which explains why my dad’s Dutch friends were in disbelief that deer wrecking cars is a serious problem around here. +@Se3ek northeastern USA has an almost identical ecology to western Europe. Except our deer are bigger. +.@michaelminella but folk etymology never lies!! +Business card for scale http://t.co/MfnCCkY5il +They’re not mosquitos, they’re three inches across. They’re “mosquito hawks” that eat mosquitos, so one shouldn’t kill them. +@elad3 ain’t no mosquito three inches across. They’re “mosquito hawks” — they eat mosquitos. +Oh hello hi please go away http://t.co/POMqOACcXI +@Saturn500Jared @scATX so what they mean is “it looks like the criminals are unambiguously American, so there’s no issue here!” +@Saturn500Jared @scATX except randomly shooting up a crowd of innocent strangers is pretty terroristy +(And if you genuinely don’t know where a picture came from, disclaim so clearly!) +Dear journalists and bloggers: “Twitter” is not ever the source of a photograph. Link. The. ACCOUNT. @pinknews +@DarrenPMeyer @skimbrel a bit rude they didn’t actually link to the twitter account they sourced the image from +@tapbot_paul you know, I can’t even be mad about the tax thing, as I was always surprised someone hadn’t found a way to legislate it yet. +@_larry0 woo +@thwartedefforts the “university” part was just meant to convey that learning to program takes years of dedication. +My blog about reverse engineering the program that consumed more ram when I shook my tablet http://t.co/4c9o7b2gcn +@grp I can't even tell when you're trolling anymore +@artkiver no one is contesting a paying customer’s right to complain, only a not directly paying because it’s open source one. +@furicle no, but we all know those evil bakers are in on it somehow. +Another pet peeve of mine is “it’s open source so it’s your fault if you didn’t go to university to learn programming to patch it yourself” +@mescyn #OpenSourceBeingUserHostile +There is literally no point to “points” for buying stuff except the “hot dogs and buns” racket http://t.co/5O2IZzsj62 +@hypatiadotca oh my gods I’ve gotten like a hundred +@realnudel I love translucent terminals. I’d only not use one on a machine too weak to actually render that. Like, seventeen megahertz. +@mescyn then link to wherever the hell the rationale is. No rationale? Oh look I found the problem !! +@mescyn “it was removed because <sensible reason> and won’t come back because <sensible reason> sorry, <suggested workaround>” <— good +@mescyn no rationale. User hostile. +@artkiver … that is the most “and this is what’s wrong with open source” comment imaginable ;) +@mescyn um, it’s like no one read the actual ticket and the actual response ! It’s the most straightforward non trolling ticket imaginable +@dhicynic @dylanmccall it isn’t ? +@elad3 open source has a social problem; success is contingent on not brewing community upsets like these +@elad3 yes, step 1. There’s an ordering dependency. +@elad3 I didn’t say they’re evil, just that no wonder folks say “my feature disappeared and GNOME is less useful to me now” +@elad3 Look at the actual ticket. Look at the actual response. All ranting came after that response. +Also, don’t miss the fact that GNOME is an actual foundation, with finances, not a hobby developer github account ;) +@elad3 but gnome is not a hobby project. They are a *foundation*. They have *money* and everything. +@elad3 valid argument for hobby side projects with a few thousand users or less! +@furicle that ticket is from a few weeks ago. Then someone posted it to HN and the fuss started. But it’s a righteous fussing IMO. +@elad3 @dotstdy what the feature is or how useless it was is completely tangential from the actual problem +I don’t care if it’s the stupidest feature in the history of the universe, that’s not professional behavior. End open source rant +@elad3 yes, I already read it +From the G+ thread: user is “irrationally attached” to feature that disappeared without explanation and devs wouldn’t give explanation. +@dotstdy @elad3 and… why not just like… say so? +Now, offering an actual rationale for why a feature was removed when someone opens a ticket (or linking to one) would be… better. +I don’t care that they’re “open source”, if they want to be a real project then they gotta not close “where did my feature go” with “no” +@elad3 strongly disagree. They are a *community* project. “No. *wontfix*” is completely anti-community +@dylanmccall … and sure it’s freeware, but it’s positioned as a serious product, ergo the users are customers. +@dylanmccall “where did my existing feature go?” “Wontfix” nope, that’s the most rude-to-customers thing a programmer can possibly do +@Motoma more likely you lost power while it was being written to or something ? +See, this is why no one likes GNOME anymore https://t.co/Gc81ZfzUCP someone got banned from the bugtraq for posting it to hacker news +@quine @m0nk_dot I had a dream you died stopping a car thief. I assume my dreams work on rand( people I follow on twitter ) for content +@banasidhe @attritionorg @carsteneiram I’m Dutch-born and I’ll allow being conflated with the Danish - just not the Deutsch. +@aidenconri just something San disk makes +@quine @m0nk_dot guessing I’m blocked, huh. +$85 *was* a bulk price, I don't think one could buy these individually if they tried +@kuripyon that was the quoted price per unit for "Android manufacturers" so I assume that was bulk. +I googled the model of processor (VIA 8650) in these $50 netbooks. In 2011, the processors cost $85 each. +@m0nk_dot @sergeybratus art is android… but document template is OSX… does not compute +@joshua613 I'm a bit of an asm education advocate :) +Ever stop and think that we successfully got the entire world to treat “MP3” as a real and proper word to be said with a straight face +@matthew_d_green who loves OSI and doesn’t realize it’s unrealistic? Everyone in my undergrad gave the prof a look of disbelief ! +All the cute cases are for iPad Mini! This sends a negative body image to all 10” tablets +@mirell it should become encrypted when the device is locked. +@m1sp_ebooks who are we talking about, little robot? @sciencecomic ? +# 333732938095140865 +@Kufat yes +Today on “odd phrases to put on an iPad case” http://t.co/Vd6ByytGkY +@chriseng oh where is everyone going to sit ?! +@tanonev not for lack of trying! It turns out most homicidal maniacs went to storm trooper academy +17 injured in parade mass shooting http://t.co/PWhHhK8eXk <— and this barely registers as news if there’s no bomb. +@jvanegue no one, not one person, prefers OpenSSL for anything +@_f_a_t_ donno yet +@blowdart you take that back YOU TAKE THAT BAokay. +@H0lyPuma Either my bank is lazy or their algorithm knows that I buy electronics every time I get two pennies in my pocket +Whoa hey they have pink Android watches on aliexpress... .... ..... +@RichardBarrell trust me there will be like six billion pictures of it when it arrives +@brentrubell why not? Never owned a Windows CE device before! +on aliexpress: "People who bought <cheap netbook> also bought <five pages of novelty correction tape dispensers>" +@akopa the solitaire one is win +@yaakov_h It's kind of like a pond that's only three inches deep and every square inch has reeds growing in it +@nicklockwood yup. dear @m1sp is, irrefutably, my personally allocated Australian. +Talking to my Australian, they are amazed that there is functioning marshland literally about ten feet from my door :) +Have you ever had a dream someone you know died and then you internalize it and spend the day being sad they're dead? (It was @quine) +@HanakoGames now use all of them in one tweet (that one doesn’t count) +The “mommy and daddy still love each other” bit in this Boston police vs FBI spat is adorable http://t.co/M3REIkQbom +@WhiteMageSlave success is being permanently associated with smug grins +@m1sp meep +@puellavulnerata wow, she and I actually agree on something! +@WhiteMageSlave awww! Thank you! +@m1sp eeeeeee! I’m awake! I’m on! +@dan_crowley not a video, but I think it has rudimentary anti screenshot of some sort (obvs another device can always record the screen) +Drunk @MrToph ad drunk @apiary cannot collectively clear World 1-1 in Super Mario 3. +@fncombo do they not have mothers in your country? +@comex having finally determined the Brawl disc is not in my possession, I have ordered another that shall come by post. +My drunk friends have discovered Skullgirls on the Xbox. Their drunk logic is defeated by characters with detachable heads +# 333367635116949504 +Geek house party problems: “whose iPhone is this? Who has an iPhone with a cherry blossom wallpaper” +@jennifurret @NomentionofKev … wow. I always knew those random photos were stolen from some random person, but when it’s someone you know…! +Eve tales: giving a cargo container progressively more passive-aggressive labels as another player drifts closer and closer to it +@justintroutman @kaepora @kivikakk except that's kind of the whole point of the app +@Geesu @cgiffard http://t.co/O4JpPZdOhl "SanDisk Cruzer Fit CZ33" +This is my gaming hard drive. Bless technology http://t.co/u4Mntizafq +@JayMassey @howtogeek whence the “jot and tittle” line in the KJV! +@chibitech Dirty Digital sounds like a band +@edcetera @schoolofprivacy it'd be the same as good Windows 7 tools. If you mean Metro apps, there's just toy encrypters. +@apiary we're going to the store so don't show up in the next few minutes or you will be very lonely +I'm counting former employees as part of the company. You can get off the payroll but you can't escape, @MrToph +Apparently half of Veracode is coming over to our house to play a drinking card game +@cybergibbons it's DHS or whatever the bright yellow one is called +Gettin’ dressed, goin’ to the store on this lovely Saturday *puts on work badge* wait +@leighhollowell I think it’s starting at three-ish +@BullshitCastles @0x17h I promise we are not all like this :( +@leighhollowell just bring some more beer, and oh, I should make DH go get snacks, what would you and Jolly like +@savagejen my teenage self is saying “well duh” +@apiary George and his brother in law can’t drink this weekend, clearance received! Address incoming +@jeremiahfelt a $50 windows ce netbook from China +@kaepora I suspect that Canada is the last stop on a Pacific delivery route that begins in California… +@dan_crowley Snapchat’s key selling point is that the recipient “can’t” keep a permanent copy of the transmission. Fails its threat model… +It’s been 24 hours since my Terrible Laptop shipped and the tracking number still returns a not-found error. My confidence is wavering ! +@wookiee you madman! +@apiary I actually don’t know; it might be too many people already! Let me get a count of who is actually playing +@m1sp I cleared out an entire pirate refuge all by myself!! Drones are my friends!! *crashes into bed* +@CliffsEsport eve online +@CliffsEsport ... the context is a video game ^-^;; +@_larry0 @snipeyhead I’m a fan of “Fiona” +Oh gods I’ve reached the “spreadsheets in space” stage — tallying up expenditures and income on a calculator like it’s a job +@inversephase we use the online order form. There's a delivery address field for apartment number... +@bmirvine lol yes +@Pepyri_ I'm inside a station in 1.0 space! +Eve report: I'm a lot better at this game than I thought I would be! I found a wormhole! It went to a bad place! I came back. +My friend @kivikakk has a go at breaking snapchat encryption from scratch http://t.co/1dVXzUUgd8 <-- good learning exercise +@DarthNull @mattblaze if you had a car you weren't poor enough! +@superMTW why would I want a computer that doesn't have a battery and doesn't fit in my purse??? +# 333002885442977794 +The Windows App Store's standards are so low that there's an app that's literally just someone's resume +@landley Ali Express? +@Kufat I eat at local Italian places all the time. +@Kufat and you know what? It makes me happy. +@mattblaze I eat at real Italian places all the time. Sometimes I just want Poor College Student food! +@landley China! +@mattblaze DH and I come from a lower class background. Real pizza is too fancy for our blood. +Literally every time we get a new Dominos delivery person they call to ask what our apt number is. Does the order form drop this field??? +@p0rksy China! Rest assured it is terrible +@SurprisingEdge opera mini, apparently +@m1sp proddle +@eebrah it's from China and it runs Windows CE +My $50 Laptop will be here in three to seven days. If this thing works out, I’ll have to figure out how to get a case with low shipping cost +@ShadowTodd also, no longer had a human inside her +@eevee I ended up writing posts in a markdown editor and copy/pasting. +I had a dream that I found a fistful of bitcoin on the ground. They were small golden triangles. +@miah_ @spacerog well, the fewer parts made from plastic, the less of a “3D printed” gun it is… it’s just a gun +@spacerog I kind of don’t see how you can make a gun barrel out of meltable-for-printing plastic that isn’t single shot. +@eevee I am acutely aware of the inside of my right ear. Just the right one. +@securityhulk @dakami there’s an autopsy coming out on the corporate blog next week about this silliness ;) +@WhiteMageSlave at least Lippa said something sensible +@WhiteMageSlave I imagine most of them had no idea that was even there until now +I have no idea how things like this just pop up in our kitchen http://t.co/CTJ1t3I86P +Also didn't expect to find out Tony Lippa is *still* sheriff of Caroline after all these years by reading the Boston news +The elder Tsarnaev brother has been buried near my old house in Virginia. Predictably the locals act like this somehow unsanctifies the soil +It seems I always write my corporate blog posts on Friday, and they have to wait for Monday +@The1TrueSean http://t.co/GfpD1s7h2r +I find it interesting that on iOS, the “gun” emoji is unambiguously a real handgun, but on Windows 8, it’s a scifi ray gun. 🔫 +@attritionorg no, I just didn’t cc: the brony because that’d be cheating. +@attritionorg aww where’s *my* troll +@Casiusss well uh the immediate prior RT was the context The one about their coolant leaking +@m_cars my friend did! I wouldn't have the patience +@Jonimus my friend made it! +Newest installment in the series "Hats Eating My Head" http://t.co/Q1CzScYW4f +It's okay everyone I read about Cantor in a comic book once +Year 2018: Microsoft keeps trying to design the Xbox Infinity’s successor, but the result is always still Xbox Infinity. +Next Xbox is named Infinity. Marketing high-fives, then slowly begins to question the wisdom of this decision. +@Gadgetoid @shmoosr people aren’t bothered by what was “always so.” The trick is to not let icky things become always so. +@qu1j0t3 @strlen I really doubt the quality is acceptable for that *yet* but probably in five years +@grayj_ integrating computer vision into this would completely, utterly change the question +In principle they can re-identify the same person across visits, but it doesn’t give them any PII like your phone number. +Mixed feelings on Nordstrom tracking how long customers stay by phone wifi beacons. Be aware that your phone broadcasts its presence! +@MrToph on that note, you and @leighhollowell are invited to play Drunk Quest at our house tonight +@m1sp and on that note, be sure to install eve! So we can fly ! +@jgeorge though if you go ahead and install those to your device, in theory Walgreens can mitm you ;) +@jgeorge you need the private half to produce new certs signed by these ones +@m1sp that is… eerily similar to my own experience. +@BomuBoi when I was much younger I was working on fiction about that - the NPCs were self-aware. +@jgeorge these aren’t the private keys, so in theory this is safe, but putting these on the public internet is still rather… odd. +@seanhn @cBekrar bah humbug +Jarring reminder that space stations are real and there are people who live in space +@spacerog @kjhealy I use nano. And my car is a Civic. +@BobbiJ0609 @LifeInNeon …. And the firing pin. Minor detail. +@xa329 yeah I wouldn't be volunteering +@DarrenPMeyer @Veracode @chriseng b-b-baka +@CipherLaw I'm a fan of neither the concept of export status of information nor "censor until we say you can uncensor" +@CliffsEsport but I feel there are quite enough ways to die without hanging around machines engineered to orchestrate it +@CliffsEsport it would be nice if bullets didn't actually penetrate bodies in real life +@CliffsEsport I don't let what the law says dictate what I consider ethical or reasonable - fix stupid laws! +@jesster_king that's the whole point of this debacle. Foreigners might find out about hand guns! +@CliffsEsport the sound of a chunk of metal rending flesh and bone and vividly red drops of life spraying into the night +@landley I am of the opinion that it's the *production* of that first one that is the problem; the file is the evidence, not the crime. +@CliffsEsport because they are mechanisms designed to go bang bang splorch? +@CliffsEsport @davidjayharris the things that grow in my sink definitely count as biological warfare +Amazingly, the actual link to half a gigabyte of files is still live on their site. But some of you are evil foreigners, so I can't share. +@alizardx @puellavulnerata nope. Something far more awful than that. It's a debugging utility which got shipped as a background service!!! +@theprez98 @innismir I think it’s trying to tell you not to screenshot or copy/paste the results for your own protection. +@davidjayharris and you can find instructions for biological warfare by checking the “don’t” section on bottles under your sink. +@davidjayharris deploying biological weapons is wrong. Knowing how it’s done is not. +@vogon wouldn’t this count as “legitimately in the public domain”? +@Xecantur you think something I ordered from Hong Kong two days ago is within two thousand miles of me yet? ;) +And I say all this as someone who hates guns, fears guns, does not want to be in the general vicinity of guns. +A file describing the geometry of a gun is not a gun. @StateDept can there be anything more antithetical to America than seizing knowledge? +So lemme get this straight: the US government is trying to suppress a file containing a 3D model of most of a gun? Both scary and pathetic 🔫 +@puellavulnerata @0xdeadbabe does the kitten have an SSD? +@rosyna @geekable wut The… register? +@jesster_king @helloerinmarie I believe elected positions do not count as “employees” +@dakami bonus: the app is written in .net +@DarrenPMeyer @Veracode @chriseng but but I thought I was the anime head… +@0x17h augh +@eevee I’ve got almost eight thousand now and I don’t think I’ve ever gotten one; not sure what their algorithm is. +@mweissbacher @523 The Glorious JavaScript Typing System strikes again +@solak @The1TrueSean absent parents provide a narrative framework for both purpose and opportunity for a youth to do something dangerous. +1800s astronomy book contains photographs of painstakingly sculpted clay models of the moon as seen by telescope http://t.co/MzkAQaFqRA +Definitely gonna do a blog post tomorrow about decompiling this vendor trash eating my ram (but marketing won't post it until next week...) +@Xaosopher when DH told me to take out the trash, I said I couldn't because of statis webifier and warp scrambler +@dipidoo no. It's mallocing on every shake event the accelerometer reports. +This is amazing, I can make the app's ram usage spike by shaking the tablet violently +@kaepora it must be leaking somehow, by keeping things referenced. It relies on a huge amount of third party code for that tiny functionalit +That's literally ALL it does, as I don't see it actually do anything with that timer, just faithfully track it. +280MB was being used by an Acer utility in .net that does nothing but track how long since last keypress/mouse/accelerometer triggered. +@m3hr a lot of people who actually work at Twitter follow me so I use their client and complain so maybe they'll fix it (or hate me) +Not amused with Acer utilities that think they're special enough to re-enable themselves after I turn them off in autoruns +@Storifyhelp @kivikakk I need to start keeping a kill board of sites my username has exposed bugs in ;) +@TheDaveCA the NES! 2KB of ram tucked at the beginning of the address space (not counting the picture processor's separate ram) +@Netbus You should consider not making sexist comments regardless of the coolness factor! It's not fair to others that I hog all the cool. +@TheDaveCA dude my target system has 2KB of ram don't get self-righteous with me ;) +# 332636650658213890 +@The1TrueSean looks legit - what kind of computer would know about our human clock system ? +@pmjordan cheap chocolate, because they add so much filler it starts to look gray +I like touchscreens https://t.co/K1tzgeK0OX +@The1TrueSean not Swiss Miss... +Being allergic to brown food dye means that Swiss chocolate counts as a medical expense +@hynek with *free* products that's the inevitable outcome, but not always so with paid ones +Basically I've come to the opinion that small shops make the best software. Clear vision + sensitive to customer needs +@Ammoniak because it costs more, is bloated, and they're herding people to an annual subscription model. And I don't like openoffice much +@katzmandu I somehow suspect this has rather more features. +Oh, and the word processor is using eight megabytes of ram. Eight! +I should warn you that I can't stand Open Office as every time I tried it it's a little too slow and a little too ugly and slightly "off" +I downloaded the trial of this commercial alternative to MS Office that costs $80 and so far it's actually great? http://t.co/yMWEpB5i9I +@tenfootfangs it was incredibly difficult to get both my face and the octocat in the picture while holding the camera +@vogon I don't think I know how to not do that +@HackerHuntress amazingly tangly and hurty! But when it cooperates, it has a nice Hermione effect +Gratuitous Selfie 2: The Other Github Shirt. Unfortunately my public commits are not so numerous as this suggests http://t.co/DfDX2bqHDI +@CyberiAccela I've been running Linux on expensive small touchscreens since 2007! https://t.co/gDz6TX1q00 +@CyberiAccela I now assume Linux is your primary desktop operating system +@RichardBarrell touch screen, you typing racist +@CyberiAccela You know when is the last time I plugged a personal device into Ethernet? I have no idea. Five years ago? +Help my glasses are tsnglef in my hair I can't see what I am typing oh gods it'd all blurry +@CyberiAccela this thought was prompted specifically by warning someone to remember to check the model for ethernet +@sugnaturi that's the "lazy" part of "lazytweet" ;) +Remember when you didn't have to ask if a computer was thick enough to contain a USB port? +@pmjordan thanks! +@vogon the translation itself is obviously server side, so I figure the guestimate could be client side and it'd still count as a webservice +lazytweet: when Chrome detects a foreign language based on text (not metadata), does it do that locally or is it submitting samples? +@davidbelanger78 my office workstation over vpn, yeah. I keep complaining about the state of our internal lan certs... +@m1sp it was more about... us going to the same school, and you giving me a piggy back ride, which probably wouldn't work too well irl +@ochsff it’s kind of funny how we’ve conditioned people to assume recommendations are finely tuned by an intelligent algorithm! +@ochsff the first is the one you’re looking at and the other two are a random sample of their celebrity accounts. +@trufae well, what did you *think* it would do? +@33mhz @0x17h their value for analogy is that they actually get in the news; though I draw analogy to hatred rather than action. +@nonstampNSC the excuse for why their individual writing styles show through is one is like God’s clarinet and the other God’s flute, etc +@nonstampNSC were you raised in the “plenary inspiration” school of theology? I was taught that God literally mind controlled them +@kivikakk @Storify JavaScript casting bug ahoy! Probably another case of http://t.co/NYSkkumjym +@kivikakk young enough that they might not even know what the word really means ? +@_wirepair D: +Diablo 3 pushes patch with trivially obvious integer overflow bug that allows gold duping http://t.co/Z6dSilEIqf +@m1sp I had a totally adorbs dream about you +@qole that's a boot to the head http://t.co/BBhUrAo7uX +Thunder! Lightning! I should give my iHeatgenerator a break before it sets something on fire anyway +@chriseng what are you trying to say about @codeferret_ +@landr0id apologies for the autocorrect that snuck in there +@landr0id like ARM, and a rudimentary decompiler. And you can tweak and re-disassemble stuff and save it out as executable. +@landr0id yes, while it’s not and never will be as featured as Ida, it’s still very useful and contains features the base USA does not, — +@landr0id the video is aging a bit! Hopper has gotten several new features and improvements since then +I’m feeling another fit of Voynich obsession coming on. +Maybe @TheOnion assumed they wouldn’t be targeted because they aren’t a “real” newspaper - I know I sure was surprised… +SEA used the exact same phishing email in multiple widely publicized campaigns and still more newspaper employees fall for it +Five point three billion hashes per second. With a “b” http://t.co/EdsaEtj8aH +@TheDaveCA Chromebook’s target market is schools in less wealthy countries. +# 332276412486656001 +@chriseng my iPad is far and away the most secure device I own! +@chriseng what’s the point of a personal device if you can’t store your personal data on it ? +@evilbluechicken nope! The scariest thing that’s happened is I flew to a faction contested zone to pick up a ship for cheaper +@chriseng @SecurityPenguin @csoandy where’s my security penguin huh +Real selfie this time - my @github shirts came! Whoa how do my eyes get so big http://t.co/5VTsf4wiBZ +@TheDaveCA it was an older lady who appeared to be researching something over dinner +Holy search terms! A chromebook in the wild! +To hide my embarrassment about not knowing the top bar is transparent at the lock screen in ios, I'll just complain about it crashing +Ha you're right the triangle is part of the wallpaper - but I never noticed it's transparent on the lock screen as I've never stared at it +@inversephase I have a 1.2ghz/512mb one that runs XP, but the power is currently out of order +@ae_g_i_s there are a few cat breeds like this too, like the Persian in that article. +@ae_g_i_s — certain bloodlines reached critical mass of certain genes ie fixation, but the species itself isn’t changing. +@ae_g_i_s evolve isn’t quite the right word, it’s just that their mating has been closely regulated by humans for a few thousand years and — +Why is it we can celebrate the uniqueness of minor deformities in cats ( http://t.co/QXbtxsGMuo ) but treat it as a tragedy in humans? +@jennifurret congrats! I’m sure that’s a load off your shoulders +In response to concerns that the pink one looks lonely http://t.co/C7XWwxfpIM +selfie.jpg http://t.co/o6o423rJha +It just now occurs to me to try mobile web. Hello! Twitter for iPhone and Tweetbot went totally dark on me. Panic began setting in +Is it my imagination or is twitter down +@pajp there’s no skip button, only cancel… +Can we please have an easier-to-pronounce name for the slowly spreading apache apocalypse than “cdorked”? http://t.co/xDLbDuDyoh +This song is dedicated to, among others, @m1sp http://t.co/NBnHlVHspP +This book I grabbed calls Windows CE the most interesting Windows - I’m inclined to agree; I find tight resource constraints fascinating +@puellavulnerata unfollow bug struck sorry D: +@wimremes so did he… what a funny religion, always looking for things to feel guilty about. +@xa329 well, newer versions of windows CE do in fact support .net, it’s a light .net that doesn’t have everything though +# 332010608536989696 +“Windows CE .NET 4.0 does not support the .NET framework.” Oh, turn-of-the-millennium Microsoft. +@nickm_tor my joke made more sense when I read your tweet as “I need the name of an RNG that…” +@nickm_tor I recommend this one I wrote just now named DefinitelyDoesn’tReturn256 +.@github is raining 500s +The “poker hacker” case has had hacking charges thrown out. Only a wire fraud case now. +@zeroday @_larry0 not really enough ram - the netbooks with a gig start at about $100 +@comex 🇨🇳 +@daiconrad no, arm. I’m sure a celeron could defeat it soundly. +@vogon super h sounds like a video game +@JackLScanlan @profoundlypaige actually most victims of gun violence are killed by a family member or other acquaintance so … +@blowdart yup. Opera Mini here I come ! +@JackLScanlan @profoundlypaige and a much lower density of killer animals +It’s http://t.co/tettnV51MI several people there sell it so check the shipping options if you’re as willing as I am to get terrible hw :) +@miaubiz don’t think so, but there are ones that cost slightly more that run android that have HDMI out +@Soulmech http://t.co/tettnV51MI +@vogon does CE come for flavors other than arm ? +I’m ordering a $50 pink computer that runs Windows CE, has an 800mhz processor, and 256mb ram. Best burner laptop ever? +@0xcharlie @nudehaberdasher scared to go onstage without him? +@ZoeQuinnzel @vogon smiley faces wander across a screen of punctuation. Then you get a message that the smiley faces are horrifically dead +@_larry0 @ra6bit I’m short on tools and long on clumsiness +“OS: Android 2.2 Browser: IE” looks legit +@_larry0 @ra6bit I’ve got an extremely tiny pink Korean netbook but the power pin is bent and I need someone to fix it… +@_larry0 I saw one that was about $70 in there that has USB, ethernet and HDMI. Yes it’s in the description and in the photo, HDMI! +@MarkKriegsman @focalintent there are so many to choose from http://t.co/peOZhQvTq4 +@MarkKriegsman @QuantumG I know exactly why people need more than a gigabyte of ram. To run the engine. +@demize95 I’ll let you in on a secret: I have a compulsion to acquire tech every few months. Far better that I spend $60 than $600 :D +@zeroday not necessarily this one in particular but http://t.co/927khBoPo0 +@_larry0 no wifi, almost certainly, but a lot of them actually fit ethernet in there! +@iRonNCSU well, the screen itself, plus wifi +I am seriously considering getting one of these ~$60 netbooks in the interest of science and brightly colored plastic casing +It’d be a lot of fun to get a stack of these and give them out as prizes at a con and see if anyone can do something with them +@McGrewSecurity that one is a speed demon compared to the 300mhz one I just found +Where do these incredibly terrible netbooks even come from? http://t.co/927khBoPo0 +@bobpoekert keyboards are kind of noted for being easy to enumerate all states for working as expected! +@superMTW no, it's for the generic bluetooth keyboard +@JZdziarski @cschweitz I'm just saying I don't see how the response was in any way related to racist prejudice on a personal level +OSX wants me to install a... firmware update... for... my... keyboard?? +@JZdziarski @cschweitz you know how some people have a “pet issue” they connect to totally unrelated subjects? I think I know yours :) +@innismir I thought the logic was that the site was information for workers who may have been exposed to radiation. +@jgeorge @PaulM it’s “national change your password day” +@SurprisingEdge PvE. I assumed I had to defeat all the pirates to clear the mission and kept at it… +@blowdart @hypatiadotca @natashenka the nintendo was my dad’s first gaming system. >:) +@focalintent amazon… and with all respect, I don’t think this model would fit you… +@Kufat you asked that as a reply to a statement on *underwear* dude +@Kufat … I’ll think of something! +@natashenka @hypatiadotca it’s been known to happen! +Fact: if you mail-order “assorted prints” underwear, they will send you pink leopard print +@EntroX today’s adventure: not realizing my new guns fit way less ammo than the old ones. Oops +#eve the illegal narcotics factory literally has a neon sign reading “NARCOTICS” on the roof +.@CloudFlare film of Syria retracting routes again http://t.co/CUpoXL05Ia ht @Hackintech_ +I’ll pretend my Windows tablet is a Windows tablet… In Space. “The GPU is overheating, captain!” “She’ll hold… until I beat my high score!!” +@marginoferror I like it so far, but people gave me money so I don’t have to fret about noob grinding +@vogon if the first ship I lost was a battleship, either I’m really good at this game or not spending the money given to me wisely! +And there goes my first lost ship #eve +Hey @cloudflare looks like Syria broke again- can we get another route withdrawal video like http://t.co/HqvA7hFxno before they lie about it +@Achifaifa yeah several months ago. They lied about it too +If you don't have Flash Player, this just happened (look at extreme right), gfdi Syria http://t.co/Xqo77VijZq +@vogon look, I’m just confused, first you told me you were a duck, then a seal, now a human?? +I train people well - I glance their way and they assume I have a bug in their product. +@vogon your face +@vogon *squint* +Amazon Attention Deficient Disorder: I should order some pants. *click* zomg a box?? zomg PANTS?? +@ColinTheMathmo amusingly, I don’t even need the thing to run, I’m putting it through static analysis to repro an issue with our system +@noxander007 huh, never seen that kind before. Around here (I grew up near "Rochester, the Lilac City") they're a particular light purple +I am completely, utterly, 100% positive this will work. With no consequences at all. http://t.co/L2YdUaDsru +@ColinTheMathmo it *does* have memmove. What doesn't have memmove? An SDK from 30 years ago? +Oh, of *course* whether or not it thinks memmove exists depends on whether I'm trying to generate a debug build! Screw you apache +@virgiltexas @miuaf bless your heart. +"error: memmove does not exist on this platform" I'm sorry, what +That awkward moment when you have no idea what the password of your build VM is +@jephjacques hey hitting random in the archives, every few pages I get the chrome malware warning, bad advert alert +@noxander007 neither! I have no idea what it is. But lilacs are lilac, not pink! +fios problems: verifying this DMG is taking longer than it did to download it, wahh +@chriseng but that'd be a good idea if it wasn't "pull lever, receive felony" +@chriseng on my sacred hacker's honor I'm working from home today +@mxgijsen you just hate us for our freedom +The view from my window is a tree of pink flowers. I should try harder to appreciate this while it lasts. +That's right, I'm... I'm... gingerkin +@matt_merkle eve +The real reason I play video games is to live out my fantasy of being a natural-born redhead with freckles http://t.co/21wTLDyHR6 +@grp @41414141 ringing the alarm and saying "exploit! exploit! (you already need root privs)" is our version of crying wolf +@ra6bit it’s the density of their data; just delete a few gigabytes that look useless +@txs ouch dude #unfollower +@MrToph @leighhollowell about time geez ! :) +@grp @41414141 err, it’s super weird to drop a full disclosure on it like a big kid +@zygen those look… delicious +@whyallthenoise eve +@eevee … my gods. +@artkiver err, are we talking about the same thing? I’m talking about a video game… +@Casiusss eve +The game lets me buy insurance on ships it gave me for free? Space fraud ahoy +@ohunt in eve +@jackyalcine none that are finished! +Oh goodness I've reached the hacking tutorial. Apparently space crypto isn't very good +"You don't own anything worth insuring" is probably the harshest thing a video game has ever said to me +@halvarflake @halvarfake it's game money in eve +@tylerbindon (I'm just leaving it while my load is running, not for so long it seems abandoned) +@tylerbindon it's pretty expensive ! I wouldn't mind if a stranger "borrowed" a pinch in an emergency but it's not like taking a bic pen +@rezeusor a couple episodes of the Mega Man cartoon. I was devastated. +A teenage boy from down the street stole the VCR. I still remember his name. He wrote a letter of apology to my dad. Never got the tape back +Laundry detergent is the only thing that’s ever been stolen from me, aside from our VCR with a Mega Man tape in it when I was like, seven +My detergent is getting low, so I’m deliberately leaving it out in the laundry room to test for thieves in this building. +@halvarfake (it’s Clarion Maenad. I assume sooner or later someone from twitter is going to blow me up for the lulz) +@halvarfake who are you and what have you done with @halvarflake +@swiftfoxfire I didn’t until about two hours ago +@RandomStep as presented it's three of three, four of four or five of five wouldn't be much better; PIN is four of ten +@RandomStep it'd be resistant to shoulder surfing but if an adversary gets the phone they could probably crack it quickly. +@grp it's a product, not a service! +@EntroX \o/ +@EntroX it's Clarion Maenad. I hope there's not a way to send painful death :p +@elliottcable he did once like years ago and didn't like it +@IanAKemp @elliottcable I knew my husband was wrong ! +@elliottcable I guess what I mean is if my pod blows up does my money go away or does it persist +@elliottcable is there a bank I have to put excess funds in or something +So @elliottcable just sent me a hundred million monies. I knew socializing on Google Wave would pay off one day... <3 +@IanAKemp yes. I am in wiki absorption mode. +@sneakin Intel Inside +I was told this game is Spreadsheets in Space but so far it's Posing For Character Portraits In Space +@elliottcable I just finished my character, her name is Clarion Maenad +It's like 16 color mode where it's my 16 favorite colors. How do I keep it? +I accidentally launched Eve twice. This was the result. http://t.co/BnmcmXuylD +@katsniffen so maybe the company just hasn't actually gotten around to shipping it yet but they sure fleeced me for shipping then! +@katsniffen yes it's something coming to me. The company sent me "your order has shipped" on Thursday +Twin sisters whose lives never diverged http://t.co/SZClOWTmPQ +It appears that SEA is in fact taking credit for it. But they don’t seem to get The Onion’s response. +Okay. I give up. Was @TheOnion really hacked or not? +The Onion’s tips for keeping news sites from being hacked- with kind words to say about twitter @support. http://t.co/C3kjPo4qzS +@Wikisteff @flipzagging @headhntr @ioerror @maradydd speech to text is very computationally expensive and even google does a poor job. +@JZdziarski @flipzagging @headhntr @ioerror @maradydd you don’t have to keep paying for hard drives if you just buy them outright… +@torvos I still use a copy of Photoshop purchased in 2001. But that’s the problem from their pov, I’m sure +@OFFtheDOT time to get a new car! +@lojikil while my needs can be met with these tools, I suspect a professional video editor may feel differently. +Is Adobe seriously going to a per-month subscription model only? That’s disgusting. I hope the light version of Photoshop is excluded ! +@oh_rodr the prior? It comes off. +Enjoying how the USPS has listed my priority mail as "shipping info received" (ie in stasis) since Thursday #priorities +@m1sp *prod* +(The dispute is about how long we were in a certain situation. To her it was 3 years of 30; to me it was 3 of 9; centerpiece of childhood.) +"Melissa is crazy. Said she <snip> on twitter." I have a feeling my mother did not intend this text for me. +@raudelmil it doesn’t matter much, because no matter how you define it, IPs, domains, or servers, they have no idea what the number is :D +Listening to someone explain to the new guy that yes, many of our large customers literally don't know how many websites they own. +My job basically comes down to hacking around the halting problem. +What’s the etiquette of plugging in your iPad to someone else’s charger when he’s not in his cube +@landley lolol +@ivanca oh trust me you are preaching to the choir here +@ivanca that too, though it’s a bit apples and oranges +@vogon @icculus I’d assume it was video game distribution, as those generally ship as binary and bitness can actually matter. +@DrPizza I read that phrase as “well APPARENTLY you dweebs are all on dialup, so we’ll wait for the Xbox 4 to enforce the way we want” +@landley cannot reproduce +@landley test http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 +In particular I find the phrase that the xbox will be “tolerant of today’s internet” very telling. +@furicle on some models at least, or they have a setup like a “smart” GPS that’s integrated a little too closely +@furicle of course they’re integrated. With everything. +Microsoft’s damage control statement on offline play reads as if they only just now decided for sure it will definitely have offline play. +This trend of cars shipping onboard computers running full traditional operating systems (with web servers?!) is terrifying me +@rantyben @osxreverser it's called contemporary worship mister +@rantyben @osxreverser arise my love, arise my love, the grave no longer has a hold on thee! No more death’s sting, no more suffering, arise +@Tomi_Tapio I can play a cute redhead with freckled in Dragon’s Dogma! :p +@osxreverser kill -SIGSTOP $pid kill -SIGCONT $pid +@jnordine I’d buy it with the 128gb SSD instead of cheaping out on the 64gb SSD +@tenfootfangs Word is constructed well. +@DrPizza we got a whole shelf of Tor fantasy books downstairs. Big hardcover ones. +@jnordine Acer w700 +Oh, iOS apps. I love it when I stroke you and nothing happens, I know a segfault is imminent. +@rgov however, it seems it’s good at shoulder surfing resistance +@rgov well, I’m assuming the exact setup in the pictures is a PoC and a real world implementation would throw in a few more. +@0x17h D: +@MarkKriegsman what are your symptoms? I’m feeling a little flushed. +@vogon those are just the poc, but you’re limited in information density if you want to make sure every possible trait appears at least once +Interesting new take on lock screens - but doesn’t look very crack-resistant http://t.co/ToeEd7tFSm +@0x17h I’m not aware of any - and FTR I’ve only gotten it working on Windows, haven’t touched gnu radio +@0x17h … hrm. Start poking at it with netcat or something… +@0x17h I have no idea, but cute numbers like that are just as likely some custom service. Er, I assume this ain’t *your* computer. +BBC interviews white men about Google Glass. One calls people who like smart phones not normal like you and me. http://t.co/nLcYLPWZUC +Cruel coder baiting, part 2 [pdf] http://t.co/3S2Fvl3FZL +@Tadlette of course there were some perfectly fine future teachers in the lot too. But not enough. +@Tadlette I really can’t emphasize strongly enough the degree to which I would not trust anyone’s child with some of those students. +Old but good: cruel rent-a-coder baiting. http://t.co/2A16DweBga +@RigelMD “less intelligent ones” is a way of saying people I wouldn’t trust with a gerbil, never mind twenty children. +As best as I can figure, they ended up majoring in childhood education because they figured you only need a 5th grade knowledge to pass… +Most of the “less intelligent ones” at my uni were studying childhood education. It’s not attracting enough competent future educators. +@grp a little less issue, but I’d still be right here saying that it’s a nearly useless platform on its own into the foreseeable future +@th3j35t3r young Mr. Tsarnaev is accused of some wicked things - but don’t you think being angry about his human rights is also quite wicked +@th3j35t3r young Mr. Tsarnaev is accused of some wicked things - but don’t you think being angry about his human rights is also quite wicked +@grp which is what Windows has been literally our entire lives. If they can solve the app problem, WinRT won’t be a waste of a tablet anymor +@grp fundamentally the issue is that it *currently* fails to be a Windows- a general purpose home office and school platform w/ apps galore +@grp here, try this ice cream RT! It’s just ice. No cream. But it’s cold, so that’s still ice cream. +This is what American-brand extremism looks like- lashing out against fundamental human rights of “the enemy” https://t.co/7Jt0sWBmD5 +@grp it’s just like Windows 8, except without the “Windows” part! And a ghost town app store; RT should not YET exist on its own. +@vogon Windows doesn’t even have x86/x64 fat binaries afaik. That’s so embarrassing +@vogon well, yes. “Shooting your future self in the foot: a biography of Microsoft” +@grp the iPad isn’t a continuation of a product line on which my business’s applications were based? +@vogon I just very strongly feel that there should have been an intermediate step - that WinRT shouldn’t even exist yet. +@vogon that’s an “if” larger than the moon, and it’s panning out exactly as it was foretold +“DH isn’t here to cook for me” has progressed to the “eating peanut butter with a spoon” stage. +I like the well-done, polished metro apps. I really do! But that’s in *addition* to the x86 software I need to do my job and hobbies. +Many months in, I still can’t fathom why anyone at MS ever approved WinRT. There’s only one reason you’d get a Windows tablet: for *Windows* +@ternus I'm going to get a scout ship, scan for stuff, run into pirates, and die. I have no misconceptions about this +@elliottcable \o/ +@ternus @ScaleItRon dwarf fortress... +@elliottcable huh, okay- I was figuring I'd have to sell a plex if I wanted big iskbucks because I don't have time to grind :) +I caved and got a month of eve because the "exploration" part interests me - but I won't play until tomorrow. Wiki absorption time. +Concerned Users Against Volume-Up Buttons Directly Beneath Power Buttons +@jesster_king I don't! But it's cute :( +@letoams https://t.co/FnNtf4JH1b +@jesster_king no, that's the 11" one... +To my amusement, I can’t access the site which is serving up the root CA that Iranian public workers are supposed to install +@CDA @kaepora gee, only valid for ten years? +@sergeybratus @dildog others have told me they’re okay in news where Russia isn’t concerned, but, Russia is concerned here… +@OptiMizPrime already have one. Two. +@CaptainSaicin where can I get a $400 motorcycle +@chvest :| +@elad3 I also have a Linux laptop and an external touchscreen monitor for it… works okay if you can think like a Linux. +@elad3 I own all three. I… like tablets +@elad3 I love my Windows 8 tablet aside from occasional frustrations with Windows 8 itself but Blue should patch most of them +@tangenteroja yes I do and I have one ;) but I don’t need a second, smaller one! Even if I can aff— *slaps self* +@ErrataRob @kaepora strictly speaking no, but that’s usually what is meant, unless @kaepora happened to have a server on port 80 handy. +Speaking of expensive hobbies, though: YOU *grabs random follower* tell me I DON’T need an 8” Windows tablet no matter how cute it is +@eqe except it’s a “former” employee so the “we’ll fire you” limitation doesn’t apply… +@moxie @mattblaze perhaps the real question should be: why did he say it? +@kaepora they’re probably blocking all ports not used in typical web browsing +@kaepora the first one is true of all libraries afaik. The bathroom one, not so much. +I watched the tutorial on scanning for anomalies in Eve and thought: why are pilots repositioning these probes by hand? Automate, geez! +@A38441 there are some nice things about Lynchburg, but all of them can be found in other places that are better. Moved to Mass :) +@A38441 yes, I went to school there, no not at Liberty. +Back in Lynchburg there was a guy who used his sports car to cruise around his four giant dogs and one tiny one. Was actually adorable. +(I’m sure antique cars are fun, it just grinds my gears when someone whose hobby is antique cars calls my computer hobby too expensive) +@cyclerunner we must not be talking to the same racists - where I come from it’s all about appearance as everyone has the same culture. +Ah, Sunday in the spring, when people of historically advantaged categories drive around in antique cars for no particular reason +@cyclerunner you don’t think it’s inconsistent to rail against “brown folk” and then try to be browner? +@Kufat can you try sounding a little needier? :P And I haven’t been at my computer yet all day. +Modern social problems: is he just not responding to me or did he actually block me? +@artkiver twitter explicitly bans unicode in handles. The question is how the Arabic-speaking kid bugged it out. +@bleidl @kaepora if he had really legitimately won an election with 98% of the vote, how could there possibly now be a civil war? +@kaepora @bleidl well I’ll be a legitimate monkey’s uncle if legitimate and legal are precisely equivalent… +@artkiver um, no one denies that *real names* have always supported unicode. Your twitter handle is @artkiver . +@artkiver your name looks like ASCII to me and letter-by-letter autocomplete agrees +@Se3ek nope. +@artkiver err, example? +Am I the only one who is supremely confused by white supremacists who work on their tan every summer +Time for the annual ritual of being exposed to sunlight and not changing color to the frustration of parents who think this means I’m sick +@CDA @mikko where might I find this certificate installer? +@elad3 @0x3a @mikko it does a soft check client side but lets me submit, then the server either returns an error or silently rejects it +As best as I can figure, twitter has/had a bug with normalizing a unicode percent sign to ASCII and not escaping it, lulz ensued +@elad3 @mikko @0x3a I’m betting there is/was a bug where that was normalized to an ASCII % and not escaped +@mikko @elad3 @0x3a I bet it has something to do with that fancy unicode percent, ٪ , but I still can’t repro. +@JZdziarski @CDA Chrome allows arbitrary sites to register for pinning, especially google. And Twitter official apps definitely use it +Seems the unicode girl’s profile is no accessible on web. Not sure if they fixed bug or I just can’t repro @mikko http://t.co/hSXCsYecMV +@JZdziarski @CDA and pinning has been widely implemented as a direct response to Iran’s abuse in the past +@JZdziarski @CDA of course, but the cert would still be *different* than it was before, and that can’t defeat pinning +@mattblaze I just quoted the guy and let it stand- but my gut tells me it’s either true or they want us to think it’s true and “behave”. +@kivikakk @m1sp good noon <3 +@marginoferror @mikko she used to have an ASCII username so I am betting the validation bug is in username *change* code somewhere +@elad3 @mikko no I tried that too. Perhaps relevant is that it keeps giving me the mobile site in English after I set profile to Arabic? +@JZdziarski @CDA you can’t “not know” about being asked to install a new root CA. It’s not a silent operation on any OS. +.@mikko I can’t figure out how she(?) did it- I registered an account, set it to Arabic, and tried to change my username, no repro +@NaveedHamid @mikko that’s just about UI translation. Can’t figure out what this girl(?) did- I can’t register a handle with Arabic chars +@Packetknife @wimremes surely even the most warmongering sorts agree that defending what you have is a prerequisite to aggressing? +@LowestCommonDen it’s not very consistent with the OO thing +@m1sp I derive amusement from how they deride people with in-game ethics as terrible worthless people who ruin everything +@comex oh geez I forgot! Where is that disc… +@qole @migueldeicaza … I never realized he was the author ! +Eerily specific advertising: ad on a video game site to pick up a hobby that isn’t virtual. Posted by a karate school in my town. +@abby_ebooks sweetie that’s sexist +@LowestCommonDen not.... really? you're probably thinking of perl... +@QuantumG yeah but like... why. +Good job, Visual Studio, embedding strings in my program referencing an F:\ drive I don't even have. +@kragen .... others are telling me I'm off-base to consider a language with classes "object oriented" +@kragen stuff like len(list) instead of list.count or similarly named member variable. Like, you call that object oriented? +@bobpoekert it's... not as object-orienty as I was led to believe? +Language defenders stand down! I don't hate python. I just keep having to look stuff up because it doesn't work as I assume. +@zephyrfalcon I'd expect "no. of elements in list" to be something like list.count or list.size. Apparently it's len(list) +My programming project could be named "Someone who knows C and Ruby finds Python to be... perplexing" +@drgfragkos I'm an obsessive tabber. But that can't cure outright mixing up argument order or whatnot. +I am unreasonably paranoid of someone breaking into my server and laughing at the typos in my command history +I've been using a metro SSH client called "Remote Terminal" which is actually quite nice (aside from no way to change font that I can see) +@QuantumG @focalintent no, Ragnarok Online 2 +@focalintent good news, the game failed to hold my interest! +@sakjur I've played PS3 at a friend's house but the disc was already in the machine! :p +@ErrataRob now my husband and I are top few % for household income. Neither of us think it's because we worked harder than all others. +@ErrataRob and what got us *out* of being poor wasn't hard work - my parents always worked hard. It was rich grandparents +@craftstudiodev @valentinogag @ErrataRob ewwwwww!! +@ErrataRob FYI, I grew up on welfare. +@ErrataRob complex reasons that can't be summarized in a witty tweet? +@valentinogag @ErrataRob the folk at @craftstudiodev got the same email! Someone’s looking for an easy hole. +Made the mistake of reading Eve Online discussions, “liberals are lazy and poor people are almost all poor because they’re lazy” +@sakjur I have no idea, I have never seen a blu ray disc in my life. +@sakjur yes I just never looked at the cable +I am genuinely surprised to notice that the Wii-U has a completely standard HDMI port. I assumed it’d have a funny shape. +@focalintent I think I will give the game a whirl until it gets dark and my high focus state kicks in +Yes my homework assignment for the weekend while he’s gone is to get a character up to a level to party with him +Now the question is: do I work on my program or do I play a Ragnarok 2 character to level 16 like my husband asked me to +It looks like the kind of game you have to give your all to get much out of… +Eve looks like the kind of game I’d give a whirl if the culture wasn’t already so entrenched and insider-ish +@ivanca ah, but that’s why we invented books! Which is why I can have insights on a story from 2500 years ago to begin with. +Gaming an “average worth” algorithm which doesn’t exclude significant outliers http://t.co/Rb401euz25 +@antifuchs well, I couldn't fit it in one tweet but he WAS specifically warned by a prophet this would happen +Yeah I'm two and a half thousand years late to that insight +Dear Oedipus: knowing you were adopted, why did you kill an older man and sleep with an older woman, like, duh they were your parents, duh +@craftstudiodev small businesses frequently run custom scripts with these basic mistakes - see them all the time on the job D: good on you +@craftstudiodev it looks like a basic attempt to exploit custom mail handlers that people threw together and didn't test +I realize you can see "bleed" in those images which some think is photoshopped but I'm ~reasonably sure that would really happen. +@The1TrueSean especially when you’re at a school which has an actual scepter one of them uses +Convert LCD monitor + glasses to invisible monitor you can only see with the glasses on http://t.co/paN2lMQffV +@spacerog … +Amazon, why would anyone want to tweet the exact kind and size of underwear they just bought? Well, apparently I’m okay going meta with it… +@snare 👞🐞 +Hmm… I can’t help but notice my back patio is big enough for a tent. A tent in wifi range. +@_losh err, Python is a bit more likely ;) +def foo(): pass — I can’t help but read this as “meh, I’ll pass on calculating things today, thanks.” +“No, welcome to America. All of that stuff is being captured as we speak whether we know it or like it or not.” - former FBI agent +@skynetbnet @thegrugq actually bit9 already makes that, and my work computer is running it right now :( +@kivikakk SPIRITUAL PEOPLE USE TELEGRAPHS STOP. WHAT IS PUNCTUATION STOP. +@m1sp yeah I already decided they’re just video game villains +@stillchip @mikerigsby I… uh… critical culture fail. +@kherge yes I will wake up at 2pm tomorrow +I am in fact playing #dwarffortress but I don't have high hopes for this fort. #tantrumspiral +@_larry0 correction: I am causing horribly formatted disassembly to be generated +@_larry0 "worse"? Implying my Friday night is not starting in a good position? +@mcclure111 you're looking at a text dump of python lists +@mcclure111 distorm3 library +Friday night is consistently the most productive night of my week http://t.co/z54iv8RDCj +@TheDaveCA well technically it's to get a toy gun - starter pistols are those things they shoot at horse races. +I just noticed my nifty keen Veracode peon cup isn't microwave-safe. What good is it then?! +Whoever wrote the .nanorc I cribbed is really incredibly racist against the tab character. Highlighted bright red for EVERY language? +@nonstampNSC you would not believe the tortured justifications they can come up with for this stuff… +I’m not even sure I know what an x86 chip *is* anymore. http://t.co/G2or2gMtyj +I’m not sure if Housemate locked the door when he left for two minutes because he doesn’t know I’m here or he knows something I don't. +@SurprisingEdge nope it’s in good old fashioned x87 +@SurprisingEdge may your cat knock over your soda all over your laptop when you look away for two seconds +I’ve been sitting on a killer little game idea that should be fairly easy to make; what’s stopping me?! +@AdmiralA so most people today are feminists but they only apply the word to people who are more feminist than they are! +@AdmiralA err well by definition if you support women being free agents with human rights you are in fact a feminist :) +@spacerog @malc0de umm - the point is they installed the patch for what they thought it was and were still vuln? +Israel calls Google having a “Palestine” search site a political statement - as if taking Israel’s stance is not a political statement. +@_yossi_ I don’t even have a license! But I’m a fiend at Mario Kart +Astonishingly, mirroring tilt-to-steer games to the TV makes me not nauseous! I’m still terrible at them though. +Looks like hacking obscure government websites, so that the victims of the hosted malware are almost all govt employees, is now a Thing +@Nfinit @vogon I think the threshold for slang is generally not very high ;) +@vogon @Nfinit it’s mostly a tumblr thing, and tumblr is very teen, but it leaked into bronies etc. +@miketheitguy @wimremes that’s a completely different matter ! +@Nfinit @vogon gods forbid the next generation develop their own slang. +@wimremes not enough to speak it coherently ! +@wimremes and every Dutch-speaker in the world makes this mistake in English :D it’s a dead giveaway +@wimremes no, the way you wrote “video’s”, correct in Dutch but very wrong in English ;) +@wimremes their vowel’s :) +@wimremes do you know the fastest way to ID a Dutch-speaker in English text? :) +@jjarmoc yeah it’s not an infinite pi in the sky generator ;) +Justice: @fredowsley finally getting called out on removing the divider between cubes and having a little kingdom over there +@Johenius @stillchip oh it’s fully functional with a real world use to this very day - if you’re managing your own stack +@scottmarkwell I will time travel to the year 2000 and suggest this to him +@jjarmoc four as far as I can figure +ms-paint art at its finest http://t.co/Qw7KJRJnaO +@iPlop https://t.co/Iyoq5kDwmC +@stillchip yeah, everything dealing with floating point is separate +@lojikil “CRC32Accumulate CRC32C value using the polynomial 0x11EDC6F41 (or, without the high order bit, 0x1EDC6F41).” #closeenough +@Ansjh fldpi +I… did not know that x86 chips have an instruction to load pi onto stack. +@JastrzebskiJ I’m pretty sure the latter counts as biological warfare. I just wrapped stuff in printed-out gay cartoon porn last time +@JastrzebskiJ I’m pretty sure the latter counts as biological warfare. I just wrapped stuff in printed-out gay cartoon porn last time +TSA and baggage theft: it’s bad. Incredibly bad. https://t.co/hpclhWmwpZ +@WarOnPrivacy well since the book itself is PD whoever found it could also put it in free archives as it should be if OED is quoting it! +The Oxford English Dictionary is looking for a book called “Meanderings of Memory” written by a Mr./Ms. Nightlark in 1852. +“May your dual monitors never have quite the same color profile” #geekcurses “May your headphone connectors always fray” +“May there be a dead pixel near the center of your screen” #geekcurses +@daviottenheimer somehow, contracts written on paper to subsidize device costs work regardless of operating system +“I hope your phone is handled by a toddler who just ate pancakes with syrup” #geekcurses +Actually, I think “I hope you get stuck in a two-year contract with a particularly cheap Android phone” shall be my new parting curse +@jdiezlopez when you say something (generally negative) about someone who has a twitter handle but don’t @ them. +I want to subtweet @grsecurity so hard right now, I’m going to explode +@Dan2552 I actually didn't know that, but still, I can't drag around an Apple TV everywhere I go to give presos :< +@Dan2552 my use case has little overlap with playing movies +@sevanjaniyan they’re post failures from bad connections, they accumulate +I am so tempted to play a game on this public office TV right now. +Huh this looks okay I guess http://t.co/c6DmRYTZM1 +@lastres0rt well this thing contains a real processor with an operating system so it certainly could! +Granted I would not wish a $50 android phone on anyone. +@matt_merkle @myfreeweb and mirroring is specifically what I need! +@lastres0rt pretty sure I’ve seen them that cheap on sites like Ali Baba, admittedly they’ll probably break after a week :) +@lastres0rt you know apple prices are fixed right +Hey look everyone I bought a lightning to HDMI cable which costs more than an entire android phone with HDMI ... :( +The only weird thing in the event viewer is a write to disk took 91 minutes which is how long it was in the bag. So it suspended but didn't? +@jb33z I do however have a work charger for the MacBook Air because that thing drains (and refills) very fast +@Alamae Not sure honestly. Guess I should dig up the system logs +@Alamae surprise suspend failure! Trololol +@jb33z it’s a windows 8 tablet, definitely no other chargers around, oh well, going home early anyway +@jb33z except I didn’t bring my charger because 100% was enough to get me through the day but now I’m starting at 70% :( +Why is my Backpack of Laptops warm to the touch Ohsh—— +Cracking a password by measuring execution time with pintools http://t.co/TICELYp746 +@puellavulnerata I guess I’ve always been one of those “at peace with the animal kingdom” types. +@puellavulnerata don’t recommend trying that on armed humans though +@puellavulnerata there is a way to getting along with dogs, mostly in reacting like you’re so happy to finally meet them +@thegrugq @WeldPond @chriseng they have to walk all the way to the fridge. Except for the ones with mini fridges +@dinodaizovi @joshcorman @wimremes you’re such an analogist! +@SurprisingEdge we don’t speak of the… non-octets. +@OxbloodRuffin only if you’re opposed to fabulous male saris +@puellavulnerata take some comfort in that white girls aren’t suspicious unless they’re standing on a corner looking too pretty. +@shawnmer @thegrugq @41414141 @0x6D6172696F I apologize for my racist friend. He thinks all Germans look like @i0n1c +@chort0 @GreatFireChina so uh you’ve changed password / revoked app access right +@jesster_king no. They’re not dumb. Just literal. +ESEA claims the bitcoin thing was a rogue employee now (as opposed to previous claims) http://t.co/1T3sDu6hp8 +Did you see that @weldpond totally stole my little farewell salute thing I’m suing for brand infringement +@garlimidon no, that completely and unfairly characterizes it. Such people are usually deeply intelligent. +Is there an actual medical/scientific term for people who just never get jokes and take rhetorical questions literally all the time +@_booto I don’t remember except it was a first page smiley +@Dykam @Koning_NL +@CyberiAccela oh right you changed your username +@CyberiAccela ask @m1sp ! +@CyberiAccela you're the second account in a day that Twitter has suddenly decided I am following (meaning no offense!) +@ScaleItRon the ssh session, as screen was fine once I reconnected. I'm using a metro client so it's in .net +@meangrape not in Metro it isn't! +@thegrugq I already took my sleeping pill so I'm going to drop connection to IRL before I drop connection to IRC #zzz +@thegrugq the real question is if I can paste emoji into irc and disconnect everyone else like it's 1999 ;) +@thegrugq how dare you imply my 0day are not worth hundreds of thousands 😒 +@thegrugq are you kidding this is prime 0day +Guess who just hung an ssh session by sending an emoji +@Kurausukun I frequently complain about everything I use. Also, I like touchscreens. +Since I just blindly installed a nanorc off github, I 100% deserve that it changed basic keybindings without warning. +Are nanorc files turing-complete no reason just wondering +There’s just something fundamentally beautiful about a tablet computer with a full screen Midnight Commander in vibrant BSOD Blue +@vogon you're probably not wrong because Real!Remote Desktop does give me a certificate prompt +@vogon why does it lie to me and say the machine isn't answering +WHY can the metro Remote Desktop not connect to a machine that the conventional Remote Desktop can #UIRage #Windows8Rage +DH borrowed my tiny USB drive and now I can't find it on the back of his computer because it's too tiny +@focalintent @MarkKriegsman yes *shudder* +Not sure what it says about y’all that all the snark about 8 and 16 bits has been made but none about 64 +This book on *source* analysis assumes pointers to be four bytes… 😤 +@vogon that’s a sure sign of someone who was raised outside of it entirely… +@zygen also you're confirming my stereotype that no one at twitter is a heavy tweeter +@zygen you should spend it replying to me +@dangoodin001 I don’t know but the Apple app evaluation process is pretty much useless for subtle malware… +@ra6bit @banasidhe @drbearsec most people don’t sit around quantifying themselves as 2.31% the other gender :) +@nickdepetrillo did you get a good look at its rear as that looks like a beaver but cool also be a large woodchuck. +@uptownmaker incidentally I am more or less poly. And bi. But conventionally married to the other gender, so I have straight privilege +@zygen you know I’m only so hard on twitter because it constitutes my blood and breath right +@zygen now I know who to DM at 2 in the morning !!!! +@zygen wait do you work there +@uptownmaker really? Wow that’s messed up +@uptownmaker this must be a definition of kinky of which I am unaware, as I’ve never heard anyone face civil discrimination for that +The masses demand Pokemon liveblogging. http://t.co/XLfxQ5oRLV +@DrPizza I associate that game with nothing but my husband swearing angrily +Husband and Housemate went to the movies! Do I a) play Pokemon Blue on the TV b) continue Dwarf Fortress liveblog c) something educational +@eevee it was worth it imo as an animal lover. Sometimes you don’t know but you have to try. +Actually looking at my mention stream in two different clients Twitter may have fixed or mostly fixed the dropped streaming bug today +I draw the line at O for Otherkin ;) +Working my pet issue: don’t forget the T in LGBT +@imrel0ad there is now +(That’s Washington and then Washington, DC separately. Hooray for overusing the same name!) +Connecticut, Iowa, Maine, Maryland, Massachusetts, New Hampshire, New York, Rhode Island, Vermont, Washington, DC, Native Tribes #gayrights +@samkottler also helps if you have a font installed with the sparkle heart emoji ;) +@vogon 🌟🌟🌟🌟🌟 +@Pentanubis the latter would be Fabulous with a capital F +@samkottler look it up on google news :D +Welcome to fabulous, Rhode Island ✨💖✨ +@Kufat https://t.co/AUqkojJIFr +Day seven billion of the “new API is randomly dropping like 5% of tweets” bug. I’ll be over here being bitter towards twitter +(The idea being to teach student programmers that their cute, efficient algorithms will fall down on real world input) +@tapbot_paul not to *use* anyway! The spirit of the comment was to teach the taste of abject failure. +Example of *good* comment from DailyWTF: all young programmers should implement a date/time library. Under adult supervision. +@mirell they will eventually, but not the “explorer” model, unwise considering the target audience. +@inversephase a lot cheaper than mainframe massagers +@cubewatermelon @sciencecomic forgive them for they are young +Glistening example of DailyWTF comments: “no business should use Windows because it’s a PERSONAL computer” #genius +Why do I punish myself by reading TheDailyWTF comments? It’s this little microcosm of 1999 slashdot comments that just won’t die +The mojibake is leaking http://t.co/8q20V4UGqt (order form filled in with Cyrillic) +I feel all hip and European when I read a political parody account in Dutch and get the joke +@Rhythmreactor also high five for being from Gelderland, stranger. Not that you can tell from my bad Dutch, but that’s where I was born :) +Apparently I just passed forty thousand tweets. I suspect I may literally tweet more than I talk. It’s 60% replies, too. +@Rhythmreactor at this point, no, but it may have been a “suicide by cop” ie planning on getting shot at if he didn’t die right away +@MichaelSkolnik were you there or is this via someone? Condolences for witnessing tragedy if you were there :( +@ternus well, yeah, cuz it is +It’s 3pm and I am just now starting to feel awake and coherent +Instagram oauth does naive domain name partial matching, ownage ensues http://t.co/nKWPPml2uR +@nicolasbrulez also it would C&C to the public domain of my least favorite person ;) +@EightTons actually it’s a huge portion of our codebase and not even the original author is sure how it works +If I were inflicting malware on people I would make sure the PE header had a 2008 timestamp so they’d think they’ve been owned for years +@konjak hello stranger I like this picture +@mikko I guess I have faith in everyone screwing it up and storing it anyway ;) +@NM_Jeff I don’t “read gawker”, it came to me through the twitter filter. +@_wirepair what that is personally offensive +@NM_Jeff Jezebel is kind of hit and miss. I judge articles by their contents, not the ephemeral state of surrounding news media. +This is an amazing commentary on the perception of misandry http://t.co/PYIDBmFABW +@mikko does it really help prevent fraud? How often does one have all other needed details but not that one? +@washiiko what? I wore a $60 dress and $5 shoes. I still have the shoes. +@uppfinnarn sounds like a good idea I guess? +@uppfinnarn it’s… a collection of letters? +@chort0 down voted to invisibility? Or you’re you’re using sort by best/hot? +@m1sp the werepanther reverted to human form literally seconds after arriving and bolted without so much as killing a yak +@chort0 did you know I’m officially not allowed to make fun of him :( +@Viss cheers +@innismir invalid link and I am curious D: +@JackLScanlan except I don’t drink. +I… don’t remember following @LaughingSquid . +@DrPizza the strange truth is that any good-looking criminal is going to have fans. Also, his friends seem to be very loyal to him. +@thegrugq you just don't know how to interpret the ascii +Let's try this again http://t.co/8KztUwik78 +This kid in this sandwich shop is acting like he swallowed cocaine or something he's climbing shelves and slamming soda buttons +Today's discovery: children begging for junk food sound the same in every language +Python documentation life advice: use communicate() to avoid deadlock. +@grayj_ sure but does it magnetically clasp to my soft-cover iPad case +@arstechnica @dangoodin001 404'ing +... and that's the second cheap bluetooth keyboard I owned that only worked until the first time the battery died! (not the cool little one) +@NM_Jeff "copyright and trademark claims attributed to “Firefox and Mozilla Developers."" +Of all the stupid comments on that ars thread, the one that gets me is the call to just give up being angry about surveillance because w/e +Go Go Mozilla - using a copyright dispute for good http://t.co/zozQYO18ue +@cammywrites ^_^ +First @MolnIsCloud raised eyebrow: why is my Linux server running bluetoothd by default o_O +Pixel art movie... made with atoms http://t.co/I5dRHCGcmB +@tomslominski I always thought so too but it turned out everyone I knew but me was a boy +@tylerbindon @github how did you get to this page? I couldn't find it on the t-shirt listing or the faq +@dijama but my waist is pretty typical for someone this tall so nothing fits right!!! +@dijama it varies vastly by brand. My top end is a bit heavy if you know what I mean so I have to buy clothes cut for heavyset people +I notice @github shop doesn't have shirt sizing info... gonna take a risk that "ladies xl" actually fits tall women +I love it when the dynamic web scan team shows me one of the "special" websites. It's like playing Classic Web Vuln Bingo. +@Paucis__Verbis they’re on a boat, they’re on a boat +@greg311 I’m not gung ho ban all the guns, I’m gung ho “don’t enable small children to murder each other”, parental responsibility +@greg311 okay then I’m not sure what we’re disagreeing on +@dfranke the prior is kind of too likely to lead to the other. Don’t teach small kids to use death machines. Small kids are dumb. +@greg311 my cousin-kid doesn’t get to use real guns yet but there are real guns in his general vicinity and they’re glamorized to him +@greg311 I’m just saying that in some families teaching small children to use guns is seen as dead normal +@SurprisingEdge I’m fairly sure that’s where the actual cart makes contact (the cartridge housing has been removed) +@sciencecomic not to be That Person, but don’t you think that song is just gender essentialism (I understand they’re not dead serious) +@greg311 my 4yo cousin-kid is a startlingly good mark with nerf guns. It’s not that fringe in certain places. +@Jedi_Amara 🇺🇸America🇺🇸 +Accidents happen. It’s not fair to blame parents for every accident. But I think it’s fair to blame parents for giving a 5yo a real rifle. +@RSWestmoreland accidents happen, but it’s repulsive they were teaching a 5yo that handling a gun is okay for a 5yo to do +Via protected: to the surprise of no responsible parent ever, 5yo given a rifle kills his sister. http://t.co/5FVs3SvYBD +Why does software have to be so complicated? I go in to talk to engineers assuming a problem is one bug and it’s really another entirely +@matthew_d_green in this particular case it was a game client so that would be expected anyway +@thegrugq sir, please, I do *static* analysis +@MarkKriegsman …. New Hampshire? +@vomitHatSteve shortens hardware life and runs up electricity bill. Punishes the user. +@Demonic_BLITZ http://t.co/jOyhKoqpc3 +@nixonnixoff except that’s exactly what miners do, especially silently installed ones! +@nixonnixoff if by interesting you mean destroying people’s personal computers. GPU mining is not healthy for machine or electric bill +@nixonnixoff if by interesting you mean destroying people’s personal computers. GPU mining is not healthy for machine or electric bill +@mister_borogove kind of too late at that point! +@glassresistor binary, solutions that only work with source are toys IMO. +@marshray that many/most/all commercial flights lace their fuel with mind control agents to dampen free will of the populace +Has anyone researched telltale signs to determine if an application contains mining code? Cryptographic constants etc? +@marshray that was an absolutely horrible, disgusting thing to do, but that isn’t quite what the chemtrailers are claiming +Computer gaming company accused of silently pushing out bitcoin mining software to gamers’ GPUs http://t.co/W0AFn2fNWJ +@McGrewSecurity @chort0 I use actual calculator apps, but that’s mostly because I enjoy flipping the little bits in programmer mode +Last night my VPS had a 2.0ghz processor and today it has a 2.6ghz one, at this rate of growth I will soon have the fastest processor ever +@grp @tapbot_paul my experience is the *dead* opposite - that signed math with logically unsigned values is a failed conditional timebomb +Watching an airplane out the window, it blows my mind that people *actually believe* they’re secretly spraying mind control chemicals +@dinodaizovi you’re sounding really passive-aggressive ! +@tapbot_paul Augh! A count should never ever be signed! +@voltagex https://t.co/VJ3t99c85D +Hacking github’s contribution graph ;) https://t.co/YtyREpQAoT by @kivikakk +If you have a firmware bug in a slot machine, try not to exploit it five times in one hour in the *same casino* +@raudelmil I know them and their work. Heck I kinda maybe know one of them biblically. That’s how NDA goes but they’re legit. +@netcrusher88 one would assume! +IOActive: “I’m not saying there’s serious bugs in Huawei, but, there’s serious bugs in Huawei” http://t.co/oAlIetPaBY +This ninety-nine cent Danish pastry tastes like laundry detergent +@sergeybratus @marshray the math thing is generally American, but Mass schools are not as stupidly run as Floridan ones for sure. +@solekiller the thing what underpins the Veracode static analysis (we really do just call it the engine) +@pajp no, Linux is just awful with error messages +@marczak http://t.co/jOyhKoqpc3 +@WesleyFlake @thegrugq if you have high privacy requirements, *always* encrypt locally, then store. +I guess it comes down to I can put up with *sincere* beliefs I don’t like but not beliefs only adhered to when it’s convenient. +@yoz @raaahbin @comex I just can’t understand how that religious belief could still hold actual significance at that point. +@yoz @raaahbin @comex I just can’t reconcile the idea “don’t work today, God commands it” w/ “use this gimmick to get what you want anyway” +@yoz @raaahbin @comex meaning no offense but how else could it reasonably be interpreted except an attempt to rules-lawyer a belief +.@comex I was criticizing the people who make/distribute it specifically, a really messed up sort of charlatan… +@sergeybratus I thought it was the other way around- he made them admit hiring non-practitioners to do the work was inconsistent w/ belief? +@panther_modern I know; I was one; but not this particular variety. +ffs if you teach using light switches on holy days is offensive to your god don’t make cute gimmicks to get around it. You think he’s dumb? +@xabean just remember: Losing Is Fun +So it's a few minutes after midnight in the first of the month and our internet suddenly broke. It's not a payment error it just lost its IP +... Fort over. +@blowdart Dwarven women do not have beards in this realm. However as she is now quite dead I can't go back and check. +@blowdart not only do I know she's a her, but I know everything about her down to her favorite color and how she feels about crowds. +So uh six of my seven dwarves are (un)dead and the last one is holed up underground running the whole fort herself http://t.co/5PN7k5J46y +Does anyone have a guess why Dwarf Fortress over SSH is not receiving/respecting shift-arrowkey commands +@thegrugq eighteen euros one, one core / 1 gig ram / 1 terabyte bw +http://t.co/XLfxQ5oRLV get your liveblogging free liveblogging get it while it’s hot #dwarffortress +@ErrataRob they start at ten euros I bumped up the ram and it’s eighteen euros. Comes with a terabyte of bandwidth https://t.co/zbVCG9pAOO +This is happening #dwarffortress http://t.co/HnetxUEyv5 +@thegrugq I only go to [redacted] to flirt +Thanks those who suggested it was 64-bit DLL hell. apt-get ia32-libs fixed it. Also wow my Sweden machine has FAST internet. +@thegrugq #thatsthejoke #sortof #itsactuallythatimtooparanoid +@miuaf couldn’t it uh maybe mention what it thinks is missing +I’m trying to execute dwarf fortress on Linux and it’s telling me there’s no such file or directory for a file other commands agree exists +I installed elinks on my Swedish server and browsed to google and welp my unicode is working over ssh! #sökpågoogle +@chadwik66 it’ll pick up once it learns your preferred insults. +@dakami I’m not sure how you define super low but I’ve been very satisfied with my Acer w700 +@sciencecomic … … … what +If you want to stress test your C/C++ static analysis, it turns out a natural language parser is a good choice… +@jruderman @johnregehr well uh… nothing really! I guess technically C’s soundness is measured against “the ideal machine” +@akopa also I like to have a general purpose Linux server just laying around not subject to my home ISP getting annoyed :) +@akopa I want my irssi to stay up 24/7 without interruption :p +@akopa yes? +@locks also unlike amazon they do not charge extra for static ip +@locks it just debuted and I got mine a few hours ago, however the deployment was all very automatic and smooth and it works as expected +@MolnIsCloud do you have a high-res image of your little cloud buddy? I think it’s adorable +I… may be renting a VPS from the Pirate Bay people purely because their logo is Cloud Kirby. https://t.co/a9eEhnGsuB I’m easily won over. +@meangrape oh no I dropped my travel floppy disk the one I keep 64px gifs of my family on +@meangrape https://t.co/i53JbbbnzM they’re new, but Kirby wouldn’t agree to be their mascot if they weren’t totally good for it right ? +@matthew_d_green well, yeah. But it’s not taught that way, usually. Whence much sorrow. +@ptolts dark secret places and #nesdev +@matthew_d_green until suddenly it bites you for opaque reasons. +@matthew_d_green *I* think it’s interesting - because you can become completely competent at C and never even know the stack exists +@gangstahugs I actually don’t keep logs. I’m being sarcastic :) +It’s in Sweden so the feds have to fill out *two* pages of paperwork if they want my irc logs of public channels #overkill +I got a virtual Linux server in Sweden with huge bandwidth and lots of ram. For my irssi. #overkill +@matthew_d_green orly +@ternus @csoandy @theladykathryn what?! I don’t get cake, no fair ! +@Dianora_1 reading the details, it still needs mowing, just not as often +@jack_daniel @maradydd \o/ +Why have bio-engineers not invented a grass that grows to the ideal length and then stops? What are you people doing +I just bought a fancy RaspPi magazine simply because it makes me happy to see Linux hobbyism rejuvenated. Will probably give it to a kid +And yes of course the certified sticker is a joke. It’d be cruel to make someone wear that unironically +This is taking a really long time can you tell http://t.co/9LvEhTs9DL +@The1TrueSean @WeldPond @Veracode I've only been here for a year and change! +@sneakin signal? what luxury +This is my build buddy, she waits with me patiently http://t.co/Fmk4Asf2BI +@solekiller our product! +@solekiller my local instance wasn't feeling very cooperative +@uppfinnarn @gsuberland heheh that may be slight overkill for what he meant :) +@uppfinnarn @gsuberland in general you shouldn't do recursion if it's gonna go really deep unless you have like, no local variables +@uppfinnarn you'll probably have to look it up in your OS documentation +@uppfinnarn in this case I was talking to someone targetting Wii and it turns out the stack is measured in tens of kilobytes haha +@uppfinnarn and modern compilers may try to warn you when they can detect that you're unambiguously going to blow it +@uppfinnarn it can cause bizarre memory corruption but if you're compiling against a modern x86/x64 the stack is fairly large +Q: How can I know when my C program is going to exhaust the stack? A: It's platform-dependent and arbitrary! Have fun. +@Manawyrm donno, but I have found a project that suits my ideal for the moment, if I need another I will check if audacity is native enough +@Manawyrm well, Firefox is a little too big for what I have in mind, but I assumed that it has a Unixy layer in there somewhere +Anyone who thinks the underlying stack implementation of C "doesn't matter" has never caused memory corruption with a huge local array :) +Let's see if the online instance or my local instance completes the scan faster! ... Assert failed: foo > bar #storyofmylife +The other half of my life is waiting for a mysterious cloud server to agree that my uploaded executable is valid +@whitequark that's about half the company :p +@whitequark the point/joke is that I have Visual Studio and I need the exes it produces to work to do my job so it's exempted. +Don't tell the APT, but there's a backdoor for running unsigned code on our machines: bring your own source and compile it on the spot +@deathtolamo thanks this actually looks like a good fit for the sort of program I was looking for +@WyattEpp ........ KDE? +@bhelyer I... doubt that. +@comex I'm not contesting that ! I'm just asking for some names. Chrome is no good though, too big for my purpose +Hey you - name me an open source C/C++ project that comes with Visual Studio build support out of box (no Cygwin, no mingw) +@comex also people are always like "offer solutions that aren't absolutist impositions of your will!" +@comex for definitions of "little fallout" that include every corporate network in the world pushing the settings to re-enable +@comex trying to go for a solution that might be at least hypothetically doable in under five years! +Disagree with this post: solution is not to stop signing stuff but to get Java to stop conflating stuff https://t.co/Kijq8D8cco +"Customers who bought items in your recent history also bought: US Flag Tactical Patch, Black" well that's embarrassing +@lakofsth man little endian can diaf +My lucky number other than my entire name. The IPv4 version of my handle is off in corporate-allocated space, tragically. +Woo! I got a dinky VPS with a static IP and one of the octets is my lucky number! #superstitiouscomputing +The fact that glitches are inevitable is itself reason that software should never auto-text more than one number per event, @path … +@gsuberland there is a notable difference, I just felt like the way I said it would make more sense to the average modern gamer +That’s two people who objected to me casually calling SRAM flash so I am required by the twitter cabal to inform you I was too casual +There’s an old CRT in this office with a suspiciously Tetris-shaped burn in. +@chriseng mine still worked last time I plugged it in. So does my Pokemon cart which isn’t too much younger. +@0x17h then later ones got fancy with added registers, clocks that raise interrupts… +@0x17h basically they’re just microcontrollers that switch out what ROM on the cartridge is mapped into the console’s address space +@21lettere well, we stripped off the metal casing, but other than that… +@kherge http://t.co/YfQo6SBI8x +My Nintendo actually looks pretty different as I have the late top-loading model that looks like a Super Nintendo. +A non-blurry view of the whole board - you can absolutely see it was assembled by hand, especially in upper left http://t.co/67YRcae1E7 +The first home video game with a permanent save file - The Legend of Zelda. MMC1 with battery-powered flash storage http://t.co/Q26CWcVmQB +A more serious picture http://t.co/DrWPbqYkbH +NES photo op! http://t.co/9NVbJMN9Jn +@n4j value range analysis in c by axel Simon +Last week I covered the software of Nintendo carts, this week @CaucusRacer does the hardware +@kragen … and I’m one of the only people who’s looking at older entries on a frequent basis. +@kragen many gigabytes per day. We’re not a storage company, we don’t buy terabyte drives in bulk… +@kragen in practice it doesn’t take more than a few minutes when I need one regenerated, it’s just a task flow interruption… +@kragen we generate many gigabytes of character search data and delete ones that haven’t been accessed in a while for basic cost reasons +@Neostrategos @chadwik66 as long as “I hate it!” counts as constructive criticism ;) +@arcticf0x thank you, every now and then I get in the mood to redesign it :) +@chadwik66 I am both ! +@chadwik66 where’s mine?! :( +Production servers “should be” running tripwire-like tools, but there’s no point in being surprised that most don’t. (Re: Apache hacks) +A significant portion of my life is waiting for databases to regenerate discarded character indexes for text search +@tufts_cs_mchow @chriseng nope, I lack the manual dexterity to be a motherboard junky. It’s @CaucusRacer +@chriseng I have an incredibly vague memory of my father’s original Nintendo but “my” Nintendo was a top loader #young +To my astonishment that wolfram alpha image isn’t fake. Life is now much better +@chpwn @comex whaaaaat no one informed me 🎂 +@ternus \o/ let’s have a radio disco party +@Theremina @ioerror out of curiosity y’all realized this is dated 2011 right +@DarrenPMeyer huh… they didn’t have that when I needed them! +@DarrenPMeyer afaik there is no amazon basics lightning cable? That one is fraying too. +Oh look another super overpriced apple cable fraying at the base of the connector which I’ve never seen any other USB cable do +@eevee I’m crying IRL for Styx. Your enthusiasm for him made me totally reconsider my opinion of hairless cats. +@kaepora always knew those Geniuses were useless +Neuroscientists: binaural brainwave players: vaguely scientific or pure placebo effect? +@gsuberland it’s an :o face +@gsuberland 😮 +@landley well, I’m not about to spend the next month of my life hex editing the app to save to local storage +@smeerp I wish one could flag a tweet as “question answered thanks” +@fuzztester that’s not how you twitter ;) +@thorsheim I work with highly sensitive customer 0days on a daily basis, I can’t be dumping my notes to cloud servers +There are a lot of cool little note apps and whatnot that I would totally use if *they didn’t have cloud storage you can’t turn off* +@bpblack I was being slightly sarcastic ;) +@ternus oops, hang on, thought I turned that off +@csoandy @ternus be a pal and help me fill in some words in this recording where it didn’t come through clearly +@ternus @csoandy is it a wireless mic by any chance? :3 +@colinmeloy @JennyMcCarthy @hypatiadotca I’m fluoride free for non-crazy medical reasons - but I get cavities like crazy. Go team fluoride! +My avatar apparently polls very highly with the “twelve and under” constituency +@AtheistLoki for the record I’m not in the habit of attending events which are targeted specifically at my gender though +@AtheistLoki yes but sometimes it’s “a problem caused by a few jerks” and sometimes it’s “institutionalized prejudice” +@AtheistLoki the bitterness may occasionally leak. +@AtheistLoki my entire life story has been that of being pressured to “tone down” or outright conceal my gender if I want to be “accepted” +@AtheistLoki my entire life story has been that of being pressured to “tone down” or outright conceal my gender if I want to be “accepted” +@AtheistLoki ever been a woman at a predominantly male conference? Ever been told to stop dressing/talking like a girl because it’s weird +@AtheistLoki that there’s no such thing as predominantly male conferences? Sarcasm Town. +@nickm_tor @addelindh @csoandy http://t.co/Qr0or7Hxv0 +@attritionorg @joshcorman he has a bit of a badger cut to his jib +@addelindh @csoandy anonymous remailer server. They want the logs so of course they just seize the machine. +@ternus situational irony, get with the times +@csoandy I’m referring to email servers being seized because of a bomb threat sent to a university +@ternus @timapril why would you do that +Sounds like it’s a generational thing re: calling in bombs. Modern terrorists have no manners. +I’m being flooded with answers that the IRA does this. I’m clearly Irish by blood only. +@PwnieExpress you know… posting bitly links with no context makes you look owned. +Has there ever been a “bomb threat” which was followed up with an actual bomb? +@comex America is definitely not the worst country on the internet but don’t fall into complacency 😤 +@comex they’ve granted retroactive immunity to companies that facilitated illegal wiretapping, etc +@comex yeah except they’re just going to try and try and try again with slightly different bills broken into smaller pieces +@mescyn Iran ****** +@mescyn especially since Google started pushing the concept of pinning after Iraq tried something like this +@mescyn they probably do, but you can’t just arbitrarily replace Verisign and Thawte certs of major sites and expect to not get caught +@comex we don’t drop or alter packets but crossing boundaries is considered fair game for spying +@comex I count the US as a censorship country, just not nearly as far gone as obvious candidates like China and Iran +@vogon I’m talking about ways to arrest an unpopular-with-government person on a technicality +@vogon you’ve seen the proposals to start taxing it right? But I’m bit talking about caring about bitcoin itself +The fact that arbitrary stuff can be encoded into blockchain is just begging for a censoring gov to arrest bitcoin users for distributing CP +@techbytom it’s a (non-scientific) poll, not a statistic :) +@pzmyers @AtheistLoki gosh, a conference where most attendees are men or pressured to act more mannish to fit in? Unheard of! +@maradydd @travisgoodspeed in the mean time it’s a glaring attack vector to enable governments to nab people on a technicality +@techbytom but that’s what’s on the table - possibility of legal repercussions/fines for failure to facilitate wiretap. +We’re not as collectively trusting as it may seem sometimes http://t.co/XraCBULdo2 +@travisgoodspeed did I not forecast this a couple days ago? Could there be ANY other outcome… +In this RT of @angealbertini: arbitrary code execution in Super Mario by causing jump to controller input ram. Spell shellcode on controller +@benmmurphy @qnrq if it’s true I’m assuming they obtained the key by meta means (camera, rubber hose) +Does the FBI want to a) de-SSL everything and enable fraud/identity theft or b) everyone surrender their SSL cert to them, to Fight Evil! +.@textfiles I talked to a young lady yesterday who didn’t know about <blink>. Time heals all wounds +Waiting for the “citation needed” info on how it was allegedly decrypted // @qnrq +@thegrugq @jvanegue assuming you had the honor to do it yourself, I think I could take you +Something seemed a bit… off over in the research cubes. I finally realized someone had opened the blinds. +(See http://t.co/3C6Io4VD83 for long form example) +Reminder that most devices will auto-join mystery wifis if they have the same name as an open wifi you’ve joined before, like “Apple Demo” +For the record whoever called me my irl name on reddit did go back and edit it so I guess they weren’t trying to be creepy on purpose +Perhaps dl-all should be renamed z-dl-all to prevent autocomplete disasters +What’s the polite way to tell @The1TrueSean he spammed the company-wide mailing list instead of his team +@egyp7 we need to find a “Deejay MZ” +@matthew_d_green @csoghoian but I can only weep sarcastically +Dell driver download infected with non-working malware http://t.co/zN3p7iorHH +@csoghoian @matthew_d_green how I weep for them +@thegrugq @jvanegue don’t act like you wouldn't +Forgot my bag with my RFID badge, my RSA token, and my lactose tablets #monday +@pod2g nope it was about a psycho hobo lady holding me captive as her "daughter" +@sneakin everyone should play Skyrim! Just don't say "I looked up a borderline exploit to get perfect gear and this game is too easy" +Nothing like an incredibly vivid nightmare to start the day +@no_structure I’d like to think this is a current screenshot, and it thinks you want those guys so bad you’ll buy a 2008 calendar to get em. +A lot of people say Skyrim is too easy but then it usually turns out they metagamed it to hell and looked stuff up +@no_structure ever see that Onion on how a woman has a better relationship with amazon than her husband +@0x17h I am professionally restrained from commenting +@_wirepair my gods they could not have implemented this any worse. If(operating system agrees this parses as a path) it’s a valid log file; +@_wirepair nope it’s totally Java +Yes, HTML-escape that request parameter - it’s now safe to use as a filename! #latenightauditing +@m1sp humans! Send distraction +@m1sp halp +@quephird there's no off switch for cool 😎 +My apartment building has bricks that stick out at regular intervals, apparently so thieves can climb up to windows. +@MarioVilas so I just noticed your name in this code... +.@glyph ah, I found the problem: # by 0xabad1dea 2013 +@glyph gremlins. Gremlins everywhere. +@ColinTheMathmo a parser called pefile... first I wasted a lot of time trying to 2to3ify it.. gave up... random errors... now it works. +@ColinTheMathmo well for the record, my program is literally *one line long* at the moment - all these problems have been peripheral. +@ColinTheMathmo also why do you assume I'm not trying to learn python +@ColinTheMathmo my problem isn't python. It's modules causing frustrating error messages when I try to import them. +.@MarioVilas oh, NOW it works. So you know what? I have no earthly idea what was causing the error. *headdesk* +@rantyben I'd be writing this in Ruby if I thought it were more practical... +.@MarioVilas "exe = pefile.PE("file.exe")" does not work, "pe = pefile.PE("file.exe")" does... it is beyond my mortal ken why. +@chriseng libraries... +omfg python why does the success of finding the class hinge on what I name the variable I assign it to this is terrible +Looks like I may have to give up on Python 3 entirely and use Python 2. Come *on*. +@Brian_Sniffen nope, uninteresting to me :p +@yacCz however it wants? Any internally consistent behavior is fine... I just don't want a hard error for a pedantic warning. +TabError: inconsistent use of tabs and spaces in indentation - Python it's really astounding you think igaf +I'm so glad 2to3.py doesn't rewrite string.lowercase to string.ascii_lowercase, it really improves my day to do it by hand. +@cirdan12 false analogy +Did... did http://t.co/LlsbqQGXEE remove the ability to star a project? In favor of +1'ing I assume? +@Brian_Sniffen one run would be one correct answer! This is the difference between programmers and mathematicians ;) +From the same blog, I’m amused at how different my method to get the same answer would be (just run the simulation) http://t.co/QIyxbkqGyS +(I’m not asking for a comparison of different voting methodologies, I’m complaining I don’t like our methodology) +I really like this quote on pure vs applied math http://t.co/JEI2EJ3GoY +@dildog I tried but SOMEONE @chriseng wouldn’t let me go with him +@fuzztester the name really doesn’t match the features +So how come a little place like Iceland can elect senators from all sorts of parties but in the US it’s almost impossible +@Neostrategos @veracode are you aware that the twitter account is reposting old blogs +@ores pretty sure that’s the weather and fresh food… not the censorship +It frightens me to see places like Cuba be completely black on an internet population map. So many people, so close to here. +Cinderella: getting skinnier, blonder, and kind of creepy http://t.co/zkWADVPA2r +@snare well then why would I err she consider you! +@fuzztester you need marking up of the sort that Preview doesn’t support? +@jeb_ where can I get that NES shirt +@snare just offer her some 0day +@silvexis ask Python! +from __future__ import hindsight +@savagejen it failed, I am so the opposite of attracted to him +@comex @justinschuh you have a big fan in @a_greenberg +@nickm_tor I like them, but I no longer have the time / social energy +@blowdart if you classify “the encryption premise of this app is freaking stupid” as a vuln, I can hand you several right now… +@Kufat also, perfect score on the linguistic side of the SATs made my score very high despite so-so math scored +@Kufat by graduating high school? +.@Kufat I was constantly on the verge of failing math from 2nd grade on. It was never presented in a way that made sense to me. +@kebesays not my fault you’re old! But it was a third-hand pentium 2 :p +@SarahPalinUSA you’re right I can respect the hard work of being a governor OH WAIT +@bobpoekert ha! As if we had fancy calculators. +@PresidentHoodie … you’re too old for me to follow D: +9th grade me, it’s me from the future! Here is a copy of SymPy and the documentation. It’ll run slow on that laptop but you’ll pass algebra. +@ternus ah, sometimes I forget I have an exploit in their manners parser; they would never hit a lady, which I can successfully front as. +@ternus tell ‘em to go back to the ‘federacy because we don’t want their kind here and watch their cognances dissonate +@ternus uhh what state was this in again? +@dguido favor to their most frequent customer - me +@ternus grats +@savagejen now that would be quite the plot twist +@DrPizza my cat (who now lives with my mother) generally hates being touched. +@lukegb that's the point! +@geekable You can even play fort mode, retire your fort, start adventure mode and go plunder it +@Saturn500Jared I play far too slowly to livestream. I'm often doing other things at the same time. +@geekable there's adventure mode which plays like nethack except across a world with towns and npcs who might come with you as meat shields +Hmm... next time I play DF, I should make a tumblr for liveblogging it, to avoid generating ten thousand tweets about wooden artifacts +@theROPfather nope +There outta be a law against "shuffle mode" in music players that doesn't remember what nodes it's already visited +@garlimidon I suspect you're biased ;) actually I like Fire Emblem, but I'm not very good at it. +@sergeybratus haven't heard of it actually +And I love games like Dwarf Fortress because the complex simulation interacts with imagination to create rich narrative on the fly +@sergeybratus however, the puzzles themselves did not really hold my attention, though I recall trying to brute force a few. +@sergeybratus Myst has a narrative - I was 7yo the last time I played it but I remember the letter to Catherine clearly. +I've never enjoyed puzzle games, board games, and card games, as they generally lack narrative/character with motivation +@DanielFairchild that's the joke ;) this thing is terrible. +@LowestCommonDen and the 10s. +@themarkcaudill alternatively, look at a block of text and partially cross your eyes, letters that stand out need work. +@themarkcaudill did you try adjusting the spacing (don't be afraid to put the edges of letters over the left baseline) +"Stop looking at platonic solids and order our food!" +Trying to order Japanese food devolved into looking up proofs concerning n-sided dice #geekhouse +@hypatiadotca without looking, I think they're inserting bytes between ascii-range ones to bump up to the Chinese UTF8 range. +public const string ApplicationPassword = "SecurePasswordManager_MDiTullio_800706"; no-one will ever guess it, don't worry. +"Encrypt is an application for encrypting an unicode string to Chinese, in which others can seldom get the correct meaning" sigh +@sakjur let me know if any of them look bad +"MD5 Encoder is an application wich encode the text you need to encrypt with the MD5 algorithm." We have a winner, everyone go home +I've heard "gonna forge your signature" from several people but my "real" handwriting is not very font-friendly. +@Strongdave depends on the definition of "precious" you suppose me to be using :) +@lukegb I have genuinely never once seen a font that exhibits the procedural characteristics of my handwriting +@CafieroCarlo http://t.co/C51mR8ljMj but the joke was malicious TTF files +@lukegb good luck, as I can't possibly express my actual handwriting in TTF +Oh these apps in the security section of the Windows 8 store are just precious +So how many of you installed my handwriting TTF? No reason just wondering. 😇 +Apparently Norton has a free app that will scan my twitter timeline for malicious links. Joke's on them I distribute these on purpose! +I'm installing a free Windows 8 password manager that uses unspecified "best encryption techniques". We shall see... +@verticalblank my brother and husband are perplexed why I refuse to play it anymore frankly a decade of losing is sour... +@verticalblank it's balanced towards something I don't have because I have never once in my life won Mario Party +@_booto ... why? You're just trying to drag an analogy too far... +@_booto three strikes does not end the game, it ends the turn +@_booto but my point is that a lot of early games were designed for maximum quarter expenditure not maximum enjoyment +@_booto I can't think of any outside of permadeath a la D&D which is "gritty realism" +(Or used to cover up the fact that the game itself was about an hour long.) +Games are "too easy" these days because they give you infinite lives? Finite lives was an invention for pay-per-play arcade games, you know. +@rantyben @cyclerunner @ErrataRob I'm glad this resolved itself while I was busy watching Mario Party videos. +@_larry0 @spacerog as long as it’s one of those camps with electrical hookups! Magfest did this and it was a lot of fun +@da_667 if so, only to avoid having to write correct AI for so many different games… +Watching more “Luigi Does Nothing” videos, my negative feelings towards Mario Party are confirmed. Too many minigames not enough playtesting +@ternus jay-z just how far did you go +@justinschuh you be good to him! +@wimremes wasn’t me! +@_____C oh, you misunderstand - there’s no such thing as a minimum wage programmer afaik. I’m talking threat model. +@_____C on the whole they’re not familiar with words like “misgendering” so I wouldn’t interpret that as a literal quote ;) +@_____C anyway it’s 2am and I’ve reached my burnout point :) +@_____C they’re people who went out of their way to tell me to be quiet and take being misgendered like a man. I don’t owe politeness +@_____C they’re not my friends, I don’t have to handle their feelings delicately +@pokemon_ebooks does Johto have no laws on tampering with historical artifacts? +@_____C this whole thing was in *response* to people so I didn’t have to address them all individually. +@_____C I did try to mention repeatedly that it's subconscious / unintentional most of the time. But that doesn't make it okay. +@grp just as long as you don't species-deny any craftsquid. +@grey_area those are quirks rather than underlying grammar. It's not a parse error to call a boat an it. +Have you ever got into a flamewar & thought "I am glad so-and-so is asleep and I hope they have the good sense not to revive this tomorrow" +Have you ever got into a flamewar & thought "I am glad so-and-so is asleep and I hope they have the good sense not to revive this tomorrow" +@bobpoekert @bhelyer now there is a tweet I can get behind, regardless of context. +@comex of course it's silly, I'm just trying to drive the point home +@comex if I ever need a cool lady to hire as an iOS hackette, I'll let you know, ma'am. +@comex way to be an ally +@comex it's your convenience to feel that way... as it doesn't really affect you. +@comex because it feels like they couldn't waste the nanoseconds it would take to use inclusive language because who cares right +@comex what do you say to the idea that I really am personally offended when I look at a job opening I'm interested in and I see "he"? +@tanonev officer? idk I have mixed feelings on them to begin with +@comex I'm not sure if you're using "that" to mean "I think that" "tumblr is stupid" or "I think this particular tumblr" "is stupid" -- ah +@segfault314 the "radical" may or may not be dripping with sarcasm +@bhelyer Sense of "adult male" is late (c.1000); <-- over a thousand years ago is a definition of "late *early* English" :) +Dumped my radical feminism output to tumblr. http://t.co/mByfOV81cZ +@Netbus @comex he's younger than me! D: +@mc_skifter way to be a total craftsjerk. What? It's not an insult. Disassociate "jerk" from insult. +@mc_skifter please show me the craftscats and the craftsgiraffes +@jesster_king dude! An interjection is when you just randomly, like, use a word for emphasis! Whoa! +@jesster_king dude, sometimes it's like, an interjection, man! +"Welcome to the Space Jam, thus saith the LORD. Hey you whacha gonna do I sent the sword I sent the horde" http://t.co/8JWGEERsCT +@benwmaddox other people have asked me the same question and it seems to come down to "not really". +@tufts_cs_mchow @523 yup +@ErrataRob it's a) a huge portion of repliers b) making fun of someone without attribution does not imply making fun of EVERYONE. +@longobord @maradydd @sergeybratus then you use it as an adjective, a fellow person, and, more subjectively, "engineering fellows" or w/e +@ErrataRob I'm just repeating the mansplainers :) +@longobord @maradydd @sergeybratus "guy" is kind of like "fellow" in that respect +So, "craftsman" is gender-neutral because a) historically all-male academic organizations say so b) it's shorter. Good to know. +Where's my radical feminist badge huh +@miuaf I just figured you were a meowth with a lisp. +@TomSellers @csoandy I weep for the loss of manly concision. How I long for the days when men were men and women were men 'cuz it's shorter! +@whyallthenoise --> @PwnieExpress +@sergeybratus I'm exempting non-native speakers from rigorous Not Offending Me, don't worry. +@ternus I'm definitely a downvote on "chick" but only because I usually only hear it used as "So some chick <something annoying>" +@ternus I also accept "girl" as I look/act/think quite young :p +@ternus I prefer to be referred to with terms such as seneschal and harbinger +Brilliant analogy via @miuaf whose handle I someday hope to learn to pronounce http://t.co/AJ2cJ4sUz2 +@miuaf @thegrugq oh bloody brilliant I was just trying to think of how to fit in an analogy like that into a tweet... +If you think man/guy/dude is not a gendered word, there's about a 99.95% chance it's your gender. +@thegrugq @Dan2552 what consensus? There's only consensus if you just ignore all the people complaining about being misgendered +@thegrugq um, okay, so? It isn't a word because of historical oppression of women seeking alternative employment to housewifery +@Dan2552 @thegrugq I mean would you be okay with just calling everyone a craftswoman and telling guys that's not gendered +@Dan2552 @thegrugq No offense but that's because craftsmen used to be all men and men often don't stop and think about the implications +.@thegrugq the point is people carelessly use gendered terms without considering how absurd it'd be to use the inversion. +@theROPfather my schools had men as teachers? But that's still misogyny if a man is shamed for acting womanly. +@send9 I prefer "they" but some people believe that English is in some kind of stasis and that's Bad Grammar. +http://t.co/fHcpOObDnX What it says on the tin +@vimdat ... there was ever a question it ran Android? +@Tomi_Tapio @BenLaurie except that’s so stunningly ineffective that you are just wasting everyone’s time and money +@grp it runs Android. It’s an Android product. And Android, like all operating systems, adds features, patches bugs, and improves snags. +@grp well, Google is pushing it as a flagship product so it’s embarrassing it’s two major releases behind +Why in the name of basic self-respect does Google Glass run 4.0.4? Do you see Microsoft shipping Surfaces running Vista? +@armcannon ahh, I knew a girl who had randomly found the actual record of that, and bought a record player for her dorm just for it… +@amanicdroid @0x17h that too. +@horse_js @eevee NSFW that stuff! +@amanicdroid @0x17h of course it’s horrible - he died. And he was framed. But most likely in that order. +@0x17h so almost certainly “reddit frames kid who is already dead” +@0x17h you know that when missing people are found dead they almost always died the first day they were missing right +The Adventures of Florida Man, @attritionorg edition http://t.co/4R67laCaXH +@savagejen that sounds more likely. But I suspect they’d still say you have to name some names… +@savagejen almost certainly rejected for being too broad. +Looks like Team Veracode's prize PwnPad has arrived http://t.co/cwUER9NDEk +@0x17h yup! +There are children dying of completely preventable diseases because their parents believe fake science http://t.co/Ibz75SxpRx +There are tinsel stars hanging from the ceiling in the kitchen #JavaIsDead +Spring.avi https://t.co/3GXPZMTzQr +@focalintent we… will… *educate* them. 😈 +@dildog actually yes, but for different reasons that will not fit in this margin +@dildog call graphs with more than a hundred distinct nodes in a linear chain, Mr. Pedantic +Sir put the single-line functions down and keep your deployment scripts where we can see them +I support mandatory counseling for any Java programmer who ships software with call stacks that can exceed 100 deep on the hot path +@indrora I was thinking more corporate spies. Can you lift a box? Have no felonies? Welcome aboard +@innismir I was more thinking "SQLi of internal database is one unskilled employment application and a felony check away" +@whitequark you're right... another fix coming XD +Working here I've learned: major corps that employ thousands of minimum wage workers have trivially SQL-injectable internal apps. +@GregStaskowski that's remarkably close actually... +I really wish I could tell you the silly codenames of programs submitted to us by major companies. +@dildog no way - I always want to know when I'm running something unsigned. +This "news" of a school that teaches ridiculous ideas about dinosaurs isn't news - I attended two of them http://t.co/xG3tYwx3LC +@k3v1n830 Touchscreen. Can't open snipping tool when UAC is up. +I ended up deleting the folders and leaving registry cruft rather than run an unsigned executable that claims to be from Oracle +So I tried to uninstall Java http://t.co/4nYVmnh6Cp +My handwriting font - kerning improved http://t.co/C51mR8ljMj +@amazingant yes actually! Thanks <3 +gtalk / google+: super unstable for everyone or just me (hold the snark please) +Of course, being able to use the platform on iPad would be more useful if the iPad didn’t need to unload webpages every time I switch apps +@rezeusor http://t.co/M45OCjmNyG +Ouch. Listening to the thotcon tweet stream, it sounds like Schneier has been sucked in to the “talks to govt weenies too often” zone +If you hear any figures about the average DDoS or DDoS trends, check how it’s counting the Spamhaus one. http://t.co/SSj8UcUTfl +@techbytom oh I assume it’s someone who follows me on Twitter. And a lot of people on /r/netsec know who each other are. But still. +Yeah you think you’re being cute calling me “Melissa” on /r/netsec but that’s just kind of creepy. Respect nyms. +@nickm_tor maybe, but I sure wouldn’t try! +@m1sp @fncombo getting a $10 external fan can be a lot cheaper and easier than trying to replace an ailing internal one, speaking from exp +@spacerog @attritionorg he doesn’t bring spare fur suits, does he? +@RSWestmoreland @Veracode HTML5 +Ding dong the witch is dead 🔔 The @Veracode platform is now completely Java-free and works on devices such as iPad. Rejoice! +The fact that it’s so hard to explain how to “use Twitter” that I say “buy Tweetbot, then it will be better” should shame Twitter UI team +@_wirepair I plan to wake up to Infosec Christmas +The “a” in my font is too wide, I will fix and re-upload tomorrow… +Is there a hair stylist shop named Dyer Straights? There had better be +@apblake @puellavulnerata I’m stealing this one +Remind me to read these slides on static analysis by @halvarflake in the morning https://t.co/AAvdlJ4Cz6 +In this RT: Tamerlan Tsarnaev referred to himself as a white guy, so can we please bury the “he’s not white bc he’s bad!” racism with him +@cji technically it stands for “regarding” +@jackjsnow @eevee it kills me when I see silent tweet appropriation... +@mikemackintosh surely there are ones with better kerning! But I don't care if someone uses it on their website if no money changes hands... +@dancapper yeah this is the first build, testing it now... and no, but I know I was taught "precursive" style when I was little +@_yossi_ that's my real handwriting! +I made a font of my handwriting, I think it came out pretty good. http://t.co/C51mR8ljMj +@vogon the system restore point was two days ago. Nothing was installed but Windows Defender definitions +@vogon um... if a metro app can completely break the Windows interface persistent across reboots, we have a bigger problem +Well my menus work again. And my stock trading game was blown away and my music player can't open +I'm doing a system restore. This is stupid. +@vogon err rather, yes the win key does what it usually does +@vogon everything else works. What is a winkey -- oh a win key. What am I supposed to do with it? +@vogon ... both? Everything you summon by swiping from an edge does not appear, persistent across reboot +tonight on Windows 8 Adventures: swiping to get system menu no longer works. +@stevecominski doesn't meet my security requirements (for when I do lock it 😉) +@stevecominski I refuse to use those actually! +I leave my Windows 8 tablet unlocked because no-one else knows how to use it +@chort0 I guess you can get use-after-free by wrapping to 1 and it deletes something with 257 references... +@Dan2552 a good virtual keyboard would let me set it to 75% width +@Dan2552 it's the travel, I believe they call it, that is the problem; I instinctively aim closer to the center than the outer keys are. +@waruikoohii yeah same here. It just started doing this ten minutes ago. +@Dan2552 the virtual keyboard on the tablet is too large for my hands and I mistype practically every other letter. +Windowshandwitingrecognitionhasdecideditdoesntbelieveinspacesanymore seriously come on +@glassresistor @evilbluechicken you don't "log in" with Twitter integration on iOS +@_printf I got mine from http://t.co/QxC49FMDg5 they're currently out of stock of the exact one I got though. +.@evilbluechicken the joke is I've seen several accounts "compromised" by their children posting achievements from tablet games recently +@chort0 the count++ wrap is real, there's also a matching count-- wrap afaict, which looks weird, like, they log it then let it wrap? +@feoh your geolocation on twitter is probably a little off then :) +Evidence is mounting that the greatest risk to infosec Twitter accounts is Angry Birds Threat. Chroot your children +@matthew_d_green do you… have… kids? +@chort0 hang on gonna go grab the source and just look at it... +@chort0 usually a scam would come with, like, a fake exploit? +@oh_rodr futurama-squint.jpg Not sure if they’re completely misunderstanding how this works… or I am +@chort0 I uh, did see a random nginx site that had apparently crashed a few minutes ago, but probably just chance… +@oh_rodr err… can’t log, or shouldn’t? +@chort0 what did I miss +@dildog @focalintent false: @focalintent has a stripe of red dye in his hair +@ternus confusing cause and effect! +@Jonimus WWDC tickets +Checking my twitter stream since lunch… and… wow there is every iOS developer I know rage quitting at the same time +Someone on Ars says Mt. Gox is faking the DDoS attacks… we’ve reached a new tier of conspiracy theory +@gozes value range analysis of c programs +@feoh I’m in (well technically very near) Boston too, I’m just upset that according to your metadata you’re on an island and I’m not D: +@dhicynic @_peterdn value range analysis of c programs by Axel Simon +@feoh you’re tweeting from one of those little islands? No fair. +I solved analysis! http://t.co/zvgr4gTCfU +@mister_borogove as in, I have played against humans who lost all 5 lives to getting caught under the stage as in the last clip. Stage wins. +@mister_borogove they did patch that up quite a bit in the sequel; but players do that a lot too on the stages they chose for the demo. +@mister_borogove and clearly, the AI is reactive, so the player is not giving it input and it just does whatever +@mister_borogove this game has been poked and prodded for a decade. They carefully aligned matches with specific variables to cause this +How on earth did "human resources" become the unironic, accepted term +@jesster_king you assume OP is a good man! +Hmm, I guess the "anonymous" complaints are routed through a third party who transcribes them - I guess that's close enough. +@invalidname @mojinations California? Never heard of it. +@mojinations this is about fraud etc. not harassment, actually - not that there's any incidents of such so far that I'm aware of +@Neostrategos consider if a man with a swoon-worthy Polish accent filed a tip... +@mojinations guess I'm a stickler for "anonymous" in the cryptographically secure sense +Anyone see a problem with an "anonymous concern phone number" for a company with <= 200 employees? +The only winning move is not to play, because the AI gets really confused when you stand still. http://t.co/Cv8ZXEp4i7 +Awesome honeypotting: skiddies enter their real details if you reject the first few attempts at account registration http://t.co/zx4kyOQxEV +Ropasaurus Rex https://t.co/vul1sxU84N +Dancing on the ethical line, re-hacking a compromised server to change the phisher’s password… http://t.co/35P5JOzmZf +@boblord you’re on the lam, that’s my story and I’m sticking to it +Well @boblord favorited my tweet so I guess he’s on the lam +@wookiee \o/ +everyone hack twitter while @boblord is in jail +I like how the TSA decorates every mention of their pre check thing with (TM) - because making people beg to keep shoes on is a trade? +@savagejen ahh a fellow infosexual +@puellavulnerata if there’s anything it doesn’t make sense to regulate it’s water that fell from the sky… +@mike_br @trap0xf hey!!! +@DarrenPMeyer I always use avatars showing cartoon girls. Widely assumed to be portraying my waifu +@DarrenPMeyer I always use avatars showing cartoon girls. Widely assumed to be portraying my waifu +@TheDaveCA nope he's gay +@raudelmil six bitcoins! +@blowdart I don't say it THAT much! +@deepthoughts10 @netbus @mikko the whole system is actually a complete train wreck that's massively insecure +@ternus no he's gay +I'm kind of freaked out by Windows 8's auto suggest. I type "he is" it pops up "bisexual" +@deepthoughts10 @netbus @mikko one's a company that needs customers to trust them, the other is a government... bit different +@puellavulnerata oh oh pwn Java harder +@corpsefilth ... yes +@jesster_king I don't think me throwing around a couple hundred dollars would have a noticeable impact +I'm coming out of the networking closet. I'm infosec-sexual. Infosexual? +Who puts coconut in a carrot cake this is an outrage I will take this all the way to the Supreme Court +@ternus tell @nelhage we were joking about opsec so I sound less creepy +@Netbus yes that, they could ie pretend to be Google or a bank. Not that they would do that as people would find out and be furious +@ternus thanks for info leak +@Netbus @mikko no it means they can issue certificates for any website and the phone will accept it +@BadAstronomer it’s the new tweetbot, check from web interface +@Paucis__Verbis how did you get a photo of my room +@spacerog well if iMessage was selling decrypted messages and we didn’t know, I don’t think local bars would be on that list :) +@jesster_king one wandered across the book I was highlighting. I didn’t actually touch it though. +@xa329 that’s not a particularly large portion of my demographic. But they called me “this guy” in this case… +@spacerog did you 4square check in or anything? +@twatterspam the good news is that the HTML5 rewrite goes live... tomorrow night. +@twatterspam I'm a user of the app, not a producer. The app predates HTML5 as a real platform significantly. +@savagejen @Neostrategos Activision +@akopa yeah - my favorite color is orange but I end up painting everything pink +@savagejen @Neostrategos it's basically Pokemon but you need actual figurines. What a scam huh +@savagejen @Neostrategos they're called Skylanders, you put them on a base and they communicate with a video game +@savagejen @Neostrategos but they're more sophisticated than just being rfid +@savagejen @Neostrategos actually, if there was an easy way to forge the little chips in their base, he totally would +@secmoose figured I better mess around with pretend money first as I have no idea what I'm doing +There is a child I don't recognize on my patio. He just gave me the "shush" sign. Hiding in other people's yards is cheating, kid! +Thinking about playing a stock market simulator - who wants to bet I'll make a pretend million dollars that could have been real :p +"Isn't the entire German language about pleasure in the suffering of others?" - @codeferret_ +@thegrugq 😐 +@alethenorio keep reading - but that's not the name of my twitter account! +@blaufish_ actually I asked because I had a compulsion to paint the ant on my desk pink but I didn't want to put it in the ant hospital +Are pink highlighter pens toxic to ants? I ask because reasons +@kilophoton it has a section near the beginning which lists a bunch of terms it will be using and you can google them if you need more info +@kilophoton I read it when I was 17 and mostly got it - it covers probability from scratch. +I need to reread "Modern Cryptography Theory and Practice" by Wenbo Mao which actually taught me all the college math I know. +@d0tslash <3 +@waruikoohii for certain values of 'prevents'! +@blowdart http://t.co/hUIPzoqzwf +@codeferret_ I never implied any such thing! +@d0tslash weird - http://t.co/hUIPzoqzwf +It wants me to install Firefox 3.5 because it thinks IE10 can't render static HTML4. Is this TCP over time travel? +I'd like to thank the self-righteous webpage admin who thought I shouldn't be allowed to see plain HTML if I'm using IE. IE10, mind. +@d0tslash can someone tell them their browser detection is broken please? It won't show me the site +@Neostrategos I tried to warn my husband this is like buying crack when pixie stix would do, but did he listen… :p +@sleepydashie they’re my husband’s and our housemate’s :) +Guess how many children live in this house http://t.co/CDOU09eDYS +What's the CWE number for "you employed a computer-illiterate programmer" category of bugs +On days like this, I wish I had a button to demand the customer do a full review of whatever programmer wrote the line I'm gawking at +@whitequark so when I hear “I don’t know any girls who are good at computers” followed by being called a boy, you see why I’m upset +@whitequark (the literal meaning is to paint a naturally brown fence white, we use it idiomatically a lot) +@whitequark in this context I meant ignoring non-white contributors to history or portraying them as white (ie Jesus) +@mescyn @Neostrategos not a lot of comments on those; it was my Nexus 7 video +@nelhage I decided I don’t like being called a boy more than I don’t like being called a slut or whatever. +@whitequark especially since I’m a minority in my field, it feels like the gendered version of white washing. +@whitequark imagine if people constantly addressed you as ma’am and lady and little girl. I’m assuming you’re not gender fluid. +I need to get the NES video from @Neostrategos so I can have something on my YouTube where not one single person will call me a guy +@silentbicycle demoing a nexus 7 booting straight to Ubuntu desktop +@DrewFitz hmm, well, that's trans-denying, but I am in fact cis. +Five months later I am still getting comments on my Nexus 7 video... referring to me as a guy. WHAT DOES IT TAKE, PEOPLE +@GeeckoDev @nrr oh gods I had to explain so many times when Vista came out concerning essentially the same thing +@chriseng good thing too because Java <--> our app is currently COMPLETELY BROKEN +I actually like Windows 8's monotone vector emoji better than iOS's bitmap color fest 😎 +@iJamieH you're missing Unicode emoticons +Some little birdies have told me that I won't need Java to do my job anymore as soon as tomorrow night. The gods are real 🎊🎉🎈🎆 +You know what's a weird word? Free. Freeeeeeee. I'm checking several hundred calls to free() and it will never look right again +If we’ve learned anything it’s that ad hoc blacklisting for important security purposes is a really really bad idea +Apparently wp-super-cache has NOT actually fixed the RCE vuln but has just slapped some string blacklisting on. Good job, that’ll hold. +@ternus implying that if I google-stalk long enough I can find pics of you with a ponytail? +@ternus collars. Short hair. Polite manner. Pretty weird, dude +@ternus also did you know you look like a government kid +@ternus I am super sketchy. I am defined by many short overlapping lines +@ternus yes there is nothing typical about that childhood btw did I tell you about the time the Foreign Service didn’t hire me +@ternus rural children have much more free reign. Suburban parents are typically disproportionately paranoid, using urban as their model. +@ternus I think you’ll find a strong correlation with urban, suburban, rural. +@WeldPond @spacerog @dildog @dotMudge way to kill the joke, boss +@ternus I wasn’t allowed to play outside all alone until I was 14… +Hooray tweets are showing up on my phone that aren’t showing up on my iPad. Ffffff. +I have been acknowledged as new leader of l0pht by @spacerog, just so you know @WeldPond @dildog @dotMudge +@spacerog @tmichaels1 motion seconded. Everyone knows I staged a takeover of the l0pht already. +Don’t call the person arrested in Australia “the lulzsec leader” as no one has ever heard of him. Just a pretension of his. +@0x8badfl00d not much ;( +@octal @hypatiadotca @thegrugq the human race depends on women weighing their chances with this… +@thegrugq it’s not my fault you’re the only one awake +Don’t after-midnight DM @thegrugq for advice on boys as he apparently doesn’t know +@Cocoanetics well I don’t do the swirly thing then. But it was the stylus - grabbed its buddy and it started working again. +@Cocoanetics http://t.co/Hjvcai06Bo +@thegrugq @DogeMocenigo the grugq is just trying to deflect rumors that I broke up with ionic for him +@grp … eww +@thegrugq I don’t get it. I really don’t. It’s a toss up between being thankful they’re so stupid and wondering if stupid is a prerequisite +@Hyder_Khan @RichardBarrell I don’t have “issues” with being a woman and I think you’re reading a little much into it :) +@egeektronic @mrkoot this is glorious +@Hyder_Khan @RichardBarrell … you’re kind of getting on my nerves a little bit… +@CyborgCode there is not that much math in most CS programs - mostly set theory which I thought isn’t that hard +@xabean @Forensication Find a cake place closer to Boston and we’ll talk ;) +@FatherMcGruder @matthew_d_green if you have a 100% accurate and automatic means to detect porn, you’re a millionaire +@CyborgCode I have a computer science degree. The field is far too young to have such specialized degrees +You might be a static analysis researcher if you consider the word “valgrind” an insult +Capture the flag: submitting malicious pcaps to Virus Total edition +@no_structure @strmpnk oh, I forgot, you’re in undergrad so you don’t count. +@strmpnk @no_structure the joke is we’re static analysts and “running” programs is for babies :p +@thegrugq 🇺🇸 I love America +Have the Homeland Security club updated their twitter keywords to include the bomb emoji? 💣 Can’t let that under the radar +@thegrugq I think you’re reading too much into my tweets 💣 +@thegrugq I never said that. I said no jury would convict me of something unspecified. 🔪 +@no_structure @strmpnk valgrind? VALGRIND? Sir what kind of researchers do you take us for +The willingness of people to make threats of bodily harm online never ceases to amaze me. As if it “doesn’t count” somehow. +@comex you should indeed do it now ! +@comex whaaaaat +I drew a comic about the internet http://t.co/VAW3S0Vtj3 +… I say, considering whether bleeding out in a boat counted as a day off. Well, he wasn’t in class… +Don’t reward homophobic jerks with a day off! http://t.co/XfAqJ52cIA +@WyattEpp I don’t think anyone’s ever suggested ATI as a low-power graphics solution… +@savagejen well I missed entire eras and kids learning programming now missed some more by simple time physics :) +With computer people even an age difference of five years has a profound impact on formative experiences. Compare, say, pianists +@ternus @ra6bit *ahem* Lady Melizabeth. +Do other industries and arts constantly discuss among themselves how old practitioners are or just computer people +@ra6bit @ternus hang on I need to check if I’m even nine yet +@matthew_d_green even if, say, CP isn’t illegal per se, do we really want it inserted in stuff… +@chronic https://t.co/NyN8kZhzoG +@ra6bit @ternus 1992?! Jay-z you’re old. +@no_structure I um… hmm. +@ra6bit it ended up confusing people I do know… +@Walshman23 my name is a bad idea! +Did twitter seriously just filter my beautiful emoji hearts out of my new bio +@thegrugq no jury would convict me 👊 +The main reason I give my IRL name on twitter is that I hate being misgendered even more than I hate being called that name online. +Just read a good point I hadn’t thought of - it’d be cheaper for Intel to prop up AMD than to deal with monopoly regulation hell. +@themarkcaudill hahaha +@themarkcaudill it’s very rare that someone calls me by the given IRL name and I don’t know them - often in an insulting context. +@themarkcaudill well consider this, Mark. Didn’t I already lead this tweet with your name o_O +@dave_newton I think I hate you, Charlotte. +@snare American. Try and keep up. +@snare sir this is America and you just confessed to terrorism. Or invading a country for their oil +@maradydd @matthew_d_green @travisgoodspeed @dakami I may have missed where this originated, just heard block chain wiki bla bla +@matthew_d_green — is a vulnerability in a world where some types of data is illegal +@matthew_d_green am I the only one who thinks the ability to incorporate arbitrary data into something everyone must download — +@ternus I love people taking pictures of me that don’t catch my chin at a bad angle. +@QuantumG @bpblack @focalintent you know the original context was people dying in a factory explosion right >_> +@johnrobb @puellavulnerata actually do you have a link for this +@johnrobb @puellavulnerata until someone starts inserting hundreds of megabytes of CP… +@thegrugq thanks, you were a big help +@RichardBarrell it’s just that people have a habit of busting out “Melissa” when they are talking down to me because I am Small And Fragile +@RichardBarrell on the contrary I hear that more than my real name these days :p +@chriseng @thegrugq I think I’ll take it easy tomorrow morning in your honor, roll in around 11… +@vogon I only even consciously saw a few digits lol +@vogon yes but not on paperwork +If you address a tweet to me, what to call me is already covered ;) +@iRonNCSU what did you just call me in that tweet? :) +So I’ve kind of got this thing about being called “Melissa” online by people I haven’t met. Just so everyone knows. It sounds patronizing. +@attritionorg please. Wookiee** +@MrToph because they couldn’t find it? You’re not a coworker +@ChuckBaggett @puellavulnerata but are the gun-toting pot farmers gay married +@DarrenPMeyer @manicode I’m confused that everyone assumes the multiple versions was on purpose on my friend’s part… it wasn’t. +.@ioerror is this the same Senator Graham who wanted an American citizen tried as an enemy combatant like just yesterday? +@ternus @abby_ebooks I'd like to think I sound slightly more coherent than that +I think my handwriting recognition is broken http://t.co/OR0f0nJk0E +Reporter ditches her own wedding to cover the Chinese earthquake http://t.co/4Wvw40iEKv +@bhelyer pretty much. Separate browser, only visit that site. Use VM/sandbox for bonus points +Scratch that, it works until I have the audacity to try and interact with it. +Java takes months to QA patches and we get owned; they patch in a timely fashion and apps break; we just can't win. Rotten foundations... +By some dark miracle I currently have said webapp working with an old Java... with IE. Countdown to disaster +@solak please tell me there's an instance I can access right now +@marshray @codeferret_ what where +@manicode 6502 assembly. +@UbikMan this isn't about cultural things I find stupid, math transcends that a bit :p +@manicode gods deliver us from being Java developers. +@hackedy corporate. Corporate customers. Requiring bleeding-edge Chrome doesn't really work. +@hackedy because it's more than a year old #html5isverynew +So guess what? The newest Java update breaks our webapp silently. "Oh yeah, found that out this morning" says my husband #thanks +So uh my coworker's computer is reporting different versions of Java in different places +@thomasbeagle I have no idea what that means so I'll just have to invade you now </american> +@miuaf @codeferret_ heheh well in this case it's proof that our "use after free" detection works ;) +@miuaf @codeferret_ heheh well in this case it's proof that our "use after free" detection works ;) +@thomasbeagle NZ has a population no bigger than a large city so I can totally see well-meaning legislators writing down ridiculous laws +@thomasbeagle still need to get ahold of the gov before they try to legislate something that can't work because they're naive about it +@polemic @TelecomNZ @yakmoose I'm betting whoever is discussing such possibilities is a nontechnical policy pencil-pusher +@polemic @TelecomNZ @yakmoose and mandating that every device in NZ accept some cert to MITM all comms would be... astounding. +@polemic @TelecomNZ @yakmoose yeah except you can't magically fake a valid cert without victim co-operation or corrupt registrar. +Hey govt of New Zealand: if you're short on subject matter experts, I'm available for the cost of plane + hotel to tell you why that's dumb +@DylanReeve @dancapper it can only work by consent (granted, the opt-out means you may not have internet at all, but still) +Um, does the government of New Zealand/@TelecomNZ have any idea how encryption works? You can’t legislate away math http://t.co/wZtjyW6poN +@dancapper um… what, exactly, is their plan for carrying this out? +@codeferret_ you don’t get how being Hermione works do you +@codeferret_ also that’s technically a method </CS Professor> +@codeferret_ I’m trying to imagine what would happen. Would probably work in a single-threaded app. Most of the time +@Tatoroh she sent me a text that she liked my post on tumblr :p +Code red code red my mother knows what tumblr is siren dot gif +@puellavulnerata the three letter agencies are full of people who dissent, they just can’t say so publicly until they cycle out to civilians +@onekade @puellavulnerata I’m kind of astounded there’s such a thing as a native Armenian convert to Islam, knowing their history. +@ShadowTodd well they both treat women as objects but the prior is more catchy :p +@vogon geez I’m not even sure anymore, her first name is Katie though, allegedly there were incidents with her and Tamerlan’s previous gf +@vogon I’m more sad that he beat his wife and she exhibits classic Stockholm symptoms, and that the kid seems dragged into it by big ideals +I’ve been reading all the “we knew them before they were terrorists” gossip and the picture it paints is so… sad. +Whoops I accidentally looked at the comments section apparently being able to afford to travel to Russia is inherently terroristy +@chunter16 Spotify could have registered itself to run next boot for whatever reason. +@chunter16 implying you didn’t already have spotify installed? +@profoundlypaige must be nice, all of mine dropped out to marry their youth pastor sweethearts or w/e +@eqe @ioerror I’m fainting. +@The1TrueSean for you? No. +@tapbot_paul it wiggled around to the next tweet up when I tried to tap away. That’s what you get for letting me use your software. +I have my own miniature booth babe right on my desk apparently http://t.co/8akugYJHhZ +@ternus well, they don’t sell plug and play seatbelts in various sizes at a Store Near You, so that’s a bit more severe. +@tapbot_paul just got the new version - what is this dot and why won’t it let me tap links? :( http://t.co/qucHMnXq1b +@ioerror do you intend for these to require signin? +Hey @cnn if @ap was compromised by phishing then there isn’t very much twitter could have realistically done to prevent that. +“My brother wanted to defend his religion from attack, that’s why he attacked peaceful civilians with no warning!” +.@wgragido because of the fake bombing news or…? +@panther_modern some Syrian gang is taking credit but just as likely they’re just skiddies trying to get free attention +@panther_modern I doubt it, as average time to detection of silent compromises is, like, months to over a year. +*sniffle* Why did @rantyben call me a thought leader? I thought we were friends! +Say, what’s your procedure for reacting to phishes sent to your people? Probably a good time to double-check. +@ra6bit @donicer wouldn’t walkie talkies work better anyway though? +@quine @rantyben @osxreverser yeah I like you too Zach. +@getwired @marshray someone from AP says there was a phishing incident one hour before the breach… +If it’s true that AP was targeted by a competent phishing attack, then that tweet probably had more intent behind it than lulz. +@rantyben @SamHananelAP ouch, now that was uncalled for! +@rantyben @SamHananelAP on that timescale that’s significant - extrapolate if news that it was a hack hadn’t gotten out quickly… +According to HuffPo, Texas has 10% of the dangerous chemical facilities and 50% of the evacuations and property damage resulting. Hmm. +@puellavulnerata well like I couldn’t remember the “C” in “MMC” and kept calling it whatever came to mind… +There’s apparently a video but I may just end up re-filming it myself for a more general audience… and because of embarrassing stutters XD +Successfully filled an hour with me explaining the Nintendo as I played it - here’s my lovely pirate cart art. http://t.co/JI2c5EoRdG +Veracode: come to Einstein room now for the lowdown on the greatest 8-bit computer of all time +Progress: “a country just legalized same-sex marriage” is not a jaw-dropping event but a casual high-five. Welcome to fabulous, France +@vogon — @DrPizza was also experiencing problems. Donno what your common factor is. +I’m surprised at the differences in how the nature of compromises varies depending on geographic region http://t.co/Qv5xGMGlZj +@dan_crowley @savagejen @integrisec — terrorism because it was an attack on the general public with no apparent connection to attackers. +@dan_crowley @savagejen @integrisec with ie school shootings the intent is usually revenge- even if they’re “crazy” I think this was still — +So is this pizza app for Xbox going after the demographic of people w/ debit cards who own video games but neither laptops nor smart phones +I’m kind of pleasantly surprised that a tumblr post about the lockdown not being as scary as the news made it seem got so much attention… +@RandomStep I’m assuming one of those is meant to be https +.@Neostrategos I just find the idea that the security industry grew more paranoid because of supposed ancient prophecy kind of insulting +@ID_AA_Carmack please do not take my monospace. But I review code in an editor that can set bold, italic, etc on syntax coloring +Apparently the full data breach incident report is out http://t.co/NacvYKaTpF but what’s with the Mayans reference first paragraph… +Some ideas for preventing crime other than throwing more cops at the problem http://t.co/xDOzNVr2on +@m1sp or stealing my trademarked squeal, that will be five cents per reference +@snare I’m pretty sure I can get your missile coordinates from somebody. +Got mentioned by a news blog so I’m expecting to hear from random people who may or may not have something to contribute all day +@maradydd @nickm_tor I have a twitter list of people I personally care about to read to completion when I’m short on time. +@skyeyemachine to the background color. And Zelda, to answer your other question +@DylanPaulMathis @pzmyers wow I have literally no idea where that topic came from or why you felt the need to tell me that okay bye bye now +@spacerog … I actually only know your first initial. +@DylanPaulMathis @pzmyers do you… what do… oh never mind, you’re in a bit too deep here to rescue with a tweet. +@dildog you would not believe how long I looked for the keyboard shortcut I believed must exist but I couldn’t find it +@thegrugq 8-Bit Terrorist is the name of my Team Rocket tribute band +@xabean No. Yes. Not that. +I don't know what I did but a bush just exploded like a block in Mario Bros 3 and left a hole +Made a super awesome surprise for tomorrow ;) I have a hex editor and I know how to use it +@lexikon1 my last name is Elliott +@attritionorg I never would have used txtspeak like that. Stop libeling me. +@attritionorg I'll slander u ! +@Mordicant Zelda +How am I supposed to be passive-aggressive if I can't add people who have blocked me to public lists with slanderous names +@redline6561 Zelda +@esacteksab bit late for that. +Apparently Dear Husband thought I was delusional about claiming to be good at video games until I destroyed him at Smash Bros +@thegmanehack I've been playing since I was three years old... +@0x00string okay now without the flute ;) +My shameful secret is that I am actually incredibly bad at Mario +@apiary the internet demands it's recorded +@artkiver @apiary our office +The Abadidea Effect strikes http://t.co/sIZu62A5nN +Since this is a security company I'll be sure to cover @nelhage's groundbreaking research into patching Mario vulns +That's right I'm going to be teaching the system architecture of the Nintendo while running head-first into goombas LIVE +@lexikon1 sure ~ +I'm practicing Super Mario for giving my lecture tomorrow noooooo my mushroom come back +@lexikon1 You can link to it if you want but I think I am all burned out on this... +@zeroday looks like this is just the ones that can tune somewhere into the 700s? +@apiary I just thought it was next week for some reason! Don't worry I can give this talk cold ~ +Allegedly I am giving a lecture for programming the Nintendo *tomorrow.* @apiary is this true +@JastrzebskiJ clearly not all of them! :( +A boy turned down a copy of my waveforms are they not sinusoid enough I thought my waveforms were the prettiest :( +@RichardBarrell yeah. TTF has always been done in the kernel. A surprising number of people never realize that... +... To the best of my knowledge, that PDF is safe :p I hope q: +@Neostrategos @iJamieH hahaha it should be fine :p maybe :p +Check out this PDF on malicious fonts :3 http://t.co/KDWmwr3289 +@AutismIsakiller I think, since it's a federal case, they can have the trial in the middle of nowhere if they want (and block cameras) +@AutismIsakiller sorry for the fox http://t.co/uVOlefpkKp +@AutismIsakiller don't get me wrong there MUST be a fair trial. Just our confidence is reasonably high... +@AutismIsakiller and that they flat-out told the driver they abducted that they did it, I mean, technically allegedly flat-out told. +@AutismIsakiller you heard about the guy in the hospital who woke up and wanted to see footage to point out who did it right +@AutismIsakiller but the evidence at this point is so overwhelming the only way out would be to demonstrate coercion by the big brother +@AutismIsakiller well, the last paragraph does remind all readers of innocent until proven guilty +@thegrugq you non-Americans are so bad at suburban American geography it's embarrassing +But the important question is, who is taking care of @J_tsar’s beautiful cat Peep +@zenrandom me too, but it's apparently hard enough for our senators to grasp the protections we have +@innismir there are three radio towers in a marsh tucked between the mall and Network Drive +I can't shake the feeling that someone, somewhere, is trying to use @J_tsar's twitter data as a basis for account profiling +@WeismanBen I wasn't able to figure out why they're there, it might just be filming. +"Ortiz has faced criticism for coming down too hard on some defendants, but that approach may become an asset..." Oh buzz off +Well at least it's confirmed they're trying him as a citizen and not an "enemy combatant" so those senators can suck on a yucky lollipop +@JastrzebskiJ all I know is the bottom is yellow and I think the top was dark blue. They're repeatedly circling the area very VERY low. +They buzzed our office but I can't find anything wrt the police looking for someone. Maybe they're just filming the majestic suburban wilds +@ternus Built before everyone and their uncle carried laptops and phones. Can't be bothered to change. +@rockhopper that was the best I could do from the car +This helicopter is circling outside the Burlington Mall http://t.co/3SZeiOJKHP +Should I be concerned about the helicopter practically buzzing the grass I just saw down the street +.@puellavulnerata can you imagine: "we're picking up the signature of a Nintendo 3DS! This plane is grounded until it's secured!" +@puellavulnerata I would never enable the TSA to be more annoying, but they totally would buy this ... +The winky face is key to interpreting that tweet, y'all +Namely he wants me to patent my technique for identifying suspicious consumer devices like Kindles and sell it to the TSA for zillions ;) +My husband just told me not to tweet something because I should patent it first. I think he's evil +@giovannibajo lol that wasn't what I meant at all :p I meant the typing +Peace is when a temple invites members of another religion to hold ceremonies inside because their church building is unavailable... +@Jonimus well that's what all this Science(tm) is about :) +@ra6bit that OSX Lion supports? :p +They run at the same mhz, but the ram in my macbook and my work laptop have completely different noise profiles :) +@jesster_king she got engaged and she's dropping out of college to get married sooner +@aquavitaecoll yeah but you can just change the strings from "intel" and "intel 64-bit" to "32-bit" and "64-bit" much cleaner +Am I allowed to be bitterly judgmental if my cousin just fell right into the MRS Degree hole? I'm self-righteous I know but come on +@davidwees @ezchili anyway I think you will find this interesting - my 10th grade history book http://t.co/XqDYtlr3OX +My grandmother just sent me a text longer than the iPhone screen how does she manage that she doesn't even have a smartphone +@yyr_ haha I can tell you're not a Mac person ;) +Everyone: I am aware of the difference between 32-bit and 64-bit processes. The "Intel" part is completely superfluous :p +@davidwees @ezchili But if I had to condense what "saved my soul" to one tweet: Astronomy. Not just books, telescopes. +@davidwees @ezchili turns out my core beliefs were actually incredibly stupid when compared to unfiltered reality! but that's the problem... +I'm confused why Activity Monitor in OSX still notates that every single process is of Intel type when the PPC emulation is gone +@davidwees @ezchili oh, I knew from age 6 that Satan's agents said so ;) that is a very long and painful story actually. +THE NINJAS FOUND ME TELL MY BEST FRIEND I --- oh hello third-floor window cleaners +@Abzol you know we agree right? :p +@Abzol that’s the point - people try to deny terror suspects (even the most tenuous maybe-suspects) basic human rights +When human rights don’t apply to someone because they’re bad, remember, someone out there thinks you’re bad. +Hit video game from Veracode: Where in the world is @chriseng San Diego? +@41414141 they’re installing tor, obviously +@davidwees @ezchili there are private schools that teach this. I went to one. +@_larry0 @ternus I think my TSA lady was upset I wanted to do it in full view of the line. Told her three times, nope, here's good, thanks. +@ternus except last time I went through they were so not wanting to touch me that I could have fit a whole soda can (dangerous stuff, soda) +@Abzol passing a raw get or post variable to the system shell +Reviewing the stuff I recorded at Source and I have no idea what talk could have been talking about a model trainset +@nullwhale well for starters, I can't overwrite all 4GB with a new value sixty times a second like you can a screen :) +I can track the exact moment the machine goes into hibernation well after the screen is off +@grayj_ 800mhz because the reported speed of the ram is 1600mhz. My other devices have 1333/665-ish +@grayj_ tuning my radio on AM to 800 MHz and holding the antenna in the same plane as the RAM over it +Got a recording of the MacBook's RAM #AdventuresInTempest https://t.co/9H5wkrOvX8 +@fredowsley welcome back. You missed the fireworks. +@skyeyemachine there's a pretty pattern centered on the mhz of my tablet's RAM that appears on my radio when I lay the antenna on the screen +@send9 I went to radio shack and picked up a generic bunny ears plus the PAL adapter for it (they had it in a baggie on the wall) +@rjsalts kinda sorta! +@send9 yes. If it’s staticky it’s because of your location / antenna. +Hit the deck! It’s TEMPEST! http://t.co/sPHkvHa5Tv +Hmm... do you suppose it's a coincidence I can pick up a faint beautiful pattern centered exactly on the speed of my RAM? :) +All these frequency analysis graphs are giving me the finger +Hamming window hanning window is this a cruel joke +@demize95 you should be thankful it wasn’t tvtropes +@unixronin presuming the limerent object is also limerent I see… :p +@dakami casual * curse you autocorrect +@dakami whereas with DH it was a causal friendship that grew over several years +@dakami I’m extremely prone to intense crushes on a certain kind of smart, nerdy person pretty much the moment I see them +@fncombo http://t.co/oUGOCJFPmK +@fncombo http://t.co/oUGOCJFPmK +@fncombo the tumblr is leaking!!! +And now I have the technical term for how I feel about my husband vs. how I feel about my wide assortment of crushes +Ever read an article on some aspect of psychology and realize they’re reading your mind http://t.co/GKLmPDcDjC This is embarrassing +Re: the guy who thought he was a government bank security tester- incredibly naive. Incredibly lucky to have gotten out of that mess okay. +@VZDBIR you need an anime character avatar +@PatrickAK maybe, but I feel like I probably shouldn’t be trusted with a transmitter :) +@puellavulnerata I’m just relieved the cops actually kept their heads screwed on. It’s practically a miracle. +@puellavulnerata and I haven’t been able to determine why they did so at this house in particular +@puellavulnerata I’m aware of one shady looking thing - one house where they demanded everyone come out with their hands up +@puellavulnerata and some people said “no” when the cops knocked on their door and they didn’t dispute it +@puellavulnerata I’m just not aware of any cases of people being harassed for being outside except when gunfire was in the immediate area +@savagejen @dan_crowley @puellavulnerata so did I! We could all hear on the radio where he was by that point :) +@puellavulnerata I’m just saying that the “lockdown” was almost entirely voluntary in who participated and I broke it multiple times +@puellavulnerata @savagejen no, it’s impossible to get four million people to totally agree on literally anything +@puellavulnerata @savagejen this is what happened: “please stay inside” “sure” said most people “nah” said a few and nothing happened +@puellavulnerata @savagejen the trains were closed but there were people outside everywhere +@puellavulnerata @savagejen you know that’s not what I’m saying, and that didn’t happen anyway +@puellavulnerata @savagejen it’s difficult to describe, but to us locals this terror attack was intensely personal, not “just” violence +@puellavulnerata @savagejen — but on the whole, Boston wanted them there and they did what Boston wanted them to do +@puellavulnerata @savagejen I’m not going to assert they did everything 100% right as thousands of people were involved — +@puellavulnerata the search actually wasn’t nearly as invasive as twitter thought. On the whole they actually remembered to knock and ask. +@puellavulnerata the entire city never shut down. I was there. It didn’t happen. +@0x17h chiptune ain’t midi yo +@savagejen Trying to decide if this is a pun or you haven’t noticed all the boys I’ve been hitting on over twitter :p +@0x17h chiptune privilege: watching this and thinking “well duh” +@savagejen what does that make a dry atheist +@m1sp @JackLScanlan I’m struggling to imagine why they care, but who am I kidding +@_larry0 today in “images that make no sense in thumbnail view” +@spacerog “hmm, I could totally copy paste that 140 times. No, I won’t, I won’t be that obnoxious” +Leave it to the FBI to screw up good intentions +@m1sp incidentally I’ve been feeling really limerent +@m1sp I think you are the only person who has caused me to look things up in the dictionary in the past year +@m1sp are you breaking Microsoft’s heart +@gsuberland geez he went right back to eating his pizza they’re not 100% overreactive 100% of the time :p +Achievement unlocked: got a funny look from a cop re: my touchscreen radio +Not getting criticism on BBC that Suspect 2 is "only" 19yo and hence not dangerous. That's an adult. And near his physical prime. +Awesome if I unplug the antenna and touch my finger to the connector I can pick up FM music with my body +@themarkcaudill not yet but I will. +@dildog I'm not talking about overpopulation due to completely open doors, I mean being fearful of foreigners on principle +@ErrataRob and I think it's easy to forget how RECENT these events which changed the city's demographics are +@ErrataRob ie I have photographs of my Irish-Bostonian ancestors. My father grew up speaking Italian to his friends in a Boston suburb. +@ErrataRob what do you think the dot dot dot is for I was focusing on Boston's relatively recent waves of profound effect +If there is anyone in Boston who is now anti-immigrant ask them if their last name is Irish, Italian, Greek, .... +Taking my radio to the big city taught me a lot about what various signals I can pick up are actually for as they go live more often +@GabrielGumbs I'm genuinely unsure and want to know more. But I do know the title on the YouTube vid is misleading ... +@GabrielGumbs I'm not going to assert not one single act of disrespect by the cops happened, however. +@GabrielGumbs and almost all of them, it was show up, nope not him, leave +@GabrielGumbs I was listening to the police radio - lots of valid reasons for checking specific places due to the emergency popped up. +"One time our web scanner found a button to send faxes and hammered it. Then there are the FUN customers..." +@themarkcaudill yes, yes, and yes, but as if they got in trouble... +@themarkcaudill it's happened several times. They gave some hick rednecks a fake bomb and arrested them when they planted it +@themarkcaudill just that she claims this is another case of the FBI enabling a wannabe. Ofc just as likely she’s desperate for an excuse +@chort0 I’ve been to the Chinese embassy - to my surprise they totally owned up to some stuff when political science students asked +@matthew_d_green I’m trying to decide if this is a subdivision of bitcoins joke or… http://t.co/IUIwdPwhmW +@secmoose @0x17h @skry @radleybalko I’m not sure why that house got searched, unless it’s because it’s several adults no kids +@secmoose @0x17h @skry @radleybalko everyone I’ve found a quote from said that, in context, they didn’t feel violated; +@garywhitta @vogon oh look another children’s movie starring a young man, several assorted male characters, and exactly one woman. Yaaaaay. +At least one case of SWAT team frisking everyone in a house in Watertown- not sure if they had a specific reason. http://t.co/ElRsp1anyN +@0x17h @soycamo I have no idea what’s going on here but not having her hair up is against regulation +@ra6bit presumably gotten out of hand if true. Or she could just be desperate for an excuse +@ra6bit she says it’s another case of the FBI shepherding wannabes until there’s enough to make an arrest +@m1sp you are my ally angel +Time to close the tab: “Dope-smoker Dzhokhar” Yeah I’m sure that’s relevant +@Jedi_Amara that’s sexist. Also all but one of the divine messengers in the Bible are explicitly male or ungendered. +@HyShai I doubt they would have wanted an actual explosion if this was their game. But it’s too soon to know either way +@puellavulnerata @HyShai oh yeah bingo. The one where the feds gave them a dud bomb so they could be arrested for trying to use it +Can someone with a better memory than me remind me and @HyShai of times the govt has aided a potential terrorist so they can make an arrest +@HyShai there’s a chance it’s true as they’ve done something like that before. Or she may be desperate for a reason her sons aren’t evil +@HyShai she says this is another case of the FBI enabling a potential terrorist so they have someone they can arrest +The mother is naturally an emotional wreck right now, but if her allegations against the FBI are true, there best be hell to pay +@puellavulnerata @jeremiahfelt @Asher_Wolf okay, just finding the news articles on her claims now… interesting… +@puellavulnerata @jeremiahfelt @Asher_Wolf we’ll have to wait that one out then since obviously she’s probably not at her emotional best +@jeremiahfelt @Asher_Wolf @puellavulnerata the alternative is Keeping Lists based solely on immigration status and we do not want that. +@jeremiahfelt @Asher_Wolf @puellavulnerata also does not seem to be the case? They checked the elder in 2011 I think and found nothing +@Asher_Wolf @puellavulnerata rather someone at the hospital ID’d who had left the bag on the ground from footage +@Asher_Wolf @puellavulnerata there’s no evidence the FBI knew who they were looking for “the entire time” that I’ve seen +@themarkcaudill I expected a quite ordinary looking person. I’m just bothered by the cognitive dissonance of “he’s… he looks like my type” +@m1sp good noon <3 +@themarkcaudill that’s not quite what I mean no… +@Hyder_Khan yup I’m Dutch-born. Nah don’t worry, “they” know where my loyalties lie :) +@Twirrim just scared, and decided to kidnap someone for their car and tell them they were the bombers? Come on :p +@Twirrim at this point there’s simply no plausible doubt. He wasn’t bleeding to death in a stranger’s boat for fun +I can’t help but be astounded at all the basic, obvious steps they could have taken to avoid being caught. Hooray for catching The Dumb. +@geekable you’re trying so hard +@WhiteMageSlave maybe if Timmy put on a hundred pounds +http://t.co/RGaUEqRSUM I’m bothered by what a beautiful boy he is +Gods dammit America this is why we can’t have nice things http://t.co/puNuHIVvKo could you just STOP SHOOTING PEOPLE +@ternus but where is the silly pic of you inside? Bor-RING +@CyborgCode http://t.co/TnIcgPJZ5p +@Hyder_Khan but it may be a cultural thing that we consider gun violence and bomb violence to be totally different and the latter far worse. +@Hyder_Khan no charges have been brought yet, something can be “investigated as” a terror incident and changed later because of evidence +@FrederickGeek8 like I have a pebble! I was Poor(tm) during the Kickstarter +.@edropple yes, I just wanted to acknowledge that some people near the gunfire were, in fact, temporarily restrained by the police +@rjsalts @thegrugq because we take everything personally +@rjsalts @thegrugq just wrote a ridiculously long musing on this http://t.co/sP0FRN9rhZ it will *never* be common in Boston +Counterpoint, accounts of ppl who were particularly close to the gunfire and told more firmly to stay put http://t.co/f7EfYjWRXO via @ternus +@dfranke so, I think the call to shelter in place was the correct decision even if theoretically he may have been found sooner otherwise +@dfranke and if he had come out sooner, the kid might have been conscious enough to shoot him. It’s all if, maybe, perhaps, probably +@CyborgCode it’s a standard github feature. They have templates you can use +@jesster_king I’m short on twitter +@CyborgCode make a repo named username dot github dot com (or dot io) and put an index.html in it +@jcran never let @quine … ? I can think of so many ways to end this statement +@comex that’s on the Feds - and the lady who effectively killed Aaron Swartz, apparently. +@inversephase in this case they suddenly showed up like half an hour later. +My long-form explanation of why we, the greater Boston area, did what we did. http://t.co/sP0FRN9rhZ +@stevelord @thegrugq everyone knows my final move is the MERSENNE TWISTER +@SamusAranX no they insert random popular ones +Ported one of my orchestra pieces to chiptune https://t.co/y9jHJ5CyrY +@deathtolamo @profoundlypaige I know it doesn't fit the narrative but cops aren't all 100% total screwups 100% of the time. +@deathtolamo @profoundlypaige and the article ends with the person *emphasizing* he thought they did a good job. +@deathtolamo @profoundlypaige I don't see anywhere in here it says they broke into his house without consent +@deathtolamo @profoundlypaige can you read? he was outside and there were gunshots, of course someone yelled "get down" +@deathtolamo @profoundlypaige stop projecting your narrative. They knocked. +@deathtolamo @profoundlypaige he consented... +@JohnnyCocaine @thegrugq that was the ONE smart thing about this - zillions of tourists lining the streets on this one particular day +@JohnnyCocaine @thegrugq it closed briefly; there were far, far too many tourists who needed to go home to keep it on lockdown long +@thegrugq all of this was stupid from top to bottom - they didn’t even leave the city in the huge time window they had +@profoundlypaige it wasn’t too bad unless you were in Watertown proper - my manager’s house was barricaded to keep him from becoming hostage +@profoundlypaige yes I live a few miles north of Boston and I was in the city proper during the manhunt +@profoundlypaige a mix of having been on the radio, following a lot of other locals on twitter, and major press summaries after the fact +@profoundlypaige so they probably have friends but all evidence points to them being the ones on the scene +@profoundlypaige at least three other people have been taken in for questioning so far +@focalintent apparently it was just the driver’s own cellphone. They kidnapped him then kicked him out. +@profoundlypaige from our POV in Boston there was suddenly a shooting and we had no idea it was the bombers for a good while +@profoundlypaige that kind of all went out the window the instant they started shooting, that’s not “innocent” in any circumstance +@profoundlypaige oh and they told the driver they kidnapped that they were. +@profoundlypaige technically no, but they match the photos, started shooting cops, and risked bleeding to death rather than surrender +@michealc no, see immediately previous RT - marathon bombers stole car with cell phone inside. We all know the outcome :) +I’m glad violent criminals are notoriously stupid and don’t think to check for cell phones in cars they just jacked +@MarkKriegsman google is commanding me to do the wishing +@sakjur lol nope. Found it though. It was... tucked behind my husband's gaming computer downstairs +Somewhere in this pile of books and assorted sundry is my missing MacBook Air. I think. #geekproblems +@iain_mk2 @DrPizza @gudkopy okay I’ve been ignoring this but as if this didn’t start with a cherry picked single person’s incident +@amazingant yeah that’s the thing - I need at least one gap in the perimeter for my experiments, sometimes a big one +@MrToph sir why are you sending me panty shots +@amazingant it turns out it’s quite hard to block a signal broadcasted from a giant tower one and a half blocks away +@amazingant it’s sitting in the corner waiting for me to work on it some more, but preliminary evidence is that it will never be very good +@MrToph cyan underpants huh +@Dr_Review … why am I reading too much into a rated-E video game plot? +@Dr_Review seeing as the Rockets have access to the exact same resources and are much older and in greater number,… +@LBontempoNunes baseball bats would probably be more effective than zubats +Pokemon: a major corporation is under siege from a terrorist organization and the only person who bothers to show up to stop them is a 10yo +@iain_mk2 @gudkopy @DrPizza and this is worse than the American situation how…? +@kaepora http://t.co/jaK3pnfDI4 +@markrendle it’s almost as if we’re two variations of the same basic culture ;) C&C @DrPizza +@jack_daniel stuttered and stalled +@gudkopy @DrPizza the British are obnoxious and pretentious, but I think they’re onto something with the “not letting people suffer” thing +For the record I don’t advocate for any subculture of feminism which denies transgenderism, that’s just recycling the prejudice +@bugbrennan excuse me ma’am but are you aware of the idea that if you don’t want to have sex with someone, simply refrain from doing so +@pzmyers @bugbrennan um parson me you do know being a lesbian does not mean you must have sex with every woman you meet right +@pzmyers @bugbrennan …… what? +Now to sit back and play Pokemon Blue like the gods intended. Sorry, BeaCon… +@leighhollowell fffffff-!!! +@pokemon_ebooks but… but… eggs! +@WhiteMageSlave ohhhhh riiiiiiight THOSE GUYS Hahaha losers +@DarthNull thatsthejoke.jpg ;) +Terrorism all over the place, exploding factories, massive earthquakes, the only thing left is a Black Plague outbreak +@panther_modern @kaepora the part where they’re “thought to” have “unprobed” links to “hellbent” clerics +Fox News is thought to have as-yet unprobed ties to a radical editor hellbent on destroying journalism +Check out how carefully Fox words things so they can make accusations w/o evidence http://t.co/M4risIG78J ht @kaepora +@ternus decided to stay home this time, in case the entire city catches fire and floods with molasses +@mikko @mrHithron huh, this got lost in a mention flood earlier… … no, except some people think that’s what a DDoS is, but they’re wrong. +@mdowd that doesn’t look nearly lethal enough to be Australian +@ameaijou you’re a cat +@Hyder_Khan @Omgitstamz the average Bostonian is quite the opposite of a redneck, but there’s no denying there’s some racists in the bunch +I’m suddenly really sad that the time I larped as a zombie was before poor college students carried smartphones +@rantyben well, everything in context +@ternus do you play an elf? I bet you play an elf +@ternus never underestimate my willingness to troll people I like, or to beat them with foam and duct tape weapons +@hackedy only if it has a soft foam tip +@donicer @GreatDismal duh @jack_daniel +4) subtweet and see if they defend themselves ;) +1) meet someone cute 2) scope out their github 3) there’s totally a larp app in here +It’s suddenly pouring rain. Considerate of it to hold off this long really +@0x17h people did, nothing happened +@ggreenwald @marshray just because the govt will let him get away with it doesn’t mean we shouldn’t deride it as barbaric +@Dictum anyway there’s a nearly 100% correlation with strangers calling me “Melissa” instead of my twitter handle being obnoxious, so bye +@Dictum anyway there’s a nearly 100% correlation with strangers calling me “Melissa” instead of my twitter handle being obnoxious, so bye +@Dictum or burning down cabins or any of this other wretched nonsense. Next step: make sure suspect’s rights are respected +@Dictum I’m a fan of the fact that we can apprehend terror suspects without shooting up old ladies delivering newspapers +@ioerror the only people I can find “cheering” that are professional politicians. +@Dictum there are so SO many recent examples of cops totally screwing up but we have a massive operation where they, like, apparently didn’t +@Dictum there are people on twitter who posted they said no and nothing happened as is the law amazing I know sometimes it works +@Dictum martial law is when you get shot at, or at best arrested, for the crime of leaving your house +@Dictum see my previous tweet - house searches were by consent - “seek shelter” was not some kind of ultimatum +Today was a day of very heavy police presence and you have every right to not be cool with that but it fell way short of actual martial law +@thegrugq it won’t “keep up.” We’ve been in the “War on Terror” for twelve years and it hardly shows up to a single battle +@deathtolamo I haven’t heard of such an incident, but if it can be evidenced then that’s at least one case of the police acting wrongly +@marcusjcarey I saw someone on twitter who says she said no and that was that +Please keep in mind that no homes were searched without consent and no one was arrested for going outside, this actually *isn’t* martial law +.@GrahamBlog would you kindly sod off? WHAT war? Is there a civil war on I didn’t know about? +People worried about the financial cost to Boston: Boston wants to know if “Zero Tolerance For Terrorism, Inc” prefers cash or debit +@thegrugq who’s tried to hijack an airplane around here recently? Terrorists have *always* known about Very Obvious Targets +@thegrugq and IMO taking this Extremely Personally(tm) is a deterrent to anyone who isn’t planning on being suicidal in the process +@thegrugq that’s true of pretty much any violent crime. If I throw a brick through a window, police will respond +@dani0xE tweetbot +@thegrugq we spend more on storm cleanup a dozen times a winter. +@thegrugq I can assure you Boston considers it worth every penny as we took it personally +@ternus where’s my licensing fee +Crashed for four hours. 700 new tweets. Oh… dear. +@0x6D6172696F is it the bug you and I share where it’s too easy to cast our names to int? +Our government is filled with festering peat bogs like @GrahamBlog who want to get rid of pesky human rights +@GrahamBlog how dare you claim to uphold our Constitution +@GrahamBlog enemy combatant working for which army exactly? +@miuaf I don’t know much about military hardware but they’re the kind that are small as tanks go +The tanks are a show of force… you’re not gonna shoot at one skinny dude with a tank in a residential area +@DrPizza no except in a part of Watertown I think. That’s where the tanks are, as if you can use a tank to target one person lol +@DrPizza the trains are down and we are *asked* to stay inside. +We even crossed through part of Watertown and it was alive and well. The crazy stuff is in a fairly small area +Let me repeat because I’m still seeing it: the entire city of #boston is NOT shut down. People in parks people on corners cars on roads +I hope I am never so glad to have made it home again. If I see this guy I’m kicking him down seventeen flights of stairs +How to tell the Boston police are busy: parked in two hour parking > 24 hours. No ticket. +This end of town is pretty much out and about, the reports that the whole city is "cowering" are false mmkay +Taxi obtained and persuaded +There are a lot of people just now accepting that white Muslims are totally a thing. Now accept most of them are more like the uncle +Why do we even have a street named Laurel? No one in Boston can pronounce that +@kaepora @spacerog many as he is accused of carjacking +@ternus sir are you implying my antenna is not proper +@spacerog it finally did on like the sixth try +Fine, I will see if I can get it on my actual radio, but last night it was too fuzzy +@nemof no luck +Ustream killed. +I may have heard wrong but it sounds like they said the suspect wants to talk to them on cell phone +One thing I’ve learned: accidentally leaving mics open is a major problem for cops +Cancel search for green Honda: they have it +@Jolly I’d like to think Boston is better than that… … especially since the suspect is literally more Caucasian than me +1999 Honda civic, green, POSSIBLY the suspect #boston +@Ammoniak @savagejen yeah I think it’s overloaded +(I’m super ultra for citizen journalism, but don’t try to pass yourself off as ‘the press’) +@kaepora it’s okay, he’s clearly whiter than… hrm… +@zeightyfiv @m1sp it’d be disproportionate if it was a generic police shooting, but these are bombing suspects, not gangsters +#radiotweeting Don’t walk into a manhunt and say “I’m with the press” if you don’t have any sort of press credentials handy +@ternus where are you going anyway +Well-meaning housekeeping asked if I “know what time that will be” when I said we’re staying till transport is open +Okay I give up if @j_tsar is the right guy or not, way too many conflicting reports of “confirmed true/false” :p +@therulerofchina I’m alive +@perel42 hoping to stave off being blacklisted as a tracking server as long as possible I imagine +Quiet but not abandoned #boston https://t.co/YDQaLusZkB +I love how @vineapp will silently fail to post and discard the video #FirstWorldTerrorAttackProblems +@JZdziarski @i0n1c @thegrugq girls are anti-conference she-devils, of course! +@i0n1c @thegrugq I’m sorry you must confront your worst fear +@stevegibson @metropolitanrep it shows 5 am for me. Since it’s right under “Boston” I figured it was eastern time but not necessarily. +@stevegibson @metropolitanrep time stamp on last logged in +@HiveLibrary @puellavulnerata and the city is not / was not on total lockdown. Woke up, looked outside, people. +@HiveLibrary @puellavulnerata just chilling inside because someone nearby is violent with nothing to lose is not stupid or cowardly +@ternus the news says taxis are allowed out again so general traffic movement except for Watertown should be soon +@ternus we cleared it with the hotel that we can chill until the all clear is given, which I assume will happen within a few hours +@evejou @marcusjcarey well that’s kind of the correct response when your nephews shoot up completely innocent people +@ternus we’re still camped out at the hotel, as we were effectively trapped when this started to go down +Their uncle is vehemently not supporting them. None of this “I can’t believe my boys would do this” he’s demanding they take responsibility +I think I just literally heard the suspects’ uncle say they did it because they’re losers. +The hotel kindly agreed to let us blow off the checkout time, and they’re keeping their continental breakfast open indefinitely +@cirdan12 regardless of how one feels about guns, the gun one actually wasn’t total theatre for once +FYI there are both pedestrians and cars around here, it’s not like the city is in total shutdown +Apparently I’m on lockdown. +Awake. Sirens everywhere, unsurprisingly. What is the sitch +@SimonZerafa good morning from a high rise in Boston +I’m not kidding. My manager lives in Watertown. He texted DH that the police blocked the doors to his house. +@jlwfnord @fredowsley with luck we might actually get there by 404 tomorrow. Camping out in the hotel. +The police have barricaded my manager’s house shut to prevent the terrorists from taking him hostage. +In any case the adrenaline rush has crashed hard and I am once again too exhausted to process this. May the morning dawn in peace +So let me fill you in on a secret. The initial guessing based on developing details? That’s actually what the news *is*. +Male coworkers I’ve shared a hotel room with: four (okay, three, if my husband doesn’t count) +@jlwfnord (it’s not the frilly lace up kind) +@jlwfnord back support. +Step 1. Get this corset off Step 2. Don’t cut the sleeping pill in half Step 3. ??? +@0x17h some of us live here you know. +Our room number is 911. On the plus side the clerk told us not to worry about checkout time. +I admire that pizza delivery car. #boston +Looks like we’re getting terrorist-proof hotel rooms on corporate dime +@_larry0 in the lobby, but I hear hotels frown on that sort of thing +@vathpela not quite. I can see several intersections but none anywhere near the crisis +I am considerably more awake now… if you’re wondering I am still at the Source hotel, up several floors, quite safe here. +Personal acquaintances are telling me they heard small explosions so I consider this verified #boston +@_larry0 so I’m huddled on the floor in the CTF room exhausted to the point of tears +@_yossi_ who freaking knows it could be any ol’ crazy pants whackjob who wants to commit suicide by cop +@_larry0 yeah except he decided at the last minute we’re not and he’d just take us home whenever +Oh my gods I can’t even process this Another stupid little bomb Is this real? Not just crazy speculation getting out of hand? Tell me +I am too exhausted to listen to the radio and process what’s going on. Sorry. +@maxtch I mostly use OSX which transparently replaces gcc with llvm +@skyeyemachine this is not the face of poverty this is the face of not bothering to get a room +Techno hobo camp, by request http://t.co/aXicQUDIJ7 +@Jedi_Amara glad you noticed +@maxtch yes, sometimes and not really. +Doing the techno hobo thing, sleeping on a pile of con t-shirts, hugging my bag of computers, in the corner of the CTF room +@DrPizza windowing… apps… I feel you could base an interface on that… but what to call it +Watching the city sidewalk from the fifth floor, some guy is just pacing and kicking poles. Oh now he's dancing #exciting +@blowdart you and I are on a different plane of concern, the big picture, the corner cases, legal stuff +@blowdart but I feel quite sure that one day soon, logging-into-their-Facebook pranks will be as uncouth as sneaking into their house +@blowdart it’s in a state of flux. Technology is changing faster than culture. Kids are making new etiquette faster than parents can teach +@ternus oh yes :3 +So I just noticed Defcon’s CFP is still open for a good while and I must be crazy because… … +@codeferret_ then I have no idea why you need my twitter +DH is trying to steal my phone to post questions to twitter so he can “obtain the answer via hacking” +Source Boston CTF - @quine presides over his domain http://t.co/OHgvIHnEu4 +Source Boston CTF - @djrbliss smiles awkwardly for the camera http://t.co/nXcyh5V5Ij +@demize95 find me when I have my backpack with me :p +Guess whose laptop @codeferret_ had to borrow for the ctf http://t.co/pFegagfhC8 +@binnightbot hi! I try. It breaks a lot of JavaScript interfaces :) +@WeldPond if they were HTML filtering server side *anyway*… +@savagejen what What +@hermanos @vogon because we all know 4chan is racist and it’s embarrassing +@triple5adam well, I’d hope they’re mutual, but one is Old(tm) and they both did the girlfriend namedrop :p +I love how our three letter agencies are so drone-happy but flip out when a civilian helicopter does a flyby +My key Source Boston takeaway: two new infosec crushes +@ternus pro +@McGrewSecurity @mikko @spacerog @dotMudge @WeldPond @dildog @joegrand I can confirm this works +@s_bridges @BernardGaynor @0x17h eww, he has more than two children? What a sham marriage. Everyone knows that. +Remember when sites and services not targeted at children had swear filtering? Oh nineties internet +@VoluntaryMan aliens are not currently in my threat model +@ReinH is that a mod? I've always played vanilla (haven't started a new fort in a while actually) +@cybergibbons I think at this point it would be perceived as increasing police secrecy which wouldn't go over well (I hope) +@jonelf of course I'm simply receiving it better, that's how radio works :p +You know what's cool? Knowing there's going to be police coming down the street before you hear the sirens is cool +@cybergibbons @zeroday yes \o/ +@mikk0j it's free software called SDR# (sharp) +@thoward37 @zeroday Don't give me a transmitter whatever you do. +Especially cool/funny is that one of them was like "I can't hear you it's breaking up" but I could hear both sides // @zeroday +I think I found a walkie-talkie, someone is asking their buddy where the blueprints to some air conditioning thing are // @zeroday +@blowdart uh, yeah, that's kind of the point. You let your friends into your house too. +@blowdart walk up to a teenage girl and ask to see her SMS to her best friend and her boyfriend. Observe. +@blowdart it's very much their concern. Don't confuse being totally open about some things as totally open on everything +Now we're waiting for that moment when culture changes and invading digital privacy is seen as utterly unacceptable whether it's easy or not +History of security: we gave up on perfect locks over a hundred years ago. The lock-and-key is now primarily symbolic. +@zeroday @ra6bit anywhere in the 500mhz range +@0x17h this hotel has a wireless mic in each meeting room that shows up somewhere in the 500mhz range +History of security: the British thought they had an unpickable lock for 40 years until they handed one to an American. Isolation is bad +@0x17h http://t.co/w48I67n9Qa +History of Physical Security: arguably the first "open source" was publicly funded and released lock research in the 1700s +@isa56k @torvos oh I'm sure it is - it's just not something people really think about +@isa56k @torvos oh I'm sure it is - it's just not something people really think about +@JZdziarski I don't really consider "it needs to be jailbroken and you need to know the root password" to be a general iOS vuln... +@judsontwit this only related to on-device stuff, not backups +I like how someone just referred to USB sideloading as "shoving the app in sideways" +@RSWestmoreland @Kufat I think I am listening to some people setting up a stage for a special event, struggling with bulky props +.@torvos ah, sorry - context is iOS +iOS: your contacts stay unencrypted when you lock the device: required for incoming call info +MDM server messages aren't signed? For serious? +@Kufat I can just get up and walk +I have no idea whose microphone I am tapping but it sounds like there's something awkwardly BDSM-like going on in a room near here +@RussMichaels @ternus yes, yes, use gender-based comparisons, implying female organs are associated with inferiority, that'll change my mind +"I think I follow this stuffed animal on twitter" http://t.co/VptMi4PeRR +@niteshad @savagejen @dan_crowley it's just leaky +@ternus they kicked me out of the room because I'm not invited so now I'm charging my doom radio at the badge desk ;( +@ternus you coming to the conf now? Going to the Akamai private lunch? ;( +@savagejen @dan_crowley http://t.co/LkS9KRN5Q3 +@savagejen @dan_crowley it's passive, my radio can't broadcast +@savagejen @dan_crowley I'm in your microphone intercepting your signal +@savagejen @dan_crowley boop da ba doop http://t.co/qjkTAz6uo6 +@ra6bit I found the FM output of the mic in here about halfway between the two frequencies listed on the LCD :) +Never mind, @dan_crowley is wearing a clip-on mic set very very quiet, and I found it :D +I came prepared to intercept @dan_crowley's microphone and he's going bare-voiced +@panther_modern they're here with the president, they're not street cops +@jb33z http://t.co/qaKc0kylUH +@akopa roughly 30mhz to 1.7ghz +"free as in beer and free as in speech - awesome as in kittens and awesome as in missiles" +This radio setup was worth every penny for sheer "freaking people out" value +@sakjur it's because the president is here for the memorial +Boston is chock full of guards with assault rifles - not a good day for the gun-phobic +@KirilsSolovjovs fan fiction writers +Oh! I get it. Congress is a social experiment to measure cognitive dissonance +@akopa we have Pennsylvania for that +@rbf_ no, I’m not advocating that the president is temporary king. I’m saying our congress does the absolute worst job possible. +@rbf_ hahahahahahaha once upon a dream +At this point I wonder why we even have a congress, stupid question I know +@JastrzebskiJ if fifty shades had stayed on the fanfic boards where it was birthed there wouldn’t have been a problem :p +Someone writing fanfic means they liked your story SO MUCH it took over their creative output; it’s probably terrible writing but that’s ok +How to kill all my desire to read your stuff: finding out you’re a jerk to fanficcers. Looking at you Anne Rice +@amanicdroid what I’m saying is: “my dad died in an accident” vs “my dad was murdered”: completely different psychologically +But the human heart accepts accidents. Malice, we know, is always deliberate, we measure it accordingly +How strange that accidents can so readily kill and maim far more people than the most bitter acts of malice +@TheDaveCA \>_</ reasonable policies are hard, let’s go shopping +@TheDaveCA block groups of 255 IPs at a time, I guess. +@chriseng bailed already. +@Nial he blew up their website with DDoS +@Nial lol I take it you are unfamiliar with “tango down” +Not that I advocate DDoS in any circumstance, but… https://t.co/ENceewdjAL +@sixtycastle amazing! A fine specimen of “completely missed the point” in the wild! +@osxreverser what’s wrong with kindle edition? +@m1sp and he’s not gay!!!… I know because he has a girlfriend orz +@m1sp oh my gosh I have a new crush /(^o^)\ +@xa329 yeah that's what I meant - it's not a fan crowd, too many old people and suits +@jb33z yes, and I bought a nylon costume of it, a gray sailor fuku with strawberry pink trim +@jb33z my avatar +@ra6bit @_larry0 @csoandy bingo +Someone told me I should wear my Kasane Teto dress to this con but I think it'd be wasted on most of this crowd +@Brian_Sniffen @erluko everyone at the table already expressed regrets he's not here +@chriseng he saw me doing my happy dance at beansec and thinks it means I can't be a real infoseccer... +Someone at this table is wearing a Casio calculator watch and the person next to him is wearing a pebble +Having dinner with half of Akamai apparently. And @joshcorman. Who still isn't over the dancing thing +@eevee your cat is very lucky to have a human able to seek advanced medical care - good luck +@Saturn500Jared the joke is I’m being literal - he’s coming. +Traffic and security is going to be a nightmare in the immediate vicinity of this Boston hotel tomorrow. THANKS OBAMA +@TheDaveCA that's what the tool was though, name the account and away it goes +@m1sp I really like him and I'm not sure if he can tell I'm hitting on oh gods wait he follows me +@whyallthenoise that's what I'm working on; finding weird noise :) +@focalintent the FM music station range is completely saturated on my display here - a red and yellow blotch +@focalintent both I suppose but I was thinking of radio +@whyallthenoise that's my old house back in Virginia +The noise floor in the heart of the city is so much higher than out by my house +@captcarl13 it is a plastic sword +@waruikoohii wakizashi. +Rare photo of an alpha con-goer in the wild http://t.co/Z0FzmYlfmn +@jb33z which does happen - they got slapped down over GPSs without warrants +@jb33z unfortunately where the FBI etc. is concerned they just assume everything's legal until a judge flips out on them +Is hacking back legal?: the answer is "try it and find out," basically. +@Computermaster ... I actually don't remember. I somehow hit upon it as a magic hex value, and was apparently delighted with it +@greenrd I bet a dollar you're not American ;) +@VoluntaryMan I ride the official clients' case hard because I am disappointed in them but I still love them #toughlove +"Hacking Back is a Bad Idea" by @ITSecurity I assume this is named after me +@ra6bit exactly the sort of thing I wanted to find - I got am sdr specifically to see what I can spy on that people forget about +@ra6bit I recorded it as FM and it is clearly audible +@ra6bit the range looks like this - so much stuff http://t.co/qBJWIevq8K +@ra6bit you repeat yourself! +@ra6bit incidentally that range is crammed full here but I don't see anything resembling his voice pattern +@ra6bit if I can pick it up and identify it, it counts. +@USSJoin SDR Sharp/Windows 8/Acer W700 +@WhiteMageSlave he got over it (he keeps getting lost) +Spying on poor @ternus who is gonna find a mention flood soon https://t.co/NRaAm38eFj +I found @ternus's microphone http://t.co/4cjFr8W4UF +@Beryllium9 @ternus (if you're not your company's security department, don't attack your company) +.@ternus: Attack your org from the outside to get better buyin for fixing the problems you find +.@ternus: think and ACT like the adversary. Be evil to yourself +.@ternus talk: culture of resilience. Ingrain it in the developers that they must overengineer. +.@ternus talk: Akamai has an absolutely staggering attack surface and if they go down, the internet is effectively down. No pressure. +for the love of pizza, I can't select the text of a tweet in Twitter for Windows 8 #uirage +Great, we've reached the stage where idiots call in threats to random public places. There's always someone +@chriseng so I think DH is refusing to pick me up tonight... +@bobpoekert well if you're on the outside of twitter you will hit api limits if you do anything more than proof of concept anyway. +(Note that the thing about computing relationship graphs being too expensive is from the far side of the twitter API - easier on the inside) +A year or two ago there was someone who tried to do avatar analysis on twitter accounts and gave up because of Justin Bieber :p +Twitter talk: finding bots via relationship graphs is too expensive, especially if you don't already know for sure one is a bot +Twitter talk: machine learning is ~80% effective on simple measurements like how many accounts a potential bot tweets to +Twitter talk: Omniture, owned by Adobe, registered http://t.co/MxS9P295th (that's a letter) to fill your logs with ie 192.168.1.2O7 .net +Twitter talk: half of all bots last under forty five minutes. Most go silent of their own accord very quickly +.@secmoose I'd prefer if someone I don't like locks out their account :) +Twitter talk: there are account brute force tools. Implying twitter doesn't implement password lockout? Anyone know? +Twitter talk: the history of spam on twitter is giant spikes being fought back down, baseline steadily rising, for the first few years +Don't answer that +is EVERYONE who works for Kaspersky very attractive or only people they send to do talks? Or do I just have a thing for foreign geeks +IMO asking people not to obsessively speculate over photos of intense interest is asking a waterfall to hold on for a sec +.@jcran shuts off his pwnpad and suddenly my Nexus 7 floods with pending notifications +lol @jcran is attacking one of the open wifis right in front of us, on projector “you all have disconnected right” +The only supernatural phenomenon I believe in is demo demons +I really hate that the http://t.co/bSGrh0jukq manual doesn’t list the last time a page’s actual content was edited. +@nelhage but that’s already what PHP is Good glory +@nelhage holy guacamole you found my next manual masterpiece why does this exist +.@jcran showing pics of retail stores filled with tablet displays - and you know they’re not properly locked down +@AsherLangton @flipzagging 4chan is a racist site. No denying that. But I don’t think they look particularly “brown” anyway +@flipzagging @blaufish_ it’s plausible. You don’t want all cops at a major event to be blatantly cops. +@flipzagging it’s all “maybe.” At this point posting their real names, if 4chan found that somehow, would be irresponsible +Having a backpack isn’t suspicious. Taking it off isn’t suspicious. But when a bomb in a backpack has ALREADY triggered, you check for that. +@flipzagging it wouldn’t be suspicious if a bomb in a backpack hadn’t already gone off. We’re post-suspicion. *Someone* left a bomb in a bag +@blaufish_ @blowdart really it comes down to: they appear to be carrying the right kind of backpack and appear to put it down +@blowdart @blaufish_ they don’t even look “brown” to me. From the photos I thought they were white. +@blaufish_ you can just buy clothes like that here, and order a custom badge or nick one. +.@blaufish_ they could be cops who happened to be right there and soon identified as such. Or looking like cops to avert suspicion. +@hackerfantastic (and our law enforcement specifically asked for crowd sourced photos and videos, so they’re looking at the same data) +@hackerfantastic doodling on public photos is not interfering with an investigation +@EternalTodo yes, but that one was called out as specifically what malware checks for, presumably it’s the most popular +@grp I don’t think anyone ever questioned if he did what the court said he did - only a question of how wrong it was. Public said “not very” +@grp their standards are higher than casual internet discourse, at least… +No, of course the photos aren’t “proof.” Nothing is proof before it even goes to court. Don’t attack people in black jackets :p +@blowdart wrong about what? There’s no personally identifying information. Just circles on photographs +“Greater or equal than” is probably not how to grammar, I admit, but that is how I pronounce the >= operator +@amanicdroid well yes, but I’d expect that most defenders of any language would work primarily in that language +I found everyone on twitter who would advocate for ColdFusion as greater or equal than PHP as a platform. There are two of them +Nothing is as powerful as an angry internet http://t.co/RTavnuTtHc +@meta_alex you’ve probably written more cold fusion than me - I’ve probably audited more code bases for 0day than you :) +@blaufish_ @chriseng both! SE has a nearly 100% success rate and google archiving is forever. +@thegrugq like was discussed in the talk - for a typical business your primary concern is monetary fraud, not stolen intel +.@ra6bit and @dildog just observed neither of them have ever seen me use a physical keyboard. #touchscreenmania +@blaufish_ @chriseng you can unintentionally leak directly to a real outside attacker, that’s often how they do it. +@thegrugq the threat model for Joe’s Business is a little different though. +@m1sp dude you are objectively adorable +I appreciate that @NintendoAmerica memed their own announcement. Hey, at least you’re not making Half-Life… +@nickdepetrillo you. Change your icon. RIGHT NOW +Effective marketing: “everyone who attends our talk gets a FREE light-up ninja sword that makes noise” +Convention convection, n: the means by which trinkets, lost jackets, and checks for second-hand electronics propagate via full-time congoers +This just came to me from Austin by means of convention convection http://t.co/rBjseTwThg +@jenniferbn2 source Boston - the American Boston :) +@jenniferbn2 I’m at a talk ^_^ +Insider threat: tracking geolocation and login time is too noisy in most orgs. Accessing unusual hosts happens. Only worry if ALL are weird +Insider threat: did you know removing an account from Active Directory doesn’t kill open sessions? Oops. +Insider threat: leading indication of fraud is multiple valid employee accounts logging in from the same single-person computer +Insider threat: usually fraud for personal profit, followed by spiteful damage of systems, “spy stuff” is a distant third +Insider threat: The more data you log, however, the more likely you’re going to cause privacy problems. Who has access, what are the limits +Insider threat: though of course log retention is critical +Insider threat: use “soft” investigative methods first. Don’t just start going through computer logs. Keep legal dept involved. +I agree that basic user education is a must even if it can never be 100% effective. Enable people to know what’s always a mistake +@chriseng thinking in general overall terms - there aren’t very many professional moles in the world +Negligent insiders are the most common threat - completely unintentional data leaks far more likely than being betrayed… +@stevelord time to first worlder seeking asylum +Talk on insider threat. Time to Assange: one slide +Re: the @1Password cracker - they’re being pro about it. It’s an interesting insight into how crypto can be weaker than theoretically stated +Trying to figure out if this room has a fake fireplace or this building is just that old +It's important to have good taste in friends - it's more important to have good taste in enemies +@mdowd @nickdepetrillo ;-; when is the funeral, you evil spider +@nickdepetrillo @mdowd noooooooo +*My* gmail is working — google just doesn’t love you. Or maybe you caught the APT +@bl4sty @rantyben the correct term for what’s going on is the Double Dominatrix +@thegrugq @i0n1c you’ve always got me, but I think he blocked me +@rantyben @comex @i0n1c I may not be involved with either but there’s a key difference: I’d kiss comex +@MrBuzzy Stockholm syndrome is a tragic thing ;) +@i0n1c @thegrugq @_frego_ @0xcharlie @dinodaizovi @comex I’m secretly involved with comex to the same extent I’m secretly involved with you +@WesleyFlake ruby python .net even java +@fncombo oh. Then *home* takes you to the top of the page. Tab takes you to the first input box +@leethax0r that’s a discovery of the hackers, not the vuln, afaik +So the Linode hack is blamed on ColdFusion - for love’s sake why do people keep using it, it makes php look professional +@jjarmoc @chriseng @quine seconded +@hypatiadotca @kylemaxwell they’re children - children constructing their fantasy society with other children. They do stuff like this. +@hypatiadotca @kylemaxwell they’re children - children constructing their fantasy society with other children. They do stuff like this. +@hypatiadotca you’re not being very supportive of my decision to come out of the closet as Linux otherkin +@The1TrueSean the first one is deleted. I somehow the wrong word +Efficient 1password cracking https://t.co/d9RQUTpjdM +@hypatiadotca I am a bridge between Teenage Social Activist Tumblr and Passively Privilege-Unaware Twitter +@marshray because you’re too microsoft +@akopa only if spoken in sincerity and accord with our mole brothers and sisters +I’m tricking you into normalizing words like microaggression +Saying “lives in a basement” as an insult is a racist microaggression against the noble mole people +I love it when major corporations post 404s to their own announcements +@MicrosoftIP @MSFTnews 404 +It’s actually kind of remarkable that it’s been a day and a half and no clear idea who’s guilty- extremists and whackjobs alike love to brag +@chadwik66 dare I even ask +Good glory some @arstechnica readers need to figure out not all headlines are 100% literal +@fncombo in what? +@bradplumer @focalintent Africa is a great what +@trevortimm @RepMikeRogers @mattblaze contrary to rumor I am not, in fact, fourteen. The basement part is debatable +@Kufat I’m more of a kicker +said abadidea immediately before receiving a letter that she is banned from Apple campus +So I think I volunteered to beat up an Apple engineer and steal the iOS signing key today +@tapbot_paul was that headline cutoff generated or curated? ;) +@grsecurity what's the point of going back to an older tweet and telling me to get over it? I've been over it +@chriseng think I left my book in your room +@bsdaemon @grsecurity ... But since he doesn't follow anyone it appears to be the project's twitter and I got nothin' against the project. +@bsdaemon @grsecurity he already replied, we've already had our spat ... +@dinodaizovi ... But he was at the wrong Marriott anyway. +@dinodaizovi thank you very much, I'm sorry I had to run off so suddenly +Spot the typo ... at least I hope it's a typo http://t.co/1dZ5UuERYG +@dinodaizovi you seem nice will you be my dinner buddy +Let the record show I am sitting in front of Dear Teammate Brandon’s unlocked Linux machine and NOT breaking anything +#srcbos13 so who is my dinner date +@Beryllium9 contains vulns +An oddly enough, java and .net web apps are much more likely to contain directory traversal than php +Veracode brings the data: ColdFusion leads the pack for XSS and SQLi per capita. PHP is the den of OS command injection +@WeldPond don't call large groups of programmers "guys". I'm calling you out in front of the room next time ;) +Next: bothering Boss http://t.co/EiVecqNfXX +@comex I think @dinodaizovi is officially my rival now he's crazy about you +Best line I've heard all day: "and then this OTHER virtual machine in the font renderer..." +@kherge meh I guess +@0xcharlie @dinodaizovi @comex no +. @dinodaizovi is waxing poetic about the skills of @comex ;) +Next up: I sit in the front row and demand @dinodaizovi smile for the camera http://t.co/6kLl4BNeSF +Holding up the “10 minutes, 5 minutes, 1 minute left” signs and hearing the Sonic drowning song in my head the entire time +Hmmm http://t.co/Q6mljSZuez +Sirens. More sirens. Too many freaking sirens. +Also you really shouldn’t be using FTP for uploading in the first place. Use WinSCP or even bare SCP if you’re cool. Change hosts if needed +Next up: @quine the incredible talking koala on Android appsec (He was blocking me on twitter before @i0n1c made it cool) +@marginoferror yes it's just careless and easily targeted +@brentrubell unencrypted +@xa329 it is, that doesn't matter +@thegrugq but their announcements are so cute +@brentrubell no, CuteFTP isn't malware - it's targeted by malware because it's too easy to recover the stored password +I get such a kick out of how "professional" the Blackhole people are. Malice as a service ! +Don't use CuteFTP - malware scrapes hard drives for your unencrypted credentials to your personal website to host Blackhole #srcbos13 +@comex speaking of conference you should be at Source Boston! :o +@innismir sitting in the second row, one to the left… +@attritionorg @zenrandom that sounds suspiciously like not Massachusetts +@DrPizza … idgi? +@kragen private security, private building, we could have not consented and left. +@sakjur because he missed his flight and can’t make it in time. The *con* isn’t cancelled +This had better be the last time in my life an infosec talk is cancelled because of a terrorist attack. +I saw a tophat in the lobby. I know who that is... +#sourceboston hey could whoever keeps knocking me off the wifi cut it out ! Trying to look at cat pictures here +@DarthNull my connection is really bad but it comes from a site called nooelec +@stoicbird Asus W700 - windows 8 +A cute boy asked to take a picture of my hardware! ... no, literally, I mean the radio +@waruikoohii yup +@ra6bit are you here btw ? +Not suspicious, I'm not suspicious, it's totally normal to have big weird cables sticking out of your tablet http://t.co/WyOmjuKOSq +I wonder if Twitter for Windows 8 correctly insists on certificates. We'll find out #openwifiatacon +@zenrandom @attritionorg speaking of: I don't see him here! LAAAAAAAME +My admission to this con is free but I forgot to officially register. However noone will question these credentials http://t.co/SgoXttgn0r +@MarkKriegsman hyperthreading runs in hyperspace and is measured in hypertime +Oh no I accidentally loaded amazon on this shady wifi oh no there's an order in my cart they got me - game figurine? Nevermind it's just DH +I opened google on my phone and when it noticed I was in Boston it offered me directions to the evacuation hotels +#boston My Verizon cell phone lost data… +@JastrzebskiJ man why you gotta harsh my blogging mellow +@burukuru not directly; all the injured got help and the runners and tourists back to their hotels +@DarthNull 7th floor, street side, I probably have an ear for this +@burukuru well I was thinking a little more specifically as that was yesterday... +@DarthNull going on an hour and a half nonstop. +@NinRac but that wouldn’t be internally consistent with my behavior :) +@waruikoohii also an apartment in your town was searched with consent apparently… +#boston okay I’ve heard sirens nonstop for an hour from the Marriott Tremont. Hashtag is flooded with well-wishes, can’t find why… +@wimremes meh, turns out subtweeting them is easier +@locks I don’t, but I like zenburn and desert +@waruikoohii unmarked buses, couldn’t see if they’re occupied, I assume they’re the buses used to rescue from the lockdown zone yesterday +What’s the etiquette for “dude I know you have a crush on me, spit it out, you’ll feel better” +@m1sp <3 +@vogon —> @eevee +Why am I awake WOW that is a lot of sirens why are police motorcycles escorting those buses #boston +@DeeLove92 I’m not “knocking” anything, I’ve merely spent years of my life studying the history of the church. +@WhiteMageSlave being this awesome isn’t illegal +Case in point wow I totally forgot I had all this weird SDR stuff in my backpack :p +@CastIrony last year before Blackhat/Defcon I actually wrote the hashes of the certs of sites like twitter down on paper XD +@rone iPad ; but it explicitly redirects me so I’m pretty sure that wouldn’t work anyway +@hackedy @homakov I think tumblr gets off easy because there isn’t really any secret data to plunder +I’m so glad https :// http://t.co/FfcweLybVE redirects to plaintext automatically I’m not on hotel wifi at a security con or anything +@SimonZerafa it’s a running joke at V-code that I don’t look old enough to be there +@varmapano @savagejen well yes. But I was marveling at and speculating over 3 fatalities vs 130 to 150 injuries earlier. +@savagejen the acoustics of a narrow city street amplify explosions. Source: I was in Amsterdam on New Year’s Eve once +They’ve already said on the news you can expect public transport to be swarmed with cops tomorrow. +Bostonians: I hate being submissive to the surveillance state but tomorrow would be a good day to double check your bag before you go out +@eevee but looking again, I realize that “they” is a smaller error space +@eevee that +#boston I keep hearing sirens - but of course there’s going to be some any night. #confirmationbias +@_wirepair in any case, we are in the city now, and everything is okay, but the hotel searched us +@_wirepair uh yeah where were you (oh right Japan) (carry on) +I can't imagine having hair that short like what keeps your head weighed down so it doesn't float away +That awkward moment when there's not enough shampoo in the hotel room oh wait I'm sharing it with someone with a shaved head shampoo party ! +@aksansai I suspect it would trigger a specific unit conversion card she doesn't have +Accidentally bumped Siri. Well that's a new one (device is running iOS5 because reasons) http://t.co/faypWVsWA2 +@blaufish_ that's pretty much all Christian groups to varying extents ;) their theological pedigree is not particularly pure +Abadidea's Source Boston "Don't You Tweet This" Count: 2 and the conference doesn't start for 12 hours +@bond_alexander I turned 25 two weeks ago so you're good at this +@watAtwist yup but I went with WBC because they're literally praising their god for the bombings +@WhiteMageSlave they were talking about pushing middle age and the guy says to me "but what are you, 19?" "she's 17" +@bond_alexander how old do you think I am? :D +Boss just told someone I was 17 and they didn't question it. +@blaufish_ llet me know if he says Nazis don't count as Christian so I can double block him :) +@blaufish_ lol I blocked him like two hours ago +@ra6bit I took a class on terrorism in college ;) #TweetsThatGetMeOnLists +Hearing twitter say the type of bomb, detonated on the ground, is designed to take out everyone's legs and incapacitate them - which it did +@panther_modern the reports are accurate - I was listening to the radio - one was triggered deliberately and two recovered for evidence +@ra6bit guess it comes to "did the malicious actor actually know what they were doing" +Me watching TV: "I know this is America but why is *everyone* fat? Oh... 4:3 stretched to widescreen" +@lil_lost it correlated very closely with the most crowded finishing time last year +Am I crazy if I speculate someone specifically designed those bombs to hurt but not to kill people? Or is our luck just good with 130 to 3 +The hotel bar is packed, probably because most places closed early. #Boston +Here I am doing Source Boston setup late at night again. In some ways it feels like it's been years. In others, a week. +@WhiteMageSlave we're fine, I promise! Emergency response has done an A+ job +. @SOURCEConf Boston: they will ask your name / look in your bag at the hotel because of today's events. +@kaepora yeah - at Source +@kragen I live here! :) +We're being searched at the hotel but they're being polite about it +I have the most exquisite knack for unintentional implications in my tweets, mainly concerning my quest for pants +@SabrinaPennello #thats #the #point +@Steve31278 it’s not a scorecard But if you want it to be, look up civilian and “unknown” casualties in our warzones… +@Steve31278 ha, also not true. But I’m not a Christian, so I’m not particularly fond of them. +@Steve31278 and probably forgetting all the American terror incidents perpetrated by white or Asian guys with guns. +@Steve31278 again, you’re extrapolating based on a BILLION people, +Btw I am apparently going to Source Boston tonight, as soon as I find my pants. Will crash with boss, unless I get a better offer :p +@Steve31278 the west +@Steve31278 overgeneralizing large groups by the worst actions of any member is how we got into this mess +@Steve31278 I wish I lived in a world where that was true! But women are punished for being victims here, and there are feminists there. +@Steve31278 “Muslim” is a vague category that covers well over a billion human beings. Of course there are some bad people in there. +@Steve31278 right, because noone who describes themself as a Christian has ever hurt anyone for hateful reasons! +@LJonhny #thatsthepoint +Oh, Westboro doesn’t represent your religion? Well of course they don’t, that’s the point +If you’re going to cite one Muslim as proof that Muslims are happy when we’re bombed, remember Westboro Baptist Church is a Christian group. +.@Robbie some people were still on the one I was listening to; it gently tapered off to really minor stuff. +Emergency radio has gone very quiet. Hopefully that’s that! +@pmocek @ioerror check the time stamps. That was the controlled detonation of the third device. https://t.co/iAzahOnqHU +@PatDollard police say this is a fake story. +@thegrugq re: the bridge it was apparently a footbridge, which makes more sense +@IanAKemp "yeah I'm standing by a blue... a blue... um... !$%&" +@IanAKemp I heard it once - ironically, simply because he couldn't remember the word for the type of thing he was standing near XD +Impressed with the good job responders have done helping everyone get back to their hotels or find the people coming to pick them up +@landley the professional radio stations don’t have so much static though - this emergency radio is a mess ! +@paisleyboxers looks like he’s harping on the fact he’s not technically employed by anyone as a columnist +Is @erikrush really a non-parody account? What a wretchedly hateful person. +@CyborgCode but in general, being good at context switching +@CyborgCode well today is a little higher volume than usual because I’m in Boston! +@savagejen emergency response is on the ball. After the initial explosion, everything has been about protecting and helping civilians. +I don’t unconditionally agree with anyone I defend. I don’t even unconditionally agree with myself +@grsecurity good thing I don’t know very many people like that! +@thegrugq @grsecurity you never let me get in any fights by myself :( +@grsecurity okay, sure. I think you’re a jerk. I think you’re rude, arrogant, and trust to technical accomplishments to cover for you. +@grsecurity wasn’t involved in? It was on reddit, that’s not really how that works :p +@michaeldinn radio +Okay, now one of the packages they’re investigating is smoking for an unknown reason. #exciting +@thoward37 not really a camping out in the public infrastructure kind of place - it was sleeting here like two days ago +@Hyder_Khan because I’ve spent the last three hours trying to understand people on the emergency radio and some have poor radio voices +@chronic I’m not Canadian or French but that just looks weird +Now they’re going to investigate a backpack stashed under a bridge - I think they said Waltham? Probably a false positive +All in favor of banning people with deep voices from operating radios say "aye" in a clear, high-pitched voice ;) +@grsecurity Actually I was of the opinion you were reading too much into it - upset over points I simply can't find in the text. +@grsecurity (and I didn't feel like drawing out your trademark condescending remarks, that's why I subtweeted. Oh, look!) +@grsecurity you know reddit doesn't send a new orangered when someone edits a reply, right? That's not exactly a reading comprehension thing +@hemantmehta @WBCSays if it turns out there is a hell, it’s just barely large enough to hold their building. +@miuaf I really can’t figure out why he’s flipping out at @no_structure and my attempt to ask was completely discarded +@fredowsley everyone from work and our infosec friends are accounted for. Don’t use the cell network, use iMessage etc. +@fredowsley everyone from work and our infosec friends are accounted for. Don’t use the cell network, use iMessage etc. +@ralpost @Codepope the context was spender of grsec, but it applies pretty generally :p +There are a lot of conflicting reports about the cell network outage being deliberate and just being overwhelmed. #boston +@akopa I enjoy /r/netsec as mostly being a good news source/discussion center. Get in some good scraps though ;) +@xa329 … “spender” is someone’s name in this case ;) +Like is there some rule that you can’t be a major open source contributor without being incredibly hostile to anyone who has different goals +Back to infosec drama: spender will quietly move goalposts if you call him out on being a jerk. And signs his reddit posts for some reason +@ra6bit I suspect it’s that nothing you’d consider a “burner phone” works on LTE so they didn’t bother. +Based on people saying they DO have service, they apparently think no one would buy an LTE phone for their bomb ;) +@rgov @1DScoop they’re clearly excitable, but they are not the OP of the image, it went viral, can’t find the source for sure. +@rgov so I'm all for having a high level of taking-stuff-seriously until we know for sure we have a solid lead +@rgov usually there's a rash of false positive bombs after a bombing, but this one has had a rash of actual true positives; +@rgov there is of course every chance in the world it’s a photographer or spectator, but still interesting enough to check out. +@rgov it’d only be paranoia if nothing had happened and one was worried abstractly about someone on the roof being suspicious. +(The person on the roof could of course just be a photographer, that's a reasonable thing to do. But still a good lead...) +Sounds like they can't get the people coming from New York patched into their comms systems? +@dridus http://t.co/Y3NooCLtJV I could get out my SDR, but this is handling the load quite well +@dridus (a bystander reported this to them afaict) +@dridus police radio +@PwnieExpress @SOURCEConf just stay off the roads right now! Hunker down and have some local brews :) +#boston #marathon looking for suspicious black male with black hoodie, black backpack, turned away by security 5 mins before explosion +@ataraxia_status @eevee they’re looking to ID the driver to determine if it was legitimate charity or a bomb smuggling attempt +@ataraxia_status @eevee they showed up at the delivery gate at the hospital and were turned away because they weren’t expected +They are looking for a yellow Penske truck that attempted to gain access to hospital and was turned away: may or may not be legit #boston +@eevee the prior is strongly supported by the first responder radio, at least. +@_larry0 @chriseng we’re a town and a half outside the city proper. I doubt it’d be practical to get in for many hours yet. +I just literally heard an officer say “pics plz” (of before and after I think, I’m not positive) +@chriseng (I assume everything will be all clear by tomorrow morning) +@chriseng I was thinking about hitching in a ride to the conference tonight but that doesn’t seem practical at the moment +@DarthNull so even if a route is open now it might not be in twenty minutes. +@DarthNull stay at the airport for a while. They’re still looking for more devices. Multiple ones have been found +@aaqian are you in the city w/o cell access? Just stay inside a private building. All the risk is in public places +@WhiteMageSlave I'm a very unintentionally successful tumblrite http://t.co/Hrh225WW4Y +(Kind of surreal seeing my tweet of warning get copy-pasted to other social networks - true viral messaging in progress) +@ra6bit that’s where I’m at - some of these people I simply can’t make out +One officer is flipping out about the signal problems - it’s strong enough but it’s not decoding properly +@gsuberland at this point it could be for any reason, as there’s no evidence or groups claiming responsibility +@waruikoohii all I made out was JFK +Sounds like they found *another* incendiary device (I'm having trouble understanding the feed, it's very fuzzy) +@Nial those processes are largely automated +Sobering reminder that this sort of thing occurs in some countries all the time. +@jack_daniel I’m still catching up to the very newest tweets, but I’ve seen surprisingly little of that +@jack_daniel well in the 40 minutes since you posted this, it’s unambiguously a bomb now :( +Sounds like there is about to be a controlled explosion of a discovered device #boston #marathon +@AmberBaldet volunteer here - I was outside the city proper - will be there tomorrow assuming this doesn't all go to hell :) +@SimonHoneydew We are a brave city, emergency services is on the ball and all victims have been rescued +All victims rescued. Witnesses being evacuated to Copley(?) Hotel #boston +@okoeroo the first one wasn't :( +Probably a bad time to make a joke about Boston police overreacting to things that look vaguely like bombs so uh keep your backpacks on +Whatever you do, do NOT drive through Boston or take the subway right now. The emergency radio is buzzing with more possible bombs +@chadwik66 I meant wait minutes +Do you ever by coincidence refresh reddit two seconds after someone replies to you and you wait so you don’t seem over-invested +Check it out, the face of medical patent evil: @myriadgenetics +@BadAstronomer the real purpose of metric is just to make snow depth sound more dramatic, isn’t it! +@PwnieExpress is this in Boston? See you tomorrow :) +(I realize they were trying to fit all their hot issues into one tweet, but the result sounds just a wee touch over-violent) +@willjohansson @AsherLangton again, they were just trying to cram too much in one tweet and the result just sounds surreally violent. +@willjohansson @AsherLangton shooting someone who means to shoot you is a completely different question from shooting someone picking plants +@AsherLangton @willjohansson (and IMO gunning down plant thieves with assault rifles is way more immoral than thieving some stupid plants) +@AsherLangton @willjohansson I imagine that’d go down to the levels of generic robbery if it was fully properly legal to grow +@willjohansson … I realize they’re just trying to fit as many issues as possible into one tweet, but the result is absurd :p +@willjohansson since they’re implying marijuana being legal, which is fine, in what reality would you need to gun down pesky garden gnomes +Um… is this political party casually advocating lethal force to protect your freaking garden patch? https://t.co/JdNdjE9FQD +@lindseybieda @puellavulnerata why would you assume male when most western cultures have more distinct female names anyway? :p +@wimremes but the question is, are you in love or in hate? http://t.co/HT2MGIdB0h +Especially confusing is that I land on the tumblr *signup* page and get the error that the account exists when I try to log in :p +@vogon I’m not sure if that’s an ironic ask, but simply reloading tends to work :) +Chrome iOS is doing this thing where it keeps temporarily losing my login cookies for sites like reddit and tumblr +@theproweb and Windows 8 in the bag +@maradydd @attritionorg @wimremes the infosec industry should buy a mansion in a country with no network regulations and all move there +@DarthNull actually I don’t think we’ve met in person yet! +This java patch announcement is so casually glorious http://t.co/UBbKVcq3VI +@m3hr :D +@Twirrim and turn to stone every morning?! +@ReinH he doesn’t really need ranged weapon skills because he can withstand a barrage while he closes distance +Since I am a non-intimidating person with a penchant for carrying electronics, my primary life partner guideline was brute strength :p +@waruikoohii glorious +@JavaKrypt see next tweet :p +Why yes indeed I do make a good target for robbery thank you for noticing +So my plan is to wear Google Glass, a smart watch on each wrist and an iPhone in my pocket and three laptops/tablets in my bag #cybernetic +@focalintent allegedly the alpha of the SDK *is* out. And they haven’t sent this to the SDK mailing list. +@blowdart the date I saw was 2004, so not quite literally ;) +@blowdart the fact that I had never heard of it until about an hour ago suggests it was maybe not a success :) +Funny how Apple, Samsung and MS all seem to be chasing after smart watches because of a Kickstarter for a simple device. +@chriseng #schadenfreude http://t.co/3ECwrR2MBA +@grsecurity @no_structure http://t.co/DWcaDp8SxS +@marcusjcarey that would be the most consistent way, you’re right. +@marcusjcarey another really good question, actually +@marcusjcarey obviously this is actually pretty complicated. But that’s why we need some better legal protections than we have now… +@marcusjcarey oh, that’s *from* the outside to the inside; I was thinking from the inside. +@yourserversdown @marcusjcarey you don’t need a “digital postal service.” Just a legal acknowledgement that it’s private communications. +@marcusjcarey work email is slightly different in that it’s the communications of the company itself, so the company can look at it +@grp well what else would you expect to find when breaking into a lawyer’s email? +@marcusjcarey of course! Just because it’s technologically easy to sneak a peek doesn’t mean it’s ethical. +If the American APT didn’t “see any privileged communications,” that’s primarily because they casually redefine email to be non-private. +@jsjohnst value range analysis +@whereits value range analysis +"Chapter 5: Overlapping Memory Accesses" finally made it to the exciting part ! +@joelknighton ding ding ding 🔔 +"Implementing the model is mere engineering." Well if that isn't the most mathematician thing I've ever heard +@davidjayharris it was a temporary protection against @VUPEN which was unintentionally too broad and hit normal users :) +@davidjayharris Ha, I knew what it'd be without clicking, long story short it's not my fault ;) +@vogon @focalintent no but same genre ! +Kill... me... tell @focalintent I tried. http://t.co/J0AD1LMRi0 +Anti-protesters say protesters should be “grateful” they’re not attacked. Oh England, you think you’re a funny bloke! http://t.co/XibADlIY7J +@joelknighton it’s about static analysis of c +If they introduce a variable that’s a treble clef I’m (╯°□°)╯︵ ┻━┻ +This math book has progressed to using sharp and flat musical symbols in equations. I have no idea what’s going on +@WhiteMageSlave “my”? “Our” :p +@maradydd @kragen *shrug* I felt I would be remiss if I did not say something +@maradydd @kragen … it’s a personal degradation that doesn’t really have anything to do with the argument except hurt feelings. +@maradydd @kragen IMO deliberately using the wrong name is the same thing as deliberately using the wrong pronoun with transgender people… +@pod2g 😈 +@maradydd it’s perfectly reasonable to dislike her but she had her last name legally changed and for a good reason, :( +Said someone who doesn’t like Bloomberg’s proposals: “he should just shut his mouth & run NYC” Welcome to Contradiction Town, hate your stay +This simple post on the early days of bitcoin sudden takes a hard right turn at Whammysville https://t.co/KipTuyv2Bz +@donicer except the ban was blocked by the courts +@kaepora Windows 95 logo is best logo +@nelhage D: +@savagejen \o/ eeeeee +@ra6bit #itscomplicated +Whoa wait Source Boston is Tuesday? Aren’t I working that show? I should probably tell @codeferret_ +@Kufat lol it’s a knife in the iOS font. Explicitly a kitchen knife though. +@ra6bit in general, to greater or lesser degrees, depending :p +@ra6bit rather you just happen to be mostly on the default settings so it’s never an issue? ;) +.@Computermaster actually I rarely encounter people who think “girls can’t computer” anymore, rather, “girls are weird wahh go away” +@IanAKemp I donno, I guess I’m a gentle sleeper. +@ohunt yes. “Well if a few people are mean to you specifically because you’re a girl, have you tried being gender-neutral” +And I swear to the gods of the internet I will cyber-shank the next person who suggests I should simply conceal my gender 🔪 +@ra6bit when you engage with one, you’re not engaging with an abstract intelligence but a set of beliefs about who that person is. +@ra6bit example: on reddit, “anonymous” comments are written by young, reasonably well-educated western men by default. +@ra6bit humans are humans, we maintain an awareness of each other’s perceived physical existence and fill in blanks with stereotypes +@NM_Jeff no, they’re players in an MMO +@wimremes non-player character (in a video game) +Illustrated my dream of a boy telling me about my future http://t.co/GpWg60Cdhd +@pod2g if you can get him to look you in the eyes - he seemed too shy to talk to me at Blackhat :) +@pzmyers @EuropeanAtheist @secupp (which only drives home the point that someone can only truly “represent” you by consent) +@pzmyers @EuropeanAtheist @secupp that’s definitely the first time I’ve seen Myers and Cupp in the same sentence… I hope it’s the last :p +@rantyben @evad3rs and I’m the retro hipster who keeps on insisting @comex was better +@donicer statement retracted, replaced with “bro I think you like Mewtwo too much” +@donicer this sounds like the tweet of someone too old to have played Pokemon first hand ;) +(He said “you’re a ‘girl’ not a ‘woman’ in infosec. If you were older and no longer cute, many things would be different, many worse”) +An NPC in a dream actually said something profound to me about gender relations that still makes sense after I woke up. Hmm. +@0pcode no higher honor +Lol @ people who think “nerd” is an insult +"Keep this quiet - I heard this casino is run by Team Rocket" The sign on the door says Rocket Game Corner #storiesforkids +@Kufat yeah +@m1sp Mispy just because that's your origin story doesn't mean it's everyone's +@Kufat my stepsister's kid, I assume. Though as far as I know my mom hasn't murdered her +Pokemon trainer regrets the Bitcoin crash https://t.co/4v0ZARVEa4 +My mother texted asking if I wanted to adopt an unspecified 6yo. That's not suspicious at all +No YOUR after-midnight tweets sound high +Who was the first person who thought “you know, selling bread with sauce and cheese on it isn’t enough. I’m going to bring it to their door” +The song I made earlier ( https://t.co/z5jCYw0sV6 ) goes with this cutie (yes I think highly of my own characters) http://t.co/K71kPuiLTY +@profoundlypaige the internet *is* my friends +@kaepora *tilts head* +@paniq @0x17h where can I get some privilege filter glasses like he’s wearing +@The1TrueSean that's kind of beside the point at this point +@m1sp are you around? I really need to vent XD +@tsdNull ppmck (I hate trackers) +@mentalguy I mean “learned by making that mistake.” +Listening to everyone’s stories: am I the only one who’s never drank who nonetheless knows not to drink on an empty stomach +@dancapper also he’s naive and drank without having eaten yet today (we didn’t know this) +@dancapper lol uh as opposed to the carpet +Achievement unlocked: someone got wasted for the first time in our house. Made it to the sink. Get this kid a medal +His wife just showed up and dragged him away screaming (her, not him). I’d ask how she knows our address, but we moved into their old apt. +Let the record show that @GWakaMurray is not allowed to ever drink half this much in my house again. +@porsupah cards against humanity +@xEAxEA are you going to make me decode this +@xEAxEA are you going to make me decode this +@Wxcafe cards against humanity +There are currently five (5) young drunk men in my living room. They seem to think CAH is more interesting than my Pokemon game +@kevinlange same thing; most C syntax is just sugar on pointers :) +Understanding pointers to pointers in C: my husband’s best friend’s wife’s brother is cute. +@RouteLastResort lol um if you want to I guess :D, just don’t make millions ;) +@NaNoWriMo #nanothon when I owned more notebooks than books +@misuzulive … okay, I have to ask what’s the story there. +@no_structure science is science ! And Nintendo science is best science. +@Ionustron (and when I do soundfonts, it's the Cello and Oboe Extraordinaire Orchestra) +@Ionustron I like cellos and oboes. Like, a lot. So all my envelopes approximate those XD +My chiptune was just compared to Dragon Warrior, I'm a happy badidea :') +Cute facebook bug http://t.co/YPAOcUgRxP +I woke up and wrote another chiptune https://t.co/CYxUQpuNam +@misuzulive so you haven't seen this picture then? :p http://t.co/QhxIVXN2Ug +@misuzulive I do have it you know, but it's packed in the closet at the moment +@misuzulive kinda creepy that you have a picture of me in your car ;) +@misuzulive ... yes? +@misuzulive matches better that way +@JackLScanlan 😑 +So Psy (the Gangnam Guy) has a new song - reasonably catchy ! http://t.co/4LORxJWlg4 +@ioerror uh, why? If anyone is using that in a real world environment … +@m1sp @WhiteMageSlave so last thing before I fell asleep I thought of a melody and I still remember it and I'm gonna chip it \o/ +@Ordog23 thanks - I went to a party store and they had a huge Mario wall sticker kit really cheap. +@comex so true story I woke up and figured I had dreamed this +@comex I hope @ElderScrolls / Jeremy Soule got their cut ! +@puellavulnerata @GreatFireChina they tweet errors encountered in China. +@kherge not really, as Pokemon is hand-written assembly, so that would take massive restructuring +Suddenly I am drawing a pokemon-style RPG tileset (a black and white world with color accents) +Your husband might be drunk if he complains about the internet for an hour and then is surprised you reboot the router on him +@jesster_king um, you don't need pics, just look up Lt. Surge +@jonelf hang on while we grab the wii, wii-u, xbox, two different 3DS's, ... +There are fourteen devices attached to our home router right now and we're not even trying. #threegeeksonehouse +I don't remember some of these lines... http://t.co/ONHCQfAfab +@nullwhale I figured it’d be in the home button. +@nullwhale if anyone can make it work, they can, and if they can make it work, it makes perfect sense. +There’s a rumor the 5S will have a fingerprint reader - no more annoying PINs, but what’s more fun than security with analog fuzziness? +@notch I think you deserve it; video games can and do affect culture, and yours has a positive creative effect. +Controller… won’t reach… beanbag… let console hang off TV stand by its cables! +@cgiffard and he’s hiding out of paranoia and the first thing he does is flip out and say you wouldn’t make it on the battlefield. +@cgiffard “Lt. Surge! They call him the Lightning American!” +Like, that is the Japanese cartoon character stereotype of Americans. Gun-toting maniacs who saw horrible things in the war. … :( +Funny how in Pokemon Red/Blue, there is someone explicitly referred to as American - and he’s a veteran suffering from PTSD. +Abadidea Plays Pokemon Blue: Delete an older move to make room for TAIL WHIP? [Yes, No, Oh Heck No] +@robertszkutak well even if you don’t formally “win” getting ranked like that already is winning +@OxbloodRuffin well, it isn’t, but I wouldn’t expect the PLA to start using Google Docs :) +@CrappyCodingGuy yes, and blasphemy. It's a replacement for *photoshop.* +@blaufish_ @dildog they are the names of common logical fallacies https://t.co/XS0yGzANdP +Pop quiz: what do these colors have in common? http://t.co/zXmU1UWt7K That's right: nothing! except being hideous! And in Windows 8. +@mikk0j @wimremes you know, there *are* gradients of emotion between love and hate :) +Note: to my mild astonishment, it actually recovered the image automatically, so I'm not out my two minutes of hard scribbling work. +mspaint.exe has crashed. I have been using this program for TWENTY YEARS what do you MEAN IT HAS CRASHED +@mikk0j I uh, do use a touchscreen or seven :) +@focalintent oh I can think of five or six softies who follow me, but they’re not really in User Experience Land. +@mikk0j with some polish, metro *can* be a wonderful touch interface. Metro IE10 is fluid and lovely - but lacks corner case features +There really are things I genuinely like about Windows 8, but there are so, so many little annoying things +@diffkid and implies that straight and poly are inherently at odds. Ha, sure. +@vogon if it was you, please step into my office 💣 +@vogon I mean specifically whoever decided on that hideous shade of green used for Store tile. I need that human’s attention. +I feel like doing a long-form critique of Windows 8, but is there a snowball’s chance anyone with any influence at MS would ever read it? +@dildog http://t.co/F8vJd9IfwB point 9 +I’m 100% for flexible, relaxed notions of marriage, but @salon is falling into disappointing stereotypes of bi http://t.co/PtM7er38ze +@spacerog either it was a transient error or not Verizon’s doing +@The1TrueSean @codeferret_ lying isn't trolling +@The1TrueSean @codeferret_ umm well he's wrong we've never been to the Lemon Tree. Ever. We went to Lanna Thai. +@The1TrueSean um, okay? ..... you know there's more than one Thai place within an hour of here, right? :) +@The1TrueSean you apparently haven't been there I promise it is literally a wagon. +Look it's rainy and no-one can stay awake can we just all concede defeat and go home +@The1TrueSean um... yes it is ? +OH: "I never spoil any of my grandchildren" surrender your grandmother license +Rainy day at the Thai wagon. Yes it's a literal wagon grafted onto the chef's house, it's packed wall to wall http://t.co/PJu8lERRbQ +Someone tell @codeferret_ we’re inviting people over this weekend to play video games and eat pizza and that’s that +@rantyben definitely slightly stabby 🔪 +@thorsheim they all do, it’s just a question of how hard +Current status http://t.co/9Bobou3Fyk +@snare yes I suppose *physical contact to metaphorically indicate emotional support* +@snare hang on I need to find a coin to determine if I give a sincerely empathic response or a trolling one to conceal my social anxiety +@snare whoa there emo pony I think someone needs a hug +If you downvote a purely technical comment and don’t explain why it’s wrong, you’re wrong +@rantyben @thegrugq http://t.co/WOxmHxCQyN +@rantyben @thegrugq sir are you calling me fat Because by local cultural norms I am most definitely not +@thegrugq @rantyben that’s the OTHER Burlington in the tiny northeast corner of the country! Gods learn some geography +@rantyben @thegrugq just checking: you don’t know my address, right? More specifically than America anyway +@pod2g @evad3rs I think he is not very good at just saying he likes somebody :D +@beist don’t think I’ve seen it in any binaries I’ve cracked open - for x64 that would mostly be llvm +My hobby: doing an Unattended Monitor Photo Tour of the office +@bSr43 <3 <3 <3 literally features while I sleep +@JackLScanlan @dresdencodak my gods never before have I wanted a Nintendo plot to be handed over to an outsider +@bSr43 while you’re there, may I have an option to export the asm without the address columns etc. so it’s “valid”? Pretty please <3 +@jyrow5 it can handle four color mode used in dual GB/GBC mode but not full color +@jyrow5 it contains in it all the Gameboy hardware (except the screen) and plugs into a Super Nintendo +I cannot tell you how much it pleases me that the Zapper still makes the exact same sproing sound after a lifetime. +@grayj_ that’s what he — sorry. +It's a Gameboy... with no batteries... and TV-out... and SNES controllers... http://t.co/WRhpsKpO3S +@entityreborn that's covered under smartphone ;) +@RSWestmoreland what did you do to yours, throw it off a bridge? +@TechJournalist in the closet. I don't have a power supply for it actually ! +@MalwareJake yes and not tonight Do you know how hard it is to render a 6502 machine with no disc nonbooting :) +Technology changes, hearts do not https://t.co/lHgjiAiwXp +Welcome to my house. http://t.co/qANPBN2tHF +@m1sp @jesster_king you misunderstand me: a *correct* touch interface uses the pixels it has to scale to intended size clearly as possible +@jesster_king resolution only affects how *clear* the image is on a mobile interface. Physical size of elements matters. +@bSr43 *nudge* hai! On Windows it is segfaulting when I try to export the .asm :( +@jesster_king the tweet about ahh the shampoo is arranged neatly ahh +No-one eight-bits like Gaston http://t.co/k80Lbfecke +@The1TrueSean @apiary @codeferret_ also you forgot to do the math of how long it takes to paint thousands of pixels vs. playing video games +@The1TrueSean @apiary @codeferret_ I don’t think he can distinguish between colors +@The1TrueSean @apiary >steady hand > steady > *trip* +Ooh a Nintendo controller bed set — it’s *painted*? Sorry I am not responsible enough to take care of painted pillows +@apiary I found someone on etsy who will paint pixel art on the face of furniture for $300 I think that would be really neato +Another example of our markov bots being a little too sentient https://t.co/1YoWV70FFU +The answer is, of course, Etsy and the Land of Deep Wallets. http://t.co/qEr0xKqhiK +So I was thinking: we should just do the whole house Nintendo-themed. Where can I get NES furniture? +@SurprisingEdge huh… I’ll have to check. +@thegrugq @ra6bit well that’s not weird and suspicious at all +@thegrugq @ra6bit your problem is probably the Department of Defense root cert. +@rhysmorgan @JackLScanlan @dannolan (remember, otherkin is just a form of Middle School Disease. Don’t stress about it :) +@rhysmorgan @JackLScanlan @dannolan yeah I’m calling Poe on this one. An entire major otherkin blog turned out to be a stealth parody. +@focalintent I don’t know how I am chord, but my keys are all over the place (and apparently very “foreign”) +@rlehmann @thegrugq or America. +@hemantmehta I wouldn’t take the advice of a man whose life decisions were so poor he ended up appointed to a position in Detroit. +@chriseng @The1TrueSean hacking security quiz is the most indisputably valid way to pass security quiz. +@0x17h my uni got over that phase. Their new buildings combine proper Roman architecture with glass fronts. +@lastres0rt yeah it's concave for some reason +Came home to this. http://t.co/ZKEdf2QlXm +@RSWestmoreland @savagejen there are literally ranches in Texas bigger than Rhode Island +DH used Firebug and Burp to make sure he got a perfect score in a security training quiz. I'm... I'm so proud +@savagejen I refuse to be associated with Rhode Island! +@eevee I'm actually bad at distinguishing individual people. I don't know why my brain tracks facial data this way. +@The1TrueSean http://t.co/aFjUUTQ9Fl +@eevee I can tell the Irish from the Italians in Boston, who are both different from Germans further south, etc. All in the nose! +@savagejen that’s a New Hampsha thing! +@traskjd it’s not so secret when it’s the stated reason :) +@trufae http://t.co/DgW9LRU2mN +@vogon I feel like this is by design. Public schools seem to meticulously avoid history that happened within living memory. +Wait, Borowitz is one of those parody things, right? Darn. I’d like to see that that Windows 8 support call. +Look I don’t know a lot about economics but Mt. Gox simply suspending trading because they feel like it seems ridiculous. +@marshray it’s sad, she looks like a nice young lady, who probably doesn’t know that it was stolen from a home. +@RSWestmoreland actually the hardware win key + power key is mapped to that on this tablet. +@jack_daniel I update this thing multiple times per week! +Bonus points: it works fine at the login screen implying there’s a soft keyboard per login session but I still can’t kill the process +… the Windows 8 soft keyboard is stuck unresponsive on the screen. I can’t End Task. I have to reboot because my keyboard crashed. +@WyattEpp @dkdsgn almost as many, but for touch interfaces, you scale to desired real world size. +@echristo how do I git pull from the future :( +Wasn't there some project that converted x86 to llvm IR? I can't find it now. +@wickux I don’t understand why Samsung has so many different models within *one* company. They need to cut it down to 5 or 6. +I know that previous RT was obnoxiously newlinish, but it really drives the point home: android is *hard* to do good UX for +Still reading that math book. Maybe this unsatisfiable polyhedron needs more realistic expectations in life +(That link came from me googling “AT&T microchip” to find out if there ever even was such a thing) +Intel syntax for Intel chips, AT&T syntax for AT&T chips! http://t.co/aIltBAOfkp +@sarahnadav geometrical patterns +There’s a wall here that suddenly populated with blank postit notes recently. They keep rearranging. I’m kind of freaked out. +@inversephase technically correct even though it sounds funny... +@codeferret_ @GWakaMurray I can't get texts to go through. Where's my lunch ride +@rone well, it *is* technically illegal, and carries the risk of accidentally DoS'ing or otherwise making it worse +@CaucusRacer google is doing that thing it does where it knows too much. Happy birthday +So it turns out that New Housemate a) does have a twitter b) follows me c) thinks I need to seek counseling about the shampoo thing. +We're up to *35* counts of code signing certificates stolen from game companies. Mostly those cute Korean ones... http://t.co/Siq99cp3jS +Someone went around exploiting the postgresql bugs to leave kindly notes on the filesystem to patch. http://t.co/hVCbYtfoN9 +I like this guy's definition of winning a video game: more bytes going more up!! http://t.co/Fu9C8Kh0fD +@Davey_Hu well I was working from iPad ;) +I didn't notice the timestamp on this bug until the comment where they question if cellphones can do the 64-bit math https://t.co/3HPlDXyPb3 +@Davey_Hu ...? +Everyone’s talking about the evaders’ slide deck but I can’t get the darn thing to load. +@_wirepair I contend I definitely saw a picture of you with your wife in a yukata +@_wirepair @fredowsley look stop trying to dazzle me with all your different words for ways to make a tall skinny guy look ridiculous +@fredowsley (I’ve seen @_wirepair in one, I know you can manage it) +@fredowsley yukata, Fred. I mean the yukata. +@fredowsley yukata, Fred. I mean the yukata. +@fredowsley please to be posting full photo of you in dress for my Embarrass On Demand folder +Good morning! Abadidea's Guide to Internet Arguing. http://t.co/F8vJd9IfwB Intent matters. Behavior matters. Context matters. +@DarthNull idk but Google did officially attempt to purge Android of them. +Another Windows app store gem: YouTube video downloader. I would avoid hosting a paid TOS Violator Kit of my competitor's product +@amanicdroid it's an app called "World of Warcraft" I think it literally displays a twitter search for "wow" +Like does Microsoft not realize that filling the store with transparently fake brand name apps doesn't do them any favors +Oh look, the Windows 8 store approved an app called "World of Warcraft" which uses the official logo. And has GPS permissions. +.@silentbicycle I think I'll start putting Schadenfreude down as my corporate sponsor +... as long as it's not in software *I* run, of course. #PoweredBySchadenfreude +#ThreeWordsSheWantsToHear unpatched RCE nday +@whitemageslave #nationalsiblingday +Why do the timestamps in Twitter for Windows 8 think I am in Europe? I've filed jira tickets at 2am before but give me credit it's 10:20pm +@iDark_Link No it won't. You see aliens because iOS simply lacks the Unicode symbols. It says "you are on a desktop" +@L0sPengu1n0s only in metro +@iDark_Link really? Because no-one else does... What does it say? +Windows 8's autocorrect is incredibly dumb. Like someone has a patent on stupid obvious techniques they didn't want to license :/ +@L0sPengu1n0s it says "you are on a desktop" in weird Unicode letters +http://t.co/h8PFyIzCNs very long guide to ARM chips currently or soon to be in consumer electronics +@chriseng @focalintent Darnit not the database I was hoping for +@ShadowTodd all I want to know is if he ever published this opinion before Mr. Ebert’s death? +@JackLScanlan @dannolan and time and time again we’ve seen that to dethrone a standard you must be *way* better +@JackLScanlan @dannolan traditional notation is not particularly optimal I’d imagine, but that doesn’t look any simpler +Being a crazy woods hobo is fine and good as long as you don’t steal from disabled children to enable it… http://t.co/wC8h6yxInf +Apparently someone on reddit gave away large amounts of bitcoin immediately before the crash http://t.co/GJg1KIgkCl +@hidgw it’s working! ;) +@nickm_tor well that’s oddly Wiccan. +@jeremywsherman well too bad because I’m a computer scientist who bought a book on computer science and this is *extremely* user-hostile +@jeremywsherman or… like … *words*? +@jeremywsherman it’s a book. It uses three different A’s and an ‘a’ on one page +@jeremywsherman I don’t see how that illuminates slightly different fonts for the same letter meaning different variables at all :( +@jeremywsherman well I was reading "A bla bla Cursive A bla bla bla Bold A" +Also apparently anti-Windows Chrome because it just has to be special +@DrPizza casualty of war +Check it out, anti-smartphone DRM: 𝖸𝗈𝗎 𝖺𝗋𝖾 𝗈𝗇 𝖺 𝖽𝖾𝗌𝗄𝗍𝗈𝗉 I'm patenting this +@thegrugq @WeldPond yes, but apparently it’s not good PR to say that too often. +@chriseng gods FINALLY ! (I hope you mean the database I am constantly complaining takes too long to query) +@albert_kim not C++!! Actually I recommend Lua for total beginners… +@Kurausukun you can’t possibly screw up ASCII no matter what you do or don’t do because it’s natively supported down to bios level… +@quephird it says 'monospace' in funky Unicode letters. +Mildly astonished those don't show up on iOS... get on the Unicode ball! +𝙼𝚘𝚗𝚘𝓈𝓅𝒶𝒸ℯ 😜 +If I can't read the equation aloud without annotating whether the symbol is sans, serif, or extra fancy serif, reconsider life choices +@focalintent at least programmers have discovered the concept of names with more than one letter +@wickux too upset for grammar +Why would you use the same letter in two similar fonts to mean two different things in the same equation mathematicians are horrible people +@angelXwind @yarmn so long as there are techies who remember being teens, there will be filter systems that are easily bypassed :) +@angelXwind ... T_T +@judsontwit well - there are countries where the middle class can afford one decent device but not two. So tablet/phone hybrid is attractive +@jlwfnord you sit with those people I blame for things, so I blame you +Jira has decided it's occupying a quarter of the browser window today. Okay. +@thegrugq … why did they even buy apple hardware then +@thegrugq not any more so than being an all-Microsoft shop, IMO. +@lukegb @thegrugq yes, UK, you’re important too. I’m sure you’ll have an empire again someday *pat pat* +@pokemon_ebooks I bought it at a casino. Because Pokemon have no rights +@thegrugq yes, but that’s kind of my point, bulk purchases is where it’s at with this thing. +@thegrugq how is Malaysia getting them shipped then? :) +@focalintent — and it sells like hotcakes in countries where the middle class can afford one device but not two. +@focalintent it reminds me how the Galaxy Note was “bad” because it’s like a phone or tablet but not quite either — +@judsontwit I don’t know about BB but Galaxy Note is another thing Americans called a failure that sells well abroad +I feel like those who projected the Chromebook’s failure weren’t thinking globally http://t.co/RZWUMZSAeu +@profoundlypaige they can keep it +@JastrzebskiJ I’m pretty sure that’s literally impossible. The blocks are 4KB. Something is up +@futurecat @fabpot off-handedly I’m pretty sure that will still work but at this point I play the “I’m just the C/C++ person!” card ;) +@futurecat @fabpot so we find specific technical errors but usually not errors of high-level design (“click here for free admin account”) +@futurecat @fabpot generally it’s completely automated but certain things will trip the system for manual review to double check +@futurecat @fabpot @Veracode we do actually! We can automatically find SQLi, XSS, and most other PHP vulns in the source code. +I see blurry monitors. They don't even know they're not at their native resolution +Consistently above-freezing weather! Free from the tyranny of having to remember to wash socks! +@MarkKriegsman @meangrape so for the second time in my life my “job” was to get good grades for someone else’s reputation, lol. +@MarkKriegsman @meangrape I actually went to an expensive uni for rich kids who didn’t make straight A’s in college, on scholarship… +.@meangrape @MarkKriegsman Welp I guess I’ll be one of the last lower-middle class children to have ever gotten a degree! +@micromaxi did you know your grammar gives you away as Dutch? :) +@psobot gods don’t encourage them +@mdowd well in this industry 27 is middle age so I’m pretty sure you don’t have that many years on me… :p +@mdowd well mine ran Windows 2000 so what’s more extreme than late starter :D +@pzmyers may I question if shibboleth is the best word for what you mean? +@mdowd didn’t have my own computer yet… +@hackedy the way of the new programmer is “I’ll do it the first way that comes to mind.” That’s how php happened +@hackedy @eevee it applies to everyone: a vast compendium of mistakes to not commit elsewhere. http://t.co/GHsl4VRgjz +@bobpoekert http://t.co/FYcDx8fpyF +@thegmanehack actually, I wish I had time to know… +When I was in middle school, every time I wrote < and > I drew alligator teeth and eyes on them. +@attritionorg I’m winning the dedication lottery with heap spray! +Why can I understand buffer algebra but I couldn’t pass seventh grade math like what gives +@schelljw for the VPN, get the generic Shrew VPN client and follow the configuration for a Cisco client on their wiki +@maradydd I imagine it’s a function of how old they are :) +@maradydd he’s a physicist… +@xa329 … but he put all the shampoos conditioners soaps in one row rather than willy nilly +@xa329 there better be no alcoholic cough syrup in this house. I’ll get violently ill if I accidentally take any… +Oh my gods, housemate (henceforth HM) arranged all the bottles in the bathroom, I don’t think I can handle this much structure in my life +@dan_crowley I think it just came down to: it’s like Pinterest -> but it’s not explicitly feminine -> therefore it’s masculine… +@akopa we solved many of these problems from a different angle, by starting from binary rather than source and working backwards +@dan_crowley it wasn’t (official) marketing it was just some guy’s explanation +@null_ptr Value Range Analysis: Towards Proving The Absence of Buffer Overflows in C +Yes it is my book, not a library's. It is complicated and needs doodles to demystify it. +Tonight's book vandalism is dedicated to @chriseng http://t.co/c9N8Tav3ue +@mister_borogove @m1sp obviously a weather forecasting program isn’t conscious, but I consider that a human decision making tool +@mister_borogove @m1sp the implication that some political parties are less conscious was not intentional. +@killerswan @mammothhq perhaps in the mind of whoever called it Pinterest for men - it wasn’t corporate marketing, just some guy. +@mister_borogove @m1sp I’m a fish, I’ll eat this -> I’m a squirrel, I’ll stockpile this -> I’m a human, let’s talk sustainability +@mister_borogove @m1sp I define consciousness as a gradient proportionate to the ability to make decisions without immediate results +@jpgoldberg ethics is hard :( +@m1sp @eevee … and it turns out that’s fairly common but people are terrified to admit it. +@m1sp @eevee … I may have told six thousand followers about my mechanical difficulties consummating my marriage, recently… +@eevee @m1sp I’ve found success freely intermixing personal and technical tweets, few mind and many enjoy if you’re sincere. +@m1sp @mister_borogove just run it in Dwarf Fortress +@m1sp but it means we all learn by conditioning to never look straight up because it hurts. Strange existence. +@m1sp though I find it strange to think that our eyes are incapable of directly examining something that’s in the sky *every day* +@m1sp imagine if we didn’t have long periods of darkness at regular intervals that caused us to go into suspended animation all the time +@eevee not to inflate your ego twice in one night but I practically have that thing hotkeyed to send to young programmers +@m1sp this is going to sound really sappy but you getting on twitter late in the evening is the second sunrise of my day +So I initially heard @mammothhq described as “Pinterest for men”. Because generic, neutral pinboard sites are for men? idgi +@no_structure @trailofbits I hate you +@eevee … I apologize for mis-speciesing you. Wise unevolved Pokémon +@MarkKriegsman wow that is actually quite a drop +@a_greenberg … wow. Was it at least their own name? +@C0deH4cker in the context of “film” specifically, that doesn’t matter much. Actors always do weird things to get it filmed right. +@_wirepair yeah except 640x480 secondhand recordings w/ background noise are like, a hobo’s version of a pirated film, who does that +@osxreverser I find it amusing all the… ugh, I shouldn’t do this, I don’t want to encourage you anymore. +“Google Glass is going to revolutionize film!” Do these people not know that strapping cameras to your head has *always worked* +@AndreaJessup I can’t know for *sure*, I don’t know him well. But his behavior is indistinguishable from any happy, naive 6yo. +@AndreaJessup like I said — I don’t have a problem with him smoking, I have a problem that he seems to be killing himself and might not know +@AndreaJessup the fact that there exist people who never reach mental and emotional adulthood is a sad reality of our fragile flesh. +“My philosophy is more complex than you just described!” “So is Pokémon, but you don’t need a degree in it to know it’s pretend” ht @pzmyers +.@eevee is a wise man and I won’t RT his entire commentary on making jokes at others’ expense and being surprised they’re upset. +@ErrataRob cash out, quick… +@seabre that sounds less … reasonable … +@seabre makes sense; forcing a mentally disabled person to go cold turkey and face withdrawal, in the hospital, sounds like a terrible idea +@williampietri … and children’s TV stations, who are in it to make a killing, won’t even depict cigarettes. So that’s pretty low. +@williampietri preying on the mentally incapacitated is one of the few things more wicked than preying on the ignorance of children imo… +@JastrzebskiJ like, when you see an obese child- not overweight, but *obese*- either it’s a medical condition or their parents need slapping +@JastrzebskiJ as disabled as he appears to be? Yes… because it’s someone else failing to responsible wrt him. +@puellavulnerata @PalantirTech … that’s some misleading marketing if I ever heard it. +… like, he’s an adult, he can smoke, but if he’s 8yo on the inside, isn’t the right thing to do to keep an eye on his consumption? +There’s a very mentally disabled man who lives here who smokes too much. I wonder if he understands the risk, and if not, who enables it… +Random shot of DH and his BFF http://t.co/5kPWMfzdpU +@Ryan_Jarv link to what? iMessage is or was down :p +@The1TrueSean "do you have his number" "no just his twitter" "ask if he's still coming" +@jinkee good thing I'm not a man +@raudelmil ... Yes +@vooood @allixsenos I meant bad press for the Feds that it was implied it was difficult for them. +@chriseng @focalintent @markkriegsman it's a textbook not a novel it's here for my needs +@focalintent @MarkKriegsman http://t.co/EPj1p85o4H +Why do books gotta use all these fancy unicode math symbols? Why can't everyone standardize on C notation like civilized people +@focalintent globally trending :) +@Xaosopher (and even Team Android resents being Team Android ;) +@Xaosopher if it was your primary means of contacting your best friend/girlfriend you'd be annoyed too :) it's like private twitter +And if you think that's no big deal, there's a teenage armageddon going down if you search twitter :D #limitedtextplan +iMessage is down! They're installing that interceptor the feds asked for after the bad press. +@davidjayharris pretty sure that's the right cert. Chrome doesn't have it in its store because it's a private MS cert. +@jonelf the "somehow" is by being unashamed of price. +@RSWestmoreland that's a nonsensical definition of real. +@focalintent http://t.co/SGo8XObsI8 +I may or may not have just raided the office supply cabinets and took all the pink things. +@letoams I don't think my connections to the 10.0.0.* space are bypassing the vpn, at least ;) +@focalintent ps spamming you with more tickets :p +@RenatoFontes like I said! 😄 +@focalintent so it's Stranger's Fetish Roulette? 😩 +@RenatoFontes don't call Google ugly! +(I'm technically not logged in, but all these tracking cookies amount to the same thing.) +Deleted tweet to correct to: when it thinks it knows who I am, Bing dramatically over-emphasizes result freshness. No login == good results. +@blowdart and I have a 100% success rate crashing these things by generating too many random touch events in one gesture +@blowdart all of them! Well, most of the metro apps I actually use are third party. This time it was a Google music player +@dhicynic yeah I already filed a ticket with IT and you can guess how much of priority it is since all provisioned machines are Win 7 +Oh, this Windows 8 metro app is acting funny. I could control alt delete, or just scribble on the touchscreen until it crashes. +@marczak we seem to have this instinct to propagate interesting experiences. +@focalintent look I've seen our customers' code too but that's just mean... +Why do good hardware companies usually have bad software departments? You'd think it'd be easier to find good programmers +@MalwareJake the more attention I pay to why MS does what it does, the more I see short-term hacks cause long-term pain. +@WarOnPrivacy (though they have super sloppy marketing, so no one knows the difference between Windows 8 and RT) +@WarOnPrivacy You know Windows 8 runs everything Windows 7 runs right? It just also has this gaudy other thing. +@MalwareJake in the case of the VPN client it's clearly Cisco's fault. "Disable driver signing" +@MalwareJake I'm reasonably sure it's Cisco's bug. MS has taken a harder line on not breaking their implementation for others' ease. +It just now occurs to me that *both* Cisco VPN and Cisco corporate WiFi routers do not work with Windows 8. For goodness sake! +That's why humans rock - we are compelled to share things that our brain liked. +I find it fascinating how, when a person encounters something they think is neat or clever, they feel compelled to share it - with anyone. +@djrbliss @matthew_d_green @tomrittervg huh I never knew that either. Makes more sense. +@djrbliss @matthew_d_green @tomrittervg huh I never knew that either. Makes more sense. +So @directv_sales is trying to solicit me for a purchase on twitter without prior contact. Hey geniuses that's spam +@m1sp @WhiteMageSlave http://t.co/uHRxwTPs8f +@vogon it’d be wasted on all the old folk here… +@TomRittervg @djrbliss @matthew_d_green if I had to guess: to save bytes? (I’m assuming md4 has at least a slightly simpler implementation) +The difficulty I’m having pronouncing words right now makes me sound dumb. Which shows that sounding dumb != being dumb. (Hold your snark) +@jinkee it’s actually my tooth! My toof. +Ha, the DDoS against Westboro is not being prosecuted…! But neither is the one against Bethesda :’( +@thegrugq it’s April, so surely at least some colleges are having their spring break right now. They stagger to prolong the effect. +I wonder if the lawyers of prenda even realize that @arstechnica has been covering their clown show with increasing glee. +@thegrugq not sure if in US, or judging us based on spring break tourists. +@thegrugq but… but… how did you get a picture of your camera +@i0n1c blocked from following? 😱 But how am I going to keep up with one of the keenest minds on the cutting edge of the industry… +I somehow hurt my mouth on one side. It hurts to clearly enunciate certain letters. So now I have dish affectashion… +@The_Evan @DrPizza obviously bio-evil is objectively worse than crummy games. It just lacks that feeling of kicking a puppy while it’s down! +@stevelord seriously? D: +@The_Evan @DrPizza games like the sims are massively popular with non-nerds, and there’s nothing *personally* spiteful about bio-evil. +@sakjur I don’t think Apple breaks a particular many iPads +@osxreverser I just felt like showing it to you. Hawkeye enjoys being salacious for you. +@stevelord why on earth would you do that when OSX has built in support +@_____C I don’t even remember where I got it, just some stats on teens and phones +EA keeps beating out all the other scumbags in “worst company in America” because it’s uniquely personal: here’s a toy! I broke your toy. +@osxreverser this tag is dedicated to you. http://t.co/RHcZK3dLQ5 +@DrPizza uninstalling and reinstalling did fix it for me… after it was reinstated in the store +I got the VPN working on Windows 8 using Shrew... and I can access stuff in Chrome but not IE! +You know maybe if Cisco VPNs "just worked" on Windows 8 I wouldn't have this problem. "Just disable driver signing enforcement" +Apparently I can share the VPN *or* the general internet connection but not both. +If my Mac is connected to a VPN, and my tablet is internetting over the Mac by Bluetooth, why can't the tablet reach hosts through the VPN +@flyhachi no it always does this. They changed behavior a few weeks ago and if you're a high-volume user it's unmanageable +#UIRage I just had to refresh Twitter's connect tab in the official client 23 times after not using it for one day. That's absurd. +@L0sPengu1n0s look, I know there are cities somewhere in Florida… but it’s a big place, and mostly swamp… +Point and laugh. http://t.co/w88QnMBUYu / @WeTakeYourClass +@HyShai schooling == exposure to more information and ideas (on the whole our schools are bad, but not evenly bad) +Isn’t it amazing how whether being gay is wrong depends on whether you’re in a rural state with less school funding? +@eevee probably, but that wouldn’t bother me as long as their site is legitimate +@jesster_king @hypatiadotca @todoist lots of things have free tiers that don’t come with data disrespect. I’ll complain if I want ;) +@jduck @justdionysus … ie, I doubt there will be a free and open source one worth its weight anytime soon. +@dildog Facebook and Microsoft aren’t enemies; wouldn’t be surprised if they license Skype… +@jduck @justdionysus I’m aware; just saying, these things do exist, but they’re corporate funded… +@comex I’m on an iPad keyboard fail roll today +@comex … this weekend! Do you want a copy of the first hundred-odd pages of my other project p +@jduck @justdionysus I’m on a roll cackling about internal tools. But Dionysus declined my offer to drop everything & work here! +@Furyhunter @Chispshot command and control! +@RSWestmoreland hopefully he won’t consciously remember it but yeah… +@jduck @justdionysus *cackles madly* +@hckhckhck yeah +Aaaaand my iPad now autocorrects cc to C&C +Does anyone know how similar the http://t.co/1FWc4yJFp0 Authenticators are to on-brand RSA tokens on the inside? C&C @cgiffard +@cgiffard I doubt they’d care very much; recovering the seed from hardware isn’t in their threat model, they only care for remote logins +@cgiffard Actually buy some of the world of Warcraft ones, they’re very cheap. Good starting point. +@RSWestmoreland (I think it’s reasonable to let your 4yo walk off with a family friend at a picnic… you don’t expect adults to be so stupid) +@RSWestmoreland … and there’s not really any point in dragging the kid’s parents into the spotlight if they weren’t in the room. +@cgiffard a really good question! I have no idea. My work wouldn’t be too amused if I went through a few dozen. +@RSWestmoreland 4yo not related to the sheriff. It was a picnic at someone’s house. Could be anyone’s kid I guess +@cgiffard Recovering the seed from the token would be big news. They’re designed to wipe themselves if you break the seal. +@cgiffard you start by emailing an attachment to RSA… +@rantyben I don’t always get foreign words off the internet, but when I do, I get them from hateful wicked trolls +@tenfootfangs is this a trick to get my question mark ratio even higher? +@tenfootfangs are we using the Socratic Method? +Are as many of my tweets questions as @abby_ebooks would imply? +@chriseng @abby_ebooks now the question is if whoever scours Twitter for veracode mentions will think I'm off my rocker +@torvos I'm sure that's mentioned at some point, and possibly by a cop because cops are "cool" to 7yos, but it's not a necessity. +@torvos school resource officer is a polite way of saying a cop whose beat is the local schools. Not really a fan... +@torvos ... I know we have a reputation for liking guns, but we don't teach shooting in schools... +@leethax0r one of them was a cop. That’s both reason to have a loaded weapon and reason to have way better common safety sense +You wanna own a gun? Okay sure. First question: are you responsible enough to keep a 4yo from picking up a loaded gun right in front of you +Adults pull out their big-kid bang bang toys to show off. In the same room as a small child. Someone dies. http://t.co/TTYAwEPtYb +@janl well that’s good because the concept sounds interesting but I am so not buying another Mac to serve JavaScript ;) +I’m glad the article on Shodan ( http://t.co/rYA1j07sec) doesn’t paint it as a terr’rist commie hacker thing +@nullwhale apparently you can manually browse to the gold server and use the SSL without gold. They just don’t advertise the fact. +Charging extra for SSL is like charging extra for food that meets health and safety requirements. @BoxHQ also does this I think… +@spacerog that’s more of a movie plot than something they’d ever do in this political climate don’t you think +@leastfixedpoint @zooko … this is the first time I’ve ever seen a web framework that “only runs on OSX.” Like really. +@miniBill thank you for the link, but this happened a while ago and I already laughed at them hahaha :) +@_yossi_ it’s a joke. I’m “twelve”, but I just had a birthday! +@hackerfantastic I didn’t mean to imply it’s totally okay. Just that China is not going to demand your extradition… +@hackerfantastic there are way more malware operations going on in shady countries than there is law enforcement prepared to deal with it… +@TehOhJay I’m not particularly worried about FEMA and USPS :) +Oh hello, three letter agency social media surveillance crews. I haven’t messed with any C&C servers in any country. Since I turned 18. +@TimBiden not me *personally*… +Messing with C&C servers in China is at the top of the list of fun things that are technically crimes that you’ll never get in trouble for +@selenamarie nah. DRM. It’s a real racket. +@apeiros until there was *money* in it, at which point it was taken away… +@apeiros Essentially, the principles of equality have won, but we have decades of mop-up ahead of us to clean millennia of grime! +@apeiros it is, at least, a lot better than it used to be, and getting better; as ever there are always a few who need to be dragged along +@wimremes @andreasdotorg we have really cute internal tools I wish I could show off :( +@andreasdotorg not me personally but it seems @weldpond is every time I turn around +@andreasdotorg it’s very automated. But you get a report of vulns, not the decomp itself, no one external gets those +@fearthecowboy @Future_Garrett @hypatiadotca +1 for actually registering the account first! +@andreasdotorg nah… we really do essentially have “decompiliation as a service” +@andreasdotorg @justdionysus we offer Better Dataflow Analysis Than Yours… In The Cloud +@justdionysus … or you can come work for us and use our toys +@justdionysus I used computer crayons http://t.co/l6DOzKvYIi +@justdionysus dude didn’t you see my chart? Get out some crayons and start coloring registers +@docsmooth @0xcharlie I’m just saying, the original context was teens +@0xcharlie aren’t your kids like, five years old though +@0xcharlie elite haxorz tend not to obsessively stifle their children. I hope. +@cji did your shoes just tweet at me +“70% of teens actively seek to hide their online behavior from their parents.” The other 30% are victims of forced Facebook friending +@Worthless_Bums @Tomi_Tapio you like music, he likes music, it’s meant to be :p +@Packetknife I’m just sitting over here like: I’m an American and what is this 🇺🇸 +@Viss if your huge spike lasts more than four hours, consult with your doctor +If your reaction to a foreigner getting pulled over for speeding is “he should be thankful the cops didn’t <ridiculous overreaction>”… +@alongland @i0n1c I would not wish a confrontation with American cops on anyone :( +“Artistry in every sip” I may be the kind of person who buys Starbucks, but this marketing needs to tone it down a notch +@apeiros @whitequark 'twas in fact the very man who presumes to claim he is my husband ! +@jesster_king it's still noodles and rice but like, different recipes. Tastes healthier +The Thai food stand made fun of me for changing up my usual order... so I guess you could say things are getting pretty serious +@chriseng nope! DH is screwed. +@m1sp that would be a twist ending... +@Unwitnessed I'm married to T; his best friend is G; T just called me G->Wife +Guess who just called me by his best friend's wife's name, in front of his best friend +@hypatiadotca in the car, I just now realize I suddenly departed +@unixronin she doesn’t have one lol +@maradydd I can’t stand him but I support his human right to share his writings so I wouldn’t “blame” you. +@ra6bit meta-irony is what I will be remembered for +@unixronin that’s not how twitter works… +Which is more dignified: to text my mother “stop reading my twitter” or just not answer +@blowdart good, because it was tongue-in-cheek +Two datapoints: Ida Pro and (Grace) Hopper.app. That's a trend: disassemblers are ladies. +[pdf] @malwarelu's take on APT1 analysis http://t.co/VQc8pe6pDi +@ebcube no, an alias for "google it FOR ME and insert the url FOR ME" +.@ebcube notice whether I criticize being barbaric or civilized depends totally on whichever lets me be lazier +@ebcube or I could just automate it like a civilized person! +@JastrzebskiJ yes, like so +Needed: for my browser to detect me typing, eg, !xkcd:theoneaboutstandardsproliferation and fill in the URL as appropriate +@mof18202 yup. +"An email was automatically moved to junk folder. I'm going to tell you this but not provide a button to see the specific email." #UIrage +@Sektor9 they sound *exactly the same.* +I found a gif of me on tumblr http://t.co/tyucdfByo1 +@zooko just saying, the internet isn’t as full of stupid, ignorant people as it first appears. Many participants are still in beta. +Dear newscaster: you say: “we’ve lost a great Briton” I hear: you lost an entire island and change. How did you manage that +@thegrugq I’m thirteen now! +@m1sp and it certainly does not sound unmistakably feminine to my ears! +@m1sp “Margaret” is a name that has almost vanished from America. They’re probably 11yos who have never heard the word. +Internet discussions strip most of the context of who is participating, which is both amazing and confusing. +Super awesome android boot loader hacking by @djrbliss http://t.co/Ae6IplGLPn +@rubbsdecvik I’m just saying, if you get into an argument with an 11yo and are baffled by how “stupid” they are, you’re being foolish ;) +@blowdart 13. +@ereslibre not that they’re usually eleven but that they usually COULD be eleven; they’re well-mixed and often inconspicuous. +@rubbsdecvik there’s a big difference between correcting an 11yo and treating them like a particularly ignorant 30yo. +Anytime you’re upset with someone on the internet, stop and ask yourself: could this person be eleven years old? The answer is usually yes. +Now to brace for the wave of old people angry that eleven-year-olds on the internet haven’t heard of a famous old person who passed away. +@rantyben *backs away slowly* +@JoelEsler @iseezeroday … I feel like putting this on the internet isn’t fair to this kid in the long term… +@The1TrueSean @codeferret_ ask him 8) +Artificial shadows in user interfaces are fine... as long as they don't lead to some sort of non-Euclidean nightmare #UIRage ! +This PDF reader shows a thicker shadow on the bottom edge of the page, implying each lies on a lower plane yet appears the same size #UIRage +@m1sp :D :D :D->-< +"I may be selling my soul to DnD" "As long as it's not 4.0" +Whoa, I hadn't seen New Housemate in about two years, and he... grew into his facial features I guess? +@rubbingalcohol @matthew_d_green it's been fixed I guess. A javascript injection vector. +@locks just making fun of megatokyo :) +@flyhachi THEY CALL ME... HEIR OF THE MAYFLOWER +@flyhachi then you were born about 0 miles from where my dad was born probably :p +@joshrossi because coins can be permanently lost and there's a finite amount; I'm not an economist though. +@joshrossi I think I wish I had generated some when it was really easy, but long term it will fall apart +@K_DAN_Jr thank you, trying to catch up after neglecting developing my abilities for a while... +@locks #sadgirlinthunderstorm +@ra6bit or milk and eggs gathered in a humane way +#sketch this is probably the best thing I have ever drawn... in pen, because I ran out of pencils http://t.co/fH5dDC1r2f +@elwoz sure, I guess, if you swear not to leak or that villainess shall claim your soul with a giggle. +@elwoz yup... more than half done, finally... +@Abablabab http://t.co/MKUjr1a2pn +@Raxphiel redheads or sword-wielding maniacs? +@m1sp also if you get on chat I will share some really creepy Plot with you +@m1sp I ended up incorporating it as a gag into the script. +@Tomi_Tapio I do a lot of sketches with more dynamic stuff, but I never have the patience to make them polished. http://t.co/NnULRWTa8F +I bet him and New Housemate pulled over and are having cuddles! Manly straight cuddles +He left Virginia ten hours ago and I haven’t heard a peep since… not answering his phone… I know it’s on, he can’t get anywhere without GPS! +@elwoz (she is a Dastardly Villain in my novel) +@elwoz well what kind of girl goes out without her sword +@codinghorror I have like a 30% on a link I posted last night, I suspect you have a very high ratio of dead account followers. +I can art! I can draw cute redheaded freckled girls http://t.co/oBGzCbeS0w +I can art! I can draw cute redheaded freckled girls http://t.co/oBGzCbeS0w +@m1sp I just accidentally drew some lovely feminine geographic features on young!Rashk because I drew him too pretty +@eqe their god invented refrigeration specifically so banning things due to ease of food poisoning was no longer necessary ! +@tapbot_paul noscript, I guess... +@RSWestmoreland oh, um. I find it kind of odd everyone else is casually suggesting I not wear clothes in front of a man I'm not atrracted to +What about zooplankton? They're animals... (I don't actually dislike vegans, just definition trolling) +@bmirvine everything that's ever been exposed to air can contain insect parts! +@KrakensDen honestly I don't know but all soil kind of has decomposed animal matter in it somewhere don't you think! +@homologygroup without having triggered it myself, it appears to be getting malicious javascript onto the oauth page. +Apparently figs aren't vegan to some because they tend to contain insect parts. Pretty sure at that point nothing can ever be vegan +@tapbot_paul (where "just worked" == it auto-propels you through oauth and adds the app) +@tapbot_paul I'm not sure, but one of my followers reported that, with javascript on, they went to the site and it just worked +@thequux ... you're CFG-sexual? +@TinyPirate @Tomi_Tapio I generally don't play online games that only have (clearly) male avatars; I get misgendered enough with *this* av! +Twitter has deleted the tweets known to contain the malicious link, but is the underlying vuln fixed yet? /cc @mikko +@RSWestmoreland there's a third signature line on the paperwork waiting for him +@sakjur yeah; start with 32-bit. +@Voulnet check @mikko's feed. +@snrson well, he's a straight male, so....., +The long-promised housemate is arriving today. Dangit, I have to start wearing pants in my own house like some kind of civilized person +@inversephase I’m not sure what else you could have possibly expected! +I’m going to commit a minor sin and timezone-repost my color coded disasm data flow chart because I think it’s cute http://t.co/l6DOzKvYIi +How internet fighting works ;) http://t.co/VHow16f9qd +@davidjayharris I would definitely avoid ones that are double-wrapped in shorteners so you can’t see where they really go +@NoMoreCloset @panther_modern they can add an arbitrary app to your account and start tweeting as you. +@panther_modern I RT’d some things of @mikko +@miaubiz no it’s not +@nullwhale also anyone can reimplement the exploit on a new domain +@nullwhale I’m pretty sure it didn’t start out with that. +Apparently it *is* true, there’s an exploit for sending you through Twitter’s oauth automatically, and it still works, be paranoid. +@nullwhale oh, well, obviously noscript doesn’t count. +@snare I hesitate to even ask what prompted that remark +@nullwhale implying your first tweet was mistaken? +@mirell start with 32-bit for sure and honestly at this point I don’t even remember how I got started +I just woke up. There’s an actual twitter worm? As in you click the link and it just adds the app? +@TinyPirate @Tomi_Tapio — then I saw female avatars but by that time I just had kind of a slightly icky feeling about the community +@TinyPirate @Tomi_Tapio first time I saw Day Z I decided not to play bc it appeared there was only male avatars (1/2) +@oh_rodr I assume you mean weev who I blocked something like a year ago. But you know he mails his tweets to a friend right? +@mirell it’s largely a matter of knowing how to write assembly first. Then write some C and look at the disassembly. +@sakjur at EntryPoint!…. Or is that not what you’re asking +@jesster_king lol I think you might have missed the dripping sarcasm :p +Why does this site default to birthyear 1995? Children shouldn't -- -- -- -- oh my gods +@geekable I knew what that was without even hovering the URL... +@therulerofchina (in general, KJV is an outright irresponsible translation, including politically motivated decisions) +@therulerofchina that's a translation quirk. +@edropple actually you can see their definition of India here on this map, waaaay on the edge :) http://t.co/7T5OV6NaN8 +@edropple (granted their definition of India probably does not match the modern boundary) +@edropple it is mentioned explicitly in the first sentence as the far boundary of the Persian empire. +Another little-known fact is that India is mentioned in the Bible - in the book of Esther. Geographically speaking it's pretty inclusive +It's said there are no "white" people in the Bible but that's actually not true. Aside from the Greeks and Romans, the Galatians are Celtic. +@tylerbindon I suspect it's more of a covering thing if someone gets sick after undercooking it. +This microwave chicken pie box wants me to check with a thermometer for 163 degrees throughout. Chicken pie, you're just not that special +@McGrewSecurity I enjoy scribbling on things in general but the graph doesn't have enough annotations (ie it doesn't show the format string) +@DarkestKale I'm just sick and tired of being told I should take everything with a sweet smile because no-one likes an assertive woman \ No newline at end of file diff --git a/test/keywords.rb b/test/keywords.rb new file mode 100755 index 0000000..ebb9f68 --- /dev/null +++ b/test/keywords.rb @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby +# encoding: utf-8 + +require 'twitter_ebooks' +require 'minitest/autorun' +require 'benchmark' + +module Ebooks + class TestKeywords < Minitest::Test + corpus = NLP.normalize(File.read(ARGV[0])) + puts "Finding and ranking keywords" + puts Benchmark.measure { + NLP.keywords(corpus).top(50).each do |keyword| + puts "#{keyword.text} #{keyword.weight}" + end + } + end +end diff --git a/test/tokenize.rb b/test/tokenize.rb new file mode 100755 index 0000000..a63250a --- /dev/null +++ b/test/tokenize.rb @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby +# encoding: utf-8 + +require 'twitter_ebooks' +require 'minitest/autorun' + +module Ebooks + class TestTokenize < Minitest::Test + corpus = NLP.normalize(File.read(TEST_CORPUS_PATH)) + sents = NLP.sentences(corpus).sample(10) + + NLP.sentences(corpus).sample(10).each do |sent| + p sent + p NLP.tokenize(sent) + puts + end + end +end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec new file mode 100644 index 0000000..1282770 --- /dev/null +++ b/twitter_ebooks.gemspec @@ -0,0 +1,28 @@ +# -*- encoding: utf-8 -*- +require File.expand_path('../lib/twitter_ebooks/version', __FILE__) + +Gem::Specification.new do |gem| + gem.authors = ["Jaiden Mispy"] + gem.email = ["^_^@mispy.me"] + gem.description = %q{Markov chains for all your friends~} + gem.summary = %q{Markov chains for all your friends~} + gem.homepage = "" + + gem.files = `git ls-files`.split($\) + gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } + gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) + gem.name = "twitter_ebooks" + gem.require_paths = ["lib"] + gem.version = Ebooks::VERSION + + gem.add_runtime_dependency 'minitest' + + gem.add_runtime_dependency 'twitter' + gem.add_runtime_dependency 'tweetstream' + gem.add_runtime_dependency 'rufus-scheduler' + gem.add_runtime_dependency 'gingerice' + gem.add_runtime_dependency 'htmlentities' + gem.add_runtime_dependency 'engtagger' + gem.add_runtime_dependency 'fast-stemmer' + gem.add_runtime_dependency 'highscore' +end From 00f0228dd4d58789d215bfd16686643de041921e Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Thu, 14 Nov 2013 07:44:05 -0800 Subject: [PATCH 002/168] 2.0.8 -- different generation algorithm --- .gitignore | 0 Gemfile | 0 Gemfile.lock | 6 +-- LICENSE | 0 NOTES.md | 0 README.md | 2 +- Rakefile | 0 bin/ebooks | 6 +-- data/adjectives.txt | 0 data/nouns.txt | 0 data/stopwords.txt | 0 lib/twitter_ebooks.rb | 1 + lib/twitter_ebooks/archiver.rb | 0 lib/twitter_ebooks/bot.rb | 0 lib/twitter_ebooks/markov.rb | 3 +- lib/twitter_ebooks/model.rb | 43 +++++++++++------- lib/twitter_ebooks/nlp.rb | 9 +++- lib/twitter_ebooks/suffix.rb | 82 ++++++++++++++++++++++++++++++++++ lib/twitter_ebooks/version.rb | 2 +- skeleton/.gitignore | 0 skeleton/Procfile | 0 skeleton/bots.rb | 0 test/corpus/0xabad1dea.tweets | 0 twitter_ebooks.gemspec | 0 24 files changed, 127 insertions(+), 27 deletions(-) mode change 100644 => 100755 .gitignore mode change 100644 => 100755 Gemfile mode change 100644 => 100755 Gemfile.lock mode change 100644 => 100755 LICENSE mode change 100644 => 100755 NOTES.md mode change 100644 => 100755 README.md mode change 100644 => 100755 Rakefile mode change 100644 => 100755 data/adjectives.txt mode change 100644 => 100755 data/nouns.txt mode change 100644 => 100755 data/stopwords.txt mode change 100644 => 100755 lib/twitter_ebooks.rb mode change 100644 => 100755 lib/twitter_ebooks/archiver.rb mode change 100644 => 100755 lib/twitter_ebooks/bot.rb mode change 100644 => 100755 lib/twitter_ebooks/markov.rb mode change 100644 => 100755 lib/twitter_ebooks/model.rb mode change 100644 => 100755 lib/twitter_ebooks/nlp.rb create mode 100755 lib/twitter_ebooks/suffix.rb mode change 100644 => 100755 lib/twitter_ebooks/version.rb mode change 100644 => 100755 skeleton/.gitignore mode change 100644 => 100755 skeleton/Procfile mode change 100644 => 100755 skeleton/bots.rb mode change 100644 => 100755 test/corpus/0xabad1dea.tweets mode change 100644 => 100755 twitter_ebooks.gemspec diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/Gemfile b/Gemfile old mode 100644 new mode 100755 diff --git a/Gemfile.lock b/Gemfile.lock old mode 100644 new mode 100755 index 99a4fc6..3c52f77 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,7 @@ PATH remote: . specs: - twitter_ebooks (2.0.3) - bloomfilter-rb + twitter_ebooks (2.0.7) engtagger fast-stemmer gingerice @@ -19,8 +18,6 @@ GEM addressable (2.3.5) atomic (1.1.14) awesome_print (1.2.0) - bloomfilter-rb (2.1.1) - redis cookiejar (0.3.0) daemons (1.1.9) em-http-request (1.0.3) @@ -50,7 +47,6 @@ GEM minitest (5.0.8) multi_json (1.8.2) multipart-post (1.2.0) - redis (3.0.5) rufus-scheduler (3.0.2) tzinfo simple_oauth (0.2.0) diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/NOTES.md b/NOTES.md old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 6f6485a..90f584c --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.0.7 +# twitter\_ebooks 2.0.8 Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. diff --git a/Rakefile b/Rakefile old mode 100644 new mode 100755 diff --git a/bin/ebooks b/bin/ebooks index a65d635..6b86635 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -46,9 +46,9 @@ module Ebooks def self.gen(model_path, input) model = Model.load(model_path) if input && !input.empty? - puts "@cmd " + model.markov_response(input, 135) + puts "@cmd " + model.make_response(input, 135) else - puts model.markov_statement + puts model.make_statement end end @@ -64,7 +64,7 @@ module Ebooks def self.tweet(modelpath, username) load File.join(APP_PATH, 'bots.rb') model = Model.load(modelpath) - statement = model.markov_statement + statement = model.make_statement log "@#{username}: #{statement}" bot = Bot.get(username) bot.configure diff --git a/data/adjectives.txt b/data/adjectives.txt old mode 100644 new mode 100755 diff --git a/data/nouns.txt b/data/nouns.txt old mode 100644 new mode 100755 diff --git a/data/stopwords.txt b/data/stopwords.txt old mode 100644 new mode 100755 diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb old mode 100644 new mode 100755 index e994b17..a41c4eb --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -16,5 +16,6 @@ end require 'twitter_ebooks/nlp' require 'twitter_ebooks/archiver' require 'twitter_ebooks/markov' +require 'twitter_ebooks/suffix' require 'twitter_ebooks/model' require 'twitter_ebooks/bot' diff --git a/lib/twitter_ebooks/archiver.rb b/lib/twitter_ebooks/archiver.rb old mode 100644 new mode 100755 diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb old mode 100644 new mode 100755 diff --git a/lib/twitter_ebooks/markov.rb b/lib/twitter_ebooks/markov.rb old mode 100644 new mode 100755 index 3607b62..ed66fad --- a/lib/twitter_ebooks/markov.rb +++ b/lib/twitter_ebooks/markov.rb @@ -54,9 +54,10 @@ module Ebooks def chain(tokens) if tokens.length == 1 - matches = @unigrams[tokens[0]] + matches = @unigrams[tokens[-1]] else matches = @bigrams[tokens[-2]][tokens[-1]] + matches = @unigrams[tokens[-1]] if matches.length < 2 end if matches.empty? diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb old mode 100644 new mode 100755 index 4d787b9..ef07c53 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -7,7 +7,7 @@ require 'digest/md5' module Ebooks class Model - attr_accessor :hash, :sentences, :markov, :keywords + attr_accessor :hash, :sentences, :generator, :keywords def self.consume(txtpath) Model.new.consume(txtpath) @@ -67,16 +67,29 @@ module Ebooks NLP.htmlentities.decode tweet end - def markov_statement(limit=140, markov=nil) - markov ||= MarkovModel.build(@sentences) + def valid_tweet?(tokens, limit) + tweet = NLP.reconstruct(tokens) + tweet.length <= limit && !NLP.unmatched_enclosers?(tweet) + end + + def make_statement(limit=140, generator=nil) + responding = !generator.nil? + generator = SuffixGenerator.build(@sentences) tweet = "" - while (tweet = markov.generate) do - next if tweet.length > limit - next if NLP.unmatched_enclosers?(tweet) - break if tweet.length > limit*0.4 || rand > 0.8 + while (tokens = generator.generate(3, :bigrams)) do + next if tokens.length <= 3 && !responding + break if valid_tweet?(tokens, limit) end + if @sentences.include?(tokens) && tokens.length > 3 # We made a verbatim tweet by accident + while (tokens = generator.generate(3, :unigrams)) do + break if valid_tweet?(tokens, limit) && !@sentences.include?(tokens) + end + end + + tweet = NLP.reconstruct(tokens) + fix tweet end @@ -101,19 +114,19 @@ module Ebooks end # Generates a response by looking for related sentences - # in the corpus and building a smaller markov model from these - def markov_response(input, limit=140) + # in the corpus and building a smaller generator from these + def make_response(input, limit=140) # First try relevant, slightly_relevant = relevant_sentences(input) if relevant.length >= 3 - markov = MarkovModel.new.consume(relevant) - markov_statement(limit, markov) - elsif slightly_relevant.length > 5 - markov = MarkovModel.new.consume(slightly_relevant) - markov_statement(limit, markov) + generator = SuffixGenerator.build(relevant) + make_statement(limit, generator) + elsif slightly_relevant.length >= 5 + generator = SuffixGenerator.build(slightly_relevant) + make_statement(limit, generator) else - markov_statement(limit) + make_statement(limit) end end end diff --git a/lib/twitter_ebooks/nlp.rb b/lib/twitter_ebooks/nlp.rb old mode 100644 new mode 100755 index bd8804a..b3262e7 --- a/lib/twitter_ebooks/nlp.rb +++ b/lib/twitter_ebooks/nlp.rb @@ -61,7 +61,7 @@ module Ebooks # As above, this is ad hoc because tokenization libraries # do not behave well wrt. things like emoticons and timestamps def self.tokenize(sentence) - regex = /\s+|(?<=[#{PUNCTUATION}])(?=[a-zA-Z])|(?<=[a-zA-Z])(?=[#{PUNCTUATION}]+)/ + regex = /\s+|(?<=[#{PUNCTUATION}]\s)(?=[a-zA-Z])|(?<=[a-zA-Z])(?=[#{PUNCTUATION}]+\s)/ sentence.split(regex) end @@ -150,5 +150,12 @@ module Ebooks false end + + # Determine if a2 is a subsequence of a1 + def self.subseq?(a1, a2) + a1.each_index.find do |i| + a1[i...i+a2.length] == a2 + end + end end end diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb new file mode 100755 index 0000000..6a84ac8 --- /dev/null +++ b/lib/twitter_ebooks/suffix.rb @@ -0,0 +1,82 @@ +module Ebooks + class SuffixGenerator + def self.build(sentences) + SuffixGenerator.new(sentences) + end + + def initialize(sentences) + @sentences = sentences.reject { |s| s.length < 2 } + @unigrams = {} + @bigrams = {} + + @sentences.each_with_index do |tokens, i| + last_token = INTERIM + tokens.each_with_index do |token, j| + @unigrams[last_token] ||= [] + @unigrams[last_token] << [i, j] + + @bigrams[last_token] ||= {} + @bigrams[last_token][token] ||= [] + + if j == tokens.length-1 # Mark sentence endings + @unigrams[token] ||= [] + @unigrams[token] << [i, INTERIM] + @bigrams[last_token][token] << [i, INTERIM] + else + @bigrams[last_token][token] << [i, j+1] + end + + last_token = token + end + end + + self + end + + def generate(passes=5, n=:unigrams) + index = rand(@sentences.length) + tokens = @sentences[index] + used = [index] # Sentences we've already used + verbatim = [tokens] # Verbatim sentences to avoid reproducing + + 0.upto(passes-1) do + puts NLP.reconstruct(tokens) + varsites = {} # Map bigram start site => next token alternatives + + tokens.each_with_index do |token, i| + next_token = tokens[i+1] + break if next_token.nil? + + alternatives = (n == :unigrams) ? @unigrams[next_token] : @bigrams[token][next_token] + alternatives.reject! { |a| a[1] == INTERIM || used.include?(a[0]) } + varsites[i] = alternatives unless alternatives.empty? + end + + variant = nil + varsites.to_a.shuffle.each do |site| + start = site[0] + + site[1].shuffle.each do |alt| + start, alt = site[0], site[1].sample + verbatim << @sentences[alt[0]] + suffix = @sentences[alt[0]][alt[1]..-1] + potential = tokens[0..start+1] + suffix + + unless verbatim.find { |v| NLP.subseq?(v, potential) || NLP.subseq?(potential, v) } + used << alt[0] + variant = potential + break + end + end + + break if variant + end + + tokens = variant if variant + end + + + tokens + end + end +end diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb old mode 100644 new mode 100755 index c39a21d..0f2d7b7 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.0.7" + VERSION = "2.0.8" end diff --git a/skeleton/.gitignore b/skeleton/.gitignore old mode 100644 new mode 100755 diff --git a/skeleton/Procfile b/skeleton/Procfile old mode 100644 new mode 100755 diff --git a/skeleton/bots.rb b/skeleton/bots.rb old mode 100644 new mode 100755 diff --git a/test/corpus/0xabad1dea.tweets b/test/corpus/0xabad1dea.tweets old mode 100644 new mode 100755 diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec old mode 100644 new mode 100755 From e4209f79e4386343d68316b1f0f05ec697d480ee Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Thu, 14 Nov 2013 08:30:45 -0800 Subject: [PATCH 003/168] Cleaning --- lib/twitter_ebooks/suffix.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb index 6a84ac8..df89e0d 100755 --- a/lib/twitter_ebooks/suffix.rb +++ b/lib/twitter_ebooks/suffix.rb @@ -1,4 +1,8 @@ module Ebooks + # This generator uses data identical to the markov model, but + # instead of making a chain by looking up bigrams it uses the + # positions to randomly replace suffixes in one sentence with + # matching suffixes in another class SuffixGenerator def self.build(sentences) SuffixGenerator.new(sentences) @@ -48,6 +52,7 @@ module Ebooks break if next_token.nil? alternatives = (n == :unigrams) ? @unigrams[next_token] : @bigrams[token][next_token] + # Filter out suffixes from previous sentences alternatives.reject! { |a| a[1] == INTERIM || used.include?(a[0]) } varsites[i] = alternatives unless alternatives.empty? end @@ -62,6 +67,7 @@ module Ebooks suffix = @sentences[alt[0]][alt[1]..-1] potential = tokens[0..start+1] + suffix + # Ensure we're not just rebuilding some segment of another sentence unless verbatim.find { |v| NLP.subseq?(v, potential) || NLP.subseq?(potential, v) } used << alt[0] variant = potential @@ -75,7 +81,6 @@ module Ebooks tokens = variant if variant end - tokens end end From 95e96ceef9332816422996b8f7116200829a6a76 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Thu, 14 Nov 2013 10:19:08 -0800 Subject: [PATCH 004/168] 2.0.9 - Whups, broke context --- README.md | 2 +- lib/twitter_ebooks/model.rb | 2 +- lib/twitter_ebooks/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 90f584c..310867e 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.0.8 +# twitter\_ebooks 2.0.9 Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index ef07c53..65f41a3 100755 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -74,7 +74,7 @@ module Ebooks def make_statement(limit=140, generator=nil) responding = !generator.nil? - generator = SuffixGenerator.build(@sentences) + generator ||= SuffixGenerator.build(@sentences) tweet = "" while (tokens = generator.generate(3, :bigrams)) do diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 0f2d7b7..0bf3701 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.0.8" + VERSION = "2.0.9" end From c1d91d16939a56de50202b2a3e23c884bfbe1d94 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Sat, 16 Nov 2013 07:02:05 -0800 Subject: [PATCH 005/168] 2.1.0 - Fix skeleton init --- README.md | 2 +- bin/ebooks | 16 ++++++++-------- lib/twitter_ebooks/version.rb | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 310867e..a11d0af 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.0.9 +# twitter\_ebooks 2.1.0 Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. diff --git a/bin/ebooks b/bin/ebooks index 6b86635..e6f845e 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -5,29 +5,29 @@ require 'twitter_ebooks' module Ebooks APP_PATH = Dir.pwd # XXX do some recursive thing instead - def self.new(target) + def self.new(reponame) usage = "Usage: ebooks new " - if target.nil? + if reponame.nil? log usage exit end - target = "./#{reponame}" + reponame = "./#{reponame}" - if File.exists?(target) - log "#{target} already exists. Please remove if you want to recreate." + if File.exists?(reponame) + log "#{reponame} already exists. Please remove if you want to recreate." exit end - FileUtils.cp_r(SKELETON_PATH, target) + FileUtils.cp_r(SKELETON_PATH, reponame) - File.open(File.join(target, 'bots.rb'), 'w') do |f| + File.open(File.join(reponame, 'bots.rb'), 'w') do |f| template = File.read(File.join(SKELETON_PATH, 'bots.rb')) f.write(template.gsub("{{BOT_NAME}}", reponame)) end - log "New twitter_ebooks app created at #{target}" + log "New twitter_ebooks app created at #{reponame}" end def self.consume(pathes) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 0bf3701..21b64db 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.0.9" + VERSION = "2.1.0" end From 61c5caee4dc05078d5d47b19e61b30c104d673c7 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Mon, 18 Nov 2013 02:59:15 -0800 Subject: [PATCH 006/168] Retry limit and mention separation --- Gemfile.lock | 2 +- bin/ebooks | 2 + lib/twitter_ebooks.rb | 2 + lib/twitter_ebooks/model.rb | 78 +++++++++++++++++++++++++++--------- lib/twitter_ebooks/suffix.rb | 2 +- 5 files changed, 65 insertions(+), 21 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 3c52f77..a041c94 100755 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - twitter_ebooks (2.0.7) + twitter_ebooks (2.1.0) engtagger fast-stemmer gingerice diff --git a/bin/ebooks b/bin/ebooks index e6f845e..3baee71 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -2,6 +2,8 @@ require 'twitter_ebooks' +$debug = true + module Ebooks APP_PATH = Dir.pwd # XXX do some recursive thing instead diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb index a41c4eb..7a47976 100755 --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -1,5 +1,7 @@ gem 'minitest' +$debug = false + def log(*args) STDERR.puts args.map(&:to_s).join(' ') STDERR.flush diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 65f41a3..0742197 100755 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -7,7 +7,7 @@ require 'digest/md5' module Ebooks class Model - attr_accessor :hash, :sentences, :generator, :keywords + attr_accessor :hash, :sentences, :mentions, :keywords def self.consume(txtpath) Model.new.consume(txtpath) @@ -22,23 +22,44 @@ module Ebooks @hash = Digest::MD5.hexdigest(File.read(txtpath)) text = File.read(txtpath) - log "Removing commented lines and mention tokens" + log "Removing commented lines and sorting mentions" lines = text.split("\n") keeping = [] + mentions = [] lines.each do |l| - next if l.start_with?('#') || l.include?('RT') - processed = l.split.reject { |w| w.include?('@') || w.include?('http') } - keeping << processed.join(' ') + next if l.start_with?('#') # Remove commented lines + next if l.include?('RT') || l.include?('MT') # Remove soft retweets + + if l.include?('@') + mentions << l + else + keeping << l + end end - text = NLP.normalize(keeping.join("\n")) + text = NLP.normalize(keeping.join("\n")) # Normalize weird characters + mention_text = NLP.normalize(mentions.join("\n")) log "Segmenting text into sentences" - sentences = NLP.sentences(text) + statements = NLP.sentences(text) + mentions = NLP.sentences(mention_text) - log "Tokenizing #{sentences.length} sentences" - @sentences = sentences.map { |sent| NLP.tokenize(sent) } + log "Tokenizing #{statements.length} statements and #{mentions.length} mentions" + @sentences = [] + @mentions = [] + + statements.each do |s| + @sentences << NLP.tokenize(s).reject do |t| + t.start_with?('@') || t.start_with?('http') + end + end + + mentions.each do |s| + @mentions << NLP.tokenize(s).reject do |t| + t.start_with?('@') || t.start_with?('http') + end + end log "Ranking keywords" @keywords = NLP.keywords(@sentences) @@ -72,38 +93,55 @@ module Ebooks tweet.length <= limit && !NLP.unmatched_enclosers?(tweet) end - def make_statement(limit=140, generator=nil) + def make_statement(limit=140, generator=nil, retry_limit=10) responding = !generator.nil? generator ||= SuffixGenerator.build(@sentences) + + retries = 0 tweet = "" while (tokens = generator.generate(3, :bigrams)) do next if tokens.length <= 3 && !responding break if valid_tweet?(tokens, limit) + + retries += 1 + break if retries >= retry_limit end - if @sentences.include?(tokens) && tokens.length > 3 # We made a verbatim tweet by accident + if verbatim?(tokens) && tokens.length > 3 # We made a verbatim tweet by accident while (tokens = generator.generate(3, :unigrams)) do - break if valid_tweet?(tokens, limit) && !@sentences.include?(tokens) + break if valid_tweet?(tokens, limit) && !verbatim?(tokens) + + retries += 1 + break if retries >= retry_limit end end tweet = NLP.reconstruct(tokens) + if retries >= retry_limit + log "Unable to produce valid non-verbatim tweet; using \"#{tweet}\"" + end + fix tweet end + # Test if a sentence has been copied verbatim from original + def verbatim?(tokens) + @sentences.include?(tokens) || @mentions.include?(tokens) + end + # Finds all relevant tokenized sentences to given input by # comparing non-stopword token overlaps - def relevant_sentences(input) + def find_relevant(sentences, input) relevant = [] slightly_relevant = [] - tokenized = NLP.tokenize(input) + tokenized = NLP.tokenize(input).map(&:downcase) - @sentences.each do |sent| + sentences.each do |sent| tokenized.each do |token| - if sent.include?(token) + if sent.map(&:downcase).include?(token) relevant << sent unless NLP.stopword?(token) slightly_relevant << sent end @@ -115,9 +153,9 @@ module Ebooks # Generates a response by looking for related sentences # in the corpus and building a smaller generator from these - def make_response(input, limit=140) - # First try - relevant, slightly_relevant = relevant_sentences(input) + def make_response(input, limit=140, sentences=@mentions) + # Prefer mentions + relevant, slightly_relevant = find_relevant(sentences, input) if relevant.length >= 3 generator = SuffixGenerator.build(relevant) @@ -125,6 +163,8 @@ module Ebooks elsif slightly_relevant.length >= 5 generator = SuffixGenerator.build(slightly_relevant) make_statement(limit, generator) + elsif sentences.equal?(@mentions) + make_response(input, limit, @sentences) else make_statement(limit) end diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb index df89e0d..9a4bd04 100755 --- a/lib/twitter_ebooks/suffix.rb +++ b/lib/twitter_ebooks/suffix.rb @@ -44,7 +44,7 @@ module Ebooks verbatim = [tokens] # Verbatim sentences to avoid reproducing 0.upto(passes-1) do - puts NLP.reconstruct(tokens) + log NLP.reconstruct(tokens) if $debug varsites = {} # Map bigram start site => next token alternatives tokens.each_with_index do |token, i| From 8f5bb52977497fa67e297bcd35b75f883085701f Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 20 Nov 2013 16:11:43 -0800 Subject: [PATCH 007/168] 2.1.1 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a11d0af..088e860 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.0 +# twitter\_ebooks 2.1.1 Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 21b64db..1cb9366 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.0" + VERSION = "2.1.1" end From c3053e5091933441834ff238ce4feb1520a68bb0 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 20 Nov 2013 16:33:07 -0800 Subject: [PATCH 008/168] 2.1.2 - twitter gem version conflicts --- Gemfile.lock | 4 ++-- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- twitter_ebooks.gemspec | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index a041c94..bbdef20 100755 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - twitter_ebooks (2.1.0) + twitter_ebooks (2.1.1) engtagger fast-stemmer gingerice @@ -10,7 +10,7 @@ PATH minitest rufus-scheduler tweetstream - twitter + twitter (~> 4.5) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 088e860..ce702f8 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.1 +# twitter\_ebooks 2.1.2 Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 1cb9366..d2973b8 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.1" + VERSION = "2.1.2" end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 1282770..678b8b9 100755 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -17,8 +17,8 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency 'minitest' - gem.add_runtime_dependency 'twitter' - gem.add_runtime_dependency 'tweetstream' + gem.add_runtime_dependency 'twitter', '~> 4.5' + gem.add_runtime_dependency 'tweetstream', '= 2.5' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' gem.add_runtime_dependency 'htmlentities' From acc2f42b381c72fd7e289cf0a30204a7b579aa7e Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Sun, 24 Nov 2013 13:16:34 -0800 Subject: [PATCH 009/168] 2.1.3 - better archiver --- NOTES.md | 4 -- README.md | 2 +- bin/ebooks | 29 ++++++++++- lib/twitter_ebooks.rb | 2 +- lib/twitter_ebooks/archive.rb | 93 ++++++++++++++++++++++++++++++++++ lib/twitter_ebooks/archiver.rb | 82 ------------------------------ lib/twitter_ebooks/version.rb | 2 +- 7 files changed, 124 insertions(+), 90 deletions(-) delete mode 100755 NOTES.md create mode 100644 lib/twitter_ebooks/archive.rb delete mode 100755 lib/twitter_ebooks/archiver.rb diff --git a/NOTES.md b/NOTES.md deleted file mode 100755 index d6a50b3..0000000 --- a/NOTES.md +++ /dev/null @@ -1,4 +0,0 @@ -- Files in text/ are preprocessed by `rake consume` and serialized -- e.g. text/foo.tweets becomes consumed/foo.corpus -- `rake consume` looks at hashes to know which it needs to update -- Preprocessed corpus files are loaded at runtime by Corpus.load('foo') diff --git a/README.md b/README.md index ce702f8..5d79ea5 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.2 +# twitter\_ebooks 2.1.3 Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. diff --git a/bin/ebooks b/bin/ebooks index 3baee71..25b2237 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -60,7 +60,7 @@ module Ebooks end def self.archive(username, outpath) - Archiver.new(username, outpath).fetch_tweets + Archive.new(username, outpath).sync end def self.tweet(modelpath, username) @@ -73,6 +73,31 @@ module Ebooks bot.tweet(statement) end + def self.jsonify(old_path, new_path) + name = File.basename(old_path).split('.')[0] + new_path ||= name + ".json" + + tweets = [] + id = nil + File.read(old_path).split("\n").each do |l| + if l.start_with?('# ') + id = l.split('# ')[-1] + else + tweet = { text: l } + if id + tweet[:id] = id + id = nil + end + tweets << tweet + end + end + + File.open(new_path, 'w') do |f| + log "Writing #{tweets.length} tweets to #{new_path}" + f.write(JSON.pretty_generate(tweets)) + end + end + def self.command(args) usage = """Usage: ebooks new @@ -81,6 +106,7 @@ module Ebooks ebooks score ebooks archive <@user> ebooks tweet <@bot> + ebooks jsonify [new_corpus_path] """ if args.length == 0 @@ -95,6 +121,7 @@ module Ebooks when "score" then score(args[1], args[2..-1].join(' ')) when "archive" then archive(args[1], args[2]) when "tweet" then tweet(args[1], args[2]) + when "jsonify" then jsonify(args[1], args[2]) end end end diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb index 7a47976..7334bac 100755 --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -16,7 +16,7 @@ module Ebooks end require 'twitter_ebooks/nlp' -require 'twitter_ebooks/archiver' +require 'twitter_ebooks/archive' require 'twitter_ebooks/markov' require 'twitter_ebooks/suffix' require 'twitter_ebooks/model' diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb new file mode 100644 index 0000000..178be85 --- /dev/null +++ b/lib/twitter_ebooks/archive.rb @@ -0,0 +1,93 @@ +#!/usr/bin/env ruby +# encoding: utf-8 + +require 'twitter' +require 'json' + +CONFIG_PATH = "/home/#{ENV['USER']}/.ebooksrc" + +module Ebooks + class Archive + attr_reader :tweets + + def make_client + if File.exists?(CONFIG_PATH) + @config = JSON.parse(File.read(CONFIG_PATH), symbolize_names: true) + else + @config = {} + + puts "As Twitter no longer allows anonymous API access, you'll need to enter the auth details of any account to use for archiving. These will be stored in #{CONFIG_PATH} if you need to change them later." + print "Consumer key: " + @config[:consumer_key] = STDIN.gets.chomp + print "Consumer secret: " + @config[:consumer_secret] = STDIN.gets.chomp + print "Oauth token: " + @config[:oauth_token] = STDIN.gets.chomp + print "Oauth secret: " + @config[:oauth_token_secret] = STDIN.gets.chomp + + File.open(CONFIG_PATH, 'w') do |f| + f.write(JSON.pretty_generate(@config)) + end + end + + Twitter.configure do |config| + config.consumer_key = @config[:consumer_key] + config.consumer_secret = @config[:consumer_secret] + config.oauth_token = @config[:oauth_token] + config.oauth_token_secret = @config[:oauth_token_secret] + end + + Twitter::Client.new + end + + def initialize(username, path, client=nil) + @username = username + @path = path || "#{username}.json" + @client = client || make_client + + if File.exists?(@path) + @tweets = JSON.parse(File.read(@path), symbolize_names: true) + log "Currently #{@tweets.length} tweets for #{@username}" + else + @tweets.nil? + log "New archive for @#{username} at #{@path}" + end + end + + def sync + retries = 0 + tweets = [] + max_id = nil + + opts = { + count: 200, + #include_rts: false, + trim_user: true + } + + opts[:since_id] = @tweets[0][:id] unless @tweets.nil? + + loop do + opts[:max_id] = max_id unless max_id.nil? + new = @client.user_timeline(@username, opts) + break if new.length <= 1 + tweets += new + puts "Received #{tweets.length} new tweets" + max_id = new.last.id + end + + if tweets.length == 0 + log "No new tweets" + else + @tweets ||= [] + @tweets = tweets.map(&:attrs).each { |tw| + tw.delete(:entities) + } + @tweets + File.open(@path, 'w') do |f| + f.write(JSON.pretty_generate(@tweets)) + end + end + end + end +end diff --git a/lib/twitter_ebooks/archiver.rb b/lib/twitter_ebooks/archiver.rb deleted file mode 100755 index 93387fc..0000000 --- a/lib/twitter_ebooks/archiver.rb +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/env ruby -# encoding: utf-8 - -require 'twitter' - -module Ebooks - class Archiver - def initialize(username, outpath) - @username = username - @outpath = outpath - @client = Twitter::Client.new - end - - # Read exiting corpus into memory. - # Return list of tweet lines and the last tweet id. - def read_corpus - lines = [] - since_id = nil - - if File.exists?(@outpath) - lines = File.read(@outpath).split("\n") - if lines[0].start_with?('#') - since_id = lines[0].split('# ').last - end - end - - [lines, since_id] - end - - # Retrieve all available tweets for a given user since the last tweet id - def tweets_since(since_id) - page = 1 - retries = 0 - tweets = [] - max_id = nil - - opts = { - count: 200, - include_rts: false, - trim_user: true - } - - opts[:since_id] = since_id unless since_id.nil? - - loop do - opts[:max_id] = max_id unless max_id.nil? - new = @client.user_timeline(@username, opts) - break if new.length <= 1 - puts "Received #{new.length} tweets" - tweets += new - max_id = new.last.id - break - end - - tweets - end - - def fetch_tweets - lines, since_id = read_corpus - - if since_id.nil? - puts "Retrieving tweets from @#{@username}" - else - puts "Retrieving tweets from @#{@username} since #{since_id}" - end - - tweets = tweets_since(since_id) - - if tweets.length == 0 - puts "No new tweets" - return - end - - new_lines = tweets.map { |tweet| tweet.text.gsub("\n", " ") } - new_since_id = tweets[0].id.to_s - lines = ["# " + new_since_id] + new_lines + lines - corpus = File.open(@outpath, 'w') - corpus.write(lines.join("\n")) - corpus.close - end - end -end diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index d2973b8..9668313 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.2" + VERSION = "2.1.3" end From 306c9ab8738a5ae2013ffb9a6664ab03f88e1691 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 05:12:54 -0800 Subject: [PATCH 010/168] Allow consumption of json archives --- bin/ebooks | 42 +++++++++++++++++++------------------ lib/twitter_ebooks/model.rb | 18 +++++++++++----- 2 files changed, 35 insertions(+), 25 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index 25b2237..81896d8 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -73,28 +73,30 @@ module Ebooks bot.tweet(statement) end - def self.jsonify(old_path, new_path) - name = File.basename(old_path).split('.')[0] - new_path ||= name + ".json" + def self.jsonify(paths) + paths.each do |path| + name = File.basename(path).split('.')[0] + new_path = name + ".json" - tweets = [] - id = nil - File.read(old_path).split("\n").each do |l| - if l.start_with?('# ') - id = l.split('# ')[-1] - else - tweet = { text: l } - if id - tweet[:id] = id - id = nil + tweets = [] + id = nil + File.read(path).split("\n").each do |l| + if l.start_with?('# ') + id = l.split('# ')[-1] + else + tweet = { text: l } + if id + tweet[:id] = id + id = nil + end + tweets << tweet end - tweets << tweet end - end - File.open(new_path, 'w') do |f| - log "Writing #{tweets.length} tweets to #{new_path}" - f.write(JSON.pretty_generate(tweets)) + File.open(new_path, 'w') do |f| + log "Writing #{tweets.length} tweets to #{new_path}" + f.write(JSON.pretty_generate(tweets)) + end end end @@ -106,7 +108,7 @@ module Ebooks ebooks score ebooks archive <@user> ebooks tweet <@bot> - ebooks jsonify [new_corpus_path] + ebooks jsonify [...] """ if args.length == 0 @@ -121,7 +123,7 @@ module Ebooks when "score" then score(args[1], args[2..-1].join(' ')) when "archive" then archive(args[1], args[2]) when "tweet" then tweet(args[1], args[2]) - when "jsonify" then jsonify(args[1], args[2]) + when "jsonify" then jsonify(args[1..-1]) end end end diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 0742197..581682e 100755 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -17,14 +17,22 @@ module Ebooks Marshal.load(File.read(path)) end - def consume(txtpath) - # Record hash of source file so we know to update later - @hash = Digest::MD5.hexdigest(File.read(txtpath)) + def consume(path) + content = File.read(path) + @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] + end + else + log "Reading plaintext corpus from #{path}" + lines = content.split("\n") + end - text = File.read(txtpath) log "Removing commented lines and sorting mentions" - lines = text.split("\n") keeping = [] mentions = [] lines.each do |l| From 5c6004f6946e83bf9f149ccee4262ed297a140ad Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 06:54:53 -0800 Subject: [PATCH 011/168] Add Gemfile, empty corpus/model to skeleton --- skeleton/Gemfile | 4 +++ skeleton/Gemfile.lock | 70 ++++++++++++++++++++++++++++++++++++++ skeleton/corpus/.gitignore | 0 skeleton/model/.gitignore | 0 4 files changed, 74 insertions(+) create mode 100644 skeleton/Gemfile create mode 100644 skeleton/Gemfile.lock create mode 100644 skeleton/corpus/.gitignore create mode 100644 skeleton/model/.gitignore diff --git a/skeleton/Gemfile b/skeleton/Gemfile new file mode 100644 index 0000000..6059e80 --- /dev/null +++ b/skeleton/Gemfile @@ -0,0 +1,4 @@ +source 'http://rubygems.org' +ruby '1.9.3' + +gem 'twitter_ebooks' diff --git a/skeleton/Gemfile.lock b/skeleton/Gemfile.lock new file mode 100644 index 0000000..db0a67b --- /dev/null +++ b/skeleton/Gemfile.lock @@ -0,0 +1,70 @@ +GEM + remote: http://rubygems.org/ + specs: + addressable (2.3.5) + atomic (1.1.14) + awesome_print (1.2.0) + cookiejar (0.3.0) + daemons (1.1.9) + em-http-request (1.0.3) + addressable (>= 2.2.3) + cookiejar + em-socksify + eventmachine (>= 1.0.0.beta.4) + http_parser.rb (>= 0.5.3) + em-socksify (0.3.0) + eventmachine (>= 1.0.0.beta.4) + em-twitter (0.2.2) + eventmachine (~> 1.0) + http_parser.rb (~> 0.5) + simple_oauth (~> 0.1) + engtagger (0.1.2) + eventmachine (1.0.3) + faraday (0.8.8) + multipart-post (~> 1.2.0) + fast-stemmer (1.0.2) + gingerice (1.2.1) + addressable + awesome_print + highscore (1.1.0) + whatlanguage (>= 1.0.0) + htmlentities (4.3.1) + http_parser.rb (0.5.3) + minitest (5.0.8) + multi_json (1.8.2) + multipart-post (1.2.0) + rufus-scheduler (3.0.2) + tzinfo + simple_oauth (0.2.0) + thread_safe (0.1.3) + atomic + tweetstream (2.5.0) + daemons (~> 1.1) + em-http-request (~> 1.0.2) + em-twitter (~> 0.2) + twitter (~> 4.5) + yajl-ruby (~> 1.1) + twitter (4.8.1) + faraday (~> 0.8, < 0.10) + multi_json (~> 1.0) + simple_oauth (~> 0.2) + twitter_ebooks (2.1.2) + engtagger + fast-stemmer + gingerice + highscore + htmlentities + minitest + rufus-scheduler + tweetstream (= 2.5) + twitter (~> 4.5) + tzinfo (1.1.0) + thread_safe (~> 0.1) + whatlanguage (1.0.5) + yajl-ruby (1.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + twitter_ebooks diff --git a/skeleton/corpus/.gitignore b/skeleton/corpus/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/skeleton/model/.gitignore b/skeleton/model/.gitignore new file mode 100644 index 0000000..e69de29 From e8a822668f36eca53edf7ef5d2d5bd28a588be24 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 06:55:14 -0800 Subject: [PATCH 012/168] Lengthy README --- README.md | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++- bin/ebooks | 3 +- 2 files changed, 101 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5d79ea5..320e7e1 100755 --- a/README.md +++ b/README.md @@ -1,9 +1,108 @@ # twitter\_ebooks 2.1.3 -Complete rewrite of twitter\_ebooks. Allows context-sensitive responsive bots via the Twitter streaming API, along with higher-quality ngram modeling. Still needs a bit of cleaning and documenting. +Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. ## Installation ```bash gem install twitter_ebooks ``` + +## Setting up a bot + +Run `ebooks new [name]` to generate a new repository containing a sample bots.rb file, which looks like this: + +``` ruby +# This is an example bot definition with event handlers commented out +# You can define as many of these as you like; they will run simultaneously + +Ebooks::Bot.new("./test") do |bot| + # Consumer details come from registering an app at https://dev.twitter.com/ + # OAuth details can be fetched with https://github.com/marcel/twurl + bot.consumer_key = "" # Your app consumer key + bot.consumer_secret = "" # Your app consumer secret + bot.oauth_token = "" # Token connecting the app to this account + bot.oauth_token_secret = "" # Secret connecting the app to this account + + bot.on_message do |dm| + # Reply to a DM + # bot.reply(dm, "secret secrets") + end + + bot.on_follow do |user| + # Follow a user back + # bot.follow(user[:screen_name]) + end + + bot.on_mention do |tweet, meta| + # Reply to a mention + # bot.reply(tweet, meta[:reply_prefix] + "oh hullo") + end + + bot.on_timeline do |tweet, meta| + # Reply to a tweet in the bot's timeline + # bot.reply(tweet, meta[:reply_prefix] + "nice tweet") + end + + bot.scheduler.every '24h' do + # Tweet something every 24 hours + # See https://github.com/jmettraux/rufus-scheduler + # bot.tweet("hi") + end +end +``` + +Bots defined like this can be spawned by executing `run.rb` in the same directory, and will operate together in a single eventmachine loop. The easiest way to run bots in a semi-permanent fashion is with [Heroku](https://www.heroku.com); just make an app, push the bot repository to it, enable a worker process in the web interface and it ought to chug along merrily forever. + +## Archiving accounts + +twitter\_ebooks comes with a syncing tool to download and then incrementally update a local json archive of a user's tweets. + +``` zsh +➜ ebooks-ebooks git:(master) ebooks archive 0xabad1dea corpus/0xabad1dea.json +Currently 20209 tweets for 0xabad1dea +Received 67 new tweets +``` + +The first time you'll run this, it'll ask for auth details to connect with. Due to API limitations, for users with high numbers of tweets it may not be possible to get their entire history in the initial download. However, so long as you run it frequently enough you can maintain a perfect copy indefinitely into the future. + +## Text models + +In order to use the included text modeling, you'll first need to preprocess your archive into a more efficient form: + +``` zsh +➜ ebooks-ebooks git:(master) ebooks consume corpus/0xabad1dea.json +Reading json corpus from corpus/0xabad1dea.json +Removing commented lines and sorting mentions +Segmenting text into sentences +Tokenizing 7075 statements and 17947 mentions +Ranking keywords +Corpus consumed to model/0xabad1dea.model +``` + +Notably, this works with both json tweet archives and plaintext files (based on file extension), so you can make a model out of any kind of text. + +Once you have a model, the primary use is to produce statements and related responses to input, using a pseudo-Markov generator: + +``` ruby +> model = Ebooks::Model.load("model/0xabad1dea.model") +> model.make_statement(140) +=> "My Terrible Netbook may be the kind of person who buys Starbucks, but this Rackspace vuln is pretty straight up a backdoor" +> model.make_response("The NSA is coming!", 130) +=> "Hey - someone who claims to be an NSA conspiracy" +``` + +The secondary function is the "interesting keywords" list. For example, I use this to determine whether a bot wants to fav/retweet/reply to something in its timeline: + +``` ruby +top100 = model.keywords.top(100) +tokens = Ebooks::NLP.tokenize(tweet[:text]) + +if tokens.find { |t| top100.include?(t) } + bot.twitter.favorite(tweet[:id]) +end +``` + +## Other notes + +If you're using Heroku, which has no persistent filesystem, automating the process of archiving, consuming and updating can be tricky. My current solution is just a daily cron job which commits and pushes for me, which is pretty hacky. diff --git a/bin/ebooks b/bin/ebooks index 81896d8..8f7b7da 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -38,10 +38,9 @@ module Ebooks shortname = filename.split('.')[0..-2].join('.') hash = Digest::MD5.hexdigest(File.read(path)) - log "Consuming text corpus: #{filename}" outpath = File.join(APP_PATH, 'model', "#{shortname}.model") Model.consume(path).save(outpath) - log "Corpus consumed" + log "Corpus consumed to #{outpath}" end end From 72073c429eca0a7a555c4bb8907c2a8c89e566cf Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 07:02:05 -0800 Subject: [PATCH 013/168] 2.1.4 --- README.md | 4 ++-- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 320e7e1..5002e62 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.3 +# twitter\_ebooks 2.1.4 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. @@ -10,7 +10,7 @@ gem install twitter_ebooks ## Setting up a bot -Run `ebooks new [name]` to generate a new repository containing a sample bots.rb file, which looks like this: +Run `ebooks new ` to generate a new repository containing a sample bots.rb file, which looks like this: ``` ruby # This is an example bot definition with event handlers commented out diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 9668313..d3f056d 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.3" + VERSION = "2.1.4" end From bc910073df690e6ad4de2f0bfba48e7f1618fc11 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 07:05:27 -0800 Subject: [PATCH 014/168] Use reponame instead of path in bots.rb --- README.md | 2 +- bin/ebooks | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5002e62..be7a2ce 100755 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Run `ebooks new ` to generate a new repository containing a sample bot # This is an example bot definition with event handlers commented out # You can define as many of these as you like; they will run simultaneously -Ebooks::Bot.new("./test") do |bot| +Ebooks::Bot.new("abby_ebooks") do |bot| # Consumer details come from registering an app at https://dev.twitter.com/ # OAuth details can be fetched with https://github.com/marcel/twurl bot.consumer_key = "" # Your app consumer key diff --git a/bin/ebooks b/bin/ebooks index 8f7b7da..e3e726a 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -15,16 +15,16 @@ module Ebooks exit end - reponame = "./#{reponame}" + path = "./#{reponame}" - if File.exists?(reponame) - log "#{reponame} already exists. Please remove if you want to recreate." + if File.exists?(path) + log "#{path} already exists. Please remove if you want to recreate." exit end - FileUtils.cp_r(SKELETON_PATH, reponame) + FileUtils.cp_r(SKELETON_PATH, path) - File.open(File.join(reponame, 'bots.rb'), 'w') do |f| + File.open(File.join(path, 'bots.rb'), 'w') do |f| template = File.read(File.join(SKELETON_PATH, 'bots.rb')) f.write(template.gsub("{{BOT_NAME}}", reponame)) end From e30ffaf6301d3668731f9bb72678ee271fbf18ac Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 07:07:09 -0800 Subject: [PATCH 015/168] 2.1.5 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be7a2ce..fe4fc2a 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.4 +# twitter\_ebooks 2.1.5 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index d3f056d..c2021c2 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.4" + VERSION = "2.1.5" end From f6b5ee439092ab11ed011faf07eca510a32ce8b7 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 27 Nov 2013 07:30:37 -0800 Subject: [PATCH 016/168] Add note about getting at underlying clients --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe4fc2a..7b84bcd 100755 --- a/README.md +++ b/README.md @@ -54,12 +54,14 @@ end Bots defined like this can be spawned by executing `run.rb` in the same directory, and will operate together in a single eventmachine loop. The easiest way to run bots in a semi-permanent fashion is with [Heroku](https://www.heroku.com); just make an app, push the bot repository to it, enable a worker process in the web interface and it ought to chug along merrily forever. +The underlying [tweetstream](https://github.com/tweetstream/tweetstream) and [twitter gem](https://github.com/sferik/twitter) client objects can be accessed at `bot.stream` and `bot.twitter` respectively. + ## Archiving accounts twitter\_ebooks comes with a syncing tool to download and then incrementally update a local json archive of a user's tweets. ``` zsh -➜ ebooks-ebooks git:(master) ebooks archive 0xabad1dea corpus/0xabad1dea.json +➜ ebooks archive 0xabad1dea corpus/0xabad1dea.json Currently 20209 tweets for 0xabad1dea Received 67 new tweets ``` @@ -71,7 +73,7 @@ The first time you'll run this, it'll ask for auth details to connect with. Due In order to use the included text modeling, you'll first need to preprocess your archive into a more efficient form: ``` zsh -➜ ebooks-ebooks git:(master) ebooks consume corpus/0xabad1dea.json +➜ ebooks consume corpus/0xabad1dea.json Reading json corpus from corpus/0xabad1dea.json Removing commented lines and sorting mentions Segmenting text into sentences From 8402bbdc80287865e55e17a6a4340fb6439197f1 Mon Sep 17 00:00:00 2001 From: Michael Henriksen Date: Fri, 29 Nov 2013 16:58:12 +0100 Subject: [PATCH 017/168] Make event handlers optional to define Check if event handlers have been defined before attempting to call them. This prevents the bot from crashing in the case that an event handler hasn't been defined. --- lib/twitter_ebooks/bot.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index d7817ce..3e6072e 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -5,7 +5,7 @@ require 'rufus/scheduler' module Ebooks class Bot - attr_accessor :consumer_key, :consumer_secret, + attr_accessor :consumer_key, :consumer_secret, :oauth_token, :oauth_token_secret attr_accessor :username @@ -70,13 +70,13 @@ module Ebooks @stream.on_event(:follow) do |event| next if event[:source][:screen_name] == @username log "Followed by #{event[:source][:screen_name]}" - @on_follow.call(event[:source]) + @on_follow.call(event[:source]) if @on_follow end @stream.on_direct_message do |dm| next if dm[:sender][:screen_name] == @username # Don't reply to self log "DM from @#{dm[:sender][:screen_name]}: #{dm[:text]}" - @on_message.call(dm) + @on_message.call(dm) if @on_message end @stream.userstream do |ev| @@ -110,9 +110,9 @@ module Ebooks # - Or soft-retweeted by somebody else if mentions.map(&:downcase).include?(@username.downcase) && !ev[:retweeted_status] && !ev[:text].start_with?('RT ') log "Mention from @#{ev[:user][:screen_name]}: #{ev[:text]}" - @on_mention.call(ev, meta) + @on_mention.call(ev, meta) if @on_mention else - @on_timeline.call(ev, meta) + @on_timeline.call(ev, meta) if @on_timeline end end end @@ -135,7 +135,7 @@ module Ebooks @twitter.direct_message_create(ev[:sender][:screen_name], text, opts) elsif ev.is_a? Twitter::Tweet log "Replying to @#{ev[:user][:screen_name]} with: #{text}" - @twitter.update(text, in_reply_to_status_id: ev[:id]) + @twitter.update(text, in_reply_to_status_id: ev[:id]) else raise Exception("Don't know how to reply to a #{ev.class}") end From 45bfeca5bb528aa70ec4bed91ac0ca05b9d0a31d Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Mon, 2 Dec 2013 22:46:23 -0800 Subject: [PATCH 018/168] Use ENV['HOME'] for config path --- lib/twitter_ebooks/archive.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 178be85..87e06dc 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -4,7 +4,7 @@ require 'twitter' require 'json' -CONFIG_PATH = "/home/#{ENV['USER']}/.ebooksrc" +CONFIG_PATH = "#{ENV['HOME']}/.ebooksrc" module Ebooks class Archive From 62f353559430ce0b49d3d4b123c691d08c357ce3 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Tue, 3 Dec 2013 00:05:14 -0800 Subject: [PATCH 019/168] 2.1.6 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b84bcd..276ec8d 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.5 +# twitter\_ebooks 2.1.6 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index c2021c2..457d13d 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.5" + VERSION = "2.1.6" end From 32f5d267e13f35f4ab4512d4e5e05da4ad7dc884 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Tue, 3 Dec 2013 03:32:14 -0800 Subject: [PATCH 020/168] Remove Gemfile.lock files --- Gemfile.lock | 74 ------------------------------------------- skeleton/Gemfile.lock | 70 ---------------------------------------- 2 files changed, 144 deletions(-) delete mode 100755 Gemfile.lock delete mode 100644 skeleton/Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100755 index bbdef20..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,74 +0,0 @@ -PATH - remote: . - specs: - twitter_ebooks (2.1.1) - engtagger - fast-stemmer - gingerice - highscore - htmlentities - minitest - rufus-scheduler - tweetstream - twitter (~> 4.5) - -GEM - remote: https://rubygems.org/ - specs: - addressable (2.3.5) - atomic (1.1.14) - awesome_print (1.2.0) - cookiejar (0.3.0) - daemons (1.1.9) - em-http-request (1.0.3) - addressable (>= 2.2.3) - cookiejar - em-socksify - eventmachine (>= 1.0.0.beta.4) - http_parser.rb (>= 0.5.3) - em-socksify (0.3.0) - eventmachine (>= 1.0.0.beta.4) - em-twitter (0.2.2) - eventmachine (~> 1.0) - http_parser.rb (~> 0.5) - simple_oauth (~> 0.1) - engtagger (0.1.2) - eventmachine (1.0.3) - faraday (0.8.8) - multipart-post (~> 1.2.0) - fast-stemmer (1.0.2) - gingerice (1.2.1) - addressable - awesome_print - highscore (1.1.0) - whatlanguage (>= 1.0.0) - htmlentities (4.3.1) - http_parser.rb (0.5.3) - minitest (5.0.8) - multi_json (1.8.2) - multipart-post (1.2.0) - rufus-scheduler (3.0.2) - tzinfo - simple_oauth (0.2.0) - thread_safe (0.1.3) - atomic - tweetstream (2.5.0) - daemons (~> 1.1) - em-http-request (~> 1.0.2) - em-twitter (~> 0.2) - twitter (~> 4.5) - yajl-ruby (~> 1.1) - twitter (4.8.1) - faraday (~> 0.8, < 0.10) - multi_json (~> 1.0) - simple_oauth (~> 0.2) - tzinfo (1.1.0) - thread_safe (~> 0.1) - whatlanguage (1.0.5) - yajl-ruby (1.1.0) - -PLATFORMS - ruby - -DEPENDENCIES - twitter_ebooks! diff --git a/skeleton/Gemfile.lock b/skeleton/Gemfile.lock deleted file mode 100644 index db0a67b..0000000 --- a/skeleton/Gemfile.lock +++ /dev/null @@ -1,70 +0,0 @@ -GEM - remote: http://rubygems.org/ - specs: - addressable (2.3.5) - atomic (1.1.14) - awesome_print (1.2.0) - cookiejar (0.3.0) - daemons (1.1.9) - em-http-request (1.0.3) - addressable (>= 2.2.3) - cookiejar - em-socksify - eventmachine (>= 1.0.0.beta.4) - http_parser.rb (>= 0.5.3) - em-socksify (0.3.0) - eventmachine (>= 1.0.0.beta.4) - em-twitter (0.2.2) - eventmachine (~> 1.0) - http_parser.rb (~> 0.5) - simple_oauth (~> 0.1) - engtagger (0.1.2) - eventmachine (1.0.3) - faraday (0.8.8) - multipart-post (~> 1.2.0) - fast-stemmer (1.0.2) - gingerice (1.2.1) - addressable - awesome_print - highscore (1.1.0) - whatlanguage (>= 1.0.0) - htmlentities (4.3.1) - http_parser.rb (0.5.3) - minitest (5.0.8) - multi_json (1.8.2) - multipart-post (1.2.0) - rufus-scheduler (3.0.2) - tzinfo - simple_oauth (0.2.0) - thread_safe (0.1.3) - atomic - tweetstream (2.5.0) - daemons (~> 1.1) - em-http-request (~> 1.0.2) - em-twitter (~> 0.2) - twitter (~> 4.5) - yajl-ruby (~> 1.1) - twitter (4.8.1) - faraday (~> 0.8, < 0.10) - multi_json (~> 1.0) - simple_oauth (~> 0.2) - twitter_ebooks (2.1.2) - engtagger - fast-stemmer - gingerice - highscore - htmlentities - minitest - rufus-scheduler - tweetstream (= 2.5) - twitter (~> 4.5) - tzinfo (1.1.0) - thread_safe (~> 0.1) - whatlanguage (1.0.5) - yajl-ruby (1.1.0) - -PLATFORMS - ruby - -DEPENDENCIES - twitter_ebooks From 9b82e9e1c582799092459b65507bfa68450ce0fe Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Tue, 3 Dec 2013 03:33:57 -0800 Subject: [PATCH 021/168] 2.1.7 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 276ec8d..677519f 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.6 +# twitter\_ebooks 2.1.7 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 457d13d..fa321df 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.6" + VERSION = "2.1.7" end From 707675c8cdb8bd796196c0ba1c1f2adcb07deffe Mon Sep 17 00:00:00 2001 From: B0073D Date: Thu, 12 Dec 2013 10:32:03 +1100 Subject: [PATCH 022/168] Added more information to Readme Added 'require' line to example and also information about statement separation in text files. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 677519f..0ddae61 100755 --- a/README.md +++ b/README.md @@ -84,9 +84,12 @@ Corpus consumed to model/0xabad1dea.model Notably, this works with both json tweet archives and plaintext files (based on file extension), so you can make a model out of any kind of text. +Text files use newlines and full stops to seperate statements. + Once you have a model, the primary use is to produce statements and related responses to input, using a pseudo-Markov generator: ``` ruby +> require 'twitter_ebooks' > model = Ebooks::Model.load("model/0xabad1dea.model") > model.make_statement(140) => "My Terrible Netbook may be the kind of person who buys Starbucks, but this Rackspace vuln is pretty straight up a backdoor" From dbe909f7b7c53a138543705c6aa179c3b436b8db Mon Sep 17 00:00:00 2001 From: Amelia Cuss Date: Thu, 12 Dec 2013 13:27:48 +0000 Subject: [PATCH 023/168] Use STDOUT, please. It exists for a reason! Otherwise we can't distinguish errors (like from unhandled exceptions). --- lib/twitter_ebooks/bot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 3e6072e..088fd56 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -30,8 +30,8 @@ module Ebooks end def log(*args) - STDERR.puts "@#{@username}: " + args.map(&:to_s).join(' ') - STDERR.flush + STDOUT.puts "@#{@username}: " + args.map(&:to_s).join(' ') + STDOUT.flush end def configure From 437e1edff6c88f10862e55c0b0bc30d234454825 Mon Sep 17 00:00:00 2001 From: Amelia Cuss Date: Thu, 12 Dec 2013 13:28:29 +0000 Subject: [PATCH 024/168] Don't connect a TweetStream if we don't use it. --- lib/twitter_ebooks/bot.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 088fd56..1f940ed 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -49,8 +49,10 @@ module Ebooks config.oauth_token_secret = @oauth_token_secret end + needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} + @twitter = Twitter::Client.new - @stream = TweetStream::Client.new + @stream = TweetStream::Client.new if needs_stream end # Connects to tweetstream and opens event handlers for this bot @@ -59,6 +61,12 @@ module Ebooks @on_startup.call if @on_startup + if not @stream + log "not bothering with stream for #@username" + return + end + + log "starting stream for #@username" @stream.on_error do |msg| log "ERROR: #{msg}" end From 0ac940a1e014bb04a1e3afa79feb543846db6397 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Tue, 21 Jan 2014 06:52:03 -0800 Subject: [PATCH 025/168] 2.1.8 - Don't require tweetstream --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ddae61..73032a6 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.7 +# twitter\_ebooks 2.1.8 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index fa321df..4a2f89d 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.7" + VERSION = "2.1.8" end From 34b8c5d0a0c9b290a97bc94d4aad85dd99b82c4b Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Tue, 28 Jan 2014 16:36:23 -0800 Subject: [PATCH 026/168] Use binary read/write mode for Windows --- lib/twitter_ebooks/model.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 581682e..9a79b48 100755 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -14,7 +14,7 @@ module Ebooks end def self.load(path) - Marshal.load(File.read(path)) + Marshal.load(File.open(path, 'rb') { |f| f.read }) end def consume(path) @@ -76,7 +76,7 @@ module Ebooks end def save(path) - File.open(path, 'w') do |f| + File.open(path, 'wb') do |f| f.write(Marshal.dump(self)) end self From 1c12191175a93e91f962881c5406f7459c8848dc Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Tue, 28 Jan 2014 16:36:45 -0800 Subject: [PATCH 027/168] 2.1.9 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 73032a6..c807d76 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.8 +# twitter\_ebooks 2.1.9 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 4a2f89d..27d036c 100755 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.8" + VERSION = "2.1.9" end From 7e033b7b3b4e419276b69bd31ccb99d605314532 Mon Sep 17 00:00:00 2001 From: Erik Michaels-Ober Date: Wed, 12 Feb 2014 16:23:49 +0100 Subject: [PATCH 028/168] Fix file permissions --- Gemfile | 0 LICENSE | 0 README.md | 0 Rakefile | 0 data/adjectives.txt | 0 data/nouns.txt | 0 data/stopwords.txt | 0 lib/twitter_ebooks.rb | 0 lib/twitter_ebooks/bot.rb | 0 lib/twitter_ebooks/markov.rb | 0 lib/twitter_ebooks/model.rb | 0 lib/twitter_ebooks/nlp.rb | 0 lib/twitter_ebooks/suffix.rb | 0 lib/twitter_ebooks/version.rb | 0 skeleton/Procfile | 0 skeleton/bots.rb | 0 skeleton/run.rb | 0 test/corpus/0xabad1dea.tweets | 0 test/keywords.rb | 0 test/tokenize.rb | 0 twitter_ebooks.gemspec | 0 21 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 Gemfile mode change 100755 => 100644 LICENSE mode change 100755 => 100644 README.md mode change 100755 => 100644 Rakefile mode change 100755 => 100644 data/adjectives.txt mode change 100755 => 100644 data/nouns.txt mode change 100755 => 100644 data/stopwords.txt mode change 100755 => 100644 lib/twitter_ebooks.rb mode change 100755 => 100644 lib/twitter_ebooks/bot.rb mode change 100755 => 100644 lib/twitter_ebooks/markov.rb mode change 100755 => 100644 lib/twitter_ebooks/model.rb mode change 100755 => 100644 lib/twitter_ebooks/nlp.rb mode change 100755 => 100644 lib/twitter_ebooks/suffix.rb mode change 100755 => 100644 lib/twitter_ebooks/version.rb mode change 100755 => 100644 skeleton/Procfile mode change 100755 => 100644 skeleton/bots.rb mode change 100755 => 100644 skeleton/run.rb mode change 100755 => 100644 test/corpus/0xabad1dea.tweets mode change 100755 => 100644 test/keywords.rb mode change 100755 => 100644 test/tokenize.rb mode change 100755 => 100644 twitter_ebooks.gemspec diff --git a/Gemfile b/Gemfile old mode 100755 new mode 100644 diff --git a/LICENSE b/LICENSE old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/Rakefile b/Rakefile old mode 100755 new mode 100644 diff --git a/data/adjectives.txt b/data/adjectives.txt old mode 100755 new mode 100644 diff --git a/data/nouns.txt b/data/nouns.txt old mode 100755 new mode 100644 diff --git a/data/stopwords.txt b/data/stopwords.txt old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks/markov.rb b/lib/twitter_ebooks/markov.rb old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks/nlp.rb b/lib/twitter_ebooks/nlp.rb old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb old mode 100755 new mode 100644 diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb old mode 100755 new mode 100644 diff --git a/skeleton/Procfile b/skeleton/Procfile old mode 100755 new mode 100644 diff --git a/skeleton/bots.rb b/skeleton/bots.rb old mode 100755 new mode 100644 diff --git a/skeleton/run.rb b/skeleton/run.rb old mode 100755 new mode 100644 diff --git a/test/corpus/0xabad1dea.tweets b/test/corpus/0xabad1dea.tweets old mode 100755 new mode 100644 diff --git a/test/keywords.rb b/test/keywords.rb old mode 100755 new mode 100644 diff --git a/test/tokenize.rb b/test/tokenize.rb old mode 100755 new mode 100644 diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec old mode 100755 new mode 100644 From 47d600bb3b24f1d3b8bb3065d70161a9ed25be2c Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Mon, 31 Mar 2014 03:08:27 -0700 Subject: [PATCH 029/168] Add note about Ruby version --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c807d76..6ea9919 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Mar ## Installation +Requires Ruby 1.9.3+ + ```bash gem install twitter_ebooks ``` From 29f46629ed2203266539e4247912558092b776c7 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Fri, 18 Apr 2014 22:51:33 -0700 Subject: [PATCH 030/168] Add expanded usage information to commands --- .gitignore | 1 + bin/ebooks | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 67 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index cf08465..b0436d8 100755 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .*.swp +Gemfile.lock pkg diff --git a/bin/ebooks b/bin/ebooks index e3e726a..7fccb4d 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -8,7 +8,12 @@ module Ebooks APP_PATH = Dir.pwd # XXX do some recursive thing instead def self.new(reponame) - usage = "Usage: ebooks new " + usage = < + +Creates a new skeleton repository defining a template bot in +the current working directory specified by . +STR if reponame.nil? log usage @@ -33,10 +38,21 @@ module Ebooks end def self.consume(pathes) + usage = < [corpus_path2] [...] + +Processes some number of text files or json tweet corpuses +into usable models. These will be output at model/.model +STR + + if pathes.empty? + log usage + exit + end + pathes.each do |path| filename = File.basename(path) shortname = filename.split('.')[0..-2].join('.') - hash = Digest::MD5.hexdigest(File.read(path)) outpath = File.join(APP_PATH, 'model', "#{shortname}.model") Model.consume(path).save(outpath) @@ -45,6 +61,17 @@ module Ebooks end def self.gen(model_path, input) + usage = < [input] + +Make a test tweet from the processed model at . +Will respond to input if provided. +STR + if model_path.nil? + log usage + exit + end + model = Model.load(model_path) if input && !input.empty? puts "@cmd " + model.make_response(input, 135) @@ -54,11 +81,35 @@ module Ebooks end def self.score(model_path, input) + usage = < + +Scores "interest" in some text input according to how +well unique keywords match the model. +STR + if model_path.nil? || input.nil? + log usage + exit + end + model = Model.load(model_path) model.score_interest(input) end def self.archive(username, outpath) + usage = < + +Downloads a json corpus of the 's tweets to . +Due to API limitations, this can only receive up to ~3000 tweets +into the past. +STR + + if username.nil? || outpath.nil? + log usage + exit + end + Archive.new(username, outpath).sync end @@ -73,6 +124,17 @@ module Ebooks end def self.jsonify(paths) + usage = < [old_corpus_path2] [...] + +Takes an old-style corpus of plain tweet text and converts it to json. +STR + + if paths.empty? + log usage + exit + end + paths.each do |path| name = File.basename(path).split('.')[0] new_path = name + ".json" @@ -102,12 +164,12 @@ module Ebooks def self.command(args) usage = """Usage: ebooks new - ebooks consume [...] + ebooks consume [corpus_path2] [...] ebooks gen [input] ebooks score ebooks archive <@user> ebooks tweet <@bot> - ebooks jsonify [...] + ebooks jsonify [old_corpus_path2] [...] """ if args.length == 0 From 7c1271048229acba2d79f62b319fda73445f92d5 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Fri, 18 Apr 2014 23:37:25 -0700 Subject: [PATCH 031/168] And self.tweet --- bin/ebooks | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index 7fccb4d..5afae92 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -113,12 +113,23 @@ STR Archive.new(username, outpath).sync end - def self.tweet(modelpath, username) + def self.tweet(modelpath, botname) + usage = < [old_corpus_path2] [...] + +Takes an old-style corpus of plain tweet text and converts it to json. +STR + + if modelpath.nil? || botname.nil? + log usage + exit + end + load File.join(APP_PATH, 'bots.rb') model = Model.load(modelpath) statement = model.make_statement - log "@#{username}: #{statement}" - bot = Bot.get(username) + log "@#{botname}: #{statement}" + bot = Bot.get(botname) bot.configure bot.tweet(statement) end @@ -162,15 +173,16 @@ STR end def self.command(args) - usage = """Usage: + usage = < ebooks consume [corpus_path2] [...] ebooks gen [input] ebooks score ebooks archive <@user> - ebooks tweet <@bot> + ebooks tweet ebooks jsonify [old_corpus_path2] [...] -""" +STR if args.length == 0 log usage From f362f1ab2b16cb6a10865702e124c50bbf479263 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Sat, 19 Apr 2014 22:13:07 -0700 Subject: [PATCH 032/168] Fix off-by-one error in mentionless calculation --- lib/twitter_ebooks/bot.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 1f940ed..6a69689 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -103,7 +103,7 @@ module Ebooks mless = ev[:text] begin ev.attrs[:entities][:user_mentions].reverse.each do |entity| - mless = mless[0...entity[:indices][0]] + mless[entity[:indices][1]...-1] + mless = mless[0...entity[:indices][0]] + mless[entity[:indices][1]+1..-1] end rescue Exception p ev.attrs[:entities][:user_mentions] @@ -136,7 +136,6 @@ module Ebooks # Applies configurable @reply_delay range def reply(ev, text, opts={}) opts = opts.clone - delay = @reply_delay.to_a.sample if ev.is_a? Twitter::DirectMessage log "Sending DM to @#{ev[:sender][:screen_name]}: #{text}" From 95a075899a4ea044ecf7e7bcf2abff4b56cf5753 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Sat, 19 Apr 2014 22:15:08 -0700 Subject: [PATCH 033/168] 2.2.0 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ea9919..2aaf737 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.1.9 +# twitter\_ebooks 2.2.0 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 27d036c..ee41324 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.1.9" + VERSION = "2.2.0" end From d676eaa77fa561f31e8beea49a4095ec6cfbe6f0 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Sun, 20 Apr 2014 06:17:48 -0700 Subject: [PATCH 034/168] 2.2.1 - Handle mentions at end of string --- README.md | 2 +- lib/twitter_ebooks/bot.rb | 2 +- lib/twitter_ebooks/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2aaf737..b8ca4ed 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.0 +# twitter\_ebooks 2.2.1 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 6a69689..5eb8b9e 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -103,7 +103,7 @@ module Ebooks mless = ev[:text] begin ev.attrs[:entities][:user_mentions].reverse.each do |entity| - mless = mless[0...entity[:indices][0]] + mless[entity[:indices][1]+1..-1] + mless = mless[0...entity[:indices][0]] + mless[entity[:indices][1]..-1].strip end rescue Exception p ev.attrs[:entities][:user_mentions] diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index ee41324..fa8f7c3 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.0" + VERSION = "2.2.1" end From 5d55d90f8586e8a3b138ace532295c1d31d06b6f Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Thu, 24 Apr 2014 20:55:53 -0700 Subject: [PATCH 035/168] Be more paranoid about identifying mentions --- lib/twitter_ebooks/model.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 9a79b48..9924584 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -59,13 +59,13 @@ module Ebooks statements.each do |s| @sentences << NLP.tokenize(s).reject do |t| - t.start_with?('@') || t.start_with?('http') + t.include?('@') || t.include?('http') end end mentions.each do |s| @mentions << NLP.tokenize(s).reject do |t| - t.start_with?('@') || t.start_with?('http') + t.include?('@') || t.include?('http') end end From a836e00a879ed23c0a982ed31acb55918b0e940a Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Thu, 24 Apr 2014 21:43:22 -0700 Subject: [PATCH 036/168] 2.2.2 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b8ca4ed..74f756c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.1 +# twitter\_ebooks 2.2.2 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index fa8f7c3..21f2be2 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.1" + VERSION = "2.2.2" end From 17ef359de2b4d24f8aaca47eec1063ce3471d85f Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Mon, 28 Apr 2014 10:56:48 -0700 Subject: [PATCH 037/168] 2.2.3 - Avoid some mention edge cases --- README.md | 8 ++++---- lib/twitter_ebooks/bot.rb | 3 ++- lib/twitter_ebooks/version.rb | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 74f756c..18f179e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.2 +# twitter\_ebooks 2.2.3 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. @@ -63,7 +63,7 @@ The underlying [tweetstream](https://github.com/tweetstream/tweetstream) and [tw twitter\_ebooks comes with a syncing tool to download and then incrementally update a local json archive of a user's tweets. ``` zsh -➜ ebooks archive 0xabad1dea corpus/0xabad1dea.json +➜ ebooks archive 0xabad1dea corpus/0xabad1dea.json Currently 20209 tweets for 0xabad1dea Received 67 new tweets ``` @@ -75,7 +75,7 @@ The first time you'll run this, it'll ask for auth details to connect with. Due In order to use the included text modeling, you'll first need to preprocess your archive into a more efficient form: ``` zsh -➜ ebooks consume corpus/0xabad1dea.json +➜ ebooks consume corpus/0xabad1dea.json Reading json corpus from corpus/0xabad1dea.json Removing commented lines and sorting mentions Segmenting text into sentences @@ -84,7 +84,7 @@ Ranking keywords Corpus consumed to model/0xabad1dea.model ``` -Notably, this works with both json tweet archives and plaintext files (based on file extension), so you can make a model out of any kind of text. +Notably, this works with both json tweet archives and plaintext files (based on file extension), so you can make a model out of any kind of text. Text files use newlines and full stops to seperate statements. diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 5eb8b9e..7b08929 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -103,7 +103,8 @@ module Ebooks mless = ev[:text] begin ev.attrs[:entities][:user_mentions].reverse.each do |entity| - mless = mless[0...entity[:indices][0]] + mless[entity[:indices][1]..-1].strip + last = mless[entity[:indices][1]..-1]||'' + mless = mless[0...entity[:indices][0]] + last.strip end rescue Exception p ev.attrs[:entities][:user_mentions] diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 21f2be2..c8da643 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.2" + VERSION = "2.2.3" end From 872dabdbf8117b35dd05f287ba507be3476f3eb9 Mon Sep 17 00:00:00 2001 From: Joel McCoy Date: Wed, 30 Apr 2014 20:30:54 -0400 Subject: [PATCH 038/168] Support consuming tweets.csv from official twitter archives --- lib/twitter_ebooks/model.rb | 6 ++++++ lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 9924584..96674d2 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -4,6 +4,7 @@ require 'json' require 'set' require 'digest/md5' +require 'csv' module Ebooks class Model @@ -26,6 +27,11 @@ module Ebooks lines = JSON.parse(content, symbolize_names: true).map do |tweet| tweet[:text] end + elsif path.split('.')[-1] == "csv" + log "Reading CSV corpus from #{path}" + lines = CSV.read(path).drop(1).map do |tweet| + tweet[5] + end else log "Reading plaintext corpus from #{path}" lines = content.split("\n") diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index c8da643..ab9a31b 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.3" + VERSION = "2.2.4" end From f80e84189ad620acadea7c1a8dbf0f8d932b3fae Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Thu, 1 May 2014 22:59:29 +1000 Subject: [PATCH 039/168] Update README to 2.2.4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18f179e..cbfb351 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.3 +# twitter\_ebooks 2.2.4 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. From 2aac54c7aa4f742824edb4be37476da7d39acca2 Mon Sep 17 00:00:00 2001 From: Brett O'Connor Date: Sat, 3 May 2014 16:44:07 -0600 Subject: [PATCH 040/168] csv import now looks for text column --- README.md | 2 +- lib/twitter_ebooks/model.rb | 4 +++- lib/twitter_ebooks/version.rb | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cbfb351..6bb508c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.4 +# twitter\_ebooks 2.2.5 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 96674d2..b625046 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -29,8 +29,10 @@ module Ebooks end elsif path.split('.')[-1] == "csv" log "Reading CSV corpus from #{path}" + header = CSV.read(path).first + text_col = header.index('text') lines = CSV.read(path).drop(1).map do |tweet| - tweet[5] + tweet[text_col] end else log "Reading plaintext corpus from #{path}" diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index ab9a31b..1d6a05b 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.4" + VERSION = "2.2.5" end From cf53eac1e7172595cd77e05b79de3e5543c25076 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Mon, 5 May 2014 18:54:41 +1000 Subject: [PATCH 041/168] Link to example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbfb351..2305e0f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # twitter\_ebooks 2.2.4 -Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. +Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/twitter_ebooks) for an example of a full bot. ## Installation From 7b3905a2f6001e2e6b0a72924094c258db026b63 Mon Sep 17 00:00:00 2001 From: Tadeo Kondrak Date: Mon, 5 May 2014 10:02:28 -0600 Subject: [PATCH 042/168] Fixed link to ebooks_example linking to twitter_ebooks --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2305e0f..e549681 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # twitter\_ebooks 2.2.4 -Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/twitter_ebooks) for an example of a full bot. +Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. ## Installation From 396a5dc26b3396a7a7ed549e42afd0c77d1b7c5a Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Tue, 6 May 2014 22:17:54 -0700 Subject: [PATCH 043/168] Whitespace --- bin/ebooks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ebooks b/bin/ebooks index 5afae92..9e11ff9 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -174,7 +174,7 @@ STR def self.command(args) usage = < ebooks consume [corpus_path2] [...] ebooks gen [input] From d67e376c730c8a0faa26896b2563c9487598e9bd Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Tue, 6 May 2014 22:17:57 -0700 Subject: [PATCH 044/168] Barf on invalid commands --- bin/ebooks | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/ebooks b/bin/ebooks index 9e11ff9..a2309c3 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -197,6 +197,9 @@ STR when "archive" then archive(args[1], args[2]) when "tweet" then tweet(args[1], args[2]) when "jsonify" then jsonify(args[1..-1]) + else + log usage + exit 1 end end end From 8a5c4831adaa68dc155ec3abcf58ce809a3ba33b Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 7 May 2014 16:45:17 +1000 Subject: [PATCH 045/168] 2.2.5 - encoding: utf-8 --- bin/ebooks | 1 + lib/twitter_ebooks/bot.rb | 1 + lib/twitter_ebooks/suffix.rb | 6 ++++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index a2309c3..e1950cc 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -1,4 +1,5 @@ #!/usr/bin/env ruby +# encoding: utf-8 require 'twitter_ebooks' diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 7b08929..bace4be 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -1,4 +1,5 @@ #!/usr/bin/env ruby +# encoding: utf-8 require 'twitter' require 'tweetstream' require 'rufus/scheduler' diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb index 9a4bd04..0b10f64 100644 --- a/lib/twitter_ebooks/suffix.rb +++ b/lib/twitter_ebooks/suffix.rb @@ -1,3 +1,5 @@ +# encoding: utf-8 + module Ebooks # This generator uses data identical to the markov model, but # instead of making a chain by looking up bigrams it uses the @@ -50,7 +52,7 @@ module Ebooks tokens.each_with_index do |token, i| next_token = tokens[i+1] break if next_token.nil? - + alternatives = (n == :unigrams) ? @unigrams[next_token] : @bigrams[token][next_token] # Filter out suffixes from previous sentences alternatives.reject! { |a| a[1] == INTERIM || used.include?(a[0]) } @@ -66,7 +68,7 @@ module Ebooks verbatim << @sentences[alt[0]] suffix = @sentences[alt[0]][alt[1]..-1] potential = tokens[0..start+1] + suffix - + # Ensure we're not just rebuilding some segment of another sentence unless verbatim.find { |v| NLP.subseq?(v, potential) || NLP.subseq?(potential, v) } used << alt[0] From a3e7b8e9933f3284179ff8c575bb4c80f8d4f1c9 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Wed, 7 May 2014 16:52:18 +1000 Subject: [PATCH 046/168] Recommend 2.1+ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95f1e64..13d8b30 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Mar ## Installation -Requires Ruby 1.9.3+ +Requires Ruby 1.9.3+ (2.1+ recommended) ```bash gem install twitter_ebooks From 4c01b5e57adf208fdf5ed45a0f03023da905f109 Mon Sep 17 00:00:00 2001 From: Hiramiya Date: Sun, 11 May 2014 11:31:45 +0100 Subject: [PATCH 047/168] Corrected usage information for `ebooks tweet` Usage information for `ebooks tweet` was incorrect, replaced with relevant explanation. Fixes mispy/twitter_ebooks/issues/16 --- bin/ebooks | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index e1950cc..cd169ec 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -116,9 +116,10 @@ STR def self.tweet(modelpath, botname) usage = < [old_corpus_path2] [...] +Usage: ebooks tweet -Takes an old-style corpus of plain tweet text and converts it to json. +Sends a public tweet from the specified bot using text +from the processed model at . STR if modelpath.nil? || botname.nil? From 74fd9c1e2e236ac28ad69045592b6487c4fcb913 Mon Sep 17 00:00:00 2001 From: Joel McCoy Date: Tue, 27 May 2014 19:14:19 -0400 Subject: [PATCH 048/168] jsonify: Support tweets.csv Allow official archive tweets.csv as input to create Ebooks::Archive compatible JSON archive --- bin/ebooks | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index cd169ec..e1dbbad 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -2,6 +2,7 @@ # encoding: utf-8 require 'twitter_ebooks' +require 'csv' $debug = true @@ -154,16 +155,23 @@ STR tweets = [] id = nil - File.read(path).split("\n").each do |l| - if l.start_with?('# ') - id = l.split('# ')[-1] - else - tweet = { text: l } - if id - tweet[:id] = id - id = nil + if path.split('.')[-1] == "csv" #from twitter archive + csv_archive = CSV.read(path, :headers=>:first_row) + tweets = csv_archive.map do |tweet| + { text: tweet['text'], id: tweet['tweet_id'] } + end + else + File.read(path).split("\n").each do |l| + if l.start_with?('# ') + id = l.split('# ')[-1] + else + tweet = { text: l } + if id + tweet[:id] = id + id = nil + end + tweets << tweet end - tweets << tweet end end From be6ac9127f34929af2f8dbaf97c2da30032b16f8 Mon Sep 17 00:00:00 2001 From: Joel McCoy Date: Fri, 27 Jun 2014 18:42:51 -0400 Subject: [PATCH 049/168] MODEL: Read in utf-8, only parse CSV once Ran into `Encoding::CompatibilityError` issue trying to consume my corpus (tweets.csv) on Windows 7, but this likely affects other environments as well. Fix: force reading corpus file contents as utf-8. Also a quick clean-up of the CSV flow to only parse the content once instead of double-dipping. --- lib/twitter_ebooks/model.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index b625046..5619c93 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -19,7 +19,7 @@ module Ebooks end def consume(path) - content = File.read(path) + content = File.read(path, :encoding => 'utf-8') @hash = Digest::MD5.hexdigest(content) if path.split('.')[-1] == "json" @@ -29,9 +29,10 @@ module Ebooks end elsif path.split('.')[-1] == "csv" log "Reading CSV corpus from #{path}" - header = CSV.read(path).first + content = CSV.parse(content) + header = content.shift text_col = header.index('text') - lines = CSV.read(path).drop(1).map do |tweet| + lines = content.map do |tweet| tweet[text_col] end else From a2b374f48cb22c0cd84a51f50f55b3ceec26edef Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Sat, 28 Jun 2014 18:51:43 -0700 Subject: [PATCH 050/168] 2.2.6 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 13d8b30..87204ee 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.5 +# twitter\_ebooks 2.2.6 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 1d6a05b..84930f7 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.5" + VERSION = "2.2.6" end From 3706ae0bbb93ac5bcf9ba3d9492e164ac7270429 Mon Sep 17 00:00:00 2001 From: Pira Wetton Date: Tue, 23 Sep 2014 20:26:48 -0400 Subject: [PATCH 051/168] picture shortcut --- README.md | 1 + lib/twitter_ebooks/bot.rb | 6 ++++++ skeleton/bots.rb | 1 + 3 files changed, 8 insertions(+) mode change 100644 => 100755 lib/twitter_ebooks/bot.rb mode change 100644 => 100755 skeleton/bots.rb diff --git a/README.md b/README.md index 87204ee..d75d853 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ Ebooks::Bot.new("abby_ebooks") do |bot| # Tweet something every 24 hours # See https://github.com/jmettraux/rufus-scheduler # bot.tweet("hi") + # bot.pictweet("hi", "cuteselfie.jpg", ":possibly_sensitive => true") end end ``` diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb old mode 100644 new mode 100755 index bace4be..33b5445 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -163,6 +163,12 @@ module Ebooks log "Tweeting #{args.inspect}" @twitter.update(*args) end + + # could easily just be *args however the separation keeps it clean. + def pictweet(txt, pic, *args) + log "Tweeting #{txt.inspect} - #{pic} #{args}" + @twitter.update_with_media(txt, File.new(pic), *args) + end def on_startup(&b); @on_startup = b; end def on_follow(&b); @on_follow = b; end diff --git a/skeleton/bots.rb b/skeleton/bots.rb old mode 100644 new mode 100755 index b409860..4e480bb --- a/skeleton/bots.rb +++ b/skeleton/bots.rb @@ -37,5 +37,6 @@ Ebooks::Bot.new("{{BOT_NAME}}") do |bot| # Tweet something every 24 hours # See https://github.com/jmettraux/rufus-scheduler # bot.tweet("hi") + # bot.pictweet("hi", "cuteselfie.jpg", ":possibly_sensitive => true") end end From d09d968915421cae14567b026ca26026187d7ab2 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 14 Oct 2014 01:02:08 -0700 Subject: [PATCH 052/168] rspec and memory_profiler --- Gemfile | 2 +- lib/twitter_ebooks/model.rb | 2 +- script/process_anc_data.rb | 19 ------------------- spec/data/0xabad1dea.model | Bin 0 -> 1503684 bytes spec/model_spec.rb | 8 ++++++++ spec/spec_helper.rb | 5 +++++ twitter_ebooks.gemspec | 4 +++- 7 files changed, 18 insertions(+), 22 deletions(-) delete mode 100755 script/process_anc_data.rb create mode 100644 spec/data/0xabad1dea.model create mode 100644 spec/model_spec.rb create mode 100644 spec/spec_helper.rb diff --git a/Gemfile b/Gemfile index 5665fff..0daef45 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source 'https://rubygems.org' -# Specify your gem's dependencies in libtcod.gemspec +# Specify your gem's dependencies in twitter_ebooks.gemspec gemspec diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 5619c93..dd01834 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -47,7 +47,7 @@ module Ebooks 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 else diff --git a/script/process_anc_data.rb b/script/process_anc_data.rb deleted file mode 100755 index bc1af60..0000000 --- a/script/process_anc_data.rb +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env ruby -# encoding: utf-8 - -require 'json' - -freqmap = {} - -data = File.read("data/ANC-all-count.txt") -data = data.unpack("C*").pack("U*") - -data.lines.each do |l| - vals = l.split("\t") - - freqmap[vals[0]] = vals[-1].to_i -end - -File.open("data/wordfreq.json", 'w') do |f| - f.write(JSON.dump(freqmap)) -end diff --git a/spec/data/0xabad1dea.model b/spec/data/0xabad1dea.model new file mode 100644 index 0000000000000000000000000000000000000000..90a22ea7753d66e04fa0ace1416f62802da62a5a GIT binary patch literal 1503684 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
i)P_Au5 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 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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 literal 0 HcmV?d00001 diff --git a/spec/model_spec.rb b/spec/model_spec.rb new file mode 100644 index 0000000..d305b5f --- /dev/null +++ b/spec/model_spec.rb @@ -0,0 +1,8 @@ +require 'spec_helper' +require 'objspace' + +describe Ebooks::Model do + it "does stuff" do + model = Ebooks::Model.load(path("data/0xabad1dea.model")) + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..f365da0 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,5 @@ +require 'twitter_ebooks' + +def path(relpath) + File.join(File.dirname(__FILE__), relpath) +end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 678b8b9..1bdeb4e 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -15,7 +15,9 @@ Gem::Specification.new do |gem| gem.require_paths = ["lib"] gem.version = Ebooks::VERSION - gem.add_runtime_dependency 'minitest' + gem.add_development_dependency 'rspec' + gem.add_development_dependency 'memory_profiler' + gem.add_runtime_dependency 'twitter', '~> 4.5' gem.add_runtime_dependency 'tweetstream', '= 2.5' 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 053/168] 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 zy-bOX4r_IJX)UgMOB>FoB`0Ns?fxK> zn=Ewzff*4Qsot=Gw(>Vol_c*OjCCn<%ao?(o+BWfUuS)DX0J@-nNO)Vxs8@Yu5&g4 zT3GjM4IkBeIQ1c6gYK(z`iu@o!EGa`XKZP!n8toJ@CF}SkBUGmqRbhvN-Ac}F2cY8 z^bzHBv%W=I6pzkxfZLPEUkZN8WKmX$y87DC>n-lAY;X#&(T%rx+r zhHd}8`8OO!qG1(nfYtC^}&1X4#Oxke)~gPUQHapAJK zZ@fX-g&n^vkI0*ouUwBc;_kyJ?gyh2>TL)EUpzfIy#x~CYHKyXJpcxDvkeAoI*Xir z_XY$nl&KahnHzQbuxI)YKU;g@{lqMg(QU%LCIlwnK7(%Od6VM|;Wi=XZ}(~HjUM~+ zilhrhnDi8Nm*04iTPN&jy9zVrQW->Q1=v?ZmQX+ban&WW-po(5Hz-zoDRK!60u-}E zGUf|6sT4cc5za)Dk*a`@*CjMl@}+gEA;wUmmo6@f>ZIUEQIt~cV2hC`$t-LF&q@>` za2tE8TUC&v33#~F=b-g$Kvl3|f>HAED1E}guJcQZx;LI8O(rR`SXVd|SW0~P5b{_b z0HpolD@L}AwIHJ@Q+M020pdc445yaPdZBI`r<*G$Q#M@RSTW5cXC_3lkiip5^m8Qv zp+E<+p?GkPkR%6KR{VpSKV~}rm#=id9KBbBaE&P9w3l8B$@BMOIBSTX;Wjm z@%|cg7-(4x2}6w>Ak~MDr(0-VBfM9;eSqXeeRlil?K^kext$54Co3`zijg&06r1)& zfBVZ<)7!Vd;~RPV%RArWKSGU;zWZtMhjBCAj0+7wLm^YO1fVP2K0wtI7^d{FD;U<&38Yg&Z;AiddQo*29fnGFHC= z`{Dh7peHAoY|%wEoSD_gi;pc2kx7l@;LKLVQ69NLxEbii>Q(_I&Gzehny>;%jY1|E z3D@@#j;ALR$9sb2@UZQiG}V-@fkmk0IfizMGC~H(V1uXmG8d#8xUr#lToeuqj(au;Hf+^q?X^zZn|DRI-+*di5=StN)1|c8XVU| z|Eu&z^WcF&pGm+gXiWEol$TiCWHt=tsMI$I+mQ}WWmB&64F(T*y`2ODIIWEdBk$TUGDnDm!^ZSi~p~(P{4^<7G${Y1B;QDSW3i2uO(18 z2Pg?$L2*@y0r|VDRH;A2%1nDx=cMhLYUA`;)-9d z-S!1o@ZZ$mri5Vby*1i8`LcdseCy&QS@Y&Ty>{G`b%xy}2)sLn`eL*3u6FpWPv{Lc zAdS-;z_6-+0Oza<@)Lr3Ai^l7Je$6vF%#bn)sd{^(BA2B4NAs+2~s#5r(^i&sQGTE zI}nIE#Lhyygc8JM8bbsVzz!N0mjiDswKtx@Xg2J_N^T5_qelZu_*b-jiufVm!1fs4 ziHirv)4s)k^#TLKD`e;1{-rCFH*L5zj{WE}9bj4yGunr$bk1eq*mjbQ6AY`F_2TSfaPI zeBa>{=dOK2MC@-BHxqx8mcj`q8CkjlV)i)_flCI~T3t+ITT$#hNmh%lAyktoQe4+^vz^r}^VUY$p!4F)d!chSA#?>1>fsind zWYm;5hnEa&gT1Q6jpG}ZMXN7O2B%8s+T*>0V^>%iHDVpxEF~0JBoHsT0dJrv5Ub(s&N^=A+2%Ms>7opkl=4P`gl`MJCH?K^~2xU@9>+GlGUn{{E{D+OA=$&9c} z16>grJHU;uhzy0dXOvnXzy)xpmP)}5lp=tJ;Lw)64#D6e%WEEL({uI-I2!W4Gxq`Y z%BWofOs$&`g&Gm?{kkf&2XikMK7Z_^aFL;~wfmRALDa89?d-h!F>NNkZH59r#gN^j z$FiWCng?Y{ln*XvohfkT2}jMLfU`YxxoqZc*+kIa4x8jHH<1HLj_1PE-StopP<*KP zXJTr?q6XJ@oG#epad3iQvp?BFDLp%N4ce}1{}3cCvc~ajU3oX+IN)ya%P|Rr0dR14 z_z|1nqQkr$*JDz z5u8@kk@^a#5_6;?>)C7yc#6S>&blkuR?Sc4XK6LKl8In6c!p4r^yk08fB(paZxmhd z&KWwJcvf9HIjDgsx83>ccd)1H+~+xo<|n_aGqN~)dU`TB5GU~E%Pzb@pQn4)bn?oI z4D;6-OqjO?;1w2Dr4i!}5p5Bn=5H*v?u)m~(~3)pp-HqhwyJcOut9B_X(ATR79u&` zCsO(VNLz7g9S=M!w6>-^^%mU+Y^DB9cX&8vbd2I0*|HarvE<|cO5h4>au?>JbtiTe zGzWni-O&({-%b8IuO598VcNBkn^VOd%f1D2NAvbPxY5 zq15HL1VTJCQOR1=XbeoKZ+&_CD-tE@4=%H@PKoH4$%hm^ceEsUTJ z(J2M80!psU!6$hq!zFUHiU5@HNKmd5AXB%~D9mfj#2*nhCG@smxZT>b4P1wQ%Hp#P zo=;^#XSFNL)trMuB!inU9aQ+vSPG`w%p)j=xt!HG#5lkQ(Zot&F{IkFar13+120y9 zsyn;9*ca8%*s5Z1rTW;e-YumoCR(fQ)eu^-f3;&g2Lr7kfa8Ns(ynvuenvUgzV%E%H&?R)>$&BsE+_Z+=7hk6=!9AY@IQ0pqT zTbBrR)Sn|64+C|EUX>;v)B(>PwCnUx;GWS-7B5cBi8lf9$La`30(52ChMqbK?g+M#ARuzkWWs7O2CTTS06vVf`}YA zqC9yckk;3cT%m6-H8EV8D4CJ!ngEJpyb~YPl&;zHn~GDhfBEyQjI;fwNhmox84n$yzv>KJbFYL1x6AD`+((>3uU%`nL z+rc~K>JD#YBkn*uGNyL1z)^!_W$!7=z~EJKw7UCGKazvNTMhvXpz?g}d#vMY`u~7% zN@w+z`|#s3iNA^W-jom2l}_QlKQi>%<%pjRXcbzR!xS<-KAB=%_Wt~BN}2>LK;B|^ z@O)pk+QRoX>R!a*<^&hM?|-5u6}(fS>2HXO*Dds!@!P4-2?CQel_IFr{m%DR(3;UD zL;56+bX|=aZ8s&h>Yq)>p$eLNiqY5F$(E@WQ}ytkP3jVbnHK!ug@WXmpq}UN*EG z(yXthmxrz~EnB>d?ss*n9Nj<LsUZtA|2P|--av1*};-RB?)#1Sj5>K7j%=kXGmC*QWNaQrgB zFTzx1T_^eD)cbbe#@VLc`-l@R+@j&3e3?RRN|Fl$kDbVg?XZubB}U9QqE0Qu=Q3@Gg0 z9*9#;-df?6@4yawUh0{BUD{i~7@=x-j_aD};CC8_0GlRlWEB?ymM$!8se zZiV9F*lBX?JzUT6CJt~!;QE&c$H#4Pu9T3NR5%Ev>1iLMO^aO=z5#JB0wQtyyC2)H z&1f}D94um<^H7hm)k`j=;ps>o5GOF)XMM-@7rO|Pa zTx7zvjdxm09>4Jxmmi*3d)doV#g2Rhv-64ux6WOUG%7j}v6-F)Lb9L9!g>`l8^3fk z^X~5=YlQOjI-|)B>S|Im%xji`LoXgw%mlU!PuG@Sd3s9h0bpO9K4hQ%-@c~w03WX# zq!`Rrb#RNNKZHeL2nl5{ue&%4e3&F0$vmUPs9%ozG9YOB|gwY@>qlk+Q&#Y)>8|+E098{2R!k(9X>UN)nzBLeh^x4^!dEj(J7cA4PtfOp5Mjo z-EEXiRTY*NU7Z*+jH5q4PL+sc!P)3 z?&$f{g|)FJKt5tXBgonVyNR3M8J_v$x;U`3gPLKE7Y?mlGrB}zev2ny#fp}Q%CHXa zuIrKy6z9fL%S=3J?QriW!Y9Dsj!}n{(iaIKgE|64*tDPB3zbk6G=wniJXco9FCZpx z)QC^jFN4;re*{_Cdgm&j|M2{5dy9qATx8Xj$VQ8~;LhW9@|7%W*pCdL4XF8;osX|0 z5xm861vKJJfZW*oFbKi;;{%mmYM<{a-xU$B_75%(7^-eI{f;-azp%Vkr9pFwv7q`C zZpqoZYGom1(!Q9gX;Q9x+!ruF=-;qlW-9Je;AM_hMb}Kuh?|9~Pc^!>)BYdT@rGfR zJV22$e}kCCg_#Wzlwuo3uZnkhoT~UH9XSteqj>yZ1$NWkJ-nQE&!CAxNw8K)!WG0xbl`bn(Lf^D z%t)P7veUtqj*J1Jsz_dww4}Q~zcVBzJFV-V8w3Ku0mGT6obFD&Kk9E0Ov2W?Ag0PD zsW+}NxHR8N%{Gq#^zqk)T>!#;QIjPD1rmMYmBkqy7f=(v0>#kChSF&oT`*FZPIU5w zLRnpjc;S-WbK_YS3Cznne9Md7R}W=_QAt-@Aq`&-bacj}8sOuVNx8EniiLDVzMUo|)2K2fJ;^p{LCirar=BM9tjC+3s%nv-eIxH!m_+Gbt_71Vk`giO83McQ? zB@M=I>k`y`el){t2J{u;$9>j7tqLd#sD?UT84Q^FM9tzxGuw@+Yh!3oCoXEJI)+ePc6C4fplbiXOu{GB{hM%hy3qvVdgCz~j&qaSh?vYe2;MO?eby)F?tO9mH zH5}5-2Mmo~Ep^Zk$;7m7l81*N<)v@GWZlFH`7e)*^gZ^P%N7x}S#HzBVk`5+vaf*m z)_K&Zv+vq?2SK5rM-20P(4QEVC3R6K)G)+SbEdTU*fM$~mj8*G(xiST2xn?6vszL7e4y}5IHUtbw zKaR<0%cxpyED9)M4nzTgs)7OE&I*@mXxHrSZgXzf1`hrn?Qa?vA`v5w5kGf3P-r#fky|&U z&U5GA`i zH7g+20J7~Ml+F|G-?tEE=qmJdv+a-+QI}wWl@QkZy59qxE_3$em3Kce-=(uXKg}WF zf@)bBl#F{oH}(|`!C1x7raLx1fP*ZSrm(4y1uK07e1YOZ8kagEp@kqSj6?to!fG}P zlKMzoso14DtdmGZa@vuk1%qWXc>s2_DK|_%rjm`&LoS+`U=k23D3<6M0$AZuw*%|Er&;a1I*djnF@* z{(1ZqRtn7Z8iv7XS@?|h`FFTB^F8q#DipFVL}gNdaoAX&slja_+wv@s{XlNPPgQ)a z1J#j&T-wSW#w2>Ey8@i;l!(OVyP%^)1=m+RC$e|r1ua72w0z|WPQa{ovh_~AHB#l4 z-3y~l-oT+AdR$hqrwCfH)T-h=~B0?L@hyikO%@P{6v>B|jX4Hm3&=#4BOxg$!-M9t)hR}r5f(*NR zrQ;99%!svAefo3ScpZd=KXl!@WQ7jko;asxU_oTJZ5PkM*$ccJdDbm+xlZrWNDA4J zGU_o?dxSAScZgs_8g%KykW^bOE6VBbLYrzUv#F4ZBNx^->*@kiI3;i99HRqPsBeSZ zCr$-cUuAnMFNQ25vn17+N}{kFQ@E*C{8z;u4n_-A$w*+@jzN#T0jo!9_B)XNIjVb% zVhix(RTz*JJI_hrXDLa@1&M1EH4o`kqcC}xI-}fbIEj2@&Z-udAiYp4s$ z->-wuRv5@2jK`}u8?0(vSSCS6PG|sq%+J-wjKJ7Xf5J7rCy0$~8k#;iFBMp+bWS&b zGVmu^sON1sKHclX>6eUOM(`}Aq?8R#Sn)F~tkONPpr*SW`8e^@14!>2aT?c3;`6`d z69qQ5{sh~TA+YdsX0sClcc==f1p~Mz%@Jj4H(=k=PS8a^s9qipkaxh$S%b;t3LiV-p|4sbsg7bgfe#SkF0DRi8ix%GB%Qm8jxxN z4vc{~O+RY)^{bRr9YSRWETXCO)foF+!&zc_Wu=Z%nS+oaP8)rScfsFBA+vfQ&(@f6 zv+nza^wCtr6RD^IN}3t4tS{;2Y9irsTCoZME=RjcFg1s}tbFI77XILcFK<-!&bx1M z9TRSjZcQgXa9p14{oll96H9X7hB3_4@P-GCy%^B)^)z<2?z3Z1ZTp!@t1wsHfW?pv z)*47oz3yy(o-wbX#Q<~)gRa248ahVKyqScABYrkv-XifDr}??ugQsQ;6l{^uJA=NP&aSe zVQ6|09n3u{1qFh;L*RdC)u&^ZJo*>|a4@JLS3X9oEL$B->&^f*5KXOAtSZ~uOAMXr zI#~iJ0jWEUNJEC91e8HI5M@SygZ#b`yY&4fqB7DC~s^)eNM6f>gMPM}0b{foS zGqJiMXn^MhzD4fr2g}YV_lr2$Y*(Sd!HMD6Q2Yi=ef-yZc4xN_gK9gbj*5DuXcH^1 z%pI^t%E9JpKVvR?;l5vdaQLPk^{{uoM45lx0r-vM7p3f<(i$&Cn#mex_#ub%boUY% zS?VRDuG>3zzW?-YJy){jqdddvo6vE97pZdYGx)|q3?nIm9$+a{z-i?DQ$#~h$x`2E z=3WFCap9D%AJx7!bx59Vnx`6H$v%>C#1IXe3?%m3mxs8NxURCsV~yHEXH*AZ@oT?E z^z80DRfpVwFn~1Mh8!J*w2tx62^I#7pApIa_!&=9|HAS#yu_}pqs;MW(7s_z68Iu= z2z@j^6FbV-sv=QYUl-6&LYnEXEd)V4&O=lT*@Ax7YCfowQOM1s*iX+9xATsuIBYWN zTMOy<^7Q8h9w*!g|AJ}5kd~B*0X#@Cj^|L~X}e}#B8x{S+Pxf^+EYYFbc#HxZOQn! zu>QElwP5P$&j|)Dzy$vY-q4arrvC%BlRc+S9$XC^?PME#JxJ5@8k4!D56sYg7kaK* z;!;OQvE>MwJGXEDR{fJ5D+Gi59N4tDGqZWEaRE_AbU_w39ca{}L%txRMSRNs9oLtH zc&5m8B$AMvVU+|&I<`#?P+)Sha8elS1X~O0V(a3YsjhAc!!K*rRxe)%glm(uo&OJe zZ`WH_nw^Oia#1{I?|sf8tIG~@;bhFVQPpy*s#NWAyLvq1P!d&QwHh ziY1bV;fGWz1cSMI{ zo=y~9Feyq=DeRZ`)pwcyb*^F;BfIw8Y%;LJir=R-SjnGRBq{!aq!8xA+s@1S`a#S0VM zKNu5*i}l!`AgxaNzp*D-cmHckK$rDW8eLz7-gd4ZB%+}7aqo?}14fdbRJapWL!U?8mPz!%eox={B@6W?K!CwvEwpL}dpy}Nq;r;0e}1w&%XWGQ*(ajTRXLVMnjj4( zm$-UPP+!mei=YfCaES9N=j(G)X_&MK{Jiw-+BF2R=+0B4c`=UiwEJ`tyN--*vNu<< zD8sU=Holyj{ldI^SlMYoK%meAvC>G7aogHzp#Ft?vifq4j09xVi`XLpB;8nRzOftm z&`0BqD=YzF0tdt2xrD!XbMN&{bE;fDgkvX4f@8)eIwN#P!1z8ErRXC;%ilw)8N$|9 zw;9c$)_|(KoI%7|56QX{OSr8TxK%F?*B>*>VYqvLYsYy-j=Nm!kqf<=f&lVax$lP- zj->7aS*ut&1i6kC8Raeywe+Dd8{TNbJgzbiZCuip*Zb623sJ%F{f_t)DU3nXN zmHqjG=PUs?L1oJkEPUD77VS_M6=E@B=YEo)=$M;E%=A=Ngyk>W-YwCtS>HK2_udFJ zjbPoOC!q{2oF?hH+j)+L+2599#;;jgwk)?VX>@Q1ZSm5ByPmrqid1v|bBGccKDeO^ zumAsBVfQBdP7g>3+Q^It&!d^(fo}k{7>DG?@ zTB*C!7X*XCmsZsaOhOa~P#!gh5JxWEl<^U~lk`9{eWm71mK}2d73+e`hBa;Y#2H8m z%m{T{De_H{kPqxGIbgm8?K;zYyNXqSPX2z(?NfJ?>~>y6o3d_$x_Ko7ZFMsJDe zynqAY&_L)+TR~L~kWZoBV(niEJAp|;^_h65tN6NMB(S6^!+c5Bm*c=tmq%q@%wU!(hj+4&rHa3v?3WW)Mh z>j(ilKB3Hz49LrzT+9wjo`jnlFt-QVPia|q-Ete;7P7p{pJd4dc!k{2x=QoWZ&N@A zy;_4s_$&f8(L2uqwa)cCzCLam_1myNQosPAEX{TccTUa<$)FIIO@i>#O6hShMbLnz z{vNQ)Ij)8=<6c=Ps$cmugkR3k4Z>AY%10qBqiyXKdjlZn#dk&_xeRzmqaSr{NNqq6 zaGmKM^5~3rjkNHWis8GdQyrK=bz zy>|k*R9P9Oh=w!lD#}d3NaW77)ybe)%MYu!5r)rT_vv>1UH5S7(dWCHJN7S6Yhbi~ zNvmd@84~OKX;RCB_3fY4-=U=I^77j8l$pw|1G@SNKdU^z3Z5kTfMR^hp(l34a-{&0 zwC)T!6rGR?(aPtP7=z9g29!onrG9^7C|*m2V}>Cj5r{k}iTs*5fgbDgZ^|~T`A$fV zi7oqdel%qPW%mNumX`brKdChp;A=hoXE&Z(rPGN5@?dn}Sndt;{M`1iWFmD-S7K z`;od;5(Ir$!9HO@=t|>{sLth;jZhN`5cb>+oo3y70M#?VWGr-JVEK0Q*#6~5PI8S$ zA}tV!=~bQshyHn=MjO4ef9p@LJ>0tUWc%sH7n{HPyOGHe-WE74Yzo~%^Wz`>_{SgD z1?K^7Dd#+vk4c;An6CpH8fxb|{YxT7{m%}z>H=69rl zCU*?b2f51G*+5PZfrE)U#XA*o!x`Vxsai51i*jQ1XqtM265gUlii<={#9EUxma+&; zpkbAAA)4nHi^W6HzyR%_MFF1r3d+dhLR(9LBe)L&VZy%+V5RIv5ab1|8PI_FFMf(C zUzn!294G4!^=YLYIHIi~H57Szd5-*!Yl)rWJ%cCPMJJbHru(EVZJ@E_VAs9jJ#~oG zhMY&AeYNV6{z3PG=>Dvpfu%*%mU7}(8Dbh%k7)8Lr59v&JIzT{hd`dVxSn`VtyO zt9gKmgSw2g#kh?C3=#4^KDH5|ey}Kmz!MLX%Z|$D{EM|FMiJEjbcQBYs%4MSfm&};$n*A zI^IN=2e|5FKK_2Rfr*+&h&|Vb^Vi)SD}1O%ndS4WY&rj?BLssl%EEDpN+KrYkAqZW z907%tL}8ns&CoHVzOZ|EbctkVdNabLx+jQIYHWFH%OUMc6UJK5JLm}()3>dk~>QAm5=oAEti!*B&#CRDr*Ri)Y4)?=?C-qEH(wc!I0$kcM z0mQXY(taaErtHX_CM6_bkE+~d1nZ~c>=c*-4L3R`%o8p?Hceg7fWWi zkx;eAKD=y_7gi;;E4_;TNZ#fI{Z%}q(EXc#`CtDL{Z5&|^F?Jb|{x!Bnfo`TD3{Hw5c&iI{%xZ~p90{weVNW||9AZVWh=LIS%LRx=so)yZHU!Xvn#_0Spd z%B)q9=wELGi&D%NJ?G1->P{o29u2Kd>+kyYE-DO&_aY6P2ENIaYX%yL4#;%LJ0Ms< z9iID-^0Nw+!$`LDj=GfON~H8$ieQuu&@aw;OHtJ2oESz$2e&(FT`)K&!F2fVTRw_%5Qn5YNhJA;~0s825l6 zv(zcEIaKv{zD-;&lCL3=ojCigze67Ag5&VeaF`<6*7p@0rRM!8Hf@spe}l4+LQ8fV zZ!tAPL@JVvs^{(B2myi9=RF|V(qjN|OvAZmD_TB1y$wV(+*C>h0V}tDy*^4iHPhqd z2W4vr5QIQ1<)zWhGQ^qM4>YAoYkgd5N@ty-DUaRHYoDRof(YuW&A&T51trjqNCP=* zB$}3(>?7GFLyZ3`hhgP7lU<9DV^9OdUff!l6Ut>=f6VIa^{iyna4;9#|Mo6YoQO=3 z)^fZNWv3o{HJkMD6&r=cThTMg935U^@Po2ov=KmVO!CFMhmU1B_Yys1whgi1%7BnI ztDE0cj8A9Up^g|9TKxnp^0>yV*K`gP$tm-3WKc7(Jx3NWvNhGS4d0hHJ^^xSNpc52 zs4q*kIH}uKqBv4|ubfwKA6Q1Wx0o`P`eP$pj+MI#s4`(PZf5*^a$6SbXo*{HD=c?T}Th z1nicGjpPQY4?Dh08c=4+09I(-N4H)|z5H6nm`ek=`u*A-6Ff@bZ{>5}H>~5AetxB# z*N-3(K~PEi@rOTB*A5YSnaPPvFkisLk~pUDz^TvjwbarPY2xNS;D0};(H=0p=SV}Z z`_M{*&H=PrU50<4g&0BRmwnoLHRTq1D?fR^{QCRB0?-6>oK_1J-@E|f5a^Qp&pqOR z3Z1JpVk`%evaT?cCHmi;AY_8nvFrEWY(L)Fq|?BL?jXpQ)>ecD2pKiN@*nys5Zyv5 z3561EjD!!7JW`Qt!YGr;X9=wfPu6#nmq~GCQ7Nu1T-RT0Vn#q7IAs!c8uo;s1`RGW zBGAvho*6*{Bh<8^_=-j$#(RQdn4}6DM_71cFhHda=%&fW88Q+Ou%bxduH*-g;n3s{ z$b<^%(>wtEIj^j4Axi=z9)5|s>0=SRwOBW*)mVlMT&sI*gA~azqOB1o-N6@Tl565Y zg~Y-V=)Q&tBnpZ*br`I8^9e_CHb2Fue9hexGxM3Rgp@4z`rF&)fRhd3lA=z~-8R^S z0-MKIr>IRs+O0Esx;T<#utW=mqQ%Mf!t815Rti*xYZ||t?w8IZ^{NcqW{F#aG9PM` z*xm?{w7t2o=nzh%V?TjzEo)GxcKDH77fB6t$kGfr)#NbP5 zf*c2enyV`sKHhrtGyf4PwOVjizjF7=%W`0-kzW%i!}Thi9>~Dqq4pDZ&C?k`($x3# z<_XF~N#`9RQ!mzBt8n|1d%<@!KmM)XK4Z?`txsGH+e~3V7WGI{GAlRrwA6%Oz0co8pTB48u@AP*Xn6?_t3KcJ#S>x+C|g`AS1wKDdgo+(&_ zpGZi5{%~qJnUWcX$FEPx+^WP4N8TLD2iH{=qJ&X7GPM2~b&=`dxEkOmsUOkuNnN8W z6yKXwf9)w~D}fg8_1BRDjMpUL@BA-fNA2Q;eNChl4%uXSHn$!Sh&j|}uA*KVgZ2<= zuZ(8N67Q_vnV-WEEK1x7sfXF*8m|OflF6=RmzZX!-LAXqif59(PYa4vJ)T z7cTupruzxTj~?v-&7tKwygPmE(FuuKfW6J{Y7$#zkxtn zuVP{ZYYn-4G`F>h1h!>W-&R#$pBPNCYJE})-r~_V0Q-J!sjK6KqZ-EUiSJ$M`&YkCQ>R1FX0W!Gt z@vkosMhK$j{_gH$ryJZKwDGBwiVj#FVS)kV{K8k4N#toLon;|}kPjskrCE{`AaRwo zfC&s|rO$U)eRT$#cf1|Y_&Hjd*r0|5MuJFUUJvgPPxjS2Vi08UQNxdL>Goug>fpE9^Uz;abVEom=O)MGBsc7~?&eT&t^$)-a9?1bF zEmkY0Ru53;(1b_^O?zRD1$>W5EWMIEkhp1USzdkNVE^h{f3*SN1S^vv#Oq427J#;} z-P|bY+11s#D2=G@qPMmT;;cnK`sUU~eWiHB#>nha>C=JZV$r%VZH}6M2{s5OpN^uKseDVAo4L?Ie z#C4U*;~O$>DTiHlAzFQ-$(T*Dl-EGO zso>hGj7Gk+gA|gRmflPkd-BmYQjYvM;^PK}C2b2mK^VKV(Dh|5&6qO} z-f?&tCqPN6Tr-#9wu;-8?}8RS5#A#xh>s#TQ>plSaF$TBJ-=xas6C8nIbu*bQv4LE zWWWHhs~1_U85cj12Qs*P<#q{xWDw9PEm%syocK7n_1kXu#skJC{9)2acaT`P4%7-A z&r-((OckO|M^K0sjVKj`AuvelaY2=kR9j>^=pK^P$O2i?!E$7zjZM!VAT;Zia(|W( zDn2wq34Mvsm&_KXdg3rWN<`oW@^X57f;Gr#8hF_lMX+dawJdiaa0fLUNF=a z#eh18NZU=aU!l7-h>nFK(P+Yx;Iam;3hmRk->bA92ZAY3Aba(v;Rkwp*|l8=f9#qb zQ?Id_O(j!+LAz?<&Vz^Qn}?_wch=_B#$rf_1BLYYn-pMyC!>xU4YEiWUkh+VZ(cAz z`N9S@<}_^HvGgBndI2|@r!+>Fj-$hftIB5Q6{8Hw;JLaZ2}Sfvw5X(SG!n8)mh(eV zPvD3N&y%zrt=~JJe>-EJ1{eiC$IoBJK(_X{*t7#3tI#1CO(rW{TZZ-jSMRob$e;7> z;n83J{r}vyW;0GASRKjaNW^pw58DMZa$V4XKPi&056wtPk!Uo;azGM+^(}+rQ%|Wt zn}1l=0kb&d+TfCTl)B}$`94O-LR|;Fw3hP3A!xGe6T3uNETk&ofv%TCodRT$cD2~< zg^c5lMY8;XyZBaM87pIPu)Xv9m2SRg9V85%hRuMo()!Er=l#Khzy2@&+xjPw{AeBY z1W3~_p|KWJ?l6I`zdl;82M805tlFdor*Q^@^%_9{NhGj?woZI5iIxUw-ehjACq5Zr zw!}O&kVgd?=J+~>EbhN>YzP(5c~SPxm!5^{hfZma9zO?< z)#vfUB>9xf*5azs3De(e8A0_&?Xw>M(K(FQ&A0vF1Lvo=7Dke`)8l9=sb>KrJQe(l zxeNONGl{d*qs@l!nTshcXNYU*8eLbo+_6ed4br5vVN~&Zs3~E}A-`k7N@R9wtBQ2? z9nTJ?Ww;gkG_IMHEUf@PW#2PVz{``nn8$LCnkgN7d?m!i$~xo3k_vA-JRU)#4wn$# zZqF?LmQ~(hN3=ZiTc!31rEUqHHs+6uQPBL~UAL$+kgikI%|m~9k37IKyBI$dzDc`o z`FAeDV7=D{17=#KdKti9B<|+;wPcG3=T!TYYCgzeHioW5pqco5xS%B;5} zB8FBB>-2N2x;nmVt(Si@U)JTr$B%8tCQ)jc-<9^L zlk0u>6zvvBMFMw_f?B$-)Fdas#H%}3dqoq7F@{@D9=MiE+C;u&a(Ci&O{qQhi=r-H zjv}LBEk_df^QxxDhHWqm=Mv~`pSJw=$9^`}kKno6V4&9-(zU626Rw&}M7Ra;k>PCk zmjd_&oak(u%QU}QH^j;LvP5sC(i_|tf?lV} zmZfw^InWKVRm9m0A4;r;{^%7uQ36Ch-ZH2dbm+&7w*5eK{S+h-gLv=aN*EG3dQA6X z_*A`Q$H=&~_6~jm|cO!^(dCB0@p-6 zvy!>gu;o$!p5I52P(c-;cdL{D-gE5<(jJRhbHNLG-miW7=?9;F`k{q9>unCVHXheU zBPnFGX>%Jw`XsECXOGIKm*#QMnJTFo+`dTun0W>;gA~V$_60f7vqKcj?EAVLi8f4# zE43fgr-TkCD7QG7p=r?}iAC$g-w6O*QGTb0w` z!S;jt5@Z=xe2X{SZJwj`D38vnXRlo%()rNWC(V|L>K=)nfv_6e2709VwRcGBvgTO6 z#V_YqyRt>vy%|K5A4Sk5GUuMbqo>adCCMmmn*ol|^x)+j6MOtcTFJf5xawoZ(zzr~E{Gf2Do4-o4S zI3h}`n#a#)uj=B#S}RYTlTwOo9OyTycbB=FS7G{vX4pDj;id}oe885$Y* zQY5O=nZ_W>V1lrQtS3I&<<*CWj?~uC8DoBScJ29sV}ke^^wOhmG{W#56q}O}_2M$u ztlp6I9=UtJzE@Itxq%}Q0O!o_zAb8=_awb=J!`=fgwuKM95g?!bu!lC5k)S_W);~< zjFq%Tw~@0$*GGlWPU1q~dFeq)4fS(QN-sq0&968K&cr1NBGu&}(SQ&X7>XGTaL`hV zaUI^u*4=vAouwx*d)2~%&lz}&HT1iMXb(YOw?6#15MdJNDd+=}l@!T}jWkpDmoARJ zxmk_-o3E^my|1f>{OVwI6Q*LXP@r-|A_$3;sSq{iG&!xWSfw`PLA5t*pqcaEm?5Ro zZNi#-$?VblfL_w@3IRa5*6*m5+n&T=hvCD|?-UBpYVZF)rIlUS)XPrE0-r=a0uAp+ zO+!RQag1&ZeORy9j3qvpGPDBHTBd563m`C+Ucf^u_inm$A_*rnOPEz*0;o#VEZUrC zC$EuZ9l-bXh(xc>AfA#G2d%m5@$%vKZ~fTCPjFSF3MaT1(QfOE3B%0SO|b~~62L_L zWlG{U`?KAJh!K|K%N>01$ZZ~UE^*Kp~iXvtX3XIx`5~mBpsd{YZ`gI zAw%5^wunY>N?xVyTM132CkUAK@obLJLcNA`h66P3^9v)I5|6-C<5QXAQlmle22a&D zSRbbyN5Z(*$qa67sf4Ycd8_oQ6X1~=PQ)AG7s#*_AUU+Wre%QIa4q%+p0yi{vm^O13&f)Yook!8d-j{Ic{u8-Au( zysj}s2VWg2Q7iY{4r|~U(g*stDJYcL7lv$f3T#kNNoOw%I{6eRjJZU4#1T?F{DLOv zHFAaFRB++TUSJ5W+Tbiy07ALB1;vX6rSdm^Hg8|mOG60QQFjQSH$R}++1(4@qWn3UB<}*CTr-B37t9`i8PcI~ZE)7eDp{ zX!k<1fV+UgQicUL>y*0(N5IrrU#Mdp!IK09v6a5Q7=$BIR&x&Fl(Wy$WqK(v4CRTl(o~Z(yd@ny95P$P=M|(M;dZ46#AVhmX zeVRN#b{ehI$i3phB<<3n5C&CpE`vk%A!Qzd=+%^r+gSq?afa}bG_S)L%5S&VX1ou> ziI3w|XclcvkLuB&w?>Va)qiTY@o`jG;6_x~x3IA57Axd)C>7Y<;~kKY{m-dAZo0GL z5#45(J8vlUNc8uPjUvaWI6#P(MAUE|v>$X_u?v*WTwGSA4Nd;HzQ5uA*=O_1jU67n z3N$P=Q8pVYjZk9ZY7dH?`v3w}4=vsT>yZbWTkUsyb5In)uxRm(c=4g5msY2>wfo+V z-^yp3k2ZI=?tEbXG&gOy4*0kJEf@dyK!}tJs%uos5&Z_4{V4OK691v^0NSMfluWN> z&r5ajDeM}yO=B~l+zDB;td;X4^lU$5j>y~2BTW(ru8M6yMe4-A5D*Br4%v0+3{(#W z*ps5SlM77pxQX-+_C`Za`RmeY&o>rTNN@jU{guvS7;1KBXQc2*?M(Eyhxp+EDq+u_clF|%G?MwzmkfFGK^*Rv{8sa+r zGSO^>!Szh|36)J3+1-FHb<`OaFhX^g-sx5v&P3R0T{#A5L_jM&g*tDD@|eZL4LKAw zS-DO`VsW(IJ0)~o@lz_A+XmGN3{CzhNef4u64xs+R>=w>*1=SH{T_wjcn>~_rFhoU zLvR_)kjz9ygA^b%Uz{#vXbNQG_f!ReEw?ibzD?uCl?I{fMlGQwpE(4Ea1RaDo&d!p z!2Q{WG{$U#W4#O0*>L{r9w2i@8+&MgjegVh&qKg`{$#X{nIY=y(pBUsZ)0?J1s`mm zeyi9bZf>}KI%kgCg_37PA(95oJ_IY@ik6PgIp+pZcFLGZ?F$$Q+1d69E=p}}*K9c4 zhagkrSo!Wci=9h%Wf+8{IJmR9T~8vSYk_R!35Pn6WDu<)2^f7;kets`=@4&1qKY5B zc07VhXNdtsQVa$;<2~l%XzOvd3PB*UvJY&BUaMs!%W)uaK%74g(c+m_)SL z&_V&(k0@tTXJf-u2j?|*_ABAsNuoc?#=e63gz=EQZYj^+il!I zXtmB;4lNw2*bBYr>{MxZD-~skRzj|TB~bcLwnoO%v?-YjYB%NKC7`rXZGJIBpUT^( z&g-cnj0c=KDrnWnJ){5ywR^R9L){i{dBk)X-z_y*@E&BMG>WAk`S(2@mXl?mfGrcJ z>Z7+T19~8U0HYAf3>gktkk04Lgy0z(#niW~+T?(WEBna?u*ffFcYyKYR7#{u6n;MY zDQLJO6%zLg_iZnfy}G64Jj}kaodG(RyyN?@(qF%lt{&rR=4Wg@^c5QGu53Ho@+umO ziBNYZui)0g)eLu@ZtT|IMRg)1%L|nX=x_t?0uR-%0J@|n0#Qr!NZi!+`mD%4rPh@R zqtk@Fce3Xz-i6_GCquS2~J*rX% zV(&2GWX%pRZsJjrE9eUYKfiL7Wv*im9u55{3J4v8kpvK#l;&~|kk`sfy+hYvPbMK`$hV^1fF;6@zUJJn@1dm9xq3+IAKdFI4G-%5-vy{ zd?)Z&FW|W#My;a$D+r%2=7uVAb!8Oan z1Wq&iP$e1g53F~*lcB^Oj4Ns&{=j{p2-814JQkV`0O%BMfqy36>CVyd}BQVfv4D9&V*(l)+vg1#2i*nZb(A1V8ms8B%7Q&b}vA z(pF)SPCZT8985(-ds;ve72}{UQ#Luo0q&+Q2lu&hpHlWhI!wf^l{D)=MYy!yT~K`c zP4)KJ@an-6S``tju`=Ns3hEoRq+IqaH z95$94C1S9d&#ca~ZV-ilK*7R>*6nuIj6_lDkqMU9q3$I6fcPr@0N7rK5}sa?jPP)ssvvR@{&## z!9ZrP8FfbFSJ6B86w^xaSLfrtIYreoP?>-zFG;Mh>8-n_+)*mC;t9MjzU(1I7{yFy z7-^ZWe_&^3dPcCBNH^sWuFy0@sqes`gW zt>*E&B*1p#!NcvH-MZf4-L1{L<**T0LRk(GIy5y=Z|!So`il%JM`H-L)mQu-z(;Ss zL&_AFs%q{$+4zGm%c{(3refo~eu+npEv;8~rFm1I0Q)+F9`!RaQ*T(jKg(UWj z`0()JYr%@cXhoTgyTIUj`!4N7y_cS4+`QC`i=SK|y%~ zW~+wM(UWU2;AQ$PKa!@iwudF;Rd2_f1k41ih6@~`M6)A=RFBZn#3?Yl%l)`JLSbd_ zBzZj!7VV4}bLxXBR`ZT7kaZ0cfVs#!jN?NsPhFPo*bdz-sru(YQTHU}+?^YJ=_7_NVS~b8 zw5(Cq#s9;?c5E4%lz~emlcKoYCkwn~IT_br1zcLmw5;bb1i0lV$^+m|CLZw8h?g~7 zFra>e`bgo3Cen87;a5SRvXZjrFnNKRG?=G)&ICX2V>G?kS)2-9Mu8axHmg+@BYWNS z)eANss9lUmuDC9$Kyp~JyTUt7WeWj}F4=Kgeb;(=d}8Us1U>0mURS*^S~(O8KwAZ$ z!Z1b>EfPBXI&=bPPoLkZJT4jlAbS%6dR|7~qjaohncA|ADtN~>5{4C!A$kYOY-qo< zjw8OUuwhe;1b&p?DQDdJ-(T}RtZ1|zo3;jH1Rl30d?X2pWV)s_TeStP!zAS58U_9kZKXL#IYoSXm1z>mp%0>Kv zvQbTB9MJ%@B3M3pu=Rwfcn_IxF+r003sUWxV8jf+Gsc%ze)5&Q&+3EP`yh3iS~ADp zIh`XWeG~HiN&{M3GyqeIH~BuuK4GthgxCFy*6#u^K0k8HzIoqrWc^Td@oA^y;)h{$ zS+P1HYLoqMZFZvo6AN^KmM({rzNakqGxhjf?)cK=KZH$I_aY?=ZKZ<8>843l1kS{(cRqo=%a_X>v{$cAOEQSlp6MpHm(jZHJAK` zgx43c#*dMUN@|5bVA9Acieu4u71=N0-?=mH1{{Ad?^X{jT$(g60# zzYOj^+Nmp&M8zm_iv{~{w;tCYhKQSxVw33^W>xg7aZ0nK<=l%UJC6o?F1$7sVDmzI zxL(eh30GP6_H19B!$7RxH)!KScQ8tN24q*H3igWeRPxj;@r`aljCMyE>?TNwZPess7p zpMqjD%cV93J*pE|#HBZvbERsjdoaeLMqn$MIg!=HYsii1rN;tCib{8co;sKox91>z^tPk1E08rLhP7ZT-4=r7Xm1{y#OOu&))Kt5R!1VMr+^m zmq#!8&kl(_$0~3@8IHSHorUxwh+zM!6wus-iSBC|-GeYrY5c!ku_?%G9zGB$!6vDb z&oyHRje!vgahav?R%exjx@11{ZN^Tiq^}h!HHnnP|FA67W4t*;DRYr&Me{P$qDy&q z_RY=NO9Rc|`cIG9w8#LHdJ2;}7~BnB6_uv2E7)M_ky1o|=XCt#Pc&N>=y~g>i4l{` ztkT;%OOC+P>qk=C!*DXfH8XSCMPCxL5m6s+pa271MvnIDHAVb}QDcYG+9`-}4!(DaqY44&@Dm{TU9g);-$Sdu23_o_y=4AQ7 zVooKr*UgVVuB(j5f=j0vP)-sh zL(H`E^~FaGV&JNa)#?gl+4_#BR?FfXgzBpc4TYBUi`^`cvlWPFLyMWpN~Ip4ZL}Ym zewW(I$J29|Pa>{CRMO*+sNr^p=%~4q z&Oq`+-hobfiFp^j5*@l&vN_`ANfxKS62t{#k#Zr^Upc#qh}SS)`k(MWTZxUtZKs%@ z%lgQb^{u+X99IfB3c#LVSY5XbvAa}WThdb5(Qa~ZD<4~wDjV6bd2rCJPHN@*u9Oi3 za4{$0V)~GRR%I+}wG;?8&U2=gW4H*Y!P6K@P7rgNvOXUiox3I@*MMd*zt1mk{QNcU z8Ad}jxJ~vb?>p^sa(Hxp9B3LWQXpVeK$nWksankiF~jXn)1WAU_{=E6t_fxp}iRS^UaI-m=l)@W#;v;~OHM=#l+S z$}Hht=rLzdpEh;UMm?ZDd^VkRY`ndA4g8KK*fCHjH;(zH6x%@`E2nE`&y~4qEh^?x>j_L>ngF#2fCDo8pmW z&gbvaG3ut0?M0s|Ynk@fKK|ghKB`#-a7y_k*z8uq!d>v%B@NJM4ErU!wzUekh&!B8 z`v*tUZ-a0AfReW+yK(aO(D)Ew@%ih&S7qV|#0jH={yjH6Kn;5RKwMu^r%3W-%gCJX z>1j?lDV4eBYOR4%0it_STLv&Yr|azq%+$AAmatEgH%8hOY{vHJuuBT{8P6aKFFQ&&Y1-OGtsod6zr(5T9i%egq5%0s=sVlNBAfC>dSO zF>cAPrPz-;`Cd%fLN+`;gxQcA!M?CafFe<*+xwtUCbS62y9~~D;--;eW&Q3e!B^)e zyAs^sRcbPhC8V5P=vA)KBX&LpoQf`)k-O+tj`hm?$?sHRf`pb)5jkapdtds~xP+7x z7I6V2biZaW&bqqs!#O5Af`ZwfDZwbdti)^NuUf5TUC+c4V2=>`Bfe@=@k$#YeI&`I z5kTB4G%zD~M>@#}N0xG;cn>X7U-cmVQl0F2t#>T0(4V9Qligz<0-ujyEuR$Z zFhu^A-|gt)HNrFV6JI3E1EF?FP{hF`jS+M#c8XVE`W_ZUR|;sXzW{;|$ZsV#gZR`1 zDtU8AsH*2JlLj+{@C5%YN|^wORkdN}6KqruYXHzI5C*bu zc2d`405mf|2~wHGG>iNpN`a(D$Q?aUt(R$?Y$UUssgKj#K|aF@Rs7G|3XDSC7KE<} z)WWQWX_#!d@QgS78#r0r34R{_&7b|J|4I2EoE_`N9{HJ_b-a)%mAq$o>~S!%C*l_J z)aNj?z6O3?NsAB8(g36o? zG6t^37cg;fc8r=!X9H0f+R|f!mqG@Tea0FL1 zOWD~^CU5NRE^w0G@Za=$WTI?ozQ@SsczT6U0kn6eLXgDRTyE>S%AL^L?bnYubl&Fv z`m4xs#Z(S>L|h7_Ci9)F%mpZM>SQm%Km(bJu+HKuUk^Ij1B64XoO>+2j^T}ovDWh-a zCwsZ7OD;rz!YS0WUu815M>tLR^Au{apfv}+pe&GNMyn^?MSKUK z@gZZgDC51RBQQMblo$ojVkDK+eS@V3T;0OY!@OmAA-$%BFz>Zd5u2rnuzL!QwYh69 zX}!%zwO_k&1I-X{Yv(s^)Rn*tUA=JwNm})nu2CfM@!R^VF$@yJhl#%=*rZ4s|5&`L zd$gVE1>4z?y};L_FhhnU1+tj;3t8YgvAu1Ur#~Jbvi$FG2|~HA+%536iA4!z%QmS#rB}WN-w0*UPVi$urEtnzq}Ut3SJX0a-f~Rx1n5FRhK4$V(ePsS zEIPwT$0jb#*jMthbS2UG57&+C)wz>wf;i00yLb+-ul&id%k+GjSt;)tvG~-&r56d6 z0|kSb@=2@iw|+rqfzlY1(v~k0t>z4&q;pfi|D6k@tr{W>*o2R1rV)$MJ)&I3gpCna z$+Zc>k*nW7YxBj|pe%7uHlm9Ux6+BL$Yd}K%v5k#v{)x)-8I81Vba$@g68EE^E@l% z!+BvNm}I23cc!P)12<(8jcj1zEm{!~@&Y6@_f%> z=H`rFnTQnRu6qcgNP!-FQd#vf8xs$sw#8b^Rpnx?&X+Vjxv$)|J)U47n)68HB3!4c z)YVeN&Id!Z5o1ksvw8=dT$?i0MM1r+f=EDwm|Dm0}>x4rmV}9I8VLD%?-ybbvvF z(KHz__0aGu%HeE1Jy_O0Uq7iot^xtIL8KtIde|r@TCib;7^~)o!E5VbtKu2+#r>kC z1EBZg*F6g;Y%YoS*kul3;AN4F7avIn(aQ!xrVwHP!91dQpnq0S;eRoPYp)VjX%z-p zpxI~L$uIQkY)q$AwD4M>b{$#*O?Nn?sPn=_+~iHvSEGs(7eg_EF5JYeba@bv&;(p6 zD*WK-UID0f&aR9Ao`Yy|dv1)x0vJMGsb`5r5`CllNG*XK>Yt27cN<7qoU>_D-zOiS zF4(UeD#q81RUN5;L*P?AlQ-3}_q?{gK9y*o5KYQ7=I-&2jinIz@|W_?%Jz;e(b7mT^mtO5Pn zvY-iA+_KaC1-XHeXkoEZUC*A#7}^-xZNzYpp^Fr<+v#`8zVLz;N|Z$+|IQ z4!EmmBm1u<0I9!>W@tJQJe<2>!WJy?_4;)AP|@W*>oNStt4B{4SKQ) z79%(m8YDHoA@<)F>S}Wk;yuj4#ks0$r5Mw&IqenK;unC9;%S6ou?+yJIMar)$2f*L zq(K}>yu=9%4zK*#`uajguU@+i92jzj{DmQSfLdK0)5FR$U}92G;Oug)0D3wVnR-#R zrj$-b9@%%tf`uxY5v$&qp14NPDnVRa9G3Ky@^L7cdR8p`oVgZiC<04u-$W&PsV zf{M5cH@wWeMJ;2$j{lcIMpp4~dWdNU&%^jgRZ7|_TBic)tj}&N)3PEN0E(K=quyb( zbAS8k&Fy>l>Ia7px9@KHcV3_fiZ^g{TAUPP-X+L`^jIQne2j7IWOzhHMR*lDbFQ>>e6PSh4z#8KK$2zv(X^G#){8f4g=dbMy`>clkB=w^&S4XbQVw_VwY*g zj&2JkAQG$Ha*f-o#wOd;~g@%GU3%AL-!JwZ+{k(ArPZFQ1zwFTd zA%@&6qzDa8_=Vx~tLN2Oz)2vU$~J*@g1Q|-3pEgpD3dt6MAPs3u8Fl02XPX*2E7i} zS&p9~UpDGmN>@2hI)#)0-ve|b+f%vL?V&;4l~zj@g(KqTUncaQ!fOfqG+sZLVr-qf z;B-5#Sa9XDlh@8hqpzAu|o;6+a*9kBWQqOL?#;Rdx975&|+z>=sljBZAZEC!2Z$!0^Lmg9ad~v}x!j3tsp(i{2)|>vpdk|gqZnIB+E7Bjm&MjU?|dE!^qG1JiEiX;;!(B?B- z5Dhg(W@BM!kyE1X{FcA|S{WBaHx}#!6Usu^BqFM(;U5gYoSjvfhUm*G$`@@92*~Jn ziUH+#(8ABnXB+qL-!FSExE2G*AT0HBnIJS^HRY6h$T1n+xWMG7Qw?UI6x7Ay66v9k zArhc8wq8%@QBTGnn+bQ2x~kIP;CIpVPC7BNL!3NH32{!?8XS1eB#J8YOf?I?I6=^9Nz*jC z3s|92eF!O8I)d^TED^N2g$U<_g_4j=)12Z3@g0Wy=&d#8lqyVU5hy=sJ zi(y|+GSXIh2_8W)68k2%2Tz|nBlr63^^$>-cnq7s&(oI9#sGL+yZsFSC7MRmE>^u) zCNWFCQCEh`V|^QXA1V>tdsXI_@Wiz+LX!79u*@R}B5_7p3BtR?F}nFj<)Gn_ls<3% zhe!gFdIA`sb`CP-Qe**4l+r(`F_3ULf8kQIZ|=zp2`45bBxae}L|(vr^&;CUAnHGO zU=l7l&|~w!;M__&$V?8m98FZAp@4)_fPu>Tkvyb>SE*^~;!N*DhFI8fN|@}G`5?HL zYC;CjNclpf5(~8Vr>{dxvdg`nKew27Ca&e#T8Y8FMTP6JSZfiFG{F=YK0i5GOov5X zwE`(4vv2Xgy3e;f=;a|0l29+bB^n*dw`gIPC}*E@pWIAQ?8EF5gmnEPbD|aeOh@qs zzxA;)1C9ItOZ#-Geffl0ZrZ-p(V~u&F_sKEC72NOd;?0$aRwmmt_P7j)!YF(?rPQk z;Abx5B1w&d8C(Wu;h;|Rl)bpHLYca!!T!~^{*(NW0BT0lgFM$jWDkyIetSH5%qQ1t zfrZ7Zu&_)m1T_gyTX1+PZv;3Ek=d2^y?6#+n(|Agf!*p2i!k17skZOM$*&@(4? z0DPSk7kV;5`IHP!v&;PiQ*N+H!g9A3l854a?$A;A53vZ#fMj0^T|zF&h*c(y1`q)a z8VDjtOaWyBYJ4u^5i~%86e*=aH)-{H#PCK~SmpBka%Egc##34ua<#ZekxY`x@k!lr zq0N$o0;AWhMTAEKmZcql?r2d?o(<@vr$^R_H_0b{Hwvwnq$fOne%JS=C5M8`2#7>& zFY^jkvN?2-lTx#;s()(PH3=SyEv^-hU zh}A+(FB?XuJ2V#c1tr`MsF*cvmE!_MM!_S9V1$4Qa6amrFaa%uKumQN8Ci%z*mYH5 zYc`LXLqH)QBM;Y9_ec?tnnQu|PHx`MHzJCiSq{*g44RMm?2zQUdG zl&nuUPfpu~?Id(Uh7aTg8?5PrakI9(*Yb9AMab&o$ ztSty)*fVl1T4Yf8>FOCBZ_#v2??Ng!%8T8Sm-;SXBlT;t3`?zuL{uug1q@I7a|z{i zmRW`9X}vTgCA^%cP8IBT1Vqwmli=Q+)HI6XIg@P`urA?Yh+;%pJ{h9#t@5`CUq&Vj zIWXMiA@VH<{Be^y5|Pjl5T~DQhcq;Rd``PrMCa;QyXvPnE0r!LGzyd}LX=o_Qdg}zEJ z**#=yq=k0>=3oAkKf-@@PR3E_jRdQQ)$d{SCeiy`K|&r$l86+-L&!Y8b#z~~IbAWn zRq^R;VVoc0l}wx86W*0vt)Za#Rhg^}TR%129G`uaBS z0I41@P|#zbkP7tbp-V>S2~;~AGNDk{1A7L6M1Gn^0aT~*DN}8Ma-oM9d%z6FEQ>IOJ|aj!YL@ zK82q!uR|(qt;{xqKC&K?e#CN1jOS%i@~h~LH9b64YLb+AqDBBLW^^*u-@0i5ZJ}#o z0MUPDuQJeTykSmYsOfG!r)w@Ozq3%XG6_?<$8ZNBtGfE;DU2yUZD(MsSL116LPUfL z$Tdp>t(Fj=W_0iklgo(u@#mQQNh{rM*NG+sE&SL$G)9S09k4aLY{hI-$9EKSkTs0? z2aIFDC&U_bb!!;LgnP|Z9^Kyb*)xadi(Mb2jOr|p5nF|B60-w%-SwbS^7#bH*$gnf z4AuY3+J_AvZR~8+Z=)n}7Oj;?8{#oZ-wRy)V%5DVpN=}GG@YEgz{r(xG#?Y{f{0Un zc&RPdmm-5XXAU_Xbm*0VF0jtPP~v3YW!U-$&)xT3YIZg{#`8CS+mLKEFu`!7=su> z%MR?YI4$(RLu2zQy4#p$jr25UHlTuaZRUT^MHa`?vsoFwEsM04u> zLCv%Z(-ZJeNv^JM8CkT3MFcoJ0ufx(@B{{=f3yzOBF)LvSwj=Q+4)VhO+`B_9y1^r zmv9Rcp(Ccy?wLv@!GR2D0YraeTaXh|?5=wiZEs2tFHl-Jb}5B%<&$5pi;|0hHUOsM z>%jqx8SFBbC==@7Q+_cab6I{GsZlTnf`hqKrJUNi1gTm_i1hdgo*>2*N!LmJDJ2Fq z9m@8{3z+nQ3T}(_C_x2L(T-#w{dA;9)PW6c(;c}-PgrY zhZ-Z$5krWV7>VNyF4$mo4~XbDXujFI%{6R9?V&b8$uz>Tma>p~{>C`4Ae|utgQr3UX+^`qSb1Z^a4JDSA)so=#R6om z)`ic!m{t7zt&$NZn7h{if&>7VRfP%fTEF@kPRC}wP}dkJ@pnI{%|$K2?yvv;pZXrG zk_C8-Qxs3UeF%Gzhui%Ooe4M{7P>i*+0oBV(Gv^yZvA=)TGAXKlnc`fbZxZ_9%;#T zu7_bE+zsX-hpoa-4sUONSx>}rhPK_f;9r~1ww^qwe>Rrh{Z8W~L%+jlGs9;MO<30* zrBv9~nvlm}`SzjJ^*O^Q-#p!OF6*_V?)pe{d9pzP^&ewP>w_`PfAieZdr<=G*fDRd z7<%k^O$zQFg90>$se|AIU-~QGt_Ony9zQ^c2ldUgLNP!zHOiI!0P=h00unhJ&@ay} zLF+sd1v>oJ-w*a! zUK2FX+c1U_g43K=dV?z^26Y4N0i-qi9yG7Q@9pOyUQ3O{Su(n3Sibxyodrl$RBLHW zb?sUJLJqKN?Uw~YT{LVV+R7h66o}Zs3>M-3us$dy2*)X)jF;)mW8kJ224Ga4x73$i zKR-o};9k-$BXuX=a2P>e6rLRt|7@Ysy-^UJ$<)AJBpHT*Lb;uVX#^&rgaH+VbdXor z?wta`4y9TbrKln-FOhImyr-4=@Fi)8xPvISURr?Do?Rg~k?PWL7AKl)MB%1sIb#?| zLQiPGC4C38j}B(KAXJ4%-5&4N{7#XRfcws1>dhStY!6`Nn16NUzK$5E#4~VD697u4pF3gz5Svy|Sl(*Df zbEkZABrw6sVK>Z7l(}MLQljN^WHI}e8|$E1?M{m>c*{#OO+qSTf4(BVbAt5t(xj26 zY8H5XiUCMl(W)3B1hlsHYsISQHj$;5fN8yWL1UJzv>fjVROg4`q_E^M@Je7fx_kq4 z#I?(ZHzp<+i&;p~Kq)N~jSZrgk~RC``qKfUi9aiTfP{%6mtCV7G*#dl=-_KN37)zq zByQs;657=7HUn@Gu`jybl53CvRz*#+PEQoSrx+bB%-jvv8@RB#LPOhj6+xF`3Zg_w z6v8upwXs`7X6#Wm=o{0LPVtHJs}oNO)$14byzUn+oGJpUq!hR@=>(B$^rKytViu3@Yc%_hu1W~6 zK1Md4R=(JZAQW4+m~!S57npH}44mo0Q5Oe`_dC{KnwTBZPcl6hO%%unNCLB30Y4kJ zbb5k{npp2$JpwR~7(~oZ0p&w{_)>IE?Y<$geo#7)rl4u|zLMn5(iO@)+FM3Ur$2&(SHWHf0 z7=}eGY+}$HYB>~SibGNk<>&@dIM6w*=6{+{P01P`v&0B_?2NR;<4rs`MOv)CNZQg1 z0v$0c1wjv&S{5NBNp%TBL))p8r=C*6PUc@9)#vCIWTzE}6j74;cSt96d96POzJd;G zy^jC9Y#bFMh-B8pq`^dRV%(#)G*`BuNce5qjR8T-S1j?*`*g2z1y2SMoVW*Q0o~f=yBYUv1;7Zh6;`|tQg7B=u2{}#u{(ks3j13?? z3XBCjoO6L&=z}XF50djR;po~4^G>uBx7J*oxwlZjACggW=Fmp)Yt&c!iY@00I7l*p z=haL$_)bzX$x(UCNVi4=_aHip0076YAS2b+efU1w^VGxZo?+ncC3E!Kk~~-qmbVN~ z4kAr2wUkij0s?fS4CGn7(q3r)oqi z1A{N>OGl8><{Q?Pr_lGC%nQg0HvdR&5GodZ7b7HnTh3Bt8F)2`hb0IRGTVo3rTo|q znNIkc-=H~kmW5<1wDesY0&*NVoFG*RqB04i?!<6IKim|C3DI5#k61Q64OzfR=1}=} zBuN3+*9Qg(@^8&4ygfQrC(2s2NmjI?%rFUbLN?J5eF!Pc6*Az31cC5H$@_Q*jsv{vbJYx;)5A+eS&iV;JrDLQ!pb2Oxt!&J4RhqY{!&uaH&Z%_KOh&N ztOX-N{lw7dvgC;Zj3PH;M5xD*LSb4@n|j2Mp)$>Yl+j89LZ$KV*ezKl4gJ;c;(lT0 zUBRBI4+a$?SI8}O3*Nz7b&Bt;xHEOCmBm&GF)t33#KK%H#EWy6v05ZzYbe%hP%1`I z9#k=8IofdY{4vD|seb^o_QQJM3cH6z#SXg;SGoeU*3v=`8wXdw_~+9^?p!EHawJ$Y!kjGVeV8y#Cbl6966&v`Ep8RV%aEKSEQ5 z`Xm#!iY=GX7tSi6;CwZG-K*+KGP?AE1 z2x5Urh0irY4S3Hi-7}u*WKmFEn#g%?5d3?$)mv4 z+G@}uZxHdQsEM&=n3-?totP~9;ocET4#K5uV8@c8Ln0u8QY#J$DB*QtB^)mgvUhc1 z!wjvdUL}~7pZv$=;DO-v@~P2bkYp)ncokVqXXw5e0orzYg08d9j6#8<6hMx1?$VmQ zCRi8hFod{+MdNibvD3k)ANl1Cg9VZ@9n}dnTu4ZEjEI1O3t%gy#Mqm8UklwZF^tm> zrw*+yxhF6Vl%K+r83LeS^jkSs=`wTiTKct3)QSnCSfW#FW>*Os3>3IJld>Z0bO?3MO^ExAD)0=EFD{^~ zlYvP>(bEU>TObc?yKF0 zU0n0E$_Q~87|KwIWIQc9j-|cxe1;)t^@e9n+EX{dKP*)V%W zSXeGVNeh*unf-klBUvA)ZMnYg~_@J)mP{g=4)9)797TVz?i_4hFV) z0hFOr4y$(;^Aw;ltpree=?;z#F}cY1fC1koM9QV)@{LBl3&9JaeWLttcrs(CE%8ba zEtD{0Lb>caJ}_E07V}P@z#!40y_Bca12r|aoA^3EE`=o0rSixd6t<9FW%7kmnZQ0l zZ~*-3M~e8hs)JyrUrR?4m@vM-`QY)r&mTPa(y#ya)}y;S_2np6dM5ZT|koon5YFNx4$5c`bScIFZZ5Fm5Mf^*UWA z0B#ABmfSeFHD2xpe~AxCcOn0I`Q(y}nWt}!X`xjT00bAsU!jjjudKjLN2zO1CAm@) zCV%-LECJxNCqesGU``teAwQOow~H-B#82;U?D{S5 z-ruZ04M9&2>W>Y6x#PcXzu3CFSrY-kdb|2!nzJ?8dHng4t?kcuc>SX%n|HRK+}*tE zk9)fP=ska5dw27}=5BemiDq6_$}g(+t2wByq#8sVr7r2c@SLL$0K(37w3=_slkVWl z2uKQX!LOH=U8XEe#?>#5k)nnE7I7gqAKtG@0aq}JF!l8O+w;Bp5Sv=Yj674{X{bjG z&St?rLLhQFplBf8JhUQtfszj^XgWg0lk*Lo``VM2@pwHZt3dPld~cmkHLr_AfWxZA zDrLc$!f2xB-d@!r4RLJp&BDWf8)j!Z94E69!x z+qCZU+^nss(OIpl9l`4QvDx?Y$aC!xdh zk)*{@LK)In>ihRG5h!rMiQQyPj1tKcXc?vy*DMJLNH z&3B4{o9L`mDNCZ=BKT5(?3HB1~k~2$zk}0to^8o(zFVMj6zp@RK`Y&~Xgg{J(P11~vI833xP(N8Q zb$b`H2k4JWmG`r&Osg<1n!GpEvcU;=o{U<9aMA-+>a~=Px0H$z*|e#>=Cs~V2LFLd z)q&cU{MxMVDoAEZ90Af9>v!Y*z5e4Uw+Ua0(S=}+=GI3yZ+%=}i>e=+VB*5kB54w; ziTQ2&VLqdXrbc1RjU<1i8O9bxiK!_IdOwyC?G)B51aK3XS}efb=MAOE=e8 zqdr##L-3d1lvw)YijF3Rl@q%dVN(1&42m=c`YTKlz( zROA>Zk)S3+1Bvh&@4561AtUKMfZJQ|Fa&7Y`jEapD98eFej<8%tVia9U40QtvH3u) z^IbR3A`3Dktz=SWVu=PG9-IzFHf`IEIEOZiQ)vK;@=h0={)NW=aTI}<>~W9;>N6_f z1-UjvYiYV+G_2!((>W%X8qsK{#{#2Kyi3h1?)T9pjL{3w>cP-^m$?~iNWTHWoE9+s1fDYj|}T}AVm{fNW^ z*fDGvZ)UEVL*f`|7^a%+M8+vnj?*VdJGT5x8?0Vg(8k`pujIest)DQ*U)L1^EXW|` zugGm4+~QY5^Y@AatS(Q^ELGW(uZz9neWQ!lh#6eZ5sgozTu-eWeJ9PRK0W+_-M{rH zBEj^-0ihvK>iSG6WuQ5LPc%Y!enX)C_2?{qzq?qCr#IO6WEGeK__LCpMgAhPZjL_S z$>R2u79%{J(6^|Gz`cvN#nnMr&#^L5kI9>NXU{IC7tf}^iVp4n`K|42*B>l)NdRqS z*MCXkFFHkTV+ZUz3YN0d2){W>{9*J=k5MY`+X{w*%)l7|-gPrdCoN03ho&|q2gg=f zMlhZ_ZBiJ?wBs*ix}=7*(&+FB@nYK6KdgICCk8~sL(LN;rr@JU~oiC#O{k~FJ^v~S<6Uljl6)v5q8rx{x)vM>tC zJmq48#J{uoVJXS0iUd%;E$d~f2H^?B62|K#6DscVm7i^|t^IRWSEP_J z3QCZw7$&lp!py{a(|}+|T1!o?>x9X?vUOVN%DRobf)uR(A`=C-ibflA-Rt+EUiIq6 z=ERc6#Q}XAPdmw|MssWvJQt&&h| zT%$Yn>#}^zU~>B|Z3e&ecR#6Z3P72MbBeO~ph?;!;YhFavP!Ed9ZX{`bM?643`%SV z?c!v}=E>`_LeZF_u#iQheIQslJ7q=U_ztouY=pM&A{`cfq)I`Gj0#U$7)1_)mb`2k zf23%Y(q#8$*&ZTLhG{S7PH?@v*^oiw&j7C4I3fSo2-k&-T9VJCkV3&M{MNjioJHn1 z(64{S%lrWJlpv$T&5@@DN{tAfMenOw8B^^vAZi$MeU+%K(gz*4>!&i`jFB<22jy2I z7G^&5Vi~C}x~;_@zCF^-;3U^|S3}jrthJ?qD07k8%w9y1*>jbJul)X9dz_6s?_jZ6 zNk@JB@bu`wwf~SGH?RWTRIGr~x1pemc^WPJV!Foo=gLq1usqtxm-~(oTmL2&bOJ^@ zeN*2M*Pl?nHI7ILe$6R1Iq^aw8gpJy9my<(t5ake79-NajIdv6E=%(ZaqNw0ST1VO zeNIvgRC#hXMS(##RVD^+0Z=Z4W`Ttc`3+f zcihs_{8fv?uP6&Rwvx~qoaVAvU*u@?D(6t3i|S8{dOIgb<@7zv1qesB)!1U~g>Rj! z-nSsMhnxY*9@LUQv!7FmHG--D2wY6-X0jkRZ<6~>7K46;kQ`+>2!=OpMoMj9{(8g750XPO!BT1kbaZNj4q@f1(!D}-dmMJpW?IHN6qYFZtZ zOx?W~+~A;Zvtz2K1xf&Z9F3lX2y2(}di=VVkhqZnj}vug7I-T22lTF9QCmzS5cVQUFO~)0& z1wg7|@Dn>2h>lpwb1^42 z&*8Rq`YMa;_bH4s89ZW-`vGda%e!zh8a89x_b_nLO?V9Sq~HEgU2u=xDI0*|ql%&u zHlAmrTmM0MI6^}`pBC&vL@9Suc_k$-kT^?i(2h&G zr2cJ zx`%~SL&Tt6bw&&^mX!iQIbY`*pioeOV5^{HDcES+;X8j%;_)NuDmyZHAWkqP{wdwK+9H2P?N@AFefnk;BlA7mKkmrLf= zK$5YYbplpB((M07PfH(ha(vV@&$&|MAgwy)<)Q>gz1EPuAs}F|?cj->h z3tOe*kv#?~0+ca7s9_EKi?%Dck{j(IagYoG_Gq-@{M6ON$nx+0k^QfBTDKR(ybr6& zg0HHxlz|Fk<%kXOv(kgn?o3Iw8ZJ+mtvEgUhbS|hy6uct%NW3mxt#^a{~9Ge@lbU- zUUOOe_GsdyS85ZzX{R{A_QrFF7*d09*wGhr#3ANP0EOX-K+eg`ZN%~W|K}h7@gLzo z<+lXzqBk`Fw|QKR)u#GONW4gA*c9;zIJL-nvuhz5lA?dDE43^AT{rMF)z8HukKPmt}FNHw{BtS2y{%L=!%`WOXQCAorRzVai<$zDf+eCNOD&$&s2oS!A+uw zez*JXi=){k-e@m0fU*yMCmR595?B*;U1LmUKD9)gDh$9fk(US&WB&LLwZGaIT>RE7C|lqt!+OoE~P+0pU&+%=xn4_2Br z;P5`>6%Y#AZ+IPromebR5rwvAkq4n;7L%n?!Vaq163d+2p3@aBX4E-EG?#1+29etZD8}Ph32P zpJGrOg{iLN+9=>s$LHUru(r<4@Q;ccZxq&NhtUN(p`#6*U)0EO|A44E*bXrrWPInj z%^^_48%YXKt49Do{FMYjNEyumT5KsC;5Z~`goaRZFnXmk0B`Xg8kK8*^)LSL{lEIl zKbrsG!@v3$2s%V<(K@ zP1Qra?O_lCdqu_*6MDH!5TWB|4C+icyBU$*9UjW5-Q3vqX(IT?oy{kk8xNeDIC$iH z7%jT9yS4lI?$-9B`d5QF1nkqM08@nZkYJJ^^#zq1zHQo6>g;WO)~nbsLl!eztEFWw z+-Qo#6u|O~c?I^^7)e##Yp&jw`dq-lLqU>`WE!O9%&*tzh_IfI5eeNDzZyb zC{k79lhM+)S;vDEvUYPJoq7cB&<|@L2^wNE$s#~xwFbY~G`%{#1l^AC2QURwzO{Y; zf?9ucs*9uO`8mnEgBem4w^7`N3$YZOqRisM1?XO@xJ|W{XtkoQ%dl*nC`tx#m6MhU z688w_;XQKs1cPdEJpUJE@77ysnw^LBRdMg{+Xq&UM$Q3d8bycIt?owkC2%F?4xw}YiikqzJ>I*@KScalRab($!6B`2rP7DWefB=GH_#(d0 zUEFo!pD_6W(ND;;-giCETHod_&8Wu*7PQ zU%-?+;3_4?9YLA~k7v~tC3${u#{*>(m}NCwl5l~;aD;Ti7`n$C7m=EC-*~_BNLU$B zxE90^fG7y&1=7%z$#>&->i2I{jsWZ0DBC|NRQ#5~X=|M8I52CD5nWgYW9TMpDy1l$ z#9B})W}nQjTy8h_j#VjL5>;gfOZ)6Y{~)oh8ZX1>8+RMo|BSwQ$I2?d~pvfR?UeL)ZZ&MQORqvsKBq`@SdVcn zT#waxd2wlSO0o^I8n!``BWne0m3CFa!5B+K6|v0>%R;B1i4l$E(uQ9tHvP{9!=iH{ z^Q~=7)RJ&Z=nz4X(IZxl?fSp_$3OkuKYaa9{-2-xyMJtFXR)@9gAe8%Enu!AZjtCz^dJ6#fE1`j9yv4u{YoC<80{J_=T-+y4XQTaVW=Uf5QyPPwPB-~|U&7F(-I7`F9|?Q8)-;~W|$e^ep;)zuoMJ_F^X{xp~NmXAdr z-6Z|B5(AjQljCaC0rCltAtBYl1QEs1XuBjza*Q?6h6qj5WR^!?hu|N=BHW)!Ott`O z;c57d(D{w4p|FXoX-{W1<-opCdgn?kBk`*Qy6dwNg?2jb#a6B4_5xMDejnj2Er-@A zi96#TP@U`dFr4p$J%tGIFo2OzOu2bkZgb`Z#rPtOOR}I=CT# z;Sx|&-YErKd}GroXK((hDlT|4{AGkkFzFY`rS$^{+#LS3DWa+)6m=+DkV<6o9 z9{FZe@c_ubh|J8qEmIea_@Ul9m%x`%HhB!$U~z?HKxPQZ7~*?+-+fg8CDVLZ3N ztuXii!KM6fVA$+9Un2SzIjyhh_^LP}_`)g=N4_2~topg$gO7LWPuxWkrmzE$zNUPG z>mQZ6$>N&E3B-UK1~=85NY)`% zt)fA9WY6G}upBxSpyON9eTZh*J4Clvi8LGQX8oq?(Z6Mfs}=L0M8<*TBvhu0il!hz z$2Lc69veWbJHsn|yCT#uW94^%UYzvAu($wLZY`I3^$urVY@+Z7aGNg>)9{Cw;bR>* ztJX6NDLcsR0os^S%67^D3_z#{WN~rD2!NZZuc&p%%*xbvx;ig&jMB~GE>av>h={27 z@K#BuWnwG3Q;Tc{D9gmqXx~kzQ&XZ#J0bswb(I8E8Ew^rY8vy+oK<^=%n=$~ZoqRP zIa`J<{NwVlI>bK9BUxVIWm|3*%#wP`y0Uob@RPHgoQ*({J9KIJuqqFfGzvUAey2u60VRm6U+rf3ic+K&1mDaezzNHB(9ox5y!{~(KQq)XRW0mR<}Zlte)LV z6nh|uxJLvMVImA`p8bAQS2&H!`iYT zo2EKHW}EVD>BCZ$X^pu8c5r7kx`D8xdt|^E>y)}&Xd70a$hMgrASKriL;yaw6-HSX z(oYFZ9ZWyKSpi}hG>CRqKl2RJPF9kBihFRe@G4F*9*^`lUX=O=m{8SG%*G8^Es{L~ zuwBZFHi_Yci(XsRsIjN~@SU29Vvga8Bj4TT1-uD}l_QMa!^_VE#as&ay zO_xNWfS~By{Jtk#O}ZgvwDE?mhRp#2GcIpE_Bd#B2kZ89muu23y6q>~1{dbV)VmIu ziTRg5`IA2~Cb06upoc8$y3TKh>d{?m9#fKCraMbH@!E5j;yd}_y+g`7O0R1@Xszdy z^J(Aw>atpc^eIv^q}F`rd*6TGO~vqiA)D)}V0&m(-w*(r`PS^mb}PJUt|die0B|y? zo`03f?0T30j?U`ajOb402Rv@5+y3?$(I<=pIdN-whz>(1D7!3L8P}k`reQ^hI1&|E zDBcgohAZteTTY*q$p zhSCz62R}m>fNivR=&AiV5}xa!4cUFX{xe$Kl^K8mBFX)TUnxCf$y6DE7T>vtuEoUZ z19T9Zg0!eXERqcvN$yIvL0@3Rb)oQ^y97 z^9edB{;`6VZt~=@M36>klnz3uE;(|pd+J@&@n|~*4ryRl9894uXZfYNTolqFCIvI3 zl9$efk`_CITc%256lez_3|31xgK1+NZjHDVajNv%)Y?!6ckk70=XaGeSQ2oksOEez zs~<7*Z~c6Z&Vkd;V9DlTwETreatDX}-Aop#oiFoc;(k!`dEnXa1|`ebK!ZRqdfZ$V z*IixEwPiym23p@eF-r-loMUFlV-_>==#!ta^d7jpayQNPh(6+>x09ERu!cpz2$tj) zBSVZszMQF{3gB(FqK{y1M~%}Rjopc4+K%5Qd6bd^^w9yrs_Lu=hq*(~Njoe1&BF3M z%#5v6N{!PZyLIoxe>plpL~U>GjU5evjKe@OA^>Rna(C472>rp~>j&eqp0l$cT?mqx z+|Uq>Ci-PAykf9YxT*3tWs&f)=sR}>`chhf^wk)*(V6`dhi)huQE@&8lOE2FtRTN0 zQqCEMkK8>S%S;apVAqtS<`RI9oM-{@T}Z~drj!KLhv1>ErEM4z zt0(QF(@5VPyX$?i_-1`>YrA8NHZXTCtLMEbN`U@}2c=4Ox)fL9(Gskn-Uc27^@o;< z^+h)1Yl_AP4BWnb3xBPZ?$Ha&cIE;-l{Crv80#wP+ab-GM~Gn5f5ASa#2R7BIO^3F z)q#uOBMS&!XzGIE$kx+J>feStnAdQ3^J#tXTUG%ZcY=(t`YF%>0fAf$oS0{_7gY|t zs&09{E-CpNP`pvvkYXkMqm%S%8m-)O`{DMZN1PUc853I{`93%6M2gZB0X2NS`0mgP zaUM(*)}Y`#n~zf8Rmt^mua@W104!4Kg?QMkp2~4W7Rf&*1#? z6$A52;yg(#t`H-c(IlyESoz2C=RSr25steSBS04Gfy0)#W-=Vy)w%#v6UUQd;?dEI zDcHHw#@y;<8VD33b-bTJhdU5|DXGtO$?fDMQmx2)fK;ppqu=7>hys)spUAI0$1rSn zuT3NF(oGo`BnTp0EH2>}%-)z$UpEVmQuqSeMW=yx@wIr@IY(xhx|jA%pGngiWp*QJ z0A>vG3kYQCq~%mu&pi4ev3Zj{NaO_R`Zv*cgBlr76VDf97F94JvZTzHoX0LU*9F>P zt?mQ$s7F62eN^}_xM)W+2h%K6tv7XgLX+8h*ITLPjJ%-G;UzlvS<-TSXYSpyLQ&=n z!G!GBE>&jM1i5Pgqsf6q%EW8&ZXn-MqClbzhDX2Ux{w<5k>5<3H>)(6C)sfxGY6BE zdA%b(3{Vd}+A-#pA`=a6p3D2S@87mJ+S?@s!hc20`M#4V%=s1Z%pBJvMGP=Y(CLkQ8QNxA^=`R4J3)5y8cQ^M;+?`@huf-AXv$_XKOdz5s|_!`60;cU_C9g z2s`sPdT>e)O`ZIcqTnroZwl>J^v*g?guR=%HFw_7rsa4dGr>YJl^ovW#*OA@8`e>i z*UL4>F5d9Ibg||H$ND;UWWX0738zf06hU`j-*tVwTYNi^#{_cAlt9;*_`q^AFq-OJ zLr}hK^CeP(tGu+1NlNa}k)b*sbB1W?#6m3`NOw^Y@ySb#T#g|nG7B=ohqM&y;7HT0 zjMlOg404c!PPmKFn5J34cyMGJfjiC4F`ayaCJ_c4)^n7V4ve>~xFkYF!E+i_&_OFm z-AL!EVDDR&qMXn#UJw*KgUsU+NKMo65~&0whgX$4tEN0j1VoJuefiWagHCto|KJGC zGrx_oZooRey?E_zU??>Bl9d2R?Cq7ffVnH0B6V{pLDA zkwFLp9!9nvb@LK6CAS!mnX07V1I`k8Ez32qh+9JA#SC7mK%J7f_k&Uh`U6|LMZTq6 z-Vk3KFJ7HNKQCqz5B00*QI>B(`N``lBao4e@5dD8qYUU!LCxgqVCFpBk6g3hdtL(Y zNlY9lNADw+-OO!wH$POxLN5lg?LK+-xUQgock|wd{^NtEPyBo1?Z-QxJpEwn@$OFj z8%0<1(e}>ApV{xMDzZ~cvt2(Kc5uGHQWT~XZ%iY(u-e)xF3dJlUK4MBj7-Z7ST{ab z+};(3fxMGbm~VwGOZqu07IXLqd${*>>;Cp#&W`Kd-MnAdC_rrpU>D{Wg%SiLes*@@ zmc{iQG0(rYRs_N~^gnp=Wcd|&NqxMo=!{}c=IpEgqIZs>m|XKEy6L@vSpxRG%0c+u&mARV4fxofE#`nxr5GFJ_jo3R<_NG)h|7HowX;BNLJ%$Wl$8e%c zB>7y>IkRRUY?>Dz3kxoOmpTxMv@N~a1;y|Zy4l2mA8X`VVMfqgbE2Ee$+?>yIMozd z!dLzD|*`a8-f|LDhqF>r{_#7>(4%> zeTAliOhKcCE^%%3eX~LzWrEcs&7vX0r?#Ft+2miQH+Du>^6N`84c#5m)znikUDv<; zj2YtB;^+p%mQYQp^;}^Zja-~l2V$(Eg^--=@ondTPK(LMvw|ZkGaIX3jCpVA~j2&QGT%L=p zl3Vp(%)f1~Ev7awGsx!Ze8Z0zA&`RF5GBx#0J~h6OsU$#PGb8Am8QJzfZRmoBM2?z zS)tQW-P>S(al|$a+qd4f)@tBt1R*X7Vp!p2d5P0djQp%yXzEI;nynV2kd;%9dPucL0jPdyC5rbYHY>+0Zd0 zD0(%KxD29UTPZG<`7Jv*#bsl#SFUt2dU)oYKBDwvXxTj}nJJB?` z`}p4cx1JO_!ijc>ES(eVL?pEfE(Z89J7-cey3(McrSgZ>hi}$X7<9gYP;oViackGD zKsYSys;$4mAhsM4znunjMx!*2!)^gV3P6tb4Q0_TDQ%ar}&{!E;Ds~hLXhtOX;Qxwjn!TSUVkl=lW@N zHwqwW?kUCQ?rV(PDxydV6^fLj;>>PlULMV>Ro@=pg1>A5aISTIvcG>-5TB{LTb(ra zC0(GK6=@D#3fEgQbm%^nC{HQ}kB)nGs*X96vmxMOR2e@!H+_75uIGCuyAqf}x_GSg5?zP+@DI?D)gd z2Vv~Jn4ZjSo?HE6_+P1fDK)HYQLq_y3k}+2Rv>qk+$KF43aEgPQ7w^`mz?xi^0h`_ zX>~YKr){*qi;<$u(d>fo$Es6+7Z^n+>ul^F&J7f>y9heiuLC7Og7L)^{+OjsxzpQ! z;bA}1oE?cL{Xdwzd=6NXz|r*}fc1Xx{L9ssDsf;YHem~$>(>wFXxq4fHE--)Au#Jw zE;ZlDgOURVNvc4!w$fTv0Rsc zr6CIcW=J{ldrK>mJcD1!KMUocZO}vD%L=Ii zvl&nPKmK{VgNb+u@gQHgejc4PYT|*j_MnQ5D$UI9;fT2iQkW<;){2^)cz~CbA zu-pU9T}hi48V=tZJv+38NvXGN$<{+bdtG|sT$!XHQWeW9{kiu4O@7OyrUUHMVyri{IvL&D;=2S6SN<~&0+)&S`XP@ssOOsS!sU=>4j35P*{k3UIm%b^77*b zHhooMa8R+5N-A#^7m@Io%_a^fGD7bC(5vwZv%aF;Zla~(?qZI_QUbWCCPTXor2(un zD+*+O)!Q2yvJ`k*=9Prx=3ttam2(_CIXSAsjmaX z>>@*zHj!u!@D+|gmzFIc_dGB3muh9RF;2!qKncNdXpNN=R;MrK#+r>A@9R z@`L{Dh)b+WrXa45wzJHiHRbovz-&I8po2!epz^azA1GcZ2iKj=9HYAHE8Z$e8Q~g| z0dYO9B4YJHSb?2G;U7i^u;xeSQ^toA78klwHm>;QEhHVITP4`#mRML~L=su6 zI;VRknUqfyM|3r4+^$D+#M#P$lDU9L*P#D|Xksb`;}_8HSBtov34%-IlkMDRQXRnd|!2@9bP& z?b&$2cWPh)dM&3kt)d-!B$aoXhET%kC_v{mH8x73k^~-_wx0)88&8nfpFP}uwB?fN z;Gz^z)OA|0gVBqOODdK`>~1(3r$8#I<;yjnlHIQK2Ygy&SLjr7v~b-4 zGT`fiDcvGC+~2xldP=j4{$EaJqn#R@XN08xf!j$|CZ1n+?P@V>G-P6wN$<&UxJ1|z$4J|2=TOFfaD4*!s6tUZerBh*{{@dm8pK?H|sBwP)f6wl4Hrd2y~Vk>+s$f>9_b7&ZVhF0PbE1M8*X3p>~a_O%}Fdd$yXF3}Z~Fv;O%(S zBm`nN6&WGz?Bah8HB>J=rzwJ7C~ea~-Gn|!^2!%U^*uurHNeU9PNHzhki_b6E#gsX z4H-s>vSe0R`X!!q%*AffI6Ogy61E$=MH93hTT$`Us{o9O6UAJmMhRqq&V+ba5La9fL53 zHsceBS6zVx-DTs3Z6*B$6;Fgf2AidG5spRaN_`Nl$+cgvJb@qEzxeZa{^HN;U!W*@ zx5@cJ(%&x7AhP*@+ws~$>HkN^_%kv&7G}m7_F{6`H{aG$)4D}1G`?G!HKS*jMYijQ zI)yq}pNKI{=+#g(ZsY)&3w*j~2O>etX1UcsFcOA)XPR^2vGfqfiA_3*I6?LT`$UFG z3ZkPa+rotXmb~QQo+YZr6kJ+NBU|=9Y6>dlz!f7GBz3?$EbYNj&B~rt()&1wiFXdb z6EM&qWuJHd6}U+YCE}nJPVZO)gFT9CDLk1s{lI<^$wxr$UKIcjv`og!Z8^FLJwof+ z&C|)36mjjx7cf=pra^iA-@t!%dnWPBKqW8G$#Od~uG_E|R|Ufj3y_`<2A75!G}cJc~dKZrz{sh79L! z!;clV-O#i|z$E=E46LooNy?t^4$;v63XT7V2@gv_`krTDlMX!qgmQnE`51&IugQDFmKul(J$=DXRZHb&B5 zRo4>n2t?^#RzMLeNL4mKMl0!9KXPhTD+@~{vf*&V^ZMA8)2!VDH*6VxJ z6uI)9U5-NVl1_#AFS9F-~zfFZ~B3dQpXV zcvx>4fJ1w40x#CD61yz8u*;R+Cr=;w#i3~j8_kX})M8p3{Q8hAK_NG;`A7k%qYVKf z3snSLH)tWOK*4RO_ln~sX5Uyst>13WZb+j*C}TU-+d)=lc#wM|wT*0vUT3qZn;=Ln zvB8|-@l!x5S?UdtX!Podo-h;&2-2%fK>XEOmsjkrRDa4P4nnjR+6HIUd*BoySbBhZ z2(j`VA%HuU8zrC2qHek#(cAtr)x}9>_db}@Nsqw;%`KZHUKf;f z-6~x4VvM6jdmw&Sw3=+Lfpr>25VAhK+we<|NiPL_A-FJla!55~H?x^5_ZB4kwVhJv zQYvg|UcinK+-fB_qVJoi^VpxC7ZgYqME}**dHnB`5;pC@o?s-~(Z~t^(On^q!4V-=!nQ5^ph25(A^`EyH$_oM!|Sy^sa%`y0t>1? z<){j-B!c*H;+Dg46e;M^;x|7+^~Z~Hzm${XkEaNH!N`B7UNUTJ5r@7vK<0IXvsM;( zQ^JHWwVctKa&JDNcc8)9gwZ2kt5mUJNGAO@S;%!FF!JPimEO+9bicV0_1D42h+g=w zsJQ|O>-iro(=~ppS0y^IKE19RD05Wzh2vprZ+v55x;4su!2T!mS5%@f7uY}n3^|y< z)$om4s_>H98tj8pl!(__GJiE-QIl&uY;IHkmcj!7LL8rj1BuM=SXoYqf%B8f&Eb{O z0E>@XGQpII54ja(sFMCuSt}_)VR#R#Mix@_Hjp8}gNrX_eJ05jSWt8xOet=Cn2xkX zsGf%2cKxj0baz()T)aI+u-F^`WFIU%s1T4*a^$$ur7n#9)4(J=OWTXh{9((j!RAzoKk_hDXgp{cxZ#s82q0fhUsgI(AKI zrSC7f0)!Qd|{r(5*XiUpp_uX*dfw*5l6ORla<`G9n^WEPaqv{ZOJ4iacK$% zGoFt=cOKZgtTM;~`Vkc5`rdF`A{GP)koG2dw^AaY-3>DT5R0R%L}b+N$(2R#%9AzB z#8Rb|>?%3w!|4}Dn-z8#hG-m);Z+{dH6URb8ITtf-#~9u)F4tnBeW)aY|jt4fqO}t zj%+wU5*LajoXwZ=u2L>^|Ko=rSEXV?Jq&6-XNau2Nz6qw$p~yP+}Q@TXe8hk1&?rx z?AEMAVf~hM<->>*g{f15)9~rs5*CT&2qSLpVk_0xgNIdzbPpy-h+Z7*;#-H{OxC=b z@NyClZ{&c6kUzB_IdZ|t0CwU^I`}|nywKYE9tuH-fF^mI&$ysi(F00Xb84d}>vl&N zz***dR7xwkSmO3jNd1py&pq9IfJUVO(ZvdR$s^<{;B?&*Eq!se{bklV9%X^93kGIB z(^3M%z(`c{;80(DETkhx*)#y=qFt@YmZ&auxOHa8k!kq8`|)cCmCP` z`AJN+*htRp77PcSQNg7X%OOYdTs2jBP1X=6_$kED>4a0ilies8(oK>{+mbOUH7(Y< z*6nd*nRwQJg6^WbJywL3AOt~WARVjXp`lEpbFgE%-z-kyS!O@Un2;4@>2PG71aCw^ z4yX{N;Aaf^>0n@;#LMt7aqf!xm_B@>DuK(E>Grb-z=u z7#DuF|Lj}FtJh*BOI}=v^Ns{p)|d;gdI-ij37C&LrQPVAuuE$$K*KbyxXtYgy1ATq zeyD?=$3|Zd8@+D10PKwDq1V1!o{%I%j9tQwQqrSh3f?=+E@fYYWsZiV3w+fo6+QQj zk|ZYt4`BsZ+@!wvExW`KqK`#~I-LYSY@v%l$tj)JBipY&#roHI%oV5-OOSG_rzGRy zfw&e5c5cs)5digHuif%zef`(VsBV-_7!PPy%^AX!9zXnRykl73ajP1lf2}3g#4L2- zs8pSC$*`1D^(#8L874=&tBZxNYKt9eHxk4K7=L9MKZPeu+1@rIiAN_5E8wZ1ZS_9v z(~sr>^9X#)UJDL&f+i>xe+6vV+oWR_%9aAKAMz?Gp}=^?oSGvYOek--yQInWNbW7s z&WVhruU#U(dsYVCF9d)zm*NcU5Qczr%&MOTcON~u_hD^pYbm&TZ6pVE*`EY#)0W}p zX-L^Me>(Z?QnP?*(L$(FhlDhsA9R*+vo=?IC=Ibwwb-f2Pid$Al5ApYE_H*x3nU4d zd2fR~S$#}bGo`zBkP(zs9l{|OZ$Xd|7$Ub1EzyLOSE6xYx?xHhJQ%(NSq$obA(G>{ zBKnLv4`+$?sEi#gq>V1g;a(-dF6%BKGlC~jp=_B%^~3?_Um=!2iwh|^{7a}(ttW&| z%J2?{CkE;CZq?y@;3bppl)#Mz7+gRNYQxv+<9AsI{a&3MC^b^R5)*ZiD^UL)uU-|| zXwR;WH!7W56{T#7)ynGfO+&m#9OUUQ9XMC|5;V912d`^2!J0Sn%QR+R0nta*FE$odlkSx{7)$qw}jhR6wc|E%!Vw89(PCT872@5erKw zC8GpBIWZ?8Gg2Hws`L8ZP8wRGPI^^Hwc1yeFBjFR0Z+rL;JsTKY}qXsJ$dG#Wa4Nk zq~GKdWNQril|@8ioZjw}(gOpxfWGk^w4VB?DH6+1*t`^Et#invZok`XsHp8;0h)as(&R;?;hjrrWozU0(J zDxKnKk$6=4tAzvDO~*2fWw=cdOYKZC3}$H;D1V?mGkl3su+&qTIv;5;$hfGP zGgg_}-g+3NnQt6ewN#v);r<~;R9H7gS0!mVdGXC2dfQwJ$s%pPU~1mv#X2Q=XJ-Tv zV#*NeDI7LWMkvOS78Wci?UBY?<;{=Lb)dbCQVPG~uq%n-<|iEJ#~ z;^L5kjZzcX7-;lMx*JK=4R@?pCF+qXF`|LB53z(&fHiJSF-Uik_rg#5pDI}#!UbK` z>O)5Njv)&6wVJ`s&nK*_TA;q9K0O%e z>u4cy@qDtldOq8L8&Cbl&9CD-R~T%F|0)+E>bA7q{?SFva)1bD47StADqe;j5N4+M z8WaWAl2c@j3s`&iSNuSHTCRJimKFb`jIFAF)-&4sS8y@wV(mj8VI~;0fIc+(5!#7? zdAx!Gf*o1fj61`p2yB~5DK;_0E#dTO`%9_eP4M9Aiw*mI%!Dwin-xvd5g(Z&eT34N zVyk3P$r(wNdVBLTMxpB@4gY2!GQ%=^H)#igpUDr8z2xR8S^tSTrOO8%^03o3u`+~M zd3hbDY45*`P}6t|!Q3;8(K}H`oJL+%A6)B}KdQJ+AZM1T0}cXCJ5tqR^+;QslV36_ z9KfqRu|5wLD}qmpcdFyGjQ`=^?fIeoSN3P|2_1hYSlF4%gKjhR;Wx@OxgYj+Ehcf-J>H=oZxtq%3aV;FYNPaBtyo;kO9M4Z;>#f8AG>!5n;$}>zR+qH zH7g>&NQarMCAsyY%%fA%L8^MUlsZ&SIfatQj6zvshM<5H!>~M22tb(s za=$tuWr%TknA9JM;Kp1d%eHL78uQ!q#P%E&Y*k0uG%b9eakW9s8gL*cfs(KanSs+x z%;%}wi{P#LkIyWI{N8z*9;AaPzO59|O^3~b_!_PLUb*n0i ziMaF!)~6@X4v0!S=1_cs+o{Kx4453UaWF%h1gi*-NU{t@w-Y-`FKswAUbDC?W~tfd ztKMQ=Gmf!qKdnfRH$Z#ORaVEiF~~Dj=Utswv)Ax=6>7?!xH$vzcQC~~r^7RA>1x74yA(bqnxyjL~3j-VKIytSc0FUt%q2iLXNY2iQH+O^FqG(kC zB|w_%n$UXa`@y9O8(Q5fAeh$XtI|e_<#bcNByZwob7n&1#Nx!Gv-$UK+e$3mJjoF; zuM9`jGM-M))wC>xqS8-LmW_F$b9k?ozzM{Qw~J5?qqdzr`fxjow!JilMZxL+Ah(E z^^!nOuBnX~aRy7mL??Gs*&PH0Q&LopVVse#s=rb9nI$BiPEThHhY>-L^Zv1EUS=hSOp;it^v9D`~&-}Qsc~ionL=m-0TaydwI}k+zEuYnY1T0yq`CJ-C z38M6Wgb^(jw*cq9eE?+iy!gG6y%0wse=+Ht5jsrbfL@(Dwd9#(Nr{M|QG8cVC0$L& zrAXI4xH{VinUGk8m960liodK;@SeajZo6|I7VdgAC4?2F2kkvHmZH}y&K*2Mv`Im= zSVY*hNlc&|mbJ%Z$(4r?0eIP=-S&gYhZw-i#n=#D>9_YQmJbFDqz&d0ErU$PwLf~& z#ypRo`AwwC#ZJCeDI~2)!LP(9Xy@-$a~7f;ZhBs&)2CEZIu8h7Mhp#WaUB?r5|V^j$HNC;JsvTCB-?R-MUUyG0Hqt4=}d9QP<3Q-UwZomSaSJ~u(`jOO*t3@ z4mwmY!Yow|EIkNe<+H2V%0KlHX|I1Ui0>Klmwd@lGKAY?QYe}gFnkd~D-_UC#^qj_ zz{}@oD^(wEA<%FNn#c3!HU41N;Y>JqfRG{rgZ2Hr>7@f7ef(4(0_oO&rYyFQ?&f|3 ztUwvjq_#fEdO(LCba-2!Q>4F0M!)zkNT4+9)47SkM`+Z8gr$>d^?0mR6(aRB=QS?i z&0wzfJOt{5x<(?m$bSPIFrzIc`QDYm=j5^^RKDohlgdwQVmsMSnjg#%vsd|ItB#NQCM8>)Z z5thF%#w#=}5^IZ<*&%@=Lo9MgO@Wo8ktyaK zx{=R)MT%*VHh5v~;&{EJssT4Zfsh|w6iVww*)S65fV1;GK<4{+N@%Zq_`<|mn`q_e z1M)_CyJX*d6un=5|9ifM=r)^HZ52-b_cS0&Nop-BtrX+#A7b)j{jda8gf`-#NK(cF zj?{E1?l`5U2jg+a(10go@wUVcs`@}o3rHyqdNOmSbyzwQi~RfGr~l;l|G$6z-_ch5 z>p!5a53v1~0%2t%gE9IK;hfZyz|?oZ7kF#y!Kc=@EJ|&_|}26vJ6 zBhTSY-#{G$yUJpq1*|)K4x@x^l)-|j#dsl0-5uneJ~!8q4aPZ)5BKv&5Xy$JP6h+ z`D)QDGFkLN&>28rDbi?SC~82^875Edt3u29Xl6&!ncq zlj=QTe0}I|sYWVP2+FRbepaN?DR<8DJfO*?G6n5u?eW8U#cu*AcvQ$iu?pDwVM$Uk zYP!dS927IFP)JG7K+hTnx?yX)JWHHJV*Z&~0ti6CTdn7Ta4bui@gtJ&&jUkQ+jh%} zPtN@+T1<0bemNG6)H;*otmM5@uY`GmtGV_uf z7O!g2yGJq9ZZqj*+DQ>&5SA*AXqf%%S;EoG4uLHsce>*?o_=8&Bw!LIhY$=cs)!|a z_K)GiQgL@&%m(|#-*~vW{69Md`_p*WNt*ucK2_wU6j3E3n}69t`a#KxBn<{&v|k(@apI>6plRbs{QrT&^50!UG^xa*OT zg`3I2X?1)p^dLz&{NNaYF&M=4( zLmg2p9>_{>Pn1I}t8=^~sN*vBrmWCv62ef)G4CWalW#t@p#~U{E|4=6n$^u&-8$oJ za(rSloywKi%}W3Bg;IaS0ga&~?$KDQS0HpENnu;aiUUSbc^)``2t5t{P9~1*JE1@3 z^Z4aSYon2-LaZUe;@pr?AG$|G*6z$>RAcjz%@?fKY?SXep3deaKtXOtSPbY4*RMpy zJ?o4|z-D|tKexD&GCFGBZvC?*y@@+JvdIEBrDXxhI`JMxiR(zkP6JGqMWa(^H|S)Q zt%sP)%I8Q9xQ;^j7@S6m029^eXUtFJ6mRp`0zzF{Z|>BO78qzG6m48AeCQrF1We8@ zm)`FkF=)W6Zyo@K^qYx~354XwU|&So+_V=>G~B?EW)O{$S2?|S!4w2j*qV-tu_|+) z#FAkD5ZTt96Z6NUf|5-hp#1?FYVVofc5mW?R_*;xYut&Q5=ZLwKv`x}EF`q(G`b3y=OboJTS$oj+ibo{=1h)=0HT3SfRU$;%p{cH5c>$B z6Xj-o%e<{5ohJd5tfL^N)eDjtI#^vJm7bjg69Aque$_=cPr37fixnv(`2+CqPWb>D zV8eS)w|6av&V>bvjsB_qXqqaq1#eSl7zdm*>n{L=zTCK&9zjr~q(;Ilf&RAjxR*9F zI!9&^`pi%+VS=6#dxy7SKJCe~1tk&lu{efjt%#vO+^4WKLThvOAm)2wd1gK%)5N!Y zIr(B%f6P>1xi-0qfN>_eUd7i`Sf$wq(!;Z5J_w4Ng}FG(x5#)v4vlY|9}Kx{@{U%Q z)q%hs_<=8T7AdRS^;bQZ1@@Cc@S)7V$EG6IC7K>R?=AQrd!3|`UoM4s8{6N()XZi{ z@01{1%CHIs5%;GZ9nKI(@CAFH%21T+RwRV-kGKx$-*E86FkeHH2CG^>vuY|HEicKe z@&5Pkf1`>e$h;^S15|x-;%O9Xb#^)o@;%JFj9MHiptsK#uV5%m5J6fnKHk8|X7td4 zF2#*8ahnAd?3qhXI5C5BHvlxhFV*3ao0RmKh7%8s2QW;X)CnNkt-TU7a~k6lLMOJR zx=GFgeQ*d<2|3A6gAFhl+zAV5&s7LRi6isf8<~ttc227G{hIOA6;ja(Yx_FF_HGOi z_j|UHPDDMs&T*$aEx8iy@f9{o22!Gl?0~R-n)1m)_Q1a5jx{vLOfqVE_&B=PYzR-0 zxE_#AGCp%-mF%=rT&C7H$_MD!V||QeD>kXwx`V4+R2n?d|6IK@B(jFL?oZFsd<(r% z^)eP*9WF<=Q%*ZQhgsInNWLB&fD-ARc06{UiZLV#Nk7B6$8u7$V zvv3k;^APoaZVogMH!uBu*LQG5NWw(2i-a@1#m7f?2+4q@%pLeC^zqe27<6kjy8`d|v=$@K zqv`NYM9xP5L=o$i`INGa(`iz1W{YGgQf|lwqMC$AU`Rz$i*6$*A|_%U%LEfyV-sG5tNVB<9+b~N^oym$FG1S1FUNurh?rZ5kGDP5K@X=!Y! z+(Yj;YiXHbMD}mV!0k%UXz$cR3VNmT;T-Y@?y?u{WpSq0_)N^w0rR5>$nUuk)ODNX z`gf`V;)QKZQFk7@29B&xzkr8=j??>7w_~`BrN)doDaewm5r0NjZhdSBUH9yAhmLMK zEb_Y4zBC!8yoZi!iacq<7KCysioRU*FVB{okW*m7#)rpsc}Y93#))g3?zPle$zuY1s9T&f$Wycc3fe}SEiIK-P5Ik0%lXVpdQiqB?xqi z2yy-VU~z&h9M6q|9XqhxH63u+d$Ozk3Ic*Orq)W$X9MVp&M=Y7k{RD`q8vy`1jBjA z!bM+<|K@+RHJjGpwIttunTuoTq#mR1{^m)laB+cyim3T1nu7~n6kn#2jnY&N_z4+c zIq6GV|Em-p%=3Pfqaf78SAtlWvS*$+O5==k zZQ>9*2vg9}P0ZV>20qY+N)byF1bEb02v(6(JTTs={iAutEY=dU*hw?bLp!G^J40g> z^FVh3&%&Gz`WKXNhAr{H_`7sN$*vzDk1=JwJ0d}Ggk)hpCO2MU`e;dqi1P$7e3N!> zgR*iN*CeE_nkGPL2eRe?3H+GR$oz8y8uw3`@5b&0++Ih6jqlvGG4PAyJKrdbVAK?D zCyHDIE?W;>I($Xm)-TwSzJI@bxBOT_TxLOvc%>&$YsxY|t|gss$jlHoQgaX@r?80C zc~Yi$-&!75A{*_3$Vq)8Ap?GR_4<#$`ftDbqp$we z*;jw~)gQh7UuIwZ@#}x|`giwV|FhTs48Qq%umAA%|N7ORzW%-WzyG6y*Z+t8>-C?0 z^=H$s{-^r*zxmaly#7aD{nuap+pqr4?DhZt)&Kp~ALA>3`ubnI{=EhM`G3_9^X|F_q_|J8r>)$id8fAH`B==Aj;eD!Z%ef9fa{e#Qb{}PM%V|?+SfAx2cU;m_j zaqX)=wI3`H&Ap{aN3vCdy%7jt@yW`+uL#@SWRDuCVw%xrC(aK2UvaU_7LRaJy!mUT zliuOv1!kEEiU8K3oOEs>7wfbD5}>-vE)9vk?XU*~oX?>|Vtdk%DX`vu??3;w_v<j`hI&ZJ-mksuzHA+EE~V6aRRMnsFY}CY`&V(t(wt#>`w6v&?(OX|YtP&} z-=?^yNll%)&6-!6E8nD%k|s$zEeG0%GJ@J8C#PzbicgBXpc0DD29u6y5F&yIAg5kP zs3*CfshgvWE7kvX^O8}n=T;%eCh(up(k!MGc3TIK=^e1|-|#Pg@^}9Y{_nrG)mf2+ zUffQt3de7BG&wmkvOlKxp@pu)8-=+E2a8fGr}bEX-;x~4W32sNKeGNwnvwb=t5CRA zHtSS?lGLO~C-)ENto6sKe9qb(Px%IXdMjxDZuC3N%R&2A7PQ0QJ2pLC6d5q?|-+F7rzVEBq*kc&Sh) zqDe^*NxO01y+==W>-lwP&7`!`zG9Gpxbw>iIhV`XQ!hRhtys4=qy~DdfE1K;27eX2 z@uq}Ftc#$^u(lXtf~wg9v@oi2P~`l)i+rs zB_je8R+0WJjp7koiypUEXQ-if@`~F@_Pn@tnL$P0>+`+Ot(%55*sHhmrlpV2p9oy6 z7fPm%CKqUXbfMC9*wrZNW{WM_N+`<1G-$|$%PXt$)Z4rbd3|@TutE;WDgBW>5k*8Wz zU%DMnIYO(r5BeIG(jQ5`oOrGgYRH_o=$b!yX#%sF+@h|k)5FU;IA6?BtEy}WQr`%F zL8_Eqnh&8E00>D?u|+|8_&G8-3><{w7r8gqJcR@&d6OF0*$hRS&sxt!R2IbPqdN@g zZ#H3NEZHGO(lSok+L*aMi=5jrII=ku8amkR4bfth*+MCi-Vde-L{d{z;4DFHu@enl z5`&IUq256Aj=h=BGX61gt%^%nhppmQ&HVWIxc1Gl&Thgdn>)zW@**e+KunCDE~Ez} z@g!3d-KUa}*mo)#TISAPdaTE1<9m(ONL0hD#Ik3Mi}F|+E4ZXlMbKz?y4X0!8ThU9 zrecr!4J2H>O$11z=~RgOrG&pExQE~U)px)6)$hIQDzQb_TOturDpEez2`T{;;TpB` zvc!P!Tb*NZKPX2+BBFbd7K=poFO31#<|9mj9Z+Q8%8{t0!&nY>zYV>1uwfyb5Qg2N z9dvW@e2B3=>#C4;@X);V=UkRS{ZbckY9&tOUrc}*=85C3-mwEO5QtK~B|aOgP^llV z$UQe;Wk_Vl1r_vu#b6`G#S^E9&nQra1G++L6L~@`JKK!#hH-dJ=*?j7F-b z7X$TTXJ~@q$dELXz(8~ftO}1IVmVK@L zfA3`KwS1_`pT&8oB+=wrk8L$ONr^~EP6TSDL92c@$+;z|N*ReZPOQVrprGR2-7?DZ5f(S|Q~IGo~%4=A?>M5L1Ug$8CNz~M(0 z$yj0N^^dQPtNOMY$H$H=;m0phADa?>WnRW{SdH4l<$nD{LgO35&^lzOi{Y_3;`x7k}~K=w+@S~!NlSg zmw)lfL)2ke^@Qp8v;LRk7p5R=|Bh=QG@)ja#%+C=!WZl zp@nBdUt@0sz(xBl#@)+9$h}8-%R0G~5S~wQb@lNZ9~)p7g|S8N_>wj6{BI>`d(&{n zxtO5+2tmVGM6;^s6gL2p7qUzWzPC$zYPq>>?-{+&=2`SuZ&CiKek8+B(Z}^*a_qJc zm$P0v@L!@Zkw@x|GqWIL7s-b9lryBIMGkIYplUK&5# zR^_?$c7JQP?uz%Bq$MRyy9Zl^1xcky=zInhTcHI@R4PtnP;kDoBp}1N=ptOvON9@L z{YySU8W4wyU3X!-m`awyf8H1t5~0OF(f#LDo?F8CXN<)6PMO{>dEJkMAsr+X5dsqR zu!49{Ij!twv~Ij$eOu(G^-rekreb!l+Z;F}55tr?ywH37_rJ>#Bnq*YifJd6r13-O z_TPK|+Lt<3L=x%vy>+Xt8(9i}x0C&7eW;zIEwGKFs^7r-Nxlg3UwOY?vkwqab*0*$ zz6#TqIEJj){=NtNNI4x-1(5rabr{k=Z8$1n)1L)Qt>E&dL_#uFq#D^hBx;S+cyb26 zg6{pOT~r()2wu`p0Edt!Ecme*=iRD|~_tmM~I$b_uYZPBL(CV~8 z97yp%5zbMxH26+^aVL3i#parmtAi_sR}X{~202;Z7sm2#y3K3(RrR&71qVjnT4vb- z6Cjewhcr{9R8X%6_jTuA$SQ9D@iM<&Dv?KkvXvvJ7;$H31VIZ8toGLFU7eK%v+G#K zxaadJ%F}2DBnjD;4b)u&K@;_M^JiO-nfe1aFDGB{($j&Woeh6W>I`#cgdU$L$dsom zoQRtT)fFhCYmHVf5iFFcn9V_?@|dbsT3tR7&ux=VgJ7-DQ?N#Hrjkod69tkW7C7Q)(h9M6ME#311> z-a>WM#-W2t8y7Ui_{Mhc)fE575Bu{e0-HWTpiC9-9~~Z)HCpOWs=rA>EKXB$XMlnV zAQAP-@kOn;#ZU?DNaxTL&$=!_%|xM7(k!_*$LIF<=`gd!Dc(nZ9av#C3fb$kG1STR zjafu}G%_zTzGOyD>PN`0>()7CAT2P|BKAClM((oQ)E zy-!$hDcBj-HiD&o6?_WG$;K{I0EeY_s#N^phc>T!zHowCM@fkddc5+DSPW1m)6kOC zQdpPB=wJ)&KA~J~vn6P_D^qkSHI2d!qzxqS(38n644P8%xrMmr-@eiw;!t|iBTpg1 z*fyq&aNB5;9Z{d)4ncXCWnP9$O%I9zS8`Riju?s7Q$YU8^nzfeDh_j$YfbT|SYgrj zZl|;unD-)3pz$4;onzTx(e>{`%gG4rmyN=qbiP z9L!LoUP|}igJ+$Nw+cljRo(zgCMTtaju?h{C}B;1ygxg5UMU}v9zCoM45O&qrL;^6 zcDX~cm7d9z?&E4)^NsFVw~yUO;Zn5G2R_wT8VI>bV~?kr13$bes{*6-8>G|UQ&Y9( z5QcPpC@7bYlA&(xF+q@oS|r_qFa};nQn#KCv-f1@H|s9}+1riy;gD}2KAEMLK2QpC zwm=TZ&#++tgX5R88M-O(gSbRY@a3_T9}Mpw-`{$${djwK z>(OWRZ@tINA-dsSL;K*-_D4JZ=XUEi?|ri4cFE}DN1HplTTknNTF9a&=(*#s*nC`n zXg_)S!Pev5`j7tOEq+#wYuZmY?``h-6Vs^en?L&G>Gsb3?R&f1Ps+1O6p2U&Xu-f@NgR(=)#h0YlCA2huiwy+M40;^Fx^O@LiIPQ z1*}lf4+9RL>$#p=1g05n5M~NYi3`>?HtP3Ax4Nol2%G99!eN!MkOVZk^{lSIUzD@X zy0xDv1k&6IWVE?Dzw<2u;R;y~%KRXj&0&R*{!?D8LKQ)dAwDBN*a{0=jHQ(n48Uz7 zXi3=A@Tc6Gf~w=7WVz}kvVuxuf0xb)eu}e8QS|ZTz=jmT*QWga>HqL=&^^+K z#LTUm=$U}L(!ckw@PGg3@=HW8BjZ&ni5mz+HUvdTsnsiwdj^othm4aGh=1RbzQY@Lb@XNua|#1|EmLab)J7r|g$6oD5NWU$C30fWAFhp316cmQ2F;OdYI=amA{&WI^d)7~m+E)}~ZCou6 ziw3ZcryKlD2vPAJ!orPQu$(Ga8ahePCq%5!;Fh+jp3!=FMsN+yfd^gr4n)-wEf3K4Zg(S=Obi0Y$>vKumy zg#o2Pp3#|?1mTFlUO$Ji7YgFf0R=VGR${kKd zm*Vp|DL$O_AW0P88O}mzMY1)Z-1ZRD0O^b5cAv?By9qI5-MFlKh(Brx3@Vx)z8XSC zME#-qiOo>;W3?#Va{eK^d6o)ohcSZ(bmf-{5C>STg$(OcI)h(5k5!YjyUtUHO!~4{6l3+t4tYT0Wg6JH{ckqM2YD`N3oK z&87B+Q6GDY)W(>M*=H+5ZfyUv1P4h78>(-}j9VFjGLglQ{Xp-k%dm6u5Y zgTn=oAERDu^bsV?d={qY;pB=j(1ja`Ahknf2EqHofQb5nRMUn}=dUyE|a|V=-;z+Vxsoqy#%bXmeD~)SH`%^{` z*s2^HfG@fElT(jE@r@@I&b0q3>%n>*-&QcQ9t#;laghF(Uw-+w3a6U0D!UX0frJX0 z;-6IMiYF>O8B~(eXpXabi`TEy~X=uhEY>02oq0upTI6I8I{;qhttueupl zq@qrMozSfa87;Akh;+ML^ecs){9w%Ha!S4~N0pnGH!Kh;Fw|s_4FKLpm+lqu;a(`k zDw<8IHQ&4c!;N1r=MUg2oq7~~BXG+2TZ1ltjH@&Y$R#IsB=)!>2W`h7Q#@Z#1X9W3 zcI9*SKY04oLsD@v0m=3wYLF7jCB}mm5cI3`wYFU;1*stY+wzt=S_Bu*X2@}G040#E zO}9cUq40S>Tpj(6v>bu1w8-I0w8xFuilA0xXsZ`%``DuVmHIQF4+EoGypGF1( zau}`KpR33b3w0`$8f3g<-WWL_#R2G9S&wII^W)908m0p$hVF)F2?oqC*k*_qO zzlI8{!$VsT<{^5yqYb+f(9k*iQe%wL2&H>9(~Ao(4*jXvA}o0=3E$Ag!*_ttb?#Zp z(4pBOw8xSOp%4AjeP9_>l)3!U-bfmv3DbE^Qu1T(&B*;irdxt2^NW+&XJZE_=)=4d zc_oRvP*snO5lo1vCRCqN5bR2|}SxE%FirWVWR1-Is z57B{KQ(Gm;G0Ep8{G*G!56r+-?Ci#8SP1&QUAS3F1)9{eI0puWfHk6|3(s3F4<`X z#jeu`QJRS2<+YKn$OwCxmb1ehs!_(GqDvAX!b4?5y08i_w{3%EtxdyuVa;lgd~iiE5&^K?Z~0 zDR>7T6K=2Ohlpilu3#E$XW|nQ?$ODrzOfKVjmjaE(*DjvR1nOT7b8L$AlYRuofQOz zBcQ|vK_PzV|Y{RHpSlp8SqOokIz#I@RV9nfp&z&rO$CA>y2Qsa8 zL)3B@SW+i(7VPEm6W``trH?ph)cfqoC-rabz0JqUF6nJ?8gqMh^X@iB8x6J}-$#y! zq>zlIY&b3bOncnsKXJ?yeq_r(&?InSHj`Mx(4TrH=5A%PdI)2rXqS zKb%q}WEya8wj{Xmez`s{O;~LrGw_LQvMgeUJHXOla=T)V8YqJ!kd)!HKR5t#qo6k? zi{S{U?qhgzbAEDl>fsg$;S<#KI$cPa4uG4!kOT@r0|?{AgvPZ+mwJzA2Ag0liJthS z9JRp_g4k%{QML?UBfFyUDd+u;&uXry7cu8M3+CRNQoF2MQw4}=_NBxEM7Kl81!Ydc zk1?1TI1zbYpX1FY4@l)#mLJk$j`-t^*t#pi;VG%>4)3j~>wDt7fXZCX$e-UmVm)bsue@UrFiA73` zS!tboS4>@+rXebEvGBFwd{aJ%4kF<%UxH$Td}~`0GyG5+1EpM>32{w{5+Ho`{pdgU zI(@4Yu=wNu>8BQnd)iQVHq2|_+lR2StXof^^y151ozfyTN12~bj&c+upek^}4_iDz zN(Bj*Cr8SZh;hhy?x)TP5{S|oqoP4!APC^hA-cZ;o`DB;$ z9(?99S-B(O6T&kkNS%_*mO2rgR|hj!$<{*((7j((SftvvMdYd+hJ@y&-^s-b;snBvySwHGxj6uYOMk6)-a-mi|1(N;@+MB-{1`2}EU7-Ry00$uU_`mv)g4 z;V7YV4^GL6U4h8q-qp$T8Q>w?WN8%gBRLUVS!ZhL2n~o(n~bmcamk$fI^h4y;|-v^ z7t;+ra+$1g^YvZ$LtptHf$1YL-rN?KHVV6r8<< zu7Q30LexGEtT11s6M8+SX60q`vPuD_P>vR*yy1q*w8R)AI*RwBEUUlc);t3JR$UzR z=wdp)#X7)W&Q~?vJ;lIf7XiG{aO2((p|wf4Bn!y8PE@pie!{g{oE^v&58T`pqJc{t zhyq24V_N|5tpwCZky?F-C2*#z*ES)+R~)?c3$IUTJE<#?(2-=4sl-5XLyiIHQuIX9 z$)F3&EwqPsN1(#dqf0MWd{9=*2uw^EZES>wi}3_=>Lp2T4W|eYSQnnUooF#18^EQx zX44UlfcQV3M*Meh4>fZq$IQ2mE=KxBiWY$FC@~ls#p#a^rU<&A%-UY z!dZU*8;Mq0;A!mUT}DB#ea`27ImK|^N?;Ij2t3X`L}n2$ras=Zj)K35)Q7-kH^2SE+OF&Q?$Gcj*VL5}vQYsMt7|p^y)Qe3+-uB6NG; zOolTU?4tXJs)l>drhD~WNKV7p8n?^g(%3j>rBydJb=^ZCu~dKs$i9U#3quo z9c)8e$OE z@V7wHA+q&rv?R3Cc2ifLO6RnbR_O!Q_n0(dk8mYaha5Z!1JV(Slvfo)So-MTSqRx` zj;uZ!*DXuUMR>}S%j1()@X)}ahI)fbZBLg%HI%F&ysaDn?!vzI&yPUKMAOIthFwL< zT;Qdn;*Yb#8+a>bYLg{UTv%rSSt??heGt%gf~R%*A+k_SJiGLIh>>NZ9EGex?gYe& zA9Z)?GT4rFuy4A_5xO#)X-gMC<`eRT4yGHlb2IC}qDjf{?dkp~Q(x-B_%`?j|{C3#5ktwrqB0Uo1aF@~Z)0N|cTZg5S#I6x|B{ z7RnEZ`otwAqF9y_a&h3G0&OG&5IGzI*UoSXcrsPk;wt%v&dp;QCw)U%Fav}s!_(9Q z<9lP^92c)jJIqQ|W82=z+^m-Ri%_$e(4fS5MlC>N0%)4^80pqR_^Rm!k3wg&4rBqf z>gOmP->|n>RBuq{%?o95u@+pfIK^LQ&APTexQ!x{jM_aN3wRKHSaDLw-i2f4tLjQg z-CmY}S^32ofkV?h1zKM0?5e;me$fwiCOmL_*3J$@9+0#(S#7+jqnL{37ap>!Hg4DVdnaEZ&B9cT@A zBhRl}B?;+{4*D(uY3IiIX2hpCn9LTmUKznck9l*%>mk6f8Cvf(q+j@sQebz)$(S`= z#dw_ug276YU)SJZ&*6(k9ic0BCmNMgO_deO(-YUFk7B9q*A2Fr$FBQT?3HS1URp!*; z%1fnIq1+)v{2~JWmo!MaX>38V#hkN)0}dFz>;ySeZEw~t;i|$)xj?$2d>a74=fVQ? z<~Ps{B3e|kyveX&gaAY-Xl7~y@YcRxN>D86Gl!Mh)2j=KRXwJ$DYukN-@je1AfqLw z#wB7Ae??l2hzBZ6Lp1yQ6ZW?52xm2B$Z!vFLn+9T^3}+iEiyW0mwwhQ%v*VO9hFv7s7s$v zEg-p-owZP?B`{gQL$W_IWIRAx`9AQHx|w{WE7)!AlO6xu?GW_(++YVS3#MlUoCT@f zt_h3&1+1M~8X12C0~EN6FwVLqMb_3+73Q^2)=z);&+2mk!m&(k9WL3Gp}ESzhhqWlKd9%&OXE*w%lIi5fu_Te19!RUeM zgf6KRa&)tJ8Kr5PStm}yX!EF_0kPqrss=_FE7>!3D6~H_sSsQk#>l`0D`{EP}5EmSk)0A zN|H+$H7f2|Dj^vWdQ>=C{rM3hPANu!D+#xb_N@`7S!MOSB#}tN$XVRupf2RctM`v* z1(X2V?cv(7FL4+?U4$DFswOuAo%GxE* zUv(Sk;e*ot`g4dkgC70xn`g*5_RH&ngEt%rzCn3GtB}8UeRsnje`8i(bHiVK!{2bj zBR4nrc?UsmxCp$#fAjNYs(;Z~z;wB~{oXEx$t$)u5WbPfCu#*~rl z1!`2Tr5kq?j+S&U8IApWPo6w-%9Rt<>^}MAgOb=}Qb3ZUMa~tb-2110_`NCx%mI(a zPD#YBNS?^XbL1q!v`w=;N-Aa5VSuz!mU>3uw(BAq%Z8|*H34uB_%~c>fY0@JFujpo ztQu*435l(gk||hXBatn2r9L^C47fP}FhycnnqG3YC7DKh)5#TD`?2?1PQaA}TDq1N zG1Gn4do5M;r>#m^TUuS;F2K)U@=^kQFS2*y&Yqt^JNtLgqYbZ=LnNB!6Go`?zucQE zbukrX<*N4z#}O8=km55Z3YZx=lht`0vln!i}0 zNE?VtoFM4*!aq?;OSgS7=>DlTL=={Pb!);Cx8QTPV1wXg*z44+J!WJ-rOn9dTR(?& zguWB|m#>Q6Gn@cI#yx6?1uiKXrsF6K2yw&WCSpg3Z>30~O$KlQfWQ)(nkZo+Fz0ZG zvKa@y#W|_vaO!oD#lD1R&{=Mhi%JylP9N()3@CD4bvjnn;RzDxk}`rkLo%@5u8&FD z*YG5>Yh=^p0($^=z>C3jH1j36umdJzg+8?sO$Ihp*;X9HLTrqpdkL7OJ?MGpt~R;U z2j~PD%xY;ml@nIO!J!WFslwK*UqZTrnRfLb!<}Osrl-MMlyBAK%s1S&RWz1}TzypB z))>iR8>c7-XM`VVXeE`geozNLaB}ePNAn-86>SOVi^|>XPthX5SC0$6xJ1AA`p<-p zq5uM`bIU4RrYO?HXY1;U7l=s_%)q4tN0Z~r%M*72A&6j?^Cr8=qp#^F-+w zrIP^=Y(R}f-MHE_m@(pZ=YRNcv;L2XX~%R8u_Rbx_Ft90&{vVllMrliPLRagHrfvD z+$}ebLAP3+Tpxwp%AwUhS%qj_yrFcF-IkLYg}LymP;ZLN;rcac;*HjU6`DNTKZ3gfF?cGx>w|gGFf333fh< z;DhYiZnz;gc}XI0cKL(4)68y>;yJig9$t**Omz*AEN&frw!Zw5#6CPlE(UOK*FZ@q z1fZO2Wm}s*ON3E?4(17@tR^YGR7#$fYuS61!p(09HWpp?!&>_V%i_JN1A*Z{_&tqm zXv!J8qO6obz+hNAD&4d~Z7~C&{qDODKHjOTGW8>k-6?B9;2pFF;= zw$2D~paHdOgTY5n9`8PU^qI2}vTLf^#uc@@t1Pz$BALQTGJAwV3&c=h68m$aCe0+s zng4cMEkP^*=_|;A-vB;AkbddN#;S71UWddA4p=E5(Xbr2_08f=E^J64&AvbBx$}=dvz>(2nwfTr6=_miyqzi z0G%BtXKIeQH?P)Sfv6&=ghWlj_wnsM3^mdQj3d8#Gzp`p%9hz+>iM^AvleF`g4V3> zqF-1u<2WYUL1WUQp1Kw5eMY|^+yD4p;MVLXAF63sQ9y6}s?roRY*?+|Q8BjHYRE=zArDl$lX-Le;_AfYB3dff;|o1)0|-jj z4nNo8t2(Qt@WharJ!MHY*7DOi>S+COYu|BuX4vh*-rHmtb-ZouDGp|PR8xab&Q8#r z*QvI*Nh5{FI@q~7!rAy)1?4uIFVKsrF1Ej`lvYySav4lxdWbHgHLk7SY^>o-KLR}~R8r|d_H1NV?b>8FL0TX@SiOC-e$$cC3!D+-~zhxWc7S`XW( z&+C1_@AvP{87u5RfO4;YU)!dZcm!VZ-+jX$(>^TaMfJBh8ixAOYDS<<|B-ievRstzV=>` zMi8oA$meHFU6H090&VnEIzw{b_wS)>iubbWv-l+SJi27r08X|%FA;<9_*0sDPe0iy zfdqV^Vxk3Q{8j&Z5Mb&!lHP~ubZY7{!rY^MtH&yYY1f{@4hfX+8@2ltQZ}Ymm7%3< z#9K@#Wp-SGc{{dSO2*|Owl+GF?;3)a5O8H`P1rWgA)GPi){s_Vd!m*-H_%JnOmxI~ z-heD1Yp4vt5=9fEokveTyuV3t05KP z1>3kJAz=5^D(Rp)ZER!kY(gViv~!4%mbD3X`q#p6czz0K8lkFO9vEVles8kz&BnNN z6C36iiu(WTU)U3@-(M;(L-IcY=bnqxf2RKSdQPyLH40-!w5%bXC)%H%LhkYJH%q;# zg+XL8u5E7n4h)ndoyjFbR^b=3Q;wlrFRWb(oyt*^oP4T)G}av622&siTUxyldzYif z%gHN(WB5b1UaWv4{i!?E!XgX?9ag1lkKA@;(s?8fc4&(f00(l7xEId`jbJ#k7oHcM z3Non=23rjO@+bfOKmW_0{QZAg4=4PUHtI?WLpj1gy~bGFl|*h>B3>YmkdeEsOTyj1gA6e#&DDRG_bv{t^-?wI4-{A7X_n5XVqgj!zH; zYcv7J0$%Zu&RS`yj+RrHt_$MS1E48G`RW_B-GQrj=WFI7BLM*&P4*`M^Zg6garWMs zMweIvSKmquB!_WqN!vORQ>~sZlfZzs_}^80+AwMr2-3#xq_?4mRZI>}`h*l72bKc$ z>Hg#I`9QA=!{w75V;AO*g+`#w*I<{mgPFmxiR=e;sm{x>)|4(8sy}7w;Mfk)(n80k ztKxxlfFps`QC7y!A^DurF!dE`?mc?4v$aG8c@6*)qoGykF`~PMr&NV4gYzT>_V=#5 zYy*;h{r(i~o`A11GY-F_zB4oh_wPg!g|prEtLdgXm5Y7z$Ln|Ft~g5%rOJ3IT7RCn zrD^g)hY(FsD8HK*2Da9xwU|DNmJ@y)r190A6XT{$ce_l8QwhrLP%NxZBu9M7orf@v z=x*1GUwlvBBApY^#ck5pH;nV zkwQ9BF=HxzCCk9-Vo@z2WPv9J?}v^^BDuH`{GBaToBPO%@cS4(Ktw$P(zsgmDdl16 z7LdP&_`a**;Cm@hAR|<&L&y_&Cj943fD{)%dQr$H8(`}@b}4r6y;rP}Lxd#Kt8%SM zvxnu-dZ3S(n^vdYCh@Rpk?+6zF6VFQI8!WTfWn=b7u}lQG`8`fNDPaOAG2I3^hEOl zhLMXCrNf(zxPJTp{lh=}=|B7f{J+IzH{G{AAFWp<7`#Yy^E{v$E7e zV^frf47w@$<_ew;4W%&Gp_cA{QWSdNXDmMjUJkw+0{ zW}*%ij51KTzW(u*w=c$%o5h07jPb7#8uep_&826o0JK$6`*27;d4nRkq6B~^8frz>tkaAyn*-2f#_uVQ- zV3H|mOdnHwgG3O+BlslKIR{1{OU>CVDr(Tj?>wO20ily})N z4^lB#?>Z!A6_b!ha>77khF!^=kPLiojX-!ZX_f&xLRq4N@v(J5inI7uW$o0!5`sdO zkR=B)m`Fm31lBm`k++25=H-c_>xVi7giPz~JVI(+P$M0^*sd+J538huvT4mVp(T=( z65e{LJVRN=7KMGep<1RAIge=-0VBYJp1>!U2IJulVLt&rp&guj7lcAl&Z?3YEf)bf zA`SyINJOSwkpbp(C+ojk6)y8ZuSI$Z=36kr3EAxwX;CZo=>ZoHU)ksg7O1>cTD(eQ zN7{ZjAq4G$2#89o^2O?H#u#Cy27MZ}Ltq#NOFO_s94Ur;aQ*q%eA+}MLByKt#X@4H zpwarBtFx;`8TsO%(9nANZ%8bRP*jOHF8kczB-&e6pn?VsQ$3U>T+TpPYkJ$v2) z2&olQGK>n)^c&u4^FPThsT4wT^MY`sLc27^H1nTesY)yW7&^ee~?$fDr z;AR+qhyBuqm< zaH#RxSH`#gE@sYcgMe1K$mbn4Uw!TX zLogxp`4$QXksW&FP3Ys$sx!rHLB{%o@#F}YhUP(GU#3M~{jGY%K!CX3TB zAKrYt>l@}Vz^+v6g8pLX z`q~=;G?<%srp{ztC9bcMSTIQM>J07H>V|upyPwvdM*lx!Z`xyNnp}tVr_Q@)R?QHG zEEv|L3{11gnqG!$lNutcy1J`4wYf8UTFn`QxVcnTcIBpAswVq`K?$&68ze=MLyMv) zG%bJ-4Z|iZ8?ZpZU*@9){|9safafRp#1nB&#B=l33`sSWm3i;`K1=LzB7*b4{0RSE zC+>4mqgPp`m%lBXD{9~ihtCDf>XxsSt^6WW%LuYivKQOB@7Li?#j&~<2h8CV@m#<^ z61FKmNEEs7zGg>UAe2S50j<4`8|nXf($_+4x0j9?zsV=>)1)G)8_d@}~ zRTsexR1T6^!9OKw$&W(e#vgeLKu{qt7u++xK=rlWFZrcpY7%;iBR*(Z6ETznFPua6 zMJS}f)m1)BDxi19PxVLnw^20Rq`MNVk^mOhy+(aJ*bFhCJlHEtul3)JK~L1kR{l(( zl@y0|MF@}wUrD@}2M}WKr@X#62-itABn}_1Q9Ghk;CC2$!#EhtnaT@HIzwM&x~O^l z+Oqso>~d+*2+i*$?m;4^USqtiE)Hc|<~Y2@Q80TyPIBD&45=0%HE6u%5vK7Eh;vp6 zF(9?n24BGN_7g?AN|fh{eS-K|Ninn{>%0|*d8;l-I0@0DH2tPzGD=TpPjtYXTBnoQpUBA zYN3!QF6iVFl=CSKd|d(#K0UeXuecV5L&S^TKWZM33$w(ue>Ta8udEhDd3_BFmergui5K8pGM#1Ve-1$J#UP62Nvfo5(9E>J_yB9$boL{LLT# z@mv1m;BWrmU&Swf_HX|9U$jSBu2b^3C}ZufQw++;_H|IIAXvO_)Iet@vl7{AY$ML| zyOw~Iv{*%I^rb~xR8zvJo0L3Uc=SM~)-CR2GIhBa5p12g)9|Bl9I0=YKPqh@iY-<0 zn6M=cHwK4O?{qf$7D0(<-4G>KToY6aI!9v;f2L9p$DmG?pN}VyFz>qH!d$ zLeUp+5iM7T18)I3*q}IXN?z-@??=&PIJnut_CaJ-Dm91)hY8_ac@W#r61){pq~L`K zO#PYlyD&F$gfIDEgC@cjy{+M9#+$aHd55VXghqtd>}J4D_N-A4l^4y>l!Qf7S^oy# z^$4j~`fTz6faFHb=}1W;v-~LN^LYS^vr^vTxDR3nwaGlp)$kYF%F%k5dXAS`XR&a} zBHD_NMi(;NWt_2silssaV`Q?1$EYHFrRn-JR9GJF#Yy|LWK|v-1Z_?ITzPoY#|?@_ z*m!5tPD0iA`ANv?vh|xxc%zi7Ge-+b7ZH z9X|!7$^D!{Xr7_M#;scKWJe=DX}1rZl@cGy$X=!Z1{AV}_sh?XfI^qze#Z9mT1{tj z{o*@sGoqK#2RaPo}o-1VZfxv(g& zaA9Z&1@>i^H*o!jwa-zkhE@yEXu-Y1&8;U-?L}>~3CHANB`g!-mcbiD;6qwxm>Fd* zL=NS}P1i$32i;q@4CzrK!!i8uWIrvVzi)V_=0>+=AwUixN@g7+y~;rl*z@!wSf_U{ zDJ2YoY=9Mv6rzdt5B>p9k>Q^qriKO|+AQSwJl|C@DHAx5uzmc5v5v`I|F}PqRd=?G z=Ljxk&WLIWEJKb@j`sc*vAmkmv_4OWTnh zu=Gj&blL=iEMDL$t9CD)j2BuvqGnM(il{gR(bAA@N%znUhCP!VFXhcjT-pINbI6)R zF3rB?L89N>%Q(hW`x?-LYQ*)r%A(o%<+ce2(jX~%=~Iiu8$yDGMCoHL`9-ug1=aFi z4#nqWL%F=6P7v|SXFBSy_E#)>vsX%Eqp>HCdNuEHTJc_#*nrf;HN8&`% zbxA65y)hbNiIT>M*BtMJ`2wS(Q-5?o@|ndZsQp^N3dPC1i6#o@UVLoe61p@N8RBAn z+6)qoHYml{ilz>G=%hfoiaKfx<8}Tsc%?UQ_mA@GN@bel9Wop?Ufw@w$oKu{aeKpU zR2lg1b(96+^M)ByVhpoCBe2-VTd0ppN0pR$J?gZuhziOpLmTG;I+lf56Sy~+lfcWf zs9ao2H=(qMiZO^9CYbN4J{zrsjWNt13cAcy4sp;tASlcON3@$C%0{?N95GQbTvuW9 z@@7V*1p!jtHZjiEgJvM1y|Dbmt|Te-bu?=Yw$?Jxe(jbmp%n=`LR0Lfn;3qwr-^T* zhV&ECAF44E7@}wtMRFTAX+)l_>s#j9Pe7P+HU7Z`P^jf*fT{+?hYvK~dxq>-+>17W z5Ey?aX@^5s9&N3i9zvbb9NKWjYPpfdS&2RMv?(Uwk(9Ise>JipevT*xymq*yK-386 zT8@30ooqk5#7HjQq-~g71hP`-N`)u6IBnME*3t4CuVV~1IU56Zt(JT@XhUB}Y!uCM zL#t%?uaNysDDPHp1kini=?oOqns)IQ(5Za`UvoK%TUkxdbm!%W)UqH^76U46FyZwg zDL|kYHtntRf&AuGVR46Y9l2FnibHDe(SBoHc2N}r370D}!S)dG^-pGLCjf|SCQIzS1g}TmQ_~kH)5;Pfm zN2d_n#FI_{#7;PP`bPqnWRwtqHFV)7-)l7_GK<1zVHRcS073AOV#)$%q^Lx?6X-mF znFQtt$=b)Dm)DoHm`nC|g*rupKYHvmY`goPwy`|gOl}eh*V}zuAEJYskycZz!~$Qd zzloFGY@i?CDH^sh6D$X9wlK_-M1fq0!Q5i8XpSVwCQ49IQ>i8AACu`Z5Y*q!ClB8J z<}b&3tP{Nd2)_++xMTl^2s^*>3-83|9K_`RfEn9rphL)8Q8!55u?&{=7@3Hs-DAKU z^a6_wb%!o%A%#6QETEDs*iNEcykh*r`yR$3bg*1IjBD6AzThQAmJ;bC@fO-JGUIm? zrLN(pc%z7p1192P0y%<}^@wK} z8j>VUdW0lCJ}GlP!8mcX-MP0!lM<|oI1Wx;@zYJ1@?>c$42~FSUwQv~JclmLY%ui? ztZN~K0yj}w7V5l9p0v743qDeTxR&G1Bh5molp+h!b$pLLUHKla+KB^~a<0IkXwJ#V z1c|VTIw58H|(YzEzBII1j2*|6_IcqUSF$R@=og|ka7&DoRjj_a5>6*i7FL;^3 z;L@a^bzx4iz#7GVR#b3k9bElDBYPE6v@tQBZ(+2yP2rph#By4^IkFR9cdvs~k5#>MnCf z<%{=;Y1BP#Z29&OLJSwm2;@$@pf=#;I*LsR0wu#z2leF&6kW4psPijp?Hz9;2H#FY zdaDi>8e<%72USs=tbt|GninROuoE)0zzfWP0^YK3WJ#VJ z0x=d(DzTh;Yk3az-awvMB$XMopfz`K(ls}V^tzlbrwA^dX8=i0zp0>lW<)xVlb6*o z4@>Y;TaID=DpLnvFcD`wscZ|;)omtwF0Bl!%HCSRi6r(=mgi0VS}hwyhQ)=QM06Gv zmxNtqMPj!b_83nOhie9Nkvn_8A5iJ-EP+~RKcA`0KQKfD4 zp2o7IBCx921_KTUa!{x!qH2&eRaICzs?s!F@N$u(M&?^n5tGK@|5MCj;)9>Q4lg?x z*7k48Y{4jJS-xeYWtbJ2AyX=kw1mUDpyjKOI7v?kS(94wX48V=GR5j;ST+BaP5{{e z{SZ#tqyy2~`wj46w>kKSo11IS$n{ z=R0Tss5w@M3vEXzA`sSP91R$$!WY~aGkU-F<1hc@ zpS?z2&!5&du&pYPFlxEnO0<5i!UXV zkvY|U3ya(av?UV(eHulIjJ9-3e0UL@KOJK1>^naCEkF;OcxsTYvpu#=ODAA_ae1_TNTGvLP<~`x5|pY3u=^ar2;1%uJ#gZSvsU+* zZJqiQhWJe^KadAEIe&p{3?mLO{*GTT0#3J|?_Ya1KL;C@kEeI2lgjzE!`#8(-Ct@C zH7y7=@z4JUJ41_B59Y7JZ6*;VyP*UQ{S~<~GCfd+*7d20DoaEZNyv|AyC$R962wPH zE=Ul$s`^T8!rfw8xCW2j?@0dgTSZcgnQIuI5 zTx88Q{Hs=Ef_M|xn8o9h`*Yy&T_TuVEPexz2>mr$AGLT=H=;%k#cTt57hpTC#HRq} z`N*9E2oHd)tV2mNJx^(ND-gqBe~Hej`dqWzmtiMiOZn2OF8O40BMvRBc9WTTcb0KT zsZee&B{lr$!>fG-m+Z@N{JGF6bUeD>Fz&3=7~QpjTE2kM7DAlgu%BCZ&NS@D_pi<_ z87-cEItP;Lgh2}O^`xay!y2=iWm@^Gh7~w4;Tp0m8*mrz4dzho3`rd@P;7Gbmd}Uz z`gt7n!VJ8`3MrAQrNQ2$NU7{O&Ix+9-ng6O>Lr@f%8{SRBF@!K(RUwVKUy#=@3+8^ zRd4)+>3*61<4S9y8@>xh1jI!`8LveKvkBvvNxyiBGEawRHlN#YJd` z{uGC~ipS*28FMKVF*I{)%i**hM$pkzKEwS>b+j%L$GDK^W`bQByTE(b0EK8mP7(zC zCt8Av^Fzs?a*bKMhUzEl$LKCO4?SI$tchb4G?J~dQ#EDmH~XqfgOM23h zH%)mr+dD+d{G58f#C{o;gdU{~JWdKedrO&|`|f*@;gfh!A~$(&AYClB0dS*&=6>0w zssV4=%Aw4f?Xnzshs8qH)#XdaAK%+}`0z77QvfH9PriSkmO2($p+fC*TdfWIb2nKL z;aYh=q7l5SW-6$((Hw4NSVz{fC5(RbXas`C2CC96Ly}#gJw|HA=krXrb%DHeIttQ4 zNyi$Z%&jYBJ48p7cx{m{+0aea=kJ1sGYMD@zm>>)3 zCDq7GtMDpY_rTu>QQn_JJ|wlnV1Bgdo`FMDPrCm&ceoiV@^Cpd1%H}15QOomM%T$D_;m4Q9 zsqD1(g=~re%6*54c9$URI{h~v_Sxkzb8yL#-P#88^Cr|yGUA-s9^X9l99GMQY>nzM zA|%e3vZaW+GB&K0#>j}YbQlc*G$Xh6s-6w(GX=$dQpjQqx8fw`i-G=rE|L;KRUv=;xH=sx$Ius%@8nBA6u&s z4(1sj8p=B8pet4NkGU*s`d@oZ&th^uKSX!ppz=c8Q+JI4 zd8Qr3RXA{dmMkaXUNo&223nrb-&f8D_C~0sH(H-|c_w1D)aWHBl-69$xD#^_uc>AW z1;X8Ku+B`QiKv z1POy>80#ZeOS)LK83iC>fR6m@(st0Ih?BLc zE&dnFv}OmBI&soDvPE^3)`K8gB&nnvjB%bHBhurmvtp91bGWh?0T-_VDE8v=JVeLL z9EiPVhn)EPW^}E1)9DE8R&9c5EK`gj^hPSZiYF2YcCCDq+d3EW?>soZeIH#|fAO93 zuPrc)#8UQ1%2XF5I0r*7GqqO1cjg+?lfbPH;oOrIOAR|U!vR)qY84C%q{&85Z9TfEM&YvIC`dEEtB`#;T74VQan*{Oux=A(*w^O{CVN!mv zpL36>Bo$m{i14~I6>Qz2tn~7Q)V0+ao&$%hfR5O|NY*Zf(EVfZNU3v7G?{5swDb+Iw&Da)6T}?AQV0L z8ByfVU3#|HueNTs+0PbiL!-r}+Z8s0%4h#;V& zv^`P^O+edLR^y-HmT$1ZV;Tj>F_`H=V#6!?uO#gx6BSpZBdGi=@XEX$Ox8S#6owtw zkH7q9|FoUs8@R8I&WgqJ|mp``Kk_z_MZ5PC?`jy4m@pi>3b1It;qM4=rY=T zkx>d}8Lied?HC&eyegItL0k%pxkE&fbU(FNJQW|`T&;8qMXH}x=fbw2>otl`#w-R> z^L!h@TP!6rA$%cFUQNs}5F#KetneIR3&C!)Ya>`9?nRt|S>VAzc)LbA=pe#NuHB%2 z>QQ#8UeqmHY@mp)Rjh_L+1f!s;~qPI$hu#&)x=ncOP;Eqm$p(wBM3Ym1_aw2E!5-5 z%=_?GXD{YoU`2A35RJ0|>rKyCh`i<-^>%H>+(06-c^MgISa3M4o7WjXonmKZC1a-v z#2eQU($igJ?sG6fUotcK4$ur=+~T2~M`9K#n?cIL19=k+hdLnj?bvz~&*u@~{)Q%Tpa5#Jr43cwO=&kM#}S6XKG)=iQ^3zukb zmisFT|ArY-fp-gM9Oba*m(QL7qAC3dyVb+SV1ZJ3$dfDmI}6Mbm3MU4#^+b(7tvj# zz;LInvOv(-LZ8-w3%MzVax;;>JZfIBWL^En5REW`*YkX{h8f||vpr3H8gQHg#42)e zeD~)XsjWm4kSwT-G869`?LtgNWF%nJa#?=YHxZFX%nb*bS_|j<6I!OM0v&XARr=sZ zt(w0HBK!sd0?5T$YXwGh3>-~kI60feQ@|Mc&>Od1-~5&@ZLrQJI7t}9sOZU})gA#} z)&CTn2HNzTPK%K}-#d(00;M3FdfoDIxov}ySV4z|OHssa@wigP zVLgfB()uYMDZ0RMXXiXMrq1w`G*G7&hyw85kGu4Fo4^UpnP$tBOz9L*BE4v`7h*`? zk?oZS4_S-)D>gCGsSnp7z5Ti>Rq5|bJ9b*t#RVo|c`Vw>%Toh9_&P0pq%bVa7qp<# ztyKU&L9GX1|Da%_fBR>lw+yqU?^a2omq2L2h`#-yM8R9ATt$nTlyS8ARX2(ry>NQa z)X4QNxNGv`FMs#TAN|>1`jQL-6{iB=x&=3};?OCXMXJ&1Ar2&5M4HRZ(Ng@$v}9aU z7YZL)ogW{~uys=HLP#h7(8r;01uF7e1I!U~vM(@Bh{S5Prs`3mFQI##fATxFW6SL( zsSI;WUQJLVB+Zgx`4m&o_SA1HEH^k zytn6YbK^Vr{Od`{1(P|wJT}qFo4RoT5CCAj)}7b|#2c22y79xm`rcbV{OjL7`PsLB z_*b!*pWJ!bqQ9xrocU>Opeq1$hCk+JR23i$tJt&RiOw#Iftiv zyM7n2b2-!=8HK3Tav(6bdhG!Ki|UXI1Wn>f-u+K$rGN&dpbJH(3aAwpAuJxp3|pe1 zgjvY@Fc3;Quw!G{OiZqIwlNeHxr zqb8;0y-v_A2H{$geyR|?88;s$hiQ}a18oFhe2vsN0u=O|xyENou2c7=)07(o$C9CJ zL}`#_=`DqtT}tV%!a$#6YiL=G*<2BR#k3b0Q#94JcEBZ$Faj~B+J($mya92T^*n;^ z0tP)zS=8}d5oxR^_ZmnqCOHKx+K>@1=Tv@)5qxx~p8Ofy+|FnM@bX?o5uMA}>+(qGe}IWd-a z1VAmwBsV^ULvf7Z+L+VongMA&USUN&<^_&!0TsnI*SYorltFYY(xWMQYQD~525hu| zLU^zXsbGqc!)Mg%o(HnZT2C~8Xsu{Y%8dP+ zEj(4R^i#CdM0}J1jO5X*+gDstw~|Yhu){pL1x>J+Va{SLWS`%%2K5QXEXE4AwD@&k z+F&DNVn#EiKsBnB)v^}oAXeFW=cMC1d~f5OZ@SzNxOHI&Ky^WfJI@6ea9n;L9ZiP^ z!7pepa%t@dx|kgWIYNJt=6QrQ=$4y9E`^#Ic)>l{KNH~oA)|tf1PoG+;=7=8DaB$J z6v?GqOj7{aWK@iY3dRu5Q#35mJE$6D=F~kx;E_95*28Fp3=0N?;HKG&1NA!DB{VSd7AB*mvM|4o_^6|FKlk|!UT@WRgnMA9XOBbC4ERymT*p37ArXjy)(08!C9ifL2x`#9MIr9o3!|>y$lhIcu#3TS^%VRbEWBOp`FPYK&0FB zoJ|h_7n}-D<|fEH&fOv`3}Mtx4O(oH-ommi<%KNRrJy_!+#OXI*Gt%SQQ_A?V7TWg zGzLspr9mj3Q%K%8-h=GhX|OEU4|X&X)mEDehcp&Z%#ZQ*)E)Bjj+&E-P1ZGs+P9AfQ_nysnEkKngL~8}~-uH7|dGa`Zpd{l~tbMoNzIo`#9>?cMFDn}l{5NJ%TJ{d@Q0*6X z-Xoi&Oo1m)X4O0ycv2ZsvC_sCUQ{z9nS*@=uzs!8SuZbtf6f^g9V6NvLS=mK5}l>n zqD|S2HZCrX<0=$HNeZA_t=O4fINrL<{++`uxrDEeiPw=4&^J8S*}AXj=Yv7=s_Vf0ybzq2g~ri8eaWb{{8$OR^E{`x3T%b)liUo@M)n~+ zrYVFpEzK^m;~I8@{syg*!>`Ils(9}^Gw(=9-O0evrKyp)>=6K56MUj4D zX;o4SX%xXW0wfINJH+&?-&dw zrKNU5(?5Rd=66o4#_9IA=SQaw=;%sz&yPXQ{=A|DGV$F*g(!1}3AVL5b>MutCgsRc zf8>wl>ZDRj7FKSk43Lzj8DqChT0AT4LWDj}l}LkV;+;=0HWnrY%{WIr`B!fmFofCY zpuZ%d0ui0WAQAssN(-%Zq0(~6Fg%sGO_3glYL&D&`Ryma)`EU!T8(d&W>ym)`qv_c z7J?hz4QmHKX4aZ#Io(1E?U0@`o`rEBfW!Kd5exi7Z=VDj3> z!uY_TlO%(<z7(uYldFawot(sjrgs4)NegAPnRDz`@0?tDvzVYgt(UrO_~`-9i~j9Tct9f{ zl;MK={OACVXl=&dBU($lv4U%3=(iW=fy~+7qc&gaf#HZB3V+x%MX6N-IG03 z?X3$ocI9!nioKD@sB}hPnym8$T2kR#-)LB)#t2qx>|4Za)g4m`lm^33H70Pd;b7{9 zu~#}4nV3?>B!QACW3v}%$Jvx0n((PR!KPUdVlCQ~tm6fC@aET`(rc(DGc?r{drZT1 zb{~S;z~SLd01DAgjPolDr# zegmUpgfHD%DoL!abD{-05KeCaApcS~*NPfsH3r8e3Zc>IRVT2w;!8J&?K%u36B<->KT?L7!ZGtp90{YG<0ki3nF~t<} z_aCE$okMU8Lm)1@aVrH8lSA3cl#d%G3JhLXT0zrWM_1+{#y5GC!(H?T^aZUNA_#F2 z)*JyBGkPn1J9GKfJ#ky%2w5eAgD0DD(WUyPT*x{?454Mlt&eKNBLLGxOGDZKbS2?q zH{Y9Pl-$(G!PDn}(tFS~PVC?R_{%@~clL5?d_4v1YkLpPgX5fI9^Q>M3G6n6tgc|N zdqVI#J&f5Abgub%Va!P*fZGGmh&#vk`1GIiw~S$`VcuCB0Fs2CANbEJoX5AYtn!66 zrY>_Ll9p*c@Nz4nab_?8g9!zDRiaDyOHTD2pPg_hG#EyTBU8`yf^!Xul+boXoO|+W zeu4Zjclau_2pH!@{D?;K2cMHEF}Lpg(oVx7blgf;-eb5Q3TlcRey|kGq!h~8HA!HD zPd2E)hy$2Ererk|a(<>6w@YW8Qm{<=)u@b+W7GflGgFAov+ z3JF@)3?tJ2yjW78tsa3kV+(Ax13v*4I96=Gx43%WbscTQ_pW(Fvlk#nLypAzq;|p4 zutDbjtT(DHUn*m?Ow1TC_n%vmDqTgtpWD@Q>=ZO&#Ymx>Eb%W+ZvlpjXHsOPm6sIz zqd)oU$ROhma{g%5af)R?0bvgrx8+@=4p1Ld;4#b-YnNq`LFbIE@SG`w#Nz#jp# zr-qdh<3GNK;s-KJEhN*i7ZV!-;HucM2@b54e&?6_S|^<*YaOO|WMKhPJK3X#Fe&w` zVU3e0+gOE_ajBG&9O98OJlo$F9d)B&z)lWt zqj)S1S^8^g7QUtWN&fMH8zr)?`;+fC3)7Ez-tn^vf5>9AgtD4#_MgEn`?o*-^7np# z|Gvb3e~kbBC;a!nG43)*;49RwMjD21>`wH1AUVE2zsq z^{`BMYm5WRqSJzb_zn*V-8X&)r|_3Q{_;=%#gD)IgMR~S^)LM7N3H79e;$6DpEp;M zrj<`u8>gu1D39Ocf?>ty_*M*!^tmBQoF&&TT?(!uK@qci=mvknz#rrh za&0KJjnOfn~ z^gGR_w5nV}o8WTBPV11G1PjX*Lp6`#a^pTw5rgr^!QhtpMqEMFyJ_`_?x>dX?lW>+ z3MGqlC<86bHdVXeg_wkhae$f+Uz~mg%m#s~UF@Z1u5Q3wIomtAxXQV?TyzKIzIfgM zRi+w*WHpS13cc$QSJ9R`Mp$s~=pb=5$G+Sftw&M}!uDUG`NS0(BrmxBFPK9NaSZ*Z}W6UQSJeu8_NcxC3$GOUn@2R< zy7%#iu~LPSuvfd>Ai|7*Ao8MYNS~9+&mh$qC7*T`2fLY{po2Lvv}1NeA-*IHLv0fV zj0{Lg*ddb7LGoQ&Qmf=&JaSN}U7G*8w66Rr((3b_!>jY7+E~C^WuxvOAlgP&tIy~B zUwein@^#3&7OU|mYr&(2#*be{s~784pFW2efnp6MN^llwbi0I)5y#DFQB{3qEiI=P!VbVl8<{MWzu)rIbw&0H0dO0kSr%@btNjvL7 zbZoeB20C?2eFCk|QlZoCHCs{=RgZ%HMiU5`yi@C94`g|8C#40N{HF7e+p;DIh@J$s z=tf3pQA&pqT-gCbEMnhNJiHg{>K`kzk$yajI>0C!%oX=86U9F81)+a+wUNz-(K2xU zUpDxMQ$jIPNIbyOVq`@&6h$v^k|ZVXq```K1=Vfsq6T<4ZKHy__vZs>`wd%y-M@Qk*vfeA?-*zW3aK#6uZ7~%u}@(F*BO`?E;w$k~v?VfC{ z&XDGd%+%81={mYtb7mXAxNoBc+PXxB%_|H>DYChrwXyQ^V;*NuolU$K}i|A#^ z0!#s?w8&8qPl6znb4$sDDPjy`NQ{opPf@`elC49%TeZTRmUfd+t-gosvNpefl6!8o zVM@*+Jo87t--s02S+WMsCu5l0l;T*Vb~vHu3Z94~1DGb&D&!35UBXQ*(^*mCJgpPHi!EEM~B z2xg1jv{5FB!X17pBb(Q^*dFM*XM@sh0E6Ow`(w=$#LdC7&0wCKJt;8c$ zmlS2BaC~Zu+=t#%>$k^G&tQu>+1mbp^gBNYq7!

#5E=sxd|+$5Up!Hav+OIn3># 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či8MZF2N~)Fe;-CqbT?_I- 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Μ z^)WmhdKZ&RYZy>gHy%{R6N*!n(SkOp^88mU@0;{N-2Ixt(v$67;M%!2ZxwdIToPAZ zDX=9g5e{ivm(Nq$gkVOV0sO(}fYL$$21wEkHTt*hwN)ZPeRoTB7QlleGmg#~@NF@4 zJDX;z!o((V&##&Vha&2_=F#Oj%?2xS5G90S*VoRMJ7|}zUmHjD;sg^fgi;6h*5dh= zYN;DQs(0g=a{_EILWw84ARr4+$9%SUON|+sl?m!q1tFVQ<@zuF$)8(-01l8lQgEE$ zQ$P$IuZh$HJ%C(%9X~-0ULJ)G$uhc!^NL)8Q+mQx3ROJD)5rS3-EfEurm#@6TxKG8m+YpLm$d&i-TCnpGKow zqoD#(CMubeewbobY$;Z%yJ;(^GSNjINTffGHolSSqc%SJBYRXCc>04+p4G?7rbH(g zrg&1r*z^4uN59F>^2mya;V0vE&>-$i9=K5aN@y&opIrjP#F>?mT(BIN65B+i!)h}) zofy0sX=DZCAx+WN{Xy9kgun7ia7`6*jB*e1qXD)_&^ZdAAi|~ej#t{rQw?qKA}YTU%Z z!s{TD20{fP4L)=BeAg7VFj#8+i3Lg&Z%sfZ`dt|P>-*4qL?}__c%#z$>%8V+_!U8I`j-gOBEMfb1a zbR(HxPa;Gx|2{&x&i^J4Iyc$CzyRn^{X`z;09GtmGxaapNn8c$Ux4iocY!L2Z-hmN zl4L12r0%eL4=QI|#GLip+_Qu(a1EkFO6Cb7E}5y|O44x3G0Q<|Z&-_y%hMQZxN-W@ zH$?H2I>tjFN^WFfFb?4-D>sf~^m4H?cyx!v8VzkxxO1q5M^i8DARw4(9#i`YA`SGc zRWkw;IVPs2P2c(Wi)XAT-vpe`@yjKuttzXUb@hx~n4B>8-+(ASY|5m*Y0JhHed;W_ zUY1q{sjaqrj#TcQ1W6bsbgE1~ZM<;)j}%Fp7|F56Yo+KBtVz9CzFV5&zZ8I@BuX<+ zN80j+O{Fht9(vmCOp@|7ztVTS2M37(b-ec`+Y}-h^$BOFLH8AI{Pansk`&c8C{JMU zxS3%jR~208BVhi4S3oH=4*#KXlSF8VunlAe#ak=Y8i8A3@mI`HV!#i9)uOF@(dOPb z<)NSXm1I6FA>kxb4_N&@`m{7748bX%WmfGp7%C9Mt_+eMY|YT%tG>X>Q-1Jb0(~#J z!4aaQFiwpYBGzV3Y1rVXV8#*Ey9rA*)&b(V+;t*{wU4kc!s@76BFQ9X&SMrr@x{e( zG$^Pisv*-Eck?$YDx9Iab_pAlLY4&=)}I%tCmH*zjq>^v+UHXK=H23Q4>2x!oNd!v z3;2PS+{jmL&QEq10eRM-1f}uyvq4*HDpBOk7Q@%DGM(U3$_K&BT$-pV4}KNY#2}mm zILh{IOuWmK86p*XI8K^CAu!WQ^7SFTtXLg71oj;Q$o%Ua;bgJ>W#jj1%nK}#A}7%n z1ZTmRn+8ru-W7jwYV(H~h_l9V3_$Rzw8l&um~b6ptfb-2I&c`6HaA7KPm(;NN9;M@ zypIZG3>{*+>TmxI^Nm@RlHf0t732$2%sTDNaw z&zyf1?z4j6m{z?>LV zY$vNjLAfNwMXc}xS<`}iDI9-adz5R{^pwRsYX2dQGW^bA=q7>@q0WrlT?u#JwWZdT zD);0IwJ87i#W7bC--nlVd2}_e#Z@^Xf|gE_;&2_!?M0ofWHtAX`t36Xl``NrA1t`N zrsjoz&0($>7?Nm^@9E4TuNEUta-^&5Abf|B7RVzNCk#9|T4pIl6S*8Sy`X>yEpDc_ z1aX7v_fD*5Fjq`M3;K?$*xWVjYHJRw=Dmf|1Vd&Wws}BDhIk8qC)?EVVDU#BRMB9P z9AQ5uLoQkPVxBQ5+C4yYU%1ykHtWgBPSp%&2z3^&0k#$N9+Cq{e5Z;_1PJ7>TX-eb z5_QVYs)KEhwy;F3QWO%E4iT_w6s!4ql;lz->6eo^sxv(AoAQmVe}taTn10ti1mdAf zkP*Nm1{>0#{M5Nk|3(A;zETWfXD?DH_)un`jfAax$ax zfwYz40f<+kUA6MWOxmOVTW>>-5w^#va#&NKP#`Ew=^Gr7M1@sqA@Ao&x1asjM#I7) zqx6llL*6hef0oBeo>NDQLozvl~Pl~Zr20mVhgo{ITU zfr8}BF7Pi?;|g9reJuHYRwY%x5hI{c-cM+7t{qjFvuD=J8<`vnPbJWNRpI(6LnrJ- zW}=D`-*LA%P(Xh4=$X^s44n-pC{*HUC&|_t7XU6iIlz=}vyPa<3eAgR(F6uPMWLRB z6P!fFEGAl6k~gh^Wa(fV(Nb>QT!2lRJqFuDVJIGd4>*VU)yrx`!w`x%Mfgi7y-FE? z@wV*Wpc=}k8HSgm%8MYZsj3{2CO$qhWcEMUpT?qIlG@6#4-JZ;Kjq{SqkQ5>=5TF8w8l$As$(miW zS?P~{`lKoyi`>ZHB&)%6Wwx~~Rw}`zI}AxFB4cIIsl%W51G6$C1{A0SD-5o@ldOEe zd|xr`%3s z^vRKCkbLkCoXg@ECU1_>FyhZ_%MGDE&kZG_?xp{FfodGu=V6v9kv2YlLNZclgv6T@ zE0IZxRe*WnF!-Ta%Ub<0l(Vi49yhBpP3^`D7E4+hoz-~ys$q3d7Q~Xn@PRL_QUqCs zinqu5)>HZH#N!29y80&5>faaPl3*i96O0nHv^TrYiMhJ(2*@MO^<|!XVIIIhcqXn*@PTD zgKXQs@M;N*Ppcdy(M)7a;@~CzqL$%je;0?5AW+6z*kGQ+Qh;meM@+4cYv8AtdxP~e{!lo)qRez* zK;Oi;HhYp?M^c#~G-Bwio>dAIb5wQq3<#qM{bPI&rDA@rcMf#oS^;llY^X!r2MNJ~ z@xHm~01qOPynI3jY;qbv=&z*aLm?1K)yO>(6>!_J7$F!>-G2Ij2hfB);~r6Hb-<{9 zX9QNiU=l_CUve8oc=EqDZ-LgVtL9cUpYYB86U;o8H#EpVr*e82$#U2+LI_-U`J?&} zSm5-7*j^ob&Ne3m>yF!JLvO`o~vaLe6 zn@liB-g-`1tis`{zs!b03~?wkz?33|>eEA_bZ3TBvRV)Ze*s^CsHgDoXP0j=cNOJu zPW^I8;kGxUu-%S^lUv)1RT5VM|bF|M`;H+b9}U9rGceHSAzUgls_B;o`iCY z8R;6u!8d3Qg^f9mg2*rZw~z7;Elr z*2(JY$q<8iQ%L}8$y6_w3 z*P$3VBL|vQ;*2`k-oKph)^Gv%uiO4uaLiiox8W8;rrjp6ga^8UBO~DgKR}pjpb6I- ztrph_N|VCZojkFQG(T*J9!Oo@__f=%lak|E*KrxZt-9mD$nDV(gk|#*Nxwlj(|zj| zQ8oJjx7M8`tIz9i-GyMEJLZ$lCf9^!snY}6&n#`H9v0E9keD7cvHY@wXBgy(Aeeda z*{N(Dq?j)%(-;T>rD&gNsJyfR68t92N9bF+nFtx#J(~$e8Mh9j1KLarE4NiQ`p$6C zpzx=}-7N*??->2?gYWxM>5ioLBs2RLxiazE4+~vD#rC(Lk1mhO-I$GpF}3qZw2I!O z>M`HiXOLOb828cNGS&UcZ#e0dweovvAm-@1^&5_hb;b%3+xX&{Z;ern_*-&Kk>gOZ zi%-K$h>Y_q^L4zvJaU&$3Nk4i%`j1TOus?-=bOsyzfvs3ll?bk2f36f0c~I)c4>1T z-i`8KX<|UKvjR6HpB)c6R|uyW1aA0HYZPNwq1QIgxd}V^aEZVgYfv{2=C2JPmeuc2 z4!ZU@ZInzxz58A$qefoyETTfM0D$#w1P$h@eM z`e$^|W6zp!rHcx?HP{16qk3M|Mz-Nu5l@t&f`9BcMSjjaj+3di4fXZu0dN$qyaf=% zQ!2=P2lS4ov<&^b5s?O}l^NH8*3XLwXjH|at3B+}5&DRjeYgQGSPe1lDF+BOKZqKq zD-_X6%EwtvfGY$jEAD_og$*`Z-vR4Y5eh|jAl2R6r#pZXBp2{wa5o>2C5Wyd)s^aV zCS59NLp4i2=_~wPLA@|^FgiHHGC-h7obE7izBbF01z|Jh$awUuo=9gVZe0$f9YV!O zR#mD(6dRwTfca*Ti=t$P3?rN^C(>+dCIcbF8KaQ>Ak`AL))@?&e-M7J3zTNdNJOqf zt>O9Uw#vjv0dXlU&>2@d@eORANwJNc0u-mgWzkvh{_4*?5M%}?X)s5Euw&ZDHim7_ z!b$$XY~e|?U*AUH5Q5J#uI@iUnXI@nv*&x}?w zE+Mbb7!UQtog#Q#m+D+qHFQ%qY{nkc4w@J$H6el@N&R{n_%6HZwJ3ZmO|rMdY6p`B-a=pw zp<@_uQkDgJeIWMPozro4dU(Gg?zZqAapXHLrZf|<)5*Sry z6_URe=t`NVf@*YYKvug|WETxpcb5J=+H(PiQ2*p<>g-hysT@EwNzzmc!7)SE6ap;^ zj|?Uj!@5menpVGx_m zKVPe~ZNXmIze(gb&fnB@>K;$Y5ZbISs$n3UBycg)7^$$%)4mRmPcfj>^Yw{%*OY zVoZ}lMwbs&K+1Fsby2EEo?!+F>_AKlEKi0RJNwk?H_WoFYsgsN?vj#0gG_SsFbc~- zr-XZ6jj`eH7{|AAWkFLbxeIv$B^~b0soWPs`GMIlN za*bmYu2Dc!$i=-3Lh>OzvXcU=4u4&60s>U9a8IjRF&k*BFJicz&;)v|z!$Eq3Qe3M!jeZK_z2zyxiCzen1O^KE&UuKD?|@MY z?Z0~Zf+Un)9+oQ3Fnw|t-ap-0#Mdj3s71XHSY8uhS1<#Jy_k~J@(X^Yd>4?`~MyfzU6u;D*i zSKN7`G|8mIn^y4S6KvT9PH${;;h|zhO0r`@_Ct;8*lP z_N9iKMbN>>J!+J#hP+bS1bIjYh&D`$iFq>AKXm!l*epi*%;Su(x%x1%Z`wK^GQn`y zxjObzqoiVV7x!jjFSMbF_h$+nTE-?&?E7|+~z z?ww6q3)Rz_>2qj~4TVLf7me6(5SAZWl?WdM2aWdk2>Wza4~?5dPpnV|uar4@q@n;; zAB3S#$sG5rB|+jH)R`=POB9Mp;iEaYBEDEsC0zG5lh>hqito|WEkbXS+MZniq(tew z`6Rl7H`es8LR#VSoe8KpSK4T!pGDhOh%$#0EGHThw4jGdW}Tv!rm&f#Ik!sF<cR;9B-31ORuS`P&cb>?n-d~Ra6fsE)#)|wm5tT&G&o;WRj;RVrx zI$-_N4$J)yRMzHrS{9w4Km~T$xyedt#Cjy!YmBV(SP+UZOv3t|4u#V7b*5`_fo4{` zx^i5I4Ty5q%<%z4->jmMVh3eP;1C7rHa|98FjS22t8Ma%YrVdMPwinG)sJY>g8LLx z1F7@zp}r@JT^r%KdxV&8JO;Qq(VX5IGnNpKXyR_0K+3dn z*`fTn=J-PYF^mt$M|)zK!2wnM(hq3-%b)-GzbJpO9F?d72{+G!6z^Qf_iI(_7tBZN zuWf}d$UAin{_cmr=3C=RG03N^@BRAwDaLx7ElwRK&LqK$Fc>ut1H>$AXm8=w8L;Tq zrBA}^>MckshSGWyXXMV5Yro|yr9MGv3_MOx=vrx1P*LN=rPK|@!=wQqo}b^F{T*O7&~AZ>W09MI4`38bc(`OPa%%t| z+N4#CiAs&5u+O-cGzx39^zvp{WGKK;o@GHyjcnF8UoB`3mrW^-HPr5!l8^89M``TW%htH;DLg<+%iH^w6ta5RaZdI(~)o zrR3kTN;z0hi931XP}-m)UrOYA8_Yrrm()+F$3zQADcb%D6Rt!v=n+(#a0)*&@oi<) zJ6G-~p>zUWq=z)ixVHXq{x-lCb(5=+=H*!_#iM$}h_wzhgFv>3m9_CWZ-PMxa7$G{az#u!On7gl>8RBg~LUtYP75yjgmKi)T*C0@9yiaO5lT=m6o8xSMnt=R9^iQmG=#Sl)Umz_96fHJB$ezPYfo!oF4fgH)I2CIDip^G}MTaOFGK9)?%Swp5N`kBs8ooM1vl2|tWu^VVgmm}Ii z5+5lekX}8G2`~Io@GQ|%kdf`5qjv9j*B!O-Z~y2=)g`n}EV)NuROz6^k2W>cE+@z~ z8^Y{s0rkdwW4lmaFvJ2S;M7!2z-P(!?9w!I6=(rYAC$eOQvim<`>f6;myiI^P*WJ! zmmR^CGA>)T2tS@02f42;gK&ib95r!M+C254HsKJ;{R{~%e@lqS{veO>l$#kwD|D(* zOTu)*5!Gl*iGP);M)lE#c^^eZNms@bXOb%QE8H5w2?kI{6WQ+Lecl82I{Nha!}=|e zpJD7lJ69E16jcg%W$5Bq!Pch;x!X_!xeB!&ncfsK4MUvRVwWngnoSjnoyegK?>H;# zVBlDfc{|(zSX|-xK`nL2>a7s?E_}5Lh*@&8A;iwj3iA^qLrgJHVecg}H1+o=pF;m1 zy?zk!yE25~!|}>eBqx#~`eUS*yEo5TQ)#tpnR`hbAe+wp$!%WU#vI-Q}^MkV7 zg!Ek8$-B0Wc+Fe``I5AaBoTLAte>ib&6PR0at9*bk-lzaWAze7FiiZKXk?{&7Og&> zGLG*y?(w@CTC#kL21W8!2Eo+n1FcMAJ54k#y`@S~r03=wMfdFfP+HbHX$OQ-V89vA0gID8L?0*@2J01zZ52DrV{p2orJ}yT%E29$(=iOuupDucd^T}K zo0E<>r$uNhKOv+y3UD=kEfZie3f?ta2T&21AnxzJ9wtF_SKu8Ck*|A)MQ(*d;P)P< zY5Fg)1?{3ki2*V@>=!W?5RnkQOS@>AJQH5r80m6fcYpWDOi8zeW)G{4LJ#>}BUO_& zM%SSF;u)bgb115Tq=bS#R%)QT`*)t-d*&SK$(SNo)qW?o9YP+F=m$CqG!VGARHK## z6GRV$%!#K;K~NhXyS>+!*-tgF4>K&8;uC#D3YWVK(cT~qjbPn5OE#vJOwqU>^q^5*M|SFt z3a#`a5M_PhsvQ&pZuSiM)RRED@RKfuDUmek?)~)6T^I9+JNpb*Za{;z!f# zp>Ib^Z9cm(vUdPIM1DL?^Vm%M8wdrJIUIiT>k-Ic0ukRdy}gB}zFDvt|W8y|&yY>OShwq0$?7n&m#y2pcD`f{R2w? z$0C21x*^ntehji7sHY;$oHo$RanXs6*X>4y-BkNz;yVGono5 z?4pJ*VH>IV=^hmwvFv6277#mF1FQQ(IAcViS_LCE!-Mpfm(cc65nCIW9#Dm;gEAV?7XS>Lk{(*b zl(Cf%*yS|S$1shhUfBQlw~h39t0Z}B$mOAgYn58X{XB69-O_GQPi*70D-*<7DJS^J z&7-#<{gCZQQj^R5SbwS1dJF;jKmN!R6=$RO8q7UiH*L1c*T0v^t_am z2chw{k)o|S82k|Et_a>w@57q9R82B>1nETgSqemUoqX~zWZG_;H9IkR6UrHe5h{jj z&d|()&eC2KX34DsXcfyCD`-`*2m<)EL>w`=R3*S%qfYw8wETKmbPl z3xTpbD>bUmP7>@Ld83s4&=HI+ZC(i>c@eEXU1R0X1Q6ukjU9ybp7PWE>qWx{N{(sx=5N%l!%3S@kKj4~T`xm^3AJ|glT zgUKyuajKAw^}_!iSOell(P>}2xHRULN0T*KAOLoPsBU0_?F6 zJ*Yowqf)Er7zLHiu$;ezZ}|GU6sT9zYib`7X-*7ijqOc?TFWpRKoZJ|Ppt6D-CxME zQsBb&6MzQsWHNh5fTe<^26+mR=$-ul7ns%*2Yo}USFoY9ezUPG>H9Sr0oUPa`Z%5V zW*m7QNR`m3M82f8sO`uVZ!%H91+?(cV-GvEdScc_oQuM83k;uLN+d;Psv88U!Br*>S74OKrOb{|?3(iXFlSJrDB5yj znc0z8JcbCaQl`?4EtDyWH;`cy9VT9Y;44oz_p&txHJ-7BOrYF(|U z+r>BLa8i&nREp2kY16(99oD2=F>A*n>=3s(dh+-u^>J<3u-)d?F(3|1$0}-N1-KSy zDQn4ge&cU4kqtacYP0@UF(iqeLB^f^#N11(k*ljwU?LrY$n*}T0@Qq1! zL{p=r-MW0Wzr-1wqnn|Ahg1ZTzL1M_VC7u;_yc%XsUcKgQzU=C zlsQ`xYK)MU|2CHWpV@nt-bm9dJ*-yAi0_LCGP7n3Sb`x>dNfs?XjWJCWx7=wjKIpw z%4B!mCdumRnwHTBl99})BpDPhnUw`W7ed6JUjS z_2Dt7pbV1K`GXz({81cr-Hqny5WwK1S@jzaAOsF(7%jkFse^ml_v#aSE8t;>S*x;g z1Ct%T=Lb;wTEoh#Chhm9m(h4*{T^z^(9$2^17ChXcAE1R8H>J3S1V+^W1Y-Dpr}PD9Af7anQ>|I>4^(@g!x7b?b%%Anz{wwqm&xtGjq=fQ{375C z>3--YKJfZ7>67UqEz|(O0?rqPSTau_6`X);SVfMGtnDTtHYu6DXbL?th^Ta9E}t7! z)}-RES5dlD?VLajF{^dI&C*K5rvr zVFiJ$aa#4EHthT2(&=b|Bqn;l?lFmldOLbFO(W;gC)Nj@6O&Q!SN2;TV)CnL)_dzV zn)1v_MoTRyWd5Vpns=Y@^&^Dfpkt+`DW!v5hrp5hRf?I@18$;j;pCusN&-G2f1>*_ z6LzpmE#Eqd`65;sU%%~rOmqPC$RqG2cXF5lUDC06o!Jl!1|8aymmew_9Ke;IW_PTN z(yL#hoQsT9B!Ng`=w1NjswbC5(Dtb9myAVQ2l{1AK_FTJ7;KMLo}|Uq z=`U-~9{5{7`cD19eB=xD?$^c3-@Wm?ehx2WM%q%%N#{gZszt*^dnE;GlT`y3$)3kU zps|GK)+m6zWORE6cfoD7QU!cy_e*+~zYHWbn*&L^WK}26!XTXINH5hapSAnk@$}~y zi6{F*?dS&K5@I0DnkfJR7*M`~By185=Z?v#e^lHMS_0Pdz0!gzm03zche6x}k%_cX z{ccDh6ZRq(y#>*=GCr+-T32UKgtp>Y*N;v^h<5ttV*(1*nI3_&X+SJ)dZq<^hC({Y z#T_eq;(-OEsKBbuYMDJRR7EA^nTd^@0A`s^0!krkcV1uRF?yHPAJxz=mVt?tui3`d zobxGS4fVs_`yr3DeY;HN)uS#5KA&qtz}Xx0Sqh&I)RY2%drj;MtgkL*7!QthHuslF zDoT5G2T^6R!Zk}SZe)^L-L?AhYrp^dexMQJ=wHndi}V8qQyEwi1N}# z7@UjYcQpOcpf;qL6jnfD>puqxeck~oM&Z&m_B0}5q~nTq^Y|cM#&!9hLwT`nzVZ}6xsMc;<+OPvn+#P z5B({!Tr_^VgG*pA{APX)dd4gUVIzY&;9{XCfyeE{jIv4kIeH**G5T|J>fu_X3BV(y z*DOEKSSsbq(7OIFl3r54)nh>bFQ3>wPMZ{ z0ZVjNTKQK$3rY0Uq}T)YlXE!WaE9pc4Nfb@)5_pgFPZ(t+%qRmHJ6}o-?rhMuV*L; z18keRa2|d6o7_##)S~_qW8fs-CR@mz!ZTw?GeWvxHbd|jn6Dml61(~MAbL(}+_yl! zHR3$f!cqaS%|<|vZV^09M!c|09rXQ_iFyKf;gSf}ZGtDF*c6tClxt_GI%mejSR@QI zZZY(B-Cn3%J~J7DN>q&6nS5yOqpVk~l{>O-Rnbs2JPO#J$7$$<44#RB*wDIwy5}Zp zbs@E^6&J1OTZnFhV=vyKV2~Kg_2UzpZ;Cvh1135YJ=1?x_JEsSH|=$dEJjM6Q1)O7 z3Pl&U#jg$an2HQ5w!`t&-&&DKzmJw);-tVJq8m6efAx^Hnh|EiVdzEWnqT*2y~1Ru zKLr>{e${-{@a{^(`TC|Fm5~}h-RPo_+Z{S@=oG&9ZMFpAYp9b#5xsz*u8-&6Ft!0RBNiXi`(og|`VN9`VRvx0tD0-_S}83*qxg{js@=o=}1?@g*Vut;lPo5?`td zaKUG|#B`CR7by=e70U6ILr4Kvdn>v?>&g8cglX?EPf4dx{-Xi0ZJ0=X5odrvI|lDz zS`A5svYN+(rYv*Dtbe<8^=5Wc&Wt}r8?JqI;TU6*^BJmB-Q`g@jc@B~rKBy@&`wJt zA3y-t6QS5ahK$TdMJalPA4Qb4DH!TL`u>L>`eu=?!zgOq{m7+qJ*XtPG}!T9+C zB%l^^qg`u$DO zl2q=|01!8D(lB&wSW#U{hNmU1$cuvoPL!hNsVe7!Y&h+omF>8|s7~YLlQtrkfiwek z92}sbhm&%6rAecs7s{DSJ;~bs-W)kS=gxi$IYaMmYh?ckW!?m~1d;)wT~TaYarGrR zL1;KXkHkQ7p$7`habq0Oq5cvvY;5MqxTt@H; z##Ty-ju39Ss$+kDigX7Rtci4tY4ZMiu-wNle-j8-wg2!4#I8*axoPPS`#v<=k`x<(&*c?6=R4-*Sc|5{n!Ye_aR{QvqSRNE8N6O$>tuQfEkJ)@Zf` z5z+z^vaUxd;v1RFf&u~NB&$`yiC_)=D&Mw(5%D<^OCq?S6sV{wMoQ>lS12%1Lef5| zSwe(=GxKQwUTV{#R}*C~kC!(IIX%SgiCnJ<0jFZF&-9 zE^g7)+njJFeUS*V+jZ3fgtMfBb$jy%k>)J zXstbUp%`9rA`YP3)g5N+yRTn`EbAWNRlb(s+3q1+H2-blnH7soxEs`-!$z(PO#WD+ z8eU7*(Fjx2uVhmXIUNm(uTA_*jpic`G7vtv^xitd0Ap%(`6Vf52vCV4Og$QVT^{^i zp`#-3m++~Bg;!%C*9EzVN+T+1d4q<#J3uL+L`m8f-AvK;vN6-f`z@LY)4jZ+Ac`@t zf|!PMgMmPAB>FXg1POziW?h#qN@vs(VDF>L{a4GxhvdDLXG`2i*1(X0(4brt^y?f8 zuGegZ#Nvb|IE6$IFi&aRVVF!d#hGlXQ%Zd@Qt#WFp!cQR>jr=#XsmQLR}D>28pX&6 zfzHEOwL0ujDYBcurq~sh9oqmJS-Pb>zTIXkJWF!!Hp$X0HW`(`O>jXy#wvPDW&8H6 z)AP4B0)3&}JSv)EkZK`J>+#DP6$Gc=PLC)q5M@H+PDJ4=&xjAS9i*|*GQ0p8+xsh!%rV;!a$qkj+9;hPj-wBgH)uB}-9>)_ByhnYdBPZvzy9@~VQrsdt}XuS_ez)~da9 z?Rxpv#)PlIsuwODa(RPSqSx|``UYtFVrn~_%m4_{d_l*acq%f9dE$g97kfqo@SK6~ zI3UnGNT((Wudtn8#Ri6PT8h=CA#VB4&akR*k^fvRG)>fIDRch^B$D+22 z@ju~B)Y+U9nj;&lXY(6FJM-^!~`%W{$O90;A7{(=Hipo$kUEL1F~pw;){MPfP`G!Qc99BC=CWh{RJhy|`U@hw-{}kf6oA3KtNtdmkt3o26FXf83+@UmZ8fF zGroqErvcFR!*49KgxUC=*(tm%WSbhBBzN2mq62x?YqW>qoz8DM%(%jhJ7)D1%3(1K z716kz8`PgelQ8%<5L9df;KpM&|LSXsv44bqrPUfL?fbQ$QXGS%FD)aobF8T0!(g zxF98PErkxU@Cm?rcn>0+;rYqDw2Hv%sT-~X2SD_C?o#G00OJ5>TIHHkU(G($e~@om zqa0gi>ZS-L7EIf()sr&UHIHj@h&C>t8o|C?Uu24?zP)y6V?!LvzbyC7N54GAnZ&&& zqNpw#z1Nj?y!Fv3L`QQC-jfa?SOwvKmwu?zO+#%ZK~itPq*!$mYu|I!g{1!4ANp?w zFF2wG@GtY}MA@MM#DfW6VPu<4RhUBN=|+W}p|o6LXyx9cg3cIGS#ixErtChgI;EXg+aj|cCR6U9t z0UEDQum&9pK$^G!s>`q=6g)7dYo7vtAulO0ZaM-K7A$>EH-}&{&uoNyjp&Y5BUBPX zpkee3eWQRhsZY5Yych$PGTW4X?q_J6N5DiFQR4&Txfg)k*T?jGi?3KBZ3fAuhgB$4 zDb8R;?7!l>n{tYzLlhwV!6q72)E8I+Fd$y*Fd&MxzylwA{N6YGgN+mt&0#hyptxj6jMlesl7@}tZ3=DdTZW&Co}qW(aGG*Du zO!!1ty+|G$Bl1l)44G|BOJu`xBXN|O=`D7o4j8c0Ajq7omLucbXo#(F(4~~XZ?IPw z&8Ex%-ytyqzYKr^J4rK)eiJJs@t%gt4IzapH(6>>uLZV>*JXF>C-S?N#5|g9F7?m8 z?s9ntsU2v%p(Q`ZkbO zV4~EjWCPim#XkC~N_O_k`Mh17R2l!cXZF0n@(+s2bJ zbBz20|E1|)VLZgQ$aaM3IHb4686&iHYlIf->ap$Y)%E!76;5F2B#d5maAema$ zf`ns&jv%&W1E>T%hKRt}DHfxd0V(HEIEVGaOBCQF@et=3Jq)!T<4M{m`FV-jWPXiO zOF@viP9iDs(dBuX>WjwRe0Bnv1|S<8@1+>VdVtmI(~&VxQ8u%g{OEr9XFsn$-KZ`S z5E)B(_y*Y9j)B>DiKTBMTBNReX?3J?L|on;>H4Ujuc!VrEM7TJEaE!}J5wCn7X8&{#Qr30~f0`UHD&rgJj%K|# z0X-jHA~Qy=3ap_>M5S530n~-TyM}Xhcz9kM1nnIkCCn1;<3&xKn@O${i(8kH?lITm zh(74Lt?qmg(B&K}HIOZ&xm20XI7?)xJDVZQREq5WTieiDoA)oloS2(dNo!QcFSy?6 z?nJhqG%`WX(WWMSPz%KYHGx_6>au=)?TsTjlh0UN7b1<~k`kF1LrIF0coMLQqE&Je z#MX*aaPaC)$!S@^@oC^pK0Y0n5p;TZqC_+cpmEiPtoza+v*Iss2y0J0S=}IL2AG^w zPX;kb8ioK;r)ru}@zf+dsrh<@as`4+@UkX&fI?rDEw)`_qcMEx6J6H;sqV5w8^=ZH zqd5aC6l zMjU;yxZJ%Y?loEPu?~P@P-$l0vzu&|k;cR)zf=!jJM;=3oO)_Ueam2boABZm=&axb zfryL2<*-1SIlOhI4h$Kn91}?On{_8~;hCnA0#++CEen0^X;CJ1D(if`PU9+m+y>0;1{#Kv&eucWtznzrta_0KunhB7xI>vZSZ2&@t`nDu4I z>5X*`Z>Q*wFBe(sbJ$(y)rvC`mSqDHMoWHcyj>rufTmt321P)gAbMUz5AX?ukFQ3D zvf`6DgG523R}8Ty-%@uJL&!q&bW_xhT>qMal453~8M28m3r{!#2dTa~Vko+D1or|G zA4?dUMTR7qM^8c+hXqc~OTgkbOh!@LStF_s?9{RV#u0H`!UUoOHEwb%f2+4yxE?8Q zD{yw%VE$6-ksm8f9U4$Zrh3WXtDvVGbQd+Y!19oojmic*!zE82g&{UFH+Ex8CH>IZ zXml#!)YLkC8>EX^2fd;d#9J8&fcfLj&163A6Qj?fCqkSFl2*Y= z5#}WG^`*g7^-m0Uo0M}Hy2u1kE>JZ0FVI1h;SL}b$dyulwZG1ZzDU<~xt>~%+xQp+ zIM?KhWv}vGjCsQc(8VbAEp@SLH8Q}%`B9~dE%)sSuJr4)O9TMp)ViHlh#|TJ)e^Dy3mk`$oG`Z+3u(~2kCXx@QYqZ}5;s6M>ZWLalcZWDRg5g%K*@7bKe zqg2@3f3>-%tWt>44U0PC^%3LmN+h-jLkO_(9m^%|zpOrs0m1G@p!0@1FBD{!loUQY zt-dg-obWg!yMDi$=yL{-fU09`(Lmb9cr{vU6I_`hYZk7<;3Ah)r3oGE(y{?q5lfCf znKWakvM`d`q4H<~vc0K)qxnNfw6PHW^cwa81{akaZiSWgFZ-)gle8 zJ$R*5RJBE&@5uaRS)2nuYQybuzc3BiG#9qyxobN(Z&5`PqN;&`1PG=_=eqMWA9|Z+ zB29r-yQb$QX`j;0krK_s9gOpkV2a(|=Jnofkhgor~a8{V2XmzAI2~wFAuu z7&K@$xAj$IHBfT1y1SPbWa_c`H!7k7f3$^TIn5JCW4#rvmc1?+$5Pcy8JiTCuk1Pl zJmU3LW)ogtGyYHp%kvDOHv<>B=fX*-g5Vrr4VRVBCYQ4nP>HJCk zZ^YN?AYV4ROMnB`^2466&)6bv1l>S@$-cBJWxCl#1+AJDg(%N?U6y##6<{CtR zFMX0d*ha_mgU!d@Z5n%!4vbnZQTw}(5eS~{1Bi{=amj)d```)tk4+vJ3r>lwwl6?dc=2(U-U*1>MW7ztv*5o*RrEScF?()-0; z{M9f1r+-pkg$6jUDrFfP-Tc)r{^|dL|Npo4zxDxZCdaEZ?A{B2BHa7uucewoHV;(3 z8!H?g`r9q-V@JVKUFR+cl~sM^m#Ix z#U9O=5sRZrQ)96z%WLohB&_ZY?#?eJr1NAC6q`s~!jg9f9dYI`!sHDg4tXYpgeWvB zeW-3|V}a2nGL{w3;FwNRiXyluKzEFUUd#0u#&jo@&p>2U*|8VHORA&GQ`fp&{5T@3=p|+WCox($tsAs>H6UxnbRMP!?35ipwBQ+bkTQQ+x|o=RS>U z-iIuyMn&nK=Tuej3=I2A&UgZy}dK-nzMbw@`MAi^n%(6oS! zZYQU3sTSwcy5D@F*`k5R@RnJyaUr0v6?uHE$DV`XIi;KLDOkd~wAb^#buvTpe%kcU zf-OU44^zd;#d3pENq93+iKZET4rS%n%rJB4qw(j4k|)U_fiEj<@Ew9}QC%sK4EP1? zQARec$gDIh;<17axlCQWo;XBnD&JxbsX(+a{M4abj@Tm^!NcdMgtrZpY<_$=lwxcL zL(Q1DQ(c0Y7pn}X(LcCEE}n_d^bEw%DU&}@-S&{4WSJ|+sX!oBW*LDm^HV0$CYejA zNDrb<=ZDrAk!W}`=hpemm47yLOb>HO03#WFabkD_wP^s6R(vk>)HMt2%K}{t!$??O z;p)GeYnH4R8Au6R2_N9nRVp~XE$mt1F3iz5n(bMeqvYOaoqP)UgaV9LUKQV+B8}uE z)?7fGj8)Xdv`DTO7>h5FBc~*^H;a+r!;$$JEa$$I1}!}QdlB3)-y?@km9oa=z%HKWh53pob)O(iVD6iJhe6%7KI z4eY6R@v$fl+qjBr8$b>XG0W3*z#B`4yqT%+NlVO%1?|^o7QS|sPx|XED8oWVE1YrW zY;tyHV%OAoy{3085{jYGNya3-g~{~%y0*=)tE&<%|TKQ>9w??uC1}$KBH&H zb_uj!bO$oq_59=o7$VRvSZ_^$(4v^fQcPRCoN#Z5EK4* zHoE2qbK(SczIp|92yinS0BuUL;n#+TYJ=i!3JV50Kz=k3-fhSK)>SM|&20=2;08|) zE1w(QVve@8zV0{9jPskJkM5Yq+GB_CazntM~0sD zKSV=)b`{#Nj5PwKNI^SA0WD|Eqbm{cAe0Zh@-$u?LMQMmnZXQe8XkFlR5B2G4FKV$ zE{X_gLX){&msU~w%kp5awoD1{0Ca_>*U>k^#)(_~udEU7CN!hsP+43-d)FoV85VCc z1cokr1YnR2h4&9D@|rWb@im%Ardc&Yu?;w-7&pibMmbd;f?@NcN={a|@<3KZPR3;W z!7xPvoZFY{8k^V^LhvJ;5J0fbVcp`4K?eM-+e0wj)q=(SU@TYdftZ&~Eh}CpgA9hO zLbnM|rl6PW#l@GNK1L8s97Zj zyrBa`-kn~WtNZk9aX`U!{%U?&U6FUpoNjUD>N3;l%_zHQluJS=M3}x-R5P@iS8=Nh z3q&y&43yfC$=;uIwj?+iN%87@n`s=_Z(a>-c&j*jOTx4A6x^+g40H7Ak2k*S6x=vW z66{!{fO&|7ojTnn>_`$n8Ag$F>Jg3f_uo85SAf%(Z&74K@11b|$_kLz6Z*K7Jq<6o ztF`FB(wx2ceTVf7g5rwNJfT+s9gU91R~Fv zW2b3%O;9Uz?Fm3OMHrgV(YA|Nf)J455fP<%8#$lx<%#t(V)OvqeR2W;33JWwNhdxs zfJ4{~7MZQ*-jtNcl?hSROs`CdC*(-cn#aQn2%Q8**QdiOx>$g%kjl2EYzbQ&bl*{NZOiyZ+HBTN_nYAC$-_5E3+`H_#bn6Nc++1?2i7 zFe*c%Ixy*t9>`YVq1Ub05c%mV)`U!W*`ySYJg%77F@&}1SJ$1OB+>7UUuaUfknk_0 z#QBNg>|(zj5VTKsFA6Y|1Z=BMmxFLA_b7jR-P)gHdp;VgIKMAv_>bS*?n7c|1g072 zGAGaOKmQbkVvl&IcOTu~dT!q|qCl(curRLwM~a@vCTp5AjJ{l$cU<>wh&O48@j04u zq3wtZZOL4q=n;8!35e23DBr-71Ma=;?dz!i%G@1;E0fcXSc0`n5|BB-{Fg&e4X z`ncq|!q7_37{FSrr;J{q03}g=NG58Zz-$t_Yakydc3I{zNP#=bKA!A`W}6`bQkRU?thdb(zeLW=cS- z!vL3f73nB8VzC+pOc*RhB85gfJ;T(x7m;*?-YTKt7F#7jt$-;02`~LhlZ^+_OQL&t z2?L>CFzmqvW16rvAjZ+smnSXZ5rm!lSdXAcEd^SiB<%tqtSqE&*S|&97a~FBnUR{* z(e!A1iFwApHhh+3jRYY}tS0EscPS){)zn4Cq_z1Xfyo4H!g}Q1ul-9qktM+g;Pn2{ zWdMoWA)ksIV@D*pz^OnErh}dA7i>fHs7J!dZAh`oaPNp+W8$>zgbf?)CrtjE6d*Ku zLl>I2l#N2+B=6y)r$4@5zcxk=EDdMRE{klCo5!#L(6TdG3zO+f|BpS!#AbK@H4qy0 zp^5nKzMQ@S*qOhl%nOsRCfh!o)&!1AaMhC`?jPtw&EAmHv&8-~V$i_L@y zFnT^cfBA|c0X^FYs_Ndr3nQ=7*cs@!6KCaBSZKiLsID~uL1_tscKI+Rnme1

;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' From 228e0caa6539e03b3a94d686a4444d8d270dc0ee Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 18 Oct 2014 22:21:50 -0700 Subject: [PATCH 054/168] More memory profiling --- lib/twitter_ebooks/bot.rb | 5 ++--- lib/twitter_ebooks/model.rb | 4 ++-- spec/data/0xabad1dea.model | Bin 0 -> 1503684 bytes spec/memprof.rb | 37 ++++++++++++++++++++++++++++++++++++ spec/model_spec.rb | 12 ++++++------ spec/spec_helper.rb | 1 + twitter_ebooks.gemspec | 2 +- 7 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 spec/data/0xabad1dea.model create mode 100644 spec/memprof.rb diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 33b5445..2506f40 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -43,7 +43,7 @@ module Ebooks config.oauth_token_secret = @oauth_token_secret end - Twitter.configure do |config| + @twitter = Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret config.oauth_token = @oauth_token @@ -52,7 +52,6 @@ module Ebooks needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} - @twitter = Twitter::Client.new @stream = TweetStream::Client.new if needs_stream end @@ -163,7 +162,7 @@ module Ebooks log "Tweeting #{args.inspect}" @twitter.update(*args) end - + # could easily just be *args however the separation keeps it clean. def pictweet(txt, pic, *args) log "Tweeting #{txt.inspect} - #{pic} #{args}" diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 0ed3ad5..6d4af13 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -79,8 +79,8 @@ module Ebooks @sentences = mass_tokenize(text) @mentions = mass_tokenize(mention_text) - #log "Ranking keywords" - #@keywords = NLP.keywords(@sentences) + log "Ranking keywords" + @keywords = NLP.keywords(@sentences) self end diff --git a/spec/data/0xabad1dea.model b/spec/data/0xabad1dea.model new file mode 100644 index 0000000000000000000000000000000000000000..90a22ea7753d66e04fa0ace1416f62802da62a5a GIT binary patch literal 1503684 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

i)P_Au5 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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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 literal 0 HcmV?d00001 diff --git a/spec/memprof.rb b/spec/memprof.rb new file mode 100644 index 0000000..cb552ae --- /dev/null +++ b/spec/memprof.rb @@ -0,0 +1,37 @@ +require 'objspace' + +module MemoryUsage + MemoryReport = Struct.new(:total_memsize) + + def self.full_gc + GC.start(full_mark: true) + end + + def self.report(&block) + rvalue_size = GC::INTERNAL_CONSTANTS[:RVALUE_SIZE] + + full_gc + GC.disable + + total_memsize = 0 + + generation = nil + ObjectSpace.trace_object_allocations do + generation = GC.count + block.call + end + + ObjectSpace.each_object do |obj| + next unless generation == ObjectSpace.allocation_generation(obj) + memsize = ObjectSpace.memsize_of(obj) + rvalue_size + # compensate for API bug + memsize = rvalue_size if memsize > 100_000_000_000 + total_memsize += memsize + end + + GC.enable + full_gc + + return MemoryReport.new(total_memsize) + end +end diff --git a/spec/model_spec.rb b/spec/model_spec.rb index 24a1b47..8fdc82d 100644 --- a/spec/model_spec.rb +++ b/spec/model_spec.rb @@ -1,14 +1,14 @@ require 'spec_helper' require 'memory_profiler' +def Process.rss; `ps -o rss= -p #{Process.pid}`.chomp.to_i; end + describe Ebooks::Model do it "does not use a ridiculous amount of memory" do - RubyProf.start - Ebooks::Model.consume(path("data/0xabad1dea.json")) - result = RubyProf.stop + report = MemoryUsage.report do + model = Ebooks::Model.consume(path("data/0xabad1dea.json")) + end - require 'pry'; binding.pry - - expect(report.total_retained).to be < 100000 + expect(report.total_memsize).to be < 1000000000 end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index f365da0..64dc11c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,5 @@ require 'twitter_ebooks' +require_relative 'memprof' def path(relpath) File.join(File.dirname(__FILE__), relpath) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index baf8efd..33ae7fe 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |gem| gem.version = Ebooks::VERSION gem.add_development_dependency 'rspec' - gem.add_development_dependency 'ruby-prof' + gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' From f4dbf89c15e54e82c7e5a360d8b43d6b6deef253 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 18 Oct 2014 22:25:39 -0700 Subject: [PATCH 055/168] Fix deprecations for twitter gem 5 --- lib/twitter_ebooks/bot.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 2506f40..1f5a804 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -46,8 +46,8 @@ module Ebooks @twitter = Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret - config.oauth_token = @oauth_token - config.oauth_token_secret = @oauth_token_secret + config.access_token = @access_token + config.access_token_secret = @access_token_secret end needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} @@ -88,19 +88,19 @@ module Ebooks end @stream.userstream do |ev| - next unless ev[:text] # If it's not a text-containing tweet, ignore it - next if ev[:user][:screen_name] == @username # Ignore our own tweets + next unless ev.text # If it's not a text-containing tweet, ignore it + next if ev.user.screen_name == @username # Ignore our own tweets meta = {} mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } - reply_mentions = [ev[:user][:screen_name]] + reply_mentions + reply_mentions = [ev.user.screen_name] + reply_mentions meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' meta[:limit] = 140 - meta[:reply_prefix].length - mless = ev[:text] + mless = ev.text begin ev.attrs[:entities][:user_mentions].reverse.each do |entity| last = mless[entity[:indices][1]..-1]||'' @@ -108,7 +108,7 @@ module Ebooks end rescue Exception p ev.attrs[:entities][:user_mentions] - p ev[:text] + p ev.text raise end meta[:mentionless] = mless @@ -117,8 +117,8 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - if mentions.map(&:downcase).include?(@username.downcase) && !ev[:retweeted_status] && !ev[:text].start_with?('RT ') - log "Mention from @#{ev[:user][:screen_name]}: #{ev[:text]}" + if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status && !ev.text.start_with?('RT ') + log "Mention from @#{ev.user.screen_name}: #{ev.text}" @on_mention.call(ev, meta) if @on_mention else @on_timeline.call(ev, meta) if @on_timeline @@ -139,11 +139,11 @@ module Ebooks opts = opts.clone if ev.is_a? Twitter::DirectMessage - log "Sending DM to @#{ev[:sender][:screen_name]}: #{text}" - @twitter.direct_message_create(ev[:sender][:screen_name], text, opts) + log "Sending DM to @#{ev.sender.screen_name}: #{text}" + @twitter.direct_message_create(ev.sender.screen_name, text, opts) elsif ev.is_a? Twitter::Tweet - log "Replying to @#{ev[:user][:screen_name]} with: #{text}" - @twitter.update(text, in_reply_to_status_id: ev[:id]) + log "Replying to @#{ev.user.screen_name} with: #{text}" + @twitter.update(text, in_reply_to_status_id: ev.id) else raise Exception("Don't know how to reply to a #{ev.class}") end From bf1d6ae8a46ce7bd8f912d5a04a6cc1fe8d5f83c Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 18 Oct 2014 23:00:50 -0700 Subject: [PATCH 056/168] 2.2.7 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d75d853..a886d64 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.6 +# twitter\_ebooks 2.2.7 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 84930f7..9978349 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.6" + VERSION = "2.2.7" end From 2662558e1ac7307448f9bcceeed0f85e87ab30be Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sun, 19 Oct 2014 00:19:44 -0700 Subject: [PATCH 057/168] Use new twitter gem style in archiver --- lib/twitter_ebooks/archive.rb | 8 +++----- twitter_ebooks.gemspec | 1 - 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 87e06dc..ea50f79 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -31,14 +31,12 @@ module Ebooks end end - Twitter.configure do |config| + Twitter::REST::Client.new do |config| config.consumer_key = @config[:consumer_key] config.consumer_secret = @config[:consumer_secret] - config.oauth_token = @config[:oauth_token] - config.oauth_token_secret = @config[:oauth_token_secret] + config.access_token = @config[:oauth_token] + config.access_token_secret = @config[:oauth_token_secret] end - - Twitter::Client.new end def initialize(username, path, client=nil) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 33ae7fe..6d9f810 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -19,7 +19,6 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' - gem.add_runtime_dependency 'twitter', '~> 5.1' gem.add_runtime_dependency 'tweetstream' gem.add_runtime_dependency 'rufus-scheduler' From 6f27d32bf10a1d7a4dbe4d757a2a9ab2b2c97615 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sun, 19 Oct 2014 01:22:42 -0700 Subject: [PATCH 058/168] 2.2.8 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a886d64..db2ab77 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.7 +# twitter\_ebooks 2.2.8 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 9978349..7e2d1c1 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.7" + VERSION = "2.2.8" end From 927efe7f07555b1ddc83585dce00fc50cf2eb2e2 Mon Sep 17 00:00:00 2001 From: Paul Friedman Date: Sun, 19 Oct 2014 22:33:17 -0700 Subject: [PATCH 059/168] Fix parser swapping mentions and sentences --- lib/twitter_ebooks/model.rb | 4 ++-- spec/model_spec.rb | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 6d4af13..03f4fe5 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -63,9 +63,9 @@ module Ebooks next if l.include?('RT') || l.include?('MT') # Remove soft retweets if l.include?('@') - statements << NLP.normalize(l) - else mentions << NLP.normalize(l) + else + statements << NLP.normalize(l) end end diff --git a/spec/model_spec.rb b/spec/model_spec.rb index 8fdc82d..4837735 100644 --- a/spec/model_spec.rb +++ b/spec/model_spec.rb @@ -1,5 +1,6 @@ require 'spec_helper' require 'memory_profiler' +require 'tempfile' def Process.rss; `ps -o rss= -p #{Process.pid}`.chomp.to_i; end @@ -11,4 +12,30 @@ describe Ebooks::Model do expect(report.total_memsize).to be < 1000000000 end + + describe '.consume' do + it 'interprets lines with @ as mentions' do + file = Tempfile.new('mentions') + file.write('@m1spy hello!') + file.close + + model = Ebooks::Model.consume(file.path) + expect(model.sentences.count).to eq 0 + expect(model.mentions.count).to eq 1 + + file.unlink + end + + it 'interprets lines without @ as statements' do + file = Tempfile.new('statements') + file.write('hello!') + file.close + + model = Ebooks::Model.consume(file.path) + expect(model.mentions.count).to eq 0 + expect(model.sentences.count).to eq 1 + + file.unlink + end + end end From 203c20f6f35e164b14a226e8800dcec9210d1996 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sun, 19 Oct 2014 21:46:11 -0700 Subject: [PATCH 060/168] Seems we can't go to twitter 5 yet --- lib/twitter_ebooks/archive.rb | 8 +++++--- lib/twitter_ebooks/bot.rb | 30 ++++++++++++++++-------------- twitter_ebooks.gemspec | 4 +++- 3 files changed, 24 insertions(+), 18 deletions(-) diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index ea50f79..87e06dc 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -31,12 +31,14 @@ module Ebooks end end - Twitter::REST::Client.new do |config| + Twitter.configure do |config| config.consumer_key = @config[:consumer_key] config.consumer_secret = @config[:consumer_secret] - config.access_token = @config[:oauth_token] - config.access_token_secret = @config[:oauth_token_secret] + config.oauth_token = @config[:oauth_token] + config.oauth_token_secret = @config[:oauth_token_secret] end + + Twitter::Client.new end def initialize(username, path, client=nil) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 1f5a804..aa8456e 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -43,13 +43,15 @@ module Ebooks config.oauth_token_secret = @oauth_token_secret end - @twitter = Twitter::REST::Client.new do |config| + Twitter.configure do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret - config.access_token = @access_token - config.access_token_secret = @access_token_secret + config.oauth_token = @oauth_token + config.oauth_token_secret = @oauth_token_secret end + @twitter = Twitter::Client.new + needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} @stream = TweetStream::Client.new if needs_stream @@ -88,19 +90,19 @@ module Ebooks end @stream.userstream do |ev| - next unless ev.text # If it's not a text-containing tweet, ignore it - next if ev.user.screen_name == @username # Ignore our own tweets + next unless ev[:text] # If it's not a text-containing tweet, ignore it + next if ev[:user][:screen_name] == @username # Ignore our own tweets meta = {} mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } - reply_mentions = [ev.user.screen_name] + reply_mentions + reply_mentions = [ev[:user][:screen_name]] + reply_mentions meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' meta[:limit] = 140 - meta[:reply_prefix].length - mless = ev.text + mless = ev[:text] begin ev.attrs[:entities][:user_mentions].reverse.each do |entity| last = mless[entity[:indices][1]..-1]||'' @@ -108,7 +110,7 @@ module Ebooks end rescue Exception p ev.attrs[:entities][:user_mentions] - p ev.text + p ev[:text] raise end meta[:mentionless] = mless @@ -117,8 +119,8 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status && !ev.text.start_with?('RT ') - log "Mention from @#{ev.user.screen_name}: #{ev.text}" + if mentions.map(&:downcase).include?(@username.downcase) && !ev[:retweeted_status] && !ev[:text].start_with?('RT ') + log "Mention from @#{ev[:user][:screen_name]}: #{ev[:text]}" @on_mention.call(ev, meta) if @on_mention else @on_timeline.call(ev, meta) if @on_timeline @@ -139,11 +141,11 @@ module Ebooks opts = opts.clone if ev.is_a? Twitter::DirectMessage - log "Sending DM to @#{ev.sender.screen_name}: #{text}" - @twitter.direct_message_create(ev.sender.screen_name, text, opts) + log "Sending DM to @#{ev[:sender][:screen_name]}: #{text}" + @twitter.direct_message_create(ev[:sender][:screen_name], text, opts) elsif ev.is_a? Twitter::Tweet - log "Replying to @#{ev.user.screen_name} with: #{text}" - @twitter.update(text, in_reply_to_status_id: ev.id) + log "Replying to @#{ev[:user][:screen_name]} with: #{text}" + @twitter.update(text, in_reply_to_status_id: ev[:id]) else raise Exception("Don't know how to reply to a #{ev.class}") end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 6d9f810..de189ee 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -19,7 +19,9 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' - gem.add_runtime_dependency 'twitter', '~> 5.1' + + gem.add_runtime_dependency 'twitter', '~> 4.0' + gem.add_runtime_dependency 'simple_oauth' gem.add_runtime_dependency 'tweetstream' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' From 31669ed0185229ad1a6f38a28271e19b917c6219 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sun, 19 Oct 2014 21:58:35 -0700 Subject: [PATCH 061/168] Force simple_oauth 0.2.0 --- twitter_ebooks.gemspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index de189ee..8f3fe83 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -19,9 +19,8 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' - gem.add_runtime_dependency 'twitter', '~> 4.0' - gem.add_runtime_dependency 'simple_oauth' + gem.add_runtime_dependency 'simple_oauth', '~> 0.2.0' gem.add_runtime_dependency 'tweetstream' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' From 6ae1dd5dac29acc9b0f736fa9a245b57f6afd725 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sun, 19 Oct 2014 23:55:03 -0700 Subject: [PATCH 062/168] 2.2.9 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db2ab77..5cb4b3b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.8 +# twitter\_ebooks 2.2.9 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 7e2d1c1..2264574 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.8" + VERSION = "2.2.9" end From 3b1d6f856d092412dfe724c2dcc9d5036d0c1cc6 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 24 Oct 2014 09:55:49 -0700 Subject: [PATCH 063/168] Switch to using token indexes instead of strings --- lib/twitter_ebooks/model.rb | 53 ++++++++++++++++++++++-------------- lib/twitter_ebooks/nlp.rb | 11 ++++---- lib/twitter_ebooks/suffix.rb | 47 ++++++++++++++++---------------- spec/model_spec.rb | 17 ++++++++++++ 4 files changed, 79 insertions(+), 49 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 03f4fe5..33af43d 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -18,18 +18,31 @@ module Ebooks Marshal.load(File.open(path, 'rb') { |f| f.read }) end - def mass_tokenize(text) - sentences = NLP.sentences(text) - tokens = [] + def initialize + # This is the only source of actual strings in the model. It is + # an array of unique tokens. Manipulation of a token is mostly done + # using its index in this array, which we call a "tiki" + @tokens = [] - sentences.each do |s| - tokens << NLP.tokenize(s).reject do |t| + # Reverse lookup tiki by token, for faster generation + @tikis = {} + end + + def tikify(token) + @tikis[token] or (@tokens << token and @tikis[token] = @tokens.length-1) + end + + def mass_tikify(text) + sentences = NLP.sentences(text) + + sentences.map do |s| + tokens = NLP.tokenize(s).reject do |t| # Don't include usernames/urls as tokens t.include?('@') || t.include?('http') end - end - tokens + tokens.map { |t| tikify(t) } + end end def consume(path) @@ -76,11 +89,11 @@ module Ebooks log "Tokenizing #{text.count('\n')} statements and #{mention_text.count('\n')} mentions" - @sentences = mass_tokenize(text) - @mentions = mass_tokenize(mention_text) + @sentences = mass_tikify(text) + @mentions = mass_tikify(mention_text) log "Ranking keywords" - @keywords = NLP.keywords(@sentences) + @keywords = NLP.keywords(text) self end @@ -106,8 +119,8 @@ module Ebooks NLP.htmlentities.decode tweet end - def valid_tweet?(tokens, limit) - tweet = NLP.reconstruct(tokens) + def valid_tweet?(tikis, limit) + tweet = NLP.reconstruct(tikis, @tokens) tweet.length <= limit && !NLP.unmatched_enclosers?(tweet) end @@ -118,24 +131,24 @@ module Ebooks retries = 0 tweet = "" - while (tokens = generator.generate(3, :bigrams)) do - next if tokens.length <= 3 && !responding - break if valid_tweet?(tokens, limit) + while (tikis = generator.generate(3, :bigrams)) do + next if tikis.length <= 3 && !responding + break if valid_tweet?(tikis, limit) retries += 1 break if retries >= retry_limit end - if verbatim?(tokens) && tokens.length > 3 # We made a verbatim tweet by accident - while (tokens = generator.generate(3, :unigrams)) do - break if valid_tweet?(tokens, limit) && !verbatim?(tokens) + if verbatim?(tikis) && tikis.length > 3 # We made a verbatim tweet by accident + while (tikis = generator.generate(3, :unigrams)) do + break if valid_tweet?(tikis, limit) && !verbatim?(tikis) retries += 1 break if retries >= retry_limit end end - tweet = NLP.reconstruct(tokens) + tweet = NLP.reconstruct(tikis, @tokens) if retries >= retry_limit log "Unable to produce valid non-verbatim tweet; using \"#{tweet}\"" @@ -159,7 +172,7 @@ module Ebooks sentences.each do |sent| tokenized.each do |token| - if sent.map(&:downcase).include?(token) + if sent.map { |tiki| @tokens[tiki].downcase }.include?(token) relevant << sent unless NLP.stopword?(token) slightly_relevant << sent end diff --git a/lib/twitter_ebooks/nlp.rb b/lib/twitter_ebooks/nlp.rb index 11ad8a5..819ee69 100644 --- a/lib/twitter_ebooks/nlp.rb +++ b/lib/twitter_ebooks/nlp.rb @@ -69,9 +69,9 @@ module Ebooks Stemmer::stem_word(word.downcase) end - def self.keywords(sentences) + def self.keywords(text) # Preprocess to remove stopwords (highscore's blacklist is v. slow) - text = sentences.flatten.reject { |t| stopword?(t) }.join(' ') + text = NLP.tokenize(text).reject { |t| stopword?(t) }.join(' ') text = Highscore::Content.new(text) @@ -91,11 +91,12 @@ module Ebooks end # Takes a list of tokens and builds a nice-looking sentence - def self.reconstruct(tokens) + def self.reconstruct(tikis, tokens) text = "" last_token = nil - tokens.each do |token| - next if token == INTERIM + tikis.each do |tiki| + next if tiki == INTERIM + token = tokens[tiki] text += ' ' if last_token && space_between?(last_token, token) text += token last_token = token diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb index 0b10f64..6e09d7e 100644 --- a/lib/twitter_ebooks/suffix.rb +++ b/lib/twitter_ebooks/suffix.rb @@ -15,24 +15,24 @@ module Ebooks @unigrams = {} @bigrams = {} - @sentences.each_with_index do |tokens, i| - last_token = INTERIM - tokens.each_with_index do |token, j| - @unigrams[last_token] ||= [] - @unigrams[last_token] << [i, j] + @sentences.each_with_index do |tikis, i| + last_tiki = INTERIM + tikis.each_with_index do |tiki, j| + @unigrams[last_tiki] ||= [] + @unigrams[last_tiki] << [i, j] - @bigrams[last_token] ||= {} - @bigrams[last_token][token] ||= [] + @bigrams[last_tiki] ||= {} + @bigrams[last_tiki][tiki] ||= [] - if j == tokens.length-1 # Mark sentence endings - @unigrams[token] ||= [] - @unigrams[token] << [i, INTERIM] - @bigrams[last_token][token] << [i, INTERIM] + if j == tikis.length-1 # Mark sentence endings + @unigrams[tiki] ||= [] + @unigrams[tiki] << [i, INTERIM] + @bigrams[last_tiki][tiki] << [i, INTERIM] else - @bigrams[last_token][token] << [i, j+1] + @bigrams[last_tiki][tiki] << [i, j+1] end - last_token = token + last_tiki = tiki end end @@ -41,19 +41,18 @@ module Ebooks def generate(passes=5, n=:unigrams) index = rand(@sentences.length) - tokens = @sentences[index] + tikis = @sentences[index] used = [index] # Sentences we've already used - verbatim = [tokens] # Verbatim sentences to avoid reproducing + verbatim = [tikis] # Verbatim sentences to avoid reproducing 0.upto(passes-1) do - log NLP.reconstruct(tokens) if $debug - varsites = {} # Map bigram start site => next token alternatives + varsites = {} # Map bigram start site => next tiki alternatives - tokens.each_with_index do |token, i| - next_token = tokens[i+1] - break if next_token.nil? + tikis.each_with_index do |tiki, i| + next_tiki = tikis[i+1] + break if next_tiki.nil? - alternatives = (n == :unigrams) ? @unigrams[next_token] : @bigrams[token][next_token] + alternatives = (n == :unigrams) ? @unigrams[next_tiki] : @bigrams[tiki][next_tiki] # Filter out suffixes from previous sentences alternatives.reject! { |a| a[1] == INTERIM || used.include?(a[0]) } varsites[i] = alternatives unless alternatives.empty? @@ -67,7 +66,7 @@ module Ebooks start, alt = site[0], site[1].sample verbatim << @sentences[alt[0]] suffix = @sentences[alt[0]][alt[1]..-1] - potential = tokens[0..start+1] + suffix + potential = tikis[0..start+1] + suffix # Ensure we're not just rebuilding some segment of another sentence unless verbatim.find { |v| NLP.subseq?(v, potential) || NLP.subseq?(potential, v) } @@ -80,10 +79,10 @@ module Ebooks break if variant end - tokens = variant if variant + tikis = variant if variant end - tokens + tikis end end end diff --git a/spec/model_spec.rb b/spec/model_spec.rb index 4837735..c20b80d 100644 --- a/spec/model_spec.rb +++ b/spec/model_spec.rb @@ -5,6 +5,23 @@ require 'tempfile' def Process.rss; `ps -o rss= -p #{Process.pid}`.chomp.to_i; end describe Ebooks::Model do + describe 'making tweets' do + before(:all) { @model = Ebooks::Model.consume(path("data/0xabad1dea.json")) } + + it "generates a tweet" do + s = @model.make_statement + expect(s.length).to be <= 140 + puts s + end + + it "generates an appropriate response" do + s = @model.make_response("hi") + expect(s.length).to be <= 140 + expect(s.downcase).to include("hi") + puts s + end + end + it "does not use a ridiculous amount of memory" do report = MemoryUsage.report do model = Ebooks::Model.consume(path("data/0xabad1dea.json")) From 81b4f781871a4889743c3b9a09fd090fe5a9304d Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 03:46:46 -0700 Subject: [PATCH 064/168] 2.3.0 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5cb4b3b..cf3d58a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.2.9 +# twitter\_ebooks 2.3.0 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 2264574..b72a6a6 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.2.9" + VERSION = "2.3.0" end From 4052d534b2b69ab611ac53fba2451dc01766d73f Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 04:26:52 -0700 Subject: [PATCH 065/168] Save only necessary data into model --- lib/twitter_ebooks/model.rb | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 33af43d..e7b6958 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -15,7 +15,23 @@ module Ebooks end def self.load(path) - Marshal.load(File.open(path, 'rb') { |f| f.read }) + props = Marshal.load(File.open(path, 'rb') { |f| f.read }) + @tokens = props[:tokens] + @sentences = props[:sentences] + @mentions = props[:mentions] + @keywords = props[:keywords] + end + + def save(path) + File.open(path, 'wb') do |f| + f.write(Marshal.dump({ + tokens: @tokens, + sentences: @sentences, + mentions: @mentions, + keywords: @keywords + })) + end + self end def initialize @@ -98,13 +114,6 @@ module Ebooks self end - def save(path) - File.open(path, 'wb') do |f| - f.write(Marshal.dump(self)) - end - self - end - def fix(tweet) # This seems to require an external api call #begin From 7700a41ac627eb03b3e4723be26dedb54fcc20ce Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 04:27:43 -0700 Subject: [PATCH 066/168] model update --- spec/data/0xabad1dea.model | Bin 1503684 -> 655925 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/spec/data/0xabad1dea.model b/spec/data/0xabad1dea.model index 90a22ea7753d66e04fa0ace1416f62802da62a5a..4c921832d3a17924899d3679fa6709c5098f186d 100644 GIT binary patch literal 655925 zcmZs^{cogMcHb8SLD%zIRb^n!`z8$Wq`Wi0xR?+E^K}H$q@XPHb86OX3$GzwAE}tp9-QpODYF_ndQ| zUV8?dsjBCB?sH$xJ+I$$?thZ~*ZKF#Oh%WZ;pFb#_wMbV z9`y3X?0R(X*YEK$JLn(BPp$DZeke~?i^X_gzb^FG<@|0uz0_Zqv-qJno6OE%>mA=d zzZy&*=pEbo+&yimn9Sac=6Z2<5kFKnvzznTTwk0Gro;Gq`(ivF-OlE(t&wlV-|rph zbGM_(xsM@VUXAs}wc+T^XfnIG9!;0pldN}i6`#t^mbd!pMSojAoe%WwZ8|a^O$JMy znQ}UtUk@hnw$9DfY&pA}4{ofj<(1x7&sNLfY&O>(|WAyVBlXE+NU$owl7H zEPXih(O|+Z3OlE`9gXKY_XQL<)olPZ4s0r(@_>HMPHds_{>{v8IG?R1+D7YA_f&gv zHK#S7sCqcM7*GA{eRkP=aL$5^S;_O*net{bn2xN~+th0Hc69O<%ldyDJAe0e)qo*UWoH9nPJ%x6kh`Nt1!>Ps2CO;>(4vX;uh ze73UPo!t&>ZZ8-}Y_DbeFr&5jQ?Y$BAL|AzpUh?xYq(f40Xp3UMD?{UNp`W)o@cC+ zj&3m4Mb7SKEB)=#rmEgxAJ0eDaQ^7w!(WZ}R7}NSYV+HHCdU`^(dcU<*v0r#-_^1u z&PUVXH}wriQ@ycd!!M1@yMrN2a5-N1Y8KLtjrVXcA1e{$pZQGR`&iq&m>IeDQa`(? zXG-VUZ$9`<9m5d%yEeKjcL&qKP}y;PGZRka#5`EMw)?UdBjr8S{`3;MG6Eed*KXa~ zBuvJy^<(QyKU9P1bo7l=`&9sZG<+W@9Uh4I1|BR z8>aV#5ly~W+9R#iP3f-IEKa<+}GK--(qbr4QJHj2o9{*%A`CpssmF1hmSnX}*V z_04R)WMSi7<>lbo38sQB#^*Np9C4>aQQgj=G}~|)GGE`ZGdMGrwKo_qY_FV}0LxFu z#%5d3#_^%-;CRcHjBHSbKiy)YTUDzqRz)swYA@X=O$i7o&3< zOk1|sJc)}6!bV7_0+mCHM)5C9)Mw{5-s)_0K3Lfu<$~^5ms{61C&SgXeXg!ni!-00 zeBz|kGM15Ft&DS*^V!*%HCLYxZe+=9j~l6U==^*pBF3gVQR;F&R{HPk4klyR($v(& z{FU#yY-R-CSxseI4bF^eJ1)YU^Np6KY8A($foa-E|+ zo?f82`SdcxMbcOhvbL34d(Yx(mp7;}J~nTtIGqiK#wBLciEmog0PgS7#n@H790dWQ z(^n6sca2ppXxFH)SR@q#0jP^uz8=lbeB_6NFKxX#=j>*-+T!|qvBOAd?H3ejGusxO z`fTRJS}$%!=c~y;Swem}G1{t?IF+vzpN%KR4J)W?IWtwRGeAMS8u4zs6%E;z0J@xv zVL95RvFX^kXc_UxoTf|@nv53KXY>M{y!>h~Q9+Vlp}@w+iowl|38QLtGlawF`w=0w zdgbkW=DeddQ&OP8D>E|S(U;o0pp)r#E6zqv8^vI_nrLUUg)KzU!=x~kVe?>92lIMr z6Ie`={Gs2*G4sXPG?CWAxChFZtuL&5WXe%4nypS9)>QmdEoOHUA7OT8EO1Ta`qtI> zCJ}OVF(1S5Y)WrgLha`Dz~pegJ+W?}-1{8`>ZFN&Sb?*lDcy^0v`1f^GXtq78^#Lq zPhHt6KZA>WZ9;ixFui;|b5Yrcjp*oJk92hH%h41rxHSIK`E>AR(1*5fd{eWrY>unt z6>6ew@odNDqN2SswDs6}(J&12@v$kd8JerUo;8V|us^PEYzNkGIfRXwiu%xtQF&NjQ}mK{gw}I@H8#d0E3_Oi;jzzM^i8x2kuUma_QaO8UT_Iks`S`po))v| z0u4oVwc_bDT~TtG&dz2-y){QwP>L&=6xR`}S8S!(t-iZ>GoG*P^X76eH_mav_+qR1 zbJvpFLQA4R=o7Fm8&h#UaZZA8!&3iB$vH;~DMzg~h4weU6&tPw=jRPN75&c%F26<; z#oLM-grUB$9FB*Ho1+3I+ox;(kFkk@GE$tr>}<5WbqQF~@$@b4Gmlh08`?rugGPqtWlK z>^|0XG@IWkf51f-rgsbV%2wrkHq?pez)gY-uxp*+?0hBeJeyBZUtQa%XY=8h;b}wb z)7f+@FoKJT>8RyIT!K31bY4}03L^oAVOCD;qK*(JV*FIXs$CEuH%+%#haF;}t)}ca zo7k4If&5}LGKO-=!Wr)=*+Gc`3Rx|TUA;7!*D_ySIUNn=HU|}g1(%T74p;8d$dgaC z8lpmvZJgx*Sz!;fPa)~uMAEVzY2Rab8sW5tDgq0v-uG3sWUc~X6zXrt&g;?jnQe^n z^YMa>p>x(>u7)lF#6zHSpD(UVpy$aeT8Y2Z^>5*P3ug}H5Y}y@2m;pKI^3E8kZ_@G zY)oH?IJ&-p-5X;GzT$Xag(;85oS56_&bKK79qL;70NM6aI2G!JHiRe9XsV=3eq-i5 z3`@_ZryblFxa+J_XYkRqe_Ky?V~=3-_7?3`>y=HNasb5jSJ8BNQU!l4c zUC4%>?;V|P#|~kS4X&?U>1f^9zDFR$JIZt7BBmWcZr3+1D21l*8<-Z!c8!nZV|Qs5 zivdQB{w(i`AI0f4yR&(#me8~hz1|q!UOzxZiMO^9B3L)@!}z^e&eE`uRj&yeXrs4H zMWf<52^Yj``C?@@a?9<)v(4ov`si@HNJdCk)oR|Os(aDfN%w{jj`h9P&MN)qFR!l5 z;@%7ziVnVHC(dqF*;$jjuC8dGe{@(Iubg6XktFfwaspA<0E_F(=QF^Tk=yEx>yCS*klu5x}7hM_H<5eU<@;(yY}y{BoH#2>Wq{)3Fdxr zagL#drJw}RnU8MpY=sC~@cmaf_>$Wzn~b%`Z0WPvENNl*9Y^PB6S7?|b^eOUYHBN( zqX_8cf;9(aI(E6eiQ`|?be-ppXcA2aL$wgC+UEwhc6v9ywZY=bh!tIKff&`r3GKws z*)y}gV9I_s=KpJ(!}a)O3ys#d91a%<9PhnRH5whkE5A-$a9~PnE=EjzS-H5wNHUpw zHe&N@1Jwn~fkce=)gqkHA9aslZx6oGu5Yqkbvm+}OWP_@qUkCW!$b;2Sb_L#E>@Q| zb1_H^U(`=~ReeJgY;Ggt00O|{cVVCc>k0~OSSMUBREj=RbB z6fQIEM!uSxO3{J&-i)xyjGGoRXr=S2|CS9ZLd+T`>^FBIP~nXlyH?Akf!i?eelY)l zS(TufIFrAxT5PMYgX-Xbft036|6_3y=~hILlfl@P^+9>U{8dXkqx*55@QMnHHB+p$ zGX6383aiuSS^Cys;fvMCLYJ5*v8Aey>M^vffysdls{14#&W(!@HC8gouFV`SB(7wf z>S-hNRR5N4`}l^Oh>O_?H$=>_gLM#>xNjjHqbNG!F`_S7%6J!2dFhdhTwFc+yYOCn zHtS7|Ztzhq%xN|BHy7s^fkqqGt_in(-B{C;$!uVwDHiC*+DXjoBt|yA9?kVVSR4p> z^Ai<=tK=rQoSB-Ir~6S%u_=Qt4Y_<4Q!iXhf{)o&?;+MkCe6%Ln}j-&E4z8|H>lRn2rRM+>`{-5M7! zhqD!1Gj=vx4wOR{xK3SPT6h4O5V?p`8#;&u^okqXMm1`LSn)c_>_uNqQ~Wf^7DQ;6O_0OwmG&}^kX6?*1oL%NLlp0U$sZ(05@qugA8cbkz$N`! zKDseV$!{jcJPPzbQyuUHyupR1GuRg29-btd?wg7eOp039SdJH%V#H6q_X`q%Me_V0f0FXE^A zV9G2wW0QOSZM@RGK}Qyi$ag7TO_SHH-a)*p0MlYxB*1_7X#Nw1m5CnouOXGSCvR*2l5c^ggAnJqgN$#XqIR- zn23YZW?syNcvojM4Sq2ntf-<3%p#Q^`P1!Z&+K)h6wiXgG+YeXt7l)to9a{L6!B~I z3U$s+uMo-}f9*6LEcSD{((t(VNjFSOyEM;WW0j?i`1SOIjidF(#wg z^M%CHbZLqm@Id-`y$>J0+j@$p%-wPI%cn+r2GhqZRTXHqenUGAz~ySYF>HrczudQBXF4QUrGqPO*vlhDdpe^w-kf z^^HYJ*Iy#)#B<1wbzNAzVd!|e(1@Z@;*+>REX-H-UX9#))Dd?pbL~CtM8^iNR*~No z7i>gA8mVsvM4Zl{U@Ub}GrU>)D=TKC+SwNMZ$S80Zv$j8n;Q4;Ek~m*^fY~LHoIA< zK*lOJ;7ywl1?HcFF}=xe*xEe7hGY|{7T)I3F{Y#Wl{-(x!#NfIZ+uUT512Nr($6$G z0;FgM21~0h2`u{bw26fiX`kHLO78_!U0Q`=!364P2#8sa?mgBQ-;Nt}-vK~0Cen^H zjF)jdVIeuxa!tA|I%wJ|^#ZLHA)@bZ9oUF2h^e}qgV~rpS%?Lx%?ooF--wcFL?YtI zb*#JrnZO2xfMc)3^I{L2iMnI^wpM3|t$*)@+79c3GaQF+Q1jtKdR0Oo#)KO2u^VTL zwRT2_R=pq|1TWBuV{fF8X?a2X)M9S{f&N&h@AR$dE9NWLI`c;#fA_<9*ZO+OG*C(PErd>U+8>ZDlMyc3sS!VJzftlzSMTGEac)-!+wsBs zO0D^$PaZ2hlwuFf)GNX74;7`C3)ha_CFIKfnZ_>#4A#8j?_jcvk}hHUxr>vWu&>b{ zZeb;ld^hd?X0Ka@&j1;Tz)?3E$QmL=nDM@4r%-A)#c2z)arZz$SxNvX6a;~A zt^-}saa3olnLDxbCl359aeKOMTkIi+m5bC*;Bm~VHbDI9(q5bQAoe&VdD2m;ArHT? z7q*#O6mZuG>Ng-JlV_`gy(WM@SEIALfm!hpZ(z3CV18}z>RenX@x7qHKn0}sYPJ>9 z&j_~F-_!M5pwioZ6>axRW=1EvdV?9@yT2d|WRJHG-bU{gJMa>nh@7~JZq3g2jl>`C zZp`VJeP&C}rMF!%otpuQ4eMnlK_ObXt&VsB5+_)U4WbHCd%0AVw!9c$y1I`YX8gH) z^x*MFPj{3=h3napEoKfQ3dXd%o=a8@Vn{fjPBN5x>mG-ZAK5}BNwwqp!ihYq@n{O~{apvnGuGE>EpVdI1UnUm|JQ!wq zl(4sCmz@KnR_bPw+{YV2SP85K?hXXJO@t`D<`EjsJy=suXLu6bX#?8ZsSVcQG6+Q} z;rs<_Cg2MtxJ&F%+mz@tD^Q-s0s-jZNHhw0{x+DhkbtO8E0NNXtFBlNKmPsLcw07n z2$t)202LCpG^*>6jxkhrcc}(OY;xkG0m-I5gbYMy zd~2<7D4p%>rI9m;5OCS?rV?L8YGr)Xk3Z*hLJ6gVo_QCYV0sPDpGqgfCb*OJ3pP5< z`ZlOe;Hv%&6pZ;Waxy<`*B!v+**dOkv|mZG!O-I*<+1_2$*#s4JILlEWyH~vNtqD% zG8(pTxjns0U`w(3%M+;qzEO;hlqTLXz9fq zUZ!sYJkU`5*5L+d$n4wX=@(7FBnuk#5OjrkB|2}$mx9Mw*sdudQ4efX0RU~6s@`If zJlRDr<;@6UZ>YvW@hYhurFi=6aeQG5NW>?s6cO)2Kw2=hv0kjmc23)D=;E4t6m12(g z_~&n&V%uC>!tRVGW@C%1=78vw!`8bnptL>Lj!_k7i>X8+SpRX)}V^lyt=_ZguHB?D|C#cVz&GEIF=aSiE+r59NG8sX3*fZF@E4mFC&K8 zYA^Bep}cD*UO-+MtHfLCOb#_ynH6R;>0~;Q>O+m+0ApD&CwsD^4lP{!v7>qqJ`IBz zV9<|J2o2kM1jIt;hWHrrT)z~w<|aThe+w5vY_<&}zy zE?@t=PufRpro_SL%p;qaa^aJ0q$H@i_(UObGJTQwO>FKuueMKjpZ##}=xJYX+(;Qi z*_|m=+OSFI1!~phq8-N9w!ZgY=?L!LcWsi*dFk61 z$d*kL&5xjb+kUcdK{O~WOOW5xw*nZAheA*&OvyyPVY|c^)*5KjZIplMz}qU~0&LdD z)2kJ*4+|l~>lzX)Cre1XS_XAUzp!mq!?c6z9kK%O>%Je~-G$l1{76?>_^!nI)@NHU z`|&n}AKb!~{!?fmN{eiLQeIQ|CA%z_LDH;6*h3JWE5vP3P>eQoTI3f>sDv+%MwA$EulG1VM!T-_jfR z@e!s_F)FRCUQny_CP{rr2|lR#dQ*3HHl2MXE(jxq;&SYWQ5*ylleUGppLNUD5~+FZ z0p2piHZ?F*?~qA5a!_vPVoop-Kb*N}$^Dhigd+nGDE@LdpRhvrGoo|^YfVtsF^j>sXy$}U_L zDFk+79%@$M@5NVU&rCG8Zj=wNN7o)Xh-t41HZZw&g*qD{tHI?=8_xD@q4BtgH$h)A zUh3rhrH7w9c=*Y`|8KnS{y_fu1@BLNFeM~4w&lF1kj(nG=~9BgmXAJp^x=1YC$>|) zmSBoG(MvoHZgZD=pqq@FROF<+b_1qEtV1-!uNS?PG>G*kARoO~+%D{qhJ8w!a(swp=&HCjOq|xE zH-kxnPqjAG7nxst^ZP0gF)3#5nZaZK)iU|{YqIhM!>g|bsF>X71hO!COcX;%3j-jc zbR}n4H+t>B+!UDxYjDUe+_J9?;;0V;2^W{F^)2tMdfKb<2{y9w34~ z1enqEpXwOw6iRM-vTU3H;1cRGp>ysezfTt22zbl#ZcDOm zW23~K&7H=Yxq*=jBt`Go2T`FTz=h#%2C-O%i7M;k)z@FAFid{p4%6b5u+Z4T+NOA@ z1x)DBPl4iKfSK156NLN;?Hv)|hNDI5n2?;18kUfau32#j{LKU(sAglk&;@I-5L}6l zfq1?n`n%#x41&Yf1%)9kZR=2lOSwb>n>5PBI~g0R1POBDo~EINECPpU3dmbP#IZB?7x=3unBSv@=q#J1 z9YoIAN`NTBSkZ;0&QXpVr4zp816p zsF;oAz(8S7K;A)5UJD zrXmM?g$lfz#wBosj9fEZtYFCT6>VVu<2T8p3Bcb)49+L#3~0a&_jSUAX9p*{v875} z1TL_J&d()y8ZUMtO(Z#7<2Dz8pv*n%8}=&~hiiO@e850G$*V|qv6ERvqG$4(fi5JQ z!4|T3gHO#C72C(_gyfUag|?mp2~x78K#7;3C}Yxc>_L47xn3n5CtB({-q1UH%bIk1 z4B0c4*6K#e;jMzyHKEjjN@f!>%fA23*jD~*G%;r{v1i_DF^C*gzv@8ZqxIk6w&*49 zZp{zfVIkHhUMEWgEhScAF9xwVvMmv^(;{!u0iDgI*p#yK3R@+`YbuBko6#5q2~&<} zY7ge9dUMa+YKzMSwqr}*4vIG&*J%-)3+9x5%SStwV-4uTgh#;y8AB)uuZ|~1>qja8 zsysL>4qbbcyujWTZy~4PB6C|?2u~ErML@i$^_!>F02mfV8|^^Y;t9)Bq|&h zwXvmW_vk{jW8tkdbIY0YX)$L_u`LH!M5f-?n<8OdJXf#K1iS@M&7M+>#yPaYBxT4& zv#G+ou=slcw9CL<+4jkPoTcvZ^X)JCr`x9oM=#?KHJvkGJcLfW~a}z_40_1C;DU=I-otvlk(7d{7{>Qg(O74+IugA1fMdY zFO~naKGtO`n;LHGct<+}1XpS7U3eX8q_~nKSHYH&sHuzBHDT9+uSq$OBw?8wv>mrt zigQV30vp06_7v;e0yZzFA#xWx(IvYMuv|kK30QBX1Ch8eVr>PL;~HR+0rfhE!FMv6 zn^zUnNwOvM*=+m8UVMj`!k{|zi;U0qgCrU2?cE4E6XQW&*LrcJ6Lqk+zpYPWc6bO{ z90xy&zX$xnMDlI*yOe&p9S@Cl7ieqN1MpH(utV=GL7X_1MjvSUO8qdhW-YE+Z!nGN zNmggP&=tZLrITyc6wE;pX#tGV?d(e}r9|+`7M8$3n@OhhN zvS6+)Go*foOD`4sXv^HjvW6iktBfjRYzCo6@J)wZgrH))K&3gCC}+q5U!F=G5Aimj zet4s_Eu@N<43XLcFddgTA;UM`mpQ)iS7JZYe>Wu*dw!*nTXHb3Nik};7urY}koLY9 z0`TzScBCMrRSTwly04#-5Jfu>ZQ3uEyOh%~2QA4l#)+d2p<{c4OVaKs1F%>r62LPG zsP0*i+hpkI)KGoOcp{aqR$?a`jpO@)ciQ4n`z%Gya=;+!dIgajLG0RxTTmUZ^|kqd z>yd%x)UiTv9cFrGp28v#IJOEN($%TxaP5pp z=36PJVyFoTK~Q{d-s9fk$+o!_WEWUtgx<8v`EPiwno4Y32hnvdMZs-=8VLh~l1%Fs zgI;kM+1|(;8M`y9t|_PxI;|>4!B#aV7U6I)B-}I+!U{!uw2@MvRA#9cprCA5Lf7Jd zwG7c*+KfG@H>Ie_FO7y`?YZD@Qhc(Tzj1)u1&eEdq|# z6KvjuX2vn#MWj&nz1Rt$9@FwVNwL-CZxpfVybymJyU4bF8(oP6SC3zHf==DQMYpxU zmHYp#h1j^5@CgghI+(_vLBg40pcHgAxIk)|*^^%qvtl?O7z&FlCX1sq*LbGqz4X8B{Qd_L|7*s+bL{B-2HA=W`&JxLX zX|__e*Tk~pqHRVz%Iy^;=5$3mAwoL<4yl5mjs1KhXkp#-K<=o|XLxJEG9IGIFvH^j zioUp><7co_6mnI%!L5Ld@z6QQfW>QPN!|bVpZzaClz;ete3tZjYX*jT+0;W(K7j}l z7Eu}?;+%wYDfJjkZRo&Q0CB*obOh@ZxecXE8iKzDTqM{Po!@-O=8b(2&!Hsz>2#D& z0Tmh}Aoymc42I3(CPm<($M|?gP(mA$t%M3@ONcW<;EMW{=#XpXML$((C;;CW3aGrp zaq!xWkDCTq?iJzz|SLo4z~ z{M;8~b|x5Hx8n-TM?;v_gEPFKo@yR~k~XV7FK5}-E-h6^SJLB&#W(+>IE?(&v+dLP zvD|#}a`!W3^sPNr(z7p)tZL-xvx66(>FA&AA0E6o=pV+f#o_+;i@vtFy<93O`uwR) zeebWtTg3dues%h78$;Cl?q3e>wn949g7F*r;_heP#Lw8w<8;(loyuU+6MW5XUQ>1;2!V$W1b^L>4s7se+(WN|-3k zb@XN6udp{6OVH_O?h!qX11;_n@H=zu3Aj4SqAdbBq9$VK=-enus(k1zZ4BcOPBU!~ zWx~+YD+}!s6vVF-yCLy@rcB307C2Y{R>;N~l5X@)>~RzX-3h359;&DW6F<7vaY~s~ z>lumA<{PV`_edufL~SFmL>8m~*y*^nK_J@LQmpG|9a^DA*=*w-CsQl-E}INg)ocC0 zj5J*N`a0@BK#)paBxQtzIOiO<_&b+QEJ1~^X)f^soSEj|mAa%*by7puh0rA?*-#Bi z^kC}P#%=)|N2&DCp%l%c5RlP10>Ex8DA#WFJ4^6Hm&R+c@ZoHMo5d#A;48v&{I$8HPM0zsSXZBf4`XA@C-xV~Lf~f|oNuK$r-RlBC zOkkCbWa{W=O|EY$Kvx_Av|S?f#u=( zu4jA5Tn4qq_D-jFLd_77T}oMNfrEsgjOE1@8>#FC$c-?g+ReO2dQg0MMetCxH61EB z(ha#KrQM)DF58YSINHHb^R2C|_!ME1SO&<5O(J@t!+E%my3yuMXbn_K)`t>J!?6(? z$;Z1krQO9HmOjYUgyq}+3cl@3n;NV^>CnY(omrEFsYT~i5(GRcXdfLKsk6aW($`Tk zO_}u?Bb)-lfMeJii_;5M=nk=Vi1DXw&>d1Pf)Hh5Nm=ia!Kf4hrJbu|7}sRplKR#}Xd)Tvu=oGVFLQdub=pkiii=cgBpH6~^k2 zll)R9c!9a=c)JmQEq)K}HV{d@wnjzm(d$s|#K^t@+S2y!i&s~iCR3r!FA&6DE*Xm#WCj0_|=<&ZDcD z{2O0`ZRh@M&gk*l?}d!r=s~=I62$kn)nd@HtM!Kb*cX#yZU&@|fHjHj=RBm25^~a{ z#B%(-1faoIj$hWJOBXk2vV}ULE{Ipk*n#*N8r78Xa;IZtJ|zd!G!;30LMk!FrpW;V zKw(RTUK;Ahm@A`=EqHS9HNco=cu+8fd^)MIB*rUpq-FDzM|p-@afyil>N0xyb%i^^W3V88Gtl{s|m{IyRJ z8e$`5r$qEQWQkHZ9+-x8hcqK4CNLNcFHL(f9V4JqinM)?oyuQ%lD=$6ckYmDV4;GL ztmin@3V9&TwfH#FEF{|{HXf3oA{0ZX@G#WG)CaQ1dwu;~(kt;a#&1%N$)>*y{78wh zx*?k`Q7R_(9V)2~mD1c+Vj%x&_LXje>Ir_t3nSSIFo zmxPG4KN5|y35}2i{RXC6-CL$PWIJB37~w!LSi4?^1X%lW804t7&Q0ElSeC{?x};aJ z7u^|9+@-KpiKa&mdu$^Y?J|C3AG~FflozB;+t$3N=M0glf`3{E5ero77ZPjV3KpsUba2LStZbiFIf8(g`iQ{?8Oy|K?z#HIB+f#;f*YlPG0oCON0 zxG$%Qz9ySk7@wqG*vsG;Zk|(q%{2R5tZnTAR`vMH75goI&%hkSPXghzRV}4@l6l+m z!{ZP21tCXJD%{v~QimR}wyt>gR~|jow;;Et0)^8py~dV;F2zM?1IuVN-W*`1PV0j0 z_KE#VF`sAy{N8B#M*g?h_~tjisZP@z%h8a(L4k?w#Vi<|p?t$n;$Z0+`-RD-n3<_v zpkE0wh-B4%x0$EO9Xge2x-pt%BD%IiF=8X{el8-DQXyMn(Rx&xbFBsz2h1e|8Sk#G z>G(C{1Vz2jW4Ey0s?l|E)`^=x>DSqXg&yyzC6GNCoyCU>NQ+#Yo@$;o3Kq^=W2sQe+&~Bc;GndGmc(X7gvYieo#O(X$Yo}^ zL49#k|0!NEQ~ji9{9H)i%&t(s;y;h=0hWEE+^qG3f7 z!D%ZJj*1_P-Bj$W+JzyxmkX|OjTm>Ll*%~>3z_i2Gh)6xg#-WklL@}6cDvpov%FC zqdevGDEnPb%CYjDoSil`&mE9vDKTO@0G}ll4}9BNDM`IdT^&(&Y;rRf(Anjk5^(l| zFN|AB`bA<2#Yy^nZ(o;0{NpO4DJx^*wUlGFOx~La$Kl**>r5N9Qzn%V>1^L zAPhRyMr?pWo|@j*+P3X&M!e4<*sf&4!MQEth-wQ)BN-s=IEdDvj)pLyeR}k5GZ-bX zubY5+0jXxNQlshg--vBxkH4c2X3h~LiKHR0G9sbz=5=ub{zAwnWCUx+2yK&LsZ=5- zmsm&O&Z4cyR>;RNk0~iODwwQ=9ptEKG7%|@)6hfdI0pat@ALPkMD+hWwkAvqtclJ8 z@C)0fnWr#FriXS)a1&qKiIag!(h{uX7zFJH(87r+GWiY|_xLg)mc~iC6sqEpcqtni z#44AdM*Oi$Py}%=9#!Sff=EUkSjtcFp7PoD_Q|onmkANwipf$^ArxZfQx|!@yu!QW z>njHRFiDqg4~RDA8jq;F>k2#{YXQ)+z8@r+GD4066Z1~RYU`!OK}&Is*&52m7sjWw z(>@8ctK9|H<}z~1ORwW|bxWoaA5a=3${X1CIAZd6-cn5{WaBqdMMYc&DJn?_Q4|~< zQ1v-;J2J4S*j-?~nNB14=n2^xPq$o4pyL^*~J06VU zJQbtTa+eBRW^xlx@)}PFR8~YMvm4GBA#k^{3^$Gq;D9uYwK&8znCW?N8+q@`-ZM6h z%6L*PBy6qC)scWr>eb+*q&A0c-gUe&nuP9y<2XXo@(KDhJt-vCxz0kGg$b=(LJYBQ z#iQ>&d}wc$q+^bPRL)gxBfFULc;kK8Cf(nXkfgg4i2|iCS}fQEnn0UF0rpaq6?Q?= z#mr&tBOuOUh^hEC4sC;EjfY9rGvRUDAV7fa9UUxoI+ae;;Q+pAY$BJGLmec@a9hT; z;FLo*Z$K+T(S>+xiTBO1LqRcMp_MbY_RI@87=G#56QLgATc}JFJgeoK@4H7l`{*n6 zl>M@}_~6o8SPQ}N^~Sg>wE&ZKPJIddjaN$qi1zK4GHK@2;6O{5kY0hE(qz1g&_1Z$ zRDZ2Kyd!i<%@rL*E=NbkTeB0J70G{KWp!^A&r%4sekK@=R_(Ag+Wx_=Q6pEL+gu$eb4XF$nVN>h0Rk84j z&ac2~8)3B8nK4of@w9s@IT*`(rdT%P$?w=Ke6W7&v)?{d3@q+kolcq&%D3MP`V6ee%(3vb>hC^xNgTVo3ScvTT>Aud1oJyiI)%x(M z-YZy5n@`>-&FX-_p-72-ue4ZmWY29{E>18oMv1>gdTJ9PXm3-f@qstblPdeD_vWT4 zfJYiET_(xW8gRu5MnPvm0^Oe0UyxF2(K2yCnU*4MJ}VM^Pv4!*=GF^hz&KP=6a<*1 z=WCR28WrIS@lDt`gex2EKYc#fJL>C1QZ3(f5;@=9V(-=Y>gL=X7YH~Q35a&*$!K{b zoEYKF zlkh{TX|?Tq1M2`Clis?E8JL;FOF9@VqT#vngbg*g@%2XFJHN-h?{^gp-BeT(!Bsz? zj9@IzqGow0isifMKmRa}nPSPdFY&JoJi#f1h4o6l{qpIvczZ6H@bM$?Q9rwiLIj{Z z)hH>pp;7Tenx0Ec z+!rCBL>&fOZ|t$H{4tQ@%xoMYZxGJtrqJ__B)(S6DXgpqnU9QA%0+ixESWx(y) zdkP-OdUirrTMs=nQx0Nn_&9(rZ#_0ktlS~0Z%QF4?~Rk%iW9;xHq9^CTxKJ`b9y`5 z+7neT23&O5$GGE+PY}F+?bTH4<0~Q@aPW8|xr0e_ZtvhBryh?P8+h0n1-1iD=`9B- zrGyb3z7gDwNH&7Nl4D84#4f`)$;<9sV2pNq8l~NR=Qp zEy@&`LXy?2A^eODn}!e*nG&8o)D9p;!57AcE0{hzRGD=C$wTw&WG^h(1Y;EXR>_s0 zx)uVzGj*%(;r4>7=uU50Sd+sZ&tI!rP$9x-M_(n_6{aJ}0I7OAHa=TCC%IMUzBrz_ z1)M)0+$!^z1|oP?=Oo)4E8da}o;y1#T%f%!zt;qmyoHZ66$Yv!@W&Y(_616_ne*b% z(|PUe%CYE;nl2nFa82z;Wp!;-e{{=*)zQt^J8_D!3QX*ARF>IBIUr!2m=5O%iD$}# z?0~Kt_|J0ml~g;8jUn>b#;&ok1lBfHk()<9pfU&=R6C!2YPA5{FyUreUQTm*6H*vk z*O>d7Kz-2|#4@l}zL>3SOjj16t9F=RPu2%>mJ*-q&&P5Mh{5jG582u5=fg6;dp952fDE4m2}IyU7t^?)Rs%h^tXZqhJl`5QJpoM~bHm zEO`eM8Fs(Kwc<4xxRfH$E`dTF$@viRT6XC%=UC4ACYe!H@5#Xr4)=A5%iihH-jRN} zzbgf2w=iB=N3)OC;*U478Fd``)7^-m*;IQ94BUikfjVhqyN;7^B;FuGLbibIX!*Nr z&R(59(SECa6KtMeQm==wFwEXu|FLDfXg(8ChU;W2fo-QA9L$(k6}L*~2+__MPLcOeLzdJfV@u)$Hu-&TO1exXyc6 zHi2B?kdzZO^||UPeAVxyHj!yL<)^HjIfqDfb@XHmz%YAW_Mv?k3@T8lx;VT-LQdZ7 zJBs}Kjji8oAgalkfEUiDrjFIy&rkNZ_rCC+1$3K3MWH!Wd8B^iVsW?VYGAT~wD)Ww%YnDSL`+N& z)9aeW5KyI(Hid0N9ltnETxu|UX5W|;=T^qE7JNcu(QPGSbOtJJ#b>kK=LhjqMUm^2 z!CUl*4JkhmK$NjuDIk`t7!Hpx9~vQzm0L0R$ivyNmU)5hYn%pm0>(Xb=?G#_wr9E~ z-CihY4-Cns7QY^3!LHB_#Ii)LZh~p|(hYKQ0P@@1oTpY;Q6}qrWIA7s&SK|r8@ed%k?_MU&o8Z@$#l?szTjwq*qXq#9Y39KUR$vd%H+k^u#S^* z=w^P1Hw!0?o0Qp${l0dMCD;4Gl|#r0EKhr2BT#3wgKMiPdY}x;9hFp-r4)d!I0bjU z@_`i}r;!w_rx~;5qwk~(6!OF2mI8=1f?CqF-;aHRX$lr^Y8_}tgmHSuK#D5pIG%V| zje{QC!Q5sJfa3aL*z4j>z?&Mhb{%(pijG9RUzMK4&e4mPIy>d@(ZP#T{lbySwgR!P zp)SYa40}O0uOx5U?hE)G6L(;+#M2WWp=6P#m68kItU9W^J-c-cRP;#;`W8DWKep(7 z;YZk3$1(C2n-?HO;$X6@6I`(yDjcM)WvVZCPm9HoAZ@;%byl4Q&cgvHCS}b8i*Lw| zpB=|fD72C1=&L8=vsAdThR-yTgQXNb?K`$6Q=|5P! z9!#}?>};+i0E%C%C?5%_3wHJh1^O|)rtx`PiD>z$tC0%BO&8uPMR<;D#qK`(va4$$^y#)ysZqJx)G$JZ9xtCB=7i(_z|GqYQE(j zyOMh0u1tp*vrSNsaR1oSiVHa}QLl)~O_0@n>8&GW_SFb_b}t>$oO5yGOS7HRSN3`U z9LZt6*4zW}j*gU7{UE4_@rP=4^MU9e@mv1+{>c~dBSBN;0ma_dv4twTilk=Rw8N#8 zurXGG;pGwF;ch%M_AAHay(SVv$@xG|IJ6WoM4(44bWlwu01WZDv8 zgi?tWEG%k?@dXJf&F|7#E!4v>fha(D?TJv702}n})W7`FZ1en}e{4TL`sCw}OfunR z)A{-6Mjb^p%SGvGqaKP6xN|0^gLpDlc|t_cYE#yvV~NDl!4NtxWkGm}Z{Ld|4>Yjm|Gwu!82HQ>G0s0bHy&i?DgK!$8s?9likhTeikV-M< zM)86g8kjs2%Z;M(HaV9wKalc1^C^DEpmo|x1azbXw5_q4-6h%FCSgc(*7eBm+>=Mp z(xX5KTq8Eh3;6EEpb`*o97y@5k>p)cTaFjTEBW4wzH!2yRP+%&P^qXQNj063O!U_j zonQ7lAN=AYh;l4$9X-q7e2$V$PIqnmaQJ1IB_w?zQ;$krjyyIRk1{MP` zBLVbI{IHbBzGo&)FHA;q&h=6Jy>-ynsihQ;eyk3UUi7_sOZQ~|>4AK8_f7uv=*XHqKKg8* z+qI43msYZefN>m#Q;Nza9W-t_j#^ElUc7Y}TK3VyUyV(Y%8%npDZU$>wN33fWR1mJ zJ5W4^NZKIT;}0IkOZP>67;nkV$=eDKcfjg*&};>Te9IAcp8#&EuB0U%QbeA0z87DG#Qp%T^j@$K4rmaO(FDI4aiDo zg5`0e_Hwlyv5T?w>L_3^wQnu2n-Ejz;yv9bvl(%4Sd&3e+8i~Gtp?QdZa>S%?rgFpm?DSBak$6@zRB1q zZVX8-);GwBB=MsczV;lW3OzW1)UzjFs2$l27IRaJ&o&H0*^aO$H+Cd_*mQe2M8sx< z?&(L=Iu&S~=r^C3>n^y>)A0o16dk28aSNy`fHM*sU>qEwzVS;cn!8Aa+Cog!79?}W zuhlp)#>*iaW|;ocdseL>qNvz`Fwq%#jY|hm8lwg>r;C ziar{iQdquye4raDXLfZ~vi;qiI1ECS_#$-Ts3>-2&eeC{6DTk|hY6JA2Wun+Uq}dX zw@z%JBgaQbxZReb;?Ssc%5Hu3R@vmNZzQq)W;H?BycGy59(_XeGqy`6jG?nCNz>r` zNqwPc{#zlHI{rW{|5&XYB^P(j2?M_7N#`3sFKIVfxz%GAWCONzaCF-9^1L@CvV zNLvl3^28e{^Uy42MsZTRuLFKaE8@pnmE3hBmz&rp4j_@o>_U87d`5zR`rbmsf>JNO za{MZKOEP3BZs_z z`r2*qEwk@i^g>MMpXh6E2@2_JI-5c5YOpUbi!e%~A9W4H2Qh%b8(NU;3ujggUBWzi z)8-{*-Asmq;!U|`=ttt5^=Zo9SWvgU2mVT&hWcKyY*yEcZ+t_!5nwSw+eA8T=7|5= zK#P~BPqseRmj{=ozPx@F6M2+zt>Ir3m?9$27P$@PhNwj{021hun31KNNtH~~P)N+f z2kj{Vc+p&}NxrGRDj)fIn{DwGHxlDH>fTj>Y{%A=U#|_I#!CI+@A*niEvmSNZ}av# z9B^iQq5G5&4|6u~vI*U*8HIZ0jbA9HgrIEbI4C5euh3k4m#l64dk?j(vWt4dFm`~VrG)cMZFTM>DCN75`DvUwvk2reVBRZis22SJ=^P z5SO3%*Ml1+;c7D!r&Vr}?|fl6b-a3)gRikgbOmd19^<007C}RE=(mNG$R}J}k+Nqu z6PsyNawx{vqSh1PJHc3sw;$v@s4x5IH>)62&`5+z4EU06BXK^<6@K2kBIl(B|7@P+xwc|M?`X%4+bJB8A+v5GW;vq1Y?ZgNMIh}ygYlxZ=koiWM zO-)K({y!B8UaL9E7DcTNa0)r9LnXd@5uO=Qfflt|?y;9pc z`J%A~5uzl%x!bV@y?rwtxQejx(qg?>CSVY3Sj53o#xsf;IY$_k#%ZL`r>B|rn(1Vn zx4S)*_O3uF4IbNTG!~8%{AgO=~-H7=b0+8W|6>We@ZV*?< z-ZVv?60-t&;|Z(2ux_ZDU=_!Pb9kug8RZuuV3p@(FHHdprxg)5P*$+k6CgClWun%p zh$3JwL4Bh$lI{Hv0^lIl34Pzxy$r7S>t>Wl9GYEMpcS<0r3vMBBNW!5>yi#rPcw8 zcS>IENHosImU9_m*N>Jx(kM3C2Ql3iX-gEio^B zG5R*ju}(232~92PA{i{E02Mn4*pHSF9ow-1;K#S%hHY`%R=ib-HrqC)g@7>2F<()} zJ3gMRTd>zB_|m;TL2F znoqtB`0_R9Ntl9rzjro<={yJlUUTRd8;h0YNOF>{S4%Hngz!^*sbmNsngiq0ZonRv z;~S$n@lct4n)hD*z!dEb?5_Ag(Zgk;pXESEykgQ$+Q0c zerzy*esuJiegtHw>yzyr+DbKoJc3`1x5CufX|Z^=P2K)A+8SH1dCZ>pk(?m#^l@Ty zY@j;Eo^5zJ2Xi$aI3|RW1u{kMedPEH_p$=>MVq!g9LjtkZnRhB;+ni0?Rbr19V%rq}0xjs6U(0kn`-;N+l|kJBsUF5p1Y?aZDYwj$p+aldWU= zu2G+72xt#W@@=LDAizWnSvpwTx_VUNeBTC2LXkVI+CTkM0vyc0a)9d1PyYoqM6^-V z5D_6Bd000jeIqziZi{zJqZ?h0WLzw_8maQ6BjR~8u9{=Y8fOFjCM#pQE0ya|(p_)C zj}VFjnux+^BARMzgR_+Ri8ECPkeU-l8JsG*P@UdhP~W`S;@S4eo+<*=z?9O!X8x4y z77wuD@g}hB*91XrDpVm}9PLOUm3S=ZPWaDA8XiBp9d3ogb!=+8aC|Zb8m@`5C-7F2 zyAuR}zrX#0(hOhAIVy3GxZK@!3F6qdE$$ldI<{O3&I^=8H+`tn`+PjQ4OUxhr3@#r z=?ghPB&EGDy@)##0~Z|kYO_m^*`3Cv<&1Y>lsfffz7RGtK@09_;sh)RHB8lbBgkF+ zcm$};IUjqXtg6#{^NalyxRdsv`aC)XbqIYybn5cH``(eP;cBr92Tr_!9FyRi(`kXv z4~?mjS>|PEaTiL++GL7Ie+%uS0Ba(uj#PM*#LOBxarKr{SYj7&8rx%l$Yo5nIb#NY z906_vuZ_fMKV$sM)&)V4N+BS9EO-@ZQomLL;c>@O4N2m;G-NP=an8rGl}DM9m9TlL zDCYG0Kl^)stR480v+1m7B8q&bZv^~e)Rb=^)pXLuxVKnJ#Rj7g-*&u2p>t9#)9%CX zi2WX~RjR>hBjDLMctsz>U(#^gl>PnPBRd`v!806*|1#d1p*X}(SRr0hC&T{Lc7u~$ ziMn;9nG5Ca(aV$me!K;w7cLebW;`}TAFmGwU!n*a2g5gHh<%(-(^=EamMSgAX2m&y zW@wci$;tH@7i~vPNbv*>$94!DGN<9=q+%DqBwY(otE(H%xO0Xi_yh|Mw!Zf}Itl$o z&1;s2b>gwcZb!IM5;Gci#yK9F_#^F$l(X3p|nMd zZ){oIYT_T9M0Cpg(Jm= z<$He2ZR@4dckyO?X_HgOD*HBqw!b94y^wOcN?JhW+~x|ei?>kS_v^3SAx|8W9S@Y$ ztVw)c2xOl#!cKwQb*u_HRvzAZWX20+Zj^IpCsw$<3^~l!8PS1th92uvtq=7>c4;wx zIbclF^fFKPqxeix1K_#Pm-mmXZmOi~$Rxx2%+b;z0HUual8!?1zVeiH)|Twew~o38 z4`ydr)}M=J>QIO-rBWsAm2B`F+t|i+cwn_$C~N>YLe!hsol+ESbJ>XIE*bCQve3Dd z_$lmBHHk{J!u0GQln&85&(OOQV=t&;U;sr zJ7HO3WG2bj2sX>v`ReQVaIt~PYaY?f!L_=8V2Voi|>%=Fl44wCxRXh>e|8~&tV3}TkoHb=Ny73x1*gXpLyrKe#$cN ze2vVxNU_Q0H8=JlSOuMzlSa}S1v65qX(rfQS*@dfygNsm(g(q~z<5z5OQY}vMx)?zg_xe0P6Zsae6f}ZyV@K0E9Z;93EntUhiz=JEY+g(95`^B);n& zvznw((R+1%sG=g^5S_)rO6ty-&6dMSwaX9(VJNp&YfjaIC7T?pej9GM_?>UXR^;1Y zY2R|b*}FnH8dZwAzYPpZDquL*B>U7&kxI1e#qTI3SJzZTcW(`xTJU^#wi+2qTzoTT zRzhGQ@Njar|{N0C#JMoGf zg?l|pxzym1&O(B7yj;q$-{z`&_jo=cHyDVOR)mZ96cS6)m)^%vVmC_!mf27ZC3|YQ zgxQU&h_c4Vy-7gZHd!$WaX{oz@tQ}*`o&!V-wjY z-~HA2Nh&7H&0B^~M37U%g*!BMlcL;yHGWMd1u`=}S;LG39d4YW-+!*6I8>4_u}ljj z=jbzS0>=_Au+1WhDX>lt%6Cr%+k~gW-9|WjVo3{q4G>^S`QjOSv8bYg@6rW^gU~UT zJW@%+xQ-Yuyj*Y0dWK@7a2TfUoq@lmtu3% z+?qYakDIzm}C#Ii5RT1vZXgxru}D5?%7 z%J4+Tw{YrAai0qXo%9K4yq?;>zUC(O> z&PP*Aj@Ti_QPHZJ#fu0#JAhF9R_9(WPY*Z5{TpAOe@fHwBV;0!XSv0 z%6N>Ij)B5+lW^5v;i>Klz2%@(>II8^g7*Y{Psexnw3-51^iJsES1?54G=oRGePvBdG(H z%8#Ex`oo4@>1b_Fbq-_xnsqLyMpUe{@5Q6XA3yxW-Y(EFTLw0f&RNMlAAYP~YTQ@< z9JYn5BzEig=_VB2DDsHg{p8`^3H+R=t(o4bcNYSauCihd7c-{J;-si;b=>sJ zNTnFqX?#8$REsa(sczv=EZmq#W}}*7|9bYN+6V9M!wpe0wg_A{4-|%kgP+@#=^|*F z`X)zH#P7i1{^noTLEvTa*kg$;bZOyyx#?fVo3bN|>%Ef>)N621QCN}ajb98=YEuQS zbu`k`q;q<%Rv(8iB>~ymHm*cvg6Ge_(7sCXY47%r6}^WCrGbSmr!x*Hv3CK&BOxn3 zfJeXaIxwYfuuI|W`a9x?RZsOWkRC)7Cp5{Jq3l0(YkD{9meiM|-i!e$ftG?OX&_~Ea{8{t@jI#D)S zZ3c7JC?nK_)=kWgl+Bbt+iYb?*wnsvQz;+o97zG@FQ?Wz8}5PLTYy|Me_}}mSVz5d zpa#)W-RA1DuQlynM}lHPSkr2$RnM_%Tu{o9a~`-Z`y!i_x8zc^R%b?zMoxaBoZNiv zupEmq*@9-=`oMi2;!EChO5L-SLjh?g@a$mcFg6{1+oq|!A#KJab+Lc2e{dAxYN8CVzHa`Zt2 zNE#Pss{I%kh8C1TaWt4toj;+}b8L7`3-&)Fh}&;)6jRN$n_pbV9`~>AtCV& zu*1tO4B>Q!J%|vd%A;mf7jWP}XLpA2*U->OEzo{;tXcCBAsT=DNAVp{`rLeR0gW`e zZmOr1dMmWc@S$UFl>l{HV+pX0 zbXN1zxzP$-gVstpW(cM5QJE*$&(O5Fn4N586{-Vw!1{5Cu+#h_xx#D7P1 zScoisFMEw-v0uX5x^;`+L+Y;vI697aCzKv_rgfF1 z_PO&~wiJO7<-Bb{dg2|j-sOkR9*Jc8EK&tuiGu^xceL+fyf`Dk*&7@Tx~h~aK!x(F zZ8?|WwM32Mvu&5P+7`+?!dJJ^{h$Bj@BZtb{rx{>gY)U%#9Jtx{5GbON?PLMxM|Q1 z0XxydZ7>07>LP~h7QZ5*WJpmA?1|XAtY7b2`WgP{pNTJ-9l<>VW0qa4V@+_uj2EZo8YsSaA3uS<_;~;1^M3qXoj%+D;{B8T_$~kR zW&bpO>;QJ!rGb-!UA=Sn;AHo?8LD+Z;1z5t%Y86G)~g(`rmYl$=+>zrPXeH&+ed4n zWsYWYHoK7&&}T`^jPJ{y&a5lUVk~lHtBwprpc%`>@WLPJ1!Dk0dZD8lg!Y8UnQj@8 zdVgDo!-h!48P03;3_-_v9HGLpOx{b0_DB#>#{w1+qeMAD*4wsF7SSWuovB=U{(49r zovs`-?>Qv1GwSe)t!UgS>U2Y!iHyT9wVxrvZR?spBMCfSpadtVILU$08xL^baJsmD zL;n~%lr2_^OMHyDnlWq~(ujNa`QXR=>p#J4{s*y{)=&S!KB%uSrwXlEcrX1Zllx*7 ze?Zaa3FeO3FSsFs&qPN8*7$8OO#PXZuE2ndui%uEJCg!95`?49jTrL%iB)`LwE>;6 z6!EEFevg19ylwJiE=A$-ESXtCT_g~)>IJ%frT7R=#-3!AqA=-h}Z_6x;sCCe%))!LzG4^FAP7G{p`R0eSK&H%-oid z1DXH9U!)?9TAhTMR8$wo3C~ASB6?`7VKX>LVtZm_tAX(=LNx!Of8(7MNzD+BF)&0d za89#LPACl#QW$L>q|&QSLp5Cy*D!^MBgJtgYFAK8eH{RLMiVl=t_!gdHiO`e_#weJ z6brC7060XmP#OzmQ>12*j_R2U3k;W39;QZXK!!WHh$}Nb0r*pr4D4Olsva2yEGCWx zRXnKVqU)DmEw4=*L6=~g#-@1IPeW`&oE#>dIxShM#tqlQ){Fr~`%N5WMD&e+j2kg; zGV7r94@eP-@2PryihCP(Y5&3k6jGH_n*j`CxLi~f>;ggKXe0ET-sv|EoggnVp?Ilq zD2T0iYwLR(@k4ECU;0(5K@;H9HLZFi!TEr*nWaS+qpwi7;v>b&lps@#De$H=n;q;~ zE8+(5IBUMRHg%bBovAArspPi@99L{s?132AH%1O-Kq-V`DT7NwiZ<|EYSzZbh<{Nb zpJ{PFcFw6NrhvtWsCE!q03+;FLYUwDXl;Y~+Adp&q)>)0hu2(tnTxvjoN^z_E8XTr zkLZqmZd-LlYvphy+P%)2RMpW7`3t5~f0jyw%AxXC2dB^C&-ckfz+r+5p`r7O;U=n) z$S>m)r=onvXKLA}Dbi9-qO@5mfD=M z@jcXOHa|{%91%*k?t=Vv5@*ZfHguqP5h|U;CIYWB2Q{10Mk6fHJ_~wRKerF>M3L|{ zc;~%Wqfe1;B$zKhLluvWX1yJoi4ewhGA=}5Oyf;LWh94S7^)5(Dr=$mIY6j5ZEyes z+3E`8C6!bZWmIyclPzz~=yVneN@yA{%lu$k>Jpe{kdYv$Q^|_y1_dmbOaS7j4jdCi zLNaN{@w&bS9>8a1vdhpfe4p>q+ddI9l){-|%ckFXO@@9V8af(B74)0F9YHXMq} zO>fWHcls)%HSbNJw~#Muooszig;?8@8Dm$Z7L)l=gji%ztt*^46G~M#yCQ);NkEBD zcSzo%bY;qasbW~bNQ96|UniZA6sayc0p;Tcs*Z^_?M&(=QE)^j2KsD9aAb=R9MHSNj%etvqYP5)Bs zBzkLD3~`Xh8fn`5Lhzr)^T{@Sq`XADts;huW~zr@T?`&RREwv4_|>Ct+n4Oa$I4!6 zJxfaIB$PDOrK?Uu@_~Mn^M%B?vai1p61z>`5$x4?8Kn4Yrr+3SS3Ldbwdo+0jz`yZmvo-NB4Xj}*aXEMJzKPm*Pq?t zVVy#tjw%;9vLO7cFWwl0qe_(NNxku4u_9qi3#&qHR|C0b93vYatwIFK;vHp=vfM)x ze)QgU6RGEtxY?LbF=AQBsdk9c)PhcmjdCi0Kv?4!@HrTT!jg58<=idfYwrZjgUyKh zD;*WGE-7Zveu%~Ce#Q|6T+5avM6;WGkkUF%HmxmPZ7X=Y#cQfCm_MT1+k<0DEXQD!@(YM> z#G3u0MjaWJ4`ZT zFX?6pCGp7I)mhbtj7f$J@OX)389K1fYC&qtRKezaRb79ncqXMo<6{IaL;9~NyVYBz z6eLp{ox{_BI=kY=MlKt33JFzSR-ftv1X`8r;SxaNox93QREe;!JCHaY+IAT(fgk-b ze}AZ5;>aVBYH6`w-?6vjMKSI;3#yUqRAFaJg_w9<>X}pbUPmXGPp4JvIdRqKOLjQs zRL(NCd4`qa!nEBSlUB7A5O0oQX~P}Bk3gldop{QDGT?XK+eJD>bpA79GVvB%x7KdW zb@C6)q(UVSKcB8v-ehNXo%j8Rey`_r12a^q zT&W7rkRGtb<_zY-A!(YaMt1{f4*J4AjlqoMDpfbS0W{DTxG%soDy5QaN0%s;Es0Jj z$qLI!Tu$u7QYx`amgJ<0{4cJ2iOC0$K0Hk}G3kmvMyFZ;Uox;*Py)kF7j zjU?FgP`jm9&}*Rjqr5~gb42xP;-zs&v|=0c_s(T7N8&AUQz6qTzMWfuOMQP|L?vb{ z_sCFkEnLGHDQXFd#TN=ui-CKsUc7hD44PzF*~@ctwjT3$fYJ>$7A`>g!ZPXRqaCwwRdk||4U_f(XY$QNVvamaG z`wat|=Q}#IT0+ORibP)Q3rb}%eciF(f5++g_KM$Wgx?V)Vk~bi`-6X&pW7%g)dz^R ztP!xUZD!!K>xjZTDF8*oPaR|3O_7nIy;hrEKC)Ka+-`;P)4jb+P}anJ|G(i%^Md>Z zeqbxJ(DGw_E2IQLYZ>{|k+LnSoHn?qEoN+deMEe1K;Rp9$r_IS_pYG2{04 zcR5OJq1G2q{P^am3eyN)`$W5&oH!nDtEqqFHpb-s#{K+Sid4`qZ>AD3d|J;G8Vj#$ zo9Y9`9H;5ChGPKR-|KsLiSu9SL*z8$$s*R|Tf73VYuB*X{jbEm6leCS#N&a{?uR*H zs{?mEwXbj^_;`#JgoPI=?vw2PO?x`*?E9v^;ZD|xZ!#w}`ftj6x!m!~VU-;s0cP~m=*)H|f`vBuQN{kzN zqhBKDc;I|f6mn1s$1b+Kukp=Aq~ai1c7)aoLtyYsjQL$a!MD9C%FI2Nt|*YX_wD@U z&MVKIlnLYxNMbBVp9qTMBZ1)8WpG`%N>rt;pq-jj7cxJZ!aW4GiZ@%S+5=Gv&YBhDnJiHUWhEyyY6p)KTHj9k} zhH`nNd=H_OZJ!Q=A*mQo_9x{)$EjPQ>ZC;t4*Moun}?v+FXgrtylha($+7D4%6A=q zVi!1G0v;A5UBud}MPI`Gw#er>3+yc%*n_}T|McLQv@Pqb%s6?PZQ;U#siUxT`n!WN zA|8x%Nr5BGR4{6?x<8#c4l5d6A%#KhT_{{(^o)~767$&?O%-gnJ?Hdbn#X}R2xkvd zO$5@j^+cxPkUBbiWRqYyS-7a~ttK#W3$wvP7ZB@baHhxBatgY^DoB4=4+E;@x3+#<3Qj|uK zUSz#XYM*^p(BBmz#Dcq#XFbg*_QIHAwM48?G`uT_Aus>eqjk$GY(LGum1jbhTYe99 zaR(zdv$~!CTov#$B2E}zfA|&x#YY_BhzO9!!UrNdb@DUFWJYa_-ckI-_x8->!+Z(7 z(H`R(_fO1B%$!=2ClNN5QGL|OOVlBo=HUZJz+ zr;*Cw0uc(+aMRVL-W}$U`WYk6tPXs#3J;VVW;k#6ai+%;(R7b&aAtn6W$jlP5c^|Q z5w-`k6oCr7CFD6z4ddI+F~fLj_CiRAUIZ+q@T zFOIW|h_*IQR3pf`N-M&dKU!pJpA3-woV|`bZtj%u5)}bC!e!Rj+~G=hNz^<9FKx{Q z3MsxppJGlk0OMuGZr%ED?RI`bf*nS;y0z?@vfo(VMF68&>mg6vLejwy?mXz$4pC@* z0SeNcpK*h360{NrO^H;Gu#O02#356EW8KHS+Y+sl8%T2-xEHSGTa)}JhlGb#Nf0qv z>Y_>NQVEmkdV;*8g&AT1<`Y}f2zW_uF3z9WFZuy2I>Jo%fmxoM+? zYo(NoqjnVsUr0baM0AUB$k*aI!~tS5e#XO?ROUDV4e9#|>FC)V)wjR>)qH1<1D}&F zs3;0zrP^BYGn~+1s+(osd;e|?Rm3V^GvS|EGY(KHH)Z#a9Hcvv~{Tb01_OF3Im><4hZ26ve+R<_p(_}%b!0mX1Ou#VHL03}G; zcW)%7m#!;Bzwy)xVfvE9k0$H02UT$lh?$?loXI^v|jEDWt{Zi>0_}u;CLYr1l?r*?&5UQ!iqEZR`VY|^tURQNcfaVea>HT~fF<-4736hb-a57!uzH*Sev?f@=+-(pTER<36e$$fMGBrA zP`e~Ig>*OJ4s7s7NqgZ`cX#5)q_){_-P*x97Mkg&-4@A$vF}#amyy*Lu{%V+zAozL}Ad&O$77?a@=Ku4HM?5}ZgzZLU{Uu=*jh;Qj5x#(m`s~17^)@^V z|FgIl_$O`#F**Ee`~2rW`Cs_-XZhh|GW^E>!M}ew{G(VMbWLJ&;D6IoY!vwVuk%M; z^_Tq9^Z%TGT=nZe%s+`dLO1D^f6Bjqng2{Y_&5F?|Ni&#^k+n$n0?(X7TPW1z9raIy*#gxb8iF4R@akX{F zlmJ0Ju|`bTE0-6~g!@?q-FAPLc%cjTcDp~wl#e%i4 zg4`2ptHerh|ISh;Dyg;+{%@BDF3@^2Dz@ODl@PHPGxg|NnA)wlX&k0_6 z*Iw+aDwd0Gm{5V-^7eeE($R)4wQ9OHwHZ|TMH}FeX}|suYN8(~bP&@xBButEKPvH# z&tF0BfkVSX*St2Dqsb5NCMki{RIL&CIZn2l9(d3)cGz?K-aGF{B^~w|o|~{n#wy@2 ztl6Y}D9hc2{5?)t)5>}Z@(=(Ga2LV)sQoaThH`iAWT~65E(mo8D!;|o{2&0>?qlOsPxJe`c(1EWYJ)5|Pzi6t# zwI?S#IiB1Lqr^8`rR}EdU28;*vS3fBH&@p`&JUf)C&JkmG1oz*7yabuvNR?Va6}@+27Y)|>U6=fGY( zw#1o(aE#80;NzvuRznHv(Cr?);OPyPJQc-p2D7CeP1F#p9w7$6Lg$|9}2J z-%?K&Y1C3!nr)@os_>_xNo?s-5rmOyD;h zgz+ab+Bpw=E7r?VD6zv?QqnkZ^}BjUwUF&;ZoOzTkI#lroRx1l9VaeHoTkd>8l14h z%&KL#BX4*aRWeh^6U$F;*_{zFso~XH$bWCR%`s2?bO}jGWzqaob?d#a+C}%aw>Pbs zsRC%MK02nji|rV;o*%>1ur=rS=qY|XTqoX#ZkNOooZI$j;F?Ef2XOQi9*b0FKIj`% zdJY}kU(~2bq|I$R+1~%$JsFUZ?8qBuzj+M`ShS1IMR^vnX6k8NQN`LpCZ6 zno`W-ZaSXx>-)8Xy#Z^Z6#fLM3YQ@{A|X!5PsHpC3q$}Wd|1|+e(}}5Gy(hCsu;Gb z1l12bAOe0R5Z(k=kmTX{hE&G2AmB2g6(YwuxFg=%+(c`&813lnsnQK%R?t_nAJz2C z?jd$m{3vI8_2Mgjgvm{1PmVcjr83g;N9^%}WtKX$N0iX~aJY)`llzei z0dsLh6Pu84(2r?wsbL*Zy9VEr4cRz7Q4s|D0}M66HgoOm+y+AVnG+#@g=r92YL0vP zz8_%*sf?Gu5qE)7_3{m!<>TgW^;$_Ep4>TA4v`N_%Igv&DPK7P7Z2Jc088~jR9Woq zo}938tkF<~`pS^2JKudnxON=?80SDK@*f57%u1P^L>09i@=yKb3XysvY>ZEW%<751 zY~o-lc%9QRZq27Ei$Xvyo<^JONRB<qlxw}*i5^FcwISsAc8vSYb}r^d za#xy$IXf-X_ttb6@NMp|*@z43fZ^nu3YnT2_N^h{g~-S%?uQITh`~~lwuz-?xd_z} z7KMPft~!n$Jm8O`vS|^?{kS$ z7B3}7vtM(xbNr5SdR>aaeG~9TgjR}5+AxTiz~6+&gpKSgV9c^Q#;%ITQUzVujiT%# zaS1g0R7_IDBR`g+=!4j;s*iaA%-9qwr^HG>f(gp)BiH1BVQ{ZRv-x!2k)YTSFTGDQ@BM=H zhx3jVY6Ast3(oCwD2<35B*sV^3W${t4sp!ey$KiSkE9eZh+u0)!tcdaN+=88_)4>} zP1{Tff%)e{a1yqGNS>#ZpX>H-o*jI?Ab<4JvjtIc**nIpg)7CNNwz)lXvxS6uA1|# zUVE@)a1+>rL9*m_&fGD*o4sk$&$_miz&$oB^;@?-a`jIP0`7T-e(b`_@>btizn|}| zc0H|yw8=pDjh9#Mtgf$auej*x_L;Rnn2>XQ;u8gk5-u!zH^=*~pCV(`;8hIT+b^y> zo0?iWcy0jB?SOkU8{{Cw&~u4>u9tQk7R)h3?9^ZP(T70}*yS=Wc1Mnmr+v z#NXepv2xs2p{MOU)Ml2saGrcR>q1GHxT^<`hlFtVxjNd~=&( zcGj}F`M7=F+`RQ&6wZ9<%$;R>A)C*gG}v;=q*gAhT{f#IyH(7{*H`c==1QiG)Op+ zoDPU+!BSG2`Ms`AIx>!(Q8hPdN z(?wqzY2er?xZYm@M9n{rrntxSA8Senk3_Lk{?oU-`qkZ&^Tny(Ixw6d(#1vK>N#pd z6!NQAx8I&x|L(4=uWYX_*>Y>q0RwS9SJ3XRR$Vi7u^9{ls(wL4jRhiHfcM$`zL*`C z1A4NV_usV_!ZJ(MD&oTAcv{Yjl<;|t%U z)K+uhtcsNTo|ZL>rwvxj!-BaY6JyW|4sthDC|pHQ)VD50uo+b07^%pf8!6~PxMe%V zJ>v`^XkMZ?9Yq*QLA7pkIE*4bC?2O-(&`eRz4VH)DlyJ>4Z-CKdUa>X18#_uVkS}B zOkp{bpbFBJ#h{$VvXz)pUp=mO-~lkQWmBj`M&kdOAjPE_U_bnMs@2W)8(#b zaiL8TIeyi$pSN!+_Tb3uf^HbUIJ*SfhT84^8MzLQt&gT~xL#MI7TG8(o#t#v#y2Ny zCbD$@9kSQ0@4F|*Y&DyOmSAFd3i>If>57lLH;=3j4KgeIU(MwE=o&U=TPo)68enq5 za31)uHA`S%yqM7wQ@X;UbGvm3@x^ag?1$6zHg+YGL-ZSJjXdn3HeJ`hXUhSc1)Q z{UqqcaexVg6B(lQ$3be=y|paz7LPW8C=J`Yz4FWA{k4thcJ6zQ2s8_zvV+Q2~) zaHQm{3#AK66c&Q(76AWo*?15PpJB2F^24cOn)joNFZ2c1lg7`nquCH4$;XN%0!WHg z)$P1`UR+AafyhFzorXmsaIsCr1#D~5ORP_yodBM(3qky!_zuMD_|t!z$T|v`M=p^w z0G+nL420-O}(ci&Cf6S+wvbyPuXTiBd` zuU~r;JC0(-YpwMUKDoW{(KquKDGnuXv3+^MX=g1MP0Tj1*WrQF5LnA+ZdvNe%zGc$ zqiEU7@Pq+FiejhuJKwhMlSu~~rrq%P0#B5GBOgp;Pay)DTkl3?vVQRbv}?q*W|dEU z1vS~Nz~hEs$`1yq;o`f!cd{4<9xv=`K5}g-c57zYW@}Ss#G^Ff16`jAicCneet%hl-6&9GxLsb zQT*`Xv+NUv6x-5T^nr~%Y)m!qI>A zO>`7{1U+@<6l$?3Y;1w`_b*-}5MG-Ml)ujJ7vXxi@<;RLLbmR7I#&v21T$)I#N0@* z2-?Zulx=}vf9lTOPLcgsBX~_-XbI)Ug3*9|{b!wz;o_>7LL-LdECgG>VO71X$J6aq zr;#1shM-K;JfYNX9h}=@sKN~*v=zQ^Kl%0_F_=Djs)&+5cOv`>N_*G>4L8tR9c3NsP@r(fJ}oYGtBGR?M*fpYg@g$5wNyQOVR}%_Aehm^Fo&yQz2V5)e22@#3>|Z~U zDdL2NWZg|#Rf)*X9Ubf~z-3NgKClUC`B`__jHt-*sIiu%ym3B1Js7A#1ns&}Q4cW` z%23QLL-XN5{%sspXH177o&uPSGt}fK%wBV&^< z4_5PoY8*?p#`-4&8<+wgbyN##=~!dryLb`^Cmi6r`G?V2V!;keLW~Hk3*S!AmteO% zauqeZwTi|iJ~yOUOzx~*Uu-dIXGiO64h6MfO55tgEQsG6kHnV{;Jfmh)s zA0_`#@e-%}BvlT`&mSXh4wM_?!-;;I;KjC(rD#NG7GI;xF8F?2w?!~V@a&cUJ%RluAwifGXtb7uV=lDYp^lPw7noW#YKLZzG zdGymkb-TW94Vaf)ao_ql(G{nnL)Kng5(IT(O5nsf+8z8Z)?DO?O<=QlcX4$+-w6iy z_x@dc{B@hP8cH!2(pv(E2fQ`O{<5|uhukB|Su)7NgOYidVu3eRF56;4JUiVKw7sta$L5P5`@$%n96OHd~Ot4NeY3PIQaO^32(!&w`o#YI5 z6QcTfeL43ds;XBfHFClR6^QQX#7@T+Z(&Fv;raF4;#ETYVX%aN zu1dup0+#klB%q>~JjGTe_yu5BrhAc@Ob{s+0ntrhRj#2_2VSEK-B)QEC1}+gUqn(a zr*45xfwGW?*p$_72a}n4y1DnFr1oaj*e2HDUfj8*4ed?IE|Uz*rri1Y{xJW%Cyx(4 zkESCsFR003;|w+etIXGmsP1LCDXsL(x;?aZYI}cPo!@jpuaX;B=9;x;t&VH8_nGGd+z#$2UcHh%g1?C<2Y^VcJ z_FX#XTwjqN8K2QWCMh+6_jn^l7YSQmUPO|h=F-Ms##Qg?qi?)tGo?jfYp~v-wucR? z;hk;#^TdS}PxywId%m*G2`u?bb^F1#{h5t^=}SN?EfR4yI@R%xhfOEp-xy&aWAul^ zlX5}mTjxSlyI82ufAiDXh$-0Zt55077lTxCsLe)|rBq-6(_kqC&jIch6x{1nDV2c;^ zVT7wlRXUuqc*aWxC7x{ru)7I>BkRbwCf-Ie`^H8NERdy+w=n-WcF?TfdL1BP@~$aB zuk*t^9{II#*ltSSLC+;gl@hU(7r$M%kQ>Gn*zzJB&ougG-Ce0$2f+d}%T`xwJVvtR=~?EVx80naD065PlF+kFW$K zQ;O*9Nc|n4I#3}0jjKtjNe*kd->O$yxD3Q2&qcoq8?VB>}FKANFp(k75t zsV`4bf)7019n#NzvwA^jq*W|fn5l>D_R{7%?f@1)ovRYEf3%lvNsx2l(E#~JB(d!m z_`FDF_iwQG9J&SDd>=j52DAO*kN=0L$455E*?uVkN`7}puT%iASMP3*v4FMc`Y6Vo=|Lls)HHCr)74pd*%pv9p;^P}tHDE%j2I+9I= zIB}Ud#+L!NcG*`Iv1@B@LfrX?&g=NK{V=*XBe|bFX}g(|PNzw}t$Fg|$(KzzflUnK zbpYh-_AVJ<7x*M>!v^NM;rJODZJGGlx^)w9i%ehpx{G?g6SbeN>$GBLgFb(>@9&cr zgS-(0tM!2pb$A4*vlli$9@kP>Wp=VnS;NE&Weas~Qt}Dhw25rS{OB65k!|JCj!Mf9 z%%;nII{`XM9m7lFk^sl49~xu(B?MZpa3AC=HsGYGD*RZ~2@YKmKZP|S;CoJq9AkqcCQ309+4N{n2Na*(VuELs_%-0? zwKd;+Si^@!cwTQfd|)LuRNo2S#cmzx67scS9z6WrZ=ImaMk$u=6ZwYR6ab+LWYu0I zG6sJUhE}X@l56}#6{7jz(2b>jiPKq&$sVxu6uw^f#sdEW!2r|k=O`r6?_*#AUecQ<$QV!UuEpL{b;5FfS z9Vd_v`lvhKIZI?Qc>8L(*z%xslcDyEMk4LmBni_afUh+*r8oE!ARq+78k9}_GQ`=7 zKnU|go7X_Fd^;qvadako=vbj!91O9#dI5XsqFvuVCPfulYL^pa$3vC8&{17-v6#&L63Nn_Sp2exGeTc>9wT8==&N{2BE{x$}OVyx~++q-?E-qfj=Yho6XII) z;C~=(g9S{$*DfG~fK$Q+y<#2Kg;`EkaV0Wjz9Hr@X{lyAZ!)4-Y<}JfEadH_qn>j+ zb9-tNqzYAbTEh!*?$CW9SzH+;IU_202%l$bKnGrUnVapkFaE)Qm!Ao20}>S}#rb=e ztY8;UHy+{&0CDlo5;EV9KqcwyMYbmF2V%+dql7F~7G7*n($AU6$0i6VktaNOJW2eN zLwj*}WVeg=sTgTJmn$^N-m3PpHy3Vpp)5nnw2F24VNOji1!AmYz)Xvoq@O~j)K4Q_ zzWslG_1}kTY4xv)8wYnUWw66#fjbMxy}y8bdNXe1OSfQz%9~wKu!41GbI1ccYe=#6 zIQQ`K6jP*mauM05;@@zLKSYJlc$s-!FFthkas|ayk0HN9I}7W@HB6-%rLVRSYy3EN z<&9J$hcf}KFHHFA#f7aJB{ewv&kgaVEMya@^!b6)zUiGuR2{K>N`>QsR>C_8{kAXX zF>8r85?QxZFNpA>YskC5DXQ}_Tb}O`{{E+edst7C@3o~MX)}wz}132lERCJj*5=0cy z`@-}jC_?pEKb)Ah<2|Jfns^TjkcUALmgJ zq@j58l*;1n?=PJmEF9=R>A!W#=bNZ!`g~t1QvQlPwO=-~+*n6uhAK6ptb@6Eg8;B> z{B=;OVI+hLp{C+E$vJ!p#`euQjee1!W0w&fj%`ViwetbN1a z9J(t+C4ZGf9J;L2Ir{8mZ*y$f9zjZOh}*Dp&oGP5a9t0iT)xBZ9|9b#N%+PG+=N7S zj!!->C-Jpk$UV%Z_KIa)%LdCo^&rqsN`M9FPJ)d6HY=al!qY*Sb#@|_YLVmwXISgL zXVR$Jm{PfiCE_Z|Ji!c`A*trppEvYz@E>bz_HCC@k`2UBX3v_{IuYKlL{#^Wcu2lE ziJIit^EHQKi1Ez75&(Maq1BcXJWfukzo_4K6~@sw>}(fT{(ya$k`S*z0lPQ6URm4p ziAazT-*+g~PXw8@Clam0m*Ezmh=sMc^V_eY*vsc zQ(7wRFWOn$6!H!Kul8OFcVcU;`vAXHLwN$h(HhVjd zJIr0)Bit0Cg>W-f6a7cIEh&wO#bDFU5C28}I4w*ZU>T&QzpAjEvpnOGc6^bGMP;UKRJuI(=soMtvYaa zXY!`CyNiRTPe`mXw5Z>Zg4s4#a5f-0;B^bAM*YB31f@l86*xSh(WA}CEYjHq(h|kf z4;pkyhsj_IyU$X<65E+`(AgZx3swx^hLR8wS6aD{>Eu}SIRz>y9m)~wc8)L^3P0F{ zk2befKUuxMa(5*+cAT+%43Nn<3PW(ejiweeeBt5$djt0zqK`=(#`p2_CG|Q+ZVs(M zX$}Jq9Z{r1k7mzFp-xgV3X65qq3Q{E6m?S;gP+t`h+5bs%>!jd*cn^*Z!pBE3Kn-1 z1W(Vw4Q-IWmKaa|YMpCR=p+wAz0N4+j|9RXG&Y;OXD8y6arB$&@g{^wG)%(RYGO8W zC!3rSM`IoVUleDFp*S9lZ$$y00+5;8g|!sz0TiWI-I{y#ln_1S`vRWk#zAf>&C-=V ztP0D;G|2{xg5)eE-}-h;0@J=oUnxpqu3&AC^2n)eRAIITLI&fa=vHXEi5bHOzY(t2 zmRGY;J~K4G`!8&G3)x|HYx{QoBeDpSi!OWH&y;|(Q*yMLi}S||-^v#g#7}hhHk?R7 zl73=XdY*!D=$)R+YW6z=&07wBmJIoK`FX8eWMR27TcH(YZxK+Gd|`qTAwjLpXv7If z?`PX&NV7q?BW0@kSv4KJqTRl?7^&l=lalUZlTsKgKK}kE{&#|L2&w!H^Co5UyQ}UdcbGBohTQBaO3MBXL7s0Xl@1Jh&?vg&2yW;%vfN9KXHx`x%RCJW_#%R@1i;cCp4i()k}Wthe;j-hcaSjso>v4KTUZ5Ht+*-Yu2AuUhh#gyAo;o7%31d_aYc_Sld0878mDjXA zp%oR;U9!ZeNamXt4O+#Y>>brJ&#G)zp5WcK>0u2Bc$vRdPj~DU?R`b^j`N>6$7S1H zxHnD((iixbe{Fb#Z=YEX1kS+6MI}-YG>67~bR}!qm9}HXT#w0Ippr?c3x{Tdd)IAs zsP&<_$uFfO_YVBQ466-vql6P*3&=nKV73;-G`{ed@Ik(_&-Av=-cW7-@^=0KjEbZA zMDQ+EA^(7yBGV_PQ1n7No@~%&B|ur?MQzTJWnZ)-yg*tJek#yo*$74Ttd8BsP_1wH zw0@3M@uiFO95DV~2Z}`ei(wu}Ka|jW{Dw$$Gvf()pi++QZ;dPqo2k*#)zx8jI$aR`^^gDXU->^_7EtCF~g8Y1e%TC7;yu1@Vh5aH^N% zdbp;^`AhYJtx3oDg!9KSnm}9)0kP*48!J>rXBUqiMVeVdU^Wyec)bDwOpqzU ztwaLM2ysoADh0puTlwGb{e5izzi;EnpME`mbR#8XF5Meg&QPPsz9>D)-pF!TnvJvX zfV4R`dQOf#39Wu|;DIw#GUmqmPb2;T|9&lhZIvVF-aC#ws_BL7uMendnlEcsPH@2F z&!eTQA<%k}iON6COcwKpZj%KTR9QFHliCQ0ug-frJV;x?BUujVem}+iT+N}0L$8}ZBeX%&$#doIWxVoLUw zRz;Qk%Q(u?*nn|l*`mdi6f)C~s%m?4(;j^I(xlwX`yb>#^`Brfie$rHC}&d~i`{*l zsjmBvmeGh1j_&oQ=q#_Xk*xmKi8;DzK%lmnX1wfUzbN$_Xl8y3h_^u!P$IX)Otjw5 za!4VbfA=@P_@}>ZZA9J1wc&@gD6ZUrh1wO9P($0{GpW!}v<>2K)|%@>)$KLQH=w@F zz-~m4svKy3C6uk0#KhhFrDL<$!@Y`g2WPswHM_eh$YA}OxwHi@CtNT^RB)B$rvq&8 z$${lRQh=(dJ9kH`65cqIZA?gS#j1*%s*~dg1jxMgN%agc70(2olV3ImjzxNqbPXGx z>QyWi{JjW6Zw>VXIWye3k}^^3xQ3{J_*z_;fE%g@XclS$w#rb>UmgF-#%f~nZ@?5)rHsQ3w0s@^z z@=?6wOOvZ!%8Ab?CMB+Zw>!y*i~?M$HaW=Zc_DAOgAV{&5cBe3yJ=2{+(#T={f~pY2W6_rCK>_IC;8fE9sb8nEwy0*ms{TJpH`LXI@J z9-Q((hU^}muNQXW0Ad3?NP+zr>m!U5J{q5}_I9s<`PRkqMpR|;i&yHqPlC_-x( z$COD~O07q^pX3^Z-_*u;v_{xg)X8=i`5b!)_Pxj_X>NV{!*}g%{mm=mA`KdUwG*U3 zJm~i7*f)V6jbl`igN1=DlSv-SdL_1ZHPn&RQ2Bbw%)fYgTJW7U-Ls|IuA$ian<~Pw zc>pNQCzwY5BCpSdTvP>SN}-mg`-d+=FkMfnEVAtP1LjBW9JXFKPN*v$AQ0%Hq$l|S zm&)8+4Ned`kh3|`M&3By$G^XWT$cOa>%V$Z&_+oLnv+EH;E#0%Jrh>L`~}{^^9VG& zJ~^_vYxL2^M5!2q1CjEX!d--Q(39j3H?7Y))QTKlwj??Oqvm(vR=7Y_vK26v@9ylR z7{iJlE0HdIZPl6^F6}yKwXm+S`xC^~y2Dlt(*)sgy!YfHIQy%+4hU;EUMYTS_W((V zFR;sCmW5DIo_+KtbCt$dg^k7H4d0Hvs8Y7KZgu_67Bym4 zrumsO8|&5saI{NW)Mh%+b@d9Sx=jJYEGC+G8cp=Wk&!JlO^|dekHj}DVmtS zjS0hPEwG4e)UQNsQH$B0_7ko<0iJxop$)bFxbFAnO-`0HGt$Aa(DNf_zWlfS)k=jv zx5J4EOHfO<>yjcJ(+QuTzexEV1C_D9^_>rIS?e*ouMiuy6VyBxm;!hq@e4!)fZ^l7 z3sxZS@>8IT6O_wE#^|Q=BITcJIJK(t!w=&9irY`Hm-75aq<64k?+0Ig|8<-ziO*ng08v8QjT-_0 zq<8s2EjKn2%a_IN!wcMMVSbNPazh+rHfA`=B3fBL3>1Utjex1xLmFv9E>fWoB!GVI z_3=JhI&;^ZEqLsgX@?<}tP5AqYPobNKgzwbljj$~$aFWNP z5zT^6I@L)m*w@GjXHCXS4e`Dsucb)Pg$Ue(R&is!`wB#%?>PU>HN(%*a)hW-_VzTMH&V6Lh|$3!vLa{BVSWbQmkBnFf;tBEGm{ ztdUq;$bcK%INo8^o7Y6_M{N|vto>Kq1SP-*>?U1lLp8QN70x}QZS)S!A4#{dMgAob zBV4{CV{&0<5B1F+QllZ5ricdom_>(Q$9`+)DJ$%|LY+7u*n6$ zro^_`xwDBL>P(JVmqm&lChaNM<7SlysL*!YR-HU{l~&oiu`16Qpge=r9C}@rFyKVz z9T@Fj0G&l=vG8qo6MqI8Pri*PkmCz%!mcMh-C#s^Pj+Q+0^4|Ck0{h1%~O$vbTs<7 zNP3AIEWbp;KtJ2voqTC!1BnyZExX6b?6$EJ@do<4-PL2w4Z2>v^mjGHTAdPfEJJme z>smc^RP05uPo-F?cX_0^y7MM|@=iab!3X2X< z_!b&+!H2&J)W`DqcoW`C#X0p?zx~>tJ@T4^|R3VF?Ao34t8X50hXV zSoDGs2V!2lcD&18tLz81?OgK;AO!tf9gOfK^ zm%|3}8#{8#b$;i|ukW)ukpTP0+L`tUmf+>vp0|Tq4yQ@s&!AUMzLn*bEkdAkcAd!< zDZD5KaLk|*+u!hmx<|;~wf{LQC)&0<1Yb4;yxatUeCPG+5J=VLgT;Km%oibxVw}3C z=$a(Q%v7$dqky^kR1A5w3?rx1*(#pF#2&_mR}J*B28z75AizrtF-wZ^=i58s{>s#RC#fkU8xPRpTl)y6~ka^rR|B zV@DHt;EPaggs8AhTOVDzUxqA^tOj{I&>jmWxqcoQ&kdzn-A&cJIKYKv12M%ab&K&{ z$scjohRwGyWoTQToPy_mFJKkq?4U7o07fCV79@4_7rl%l*;N^s!gZ{>U~6wKK8{T| z^WJ;8QC;S?u}Kwun>C}Ov8N|4_7So}C*4}n_S-G(1)HhyqN)D=QbHuQ?Q7EeZL^Hx zDr*C<*W#6FFN8t!#a|50d~K?BJSclX?7U0@)@rsq?70?$vu~5M{aqSkk!U0zdupFt z)994;-saI|WEY4QE;ADprv!8=jP2X51@vI92if{CR;C5(qatla_#xjOP(}{~D-^ss z-OP^ZU!5q!!q+p(0|q$st}fE+&!d!5t6->)6qH3`xp&Dju@?I)<)wpEz}Gdqm$K#I zgKh3fJ;~$bS6br*Pt}b+qcR^cNrI5P$M+>NeP&fay2i`o^tqn4#L-+t_qphY&ZHK_I7Y zJx;!~+-rabkD`8Ae>X*`+@QU&#m;9GuBZaD7?&)dfoP%4f|dD1&1||u1=tN<6B}LD zI=k2B2{^4n)wV)$CxQ#HDI5_E6aSG9JSi{y$1Nf;SlWtV)A|{Y3z6!K;ZA{G_lH09 zfB7AwwT-QEinGG(V&HY-MrFK3_k1gcpkCFYJ&nqQ&)%?Ry^90EKXh z!5Vxc-2@dDD28`YwmK@P?^1#+%A7RWGP0%NIx<VuL zmd&83ZlBmWP4>yj-a+h@l|ytU8;|L5uhjP`f|h?^ca?<5Id+stx-mrDIHk}k+tFH* ze}@0t_FTEiuu&%#kG zI!cH2JG*#df)$q9<~qU9+WgjnSB}LCUME956wjsitqBg+^!!f@ymP$7wL6iQ7x($X#(4y$zj0-!Qn@1wx)H z4KJnDMqAp%qimOSAkH|KO)=mkNo9Op@J)6O6Ln-B$Lh#y%Z>>VBGAslr7(vSkUQ~A zE@PVmTg3TWDq&}D0l$sM(2WRaGfQYn9|8Y*K2A-r!c@F=esC`3bQ)W;^@ER{*GUE| zhp_KXnn|1sk>r0M3;3x63<)dqOUgztrvN$@=}yJJ-R6vE>--(BAy}_dPBi~15A%`1?HQ34$mMYNtobFn;u3p)WwJ^Aq6ujW^e>mM*H0bj*Z=S@zHTj$hHE21 z9qMOZq3{h$qmxgo;Dv?x3FkLxj_gwj#}oQIf>P5&m5tUZUEM@g0>AhCIxPYaj-Zpaxc>J-kUZc5|D?$>Rjf$oD9G zr9=qqN`-uWhO9|3uJk8wX_kU;9GZBk*6x37OGw0FwwzRynXHVWp3ov41$HI)X!m^f zH?3G{{s|ig&xOtOhzi=c#DaAdJ4H1$+zge06tSk6Wz%4K)Db*P9$4-bb%toc*S5s5 zeP#-Xh1z^1_?;LMaytN;By-Yw$>~6|ik_pxfb#{lAzbz#oWygLZy&+qh+_1@k56SS z7p)uX53K!Tgk!UceKZg%{kc8ByQ?jfk^h8uEYs1Qp>#7uA zCWm5g!3IZ+!&nJ^?tnumKCzkQ+xe>T(#G26{gpvI)K6BIwl`e6?6;xDM9H_M(kbfA zVB~udbg3$>3mtGvzhl3Ee;7m}$TjAxEvQ+UJ6HJb^p|93hW1Ax8r3oo!-R87&&lND znOInEptbm)!xdG%b>~igdAof|(xWwMOuh3xPMOHZV{fKR)QA(|HYctXYeDPeF+y^PLb!iYFkmK+8t!F%Lp=D9|d+A zmVAVsiR(G#W#J1{n{DY(X(S~qI?G72dl;laH)QS;w7VKyOffLu{z;A(StYt4KO3qe zXa2bH*FXM^|B-+H+XB+n2ZvPgR1DH49Yz3lOUS&v6Ld$9O;Fcdo5;qk!w^G}a1Z;S zjlQ$xvSF-z_l`5vjF_#pI{9>TL4J1*!IoI%n8#yGV*c3!6Y$z^Ms83xL27BfoAVnF zwZE&|7Wc6$Gc`PdHuU)=WvL)-2?1IsQf>Hwp4KSe+vHk3J@(jn2U{0GTAR84HZ3XM z7Ir=Da>3bf{`k|o$txJOoVtnVfxGT`&5q|l;tLEPzL-(1cL3T^maM1vLea*25c6_& z&_!qwE|Rb|*lhNVauhxe&c1KI+z{I0d;$3~fF29}eFdT}2ZT~qY(lQHbr$?V)}Hn@ zKs_I+R%!l@zN=xxwl35Rk~>9}L~43H89i}HweFcOqx+P4-demLw&9(XHOfCv*R1KS z*v?#T_x7Vn)^>hgP?|h&^}*S^>E=wk!ruAsDejCMED8t$hIM&SYI~~V!mQXU8x5&_ z24jjhlr7_~s?Dv9I~xz&m2hKHP)3oFL{=F#T9F%62i!LkF$$=gI2z;9U?Jnk@sPfr zM~anu478$E%gvRZ9?S$p(;j(wGhJ>()(fnn+~>EMIxP2vY@&liS=c#S5Jlnw1HsCS zIZiP_mnAUmN`(x@y*E?mCJR3^1aEGriT}|%aTnl0@(l%%Os;%l@&wI}lW0Ij_wzTu z_$PnzlRy39zy4=G`P0Ap%irS5U;Wv?$*muK@x#CP;)lP+f9LPx$$Bz0_Ppe5d++k} z!W|RW?&YhleP;h_E~sl}&0o8p|4xAy_O4B8O5X&LD0st)U2UT8)?|4a~7bPdtX>m|w(?!hW*>DG*q z*@yCd>pb+X<$dm5Lk|`tGPcJ()~m{3*-P)q7$~$@&H4%UME(s1Y&RI2Utw$7!F-)f zl;~!poBT??l>7nV)AN^RB9kJ2c9yzhPiBSE3H#CR!cTo12PtL^@PN=x@J{i38{g`t zN7DgrS+|=(=o`aRrhb9&am1sd<=3c&52DY zbE10zF*iv8&F>lEZa&bt6KOB_7OjM%i7qxT`%UyoS_QhMR{U znr#sp<#)}VDKY%XfGHg~MW9FfjpO}g5me-h1#lKNR93aUgrQ_>`w4WY<-u8RJXi{1i^@8 zy~K{dDWF0XzRR2KQtk$Ms;rx$AyqJo=QnU@y4qA>IoSvl>&_>2oRjYM_gp9voPQ!e zZ@z;FFL5Z}xw8|XKU#bddZ=%H=3@zyjXBk30ab7jwza>d*P$dSlAoHq4WM{z9P9Vq zefOjM%k@+g0Dsv)yf-H=;=q8)j?M3ZD5ya#c>fKA< zyV^|(_2u`gZUmE-zhLVXcaba!YrbN6fRw|U=t;0UEiP;v4Ftv9$xn=kWRUzoe74#5 z=^G5I9dDd(Y)~#pLc4VSLI*~0MCnWpq=sE04hzJpk7}DzZS2w2eGh-I5)OCs9g=X- z>gu8Ak|-+@Z>G-%_OWkKX}IL)=DS6gCze6~Q5r+Y4M3X;xDPE{zJ+5d`+%MQK$s_w z0s%K61WEFcngXebO)c1BSO?_?`aUt!z&ch4`h41)JfPd{dibAJVQQuN(^x0WBhvt^B)@3sT zH8YeASy#sG-y5lmjoX;Ju3&b=L>6fo-I`bkTo7OTN^aH9y%o*hG!#JoAwh~{SNhto zNqMnlq4F~JPSDCsMuD<(g2hgsohL<-lapqd<;n>k%4j`-qcFc~=9bB((M|cC3vdf) z2p)yguX*l4HM#G{dg9}xb(n{cox9A(b}VBg`53()qBCUjQhry*fSba)*}EZu!q*T>o=tval8#| z_n&|34tZPW4^K`H_k2D~bMX2+ZpuSij4@!Tq;-OaFv+B`dmiAD_650O{v?7V@>Ca?1g`Cp2shplL<#qk zTV=vf63y{p<8VOZ_C}J?m0T4?RhCM-+~+R=8z!;kA>hNK~#J| zP4-iTmY>HbC4jl*%HeT#K&2r+%x5u##bi;IcME?_q(s;F8tj3c<~d{%T@(V;2MCbj zb1=5~g|noGG0r^FeIU)vvR+UPq;2^rFWxQWRarnpmgQ5oN$Uu1i70W>N@1?)-f1U#w(n8^PV{+$-uwnjN#(C^k;*xTYPY`};)!ze&QN$~-`a_);? z{Sg2SMk7?sITjH!dG>TLmP&ssXEGMH_wVK=PB9mD-67=l;rMCD%yZvfzd;-yzqacW z+Al+m>?Y&~U*mmwddBJNAic3CMv(N6{CgFON%j8nH2U?#pJRN^h zH%)O&Q^6A5g`YEt4D-lZBp*0MUGftYjo@&wolNGC)K1rQStTfj_S+5VNM|V`S$5(G zi-o?0fP!MT@LE;)wyd3qxxiZD-X5Z{z{zMd{ZQ{IZbSspn*cZq!R79biX8C#MCN2* zGs>>ce0_P z%I>;mgLKVL6{F1?I>oM;atdhq#6EU8o?%i@(n4tbkYJsT@mK-j*owcfSIuv1Q>%&q zUX&4e2RP2!2R|VZ22=naCsAcnlEtP6X&Nsb?;Jil8M-ZqN?R6IzIsGRj;!ObEm2P+ ztR~jW0Rp&@9cIFLe2+vQqL~3CgD--T1@_FeiRf6Y(Ue?o&6^GuY@69j@-I+C@42x8 z^q#q~zvEJI_ezU~6Yn9snpT%RI3+lkoFiR+m$;HOpq>P%MbtQM*eGIt?2@s0OU%>x zQ7KXjhfDs3Th3jc;3|;+`Ol-&M0SxaMZ#HxOaxN3KU9!W=1ZGnHn~lYFbE0!<7>K` zUg-twX~z-&Si`w)lRjsucr?JLy@LNPzW|RyN}C)weh5x@L)wRf5W3U>PUHdbV`lC9 z`6(SRsuE(V4^P6UgB212N9wRkDJ2?Z`DcBG4!{N>KN9l*11p>v)$IuAo^hQ+25#&q zO+m*9JKdkn6iTw#ur+kw(X*rP@2FVDSx^{@t~S*B8e7KZkvzz76_1G99-dt8`vY-x zQ0PL=^5WPfu@(%{f!FLt@eX<>(w!Kyfr-_Bm$SYAEIiJ3WYiz%`pUtiOSU3wCBWrD zsXpEGHFNqirkK(g4zdWf0oPi4aevP?GwCqHL#%sE23$xGn54taIv0eEaYi(7`#HPc%>5;6G{o_H3OnVm?e|f1 zyi7!Wm&^paEM;L8af81KY41_~S{ZD1A)_MHvvm<_O0-Cilyk^BFlltY^Z5%AbJ?OH zC2dg8ITej@Lz_~)gdOZUDi3)W7Q&NI8k(Q}Ww3^ks}YIwKbMmc7nFK>LaKdecw^iN z`yjic0i?XU;{jJgVi046$C8G9)J{NAst=5`R4&pEK{N!{AmNgG?82)d?&|3>R1^c? zfOhP4H#b)n?Qk8nK7n8UiA3e>cCx(C>IyS)BiFrC|ysiQqUknGZ=4 zTh}Wf`MH(dJi6N1Q+r4U@l?vzH=a8xPIBxN_Op&@Ioaz76~a8}%FC-XD0bCPe-s%M_|A8f2k4KUn@~BPhU+--!IsA` z-`Q{DHxfj}MhwR+>YKe|mfeq}8l*nA_a3Y*u21vD;67Xz>gQGaAqw<#G7>_AY_|ls z_c2u}eko*uaw?yIzy67kCw?BmN|Iq&);5*7FH(xtziWyeerC*n8%pRy6vf2{pKlx8 z!Dt)++)$#3d7QLihs60W;3|D{}3ZnVy#%V;Ns?FpaWFufA(xGcp19!R%9ENI7 zV%HZ86890+uHum>_=i}6<#Y$sj~niczC40PzxbIu(1@xo`G3j~(vGFVvY zF*cU?kOskn>Z5nRnj6%s_QXlBo78(Jeim@j$iL{K62v#l&LrD7Cyi@m+Eig3kfDir zkiX}=K)S;m_-4sbdA>NsRJISPk-3>< z3b>$A?E5$ERlic`wo@flS7vb848t%G+{~4cEp@#8Wus?ZR1%!@Jy!q!$98j6zJdpbN^P8xOno56yrVLxxjibji))< zdD|0j>*9=82nwjITk*4Zl&p_uh&_=Xln?%p2wE(I%faOFO(M#c4|yd!d(XlHk;c)c zuX=oL&#ZM!*q{p&?oFKD+i<|D7=qb11z26t)qG0_Z7&*zy|CTgXD8T~xzcN2O$`L^ zE7N?ZWC8vrdowQQBWv2sZQpju;pT8g*ys!GNsYo|m)DC_^~_HhO;c^g@Ln`4pDsG^ zmxv{sA9QiPG=;8YCn0BS!Hkp71h1=~fHHr$3zO7dHJ3C~91#V|Rc)U5=CQHou<|Dg zBR+HkVnyhUvHv@DS(Fk?)%JIS#}f6KONIKFGb8RjLyXw6fbOtnB<7 zao8kF0}w!jeW%36x=kb#r3LcEP+{Zk15uv8)-1$bd(2ak+)oj3ZfHOV9jbqS4}-3x z-zbM1pPLPcAXSm}V}G07l{*b#dgknXKR>_!`TW9FhI||DPFejiST(oW${O9j6l~<; z)Lm8yUSw_W?&Dew=0a!{AVFq{+cOaoh!5JFdq;)C0>dGuFD27wPar_hD=r*i$B~_k zpl}2$^@m;;(v*4yI9+~f$LyUvb_v%`2|3`EY;mHLxmsqQ;-V9MadX_BCv)Ijob=(wm>~e zHO_zNj&Re3byP(K7V10d?{-(JvN0${JbQ)*pQn~6+-$yn7yI4jvCjkGYkcOGE6B=S ziAX40HDTNa8;b<0C+=rVcAqO7?b@JCDymf6)w6f$5_D5&Ted^0<<;ffdVKd1v({f5 z0Q+_q+J1a@*3IP$cq#YUIM#2dasoq06z6E)A*XL72ZYOn7)zaAG1Ogdt&K)EJ!WkE zK!xm2qpQ)fhUC>|>$p0)u;yYl9=ZTzss{8c{Y?lk_xHYLx6srehEdpDeg=E>^$9Av z;(2&MT)Uk^IXK?4^!eO`QCyY3gKjJi(3#D<`L8p#-nSM{raU!P9RvtPQ`bo*hq*~K zRj<%D)2u0FP)^+TfyjTYx9Lz(oxx&gj}-1^YfX5ws&*jAepuI#-}N=E7TSGTwGU!f>EbK(<} zZMiV*hXMRh@gV#)CF;VVdP!8++RK8FSkK?8_uqXte}a*i>e1tLCAq?-2UVhN*m9|cND`i4?ASC@nV#!eDAvAhS+6c}GVBgdptVu#KWOa= z;d-lsH>iTSF+ZbShQ`bv(Jmt2+*ky)zOaxlQnb{bfmxyKNxPZ6qgd@ACeERY&A&9N z+3l^Cx+ap0{F8J`1q*${W$s3w)^_#m=+Y%kyYzJbm9G$ysW>e|r?Yh5AJJy0h`m`^ zoYuL1F)5+G;4C@K$LE)lpG3!tVKNAg?r|RZS)SivjRvsBS?y{GAmn5ap^MsF$nA@6 z8tKp}V=7FPC-^OJJ=vR^y9dWE#|3our`9OF=DJO>SV|y=4ns;M>&$Eq#-)HmbWC1J z9%e5344>b?{;r0oM%^(x+M?JK(m5mTc*9w7ddWnQs;(JEinaN@;54exZ*Fb zg^ik06122@pi!LIvp^QCuR?N>-f4Z6Urfmuj=b+#U!2mh(t*o{t0>iZF`?3bhU)wj zXOJ}oUEIdH-)29kxNrVNYan94SkU6kx1EER-cJT7ra-N~-aqsMSKPT2b`RP52C!w8 z-p>@4o1G_;uhZ$Jm*i@Jd$Kw6yVC+Xgv-fCzB_$-$r82|)X6_Z7}mOQcI+&5P%WT> z6fjBe*%JB6W?<&cIA~_(n2#$<}8L#@5b@YHQsN_6|mn!Q)7a!sUfFWD_Lqzr>?iD*otRoarSO1&CR$A!Mz9 z$|d$_^_{m3$sySE^DxDd@7h#b;x^b1cC*k9o=i#a;hc>v*X0CvyOQ};)TNb zHbu1%mDT`eOEo_&@RovEE*oXn5c9GZx1TTUath_!W>w~fX)cb{ex6VnVObA3$Rn!V zmanH2Yt-z~?!kX+Z|S7_4k|b>0IomC`K^#vv7yX?{~D;U182@*xrBOG3J@iLyn%_ZP4f{c{_b zqa9*W_8Df908S9D4ZR-Q45AXRa?>1a?zj)W`pkD!HFZDZ+z%j#(kw`1=O=edLlpuA zhBvu}G|MJ|mjRjO=Xj%|!w<5fgS~|{2Vvh>L)uVvmQ(#aa&jx8wfQwOpMGlZfj!a9i)wAh)xRl$=L2ad`9jp>W4LVX zp`6O@lAfEV(+K+o&`NFxCC9U^^i+)yG2q96(sfO{0l9e^a{*@R6qIv*L4CyGlRs80 zq5NqUNg&)wp?0ic;IzviW2CBMflGGF1j-1&=UZpqzil5rSj-WMjQm@1I(O>#ab{)VD(uZa+J@2%a$ImlyR71)a=E z@6s%31^ds3wD+d+n4!Te|K2~zO_1l%k2AC;^7H(fY3Q*H$Ecr@qdRDg#6zFEMRU5Z zQr13!HMWjDV7$gnYuYj{A&fUHzgW6DV}UEef4O%cPI2fh-AcUZe2U1R%u`EJcCQu1`I3L-=GS9 zyC=T#^u-62=$duwMmhk026F;j&UFjUf?~Lmi*SH&b6G$P$y3`{IyoY4kL}To1`$}& zZxS-t#@6!vf@wFYXWpPMe)Ma9^=JQxCGgLo)cJ4h4!3<=_Kl_gh`S|>`S0%&M6^~X zR?Hmi^HT%2Vw}AeTegd7I{u3iffFVlvuhy4l=N(^(>Zza%7$^5GG2bpg5@Yd6glD& z0M9j>l(qBBWuIBMe!f0E*~L%o&%|1?cS%`NEU>tBnmZ(NTbxNrHZN=~XXFx|GL#uF zCd&d=!bc&woFgtojor&L*>N_k+I3%`fjo>bFNk5;N3o}tNW8b! z-`!f=yq7=s+p37Yc;7n%J=TKJg5?X~sG>PG2ypX8L|&QqWssMPoj=-K*}8*v=V|`U z(tWt;^3w<^2@zp$LlPq;Gqe?^03JyW0-DlVVueo82U zFq7>Klo{9#b`A@JXp_30Zw7w7zYvi~+03>T$+S?CySF%>{iXr++h;0X?KVfXAb0kz?7z)lfS+?R?YX3@E*&q{tzc2G2JNzxE)r)_k6tsV%K`~zfCJYA zR`M6^Jc-kuX_KuRnEcViq_!=DRub5^kHkGPb7F%q^XYPa;@Era6Vc@ht&^#`Q@9&P z!lbeD;snI%SO7hcA5~Gk$sP*zAy(=D$idmUw;Or_MMfHEINw5L{Q4H>N*&o!H z)}XmCp83dpGYQNX0r{3ta>P7R=*ZTuE|XPi4c(M?GP#6&tU+fVU)V^4{O5p<^-w>4 zbzq~}!`YLv$*o81RypQumg~u(M<~e>4$B4G-bsG2!A_!I=rk&{=&K(*6mce-Kvk(M zRG_S5F@O48H=<88BV8EH5-lI)?6Oed{>F>5{R&MH9f_pOW#3>DoCBj5qN&dO;Wib zMe%%K#stU(9*zue@+(WJPvTV`zVybbB*?)2Tso1b%UgwVL5gLlpB53$&6s(xnLnU` zDX+wq0||u+e;xRcQ+eK3e6xj{!$f+!oR~?hN1IHSr`lFzOy)n=a+&3i&CS24;Rn4Xn7cLh6Jp80H}g07sj*taN^HOQqaUIn+NDZ_XDsu# z`V3rP{y5GlU=sNG4^+WA!yvLR%24)hb}4M>Tn7DZ(E-LpDr{N;-`}%&uq3tx@?a2cFXEO0dX13s6$>p6N+C#^x#PhG^uS$FiEH}msnv*pP z-wFywtmbA)aM6}Yy^G7h+9Qu(c`H*{1aFvCDxw&^W)#VlY=+(;ZK zE?#4RvD&ZY)9Gok1cE)n6KX~^8Cx}sPIyX0I;Yq1)gf^L& zZqyp@cZZ{v1!wyZ*W8a(!v61B<4{02740A#&u8yrXcQ>|gkLDs=W4q6S-x}hLq|MD+)??**+-Ou0>}U;%a+Dz1S z(v3;nvA3W}1OT-ap3}z#VCFEplCM;JE2D|0z}hW(W8gRL7aZNgNp)VzREp)phOS=5 zTbBF7Q549)@l;uscz*rW@p;=^lEem;e>(pl)@S_8CQRm*w-(nHw^wEM`YhpL1zi@DMPyT;&iLT%7STR}rbS^) z??n4b@k5`>W44xi-8<1uMFiqH;erKn4$0bzIClFOPi&m796KNbojHAUyz|pPA+_?S z|5NS(%(RFQ+hFw*2F<#B8{eWGm?M?!7@)D*d7x&_IRhz*tr+T9N40@cd)m5CfAig^ zuk)jO>S-zE+<&>b`nK6Kv*HX?7EY*bb+PwHHywSK9~0S#)?$M(M=)RRb(y&)yqm;8 zX`OqC!z)%H z&6HiANh)ksxY?6>bCcd2G=6ZlbWG&a3)d$S`0)w=RAGKV3L0ENraXo%PE7seQ!#^_V=Kk{(|}v}BKJ z=8*}$9KgLibL*mgq`t-r(=UF{T^QZ{vrb0;tXR5l_Dmq>!_seVOsA{2U0C3m}B^_^d$%~9EU)ds8EkH^tgKs$TXyBHhwuO= z=eR+BT${Cedp4(YQKeyXM}gWwrdZS9^l@PVQ2M$3c@_i|f@V;kg_M)M1^Ew)QA7?N z3a4v~#PCjSBaa0!QWlKU#x)ZK^{qWQ2hk6D6ff)1h+QD5=$IE3Ckj+6Fh$2&sX8br z5s#d;oEVNkfaC|7_?HTRKgp#5>FRPd`T-AOJ(a6>X_(-){1?NL8|YSwuc^DTacs2Y z^0pgmV0AWH{W80ct!BS834vn0&B-nqZgk;kWJ_8LCP0y%9oTp`q%r!jIk%=@votk?YreRBxV5o< z*Cb~TX7BVe65D#{=2%#v4l1haQ@455yW89YUw)7u+1%X+d}p7hJ1<|FT!WtuneE$? zta;3GmXkeEs3M|regLeWEJ#Me(Ul)muWl{bVpGA~bU3)<2uwpEUz+)jxjsfpX_0

o%5T;=#O((CD7b80qZ?~vwH=X6b#V5)(_5i z%p`7A#>)3yJ;fi_Yj9Ec^>&&n}J65(;fC<5a7=(Uck(e zV;@UEBDwiG?=d5p7;@Y$q_Ik7!RcT2U`+;LNrqK@jE=KZie$V5b{h zr2B%n3aQ4*I)Cby!KqRrge@M|m?13GK}B%P>>$aSS)1m5CMJdpRXpCe z?|u~AalNv-_3l^mBhZH)$wGG(Vwg+REbg5+g^-XNf;Z&5n&frKpGS`1v6WQ+%C|fU zXn1GaZgHW1m*`LAb@@RF58(Ts+DTM%WY?nP&_L+trM!Km1|SC-Nl#8k)5A= z1DCGK86|v>ukdcNrbTJ8ZY~anFtt#v_Q7hn!VV<=&?A0u7_k2BR*ZXulY#+Eq>mzQ z?ZQRO!m_1=J}p2qY$9VTIVXz?z-1fe?YVN4 z>{+u2NqF^=4=+Dm2p7x@U&iFO>^obYm}tXGLlMqX9DUZ68UxhDFe9!v*yE(af;F}G zB_imezvGim_O^^?>wFK)_Z26<-=GFxlC5BU&-65QZMEUv!4}bWa%6vg^AVwMME%0~ z3FVvFg!$gN1ck>Kl~*hO2>_UTSQScnjU(Rt7UOh&BSrim8<8rX(u_^B~Y43lEE&9&mL1-`_KDPT{9CXcK5U<>!dO^Dg+tMn6>3RVOTEd{mMynuYQOhVxz6nKNZt^dNQeiAG+338VXc%K%jlnSJ?5g^piq)Ft6IZ}Z<4NgpW5OPnrAWR!xIO}raQlqV=e{M zC+wY8qIayGT;NSJanWi$Yd^D;DbQAIZ>T{qPam8mtSZW6@&?;rFUrYge@oJ|?Z?5I zC{UP}$C1C#wJ%||^6??G#+8KieVyOF{qC)=J1Xs`#4W*;T#N|7C0h<7#hQoTLbBDf z7Y@Iyl$yOffH>a$Vy!_LTzm{KOjh@jmy+vjL-s^~A+LSDt0CE#wxk-RzV@wq``tJ1 zXqW4G4xey=@%?Q#ADB9rwBppcKRrgb*PGfU)Z>lC&9Qzgx$SlPbG#mKFOG2veUCA#lSBV6S~&3W*T;(T~c-Xu~pdXIZ~(*ufZQ z_H~Wbf95uFBjp_LKiIU}pDsR%dV({XX1kYeOG{TBO;wpyj0 znG`oV_7@kMOJ=H3)JeK$9e;4;LvV1@#!{%P9gslLCIEQ0Poxa0Ee1SHZg`1%josvj zISy4UfjBEbffEnQXP5X3C2E~7fGb}NU!MTcA!`$_(QC*T*4H(XrdhP4?a{D8IZ>rlY4e`Eth zj;H?BV;Q8%ay}ZQkNfINwG9GZ^+lQ?C0cH>V)QS40u^vMwS(}cSn=go-(BCxo-Qyz zY;Crba)q&fJ?fppAH()hY0HE5axaRlqgC3sHrHd^W0XBICjso8y5}^u@vc; zO>*CfhW#in$06&XDB2Z-Ox7Hc$yqOvlrOfrwx9_7HXLA}9r>5nnDFDlPh{Ok>LB#& zgBaFsFL_&;ykzis*k*_L+XkVm26K9nlqGV{DUgD^==KSKK{vqK%8{%T(YeYu> zc+@$m#nmr(NNcGk;M>rY_~-3NsfGt9uKT!4#>6rNMBR|o^12_?4GNpsp4yyRR;LU4 z!5)xp+)P=Y1(Qge&bnVtw?46TRShLYQ6FImCXpFm9i9?d(cdIGza;`YuN87qCF3Ym z=D8fX2)W&(j8>Nsj{fsV8#a-J!F4PMW(1kUob`=g<&^vX{Vz98K*uBI-R^Fnf6joahtCG&}SJ4YnObRagq!4u?_R%8rhV zy1+RVDeylf7(-#98<9bGd4Rr=z2W8g)v5IXmL4RHy-;c*pX%R(phWQ%GRvsw$(&d8 zFnMeA4%|gz|Jrd-4`tl!172P+Q|*;sz%)J|ff@k;vXdJnN*QVaZ_($uZ`%)*^eR_T zs_iUFi#<24k}b<&F|j8|y{xQ(4Y12>(R%0iN#eD?dm>7=NOrK%FVNQPF$==AkRy=K z2vS&=7cQr$@3xNt8W8R`&Af+6&6Wv|%!)HD(C0=H~jB`ZF!-ZBx zixP+@ws=Y(lEgY+p10q5`^~TEK$P;g{@I7NPF!Vqkt`m8u{3i4Rf^<<4jp!NaKc8{ zTM-aq3+spCnPa`ee_F*AQ*H!<1F)#@DM8AEl5Y*v-kK?BVrhV?ym~ z$7z?40i5b(QLE0{1kw@>Pk$@L4%9#AP^<)c@Phg+WmTCH^9 zbJbfAObA_a=w0GBtW(pX2^j4DVMxHys@Q#D=Ik!fdy@ zdha9QUqz*`R?cwyl4JA9ZXm>AEC~K!;iJgCOnGp=HBq3y`bH-pX-M9(+?ff8~~;-oEl|57+N8@**!kvNOZ4E zGhEr&Sl=++1Q~!rn@Qzsao_o+P~dGz8EM;KH;{EZuaQuE@Y+r$HB~2p_m5-q#2PP! z0(|55_meXjoz;bekk{IC@g<0#A?Bri2F%?dXJATpw|SipD5Q6x-U3d|uzA!;LH_w0 zDOAU@jb};`UH~S{M2Cq7)cYmylv5q~_9Ep<`-{XEM!Y7UNp&JqjlD`&vU_31jat+V zx3a3IDB||)a+4HldyQtJ`8Itq*VblbHVm}rKn>(NKJ=Lgu@Sc&r7bZS#HzmGhL{PX z&tWjz1xT-0mnJsE4!3nk((1(#g=6*R{wvh%TRc8q^QOPdqa|6F!%>cS>p$?%aJN*8 z7^{9b&$D;Lhi{!V8WZc+jT9(JZo#~>;3vVIYP!VC!$rNbqQds8oBDV8AX3QyLLrjC z5#;;(_*4*_*)%NHoZ?zI=B#0Tc`JG0VFXvh{gX3WsuV`u7TBB1Q6o!@@g^WAJaZJ>&XO1(?D~X|vhg6zEs#$MQY#80_xhAF-BCkA)dYm)|9UoM( z^@ZCKjKH=uChnm$<%C5CK$?UPW=L7zoQPk9uhv$7reed}a$=ybLz@scN3>+G;pGa;poCSdy;%OsD1(UbT_WH&SeLawRNd`WRwH;^eiL zw(5v?Wu!^PBK;Fw4M)2U8PL1uD4PKlD#~EqfekTVOaNaNYQO2_Z7La&*QHo$p}xt= zO_bW5X9-9Uk_5zv5qe)+sn&O*4|Ykq8lj&wBIvoe?6%fqD(j6Iy7Csb-kN|M>;B zPy){IT}Ra{r&BKxUtETiLNZ&sdaKXjR+F4dePOc*wjvx-#k`*ywbm@ti^|ExQ5Gmt z;LDyi*hk4lZ^1L}4(Bl}gp62NI>jruO*WI0b1uQLSbInrI_J8eHv6o-FKF&4 z6E!OkH6njx1UexA)jm1~Z!54CM@2XteJ5Qv?l zy8Bf2F~&I@b5u|i%xOTX!6bGFbbFf;^G6z(ACbC;pSZb)_Iu?32T}*cV2ErFJc@$3 z$mjD7p{`-`(Y@?AsTa=hX4;5@@SsDQ(4zf#8G~CKN4ukBeVkhF@J{Sx-$=?UL0R&l zCmJs?Y-=w?MbJiK$XX+$vsvhy{TgUuguHvasujRfKI%e6?vk4I?!F7SA5kc+T|L2V zVj8%CI7`)Sfwb-BLFnV|OUbI^hYN(jQ9_0_^lEA-*sj9)JPXPEtdy+t}lI=rB_;m~5`* z7E;=U?t1&KT|}}?o_l1n$IZBWBDN-p8bN19!ULJU>`6buYD zr{3m^kEKG&Rd@*&#Gtk2^vLhn1&`u$1@oiVZL;oBW5?Cx@+9*xr@;JAn=w-@XIWML z-S7UcIrWRb``-U(WBJv;``v%$!x~+x+3iPuuGGg2zOxb!Is<1@MR9^CSK3>o5FOlA zku3@7R8IDIAGqgI{2D|6Jd9rroS|z}w9O{^P=N)|;Rm&w8(H=904b7euSr7{i zToo#$jghcaoXAP5cYk3kND-7ALBAF+xT#|L#T;wt6qJipv2(%OV=9hE2h-Rud>$R= z&oDH*{R40a3nlW}D2p|5<+3LkE#hjm2F|#*u!wr=&D!F_45FV!o&miTnke_yb-3rF z*RyQA0|~8@(Qc3KZ3+%7`xT3MUuaUIip6ZFbdo?4yEH3_Od}u0j&cNK3+)Paxn(K`XdYaVidZjvKf2QvnL8 zQy~C#Yd#B|8MdbFAMTN3W=a&SlTP_v1pHF63jZzt{<+S}~ z(uU^(L5LlZL*I>Pg%OPdJA<&WHGofT$1+YExIHEKrSEP*{vzkx=|>gXWSk`F<;IDC z{0My8`1XbCRm86kR!vbHkVN`C{Hl8~#8mPDN3K8gIKqK1#sG-i#IVSuS*=hbqcYe+ zE26qr@$l-oK0`_)a7>F_bzPM7FZ2#yoTtLVXbl-7-{QkPX3M*rIGBCj6Md)M-Yg_j z-k0ds;nbfy&V>a8Y_+zc?-?S)F_6_-nt}OUOKp3TBAPWtBv~$azXW4P@QPzsFC)0F!bHyP82deG9;6d zUuQOcuGL1aryOfUXnjo!6&EaX@lHu9#BJgjmfmCLNeE9&G{~WiD=_3+AKgXfKO`BY z(5CLC;8pG@xSJ|G*Z@8aMIIuLeK)Pq;n@Q=YbiAcG9MdS$VP!P@}DUZ)M=H%27Yz# zJyLr=nH;#v)jU;DlfDnUn^YaPCpS{^4m6SeHshLVtqC{QLK5<9mLO=vEkx)~f2r+2{d2&9zW6){m|+{_H`-<)Pxq<16m)IOfQMcovFjy>LPfitR>#5tBVf*thU5V@G=@ zs_UHZAl!gX(}4#7X8j2MT%hy1_@=g75GH8Ct>B=vxwEW9fgGmXcI&|zDFM$-Ai>%} zP4b9|%&b^a$BfIG#Q70xeCGYT`jApmRP|4)ouDxL0%R4OpI>z{Gph8nUP^U(2`vLo z(a*)*C-?O)L7R6lD|nND?8nv=aUyvjF0lKL`5k$Fd~KS3z4ED4vC?PN$!})A{Ad60 zlkfZm|Ni6W|5vYl$@dQK$QBcK&2G{{ z>`1S05V^OGqUC2U^au!34MLw^Jn~2hS4@w6C;^#8CGj$w>czD;xITN<@l0v1qTh^~ z6z?@f&(78UJQM@Om19!DJ3+*yO<~#M$LNSPJU%iKZpokzO9Ak>_e*gIj9xs-i~Ca( z0QGoN67}@?_*edi-_bwO|IYpB7%Y%y&N}18wl(KjCNQLa=g(}({PAbs{w@CebN>A? z|Dcim&L8S?TKsYB8{a2AF9K+BpI$F*9=JXWr0n?2$f0 z3xb>?DC$m~M86|>Ms^lePb3%0p8XgnH*3*goQ}&R~e~eMR6{2MX!$sIJaJ@JdCkq?Y+UDQ<3? z0oMW#fsWWkG&~?E>q#@WEzzSW6rBVi7`D`Jg62z2jBwldK^0;&=#jfU5f& z8*BDhih0Y@kGYew%z>WAYU7jM)LT53-pBh(czT5`y zeXq7Jf;<|nuV)j5N`sQm!nDuD)qx$fLhW#c9mB@3hRuuVE&*u$+(^F2)Y&BJ<&~Ak z9{B$vD*e8AqR5qz1ng}agc;`?BB3isZ04w3ttLP&)K`hVV-lqr6A5}`LrT82e_u0; zEPDN+z$Vnc>fuANC-npAe@4$@a(8xFlqD9yD3c4WKA!|gaj2+J!T|FWVj%%RJ<#Bj1##gm|L)Z}m4q8bF%G^z<{Q_04WKFZ|PgGQIgvt&h;zoQ(KqZ*1(NURnXRbNf7Xx-Z*n<*^9l;fdmsk&V+j_ zNF8>FNrU=O+@U^yJ>)*6#sJvN7)xGZFeg0BJ1hA)QQ%=g%66|XA?a0 z;fMNlDU}KI&w?Z;{Y#wAWG=rDBrJxj)-O&fIZ`fN$;Oc^dpyJvVINtNPw`VDrd*v%%S z`#>b{*kysxBPb~JiSBJJpKLrd-y-}5QW3*M3Lb4{$JRT%R^Il$07pQ2@(g`pD=5A! zoy+mMJFkF5!UWb4_A{?9>pcnimmK-_jC7X7>uOD{v){xG#M}HZ-GNsiwpI;wGU8va zguhUNm-Y%kmfgC^ZQ^fXBiXe=D&&>J#bKGBDW%6Jmr-vXH4cL$@FL_&VJ4i~Q`i*K zJsZE5e#zdviQ3)SrPR@44!l`N1|S>Zc)O8=4KoCQ^4Mcq2mpMtLE9x(K!-;bP=(C8 z3%zD2KfA>Q_|pbzFg(N6b}qu)76Z;>w|s+f#CAaQ-hv1-AIMFjs|&XAd-Ia*k7DP? zFAi7Fi1;$8N|RHuU~cj%!jajSp^6i};($F@yL$k@b$}}3En)9I5Y9~d9@v(9glAop z6C|=WmhUbv+xjW)ZQ5zk^8QY0PwzhEusTS9a_8K0?@D3S)ECWs!z68UPpk=7ZwL)A z2&`?r3KBq(yKam?4(7S2?PKGL(F@tB2tVI9q%rP#{;=d)GI;JAZDHvH<={~tEZuOQ z&kEnro^E7Uuw)s<>#0XbhTjWtISROD-(4TwTYMge?hovSe{OZ;-; z2M1|-ksBnD4nc@ohm>_ONDRBQL_b(Vf{8a zw9`B7G^JS_#A33=A_shTTfsVP!;3H#9#|iz;yrG zO9Y{mv9avE_5AhjDM-}Xxp5gk!=UIhzx~%C!}B= zJ;g)z{qJl0NY8Oa9wOUrSh_`H=p-5xi#PAuEoV~?JP*XF!10|^YRZcvkIDo4^2JA5 z5sq))arnm&M^VJ9dem{ZiasLlC4Ck7TGT(}#Iu#r3}vl3qdxdMH%LG);;yj6^9y4E z(1~4y?wMge)!NG9BO9weban9eNe+X)se)bBf5y2VTr*GnxL>%p`ba2LP2U8a#(`;_FTV9H zbB)zQ0qEK?5H#?P>u9y;XMXPW5mR^FYM%;!( zLaqYGa9K06YD!SKaOj$@77=_#%BOG4!DE8TWD1aeWP?#Go?8QFMaDwJ&_R;K$oU~e zhx{mq2~OB`tkvZsvaz(IeT_*9f1iF)@=SYM128nl)@Mm4WV^9wBkIMnRhYQrA?kZj z8agvkdGCqWtLZPVj+Y*;kDqMVsW;=!>+(UUiP zX<(ps9Ro$pL0iFnVG210s_SO}3B;l;+Vqje1r(J2T-z2OEQsh6_oTCe0G(z__JBJTCofOG(DXu|ETlzKIm!n4CfoF&R z=MPb`e&0~dyn-_HN;yM0>)g9l;kosd)4V@nrre*^E+B((WVi`Gw78mS#>Kpwe1wz6 z-cyV=n}~KxApGGI6kh&t6ZGW3mE;~jt^;dh-Dxy*YyD|N4#a@hU0*XQ52`)>3tKKp zX-%K~8$m22l!Z1?PF|#WCyYu4loJp2h%)HSdU5e^WmEquS3X#^eJf@gJZ+aARxLgZ z_e`=QMK456wgxrw^k_TuX=I7I<|*Y$-E#s76CgP(1AQOLo-m2BGW2sj-?8}6FbG&j z*nz{297wy-otO4{n5Y<`9baC9^i;8A<8Vd19h~_G|0S|b9|!Zd`OH$cByze zGQ+p@51H@6p}Zd|YO{%RfhDK6Q8a~7%6UQV-m_r>U&K@F+CIz+qIbs;P%UJ49l?kr zkAv3O+c1IX8*2R7=#=(h0qr10K+cQEe{BS(9;Xx@P+{`3@wYUtSS|%wxB5Wv(8vKj zqV*eC!s891giC-lFvRUAyQtE1!kRPOVxif_)oew3WBF|AOg9BpMD%iI#?J@RVNiWS zdI~HX76q22n-A!%o(cLT3AIBefaWF_G3!%o-!Cd(?}r}T3}=xanP z?b8Z5##9H;Pu1clOoaWtc}{>&|AsRI$Cq71W|epmqL*MTzYn(J2Y+Mt9iCEiTK~Qw zAe!@$9!b88?Mu?LFu`11tEIw5XaaB}+M7!#NbLZ_NkxrU2bcDkER@GnXF~z0>83Rc z2ETphU>`tr&#q?PoEx2IfkO#-B$TL~`b(T5DMi7zmsqm|Tirt^Eao2rILkUUl5dOn zk&Sq9=uTD9c37%5h{x;(XNaiA2VoB2QS;3yH5O7yC4cqW?(xa=5Ys}RQEYh;3Ty}p zd)tuTgJi_?=-#?$@Wg!0c~P9XQ_R9?b`Q9Yz?AMMEzy5i2D4?)72C+p2w|%+sJSgV z>h-v;^p9WBkSEiD>A<93yq7Z?YXJy5LRdf%xK{j7u5Q2i#@AoBx7~j0^|#;9zZ;5= z035S7RV-1DrPflv&h6-aqC;Zt9I`sAphP9F(MOe3>$T^kg@F=3btsSyQZadE+qH!edGZ{aK_3m@I3Rq{hC|J%wR*GuUO$$~AJ+T&;p7?l zO4f%J(K_^RkXM3)^M{sjr=HqX$$qhCC56c(c9{+JV*9`*tsSNSMrdY&*9mrW&c+9e z_N3+2<(y5tx#BiPMbRK%QLw|{n$YVhH4o6ze}N0bNvNp(>yEyPN{Bv|P%1EU*13?u zJ__WIg^a85&+wnVMoJ_92C_^_Bmahe1tvR+7Ppt`tuQIrpNwAoqWt)5*Wh6@-qw2S zFlPbR^OQJ2F zOE|=B{r2G@yC|%f{!qQe@q1#A504%PW6C_Uz9)ui{TrZ*B!Afu&LYo6MH1<2Up2#Y zwY7w5%E2{2t_76gF4>74A(&lm;hRd?65j1A@w0~l32`Qj?(>s&^Fg-+BHLMS|%zM>Lbe)sa)mv+j# zp+Z1%KH3lzQT~s_FIo7$;4Tg_w@)uQcyi{eWT1uqT8@L2XR!QS>R$>-#U9ghpNj`y zHaT+;^pkThT$qj&-=BF6-(b{oE{}D(cr5}I3 z&gpQO`CkJ|q?Bli*s`vV>?XaT?mvQYViKU?J%VXJzrm8|ES}*TdZo z(2Ik}ZoWF(qj#6~32BHF_1}gCpaR<^IUFGw5& zwTTH%g$-;@CBHeF`jBs7Dv9 z;6Xj`d*XieqoaHfVKZSNN%!iFeVE8Nx=Km6o)pp zOJu)rFxwbb*w@~EQtr;g>U`mVoDd4kp{XM31W1`)mYem8(I&&%z4KpqB~^(@=6N@> zaC2qp0dC)1q-rok-X{Ch^~K)t;v+m*>>HQ(*kF!E z8(c`eL}C+pu}E~vw+)_;Tx+I+jn2J+&DjM^%if0e?&NsqDr_B$VproKWkI*J^BJ~1 z*@Z5#rK)SE!Z#jaVum@puAC4Z*KwAtC;Dg~CdA-efu2(z{|m9kftJXjOODKfzVwCm zWmkrzD+??&j^D<<(075e7qp3qubEq4(XWf2ebXWs1ZaNnUH!66d}HxWlpLkp^C?Zq zS{(d(b@d6Rj-Lz+ik+J1nV<8+V2kd0B}j2L;V@x3JxLr4m%B4dA+)!q0GYju7BEOars^( zLpRC;XzQuC@=9B?ui*0*qdnItYsp_GnIa?+Yy&Q|W`{zILZTOY%#RATQ*3se8q@5r zYj+Ub;ttT3ah?Nsay9V&&+4~*3b@HQhF|Js1~%2jAPXRG9%x@L9E5^qmaU|Ai!(8^ zqNA_FS{=)>H@rv$D82wIijzCIsFlKEQ~|P%NcLbx4U-?9qkr`Vt~}o@0H_I`j4md7 zzMF`*3GIN*d2>9WqduQh-q^Dv7yyVb5g33w@%)nDl--PZYzw+Nl5~0xs&~62C7qawy!K-OwKtv7cBQE4Hqt<-_Wdx!Ybhcx#4(7> zxOx-e{CMrPcs}BS5SgtfafIP4H7BmG>V%^j8m=emen4>xd@x;7B{{B%umX zi48XS?pZ-g=y}26`MHTi6z&Y|q>yDIrlV0xV``;-tX<6l&V^$S15_*)-?>WqCJrzk zTnT{b-=b6}K3v(W)|Zy?6>ZucEPSx$3iQz=!hbrV^S@)49LlJRiP}9-Mgeyu2R=Rkex&ZyU9E=u4r26zXfYoC*-%G1{uNZT|M{ zH;=yRb22@$!KkH_r7ve;#X8+}*Ln>lr-u*MBACODlqAiQ1VTS}r1i%{PIEEC~pFPvN4 zk;6bVfk^+t42LVlcMH@!GT7et)1Y3#Y3g}bbBT>hlzBpoc4evo6j~#vpD3?6wRjfZ z0b*q@Y+$N(+ReQol}ZVA9^1aDhpCo?bpW{GuID*c3#?`HFweaEy3H5-h0`!Ti!=A6 z4%iCk*9mBAD=VGdfz%@v_mE>kib~px(J2rM}i#8OUQ$gx`ZZ!sD!abNks>q7eBXdDmYkY zszFPoG1h=Rze(r@CmJcaZ_|1tXi*m@s9+*6ydk17p6X>trst@E7eCE^`i;45>{H4= z^lBxo_`UeggbC_)@Y&70{Y|}HFeH0kr@0&+MvO&`A$td5+pR4ZvOPhikuMTwtPsx! z)>}e*VpW>(pA(CQpUL0bc9c%LfQMuu$Q`73N{R&AEy7BJODJsZum1gC|MS29>p%GW zzxj#$-(Ua1{4e}pfA;fynZMxzZD<9EEhzg?1t%9yeU5i$PdGU|dkw-T8VW~72b@q- zF8<(Z%leFa39HiD)C@sj=ihLCKs;pIp}e>2$<$B;cO=s8-Naa_&zlwgu91Fa^Ng*_t z&`mo;T*aL`xAZzPt1NNQL0IMRBrDIT-N&8@*?S;9Tl8?-U7AA0Nv}^TA8c;AO9>13 z^1#klN^DJUiZ?(n6TsK2F7(AYbm^)f9vQGqG3;_oCAT75MQ_FW{zU4`a8CIN2sgB- z+#?i-(A?8;_=ut+dI72o>k zTl%aK2I}`d`|62;rke71aYuP}eHHXCvm@kU#p zt3>ss4NuEUq6jvNSTwfqW)pFtS(|!sqs}WA*up?;Gbma6?tD*p*Mw&C4O>3Li>{C8 zYuUY<#7OmvPGvGPr9h`4LwwUgHuk9>TNOQakK@eBlJ`JzLWud83~MF8wv`Pj@kZ*E zfCtbsJtPeVM7-xFDJrs~JW$)<>cc*?-N3&7wIA54hU06d<#^(=^ziWX>Qft4;R0vK zFC&M&mgGQJV|mK=|5BgQ&JPtdq904lDSKXZIvqI=SaIT@8?5xR5gsMI99Ef6FC!{V z>fLw#4gdZf|0K)%Kk(0j*L9NK);OW@-SWMK#|ZCbhD8#)K=@=nK}j1vqUjc7sJ2fi z^`UQv2RvM&0!c-P=ntYSX^7F@SiHLYs{X{|w~ttUHa`&I?{D7$7lYwD6-sQR;Ch)`iw?0Y;uX}|6*lhU4IaC5@wTr_(u%e zzqcWjg!w=G?Dzkf{sOoX%^fIJVJ+klv0rU9v@YO=eJEb0J`o|7>oc(x!sUdk0*{2x2;HCl zoNXX9J6}9v%mb1ZXm#LjNqHm^7NSM$e`-%ewjZh7ho|$t>PMO02ApKxq$V9)^|-sT zwD@GaVq-pDz5mGZq5Z{;)y)TMD^$#~UsoQjtbORJ$&tck{3BX)2X5KmnmL4++Xe+I zCg=AtxQAz>zzNiX!f~gBkne<>pasqK0~_3m|EO~ulptwaiWJ$WJ4IE5f!o*FYlUa zE!!HesOaY7)lb+AIEx*-j~8Zt>h=lgduXgDd{?J%O)JF7zP)xsMrQeZ2tntA7fnNC9BhT{2dJkWy&@?R=}w zFc-|08>I9^LTMo$`lyD}XCwOV$E#i9?@w_k+voN2G$-F$?z(G)<%3Wbh<1A@7}ggm zn1!D;z0B7fJnCVmMKy0A}Uk*S`Fcd^y^>9;vjb)s8tIyx@nKMOWDE;t%;l+QT4=o?9xGWWRp#4b2hMSI@ zfz0fp1qfn<$|3MHeMGy6kCns2&WGag#H3hp;qL8%!qV2Gk2?jQQId9U62^)i3MSQt zc~)#S88!J|8vvP5pM~4+yz{nx-Lss=ubNWbu(!^qZnw^@6PdV20VCFwi{XJ(Zqx{> zJ-WY`*hx74Z1Feu@SMgDl~W9I;`mHerz}_)Bph!!_wXe%Z(jPZwS6yHhJAZVsz(m* zK~9VxBp9k%0Uc)db4pyG0X~9FqPz0Jk@!0`)E#1337fn(d}C$&c>R${W?*;+FlEb{ zv)>^W2=_}v=n5fdL;5nwZ#k^&X*VtQ0H>d;GH8!vkNTErNrr{>)5ldfuUr<1D+Vvx zg>y<^x1v#0b=z85tAL#$iJh5iX+%}MfhXd?1tjQFMtWv3aB3oMW zt6~PK)w^ph2Fl~36WfKw2VVW4T)KDPCc9W$vh%uFziUmvhamncZBKJ3rCxnHo4XPM zaS1Kdlb-{Kk-c&3iop#4PA8u)EmbGLzb~~7NygR}Nj+<7JOb}_nUuFn|D z-X&@U>lp0R58!a-JUWD1|qVRW01(d^>vQrp8S9S2OI?tYYtAB;5CL+ zzk@-+&PFG&!9ijr5(M^#e$zghj`3qSL0z%Ac~5`91~gt((-n%P@mPPV_fY@6J=GHJ zGbC|2=EZtVB}D~{+NI>7*7`4y?au<^gi>gSeGOUx)}}+T=xr1TO^eGYZ`;}TcIA)- zUK0*&%nNC`J)@O+Hu;cMsy#dDPy-{@BUaVFwT_S$6m^SwY;_!InbuIqZKE<3gw?`5 z-N^4B7bCObi(N|y*eIUPDhJWc(jGngR@C?z&A`$m<_LgY=ru*I6>@LwG`WP zuNWtR#H}LKHLxm6-0D+@p?A0)Ss27bs6c|3GxY132OHYYMxDg=nnvBi{?d7}V z40Jx4sS_eLC7gKkmRw?kOFO|{!5B7f0UKpXC{V(tbiBZKW;3A-s55D3&|9QYUfw<7+Q7L!F>w50w@_^QMIzL>J8I?4(G*(-FEYXm*?))*Fga zD2FD6e*@qq5J_-n8KvRxa2Hm6z7^?6Rk;Q|tgooRP9fu=%&@qH~B0#s={K3#G zwC?)83J;ba*;*?U!Ib@?qy);f_D1M>S%0y#*8K`DxN?0wFd4b*VazHo1rzl zfYDtW2WBe0!Fn&DbeoJI$8r_9Pmqcrao!VOlw7mv_Rs3~^S9ihp_qnzZ;zCmUmFz( zbLB8IjwzC*?WdVLHphL5v5I%cXGAF0$wQ8vSfjc`Ml!4Sw|~=y`J0ntR*#p8d095P zc$IG^gy(;$7eRiGWUzNi(T`Xm>X>)A1 zG>=yBCi+j+{q^-_>lrL9xI^_8$g;NdFX(fmzL9IRpb?xxpnMqP*4qQ#E>hKY4$ff3 zVY?nX#@+8et7;7jI`06W!>}@i@XEqFQg|G{mo}jvjqp$(1&pIRxgiwis+3kJt=CMSlr?#o<%flVGt@L?4^K!&9MKQ8* zAU(o(Ma$2A<=>bA*uxozoQsoJ-(`37&DRo}u(7N4Wwj9WdAq&@344MZVc&o!%wap( zZaY3=9R8Ukku!lM6%TI_AG_z7>*8|y(=J-XGwJDZj^u06pITA-vbBJxGui5a_JuN!Q#zDAhQ)xd?h6|qc>Jhbj>h#@ z1XY<W zFcM;OV2IRA=LgxE1VC+4Qn=2S*uCW6&Zo;PX$Lq?k|?rkDhi4Efk8-_^`uEk`gW>+ zg|xl#a6SL$B-zcqb1LHbj+jf@_DEa=vGN8&K86;CEn}}FbWHA77?guWngsG3>(Mm} zPM}|5&HYPl1Tk74>qjXQ*@g+!Pzc_7;hLf@c0U}Fg3YlxX;Ny}YxeR1Cxn;_bjuz( zv%01a6zGi!x%#oxNV4ToEh#v)Y{$%ah{%LW%T`RYM6J^hf+d2_4Lc0gOoj(- zHG!wRF?)1pB&VXapbv+i#>%Ya63#esAKDG2Q%YX9Jd@1oAr3q=1lx4Y;_?S%*)3~} zdv^&?cH9J@BGSh2mRGllNZA;wFf++pp|JYowyBb9tV$B8(LO06B=3kgPNdXK<6 zWGb@_GQe#!9l^pB!9^+emcS-4I9Rn}qGN({tBpf-O%{YTqgn+=6Eh|@6oCrgTl2I~yIFH$U7eijhw9E(1JVaxBLIqI z`9>8V9LN$ZlJ%xH6&sK5+wB~?uE6tLLew@;J)lQFm;TcW8zDXjKhMjoG7N40ZLYRqjr!^(p#@@`J}?8<&DV^~*uxG7+D<3m)+OmoCQ|I7lx_#nTk=%%q8zHxzSXoK_SkuI36b`d$ zxWi#?F9yglJvY%h;IgX|6ocSb6^67e>^eKcuBghLFcuCYgT89#=mWPDQg4njv~_Fj+|E{qeO)Sk7%Jv|tS^$M{XP4dv$2W1DO| zH)8UIU#Naa!49|A*y`x^b`$O_@z*7FULTVjl0x=lA3=C9T|SlKzfT5b$9B>)&-JoI z2JPZEeXunLn+hK4tn#2*o{ivDile3(iigN^NuYgmDlyy5QqX4~l6C7kB^_+ZYD;gd zitWy!(ACYf1h*e5kEU*t7MrfOSJa$w*Mm|bPn_C_AcFFngyEjtw>HSQcE~i2;9_yP zZL4T-lY^#_yySXuwMbr{9nyV{ctTzoEg@+!XV+1EhDY7A0k zMzg+Xexq;7hI}{*3)v=`y%_QTQlg^E<_brUJFp=-w+mYir%pXvs_5b{pB(#s5mzLw z$Z8c9MJ{kGJo<;MENxIjwLB6COh`0%G;@);60Ofhxu5XAEJv4~<%d`9N~%_$!>DKd zGf0ayw8sj?8x~&CY9|{|xC=>M^cO?PiOTM8OAGZBDnais9q8bLKqH;87=52mvh+d% zCq8K6X9u79U4y6i))>c{RC%%HRbqtt--2+m zPKXEKU+6gS=MR3Qe-;3H?MvuZtj#UrA_;E&1%kfwsc%|&%x~!Tjj#|zTU(3M*{flx z!dYVv>}^wl5lEaXuH4xfus({iU?1aA_0j})mOZFX77}DJISaL3zzOXJV=1yrn*;yg zwBwx>gGDIeMjk(X!d}xW=a$w*DS5Q{(c_2foBCaG`yCUAn)8TrNjhMXummb$<4AVU zj^~y%@ZeHD#ClmGg!~PH1Ql`?QDm$m#e;Z6Qc3l_0%pbjCFrT2%Oy$>>7Rp-J_>iC zep3saHMas5!qZMGi8?|tBucR=!vpLs$8nhHVZz~$n<*=Lz&B_JWsc@T2M zoh0WcHY{JnY>~{lBtc%=nQq(nl$(4qexR+GeZ2bU{W0YyS06d1q0h@x4xS%A30&vv z6AzgSS!zG|a%m*xd_UwlYdv`#;)HJ1l<=ZjxLu@L9F5ji%&ghtXWT+Bp;)r-;2S*- zVP3p(>kYjJa#pgUGelVkxZMJ<-@*$9pXRN1^tJ)DU$ug;>v5&n)b=AT8YdFgZ|W6N z8p04rb#iU48>6Vy>!|7{OadaS{c5&#cCp`Iy=Ti7n@FzmGx#pLO?KzZKEjRm;#c(; z?bJI4=s98&J;J*fVo{MzVihc4-@rq$7KBzp8`x4|bOTb2N7h~HI%@FU@v@)(xBzgo+j4351Uwws1Yn7=^T{^VTTxSiFxdw&>CKDKW9tae z)c2W)n-@wN3a1jd1wZan0r!;Aue0hPd@N|k|INNEH*fN;6MdJeL^4CdSLdPo=9cZj~_SWYiNDAIIF~!mEBH~hRlMr zyX&XPy0XznTRAYrvwY*Gr(6-I-?`~C*MQK%NnyLA+`n?ks8l1mlC39NMCS!Ik>Q8o zI4$LGd+|Ed?h~6U!Z^FW7qC_YWMN|j%*UF|`TL_k;Ga9mMGNy)ooFM#n%Sf8OKETY zyLdmC--SIPAJKA_{)%2hIyVsDco)3JWZ zw6gV098e)oCdk^S2^i+bJDGR{4f0%(upQCZmY_C{RL{RA5Fzzyw3Ro&y5I*&F!)d} z60KLb`D+2(g|Hp2NWqK?=OyboT}3QGhi2;YNh;wmvNq4S%LS80scgOZ<%5-__w|lc zqfdmG9WX5r=oGWJpE13OAIIJ4Y5D&xt2PBA+e|d&j$wq{UcD=9t~8#z<3-4IFCR>-Moqg6b+v{S1E*b6SuOBM;9_<|%pZyzN7ff%W_ zGFqDzP0E3mTtAL|zKTQqlV4Za^iU0BneL75(|{))kLheKZwS-YL$ zvZP#6=F(5>Lw>-NDeLyl?wOP;t zdkmm?FikeP{?KkrfR;XYPMPBA;@CQ(Lc*=J#Z%{q7~rB{u&}>QAj;UwaWJkT04jyaD5BGkQ3IItC^otyw`Zq4?ZoY)W+TORE1ZI~tzi=8I=fC}c*`B`QCuFlk|#yUsqEbE3FD{HT(O9Mgqih=`7lXajH(yY%FEu!fN!7X?O!r&kA~D_3rrP26%W z3VOiM<>9{XYRM~fkq?0qBGipQEJ7?CKYt`Z6v0O^e&O*rwG{$79K#73SXyx)SC_o?dL<1|M8yYn_V zDv)`u76E_56J!(9u22ql6W5xys0ROW*SUzwr6((6YiTay)1p!?J%~F>vgCZpV;#qm zuM!2P-kqX?1ZnIYr&pIKpZcL1<}<8OJ{#*Z-IP^ zXTSf$7yd6jL?6}t|7|cNz!9E%yhe1<=3VNfk^y1!TyCL;+bEGv<37zfAxveflCKu) zxRj8PUOLMu5-EK8RS%hgx)|l2P}eexT17sr6PZ#y2)WnEQ~5GZF<`=%*EcylG|fL0 z6Sf)MuyJn4FS?A-c>=(&3vA2u5+4)p4O=J0yAC~+l}nzFZ*k!S$8_{XFBL~!KqnqQ z&PcK|eV;YMR6EF*3#THXFY*aZ4%9=@{O#9r_0gss(Dj4Gjk~@EipWPtMDOoS7z`V6 z!cAv35e4(`w#bAY)?e}4aM*^<6DH(Lut@iGVnVI^dok--{@P2&;g{p9wxUT@LQw9p*)9T>I zrP{Ac>K;+tt=$aELnTLc`7S0_&Yk-B-T^8lM!v&HH5X6(3o%>$_3cy>IP8SM@-B!L zj^L>)U|%#^l9aO58Mzzc8Ph5edE>xsD14|R8~8rP$O!P!$op8y7p|zJYSo5<=?_W$ zJ=}pi&<2r!OUHdN^S;kIo))3kupWMZBkXu5lYbJe#R||LTknc~?6Ze(*k?<&Brt4~ z0=+7FOppxM<7;d|drT!MC3dJZ52bXRpM~vMXtDGAuFjH=!6vs7;qO|&>cz?RdECgc zGR^bJv62oy>r+3Kiy^f#JXDE7)S)BNTLCi)!*Xt&gQcR-+)u^k+)3%RB5^p84sE&P`|y?Z=XF zcHw~Rp+r?yN1e^nw}%vZi=B!|gt~9bpm^pz#epK&9uMEK69sf>b61>s1sfdVlA0YB zuvLlmHz~s29!};aj(9&TiG+LcpMY<3W8Ax$pMArc(v4+$Ig3lh0>|N|0KF9MEI8fV$ zFnHi5FaeLW5e{|ha(nMI(RsKBeEwl5$<3pylg#wtQGNF*lP`Wo6x?4`Ede9hvUUYY zkw5jZ&~@mK?FkE%#b`fC01_vac*h-)nZ`2vavCUB!SC9(ps-4mLzG-qjAeZ;Q`E6X zB>&>$mJ-cW%8YXe|9i4VElt0cMEd zZTHk;q`IRtiVq%)^$vE=5C2O4tR^Jz+k=3T;9(oZ_5^=Gs*_zuFw!M98Lb#~_6lwi ztV{4);B^w@hu_!3`M7_Yy~P#krw8%C`XB8^hD5R`?bOHTFlF-e)x9w+lpXX;e~D$; z)kCYtnbxR$0I*x{gM$$3bMk2(sFg?SPwrc2SZZ3jxwE!=;58{AZjiKaiwEKv+3|=A z8L&bI>A7_sQZ#EPc`klrwoGMc_f(X6n z=@EY(BkNm(rFP{!memqaI$wf#MqOPOfb(9s;w$t+XI>%u_wtu@oG246z-Pa|k8+0f z$BOqwgvK9HGWIzB&JcI4`4a8Yl$QexK+@n(_37jVV0@`_*1nOn?U5oCtOc9T@DS#` z@&RswaBx*mX^r>oZpNUt(6V=Kg1_ZJf~ZkraYc|jS#A*>6uwe@;p`^KMaHb}kA5of zF#WmFZDXCPK3t3?1kb-@8@QAKo-bfKd&JC#i+X?GIbZyj;?6t9*HG~Q4|f*}?%Xd~ zTed!C;>y*>pS)$euM}vbKD!>1km&c}1eL69J0;oHzxS{7s%p%Zu{&DTb=@A6Ix0eH z+Hu(q<}WB*p{K9iFD`vkCu(Aq`SmC~QC+znCSjnWl!d$1_=??gL>*+9;;I;e3Ff55^>`9Ip9f{VZGX5KuETT6<+xqdNNV_z4;Wq< zpDbDGE-5Q83)6{p>0VOh{N!cNv6NY@zH!sBYST(UHo&Z{>A{!-tgl)cAAnic4$LW30CO7chRm7>hjGaGeMYxk&^WN%WIoXo9(Txa16Fk0_z z*}|ecI7|oH9Q{E!7dcVz9$I%44P+mvj>K-Ff}1@hRd?k4)sMZQSn-@K_N+wsU{h64 zFVJs-^_Cg7M?x1W6jv^830T`H+k!O)FX{rfvEaHrWVnN<4+kHvpKGF+_AXH5jC$w< z^NHNE!?9mUKE3ajjrF_hoA!ZPTIloohT^STU(vs6Evcd(dTUpcgY^IGvRrlmOj@`{ z(u%WD>L-gSmC>^Yim%J(4fcQpsj@LEHz!__xD--ey`vg#eza-5lXdC-6`~6#Cx^S= zaByTjd?FNub`wk&4yP$ISq@4ofws$wuiEnjuZ97omBFmZ4HkXQGU_?1(x)BF0-TON zFpa)P+=5*kqJ$idXP#D4!>t%vbzk6!BfO6u1_ilybxwph5@J)p8M|6LFt-cq5ywoo zmKcdM_G^*7Oo^Y`8i!Q<-gou>o_-$#LdpB0qK=6W{5{H z#bnQ3`UC=|KjEKHi2f=6gpKuI^Y0J&_pkUT6r+itiU0j0{>kt18zo1-^T+)AbNMHOqm;nFZxcXxM@&z~*3A zn+_tkN%Mq2_W$7DA6l>Z^MB{xpXZOAUm=`I?~?ZZnO-5IX^WXZfAE*_?f1Z42R81#F@}av@7SXXKq}fWp>+1J zf&A@;eg!f#ARsu!N#@QliG2>?z#`5`M?j{@F7tVYWGC|An#ar>rF!&z#g!{)1K~G- z^(v=_3EeqE=oUdmWZKoX;uqevQv^J{C^=juOkQ~eu_@1)02?(FZEUL-vK6qKL>Kp` z7h}i8!e@ekViJnNJi8~Z9Tvavkp(iewy|yMiXvhjKf&86uZ?pQ-ZhC?XlI2nw38G! zph+*{QE>oqmfEXlSuxHkZgNi27YXv3NCm=@MA;}iFM5Pbk|}Nd7OGhsL$&~@sCODg zjQdY_cd*oj-rLrsgg35UNasRs*b1p3fQ&+t6!;Bfc*G)4~f8}?c^bsGUk z$Gd^dN;y|CL7aT9#zT)-)}}PO`}EkS`xrfz+Y0yQ=1(aurW7l2dO(qT+xca{T zZT%_Jym<3^fTcy>b%mXPi(~D@ZyM3`_NfGlV_cJqMR3gK0+`M0DsColf=C&y3^A%U zG4ySSa8)C7q+9ky?{xPW9xK2O+EQUe=tw06Z`if7C+uP=0C~h1cakA?e*1Y|8O)lp8|)m z)Ghz*|BYk!N7^_Th9&XOwmO;G(JnB1Xth3U&Ae6s(YyL50@%Vy73ITdsEc0?_3!_U zUN?YoUl=iS(g^;xPJ$;mEhs(gh@s-y7RR?Ae-+7c9=#~BByB}V5>n_Wz0JhIpWVG! z=*gJ$jo-UVusRWE*<8$n{~&_yue1bH+n|l+_uC|jzdT788>s}&@J+zxl+wxHHSMJ) z8!7_a4G}h6rhaTmY}3S2&AtyiT1wM(kZse%hU#~TGIo|3A*$rU)P@xEUYM#*nXA?p z_(3STA>!S-y2K*{NuVF$F2b0x57h$HWoDg9QYmZ8m##=%NvyR&5cuDzWaLK5PVe#V zx%dEmixT^Y6RS6`WEs&w!f{cJjS>xvr?#fVIPpWsda6HQUI*t5&c+cS5Vzvn1wy;D z%-UUzPa?p>(KU5x1lYy$8olxl6$o%;+m7xnL7_sIy!oXp0ev^&>rZkKcchx+v4nS_ zyz{NwZ|H?{lPxr5qJJH2UmO=X1k)3SwVSZ4+oSO@0MHDfL*hb!bu>lShMUZwb528y z2D?!-WIF(wF*AJZxv@(Eb4#K; zV%awjX&!(yeL11Ee~)m%cl05>!!^bYN#+fQdrz2Aql-XO5>JT@E%jc>)3Q0>pz^t) zIF8ulwpUp7N&;yuWtGMQ1&>2MlKw*Ul(xlhm|6r>B9-oCOczV572V7FEoYc-j*_HJ zYq?C7fI)ph2mls|oEaBVvP;HY^@q$m#Ia`{#4dmS^3wIypWmjR_MuuGFD@==drPz? zQ~iMjTkfMZ02>l@(pEJ@DZsj98X#COk%uLQ*PTV{-p3w`NgU!H2dE{r$A_l3H^Hrp ze(zd|gokYih+%?X6{W?Tk1P$U(8PJsOTN@RuFWEVw1~y@r4k$pN4Qk$Gl0Q<%t@g` zQsH7wsOE4cv`8U1$d&F?I~vd*OOLX~CFd=x(Ry9%yBoKaT#JswTbHw)@2zm}XUv_i zb?bcbj%xmc2 zoS2+kq8e7;7nnF=I;#^A7ojNvIw=V2LokL{?HZJywp5VIm!pj-W*ioUJr4S6f*+nR z)jq%o%y(!t@~j70*!BpeIKPrT}0m|2{!$U@hZN-3kEudWuyORKB;Hx4;$E%v&v zsK@KTQS`S4CkGF7C45P(CXB-vGe51ue`_JUeR)zyXTvDrS@%1feUx?YNfOiv*{vEmrKm9><%PcA!$#`liL?24208JW&j!N zU8`Xu<|MaEPXnc&z{Jy2^Mq9FJJ$^*xm;+VZPk##>0SSTWf$KM9*GT!-k%{x%ZH#^ z%|##{PvxuASF=HJy?^>SIfMrQ=b{THp(?=v9~%hT%sjz0D5J=;sfnOnxQ0k3(Zz+^ z!~HR&zNhHVr@l(4u@tLvhP#ZbEFRw*Yl~Hr34e*Cz#=w7d=1c+ z_95BKwgFw#RTR@YfIpkye+Mvt7d~14`U)7oQ!1fja%-}5g5{1w9(5;D#7c>hSj&<% z$Qsa(wUmJHn0m#*=v9Bpja}yjZ11CdLxf;m?=KUb(d21+B%_WTaOv9+77~Du{zzeM zx!IMig$Q?x{}tQ!(v?4P@}Vm*qxK$A-hW3QGGK4YGxK=$kAxS5Z(RDI_L72WuaP8s z-z|Wyu@L;Y$5~?McKtCCK3}M!>-nk&>@{_{Q3>IidGH9~A>ZslEfuju5?KHNSg_K0 za^|?}h3Hl$s#-k1c-2On{H-{d2*OariwJ`a)&!3su}1yW8v{v`eQpENnvw0+R*Gy` z<0{-f?)0gK5FT19Bq9x%!u>UXebEiQ*A$4+A3dDV-luU)m&XHHV5uU9y%D~LgeuhL z5loam)4upQxiC#E%xq8ex)~3+%(&7pvwf&P6$|0x}^q+5)6=SL1Pns0|<#J_Lze zJMN{^kwt1t1sC{l{RB_8*HQa-+IsPfi*sK7@zZbpM8BSS_m}jK<`dz5_U6rUfMca5 zA!f}VoJh6aNhf(lptM7IU;11;BG6n#-fds_4eZW6x50r6==k}5VoDLyb)uu zMqyn^hKYW{I17se?~nW-i%fqk9#2h=C5}(Fcl?k5D54yManbYfw4POx*zS`gCV>xa zegE`o^Px%Z;vJ7mQgb6ggIz9AjX};*Z3p-YA!j(^#M4NLY1v>!8o=Vk48tf)MFf{E)m7GJUUI$ zJ~zHfF%z{nILr4iywSk?M`)OcrbRQ-G3gEg;=e$DTuj%J^5`9ai{v;v-ylAc9DCn( zifQ-ZBrg>1^K29KP6=If3P!+DeexZC6sj-c9r z;v&iSbrJm_{2<&gHlsL_ju=eOI%!}UK0We>l}jJ2*dp)4)i#kr)GpD>MN(N^^b#CJoQ}Pf zU)tPQSzCGdp^lqG1o9$%Fu9Hp4TYviQpW&vP}WOd(Oaz8ukRTSe?+DJ)CX}RL>HlN zR8ar>+_gghitsJ^nJW<_WU4J*v6;n4Mt8FrU5B~`1xh~^Z@+GC+!n|Mukc~HVG0p3 za&#*j=C5$1{eS+a53Lu((sLtl9^xqSnM?}d<+(a`t+82PA@6!UcBbuI>KytZH%qfm zp_!5f*b?at0rN4HUXS`lQb}2eirCcGBa|YewvXfifh6H*Yg@___40aNfZTS&KvvImKM~kkgRoOl-(CMF z^iC5g_z{b-pX@B6^^WSRS>5;$^#Ki{pCxFMmAq=*^$8mT-WHavgF|{LKPMlS#e=)n z(q`f5!8JA8^|?0|*on9e67Qm0RuXjw%R{}!~ zl*bwlqn0Sv`Uy<;ZmtG#bteB>7M8pM|9eKLuiP*Lz$}4!nZI7Z;RXk#p@(UgVd|G5U#Khk$}B z1n`FY{H#bQ%ms^NO-x+BFCMKt)fZReCF-Nv-xTliHC3h3+V=eud9VImocaFl{olX- z>z{r5Kl1fcTj-2i^pYSxC;}J4l`1bw;dN3mjA9!*A&=NkAP7{#2ie zqQVCtD-Qeb;k%QS>`E;B49E?=7!Nxa+nH2h+<51kd3al*(oxCVYz{G_Bpbr92^F{i zH~Mk>!mOX68K}8z;49Ap>q*@#a&=t3HXCf7z!XrgLbM;72`prSq_INl^cFuQtTK@H zpjjo26%E+>L-cm*(3}u8=?-{DY*VA`dKeR^9bGZ7gbz(BM!KIdYKr><_#4^v^Sc zL8VWEO&x98o=UbO%h!GYg5(&xa`LHLV{?g*`sOMD?pR(F^Mk%K5oqeYWGbWR3t_&? zIZ3dK5F1N|S@rh}A^WiLsaGG3SC?&PG>PsmfRe-$Ojga@F+*1}W7wX+1gtZn`Oz*n zbxAWsvs>0S&64^*UVpTDZ*^taH!HfAta7^mc%JcQyYepO@`(6x#JW#6aqS>eMWfW) z+VqfE1dYg-15YP!D0YxB+*6}^J6=vg%N4jl{(SyU13ZFxtRGMM`?nWUnm&n zW7J~%Nw>^ZQBhvR&2ywY4m5A|7FLBjU=UHUxX`IsoUTAgVvDz0iujPHWb*_6CPs?; zQETBc53NYFblcm#^{rH0+S`Yl{RMl!2VVJ}#%HKl@k*bZyT`|pXs>tILK@{))#4>`bR-Uh zl!GK%tX<2w6kI0deMkZId$On^IQqra|92!`Z}||ET2|-!VARw%U=K&=b{)`U@=!8G zpO1H1;yy$uW0AsW;11SW%eY%pR*vyE=-=f$N1pzPze`|6_Pib_C`nRr%>~aos$We1 z?82%!zb_WPX7{t&v)`^*_qyJ5I2S+=9USiE)2)#jA{jEO-dXoh!*~|ibNE~s4|g3@ z^Q*zN4G}^*%WRo6OVg7av?*3kZO9S~9q$AtY#5W}yRW})`vPKQyqGL)?L&WjOgvRo z#ykvKo7TjDDzKj0SV>y9H{dCBLvbHYm^6I8JAmZ{n?i|$(1(ABgw$8#^|n{*=i=Sh z?dIMBAT!$O$qb}}3TVYzG)O$OQsm49XM0W2kL@F0kpuRY5JNL}c1vHnxJ&s!*HI;B z&DMH9aT|BwLO>lw#neXOC}DltV*=ZVyTTToKn?_Dp;v!N4a`q=Z%SS_hqxc7U`KZ$ z_Ht-t2pexQa1oZ0J*6B|2|ynRASu{@zX%9$1XCpXu?Uh_ndRNp^|4(JA}m^_Ozk$U z1<3+>P5Xp)ff#W8LqSEq{p+Hz=oQWK>f&0|LN2A4p8i19ENabm(hNw__FxgHdatd> z344Az0(PW#)q9lK^z{aNqB-a6U5bXbp3g}*X96h{>(eJ!Soy-!2%7B26i58Q|1AHj zPY}o=i1Z))u6``9C(}cF@qF@X=!ch621Fuk?~EN`X3?OsFcT%pPoiS$(ArhMhppw4 zOwD^H!Ie2+x#WQ|(KgWHF7k9cb(w%@A$$@ms<(4^1{+eai9jHswWj@vjo4aIyaQiR zQlNbb7>aZ-xsRz7SFm=mSlnE*p0jxZwavk^ofpeq&>BPVx(^UNgEVo(hNW8FT^z42 z>C<{h8n86TM*R#c<@rg39IFk~0pATfC}=U)P$){(CZ|Rwswt(mY)C0=4|*{NPzD`* zlfI_B4ZpAcS*0^Z|E?EAl-kKzk!9k*dxGwl8HU)r$4P|pW=&@Kzjo%ts6A%{vbHoI zbi*@^1SwFs?M{LDptjm4d__5|lj2g&tKTf1!qM-B$SjV>ivtLDz*AcrV1(q;sXa*i zs>F}<6K0d-J@|=R9Q*)w*c~Y+ue|LXuHGOUB#aLRj;7$OK&6{fTxKPJt5x=0l zD8)c{kI6YnF*vYU6x(gICEWdbZ6|>VB5XSuiAHuPE?!Q|bRes>$c--?c!ddC*#t}W z`gDYYqLV0`n8MxdP(957FRI3Ig6aGFNlt+h+45y3am#Sx2w;O@(-U3qK#!#@)>7hC zJG)*?mJ|oLf~-ZoD@0AF7ZQoc8VfXsi8M(c+1MhmPuMkhrF<;jgNZqumI4X{>+OL$ z@{#o(5~{b(^JTsJXpyHoabZQui37%(r%YA+(rmCO={s|-3ftHx6lU2^+W?32gGdW8(#!$ z@e!=4+QwM{5ed*-_L7Z@zTS0zoH4turXmFs#j0Nl1`L#n-9{0=P9`d@b~GaWX#gno zFon?k#&UTv_^8tIv&~nbt-I%^FNzHXnlIci?w1eyZNz?2F^hZKn1W%VD=xJerPj zpbgSO4pg^FA?))Lq<{LwissK`HH@@kBP!dg;GMl zXyLQQVeO|fs*b}o@RW;KH#z*W@CJ}?1o&0-2zxG6+HvmN5cJ{=_Qq7Rn3dv+MREJ} zcl0OxllE6FBJESl5t@T35*{*nO*pG+EJ^GXy$`%9zyn)94a#|D6yX!N2)8&}gNIma z6ZJX_F220ft071qyMQ{z!Wk1wdKOZ8VMK<{)Tcu@U{CUv=&pZ;oRlD63XK*+b@LxR zk<_RdXEMFzKlhmPVw85!WA^0o&TF^)B}b@QhpwXG6NLbT+4C-~Nz^1vT`A~_=g58( z*pPbxkglIc@DGHxmZ*Z%Ak=}C8@x$1WxXe^tD~I~z4lR3I{P?7F))Q2%;*29)EQ=> zSo?)4N-7Gwuo26wgDdR-Dv;geFQ94Lm z6IeLOFwBL0yaz<7wS$dv?AV1R{uY;{I?8%gOUaL}NRlD4>pXMHCx_|**(uXporzZL zQv;-%JW$7&1Je_bhQ6T>0-oKPamO(K?ty%^$0oWb+j!09#`=@H4_B-Mk2e5_y7RDD zf3oQvqx|5+7isHm6#a3K1A?xJk>Afe?AwV$Wez5+vk|IcrmL(()%C_~L&5=#i9Wa5 zL^ZP~mN{hy+B1|2+n$4YW)6sa7BMXeZyjL_cPxQVnIltSM6d}TL}#zSjV{7b-&%4) zm;zBPZA3AUme|GG>dM%zq7Jj;Ik$jG*ft!zf;=||gFX!}b@sKA#J{`2?>D6gKW=aa7E_P*5D=Y_8p& zAPUm>alwNuH$D51I{O-#OF1kV7mPUN``JYk8F#D8KA{!WR^7G(M~LcizW>m8!6ir5 za1so|)y}R$_{SCJc~+sJbN(K2EkxVc3(eZa0oE{N_$z6fE;Ovz2XjrlC!7!D1VO-u zaa*U3t;<`_xM8Hl?>1W$Y9)>Son22~hjC75XkA-Z^=%06=KB*ncFEq&eUn(rd{XUR zJ-UL{PG`}l zjkfsO{HRg=L!U4(_xG4znUhV^8!%Y2g39I@ws<~E(aHvF@`l&tw(Sy%qD-*MmN{;) zFh#g#HnD=P4T-4W)c2IQNm)JAUKU$b(1lHb?$~^cE=l?H;AqO`#4~5x<1m^jGK@sA zKSu?!rM32uQOSJ2xGSEUT~m&I`)A!G-^vE^Y=Xtbh0HFHg3ngaQKvYvlUcFGQ}lVZ zG(**;Vc6{Yw~B9(N46tS=&K8Md}VoM^uem(Q7*A6Z@t03cKUd%BW)%Nr;>1*#?L#{ z&<`cg2aCg|HcyPkF`O-;!c!RC>YZ2U+l(iW&tK|l8-1-}`d}8J5$WwLtwAT3GtN+N z`*`(X$UH;JcA469Nrjd-a`lcb(zV0&wVF0oG>&S{9?ykp*$rGpT&OmWJCb$v-WJ~a zVS!rt8ZbhwHb1`PoEd2Op7yv%Go}78i_Cw8a$~2>X>+v)-fCR8$+ru$vxFGy%yZe} zqP_pv$vVbx3g2)tVCrd^HFs&dEhX}A=1cfmtDB*hGq9HyXX1& z&(B{LymRaL5Hx&5;vsUKzGeZQ5K7gCJ+6!kR(I~%ZBssM9?%ZA7CVh%sL$kP>@y)v zr&MD~q1){4eFB~8W^X$y*yTamxK8tY5p<)F5kJQ1%+SyjHXFcQWCzCV!b3h~Vc>IdWNbQ%#5f5U-I0rcY^mB3IX7W&7;9upkf(Tg$T>&@AKrUsczjurjAG!e)|; z&nd%bLR%#f^by}+->mM#el523m@03`*7Z7925IjxQ|}JKbun(i;5?4OAkG<1=C=Aq z)Q*~gF&~G<_70sdQP3h-oX>GBt+JMGS8J`adzw5$RS+f5S?5;J?8WMMrAf~HubsnDH=WLA4*Z& z70wSygF^+WKnsJc!VVnC+ag-0=_md zJKB(@V=T+I^z(RK1c`+Fif{2Pfe{FXIZ#*pY;hnI>L>Aq@e%PxFeWhg2vXOh|9o&g`qh##|ab}qffu4;sJ27)eu zrdGU{xc;Km`%rro&EhMOG{(-D*3!@%dU&AS*Bg@RhVUVGoabB8XooLMZoQRj6{&^B zEF0QpDY1jXr#weHg|T4v+Vf;vm261gW7s=`%@1luA-#icuw@}lG7Jt z7CAA_gC_TV%X1TF2GXn>&EZzliend5u%T7yFJk^UDB3Um_gT5`H>wkMz&_sMg>8@t z(dx|1#BD>hAu*tieZV%KLdmz%bCDZ3GViS1%*?{qmEF0>{tEK+3w#MDiO74oitymL z&?(mU;f!veCA;hz;?B+!$x=EiEUyq)8jYltzi+&Ayc&FIk?$AeN+bXXl9c07UcwacKg(`2YX? ze}Mr{rF=C!ZY&pe;ik?pKAP{WV7CaohI4&(lUUR~^~K`24Cm51D8UyhvAcsED$o_D zdZ$eatfyLfPpjs`HzM(!&Azx$%bLP}5U^I~9gP!|=XeCt<> z@QQC;I%0%t8OLF|xEoSH!;2#cK3b2nar9tPw1?NQH)QiRAcs33FgRqoTrCotBmFq< z1+i4kA#hA)5&JR?MKf8xk((@ht8u^2?3uaFJ+}0*G(5IP-?NCsQ_VWZyvTemzH_LH ze6v^R%MIb>e6cm#A?4DXY!kGwm%icaix)@l&%Yq7+UauQ3Bq+IS#T*`(pS2umu{$C04k2+Y7sgY(_-Zy~_C64P&Rll)2Z1#c;Oz z2~V+=l5|nWu0cf|CkNAj!2D4BMSKHG{ibntI(D9|W+ROZmD=?fi^i8ll$vMZd=%F& zwJbWvPHNBWa7=1XqIitW$PH~Sw?tal5Et1@! z%@eb|0n*@AvBr%C;GG*#ZpXJG4+=*RqW0E24%2RAaV+ke$HmPpZZ?>VWx&^gD{KRc zgx1qDwdfB2h{)}?*?!@D`g%sZ`C!!{s50H1 zd;aZ+Y@3n9396wDYHHwDtXW%6cFGD84cz+d8Fs2zH49YMopFpH!)Tmichr051*C>L zv)f3j&Cfn_-iTk0jv|14N&4%{)|pwf0k6tv%Pp{sh!&|DzxK^oT6Mi=sXFTMnlsoibL7?y6>%Yz2ZcK3nVX+^$Q zh`*DTO#Y=(Z`&LV=Ayl6*{ue3xC`(HOMzHH6zNaF+fkWaAw$n2b5o6M(BGBpwpGr7)(X0w#VuRpSDwmP|x zIG#ZQgvK(+(E?K#g?mn1l@38433@?6Th5VC5#O914A?E!n}ya_ zrSBU~i-%`w{HG~0mZu8{vjZ&L2V@V>P$zRr*JJ~?TqY30Cpl;9Upe)#`ZYd zr^{0yv<2tPwzp_B!j@u%Y&htykbq*o-C)~P(RRTmw*16U>qAYocAuB-tql=ObvO-r z3G4oVhx|cY#uNI@Jta7-g@-XSTNMZngz4U>$VqDZOdHD;yXfBt&HKzYiJqtH_XVINjR}lGNWvELb6-MYx}_{Kq+>l*f7>*@h}dK_}uVA zLwy>D6kA#y8cU-G4H!9~%P5~#J$&H6!TkouuLG7wG_ox}ctA+(YG;Y!nQWZGO<~J= ztZ%ZkG6>is=BsR*MoU!l1{xdJXe+NT%Nd`t^4p^R9d%3~uDhGrdZ(b|sb7}Hp~rC! zr?W7iHP{2$$I1w!MiyXwG9>i2IMlxT<7?->Lg*6N8-@grUmd@WEVCMx$wf<%M=~8T z5rwxFrP5{8hyIRrJZMA3J@l!i@K7x`nARb#uAkhc1(6w-pB!#(fRj$m>9iq4@M;pPgVT_ zno0wP?c8VQ=$=$P5ix)>WMrATK*wK@?kkb?v!&HkQeYJr=YxIwVRO?(d|njharQ}{ zNC3D4bKoKjGuz)`jq7vU4GUd-m~TKs524%Dh#zjjiN`s-IZBrF&_$*bU z$hsluTc87S4g!v)KUezrRH+>18WeiRU`1;`TYFr1o{?AWKw5^6L$+VeDTX#n%;Hd8 zw-R-9u7TtR-!Oejqi8n1q5c(o9tOA2h+eKpj-6p|nVWauKGPa9OJQ+_`5OC@9Zg-b z%igevwjOBI9dTHC*|Uzj9=LDF1mNol#uR(6HZ*+|+Towd*~e%kMVmm-K=(em$cNt2v4IL!5hXToG7daaLF9}p z*K^048RIlN!<6eF-M)c2Du0m7uwOF*xrz@(R0T?1O`{GRv9PoJfXu=_XxwYPh$Z?~!_`*m}^p08@_NUf_G~x(Pk%OYLNFl`h=sm7=d5 zO_ukTe>;i+WX?h@8!;Q?tT}dfUFavwyDf_>^_ewE9)e*gha<_OG_K}kS(|s3_`tZ- zt&kH>s?3?H$cHGho5c9`6`nCsWYMPV!wvXxWtYC{zHs~`W(JJ&jXSQ#3cc|{ueG<_ z?bPZ6tF5qB)x5A9_uhv|S#7tZWuEi-Jq9;6`Wg#+3>w^TP^i8CfYAd+@{QsFf$#i$ZE0=Su3bm_`|o`oF0s&UrUx4y zN%XP!DYdy|yH*|oZI1(R#+)xz$1e?)Fi2{D#TVsdid?0$k*>)u7YXTVGWt;ThiSi& z>_X_oS{w&4S)kSNuFu*rQ|H(xbTiV?RWNEzXe$1eZ2txn=XraeqauyWRsf}qI`ff) zZcz*ex3f4KS!3(-x{;pc2rLd6kX*HX*rU%4>Jx^9PhH5zF6jI^Tfi!+^;0Kxqju{% zYIL7rqcgR+7RsbC@X|=-=&&%Tcs!*zfU`ZZIhtxwuomjs&<SBgz z`6&40u~7%Zk~A(3Q;y3}Jj(d!)r45TZtiRK#bJkD>@jkm0$d`lx0R7Imth{(dUv%p zHmfPEPTQ<7g}y+QT!S&bIl9l)jFi#1)w!v5fL&~Y));Ac@8&6U$8(G*&O7;MM%o`R zTi-5=tbl!LvidG@XBd{}IL|N?*y#zMmha3bH$yh>g%r@xb#ilDGk{vVKed$=uo8*K z-s5GBxtEXeZZDpHbRD)rn8n14B9wH)^G0xN*t^~plQkPJ~)PD$T z{4rS-#sycMzsg*qDGXn6XU05=r5Z@g?}+(M@yWC1=s#)Ro}p$qLD)J3ZZdu1*1 zbMpoBl#9(7HGH>W{o_;~ih`FprrCxo%zR2*B-Pb3QKeXBTP9Vz>=ByMy~mcl!YJ3) zXZMr)M4iRA{qiuvxiPUvoLRGDqds48pr&vbBYlhzAsJRQ+D_;8zL18(&3QA_xbSjh zP#p5Q%*7=`IIeOTJJZSRgX0cMRorCYlOi}#Vz9$?F5>0jmWCc%haTZbI3;bEIekoc zpYBf$`B3IDVukkC^96<|OiMUDww^pF`D?!d&uy1AGGkcP_5VED=f8pw5LQ!A)8p`KkA%Q4e}tg2{$&3L>$R%dx)dWw_0!@$;1T=9Nz|Hgl|f&bN8^PlmQWQk#{*&7+x%DpfS;Zq1I!w9oalI_0a`b2NA+|-sXK0`ZJOl(bwA4E#3VdDh% zI0TZ!SHX2Y!}EO`YOXihNk0C5}ov7TxsTcx*sA^`>-8~b5`Gepr`r zVDXjei!0Fwhs}l7uhi)_OR@gQG_W&Z-@)=1x?QN>gBV|lITB|kzPdicM(r_RB)2U@ zMX$PkwYHU<8C~XVS3tz&VrU_L^B5#WSQ9L=w^!TU?2N!VynJtu{~# z$?0<%{JBoB9?iO}0^#$S5GqlKfeE8o8rs~_y2j1-&+bOA7Kh>>acDI@f^gF?7j;WA z^cl$mze{EIBb&$e67;KfT*9<-97#2`isGq{IwLn?g{RjvvU~GTD*T1kF|f$8W365sg<=-@E9Kbag_ znSHxB^sJ2~H^gA-A$e`;9-iL4QIbJ`{7}SQbGlimFd(&r)&cX%sacjIdKS2jb~>yU+o*L=&2! zb=pUZYX_>dFV<#!23)cU$*!c&Tt~Xy)6AC?eN3VI77g9E4q>KFoPniu1PA!ylWov4 zdjowGx_94piypp^UKy(N5kjB+3+StxjOm2IZL^ms+=i-ZWgpPLZNq9G@1N=Mk^}Io zZ5O;s`QTA(@S(bkz`v@5-rl;y!-b@AV2WHGihH%smG3)XK$N}Phi^THqnEXa7X+@h zZ9|Q=xgPu39xDxQf_##%b!&>%51V_i!Ptmez8iogu$9GXeS}kwHh_GkqF~+8(MsXE z4;`@U0DjM8t`=&ESBVoXze^YzAmr5S`ZEQdXp|54$6E*d^-GhCb zz#`gNDklEcTds2bqx2|^;=*!1#~CV@t#>L%n$e!3C~h}Oo4=@sGc!!{#Vj7vZ*#*DXmPa(p;KP3u!SerPXOoQ@gY_txMab z?bDUh4(Tds$8^H2Bsbc1xmvcIO@S=@w~^v}d|y+KYO7rCSlRb-GQuZPRM$cIo!%4ry=l z@0jjHY9B&7rG3+WX@C9>pbZ1lotxH52c?74T}T^}Hd1rnZ(%HkAgb!_6C7op$n4Qi+mCB`urH7|SP9rV z(&X@_^>}x31g}o!rOAN}Zz|=hE8byfj&yCg-Qg1!;1j z4PkOonq1selO~tY!umA1G)*o`lgrcOiZr=0O|EJxrpeW5a!s0CYk}+1Ja(kNGVVFzqOq09PQffI88oDlNCbZr&R0v zoqU!ipQp(eHeO%qEnh(q$=7M}4d~yBh+S3STmQ=cHm#f{-=)d-5obT7$&X4+eo{k! zR=iCeO9{wmTHk6kx^UGAZFV(Qyfy(ljW!Eh9VOcV?SYjkwM6}O z9rQA2&aFap$Ak{MRTCP!PU==8(?h9SJ!$Gdgj>U!wI9?&Ua z>a|aMH&v&up6B&}&cFs_U2OPv8zv(3H`LEA32ex1MB1CF+n8)!39g{L+a!TP`Q216 z0&#c17hD55HcJ>8x4Hf8#&dUI^Mny`TM+62^h`7gv}?=Q7l_sM62`WK7;~+fFy-7HiD(Q2GVD`Qx2Kh7cp-tkR6`+kdy}~d*vCj>-vs98 z_Tzbf-~gZ*7(;U)kgO=Vp;M8<=Bpa|s=$ z3Pr2Xv^(71c0>ZFXE^2&bEGgz6OT$@YVK&^!yQBXeBf9cK{75N@U2k0&|<*!aU>rP zoB*7t)=}&v!i#{DMHucBLZeM)ZsF-x;5OiP>p&+$cO>wBcPF8{ z)a;1zyNS3bfr-0&{d{!y5pzF?d?IxZ@Ut{^4;otCLu%&i)IH221NI0%i&G!#9;FaO zDw=SQk?>^d9=BINVKne$f@%Q2cTbW2H1Ld3)U$-11D0CWe-l~;JP#}fUNE%0Na!U% zHNOnJ0=#Nu{u-gzfj59Rfwur&%2Wc|Z`)YDLsXg3nt%R}jbFXJ{9V%C1KtNduvdLZ z=p*1`;1gg4@Tt}FnUC4RkLc$-ePK0yN$4wk66^Y!&^N%h3CdQB*xfvh&VPy0#Q4sp z==X$v0Dc61GJd(lgd~i`*!0gvRN$IU{6d~zEziV~LH);sg0(A~<>Dm!$@5D}5_OIzc#44@{CfU)U2)b2y zUd^6Yw->MB#5wAC&6=dFWlw7pTE~flu1jb=htzbP2-O4YtJ$uz^QhjyX&g3mpaj0q zh4dO>B6$Q+#QT>Ziiqp#)a*^Hxtr=QH8)tCxZ-By*hvVM>f$z6T{d4=BCVUXr@Q^# z!il^0Aa_rf?kUN#r3>#0P45U9xL!_J-HL2m149ytzHJC?OMBq#6K$ln3+>;YgdKq1 zfRMPOp_w;JiE5->6p|3ttn5R2U#C~}b4{I$qpgb4?fN?uVTN#kQ=0~oYiFRrc*!8j zqtl-1CE{S>S56Q-^m7-(?-12Ta~ny4Omd{fu;WA#RBHr%LRup&)4}k&`TW52vQ>nKfW9 zC*@;rDrwTNdpzvJb2gN|&9-$+Fqky9w zdYn5(Jz%ir6LT!E09Xhd=QJITxBi_F;!foEB!|$iM=XkH1;l{=N3 zr#Z+Et@L!lXIMRFT2sloJ_tLD=(B-yoMh{{MwREOh%mue(zV5gwDZYyfrTz4bP;ed za0zg!L$JBa2we_b;Za18?%W7o-%DMT7FSw%2p3ejtH^vcps~5eq0hK$30-Gd6uKVx zmr>jjLa<>9(dZj^xY7D}6QP@hS&`r|^yL;JZnYlVW*Kf3UAfzdy@N(Qf(#{im(x7H zo6tSR4DJ;(K<&McnERc?KaF+|@bn{+pkLU!he>(_KxWXSM+q^9Sc%T_ z%=s}Q9tWNPo&@>=Pg#?mCR8oW-9015;hyFBIbbPpChrxI{@Z9|8KLJj5NrYzCh=PXCsBr4 zY;Extl`n?*nA-C;iSO7P`wyXaf%iy$Q%!o`gvY{2KTMpxbciZ%IN|kx>7y!`|V(bF8aP zgM~n65DhuI?}4JB6*7dc{$Nxj<>^O-phVUD6F}`-Y2E66=HVBKujCC$vtM00MZ)ek z-X{Zs`(0cJ@}a`jRly(R|5LM$mNPHhUp(&w{0*#BhTX&^Wh@!Xz#Y_7Mp$}JIlmP^ zB~S(A%EWN<_P4-uYsq4nup_l(PZKO9Qme~EBQ=Di+SQh&^$6H9wLs79%8b{IqXF&9 zBt7-AmCMwN4un<#Is&VfsT-1ywd7olnAIt`5CK6wYm}LNN$WGFKP?7%YnH*G84q{> zgr- zBmK+7IJ=dJSh^Ftg=!fgJ*!8V)FgNc>m`b8 zZA;X4))J6JXSU~AWUvG60wEHIy@}cp*r|*qr|UzgFR^|3ox*QFeuc;WWy00~o(2NK z?#}!U0tN%S07L9Gjf92*!+_xyGs1>;*D@wG6gIL9vc;C0c1zkiKR4?Fa{V4j4Knj zA5UlkaA29pWWFyku}lq1i9U$3j22~NrI8c^lOKUG(pmt<2!u~I@}9!;R2$BN2^|6$ zeIkL?D28&nhLY?vNSawD)^%uWrdifXdOVxBIlx@tFvHj3gpRP*&LecBYN?MJln`+g zu}1^Pl$klr%_lsB-fCEV;M;e#$A!DbNatGOuLG_J z)c1e!yF`6Vjz-+_AU=8{zc<+%ZzgmLfF9^><@Yw=_A)KK?G#A0*)mcoXU%vkXdbPe{T|6#+cN)5D?}!jFhfA&y6h z;}zHhnN^RK!M_aOkE@`FoJyV~{1jPGM5vu1c-p4KGh!Z)^0OpASB4p#+Lqc7okvqy z3cG&`+f=Zu%#5$@d2(6}!tZh(Ua*Q@6t!tx{gU#zmq~cVnDncL1MXL3JUo}Y{?eL_g*K9$Aw;-qi zJ<6qW^dt_FqLMAkh4EhMjEeCZX)9ZizO`PXEty5gSH0R)Ge@eFm~Fx4ZBVVDoK`2N zVnIfG*q)L*7#4f08+2V)k-?oBeAkEAzCgcnNR77iC%j|1X5Rop1IuNT zCXcMkI}_219%)!+9J5 z>&wB!U0p4`BHzBDBP5kZy>DQm{^{6R<~0k9yT@I9Yp#hpaqx=$R;#J{j5)udnC$P z+_fe;>o~jfSUK7sY9pmbZSUB&02Rl zPiFvU0%sY<&o)MLj{Y(>=a!?(LEq<*z8JWIx()%(CwzfkOOw%vF68kd;CPZQ=J%3v z;z0YFrFK3z3Chr5( z^bpXBTk#bnKdz84x)Kli~;~Eo4RLe(X;aKAVz16iR$n_-f6kP

f=fb7B^@mRw4fOA-9!UIsjGEn7}V%lqRI_%{46l508Qo*%fjtkA~B zO*cb8xR)t_4kYd874rOG<$AN^l*}P#IFl~?u~NUw#Juf zSl_f(47Oo9iVEpcd6=pay;#*zPH5Ud&F#L9etnBdVzL7 zFcGTdE;uozf<$JF`$*HzeasUaN)7#l;0pS&7#+griA6q>5Ruk_hS*ho`JD7GfG^3u zK)9zske9p4&c$3|EIVo+3U)*KSEPRqqT zp`LxY9}G!9s{8IIDmvDiw0l4NRDjEQ)J1qLt7&aQ>(G+bx}AdCL38iq~wjm8&g=m41Rlz>DIM^ZhN}f zgvvLqKz9L`4HdG5Z$|DVC?Nd2rzS|wbThnmub{&5@GHt}s8`5hOV+vcP+3it`(Ly6 zsF2KW2Rino-90JXliw|^m%a3ASuAavd8-Ps0kPMu)k3!oc{RDW<##*15UcR^6;104 zn>$qam0@qvcC`L>VN=6NgD;oPCJ_4r^}>2?xwb2 zJVV}iTQ}I1zmVIVEPDXLA<{Pp6<@ z36BG;4VX-N85e3Mm9;SpbP=mTH-^Wt725qAM`(P7l+BKmf{Xg9_{&Uk6G%M}m?(_9 zlu%aVK^4-WCK2@jBm{SB;pNNy)R|1|lnPnorV>J)hzOCTagFKpb!l6bFhOTOk#80S&mrEKF`; zh2-dQ72*fS8*(sa%Ok^`Ks_f~_e6dtsV*pgQJ}MvE5tERvAME~6Dgfa{?n|6(+Qnn zSUs~sL~<6-X9MQ|lWB{H9O0;y__;<~=aI0OHZ7KA7pBP&ozLSU(d-4Jy-I=p6ui)I zyplu+jHuoOq&Nh(~zujZRxaw*}&0bCm?saLiHT+-X@szQI(7L?v27Yf0*tv<;GbwK->J|XC zK~s_rxm$U>4PctN+xfi%xD&WbgRAw(-M;9qbmbm`Xbn(=yO*FGqwG!h5plmsj|T`n zXaeRTLJwD9zHpBadekJ$W5&N8H@5kNCiq~(*pn49Jw7E&P~lv9^>l?q%QF;&eZe?b z)Pag;dEUu(&!4lGE#>*&6Q`F%8G3P8m?3c=b2N0lwvVeF*Nq{C)>~5Bvc92>b;64EzH8 z3j7BAULpOym2a#ga|zoengD+o@2od}3bt&B@~#xT4B>CmE? z3JDQWX;Oz-yNE)60e=H4Rf;zxl~hKf9pYg*IudNAT-nX;Qo++-q8;YG2|uEa9C7(dhz491sKB)<)7QC49A6DrIC<5?8B4_)-1p zgloX(sj%5fND|wVG!hhUaVCj7NDW(cdo>-+6^L}O;cirnbVz#JL~meii=XAt`I4A56}9=Om?wO4Waz; zGQP=2qaFhf&qJ+g$dIM;m>qSL+csMO(nc?nY~uqd8S-;U#sZ1h%!`1_PtB)nuicR0NZzS$j}i zE0{essmxPlFJkrvs90+(tz+&pdjb4P`o}FQ3^Oz9BKijJd_qi1giC*@b013YtI}>i zL!DWJkY0Gky8SC9HV&v1qQ&o;HTg6;V<)U{Z2F0t%8)Mg^FU%_ z_$Ikux{1UvRpFWkRia_gs7b;ezcavrcEd$rEx?gHzwgA>wP8KEQfl86;#p*iMN!vO zwP`%68L@{{!p@jq%r`g9#$!6M>+&>%U#!-!qM3vawf;)3NK9i(ba(SROJ4kLHdt7Q zmS%irE}0Jl4kr@fegwgJm13<&5<1G>a5SM~09xth^LwmuLN-J~n-v|}ngYsKJBmm9@u=ky8+qQ>w-&>$u20I9QGWpBlhd?l$@ z0apXp0N3gj%&_aM{Po1Nr;gR+i3uLGkMS=<+!CQ$QuqeCx#Ay_g*jvlS1jtrN)X7a zSq{&$za3T0O;mfc_@Mg8w2^K17UFKDuG>WQxAAa$=>8pq@02XTt$BA*!CjSz2=H<@ z3HJa99f)tPKPZA13E4M-VJ$|JPE zJhmSt;xXWH;0fSK;Hk>6%qmjiX(FDfL|>CI(pWhmRc^xr%!vnf(Z zTp2*x5vYj7C&q|hG=Ik; z$D?u@t9sk$Ps^WoJX;|DyTXC#0Ny+z!$Bw0kl)h?cQumJB*rGq`PGjs z9Vt1Q8lN<>Se2*MfYtHBfUB)RP`1J~`8|~8t`(X>Q|Zv!WLki}MxqE%OM-O?*Qndn z%o^Pkd)2ufS#L9L2a(W+PQ=v%EAi&_`R!b#)%XU4HmuTcbs?mE;f>U1>Vh>pm{)>I3@!&D`igo>#si&bg> zi0!R6Y)h8ys)8Q5Jr9+(cP>V@LzNg^Z{l_|r0zthPgTbcdu`@Xb0r@H^M1u*T z{&|#V(rOpq?I9#K0z-jeRn#F|46l-Ef$7ATGlOL$%MrY6gwm-GgM_GMSIUkAMupih zn(%H_(x|CoRqb$~OSs*M-6M?so_dqpt4fI6n|MvHeE^V6wfhpyTCMh>WIqSEH7rq0=Gs7wSnMlT^emaxe_s9+r7@u7JWG$_<~pvF_W#zYdu z5DVH~p|u4a&(d9*^xm#nQ{_gr`QmmDy~T@SK^&s=ch}jX$(0maJtCEjOG_fP?OS` zf*Y`=_yIGRJHvS9nN?aMkC#8%B=pECEn&~Lx1GbA&b2vu9-+m+`Bhqnpi?1p{an%3 zJsf`)3L)ti0`h%@ABl7>;_+e|>Jfyb>RnPLiMIjWxKvfS%ZT5MPF`-5dj(Hd+6%8D zbTx2|8Un>g5?yQKjgY&JgzK&C+6nttMk$cg5|U6^=qZCxg4NO(4&KO=PO7-z4I1Xw z>d48_40j{t*fFETO-3kQO+ttAYGN`ZS4pd4H%}IT+tokn zyu&C}hORp)eHU;ya8DJhUwXrO_FhBFeMH`GjPn6PqO=G3m9qH|zYhbC07}z{KWcn| zd1x&5u`2P7Wzx(fa;51%F1~Lj4J5vMf?`hsPg$|22|WW$f`MMiyApBXXNh>O3T;{< zf2j%Je}iR2$o^EYjMUp{lgu?Q^Zw^~UM_0E5)R3UDPT0VweOK6zd-VfZ7Y1KDz1cI zCVDK{J8B+jL-j@;SP(NNuaG2t?P;yxdEOhNBJF$C8vUBd^Vh4;?Z=}AlJ!m13Fi~R z=MeK^$Zrw!tWYgy~ndgc^mp}l>a^v&l{QS2HHNTg8QgWDMKHU z^idVc>&kIjmDx&7+hrfyP<=uUZ$w!^2-gv&&!-w$`60Q_0{^^83ljG^Ild6ZHHwar z247mUR--bF=vPKiRMrhOkgO-b=)N(YAp1cd;9I={_|CY~_cl1p=^v`J;`-4lL&1=B zomlkE8N7+HK@QcUGn&Hlv!)8EXYoQ_#eR!tkH1juuWBu6zY(5n=knN$mZo4TDpmYW z!XE&G1-<-X+au-;@uv;YUnKo)3~D7LYm$ThoRc}jmF2{?%5%`;?wTzXq*vx7m8x=J zSIj+FfxwiR2_O*S*rpeQsidJ;aM6*31(G})cuvU9<%C+T8uB@D<3f&D+Db*V@l>iS zn#=KRgm#dffDV>&Vu;l_DJeBxyQD#ND(Tu0YM+x)ZDm5+@#YTvQj*#vi&n8x9dl|P zf?lfRs#Xx!351}Zf2&#F1Ah$#S630TqaH~XtwF780$Sj$mDAi{e~LPp_izMTG;?B{ zIdCyuUOOlLwHmKm?6m-6db|2q+?XT84wE=Lfy;5z5LBDw+3`!kQ2)IZ2x zhElYlssl$_M0K(LY(ysEP&0jF4HhlI*e}-Dl_a?*Z1R5;y=hJge1q`7i#E#%eR|#I zIU%51P7J3L$n8$;VsTsW+ao98)6@Ej{hD%H659({X8c=D3tQzFLNSf4b67QK<$hGU z4OzsKwzb!6$J3g2#$kIxI{;`S9<#RFa2BtXWbU1lc8jcYJL;9ah3uWk-3RDb8T`j+ zL|+XrE+p-tT$7t*p!Jd;{rn3$=(#`Po9uMT0795xI;#f*b4|<&SwnWtY0Wk$Cr16W z894gdYElgx4D3R`7^5Ks8*|bKXR}aQC~|#*E)F%U49j^f8qJuwg=;>`?G}@+!zm{9 zX+#e72@$j_&m)04n1r@C-6$SL1Jc-beRYH zReRAyawB89@)~1c3NXZ?pTEP>bRKWtBJk*gtRl5XubV{S1-xn-!YwwNClfOTm@1A% z%MYQ|2jf&_EZ`6lrcv>GG8r%^jC=(prxQH`mDXDGP@D^mZ$ea={MN_5lDMA4xpaDPCnC3MmW}Yqg=e15F&jh-E zIt^Z|jAsyWrV*<2i?et-8#o6z7dX#|a%&1m;ayD3`M?D^X>J!1y2xI3EUjW~!}G<; zFZJjW9xeqg11`4-dIg~?b6R)Iq$=6AuOjAZ;}GZB{J4haYmG!;^zJ&It_RA*VD zIhKzSkm9JXnilbzNs614`nr+#8&vS7k=0v--Zn+#9h*5I#r#f&z)YEX*lOK>G<9gN z_Wa)^`+GK(c8SWIc|i`bwP#1#G|2|}eK8Qqd_evWfsgEE9~)cIp8F>`nI~3|@+t6{ z(Cj`ZBtr>|hKZt5Usx#_2$^OQLSI@$EcO*yzBcMPkYa_TiT*ulcL-pS|0ah7YJ@d< zkHzG2)KpLZPlFe517jFU1$5N?*Lt*_ogvuMM7owHsHZvt00a9@DvRun+MUHJ3dgIb ztKU;x!|(&YnwmdmqU#`vOU3(%6s_!jws!x*(~ac&mEYf_T0vn_6U4(F1oqZ(2)h2e z1`TCvg^wrKA2!6^gX>Ql%%!~2B6p)Q>3@HV$Of5`t-;r-ZY35BE5Ip1@q;8U&I+A* z*M8mighbG!m4%G~@O#2gy1($oxxCcBvb@?ie`TPg)@lMX;%DE4CsLSOZ*%-+L%@6{xSyi;v-s zv6Ag#4G}e?>bn~9z+ZV^Eum(n0a9ASQK$Y&P1hm@v%^e{TRZZ!2eu`{%KQp_8=%lE zK%eIE1TB=H+hNfCDtTT70y+{O7ffr=kX6+XUM?TM)kqWeaSVio%akXM05>$FqjuL< z&!ccr;~M0Y*xf^GQ^sjco;7FRWXw%@Sc{0Yb(NPa=4dAC@Vst5>Z2&VC{#>=_3~0+ zwesr3@Y+JLo}78Gv_8LDL3Xw*8}P)AxoKY;h8$h;a(?owOs#S@%Cj(lDDb#wv?=4d zo3g(#`85SzHHD_D#@=nBZD=QExv3C?l*N!@c7!#}fvdsBe=|yMp4Y(sNO`6ZUB8>j zi)Jhu>_)Qm`R;kSByN$HV%>wdp1_v&nqKtkbo6N=BwLRIwkEs{ur07%UK+*rgg`rk zfO9w)L-Y~efmpxh?M-OMyp|%~O&x?ea4*%PpAlt$Vg>*Mb&$?Z zxb7^Xbc2W+4D4d%h7dxJu&E<|Y0gkeD{eIOKx$@N)Jz$gH%cP=a5aSnjv&0NRj%P0 z$H(r+7$OaYk(AIsZLhwWtYd(&z=;s}IE^Ze5}O>K z_gfZw=e1&(kXM%uB;P~;6EL%rtLVg9$$t7 zUW{)RPpEH@*=#~{fVse7d9iglgdLu5VyurKZXR%Co*Mq?Swo|PCfN*~83i0|rH}bP z%gcP>4Yt)ZpEn%~EC3b)D7wibYVdJ994~}}ST*+qfLD%XCR)&r^&&o=P5-J`J2O$2ittT zz;GuehG;1|JBao~DHl@YBAeYPwlMB1TenFrCP`y{iRKt;qg3lPDRL=sm)R7(oX{0Q zFT)B;A1i~W*^#a!;VMlOdfAyGSKBmYMLI<9g+GN#m}S>I3H4*=j~JKMwKwc5(ldU3QJ_B_D0+2`^OTybbMS`njx z24IKa9yHQ^C=YWJQXV#RJ(8CIdo(XI#$#0ecwSued=msuggNx2k??v|Q4Pd4* zvUr9tqN3hr3CHiLpft6w3Xw341$K)F|W zdd)cP>xSDm#N~*8lX!TC_~R+yfr;eaGT!($3GW!q{zsAqG`=e(!n{!=ws`Y)O+=h10rcF^FX1%UY|u37tGt?6PNuJw92&BMidi{;xNmG$KFe&qP&yDx zsBEi1-W^X-@LS=P*1&UHSS#@U?||=tAB5TDV{{!JU=Jk!Bo1O$F6}!1OgyLQ?0DfX zVK{yz?l*vi5_GgHO(v(;8-FMIOy0`;rjn-_1G}*9SX%ds#5av#W<**GmuA`+qU^x7 z{$NOtg>9BXKba78z&!D|Qfhr~@B7mx1vHDi{!8t!p>}`g87-Zv!7@;SpbGE}eiM^e z4)k^aTQ&4$4VxKzF%)IQ(so)^PN<^bb;(LyO2Xx#@~rCsN=SyR$4c+0B3ll~0}{T4 z0(3&VWv+P|L=r5)k+y!2%j2s$ICfdvsAh+68K#%VgQI3aC2D_#2EDs~D2BBK2}TM5jd zw6Y`BvDx22+7Gjo`)YW{ss;F@s#~ofB3!-A-!%$SNYTFk;yfjZex*HdQUvU1OV^o0#a`l%$4&UfS6_^2Gf& zvy{!{qDp(UF6~wjGSryv1s&bkf>J#!4hEr>SWhB?u-TH}+T`rzquf^fO8jr_hhrOl zmZ=MF+vsrWwj;~-9z7!vgQmb>pfrat`iXFGI}|i=m(w6}tVZ>?y{)F^iI28!rS%p) zwy>1YFX-6Gy7GzbKKq46AKulsU@LEp4jWLm@RNR{jdic{^ead-$-pCg^fxQ>0Bi2R z0=~syYiFvl4shG5CEzpZ1{EZ-O&Qu-6gXHYte3?d@p2rdz2aGR3n90*7EXqx3nn0`;^#}4h(eNdjJV>LYNp+T8d87=Js2AFh zcG^OY$pz`pk;I=dnRltIJdni{(x(F8Z+A}d-)-3P2HZO99BguD^%0QJz z>;1Ix7~&u?TP4mn-gGQ63pCF`qJ&sC=o}0zwByakkvP|c;_;de?gXAYYU2U>;KI-> z*@czwL}NP(5I)jDPO?#%X<}#*sn^>I|71d1EuX^gsRgMCvS_vlU z)YUv)qvpVBWw>_N0@uX>xn3#jpyksT`n!a*8;tqNB!WS{`Yo#b3vqc9n%_r#- zbNeaHPWLnqIzTIF^-MwN#BZJ9f<1t)XN`;5nDc&iHHdpov@e9Sxu$xS@{)f8%c$vD zHS>8M*b_n*P2SV8j0!c`+;Z#83s&We1#bv>NrUNLrYN-ZiqYh&_V+dW`??YJ8x(#M zcnf%2yvMymh^3JG55JNS?^1#719hcKa%p~#2%7jl>G&p@zuX7*`WCy;VnZn8eepXv4=QCuhVKenQu@U#N>l)90LpBYd5ydWL;3!=X)Xa)8aA;fiO2!VGT z#}Iu@j7)E=!?CE$_skE6G25?4sJd?qBj1wkzrc6E_cjBjoBbcE0h8u@_k(H@_31W| zkL|?Ut5A{d<6&5TQhVe-^|Q71Mr!`WrnlITKX9+36~C&P9fb8R^h}KSH>#D%)N78r z>a3S10JCBKPU;`PpTJ*{p<|$eeqS)Jw!cBg51K))AQR$BMNnZrzbdH}ctQ*s1C&oI zF-zIYc(Hc8T#>f$Hq^+jLSz|vkG2DhQy9f^Hmu$@B9r-e88H>bCTi`(Qzbb+x0QHR z5&cH<>IAx%BU*dQd47FyXY4>br!C%QQYadOQwce@;#D)&?hDcsDDp-aSc%doq)3N( zAZ8RqC6%YTsL9p?awePEgl;lllbWKWSgobj6~!sE)M!T??}B=nZ8^}<%LuYPkt-La zGIt=f3UDS_A16yk!mAcVLaP;7;e(SK&7!lqTr9@I&`4jisBv4@r zdVR`q3;-IOsqJt&8c^XnlhQ-#m}c5MaL?g824{1yg&DWrOlmZD1F~%hbOAUoXRG~< zidqwHuZ53wPIGwUBF2b$DV~}3_O4{#qzI1#6N?d|i!pOsgBnQKtSExpoKQCn{wx$% z!dnPEythY@c4!!T68WuJn71UZ9bNK>yR>zU$lNV-clw|`IWF+9o&az4kQt2 zPZ72e!TCg-C$XYlU#5jk#=K_ZToXJ=RiC}v4;Ucvblv(2E88sY&J>BTUSX4V@8m)M2CafZ+137sH5?oK3hl68F%p_7Z!`)G{W zw>i@^<4|fx>5#^&BHWvbu9cZ0@`wjdhE8 zmIfeA;C!2+5)2m*E0%wuQN=}659`o8xVR|GAC^tVkD(2)+bjAXYl@wqqO0sOq^k`B*LbNn z7TU5l-OLzVXI;FWDuSA~6|=`0<&95ENVx&H5zt!gs-hI3o7Bl6Xs=fK7Si^or%b~} z>D5|Gc)c15cb_^PfV-7E6YSy#rQT+vbvto)Sbfsf?o=D=(P@dj+mLtf#=j1@uH?kvhg63kfYecp^o=6ZEdAX_U}HI1Ua(2}BB7UnmkndD7!|)tb61Ea zUnAjl9+u;HtkI((ZxW@wnzsU8-{$!p>-R&@uO^B1#NQ?MJ>Y%dbh%&hPEJ7399&YxD>0d3GN@M zg3WOAdihDc#s;y(t8hP)^oz{^oxb{2GY#zhW+;(+)bFJK0USr_`$=jvjVDM68E>i^ zUQDoHe4Kc*FrpRWeRNTB{x8i{tytBPC3b9&R-%K;&(r;F<+lOdGP|rqjS!VlXFJ{t z^@H|>sK6vhwPML>m(tYOLS8E;8Uw;a&aR|!ETe!9=j(0dB`BGW$V&nBj*6&;mv`lt z=n9@Hfhr(Zq8gRKvgz_fNUa=e=PwH-qyX8A)OWG_96MI}T!=Tf(TMd*OjJXR2@@HM)!I%abwMLR2kVJg zACNTTysH*mlqA{~ zD0Tx|J&$@eCyfyWku1c~WtZqkJ&ow5foOzMJ+`+X8&vFi@Y~a>lCcFVAX&B~PM)~E zN`5@IvZie<+=*Rn#B`w+wC<%gqxM!8wxP_nz;>FeJa13<92&NR5aD|Bw4>FsQ;C^K z14!!TcAeXxlKA~#^6vr+DM{mOBs78cY@3&PNuqi^^!oYOAV9)U z5{FTGIl8L<8KEx9wypl}O7cie2fMgg_smG(jw-=->d{e4s!=XD<fH%* zH6GNasfRxm&wJSB5yY*M;t?(AvwE4?p_Fg0lGb6e|FCX$ds9YwE>bJ`LQUAmkgbgS z61^X=zr|=OXhFvCMhnaVB?$#21v~W3WHe1v`$4>W4A06wmj2GSUQ%(;md6na`E9m( zOtHKkUrM3h2{v80Nx`eSzZ{y64^p0UnDfX0o zvtTMMBkTGgg~|^m-ywz+P4T(tu}ds@nhoxBQfCCxK3V!PXq#D*3&=H=AkBv?)YaP? z%ob{5nm6o;;U!tw3$Iu|C{r;s}ePcur>} z)Ldm021IT8ou|gpWQ$;_4Z@F9%ez9DrKWnXiz?&MR-yDzOdG0+?L0F#A5&sA#A;fD zqAyK=O!lbUd|IUeqU!a*dS~Drd46`699+TE>vqwIw*VhY<^{k)0Hmw>7)l^NK59~Jm3k{c47y5A#*)BFVbP1tNy=9BR>`dXesx)dcpm9RftM|_zbqsQ69T~B4k z`!=JWkK(-qJY@HNEAE!OLXrTd;b@%Q~q}^;(_&P#<5w>_D#CZHHzm=!k zsCx+#gLWe=8|A%!hhNm(Zj9>=%_xz)m76zL&iB zS<3x{0v$adRt-HoNYq0nu(aAyB@f#Sy@Do4SAWFN`l!7MVfC0v?#C$ve$`YCl`%J- zAmYiAmVsry2TzFv-D6ZDsl_QzxXRNcJsX&cuH_mBnxN8WO4?I?R@#et_8e7VJhYX` zQo{e1)C>mdWrSpHd|s61mh%MqkZdnVF7R^nFe-eJcs2bcemf#onEaZlS81odE3DXW zb;|PfGC8(4h09dMS9oMQ!xWWQZD3!swjprjkRdMlI$5O0yut6AfbL*;i+`sv%7MBBJ?wrv79=B3Az*wiWqh_AoX7f{btSkozNeEck#&n z67wg3%1r%#5jw{P>TlD|R;rdrPO4Rt!{$*2l(R7T!roF*ExoLgIPIHgw)n&URn?|5 zxLmciLzeiJ>0}+79gnGm;b!C6Yu9YdcyHZ2mA-5f54Ajqv;q|utED8CtO3>fODBh@ zH85!Pcc4E)Y#RS|W-+X(*4(~FK7IVwQioImDGH(ym;~b`5m#3Y9W&F(bQ4W#S1n#_ zwgkKOkKqOD1HCJteeD(+CX&PZw|Ym3_G+4Xr`>zW3VLX|#LDz#1>>YeM~7-Lu+Qn{ zQh1yBL99|OeM&bWP~*M4x?{E4w5p*Rfee+*mw(j8P_I{Rsar<4ErF@zUyVMkZad^_ zSeZ3>Udu4V4Wo6c^-fBxP3$@V*Df&IFQGHwfzHDF+`2Y!>yg?C;O=_O!#-rI=W!1& z-m7KW=*%d(>vbAC`2Q}|b)m#Q=DWC2HG>AK=%zWv*>}Y9 zbOrYbw=vmFYjIr(Z31jsEf&&1NJn=!<9G9FZ8>x!)V)pY7S*yH-_H(WUAhbUu#G5q z?pf_;wT?D#S*?Zi8!&1+zt@Z6TLJ9+qqJ=!pmU`I0SR1E`ioYvKs z1Y92*{l3KatA^Q9NqgGLT$5S2OgW7>b6S z>-f?j`n?>&_Ld(vm`uAEHR3$MRQDcBq;{o?`iKvLon|qU8&P?t-~eeS_AXO~!7wh0 zvzW70awFlPnlJbbxnV}_baXhe6|{8(zqh0yv% z6G6qoPDI^`V7C~Ag<>mqCw6x$DmHe%2Igybo%{Z+XY;<_ch0%axvq1aKj!nSHG7UZ z=BPR5Ty6T2l-?%J1{V(kKUH-mAllVteXt@R_eecd+cy_gmP3K)qX_w*g%f#U7}dIp z-}dGwn%pw0U@Kw|%@;Mu&UBFjcyCSYHht82KmaCWyWl+fa7E7F-ep+qkZC-STs!uW zMY46s?@pm1JLkyiF4Uvh;6=i4o^z@KIy9c9ST^mb?X$TfbB=(bPjw7tQZ#JVRk152 zMi6#OA9m+y4+1;#w7n-!(x$!281`%J?J@v)Br$u3AaSfTn^#Ww_#6QmMVkHwqxs)Q zL}#q~^1L5me^)?pK%Z^rW7)zO(F&_$`Z!QufYu{HB2N#rv7L$9FrM1HgJMG=fd)_eKZ@4%RG&@%fJxbf@UUA z;sa(@qfK@mk0auE!U=>ED8P9X#)^=TVZ$Vxlq6q z7ZHyrM5`C`bcu2B@gC5MOL=b&qx>w2_&C3LP&Gs5r;r(0IGZ7t1((FM6BI*8t9WGt zjLWG6m5Mu-Tr*ejc4eBqil>rSFTen=&ic8AxN8a55f0SPqqv@@Dan6B=13cj^MGcxc9^~yI!o!3| zL{wc*SqK3A(JYw9r1M&l9?$C&LFOmP{ZtTnYC1Hfl#brXCGJm$8hLW|89PHwV)eHO z-js3$P3z-we~!23Gq4wUdZh{;pd9jIAFNi{$~}gxLhdE&V`wjv4R8G7l?;)ck79Zy zao;5#i&KBYl!lD#?6Gy8~4)=&H8PC;p#DK(ekZvn}S{o{~| zS*jsyR3@+65{o@V2g5D|riz4uFg41rrid=QbtN2~uLM0BU+D4h*J_PoM^L1T*I{ey zW?j!pMyH#rebNy{JYa-PHs*|pXfQ?hYIjo>q3YSly&AcDRIA&;Cg^%k;(ArPHasug zo41+});>IeI3Q#-Pu}pfaBhZyjaF`CBC5t$C5LI1TGRGz|x>;PnxT2sU+m`0oN@MP|l;)t%a}D(8 zRdR{uYI$i(wREf1fv%6p5?I6dROpH}DyDA%T=ocx*{hA8gSa`XLFbjAdgXPM%<){+ z9q5t8+$7FZ4LlUiaJ2~glw{0H!hD2w+X8oW(pOLm5h>=c77~2}i3P~DAYmcGOXOIX zf4q#C)_y$ox5q;uDm@@Lez%w&EkgYJk=Yi_cszc*Q+5v*BcZ1MKZf#OHpn>rh93gmLV)l=wGd_r5haBTMVqGb;!yf)^%KbmLtpZ z)dF{gYIaHVJ!Q)bm8e+JDW{_vepe#b%AF9xMJZcU?Dhc@YdxZb3kb|-b||unFyVjI z3fzDh3uU!xnb_)7wMMn;11gxCP1Yo4E&DC_*REE=K;)xpkb>t+>B~CR5CAG%H^al| z+r~t$jC@Q{L4p@LQp&PHz4ZgAL8NR@R_s=r#*;Wl4o(e2GU5##vG;1zIj^?6#DzK< z;n&uRjVV2pun7U;t^XHiT8d4U$7VnM;J0*O1cSuxbDi5bii&zX6O#;Agys~=~hvTXuDZlPx~Kc>Gp;2=e) zt#7GMcdj@A89YF+9g*7y^T$*)g&o8);J+g&JEfvCsA6X)wb&&2 zx1UJgy;_sg0#L?1su7-WE$JvHg1KLa&g@CPy?_gtqdKcO%!Wo z)ozXoRvpdzF~OQPNqDZerYp<>o(@BpAwb&9F!-V$q~Ta{k0q!MjAJlkMQRy7wlbAC zI0l%EkP9PvHN=OixG56pzH(mSff@Wu7L6df>eWDxXXv6CidK z3lm!jaeCS{-`HADEkKEaSG^kCiyf?A;VCpR$-3y>sXU)XIGu1tHG3-}^O*stm^BHS zNTo|rgJj_>a-B^$Cq03=FvQMlI^(r`ZbmIaP9_`N&FoCVdDUEz16f)J^_xUtYQl3H%MlS8+me@ghO`>z-_skh`Cv0YexX)`PR^((rR~OZp_&n zu--<>?SwnRbnoQpt`cfFFg(z!Z)f`U-5tDi8_}DV?{RT4OBFnG8~k31UkQlss|LxO z&DP$^S?!i6(Z%KZKsxeZ`0GPis}Bn+RXx8L0xUh?@7*q3@daggB(v}+bysXy4Cpbc zyFH^N8c%CFAqI92*?F9}isiamkq`@npHNox1X53u`jpMq@>#ZGsw*BVT<%xDH*P;N zq^HUB4B=UVLi@Dz`8oS3Ii?3UQK_kj^Kjl%6laHHY9V$u#!?DD964t)%Ii|Yh|!gb z=PC380sDo5a7?$<_hL0VH^WeRnX8x7=Or?|On8N{PN53`czUi+d6h`tUdtPq`zzT1 z=+{ZG`Zt_*YUl>^-sJr)!rRrD<7QfE*qok*G*0}xg!c%gvWIVR6g@oasT8v1QGV!a z?l5~lK=`0~Te|yUWfA|2qWJa^!w17U&nNTt5%C{aSToMhOsbTLRT+Hzgw*S(8P%V> zpYjI40>F#8veY3-G=%>k z<40|#_*bD?U(?7p&JwgsY2e?!XF%Vk?03AYHGa?k57p(C?AlS5D4(r`2JnDd6vx@8 z{xO*QlRX%vrIq6V*mZ>}qJiI|>&blPyaOZonM!50FfH7pMnG9u)F>iDvXKiQs8=e@ zb(j%me&O|KDO_NJe=~@olL00-@>EFWui;9%B~t%QL&)*vjDmFb z3z0ZSbr8N%FMF!RKLOAzP+pFM1B0p>Ee|80Ipw$F8T)pgTM}dixw;T+g-@akgXHtp zt;TY*)-dZ#=0)@uj1seG8$wcYnC>;o>B6&-B{5r#3%&=1d)6SV05*LmH~?WQy@)=9 z8V+?5i{3R77hKa2G5U~FZ98qipN`ekxNzrSg=&T`YHRGkav*pe8F3CQ>eICbi_pbJ zVw-BLsF^3d#13X4Ej+hETAmEC=nJurB~23ORxr>UMfb=wJ7EsOoHevw%w?s;+`P{d zh=msy^VWc9bYec@WvcD`&tDT+4YtvjH$>&eSUxq!M#SSD*_}EV;{v2EX!n9m3(=+Q zaBd$D^o2?6N9a#LeQ-xM0zyGDiDPW;6-OaE#ili-)Os<~%mi&lHjG3=XkVhs?@GCFR@C3T1}@dE!4iDjf{Yw94MkSO z8kQBYWxBsrjij>|tc)rlvReya`XRg6F=Fu;ptMaUXWJ}621sAFvo8Q)d+OeSpnE4* zuaYvHKJVzFEOsJ(=ivG-0!enyIs@s4Ti9b&@s!+^Y$FJ}8OxyA@1SCwP5kI;<%`dQ zr0_GxxqHs;YB|^=O9%Q71<<8w&ol)4DNO)-WkHWLGW2#4(Dtz|9wcMKtk}DZr|2k` z`BETajpF=xQB=k_ugJDfkXZP0jZ}x-A4S9a)|9HlenGtbXbg3>O=yN$*J0tcm{hkvK13E2PX%L zrx4E-%uMnmo;=#Gv@kq6IewEN45yNETBZEy{5wgjZGR$yT)$2T?1CFShkI3FauJSe(TWl-DteMZgD1F^1?%m>tS zJCM{XYt&oxZn-Kn^lHIL*=s0uE#aozw^thO=yX3v+l%%triL>KR}+vOsh8HI+6+rz zUsnSeb23UX7YsvlX-8-UQrAHH~-= z3_-e!=R$ftFZ?{QF9bX<^7Im6JplG{$dJbwT@)+^cl2HfDKX1**+C4LXXkE{SBZPE z1_>O&wKy3@H?Cy4T&N9n-jekoJ6p$Vq5OEcFcVYt5&|BtXC=Ks9Y~%YvSL7Q^7a;^ zqsZGe;uVaH-s}?=@(u};KtjsCOFqos4F5fzayLZP1PG_&A04(=d?02j(+vi?gDNDOCHs}UAw`)v)FsIp ztECi&Q~K*b_1~2LCQ=79kNE)^m&tH}6Sl)`=&Qy(Hs%06A6jPizop1`gzvK;eqaE6 zfP^z~J(+b0<&TafCWN1A5IaYPH(-*|Rta2i$Yg4Mrh;FB8^0=97QgZSJK+z)pM<{% ze+S6_@H7jMtRfV(R1GXTfWtnaUp-hWP-xjtms;houC<`T2BAVlw_1o9O_oaItW+Ss z?p`Zo=Z^o`#Z``IHd5XtrAMviMt2sUh;`o0QE1Npvi}W@F{&qJn5TSpqZiL3cx8aLxH<#*Yt+`eKMn%K@8OQE0O`iEtuL;O>J+OMRQf33P{uiSxvJ$F+U}?ZR7bqbA z$i-R3?ZnMrt3WPvmy2u( z9?x>mcVr3YB}F!Nn%87naP^}pgv&@H+^I6qjxI$B6gMgzQ0p%!nR~mI&S>$XM*{V<-AhELNF7#fuhtSz^Fmg5k!rrMz6;c&QR33K2IyMZpH(p2_e*jh}nS9N?n6f zc1W!-+c0a43t_7+FZUO>Bf~0$?U=QVC;*j62R7z;C?f;;HnDe}k%fZuuqi2<)vA1N z&eImP$a3qWQIK~m+=zJ)JuqMNMpQ1g4AN}n{E&HT0$0IiUbo?SV|fGQ$VImu;UPM* zeejwqWO!GA9YY+@0De1&5$c9=xDh~_9GD*B)uK58;}Ouy?XE!WMq-F1_ng3QCp%0x zcg`~B@?5ZLmkeS!wd|VM5w#Mx-O_%>&;^LmJMIw!votND36gtv0zDdo?!l8WdlL3a z>5;DCVsG9@0g!1havC2kRiPt0z-FgNg^GP#@N{xtGVWJvBm38)t&->7?A0F8DQc33 z)k3#G^ntRF18O}waiEKw+;;OI>fnwr@^BTvawSr^UJni-0B?&2RUwK)YPA#{O711y zFeK+c%=uxp+L)%GTVw+5GUpt`y8%#7sUBVMlos~FnN3ikW%8Vt9Ba9DrPRL+S)yEjBrBTY0)9@Tt2WA*rR`G|L2Dulk(vn*dUy9>0 z@=;~-@l^RA3GM{mbk{tQ|C7izIm%Pi}8`FMCEk7p2Q zB9|_mSqtP@C+^o4XAyaJtvf7lGk&L%i#>-3PL8R-MMyq}usH)cH;r|TC{-$FP$KQj ztD%ID=e%0Qr1N>=W^<7B0-i1;TokHzaRuA7?p;FcrLI~099ct{(TmH7LYf7i@&BZC zOoqg$Rw20~&H=*9L#+oAGKNS)x)xsh^w;Rjr}DR?3J-b`E%+P)>-RqG=bXA8h^YnaMyOeE6P?c@`n zcZ9dx$9KEPCvUC`n~H zo(F${Z|~k6TZQ^Pn9prWKAs7pKT9hj`tou2T0NI$bKD;gOe1AHI+kmra+B^XesNbb zZEkP-jSv2!Q88?w0Mae zFB4vgusEF&Q^Bi5yjF|mg6Ef-4paDgt#_!(L^a~QL54TYq=v^Z(b_HN{?%JlF}8&2 z+vIqsRs!SfXd-^s)hlWik$UH2wig7K-wV#YPj-p4vhmu{IzAv~4vKy5nK+AmnAP{M zWUoVvJ+q_uC{y<_IX@wMDm1FDa~;s18N_@pC83J~djYl*A5lQU$QmQ|XQ3uui28XZ zSChsU3hTv}6m{$EEB;x@(mMc=6{@TA*TMePbMT@a4TW5bRi4-nPD}FBLcmxakms+_A_LJQ1_A3dK z0~dXuoUY{oz;Bgx`gZPqac5y;QdZ45%QY$aJJo{R)b@ufL3_1|@5N;NlO+AHkK_L@ z=gfq^dHF|z;(X3h=fbK&DM9-kDOW~|CPP6?mpavot~_-ke8&i8trHWw^EMly2cc&j zYK1%-t-5l(RWG7@6UK%`^x+AvCr0W_#k`01R!1$w%}AOtOk82?k90~HNc8kaxZ_ql zf;pj*+By&`*1J01P;`R#G%&bfOyYu%E7!2~|W^EE-8>gjJt|TC6EB z27R0a^K$4)`me0pM7HL-QnKR=Ixt1P6HX>nFoO~3kLE(5@4!l`)PBxVVX!q2LzHvSRVOjR{41vU=fg z_9J~x+8T%a%p*p_+=M@u!|SQcICrK<^v10w-XimmHgBCvYQ8#qIDlMACGF{oY|#Ts zYH9P=Nh(0?_HvRA4=VJnW7TDE=_SujQo1}*nj%jGNbX%s2jBdr$P(Zi-b%#+b;{)n z()iy+c7ZCNr)1cAR53uk%oz4UsefTIqR#>xfErX`is?r`;`rLjKHs0(z~VV&|&5Hip`(c9u!^jtcm{U;Zy;jD;MxD3@VO8_;Bf&4!M0G8ul|I6j;-1X(#G{p*K z3dCOavtpfF+3o3+N*v!MVIzVlgj4$I{U2P>$uJm>z5__)hf*D~H)hLeNT+l%p9(VCDclH zc#Ul6SXLLZ#Tv;_N(XCF<64BZ3G38hb;X&XShr3b)^}s&au6n*;qB%S zirvZSl9uK`$cjB&+7+=NcZ8SM^HG$}bddSV=v1ysiOrswX>H3KB`WqJePpFVN7Xp1 zBi);rt9cv6|7e1O-#+~BTY=$zl6V{n#@H(iXqZ6g*#31Y?gxUyRWvzVP-!@TVsRfb>zgU2 zC?uJD9BsBv(!@jDy+~wt0-AGx!XfcT1g+SXX)X;k7cr(I>ogXz5yJG02^|G%^C@Vg znFEF2QS|8OK%R+~?8R}Q+%(XPejOjmpx|;s zonyhK@`yVw+f2a4xj`5E;EL)XPM z!jpV4oGnn1cip_YHhugl-pRt|I{I_HLPs%$ryB@2icDzdOz2I#-kc@t+@A>j1_=RCqr%aDpBTdw{10(;r#YWTmWj zG_yKo-djKh2-J`;HtB*UPf_*Z%-tg)6OU%Nk5SF1OvvM69?f`qOBE<+^p}2TGT`_a!%`vambu1;uzhmgFO!uBJU819HIkryw%^W ziEP_r8MX> zX_o_ABhF%m)SSup-v-oDGs zeIG)lweg2w`H!UhBnsNx&%CS%Q~D9Tj~;!>P>i0DP1;}olUNNI`i-Ruc+p9|ot>a~Lu_0B7Xtx>E4(zc=w6^E|%GV*T0H0%(e!4><%to0zB6Y^uH3}(+KE`Kj#&SHw5WXgq5ukhpE^$Z3i++Pa} zB9KNB>A~RS=~FM5_|^~vb#RZ4O(@D-dL**CUWwz4S{(tI8HRgA&UMt(3#eM!!T_k) ziGV`&*)AyREJW6Nl2N>EM`gjayb8gO_Pxz|{imz`6<5VHQMr)?DE-fBi-uU!!T&Is zwfWasw2_*d>J=?Kr`gOKrhkA3cFfvSV%0)aE1|8v^l4C6nB4_d%mKmv0yT(;Ims{= z!M&kRC{zs)=H`8#dWft7{=B?g4BB|%<$OGsxAHTxc3y}mmlIRwYMP%oxLVTm`s~a5 z@!|>j7ZCi#g2XITuVS+w=s!PU;ee4FAR-S;rF6e~$ye}(eEl=EdP%&JJ8u@LS5RBD zUIsEXix_b25ls+41B%6HVsXL}>D-dJW2vJ;a3pL?)kE_AC`h_GfSgd)Vrl+`kWy$* zX8oL;*<6NL%xp;A#j-pqt`4lH5l~~fdgbhYGaKb~;>+iIO!JW$u6rmM+3}IOuRysK z37dL0b_5C*&xnr2%KUq=)xwMhOOPj6idBePHTAB>)9Up~GHcW$(bL{c)Kf;I!+dr; zosBBIderNL`P(^@Ho~Do$i1c+U>1SDm}X zTs!1o+y><0_*q=f@9XaL4JKysKzRsH8xrt|;kQ4C!zbU#!J*9Iw8;c+lp$

K6Ir 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≤jjDmAt0*lF|m@KRIc;Z(ieogpy#_$bK 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 U{-ig|=fCy)@=to@w1H~;e=_c+Pyhe` literal 1503684 zcmd44`*Wn}bsn~rN-g@kbOSR>MX}-}B1qM)HpFsvmlU;Y$utIonE`h&m;e}#*5fKw z184xfXmrDU8SHGiR8++1E>XOQqG(C$NS5N5x;QtNE0(M(=C>I0Pi)FRi+@6%^SERjaolM?-dvkQq8x(Js|KPYgIo??Q zk=I{8eCzOy&+hN<_kQfNd)?mQ>w9~jd!x7iM(?dRf9%KJI(+f%7uRpUz4#9%z2USs z-0w{u|0n;U_4vQuSZ+;^doTXIh24$i&i-+)_rXekI?4ZT?Ty~gKh@Lo{&dvngTKUeP@cTfAnqx>&^v^5-Y z&HJNKTIb^*0C652Kg}Op=$`5~HuO11z3J4RQ})K=kYz95_iXXw zr}njl=_o%f5Y6^}c0A&r7eN-z^MvF|FA|DY?++7J7Z~iEgkyANPIh)o}ErH{df!g!0yTcdUzU-yV&p;~o#U z-s|mm!z;*2wh*Jh(YSxA%PjUsU2+yRHt%~p4z+U#rPV01*Tfm)jMk91qb#>;$38FlicXAHF0I~>_LQn!VD zx`MCHx=+uj?aK*xDlRFYS+plm0}Eky59H$CH1c;6I=Er`%YsR`;hfd)o2r zltO$Bht)e6&xS)gu=>I1qz9qT&nfPVvhWET7Vq}DN+#!_Vlv~F3b88s{=Gr}^eq2e zop&d8Vr`hn?%8Xv1ae!*i$+^NZ-D{dGSczHas`I*HoAZa0^1DK=&?>qg~NiS3|>QZ2O(d*`|j=seT^G=#pP;`O&bdn11mR*aldjE0xA%EF$m zWD&Lp3b6i6kmv1vn_Jo|A5;qr=tU!!@w@p@{|5SkK_?IPH9+7XJd-z zN&kSq?GNeev=i@)C+haKkDo$Gj44SaXnCq%G6F{?g!xl8Eno%mIf4_~+r6_v*G$>M zp7QS^4C;6aSBn=jn#4PXSxt`@mgIPwIKHGV=xE|p(^)sAMStN8#LSEIus%7$bg4j z9F9k7B#VRYR29tPWICQfmBJI#J(yrFb_Yizu)#4&+fKelZ<5~ur?S{FSDu?`4UBzV zb($J!-QQVN0v+_nP*0}Z4}0b=ifx~oi%oW}x)bO{_0ZiaEYMLcPG|e70ZQn4s-hN% zo8KtErHQt0LFtn*PAx7lVdbV^6!*=fx9lv-)!V!4+xqmgvH2^Vaqj>$RagHplxu5? zoMb0jPLD_Qs7rA}l>U^c5=xkdR2__Fdjn;^66R)KkG$wx$m8N(L4_b3)Z|<gxlT zks-yKJ8eIK>HtUT{#q7mnme4~L|C0p zhj}lZ)l=w@eTzGb!x5uNJ0>S<@!9F|+w#T7Z5-%FU;6$0kP^Zl57I5WhRE8@u;)*I3@um#I}+pj}>}>CbWs+9;oK z1COEaoZ!*duJ%GQpa9dUEE*x*aDy1|J5(y$lRo?^#AEsGWp8*uRlP8yw}m4d@C#y2 z^!!? zSb}YXJC=-Q{!Orx_0f2A?#j;0P|J)eNI%NaAZ+j@IqL}PMaP^gch0Eb1o!Ch)p`hd zA+8gv?%>=sy!i(Hkajwli5gVljV+67&w3+-gGpdO&VvzUH_%)R-&rrX@yJ6_B^uwf z5zmJ_K?Ux4ncjKbNVl}qugB{`{zwQV`x2+pgKJno+L8jsoT_JUmJH0}|2(pJTU@VT zd(2%chh3N7e4T$PoIyE zfgS1fY2uD%PnoZ1rso#Ny|dXAfrw@reh3>x0!G(9fgfQ^2IV^9Lps9|(qg_7H{@G8 zKb5~+AlahN2}=zjlvxbZ0Oeu-koqA+;EVm?L>S5#zxpClIV5nk1CNSn6|>OJiv?7j z(ypG!`P&!Id%Y9&Sw#PD-M{y4UV6E@y}9*H{<*cbdS8G0g@?E9tmmH>HuZ;>KCw04 z>^|M=Z9cs@$~mjYFM@_ov%-HY^xUNzzp$~Z55;-tPnT1o)oge^?y8D2+O&o|;2Qo) z-y9^5DdoT^0IriPPgflF2kPc6FywVARY)pXKxV4GK*+3o+!`Hfg0A@9hu=yz?(q+T zYIjESW*dnTCI@OL|NRl;lVI-;$H+U`7gbMX%fl^n_7FOVgsE${Fk$M<9lGEM6dn`Q z{ox^8sC_*u>Ntv1NBm!~Jh{A_NF*&E7LTmJY3bRN1NcBHoR+XQ4l6uu$0wI({SQ7+ z|G7j~b*c}dNJ0)6^R{7skxt>`JM`GILjs?y{lyWYtdSWDbGgciL|LOH%deui> z>z$tA1>gaa(fC4F2vI8LQjf{pmz)v@417 zbT%O!%npS=UqPmF0F|pMBuGqa_wIV$QMI%C@WI9{{m0GK?d|n@x>xtBR6&?!Y#nyh zwAinz?l9z9;JfFC6v#X4>y3vf0jMnPt7SmS4FSr;goFWqz1c@Lj2o!G(A__osHGGc z-8e=ql+1C8layCR7N`Hn1q*GG#-apIvBBsbYv3#&j*wM9J0@E~oXldBSEu$ReWXpV5eIL2b9vPhmr{o-gIxB3vw#lRXntE(@RJ% zzMkLdXGh)SK7s4t7vIo5zv6bQjU?C8t|buK55|2d_VUFKdfolw#DZ8gB5S5mOfSND zoQ_Ayoa*)&H5HQj%)eWj;f%&ed1@e^yoOiI$3#vf6@%z%Q%c+K3}^c%mc2xV0LgQ* zrLCZR{jIk?quK$BZTc6ce zwJbSbiAy=matdGX`-X>sC}oOu^ZU5e;Iq-ysp0pIO~1IzRfouzQ1BO_p~lc;W)7S> zjZCWf27F-~eznw8luzd4VT8Ne4cvukP=BawxvLZlo}-eiz(hR^3cnG&fpKpPuEYSju&U)K4;Ln%1cL z0`fQ9jOod8uV)IdI!8_RNK@nHQ?x9ivoE=tul4{`;GW?~OW>*cAQb(IQ0N;#uCsVa z-R#=;KK%Os%>VR2*S0p**cUff*EFsw9&PO2%^x5q)sJBPSMTrU-(GssW2vCses@Ek z3PrCAvz?&`Moz1byJu&}8t8|;I>w9@2zxNj833sIMxbl*Qw$Kt=O@_jB2-}sS}dg? zSZ)FV7RV=!goI>xm@{iCeR62I-mm)3 zmmf``Ijl<{5rVU+m;Q{Bf6Y6h)7t6IrX#@_P>qaxNDY|W6ylWTMJ(cd4X8=19k=s= z<)K&oSC275ywr?1^RYhIFbqGQPd5DjfKAeqoBaT)d?)251)up zTP=#numR_aIS(5zzK^% zVMBM}xUfd{4zjArrb*@%hI<4neyVPxITF{!t3)zylB%NE*#pGdKgFD&1~Gk5|Ld;ltNu%Rl_z?7NHnTdcxcv z4)BM}IMw91-(v!?5D17elvJ)|u{?dn@`$D=cfHa`Qnz6xkvHOQT9d9O#_hH67T`{r z`Jb37ZLP1}%rA8-3{RcR6AEXhDFTHA){{vAXTN@w%!-md%0RW>>(W<5R+7t(m4rpu zIT(5r{wZ$j!=nNIMTLQ!K+6oqwE@^<&|8rbz%Vbryd!B9rRy&IH)_%LrZ_=e21g}A zLuM_nuoLC#q)*!eFQo@%n>Hl1-x}{9_bgQ?x;1#^Kt*(ccw<^8Y9<~-1xMV%(iWnr zyj)*~C3NdYP&LNF?L#=?@Z*&k7gM40(B)PPvOX&o$e<|m3w~hvw7)+dG1rlc%8vy` zWHKBd;UJg_N)7;y{1oK0N$gNsHKBZI(iX#z{SLaRbABgXe`JBEsJQ& z$-tBYyw81uq+G#x9XWWE>UofSS^;grnvkhyTVaU`0<&jTvJlFvH7Lal`s4o!wvIUv zxOkLF`yJoqE3XdwN4DBx1oNB;wzM}Mbr1HDrlpdC`0oP{pu{mZshU6~(@2^Yzhd9j zX&*tBvVpOUIf1prJ;s5xz^M9swMSC`yXn3IRt0Fb;V^0}|NM2NT$+CsJyeXmwyLg6 zicz(IW>hk04LGc)3dmKmGoZiE^-FslF^HE-me%IMQs7Sy{ONd0wbB4d=C*J_z(1PD zVi3t7HH{h{mOSo#Tu$@x0uTmkYLlsGlhR5?I)6r3ho~HEmm0{tk4|>HVdgV~EG`4S z+!M%>`m$6MWq^&;QcALlD@r1#mWKBAJJi9cR}T;b88=)(lBRc927sJs17%`kt|}2u zImh12u-1NoWElM-U}UnHO$7YA;F+y=R^QEAx8vBoyK!G#=l1H_?!(o4tX34rrRk@u zTkH4Mch~b*Ter8i^H1d#KB7NY57xIH+~Y@XKHSw0-{0a-_BAVVv{vum${(xcLF+H? z)}1V`tIr%^*P1O^>zJ1SjD~7 z9i>3Av%9Xz+Gp z4U=hnNmJC&d!CalkUhy?d*Shtg!TZaaCLac_=y!&uXTqRFzoRM9u+ooO(F|8)#4#i zo)|8ntSXfbd@>*u)F(#3b0DCJ7GX&uWlAcCs2I!1k3e*K)F&uO5bFdCQRfzi1G>#uSYBY%xR|Rf6|f`7 zNb6#OA;YWSz4LJCd$u03cvC&-j;)N`Ixq;?dlr}@P4KNR@jrQRD!JZ%r~+QxhO*4> zGykTu*9VTwfkh@O_K7lmB7bdZzXzHkGQ>jjZ(6rluUOc){F-X*?&^KkiGwv^Z0G(E zqA#nsMA;7c8I`%#Yxk2z+*n@P1M_uf`@jz8bA&CWjR=*2kd$}(3XJCy6&N6z#&j}_ z)9r*OhSdwfj*H4X{VJe(&3>YOAc2FrZe(qzgJ-0#e0KW~HQ(Nt!9(Gtz3=lDizYkZ zSAai{9R5@6TC8BFTb%|IPU2NVpu@TBfSljix&K;XD+IBv9ZE?F&>=s3Ng;aX6j`YK z01&~(G6xmt?NA30F=@&^=a)e7qP+gqUrTQkAnN@D&9E@@0RSgtLPE+yMhh^rtb5_x zE!=0l9G`gh=3y;0ZP&Hg3M~B+`MLZt6fb;iCMT0zdf%N5o&oG#VSqDwk%cR zUp>Qe^M{dEb&w5UMF?6iiG4t@7Lq*BjaobxQ=32-Np_28;JgH|$Uz@&q2oi&dwcr~ z>5)M~J{_J{SG!)s$7qdN{ti+YdaO)8G+{+0!aTm;5W?-F!Dw&Kq@lgn6X9ThX$rI4 zLn9umd>R&1NPpg^r__3P>tWu1xq8za9TZDfH@0{3A56AxZg0tN1j$+7gYa4K)>>n@ zTS{+Tdf($@mKSINJ%#Au4)uU2Yi3ZZR4GvQ<(orp50qon5{_{(Jpt}@CV+Gh7OMkR zH%xGxgRgauP)q|f0!3qG#2WYm0yJ<|W~eS5CD;*p5mVCc62Lp6g<(-XtPzMLhLmox z!Y>Q7*~|rN!FLZh3$wLA+L%1qa%+SbeT$MS@C5Ko%HfuP(C8pJDK4JwT-hr`D5(id zuXPRqHAAM4g5^TtO1B1zBLq9XJP^tK8k1lH-9*wD3M^15{@v&~mpwG@w-vW`?`8EM zv8c6b`Dz^&PL`v(Zn{<0tU&@Ih-$4ezT$U^^YA%x1RY9myCD15?~Z1>fX1j8hEUTK zf^B4B_ltU#=LS$`SnDiXKI->ZRIF?1Y%o0$+}4m|ttQgVpmw^Now>_WAxm|_}fSyp!vvc+}B6TvDumD=gm)VbIAFfjSsuHk5Clit4IK}c6 z_ctmj#giG0W@u~#iiGLEwq(jB9h1qogjTA4h9mNTD6)&GC%8X3T~6`K4|y z?TF4pbDeg^Wu4>xd(k?RIwe*^|JS+tIb8-=?~~pXB4?IpQGi{NpQW4I0=7eW!=SZ)wd_J19S}WGm<`+2u)Fu#e1VYrJ$FW zAcg?Y(AgwIwcxYnR~xINory{k@%|HYQz&y%=R3_By4fEW%llrBK|w|37~+?|24HQ4 z+_<&Qf;8OWm5e#hjstD42O+}&OP`$qqDssgps<;VaW+F~hGPYSVysd4K+S^e>(0V4 z`gJpvs?(>Es?Yxj4db0d(cHmU(vCZiTLGX%0WsIcghhE0K$`&)HJmBG+xOoJE@<_92+TEb{buMRBM>8(m9)A5!;+=G3cuaiX)$T}KxUWlH7u`V$W~wiSIN(uKln{@=U^ zZ&gP>dQTeV_jtyZpe6Sgrv}kNvs-tsFMW#iaOsm@2>}Ud@LEzjM(py{iHYOK(5;PQ z9>XUS{L!m4OqREa05>Cg zHp}A+GQz+Qu#$L?!M5>XqjZi8lN4_Ai%cuE4#^oLCt4d&-6jEr#rQ@<&Yd09kWqBgvXL;!zo*#8Sb+l#+6RKowtNR_5x_X9#=u^x z-B9rgSw#SF*!gXIZArn{lkFs114%*Pya`0|i@Pu+=zn$gx&NvLH6E( z#;C=3#N34PHp#qb1?9XK341q&?;$Uy znh4PG;9(+_pe9V3Joc=zTA|I^5}h6@Rme+NT7Kb8-G8~edjFjrInFeT!<@(((Nxcd zFtqo&hkz|;EnfPHUVlre87jebPF?WH$g?Y`4yCi!E@6{Z_XxH4yhG{F`|F>C^d2Fn zEqDc)_o}rKs<~F0Yayn|e?Wi2M1Ly#8J3@;JKW?0J2PqhPw27pnZH1iwg zOnK9Xt-9DZ@f}wPNW*Ec9+oNtIP&umNI+#1tz()Am4T#nb(yug#1~|U-8H| zwf!oxU+8O7Ro%hP(YWPc-629ic9wg#qz%+_0F_+V?&=lPvyCC)zj?jcDOTSa4FFvp zD!qEANZean3ij$)T-#kC*eCtG0-sgipi&PP+C^fs`yNK2xIf0sFJV=W5hE|`s4rd# za*lQ&EU+=ksS+3mQz^lwd-|rqE-~DuQHP35(Nf+4O$VCdk!iBl&nBk?W80YuTv}QE%VK|a;`N2eraq0fJSaBq&b z{2V=>_I`heR5!Z=YSgJ6n7ep3I$MF#AU0hr(1tQitVRP$bWQ^+{RKo!RmY*P)+&T( z`!S6vqh`hqt5=gE=+o9NQ{FHEY%4Hsj2T%H=m+2Hb7!kp%U zNkBR>>rklz+$0?$!Tpetg#>avbGSLw{-VD|O?tzOfCSA10zhiXLnnV40hHh5FPK}s zAXZYa;hhcD4#E<0hZPl(t^rz59pL&OL#G*gR?=xp#~_H7!A_;wL&pkR%XM^0%3%}HS ziA=?id~<@9GA2tEWhptM>@dN;FFYb|dk`EmlcnIVQbku%x(gess>Ri%3Zd9sD&02l z0fFD!YsZ+^VNN@|iOI$woKlMz^EFX&l{8kes_UUZ9Ml&I)irFQM;E2Qzf@=0 z;d@|~HBD}FFZTZO*(uq6F~nsV@6^aj$(y6X4~Lzp9xsq z!}~tFw#`#(pY@Lf*O9d*!i^R&@?ZcgkDV9wOgg#grl2BzIoPvrK8H;3W9r+n8C^!v zr79A&yeZ7Zp~R>t5_9PheHx9K@!nkfe)1;iu#tGcZ=Lo|_o&GN@%f3mJAlkFksjhe zvO=SY%w;kV3jF~lG{rQGq@iEO$R;&0hw(3_N^MU;G9lSsgz)!r-B46kaK>6#(J*_B z96F#Tj*e-6LIzc-8}k^pGWIR{z%TAPMt&IlW=fr}uLL8?Lk#aPkqS{|01v)(lT+2C zf!xy>(V2LIbFSK>{e86i@}W3hfc}|-UU)Jmq2hUoPp;DuAg0WWwyf>UlFiM5eB6U4 z)X`61v*%LT+0r;ya7i`ILF0z+QUCN3J z?KhU}X@E`l(M91fFp1&GQXZ68j0~U75_&u#Z`bv_P4F|&7766rft|Q9o~3(a3@Cgu z`$TYmC|}5Su#wq)0dWTrM)Tl`RkXll;;==uz1t`WMQ!uBY~BzUa35_!D4tq*qMV!q zPOZ<=Bx)#^!%Nna0H0W0-B=N|c4qx7!Htohr@)bD{@2G)xE3pqW;pNs&T8sWFb*$7 z_hiOO{0vt7O_R|}wilVrXeqJ4tLNxl*7rCh))2ie>GOvtKrcoFjX@hBh$cOu!$Onx z6%UUYXPH~&>d#GmoyA|zwUp)pUAM7MT1R&2B@N==MfbQmcvjo;U-|i&z!%;?Y&0v+ zy_wD4h<1Cnf&1Cb1uIc!TTP~vHXrk=8YxjbzbO7yIw#{)hkN=aOR3u`Ndn$h+HyJf z%{M5sIWl*ZP}xLi7CsJ@tQAC``Q2jK()PgM3^<+|*6v7?d!gYpn%m|uly<5k7;`%P zr2p+y26L$8@+p(8_ZYBQu`=j5te!YcwC|v8M(wE-Qg_YJBkJ_#G+KY>fjGCym-NFY zGR_+DKeP`JFDu>Y3WRdFatuE&lX2m}cK!hiq9a%aEgk9L642KG7S^VbiE_6zW+87E3>En?~@5n32VbVs-7F0$@T$9FO*5 zRizxZe|;0xEEMeIe>5>I6Kb~Zuji#KY~9X3I4IEd-Vr)@)ixT8`dP?SPoT1XB=*U!FY-~hc(ObOD& z*%xpWl&!rs;hG1?GbT`i4GrhhgdrENnAeKlYOUM7Tca6JWFU3B(0(I%bmn|LILM1Ez zwuQOM`KRKnudxa8ZroX07#(Q~wfiJVYdTUHc_|rFjCx8DA0LXYb$zHLwDnD{bTRdb zbu7T6=qa>QXQm}k1s%jjYj7zQiW|*P^1t3#g}xe#;Cif6&^RtUMl#;|6`VpQIGCxt z(?8|X>O+XTGPF35^=`I1`D+#^EJ`|fB~A9te*u~k2`DS!m*|sb2^Z!Gt+xj$%uJmn z?n0QR@We*EZ796 zmPAi<-YIYmAluwPv0~YH6Rn7&*@3zjb`Txp^<@eoC9^v19`*N)RjSnkPi9|}?t~PE z4s_3Oo;>UAX>5yiF+Ec6fhq1AFIw~pK`uODzz#cP395q`<~^zJ zQ0`2vz*Ftape%SGJBV6dOD0o_JXi6%g+CVDH%;d1>T0GG@QsGl^HZRNd~8_~O6c}$ z_*9DkBj>WX@^OF-E_U~jeL(a>R$d&VLXY-0Yu7{i8m+^6P6s`VH_(5$@voQ9ag;-S zdds>^e1X7|0D-A}a|n>?H4x5TVO8$QGEzlBS=)5!b|kkA_Hu4HT6oO7oUZI|{Bb#-dA4E{&AMj^?%5>ccUG z8QNw46ay79n|SiRc>iRdI>j|P@YU3d&=2RDe1P9qKJv+KP`Jzr*sB4_n#`!{TC0zC zRGP3_)2)66&4YB9UnMj0hE_Ojt)3IYsBG>m319-RfJp=MLW0Y(1txTG5niUbK>Z3-%j0wN(&b*8{nVdoO1_z~cjLQ`8OqGR z*4rbD1)%)HV*fom)J+zII9sbrVwh$o;#xYOo?l235F?9f~RTKX_n!mJ|pNf0GIFa4#&mi zeLO;X8q6Uh@3)sH!-TKRFF=p}lpi98M9(+ooh%Dh0nK6s@uUuP3D;3*cC{XCrOozgY(kfT#JeH1qZvc> zgMlzo3V-L7kACydzWc8}`sV-e-GB90fBsAO$6x)M|6K|9(Kr6>N8k8a{9pNZniRF6 zOj1eP<7JO0*iFhdvIKS+fSE9-5-e8go7WRST(2s!tzEG58nbTbieO>qm74z|M1Iu`X>!;HC<;sB0-PFlKm<)b{ zRL5~Q{QKJ7RsY{a*%u^HhzS^9`9=Ph58xUGQR)9^ep>)Zt6GJ(#INv-HH#ze_t`9f zjSpt0N&gCrW8rmG4mMN(w`m^PeLUs}hn^j1_EX%4#q2W^l7a=3JCO1^ZM;LmI=(Ug zl6oK198p3#@EcI>wt|FZki%P%%fQyt)1~yk@Ftbo4Z9)5qlEJR{FeQ;Ji=|ZA5TO@ z2d$y8LPe>gmjxR28bEn+ZL!%qVnTaIDx*(TeVb-LPT0!N@za}KBzip0WT>Y(6pefI zb>sO!Z@M{0+b?qXDgj&?Vl`727E8ZljcY)OZ^0yQ3q(SU4xh`|cn{(Z_(i z6koK`!s50h6OrRQ&%P7NVde6D`?H^!Gy*qk&b={ZM3VxwpdkeQzC6`EvUz9hoqpxJHp09p;((0%o|&z{7nR zivWyEERO(yi+&frqg%7Q4YEdKBh8^#p`wKzvM^|p$*zNpb|%E zW-B;tl>GLq(DE2M%Ep#yZ~s`T9QqAdTAQxgm=I%$WL#|lmyE3AMzDZ;ryBm+a5UOm zk=r=zpn2T}MihzPh0dDHnOs&0>>y?4s-AW)UV7F((2IaaNOUO7?A+SUZ$U=WQuxIK zs0Mxc8~OiRNYf0Ko%HR=5R+VNf2g^;Y?v6M2x8E1G$rosJvHyqUV!O`n1C*o37Uep z)4keh8j94$^MVk8gz@#vidfk#xU)>YT}4M!QI7<7tDB?_@NI$R2MWe_z*5v8HA>hn z#-@e&vKn2{aAou;F&5^?nA08Hr8EjtVi4w+O^E%az9xZ-Tr{%Qi1?Ve?&m+^zN7Yn&oj z?5^H>M}990aMmlk=QfejxB8rr11TTIMWozwb_vBr2YW7&ky;IJ({l=54(gPc+>exW za`%&65(lcjn=+1iG-$tK-@Ccbn5&B9I?p7CjoAo{!AlA!Sqb6LGS#~>l@T%g5e^Skf&s`Na*|ub-pV?1@z6M^U%bLmd#=AzNTg? z1n4n2v1!*TjXh7n!P=v~ub+O-#9c(H6ikb89phx{ zHuh;u7nh5|zLezX6JYXH)k%I906e&=qGiNMvtWZx1Qhc~4A@6Hlz0n5b9H2DX^1eM zHr}!&6>!1zqh>C_8M>Oqgsl+gis3rL4Rq>HamPKA%T988GCVt6rLAYx0<1irnn^Vz;J8K7JLN{f>le^kU*(axXL(8LVPM zixMQRmTM}EDq$JZelPJ0vbzPk$@Gj; zD8l2RuAI-zd8!RMD`v;6v)Ndqg~D`RK4R|EGYrePe8_Y4CctLw=G;JwX0^i@qX5oC z*KQ>y+=65p%6TaeT!xo-o#IA5iknQk;MoH43_xSvLwJNcM=@3H5Q~s0^o+8zt)A)g z$rF+$nEU}KO9`FEqsbUta)T zTt=x?x*nz~fk>)MjuETnC&8aamI6LZ{-@{Zi;Z1QIc`7L-nzMZljD}F&&Yt!*W?Rn zPMhU;d{jrQq{cYfjxSbP13b=d(lQCfU66wA&8suRfhqO*HwKb#%&H*`y(-7wZ~@Zq zJ2(g^8cP|m|Y0s|-+!H4Mj=(O6OqvSR%FJg}OnS!7hg@$9h zLWMZhX789n_s5XTS99*Dk*E z?3cRF{uFEd)BK4oEbosl{_NrppMCw=FJ64};64jxo2Oy_%-bI7oPp*#s4A?lzuRBw_i&Vr@_Fg z0V={Hs+L#BPrJ&|<gzP;jx&1n7W;&%w|0BMQIl^e`m~Xf+-%oD6!c zF*x^>2*i-5=vcD=G4q9nJ)`Q2&I}b=iSAmvtjY%fY6!s`vJ@KaJ3tys%PUb=t!37# z<7GBTjd)`vKY$@6!2ey+#2#c<01TL73gIQ{-8PHXKixh;hQZU`!H^K`j@lVjIcAkH z@nKaMXWKw8srShFC-Z)bmcbp7)YY%q;99E!nO~}R<%%Yv-3@m@!;QNu0ZG*A;=-z$ zt!fV=wivw1)g*$lRaW$Dzpu1&Z-gsqdwt4KeXDnVgnQodS6Z(S4b8XKdtE$}g?}`< zrGfeu&d&P=b;kRo!bzH^;YfVra7?Ek9R9uh!ny8eYOx@q;TT)m4KEL_PkK)=23bW7 z$a^w;M-oTj+MZ^!L8p6g0An=ar{VO@L5bvEGuW#kT1m6>0u|I+Wg-H@r;j{dM5aov z7XW;V&$FOb3W);y%en{#JgPD0L3g@I@K7{Lh5d>4R>|e@)~oCf2)zsz!~tbSX5~{G zH}h4jbhFb_|@ zB1J*^GfS@`>oA-?U77TW{5`W;NLv<)z(-ThS5%5>z@$Kb%~~1tF?Ry@^JU?aDrY6} zAXy$33OyGB^?v{&(N?iL~ko|^)B0M+>2d)kC7(AR)nVI{W*ik3@CsYku{AV zePIDH_Y)}Ri@lD1M9t@RP3thLR0)8brqtFARf2odRjalP*10G*-$p2=2i!h~R51J_ z3RsPRI>fcqL`c<-sdMb|;i9VrGpWm0cf(){)ZbLo2sT$oxq^rQ0IA}#0K8t^T>Xc3 zV^aAK*YDlZYD#g(Ze42QR)Otp`xNzh=g!9Vy_I`*?G%r;eQSMZDx8#@jxQnt^oGK?(FrB zeCkGE9x^uS_GWvy!N|K;KzF@@h4}2GN8txxr$UPx|0(DbdcE#Nqr8HFw06%(dvj;y z0hGQT=SvuK0S_^kbrckd!?(gV)DvsAW@C&=9UbYvGN{|qunSuR{EW@+7yO-J@m~4t zjg#c?;blxBI1$4DR?43L5giujT2#KXVzwlhWa=25Qe()DR0fgR(A~kSDiDGw^YZ{g zW-#bccm(0zmc_Iq*~7<^H3Gehn|8A@M_DY%a7Gyed}cinZ@l%XH{SeQUa*4@C6m%Y zSE8(q42cL4W3*Ys!Qp=D$8WrqUM6s@2RdXZzdp1Xmak%hg8DnIRL$FvOV@1<3=9Tc zFdywqwUEY041r6eSX-vY$=~iCU?Q0ne9JJ=`}!udgAC+^il72Qs^FZ{ZrtfZ0@scT zT9x)B6r7N~hAW(j)_ydSk_&yYHp)myu&Q4unR~&9=8uMhY{;j@UqOd2-kjkY#^I5T zFO%s&Ofe^TE?WVE!FD8wbSvhU`o3_N0g#kxSwgkb<3w}=tMAi5iC{RY-FtD3_!3}iKuxHJW0`-lhD_5S@tbq` z(C#BB(EJwY%?co0J4p*B;`cjfIe~-gAEM=RmMXUHGuK_pt%G+mSXI&|vy^e(XID3Y~e3H30^W%gtI4Y4@@Z(>w%YhM>qSpNZ zsY=~4KS=?XWV0p0I{1QjeZNX5imlBo0iFs#xRfWM2g4

i)P_Au5 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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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 From 1f8ea676bdba9f45a49c225efaebb3d43d6b0eb4 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 05:19:03 -0700 Subject: [PATCH 067/168] 2.3.1 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf3d58a..54feaf8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.3.0 +# twitter\_ebooks 2.3.1 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index b72a6a6..f9978c3 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.3.0" + VERSION = "2.3.1" end From 302ea0229d581ecd48dcfbd12cda83e221129eba Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 05:48:13 -0700 Subject: [PATCH 068/168] grr stupid mistake --- lib/twitter_ebooks/model.rb | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index e7b6958..b463d36 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -8,18 +8,22 @@ require 'csv' module Ebooks class Model - attr_accessor :hash, :sentences, :mentions, :keywords + attr_accessor :hash, :tokens, :sentences, :mentions, :keywords def self.consume(txtpath) Model.new.consume(txtpath) end def self.load(path) - props = Marshal.load(File.open(path, 'rb') { |f| f.read }) - @tokens = props[:tokens] - @sentences = props[:sentences] - @mentions = props[:mentions] - @keywords = props[:keywords] + model = Model.new + model.instance_eval do + props = Marshal.load(File.open(path, 'rb') { |f| f.read }) + @tokens = props[:tokens] + @sentences = props[:sentences] + @mentions = props[:mentions] + @keywords = props[:keywords] + end + model end def save(path) From 7e62000e37b00ced5938c3f7c79ddee5c3d4c462 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 05:49:49 -0700 Subject: [PATCH 069/168] 2.3.2 --- README.md | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54feaf8..406243a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.3.1 +# twitter\_ebooks 2.3.2 Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index f9978c3..9456226 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.3.1" + VERSION = "2.3.2" end From 0cb7abcb520e25f910c60402320291b370088ef2 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 25 Oct 2014 06:59:34 -0700 Subject: [PATCH 070/168] Test that models save and load correctly --- lib/twitter_ebooks/model.rb | 2 +- spec/model_spec.rb | 20 ++++++++++++++++++-- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index b463d36..f3139e0 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -113,7 +113,7 @@ module Ebooks @mentions = mass_tikify(mention_text) log "Ranking keywords" - @keywords = NLP.keywords(text) + @keywords = NLP.keywords(text).top(200).map(&:to_s) self end diff --git a/spec/model_spec.rb b/spec/model_spec.rb index c20b80d..a8a85f7 100644 --- a/spec/model_spec.rb +++ b/spec/model_spec.rb @@ -22,12 +22,28 @@ describe Ebooks::Model do end end - it "does not use a ridiculous amount of memory" do + it "consumes, saves and loads models correctly" do + model = nil + report = MemoryUsage.report do model = Ebooks::Model.consume(path("data/0xabad1dea.json")) end + expect(report.total_memsize).to be < 200000000 - expect(report.total_memsize).to be < 1000000000 + file = Tempfile.new("0xabad1dea") + model.save(file.path) + + report2 = MemoryUsage.report do + model = Ebooks::Model.load(file.path) + end + expect(report2.total_memsize).to be < 3000000 + + expect(model.tokens[0]).to be_a String + expect(model.sentences[0][0]).to be_a Fixnum + expect(model.mentions[0][0]).to be_a Fixnum + expect(model.keywords[0]).to be_a String + + puts "0xabad1dea.model uses #{report2.total_memsize} bytes in memory" end describe '.consume' do From 9731575a3d18c8464a40808802cd9edc1a68fd9c Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Mon, 27 Oct 2014 13:52:35 +0100 Subject: [PATCH 071/168] update twitter gem to 5.0 --- lib/twitter_ebooks/archive.rb | 4 +--- lib/twitter_ebooks/bot.rb | 6 ++---- twitter_ebooks.gemspec | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 87e06dc..566d9d8 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -31,14 +31,12 @@ module Ebooks end end - Twitter.configure do |config| + Twitter::REST::Client.new do |config| config.consumer_key = @config[:consumer_key] config.consumer_secret = @config[:consumer_secret] config.oauth_token = @config[:oauth_token] config.oauth_token_secret = @config[:oauth_token_secret] end - - Twitter::Client.new end def initialize(username, path, client=nil) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index aa8456e..fd2c29c 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -43,15 +43,13 @@ module Ebooks config.oauth_token_secret = @oauth_token_secret end - Twitter.configure do |config| + @twitter = Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret config.oauth_token = @oauth_token config.oauth_token_secret = @oauth_token_secret end - @twitter = Twitter::Client.new - needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} @stream = TweetStream::Client.new if needs_stream @@ -119,7 +117,7 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - if mentions.map(&:downcase).include?(@username.downcase) && !ev[:retweeted_status] && !ev[:text].start_with?('RT ') + if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev[:text].start_with?('RT ') log "Mention from @#{ev[:user][:screen_name]}: #{ev[:text]}" @on_mention.call(ev, meta) if @on_mention else diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 8f3fe83..0fec762 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' - gem.add_runtime_dependency 'twitter', '~> 4.0' + gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth', '~> 0.2.0' gem.add_runtime_dependency 'tweetstream' gem.add_runtime_dependency 'rufus-scheduler' From 2698963fb127cd7d4930286e5c21ae846352cd8c Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Wed, 29 Oct 2014 18:56:37 +0100 Subject: [PATCH 072/168] consume multiple corpuses --- bin/ebooks | 28 +++++++++++++++++++++++++++ lib/twitter_ebooks/model.rb | 38 +++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) diff --git a/bin/ebooks b/bin/ebooks index e1dbbad..a8cdbba 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -62,6 +62,32 @@ STR end end + def self.consume_all(name, paths) + usage = < [corpus_path2] [...] + +Processes some number of text files or json tweet corpuses +into one usable model. It will be output at model/.model +STR + + if paths.empty? + log usage + exit + end + + outpath = File.join(APP_PATH, 'model', "#{name}.model") + #pathes.each do |path| + # filename = File.basename(path) + # shortname = filename.split('.')[0..-2].join('.') + # + # outpath = File.join(APP_PATH, 'model', "#{shortname}.model") + # Model.consume(path).save(outpath) + # log "Corpus consumed to #{outpath}" + #end + Model.consume_all(paths).save(outpath) + log "Corpuses consumed to #{outpath}" + end + def self.gen(model_path, input) usage = < [input] @@ -187,6 +213,7 @@ STR Usage: ebooks new ebooks consume [corpus_path2] [...] + ebooks consume-all [corpus_path2] [...] ebooks gen [input] ebooks score ebooks archive <@user> @@ -202,6 +229,7 @@ STR case args[0] when "new" then new(args[1]) when "consume" then consume(args[1..-1]) + when "consume-all" then consume_all(args[1], args[2..-1]) when "gen" then gen(args[1], args[2..-1].join(' ')) when "score" then score(args[1], args[2..-1].join(' ')) when "archive" then archive(args[1], args[2]) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index f3139e0..0f1bbad 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -14,6 +14,10 @@ module Ebooks Model.new.consume(txtpath) end + def self.consume_all(paths) + Model.new.consume_all(paths) + end + def self.load(path) model = Model.new model.instance_eval do @@ -87,6 +91,10 @@ module Ebooks lines = content.split("\n") end + consume_lines(lines) + end + + def consume_lines(lines) log "Removing commented lines and sorting mentions" statements = [] @@ -118,6 +126,36 @@ module Ebooks self end + def consume_all(paths) + lines = [] + paths.each do |path| + content = File.read(path, :encoding => 'utf-8') + @hash = Digest::MD5.hexdigest(content) + + if path.split('.')[-1] == "json" + log "Reading json corpus from #{path}" + l = JSON.parse(content).map do |tweet| + tweet['text'] + end + lines.concat(l) + elsif path.split('.')[-1] == "csv" + log "Reading CSV corpus from #{path}" + content = CSV.parse(content) + header = content.shift + text_col = header.index('text') + l = content.map do |tweet| + tweet[text_col] + end + lines.concat(l) + else + log "Reading plaintext corpus from #{path}" + l = content.split("\n") + lines.concat(l) + end + end + consume_lines(lines) + end + def fix(tweet) # This seems to require an external api call #begin From 0fe4b627d02787fbe9954b509e96c4a46d5cedbb Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Wed, 29 Oct 2014 19:00:49 +0100 Subject: [PATCH 073/168] update deprecated code --- lib/twitter_ebooks/bot.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index fd2c29c..6dcea64 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -88,19 +88,19 @@ module Ebooks end @stream.userstream do |ev| - next unless ev[:text] # If it's not a text-containing tweet, ignore it - next if ev[:user][:screen_name] == @username # Ignore our own tweets + next unless ev.text # If it's not a text-containing tweet, ignore it + next if ev.user.screen_name == @username # Ignore our own tweets meta = {} mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } - reply_mentions = [ev[:user][:screen_name]] + reply_mentions + reply_mentions = [ev.user.screen_name] + reply_mentions meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' meta[:limit] = 140 - meta[:reply_prefix].length - mless = ev[:text] + mless = ev.text begin ev.attrs[:entities][:user_mentions].reverse.each do |entity| last = mless[entity[:indices][1]..-1]||'' @@ -117,8 +117,8 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev[:text].start_with?('RT ') - log "Mention from @#{ev[:user][:screen_name]}: #{ev[:text]}" + if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') + log "Mention from @#{ev.user.screen_name}: #{ev.text}" @on_mention.call(ev, meta) if @on_mention else @on_timeline.call(ev, meta) if @on_timeline @@ -142,8 +142,8 @@ module Ebooks log "Sending DM to @#{ev[:sender][:screen_name]}: #{text}" @twitter.direct_message_create(ev[:sender][:screen_name], text, opts) elsif ev.is_a? Twitter::Tweet - log "Replying to @#{ev[:user][:screen_name]} with: #{text}" - @twitter.update(text, in_reply_to_status_id: ev[:id]) + log "Replying to @#{ev.user.screen_name} with: #{text}" + @twitter.update(text, in_reply_to_status_id: ev.id) else raise Exception("Don't know how to reply to a #{ev.class}") end From 76d6b3cf66c592b5f9c11906440eb1cbd60586c4 Mon Sep 17 00:00:00 2001 From: Way Spurr-Chen Date: Wed, 12 Nov 2014 09:31:39 -0600 Subject: [PATCH 074/168] Add @on_startup to documentation --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 406243a..69629d3 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,11 @@ Ebooks::Bot.new("abby_ebooks") do |bot| bot.consumer_secret = "" # Your app consumer secret bot.oauth_token = "" # Token connecting the app to this account bot.oauth_token_secret = "" # Secret connecting the app to this account + + bot.on_startup do + # Run some startup task + # puts "I'm ready!" + end bot.on_message do |dm| # Reply to a DM From e646e247445c68daef12268a56af82dab4814cbd Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 14 Nov 2014 22:45:54 +1100 Subject: [PATCH 075/168] Use new twitter gem streaming support Made more complicated by the fact that this is not inherently eventmachine-based, unlike tweetstream --- lib/twitter_ebooks/bot.rb | 136 +++++++++++++++++++++++++++----------- 1 file changed, 96 insertions(+), 40 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 6dcea64..bcf7da9 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -1,8 +1,49 @@ #!/usr/bin/env ruby # encoding: utf-8 require 'twitter' -require 'tweetstream' require 'rufus/scheduler' +require 'eventmachine' + +# Wrap SSLSocket so that readpartial yields the fiber instead of +# blocking when there is no data +# +# We hand this to the twitter library so we can select on the sockets +# and thus run multiple streams without them blocking +class FiberSSLSocket + def initialize(*args) + @socket = OpenSSL::SSL::SSLSocket.new(*args) + end + + def readpartial(maxlen) + data = "" + + loop do + begin + data = @socket.read_nonblock(maxlen) + rescue IO::WaitReadable + end + break if data.length > 0 + Fiber.yield(@socket) + end + + data + end + + def method_missing(m, *args) + @socket.send(m, *args) + end +end + +# An EventMachine handler which resumes a fiber on incoming data +class FiberSocketHandler < EventMachine::Connection + def initialize(fiber) + @fiber = fiber + end + + def notify_readable + @fiber.resume + end +end module Ebooks class Bot @@ -36,58 +77,51 @@ module Ebooks end def configure - TweetStream.configure do |config| - config.consumer_key = @consumer_key - config.consumer_secret = @consumer_secret - config.oauth_token = @oauth_token - config.oauth_token_secret = @oauth_token_secret - end @twitter = Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret - config.oauth_token = @oauth_token - config.oauth_token_secret = @oauth_token_secret + config.access_token = @oauth_token + config.access_token_secret = @oauth_token_secret end needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} - @stream = TweetStream::Client.new if needs_stream + if needs_stream + @stream = Twitter::Streaming::Client.new( + ssl_socket_class: FiberSSLSocket + ) do |config| + config.consumer_key = @consumer_key + config.consumer_secret = @consumer_secret + config.access_token = @oauth_token + config.access_token_secret = @oauth_token_secret + end + end end - # Connects to tweetstream and opens event handlers for this bot - def start - configure - - @on_startup.call if @on_startup - - if not @stream - log "not bothering with stream for #@username" - return - end - + def start_stream log "starting stream for #@username" - @stream.on_error do |msg| - log "ERROR: #{msg}" - end - - @stream.on_inited do + @stream.before_request do log "Online!" end - @stream.on_event(:follow) do |event| - next if event[:source][:screen_name] == @username - log "Followed by #{event[:source][:screen_name]}" - @on_follow.call(event[:source]) if @on_follow - end + @stream.user do |ev| + p ev - @stream.on_direct_message do |dm| - next if dm[:sender][:screen_name] == @username # Don't reply to self - log "DM from @#{dm[:sender][:screen_name]}: #{dm[:text]}" - @on_message.call(dm) if @on_message - end + if ev.is_a? Twitter::DirectMessage + next if ev.sender.screen_name == @username # Don't reply to self + log "DM from @#{ev.sender.screen_name}: #{ev.text}" + @on_message.call(ev) if @on_message + end + + next unless ev.respond_to? :name + + if ev.name == :follow + next if ev.source.screen_name == @username + log "Followed by #{ev.source.screen_name}" + @on_follow.call(ev.source) if @on_follow + end - @stream.userstream do |ev| next unless ev.text # If it's not a text-containing tweet, ignore it next if ev.user.screen_name == @username # Ignore our own tweets @@ -108,7 +142,7 @@ module Ebooks end rescue Exception p ev.attrs[:entities][:user_mentions] - p ev[:text] + p ev.text raise end meta[:mentionless] = mless @@ -126,6 +160,27 @@ module Ebooks end end + # Connects to tweetstream and opens event handlers for this bot + def start + configure + + @on_startup.call if @on_startup + + if not @stream + log "not bothering with stream for #@username" + return + end + + fiber = Fiber.new do + start_stream + end + + socket = fiber.resume + + conn = EM.watch socket.io, FiberSocketHandler, fiber + conn.notify_readable = true + end + # Wrapper for EM.add_timer # Delays add a greater sense of humanity to bot behaviour def delay(time, &b) @@ -136,11 +191,12 @@ module Ebooks # Reply to a tweet or a DM. # Applies configurable @reply_delay range def reply(ev, text, opts={}) + p "reply???" opts = opts.clone if ev.is_a? Twitter::DirectMessage - log "Sending DM to @#{ev[:sender][:screen_name]}: #{text}" - @twitter.direct_message_create(ev[:sender][:screen_name], text, opts) + log "Sending DM to @#{ev.sender.screen_name}: #{text}" + @twitter.create_direct_message(ev.sender.screen_name, text, opts) elsif ev.is_a? Twitter::Tweet log "Replying to @#{ev.user.screen_name} with: #{text}" @twitter.update(text, in_reply_to_status_id: ev.id) From 746d2188965d875338a977b219bf2b476090c30c Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 14 Nov 2014 22:59:39 +1100 Subject: [PATCH 076/168] Fix tweet event handling --- lib/twitter_ebooks/bot.rb | 67 +++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 35 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index bcf7da9..1489063 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -112,50 +112,48 @@ module Ebooks next if ev.sender.screen_name == @username # Don't reply to self log "DM from @#{ev.sender.screen_name}: #{ev.text}" @on_message.call(ev) if @on_message - end - - next unless ev.respond_to? :name - - if ev.name == :follow + elsif ev.respond_to?(:name) && ev.name == :follow next if ev.source.screen_name == @username log "Followed by #{ev.source.screen_name}" @on_follow.call(ev.source) if @on_follow - end + elsif ev.is_a? Twitter::Tweet + next unless ev.text # If it's not a text-containing tweet, ignore it + next if ev.user.screen_name == @username # Ignore our own tweets - next unless ev.text # If it's not a text-containing tweet, ignore it - next if ev.user.screen_name == @username # Ignore our own tweets + meta = {} + mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } - meta = {} - mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } + reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } + reply_mentions = [ev.user.screen_name] + reply_mentions - reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } - reply_mentions = [ev.user.screen_name] + reply_mentions + meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' + meta[:limit] = 140 - meta[:reply_prefix].length - meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' - meta[:limit] = 140 - meta[:reply_prefix].length - - mless = ev.text - begin - ev.attrs[:entities][:user_mentions].reverse.each do |entity| - last = mless[entity[:indices][1]..-1]||'' - mless = mless[0...entity[:indices][0]] + last.strip + mless = ev.text + begin + ev.attrs[:entities][:user_mentions].reverse.each do |entity| + last = mless[entity[:indices][1]..-1]||'' + mless = mless[0...entity[:indices][0]] + last.strip + end + rescue Exception + p ev.attrs[:entities][:user_mentions] + p ev.text + raise end - rescue Exception - p ev.attrs[:entities][:user_mentions] - p ev.text - raise - end - meta[:mentionless] = mless + meta[:mentionless] = mless - # To check if this is a mention, ensure: - # - The tweet mentions list contains our username - # - The tweet is not being retweeted by somebody else - # - Or soft-retweeted by somebody else - if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') - log "Mention from @#{ev.user.screen_name}: #{ev.text}" - @on_mention.call(ev, meta) if @on_mention + # To check if this is a mention, ensure: + # - The tweet mentions list contains our username + # - The tweet is not being retweeted by somebody else + # - Or soft-retweeted by somebody else + if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') + log "Mention from @#{ev.user.screen_name}: #{ev.text}" + @on_mention.call(ev, meta) if @on_mention + else + @on_timeline.call(ev, meta) if @on_timeline + end else - @on_timeline.call(ev, meta) if @on_timeline + log "Unsure how to handle event: ", ev end end end @@ -191,7 +189,6 @@ module Ebooks # Reply to a tweet or a DM. # Applies configurable @reply_delay range def reply(ev, text, opts={}) - p "reply???" opts = opts.clone if ev.is_a? Twitter::DirectMessage From 5bfaac99dee61b8bce058ea49a0a21aa9db28651 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 03:55:32 +1100 Subject: [PATCH 077/168] Some actual tests for the bot response logic --- lib/twitter_ebooks/archive.rb | 8 +- lib/twitter_ebooks/bot.rb | 325 ++++++++++++++++++++-------------- spec/bot_spec.rb | 75 ++++++++ twitter_ebooks.gemspec | 3 +- 4 files changed, 276 insertions(+), 135 deletions(-) create mode 100644 spec/bot_spec.rb diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 566d9d8..281832f 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -21,9 +21,9 @@ module Ebooks @config[:consumer_key] = STDIN.gets.chomp print "Consumer secret: " @config[:consumer_secret] = STDIN.gets.chomp - print "Oauth token: " + print "Access token: " @config[:oauth_token] = STDIN.gets.chomp - print "Oauth secret: " + print "Access secret: " @config[:oauth_token_secret] = STDIN.gets.chomp File.open(CONFIG_PATH, 'w') do |f| @@ -34,8 +34,8 @@ module Ebooks Twitter::REST::Client.new do |config| config.consumer_key = @config[:consumer_key] config.consumer_secret = @config[:consumer_secret] - config.oauth_token = @config[:oauth_token] - config.oauth_token_secret = @config[:oauth_token_secret] + config.access_token = @config[:oauth_token] + config.access_token_secret = @config[:oauth_token_secret] end end diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 1489063..44496c4 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -4,56 +4,70 @@ require 'twitter' require 'rufus/scheduler' require 'eventmachine' -# Wrap SSLSocket so that readpartial yields the fiber instead of -# blocking when there is no data -# -# We hand this to the twitter library so we can select on the sockets -# and thus run multiple streams without them blocking -class FiberSSLSocket - def initialize(*args) - @socket = OpenSSL::SSL::SSLSocket.new(*args) - end - - def readpartial(maxlen) - data = "" - - loop do - begin - data = @socket.read_nonblock(maxlen) - rescue IO::WaitReadable - end - break if data.length > 0 - Fiber.yield(@socket) +module Ebooks + # Wrap SSLSocket so that readpartial yields the fiber instead of + # blocking when there is no data + # + # We hand this to the twitter library so we can select on the sockets + # and thus run multiple streams without them blocking + class FiberSSLSocket + def initialize(*args) + @socket = OpenSSL::SSL::SSLSocket.new(*args) end - data + def readpartial(maxlen) + data = "" + + loop do + begin + data = @socket.read_nonblock(maxlen) + rescue IO::WaitReadable + end + break if data.length > 0 + Fiber.yield(@socket) + end + + data + end + + def method_missing(m, *args) + @socket.send(m, *args) + end end - def method_missing(m, *args) - @socket.send(m, *args) - end -end + # An EventMachine handler which resumes a fiber on incoming data + class FiberSocketHandler < EventMachine::Connection + def initialize(fiber) + @fiber = fiber + end -# An EventMachine handler which resumes a fiber on incoming data -class FiberSocketHandler < EventMachine::Connection - def initialize(fiber) - @fiber = fiber + def notify_readable + @fiber.resume + end end - def notify_readable - @fiber.resume + class ConfigurationError < Exception + end + + # UserInfo tracks some meta information for how much + # we've interacted with a user, and how much they've responded + class UserInfo + attr_accessor :times_bugged, :times_responded + def initialize + self.times_bugged = 0 + self.times_responded = 0 + end end -end -module Ebooks class Bot attr_accessor :consumer_key, :consumer_secret, - :oauth_token, :oauth_token_secret - - attr_accessor :username + :access_token, :access_token_secret attr_reader :twitter, :stream + # Configuration + attr_accessor :username, :delay_range, :blacklist + @@all = [] # List of all defined bots def self.all; @@all; end @@ -61,114 +75,128 @@ module Ebooks all.find { |bot| bot.username == name } end - def initialize(username, &b) - # Set defaults - @username = username - - # Override with callback - b.call(self) - - Bot.all.push(self) - end - def log(*args) STDOUT.puts "@#{@username}: " + args.map(&:to_s).join(' ') STDOUT.flush end - def configure + def initialize + @username ||= nil + @blacklist ||= [] + @delay_range ||= 0 + @users ||= {} + configure + end + + def make_client @twitter = Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret - config.access_token = @oauth_token - config.access_token_secret = @oauth_token_secret + config.access_token = @access_token + config.access_token_secret = @access_token_secret end - needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?} + @stream = Twitter::Streaming::Client.new( + ssl_socket_class: FiberSSLSocket + ) do |config| + config.consumer_key = @consumer_key + config.consumer_secret = @consumer_secret + config.access_token = @access_token + config.access_token_secret = @access_token_secret + end + end - if needs_stream - @stream = Twitter::Streaming::Client.new( - ssl_socket_class: FiberSSLSocket - ) do |config| - config.consumer_key = @consumer_key - config.consumer_secret = @consumer_secret - config.access_token = @oauth_token - config.access_token_secret = @oauth_token_secret + # Calculate some meta information about a tweet relevant for replying + def calc_meta(ev) + meta = {} + meta[:mentions] = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } + + reply_mentions = meta[:mentions].reject { |m| m.downcase == @username.downcase } + reply_mentions = [ev.user.screen_name] + reply_mentions + + # Don't reply to more than three users at a time + if reply_mentions.length > 3 + log "Truncating reply_mentions to the first three users" + reply_mentions = reply_mentions[0..2] + end + + meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' + + meta[:limit] = 140 - meta[:reply_prefix].length + meta + end + + # Receive an event from the twitter stream + def receive_event(ev) + if ev.is_a? Array # Initial array sent on first connection + log "Online!" + return + end + + if ev.is_a? Twitter::DirectMessage + return if ev.sender.screen_name == @username # Don't reply to self + log "DM from @#{ev.sender.screen_name}: #{ev.text}" + fire(:direct_message, ev) + + elsif ev.respond_to?(:name) && ev.name == :follow + return if ev.source.screen_name == @username + log "Followed by #{ev.source.screen_name}" + fire(:follow, ev.source) + + elsif ev.is_a? Twitter::Tweet + return unless ev.text # If it's not a text-containing tweet, ignore it + return if ev.user.screen_name == @username # Ignore our own tweets + + meta = calc_meta(ev) + + mless = ev.text + begin + ev.attrs[:entities][:user_mentions].reverse.each do |entity| + last = mless[entity[:indices][1]..-1]||'' + mless = mless[0...entity[:indices][0]] + last.strip + end + rescue Exception + p ev.attrs[:entities][:user_mentions] + p ev.text + raise end + meta[:mentionless] = mless + + # To check if this is a mention, ensure: + # - The tweet mentions list contains our username + # - The tweet is not being retweeted by somebody else + # - Or soft-retweeted by somebody else + if meta[:mentions].map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') + log "Mention from @#{ev.user.screen_name}: #{ev.text}" + fire(:mention, ev, meta) + else + fire(:timeline, ev, meta) + end + elsif ev.is_a? Twitter::Streaming::DeletedTweet + # pass + else + log ev end end def start_stream log "starting stream for #@username" - @stream.before_request do - log "Online!" - end - @stream.user do |ev| - p ev - - if ev.is_a? Twitter::DirectMessage - next if ev.sender.screen_name == @username # Don't reply to self - log "DM from @#{ev.sender.screen_name}: #{ev.text}" - @on_message.call(ev) if @on_message - elsif ev.respond_to?(:name) && ev.name == :follow - next if ev.source.screen_name == @username - log "Followed by #{ev.source.screen_name}" - @on_follow.call(ev.source) if @on_follow - elsif ev.is_a? Twitter::Tweet - next unless ev.text # If it's not a text-containing tweet, ignore it - next if ev.user.screen_name == @username # Ignore our own tweets - - meta = {} - mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } - - reply_mentions = mentions.reject { |m| m.downcase == @username.downcase } - reply_mentions = [ev.user.screen_name] + reply_mentions - - meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' - meta[:limit] = 140 - meta[:reply_prefix].length - - mless = ev.text - begin - ev.attrs[:entities][:user_mentions].reverse.each do |entity| - last = mless[entity[:indices][1]..-1]||'' - mless = mless[0...entity[:indices][0]] + last.strip - end - rescue Exception - p ev.attrs[:entities][:user_mentions] - p ev.text - raise - end - meta[:mentionless] = mless - - # To check if this is a mention, ensure: - # - The tweet mentions list contains our username - # - The tweet is not being retweeted by somebody else - # - Or soft-retweeted by somebody else - if mentions.map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') - log "Mention from @#{ev.user.screen_name}: #{ev.text}" - @on_mention.call(ev, meta) if @on_mention - else - @on_timeline.call(ev, meta) if @on_timeline - end - else - log "Unsure how to handle event: ", ev - end + receive_event ev end end # Connects to tweetstream and opens event handlers for this bot def start - configure - - @on_startup.call if @on_startup - - if not @stream - log "not bothering with stream for #@username" - return + # Sanity check + if @username.nil? + raise ConfigurationError, "bot.username cannot be nil" end + make_client + fire(:startup) + fiber = Fiber.new do start_stream end @@ -179,35 +207,74 @@ module Ebooks conn.notify_readable = true end + # Fire an event + def fire(event, *args) + handler = "on_#{event}".to_sym + if respond_to? handler + self.send(handler, *args) + end + end + # Wrapper for EM.add_timer # Delays add a greater sense of humanity to bot behaviour - def delay(time, &b) - time = time.to_a.sample unless time.is_a? Integer + def delay(&b) + time = @delay.to_a.sample unless @delay.is_a? Integer EM.add_timer(time, &b) end + def blacklisted?(username) + if @blacklist.include?(username) + log "Saw scary blacklisted user @#{username}" + true + else + false + end + end + # Reply to a tweet or a DM. - # Applies configurable @reply_delay range def reply(ev, text, opts={}) opts = opts.clone if ev.is_a? Twitter::DirectMessage + return if blacklisted?(ev.sender.screen_name) log "Sending DM to @#{ev.sender.screen_name}: #{text}" @twitter.create_direct_message(ev.sender.screen_name, text, opts) elsif ev.is_a? Twitter::Tweet + meta = calc_meta(ev) + + return if blacklisted?(ev.user.screen_name) log "Replying to @#{ev.user.screen_name} with: #{text}" - @twitter.update(text, in_reply_to_status_id: ev.id) + @twitter.update(meta[:reply_prefix] + text, in_reply_to_status_id: ev.id) else raise Exception("Don't know how to reply to a #{ev.class}") end end - def scheduler - @scheduler ||= Rufus::Scheduler.new + def favorite(tweet) + return if blacklisted?(tweet.user.screen_name) + log "Favoriting @#{tweet.user.screen_name}: #{tweet.text}" + + begin + @twitter.favorite(tweet.id) + rescue Twitter::Error::Forbidden + log "Already favorited: #{tweet.user.screen_name}: #{tweet.text}" + end + end + + def retweet(tweet) + return if blacklisted?(tweet.user.screen_name) + log "Retweeting @#{tweet.user.screen_name}: #{tweet.text}" + + begin + @twitter.retweet(tweet.id) + rescue Twitter::Error::Forbidden + log "Already retweeted: #{tweet.user.screen_name}: #{tweet.text}" + end end def follow(*args) log "Following #{args}" + @twitter.follow(*args) end @@ -216,16 +283,14 @@ module Ebooks @twitter.update(*args) end + def scheduler + @scheduler ||= Rufus::Scheduler.new + end + # could easily just be *args however the separation keeps it clean. def pictweet(txt, pic, *args) log "Tweeting #{txt.inspect} - #{pic} #{args}" @twitter.update_with_media(txt, File.new(pic), *args) end - - def on_startup(&b); @on_startup = b; end - def on_follow(&b); @on_follow = b; end - def on_mention(&b); @on_mention = b; end - def on_timeline(&b); @on_timeline = b; end - def on_message(&b); @on_message = b; end end end diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb new file mode 100644 index 0000000..d7da4cf --- /dev/null +++ b/spec/bot_spec.rb @@ -0,0 +1,75 @@ +require 'spec_helper' +require 'memory_profiler' +require 'tempfile' + +def Process.rss; `ps -o rss= -p #{Process.pid}`.chomp.to_i; end + +class TestBot < Ebooks::Bot + attr_accessor :twitter + + def configure + self.username = "test_ebooks" + end + + def on_direct_message(dm) + reply dm, "echo: #{dm.text}" + end + + def on_mention(tweet, meta) + reply tweet, "echo: #{meta[:mentionless]}" + end + + def on_timeline(tweet, meta) + reply tweet, "fine tweet good sir" + end +end + +def twitter_id + 533295311591337984 +end + +def mock_dm(username, text) + Twitter::DirectMessage.new(id: twitter_id, + sender: { id: twitter_id, screen_name: username}, + text: text) +end + +def mock_tweet(username, text) + mentions = text.split.find_all { |x| x.start_with?('@') } + Twitter::Tweet.new( + id: twitter_id, + user: { id: twitter_id, screen_name: username }, + text: text, + entities: { + user_mentions: mentions.map { |m| + { screen_name: m.split('@')[1], + indices: [text.index(m), text.index(m)+m.length] } + } + } + ) +end + +describe Ebooks::Bot do + let(:bot) { TestBot.new } + + it "responds to dms" do + bot.twitter = double("twitter") + expect(bot.twitter).to receive(:create_direct_message).with("m1sp", "echo: this is a dm", {}) + bot.receive_event(mock_dm("m1sp", "this is a dm")) + end + + it "responds to mentions" do + bot.twitter = double("twitter") + expect(bot.twitter).to receive(:update).with("@m1sp echo: this is a mention", + in_reply_to_status_id: twitter_id) + bot.receive_event(mock_tweet("m1sp", "@test_ebooks this is a mention")) + end + + it "responds to timeline tweets" do + bot.twitter = double("twitter") + expect(bot.twitter).to receive(:update).with("@m1sp fine tweet good sir", + in_reply_to_status_id: twitter_id) + + bot.receive_event(mock_tweet("m1sp", "some excellent tweet")) + end +end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 0fec762..eccbb22 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -16,12 +16,13 @@ Gem::Specification.new do |gem| gem.version = Ebooks::VERSION gem.add_development_dependency 'rspec' + gem.add_development_dependency 'rspec-mocks' gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth', '~> 0.2.0' - gem.add_runtime_dependency 'tweetstream' + gem.add_runtime_dependency 'eventmachine', '~> 1.0.3' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' gem.add_runtime_dependency 'htmlentities' From f416c73c54706df56d29567c345716c93afeaab5 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:01:10 +1100 Subject: [PATCH 078/168] Add gem badge --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 69629d3..67d86d8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # twitter\_ebooks 2.3.2 +[![Gem Version](https://badge.fury.io/rb/twitter_ebooks.svg)](http://badge.fury.io/rb/twitter_ebooks) + Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. ## Installation @@ -25,7 +27,7 @@ Ebooks::Bot.new("abby_ebooks") do |bot| bot.consumer_secret = "" # Your app consumer secret bot.oauth_token = "" # Token connecting the app to this account bot.oauth_token_secret = "" # Secret connecting the app to this account - + bot.on_startup do # Run some startup task # puts "I'm ready!" From 8da021e19305e1478f945f4e2fc62fdaafaa8c95 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:02:05 +1100 Subject: [PATCH 079/168] Add .travis.yml and build badge --- .travis.yml | 11 +++++++++++ README.md | 1 + 2 files changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..57c2b52 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: ruby +cache: bundler +rvm: + - 1.9.3 + - 2.1.4 +bundler_args: -j4 --without development production --quiet +script: + - bundle exec rspec spec +notifications: + email: + - ebooks@mispy.me diff --git a/README.md b/README.md index 67d86d8..9fcdf40 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # twitter\_ebooks 2.3.2 [![Gem Version](https://badge.fury.io/rb/twitter_ebooks.svg)](http://badge.fury.io/rb/twitter_ebooks) +[![Build Status](https://travis-ci.org/mispy/twitter_ebooks.svg)](https://travis-ci.org/mispy/twitter_ebooks) Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. From c79d44cab57746157a739db2e8d427b404a158e3 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:04:11 +1100 Subject: [PATCH 080/168] Add dependency badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9fcdf40..da4dfd5 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![Gem Version](https://badge.fury.io/rb/twitter_ebooks.svg)](http://badge.fury.io/rb/twitter_ebooks) [![Build Status](https://travis-ci.org/mispy/twitter_ebooks.svg)](https://travis-ci.org/mispy/twitter_ebooks) +[![Dependency Status](https://gemnasium.com/mispy/twitter_ebooks.svg)](https://gemnasium.com/mispy/twitter_ebooks) + Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. From 850cc6f345bead65130974a35b35561cc0f28343 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:05:18 +1100 Subject: [PATCH 081/168] Update simple_oauth to 0.3.0 --- twitter_ebooks.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index eccbb22..e3a3f14 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'pry-byebug' gem.add_runtime_dependency 'twitter', '~> 5.0' - gem.add_runtime_dependency 'simple_oauth', '~> 0.2.0' + gem.add_runtime_dependency 'simple_oauth' gem.add_runtime_dependency 'eventmachine', '~> 1.0.3' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' From b273ba9fea45b006fbec8492cb176a69acd60cef Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:15:03 +1100 Subject: [PATCH 082/168] silly travis --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 57c2b52..932924a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,8 @@ -language: ruby -cache: bundler rvm: - 1.9.3 - 2.1.4 -bundler_args: -j4 --without development production --quiet script: - - bundle exec rspec spec + - rspec spec notifications: email: - ebooks@mispy.me From b290e013c06c1467b538e0e28d08b3db8f180372 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:20:18 +1100 Subject: [PATCH 083/168] no byebug for the moment --- README.md | 2 +- twitter_ebooks.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da4dfd5..fc3ea93 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# twitter\_ebooks 2.3.2 +# twitter\_ebooks [![Gem Version](https://badge.fury.io/rb/twitter_ebooks.svg)](http://badge.fury.io/rb/twitter_ebooks) [![Build Status](https://travis-ci.org/mispy/twitter_ebooks.svg)](https://travis-ci.org/mispy/twitter_ebooks) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index e3a3f14..af9ab11 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'rspec' gem.add_development_dependency 'rspec-mocks' gem.add_development_dependency 'memory_profiler' - gem.add_development_dependency 'pry-byebug' + #gem.add_development_dependency 'pry-byebug' gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth' From a003946194939833f5917786fdcab2b8140bb126 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:35:03 +1100 Subject: [PATCH 084/168] Require ruby 2.0+ --- .travis.yml | 3 +-- README.md | 2 +- twitter_ebooks.gemspec | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 932924a..9bfde18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ rvm: - - 1.9.3 - - 2.1.4 + - 2.0.0 script: - rspec spec notifications: diff --git a/README.md b/README.md index fc3ea93..ed5506c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Mar ## Installation -Requires Ruby 1.9.3+ (2.1+ recommended) +Requires Ruby 2.0+ ```bash gem install twitter_ebooks diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index af9ab11..e3a3f14 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'rspec' gem.add_development_dependency 'rspec-mocks' gem.add_development_dependency 'memory_profiler' - #gem.add_development_dependency 'pry-byebug' + gem.add_development_dependency 'pry-byebug' gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth' From 8326fc19dd4a06e002f726605b3102681dbd6d5c Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 15 Nov 2014 04:46:12 +1100 Subject: [PATCH 085/168] INTERNAL_CONSTANTS is really recent --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9bfde18..df0c8fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ rvm: - - 2.0.0 + - 2.1.4 script: - rspec spec notifications: From 29beb23502aefd81c6d382cb0214cad8e7a2cc55 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 18 Nov 2014 12:00:34 +1100 Subject: [PATCH 086/168] Bot anti-bot measures We assume a user is a bot if it has 'ebooks' in the name or if it replies more than once in a 30-second window --- lib/twitter_ebooks/bot.rb | 141 ++++++++++++++++++++++++++++---------- spec/bot_spec.rb | 134 +++++++++++++++++++++++++++--------- twitter_ebooks.gemspec | 1 + 3 files changed, 209 insertions(+), 67 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 44496c4..d2546ba 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -49,13 +49,56 @@ module Ebooks class ConfigurationError < Exception end - # UserInfo tracks some meta information for how much - # we've interacted with a user, and how much they've responded + # We track how many unprompted interactions the bot has had with + # each user and start dropping them from mentions after two in a row class UserInfo - attr_accessor :times_bugged, :times_responded - def initialize - self.times_bugged = 0 - self.times_responded = 0 + attr_reader :username + attr_accessor :pester_count + + def initialize(username) + @username = username + @pester_count = 0 + end + + def can_pester? + @pester_count < 2 + end + end + + # Represents a current "interaction state" with another user + class Interaction + attr_reader :userinfo, :received, :last_update + + def initialize(userinfo) + @userinfo = userinfo + @received = [] + @last_update = Time.now + end + + def receive(tweet) + @received << tweet + @last_update = Time.now + @userinfo.pester_count = 0 + end + + # Make an informed guess as to whether this user is a bot + # based on its username and reply speed + def is_bot? + if @received.length > 1 + if (@received[-1].created_at - @received[-2].created_at) < 30 + return true + end + end + + @userinfo.username.include?("ebooks") + end + + def continue? + if is_bot? + true if @received.length < 2 + else + true + end end end @@ -80,13 +123,27 @@ module Ebooks STDOUT.flush end - def initialize + def initialize(*args, &b) @username ||= nil @blacklist ||= [] @delay_range ||= 0 @users ||= {} - configure + @interactions ||= {} + configure(*args, &b) + end + + def userinfo(username) + @users[username] ||= UserInfo.new(username) + end + + def interaction(username) + if @interactions[username] && + Time.now - @interactions[username].last_update < 600 + @interactions[username] + else + @interactions[username] = Interaction.new(userinfo(username)) + end end def make_client @@ -112,18 +169,34 @@ module Ebooks meta = {} meta[:mentions] = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } + # To check if this is someone talking to us, ensure: + # - The tweet mentions list contains our username + # - The tweet is not being retweeted by somebody else + # - Or soft-retweeted by somebody else + meta[:mentions_bot] = meta[:mentions].map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') + + # Process mentions to figure out who to reply to reply_mentions = meta[:mentions].reject { |m| m.downcase == @username.downcase } - reply_mentions = [ev.user.screen_name] + reply_mentions + reply_mentions = reply_mentions.select { |username| userinfo(username).can_pester? } + meta[:reply_mentions] = [ev.user.screen_name] + reply_mentions - # Don't reply to more than three users at a time - if reply_mentions.length > 3 - log "Truncating reply_mentions to the first three users" - reply_mentions = reply_mentions[0..2] - end - - meta[:reply_prefix] = reply_mentions.uniq.map { |m| '@'+m }.join(' ') + ' ' + meta[:reply_prefix] = meta[:reply_mentions].uniq.map { |m| '@'+m }.join(' ') + ' ' meta[:limit] = 140 - meta[:reply_prefix].length + + mless = ev.text + begin + ev.attrs[:entities][:user_mentions].reverse.each do |entity| + last = mless[entity[:indices][1]..-1]||'' + mless = mless[0...entity[:indices][0]] + last.strip + end + rescue Exception + p ev.attrs[:entities][:user_mentions] + p ev.text + raise + end + meta[:mentionless] = mless + meta end @@ -150,29 +223,14 @@ module Ebooks meta = calc_meta(ev) - mless = ev.text - begin - ev.attrs[:entities][:user_mentions].reverse.each do |entity| - last = mless[entity[:indices][1]..-1]||'' - mless = mless[0...entity[:indices][0]] + last.strip - end - rescue Exception - p ev.attrs[:entities][:user_mentions] - p ev.text - raise - end - meta[:mentionless] = mless - - # To check if this is a mention, ensure: - # - The tweet mentions list contains our username - # - The tweet is not being retweeted by somebody else - # - Or soft-retweeted by somebody else - if meta[:mentions].map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') + if meta[:mentions_bot] log "Mention from @#{ev.user.screen_name}: #{ev.text}" + interaction(ev.user.screen_name).receive(ev) fire(:mention, ev, meta) else fire(:timeline, ev, meta) end + elsif ev.is_a? Twitter::Streaming::DeletedTweet # pass else @@ -242,9 +300,20 @@ module Ebooks elsif ev.is_a? Twitter::Tweet meta = calc_meta(ev) - return if blacklisted?(ev.user.screen_name) - log "Replying to @#{ev.user.screen_name} with: #{text}" + if blacklisted?(ev.user.screen_name) + log "Not replying to blacklisted user @#{ev.user.screen_name}" + return + elsif !interaction(ev.user.screen_name).continue? + log "Not replying to suspected bot @#{ev.user.screen_name}" + return + end + + log "Replying to @#{ev.user.screen_name} with: #{meta[:reply_prefix] + text}" @twitter.update(meta[:reply_prefix] + text, in_reply_to_status_id: ev.id) + + meta[:reply_mentions].each do |username| + userinfo(username).pester_count += 1 + end else raise Exception("Don't know how to reply to a #{ev.class}") end diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index d7da4cf..af313b2 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -1,6 +1,7 @@ require 'spec_helper' require 'memory_profiler' require 'tempfile' +require 'timecop' def Process.rss; `ps -o rss= -p #{Process.pid}`.chomp.to_i; end @@ -24,52 +25,123 @@ class TestBot < Ebooks::Bot end end -def twitter_id - 533295311591337984 -end +module Ebooks::Test + # Generates a random twitter id + def twitter_id + (rand*10**18).to_i + end -def mock_dm(username, text) - Twitter::DirectMessage.new(id: twitter_id, - sender: { id: twitter_id, screen_name: username}, - text: text) -end + # Creates a mock direct message + # @param username User sending the DM + # @param text DM content + def mock_dm(username, text) + Twitter::DirectMessage.new(id: twitter_id, + sender: { id: twitter_id, screen_name: username}, + text: text) + end -def mock_tweet(username, text) - mentions = text.split.find_all { |x| x.start_with?('@') } - Twitter::Tweet.new( - id: twitter_id, - user: { id: twitter_id, screen_name: username }, - text: text, - entities: { - user_mentions: mentions.map { |m| - { screen_name: m.split('@')[1], - indices: [text.index(m), text.index(m)+m.length] } + # Creates a mock tweet + # @param username User sending the tweet + # @param text Tweet content + def mock_tweet(username, text) + mentions = text.split.find_all { |x| x.start_with?('@') } + Twitter::Tweet.new( + id: twitter_id, + user: { id: twitter_id, screen_name: username }, + text: text, + created_at: Time.now.to_s, + entities: { + user_mentions: mentions.map { |m| + { screen_name: m.split('@')[1], + indices: [text.index(m), text.index(m)+m.length] } + } } - } - ) + ) + end + + def simulate(bot, &b) + bot.twitter = spy("twitter") + b.call + end + + def expect_direct_message(bot, content) + expect(bot.twitter).to have_received(:create_direct_message).with(anything(), content, {}) + bot.twitter = spy("twitter") + end + + def expect_tweet(bot, content) + expect(bot.twitter).to have_received(:update).with(content, anything()) + bot.twitter = spy("twitter") + end end + describe Ebooks::Bot do + include Ebooks::Test let(:bot) { TestBot.new } + before { Timecop.freeze } + after { Timecop.return } + it "responds to dms" do - bot.twitter = double("twitter") - expect(bot.twitter).to receive(:create_direct_message).with("m1sp", "echo: this is a dm", {}) - bot.receive_event(mock_dm("m1sp", "this is a dm")) + simulate(bot) do + bot.receive_event(mock_dm("m1sp", "this is a dm")) + expect_direct_message(bot, "echo: this is a dm") + end end it "responds to mentions" do - bot.twitter = double("twitter") - expect(bot.twitter).to receive(:update).with("@m1sp echo: this is a mention", - in_reply_to_status_id: twitter_id) - bot.receive_event(mock_tweet("m1sp", "@test_ebooks this is a mention")) + simulate(bot) do + bot.receive_event(mock_tweet("m1sp", "@test_ebooks this is a mention")) + expect_tweet(bot, "@m1sp echo: this is a mention") + end end it "responds to timeline tweets" do - bot.twitter = double("twitter") - expect(bot.twitter).to receive(:update).with("@m1sp fine tweet good sir", - in_reply_to_status_id: twitter_id) + simulate(bot) do + bot.receive_event(mock_tweet("m1sp", "some excellent tweet")) + expect_tweet(bot, "@m1sp fine tweet good sir") + end + end - bot.receive_event(mock_tweet("m1sp", "some excellent tweet")) + it "stops mentioning people after a certain limit" do + simulate(bot) do + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 1")) + expect_tweet(bot, "@spammer @m1sp echo: 1") + + Timecop.travel(Time.now + 60) + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 2")) + expect_tweet(bot, "@spammer @m1sp echo: 2") + + Timecop.travel(Time.now + 60) + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 3")) + expect_tweet(bot, "@spammer echo: 3") + end + end + + it "doesn't stop mentioning them if they reply" do + simulate(bot) do + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 4")) + expect_tweet(bot, "@spammer @m1sp echo: 4") + + Timecop.travel(Time.now + 60) + bot.receive_event(mock_tweet("m1sp", "@spammer @test_ebooks 5")) + expect_tweet(bot, "@m1sp @spammer echo: 5") + + Timecop.travel(Time.now + 60) + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 6")) + expect_tweet(bot, "@spammer @m1sp echo: 6") + end + end + + it "doesn't get into infinite bot conversations" do + simulate(bot) do + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 7")) + expect_tweet(bot, "@spammer @m1sp echo: 7") + + Timecop.travel(Time.now + 10) + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 8")) + expect(bot.twitter).to_not have_received(:update) + end end end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index e3a3f14..5a41e0d 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -19,6 +19,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'rspec-mocks' gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'pry-byebug' + gem.add_development_dependency 'timecop' gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth' From b72a6db0e13e3727ab010e3de04c143c02401ee0 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 18 Nov 2014 13:24:59 +1100 Subject: [PATCH 087/168] Threading! --- lib/twitter_ebooks.rb | 2 +- lib/twitter_ebooks/bot.rb | 68 +++++-------------------------------- lib/twitter_ebooks/model.rb | 23 +++++++++++-- 3 files changed, 31 insertions(+), 62 deletions(-) diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb index 830fbcc..ea857f4 100644 --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -1,7 +1,7 @@ $debug = false def log(*args) - STDERR.puts args.map(&:to_s).join(' ') + STDERR.print args.map(&:to_s).join(' ') + "\n" STDERR.flush end diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index d2546ba..149968b 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -1,51 +1,8 @@ -#!/usr/bin/env ruby # encoding: utf-8 require 'twitter' require 'rufus/scheduler' -require 'eventmachine' module Ebooks - # Wrap SSLSocket so that readpartial yields the fiber instead of - # blocking when there is no data - # - # We hand this to the twitter library so we can select on the sockets - # and thus run multiple streams without them blocking - class FiberSSLSocket - def initialize(*args) - @socket = OpenSSL::SSL::SSLSocket.new(*args) - end - - def readpartial(maxlen) - data = "" - - loop do - begin - data = @socket.read_nonblock(maxlen) - rescue IO::WaitReadable - end - break if data.length > 0 - Fiber.yield(@socket) - end - - data - end - - def method_missing(m, *args) - @socket.send(m, *args) - end - end - - # An EventMachine handler which resumes a fiber on incoming data - class FiberSocketHandler < EventMachine::Connection - def initialize(fiber) - @fiber = fiber - end - - def notify_readable - @fiber.resume - end - end - class ConfigurationError < Exception end @@ -106,7 +63,7 @@ module Ebooks attr_accessor :consumer_key, :consumer_secret, :access_token, :access_token_secret - attr_reader :twitter, :stream + attr_reader :twitter, :stream, :thread # Configuration attr_accessor :username, :delay_range, :blacklist @@ -119,7 +76,7 @@ module Ebooks end def log(*args) - STDOUT.puts "@#{@username}: " + args.map(&:to_s).join(' ') + STDOUT.print "@#{@username}: " + args.map(&:to_s).join(' ') + "\n" STDOUT.flush end @@ -154,9 +111,7 @@ module Ebooks config.access_token_secret = @access_token_secret end - @stream = Twitter::Streaming::Client.new( - ssl_socket_class: FiberSSLSocket - ) do |config| + @stream = Twitter::Streaming::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret config.access_token = @access_token @@ -239,14 +194,13 @@ module Ebooks end def start_stream - log "starting stream for #@username" + log "starting tweet stream" @stream.user do |ev| receive_event ev end end - # Connects to tweetstream and opens event handlers for this bot - def start + def prepare # Sanity check if @username.nil? raise ConfigurationError, "bot.username cannot be nil" @@ -254,15 +208,11 @@ module Ebooks make_client fire(:startup) + end - fiber = Fiber.new do - start_stream - end - - socket = fiber.resume - - conn = EM.watch socket.io, FiberSocketHandler, fiber - conn.notify_readable = true + # Connects to tweetstream and opens event handlers for this bot + def start + start_stream end # Fire an event diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 0f1bbad..fd5ff7d 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -4,14 +4,33 @@ require 'json' require 'set' require 'digest/md5' +require 'fileutils' require 'csv' module Ebooks class Model attr_accessor :hash, :tokens, :sentences, :mentions, :keywords - def self.consume(txtpath) - Model.new.consume(txtpath) + # Consume a corpus file to create a model + # @param corpus_path Path to a json, text or csv file to consume + # @param cache Optional path to a directory to store cached models + def self.consume(corpus_path, cache: nil) + if cache + FileUtils::mkdir_p cache + + cache_path = File.join(cache, Digest::MD5.file(corpus_path).to_s) + if File.exists?(cache_path) + log "Reading model from cache at #{cache_path}" + return Model.load(cache_path) + end + end + + model = Model.new.consume(corpus_path) + + if cache + log "Caching model at #{cache_path}" + model.save(cache_path) + end end def self.consume_all(paths) From 9d8e30d7f61853e6dff7d42cc2dc8dcc09e4e70b Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 18 Nov 2014 13:26:06 +1100 Subject: [PATCH 088/168] Don't be so hasty to consider people bots --- lib/twitter_ebooks/bot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 149968b..b0e3350 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -41,8 +41,8 @@ module Ebooks # Make an informed guess as to whether this user is a bot # based on its username and reply speed def is_bot? - if @received.length > 1 - if (@received[-1].created_at - @received[-2].created_at) < 30 + if @received.length > 2 + if (@received[-1].created_at - @received[-3].created_at) < 30 return true end end From 8135aaaabbd98dc1f0f7fa5a73f4066398dc1558 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 18 Nov 2014 13:31:59 +1100 Subject: [PATCH 089/168] Use can_pester? logic for timeline tweets --- lib/twitter_ebooks/bot.rb | 5 +++++ spec/bot_spec.rb | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index b0e3350..442a0d3 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -258,6 +258,11 @@ module Ebooks return end + if !meta[:mentions_bot] && !userinfo(ev.user.screen_name).can_pester? + log "Already pestered @#{ev.user.screen_name} enough for now" + return + end + log "Replying to @#{ev.user.screen_name} with: #{meta[:reply_prefix] + text}" @twitter.update(meta[:reply_prefix] + text, in_reply_to_status_id: ev.id) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index af313b2..594b601 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -141,6 +141,10 @@ describe Ebooks::Bot do Timecop.travel(Time.now + 10) bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 8")) + expect_tweet(bot, "@spammer @m1sp echo: 8") + + Timecop.travel(Time.now + 10) + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 9")) expect(bot.twitter).to_not have_received(:update) end end From 2e336fb9bedae5c3855b1454ef6a665e61636b81 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 18 Nov 2014 13:51:31 +1100 Subject: [PATCH 090/168] On second thought, we can't use a cache system Simply because the corpuses are too darn big to keep around --- lib/twitter_ebooks/model.rb | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index fd5ff7d..0f1bbad 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -4,33 +4,14 @@ require 'json' require 'set' require 'digest/md5' -require 'fileutils' require 'csv' module Ebooks class Model attr_accessor :hash, :tokens, :sentences, :mentions, :keywords - # Consume a corpus file to create a model - # @param corpus_path Path to a json, text or csv file to consume - # @param cache Optional path to a directory to store cached models - def self.consume(corpus_path, cache: nil) - if cache - FileUtils::mkdir_p cache - - cache_path = File.join(cache, Digest::MD5.file(corpus_path).to_s) - if File.exists?(cache_path) - log "Reading model from cache at #{cache_path}" - return Model.load(cache_path) - end - end - - model = Model.new.consume(corpus_path) - - if cache - log "Caching model at #{cache_path}" - model.save(cache_path) - end + def self.consume(txtpath) + Model.new.consume(txtpath) end def self.consume_all(paths) From 24e8ce5ae327203eca4f7b8dfc0be95cb0d5e2e6 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 18 Nov 2014 14:31:59 +1100 Subject: [PATCH 091/168] Block blacklisted users on contact --- lib/twitter_ebooks/bot.rb | 18 +++++++++--------- spec/bot_spec.rb | 8 ++++++++ 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 442a0d3..62a67a8 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -178,6 +178,11 @@ module Ebooks meta = calc_meta(ev) + if blacklisted?(ev.user.screen_name) + log "Blocking blacklisted user @#{ev.user.screen_name}" + @twitter.block(ev.user.screen_name) + end + if meta[:mentions_bot] log "Mention from @#{ev.user.screen_name}: #{ev.text}" interaction(ev.user.screen_name).receive(ev) @@ -186,7 +191,8 @@ module Ebooks fire(:timeline, ev, meta) end - elsif ev.is_a? Twitter::Streaming::DeletedTweet + elsif ev.is_a?(Twitter::Streaming::DeletedTweet) || + ev.is_a?(Twitter::Streaming::Event) # pass else log ev @@ -223,16 +229,13 @@ module Ebooks end end - # Wrapper for EM.add_timer - # Delays add a greater sense of humanity to bot behaviour def delay(&b) time = @delay.to_a.sample unless @delay.is_a? Integer - EM.add_timer(time, &b) + sleep time end def blacklisted?(username) if @blacklist.include?(username) - log "Saw scary blacklisted user @#{username}" true else false @@ -250,10 +253,7 @@ module Ebooks elsif ev.is_a? Twitter::Tweet meta = calc_meta(ev) - if blacklisted?(ev.user.screen_name) - log "Not replying to blacklisted user @#{ev.user.screen_name}" - return - elsif !interaction(ev.user.screen_name).continue? + if !interaction(ev.user.screen_name).continue? log "Not replying to suspected bot @#{ev.user.screen_name}" return end diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 594b601..9a18dd3 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -148,4 +148,12 @@ describe Ebooks::Bot do expect(bot.twitter).to_not have_received(:update) end end + + it "blocks blacklisted users on contact" do + simulate(bot) do + bot.blacklist = ["spammer"] + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 7")) + expect(bot.twitter).to have_received(:block).with("spammer") + end + end end From 1a40ef85f9377e3c733ea8304f985591f28b818f Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Wed, 19 Nov 2014 10:07:29 +1100 Subject: [PATCH 092/168] Slightly different pesters model --- bin/ebooks | 48 +++-------------------------- lib/twitter_ebooks/bot.rb | 65 ++++++++++++++++++++++++--------------- 2 files changed, 45 insertions(+), 68 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index a8cdbba..1864380 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -163,49 +163,9 @@ STR bot.tweet(statement) end - def self.jsonify(paths) - usage = < [old_corpus_path2] [...] - -Takes an old-style corpus of plain tweet text and converts it to json. -STR - - if paths.empty? - log usage - exit - end - - paths.each do |path| - name = File.basename(path).split('.')[0] - new_path = name + ".json" - - tweets = [] - id = nil - if path.split('.')[-1] == "csv" #from twitter archive - csv_archive = CSV.read(path, :headers=>:first_row) - tweets = csv_archive.map do |tweet| - { text: tweet['text'], id: tweet['tweet_id'] } - end - else - File.read(path).split("\n").each do |l| - if l.start_with?('# ') - id = l.split('# ')[-1] - else - tweet = { text: l } - if id - tweet[:id] = id - id = nil - end - tweets << tweet - end - end - end - - File.open(new_path, 'w') do |f| - log "Writing #{tweets.length} tweets to #{new_path}" - f.write(JSON.pretty_generate(tweets)) - end - end + def self.c + load 'bots.rb' + require 'pry'; pry end def self.command(args) @@ -218,7 +178,6 @@ Usage: ebooks score ebooks archive <@user> ebooks tweet - ebooks jsonify [old_corpus_path2] [...] STR if args.length == 0 @@ -235,6 +194,7 @@ STR when "archive" then archive(args[1], args[2]) when "tweet" then tweet(args[1], args[2]) when "jsonify" then jsonify(args[1..-1]) + when "c" then c else log usage exit 1 diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 62a67a8..4490504 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -10,15 +10,15 @@ module Ebooks # each user and start dropping them from mentions after two in a row class UserInfo attr_reader :username - attr_accessor :pester_count + attr_accessor :pesters_left def initialize(username) @username = username - @pester_count = 0 + @pesters_left = 1 end def can_pester? - @pester_count < 2 + @pesters_left > 0 end end @@ -35,7 +35,7 @@ module Ebooks def receive(tweet) @received << tweet @last_update = Time.now - @userinfo.pester_count = 0 + @userinfo.pesters_left += 2 end # Make an informed guess as to whether this user is a bot @@ -88,6 +88,9 @@ module Ebooks @users ||= {} @interactions ||= {} configure(*args, &b) + + # Tweet ids we've already observed, to avoid duplication + @seen_tweets ||= {} end def userinfo(username) @@ -103,15 +106,17 @@ module Ebooks end end - def make_client - @twitter = Twitter::REST::Client.new do |config| + def twitter + @twitter ||= Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret config.access_token = @access_token config.access_token_secret = @access_token_secret end + end - @stream = Twitter::Streaming::Client.new do |config| + def stream + @stream ||= Twitter::Streaming::Client.new do |config| config.consumer_key = @consumer_key config.consumer_secret = @consumer_secret config.access_token = @access_token @@ -183,6 +188,13 @@ module Ebooks @twitter.block(ev.user.screen_name) end + # Avoid responding to duplicate tweets + if @seen_tweets[ev.id] + return + else + @seen_tweets[ev.id] = true + end + if meta[:mentions_bot] log "Mention from @#{ev.user.screen_name}: #{ev.text}" interaction(ev.user.screen_name).receive(ev) @@ -201,7 +213,8 @@ module Ebooks def start_stream log "starting tweet stream" - @stream.user do |ev| + + stream.user do |ev| receive_event ev end end @@ -212,7 +225,7 @@ module Ebooks raise ConfigurationError, "bot.username cannot be nil" end - make_client + twitter fire(:startup) end @@ -249,7 +262,7 @@ module Ebooks if ev.is_a? Twitter::DirectMessage return if blacklisted?(ev.sender.screen_name) log "Sending DM to @#{ev.sender.screen_name}: #{text}" - @twitter.create_direct_message(ev.sender.screen_name, text, opts) + twitter.create_direct_message(ev.sender.screen_name, text, opts) elsif ev.is_a? Twitter::Tweet meta = calc_meta(ev) @@ -258,17 +271,17 @@ module Ebooks return end - if !meta[:mentions_bot] && !userinfo(ev.user.screen_name).can_pester? - log "Already pestered @#{ev.user.screen_name} enough for now" - return + if !meta[:mentions_bot] + if !userinfo(ev.user.screen_name).can_pester? + log "Not replying: leaving @#{ev.user.screen_name} alone" + return + else + userinfo(ev.user.screen_name).pesters_left -= 1 + end end log "Replying to @#{ev.user.screen_name} with: #{meta[:reply_prefix] + text}" - @twitter.update(meta[:reply_prefix] + text, in_reply_to_status_id: ev.id) - - meta[:reply_mentions].each do |username| - userinfo(username).pester_count += 1 - end + twitter.update(meta[:reply_prefix] + text, in_reply_to_status_id: ev.id) else raise Exception("Don't know how to reply to a #{ev.class}") end @@ -278,8 +291,13 @@ module Ebooks return if blacklisted?(tweet.user.screen_name) log "Favoriting @#{tweet.user.screen_name}: #{tweet.text}" + meta = calc_meta(tweet) + if !meta[:mentions_bot] && !userinfo(ev.user.screen_name).can_pester? + log "Not favoriting: leaving @#{ev.user.screen_name} alone" + end + begin - @twitter.favorite(tweet.id) + twitter.favorite(tweet.id) rescue Twitter::Error::Forbidden log "Already favorited: #{tweet.user.screen_name}: #{tweet.text}" end @@ -290,7 +308,7 @@ module Ebooks log "Retweeting @#{tweet.user.screen_name}: #{tweet.text}" begin - @twitter.retweet(tweet.id) + twitter.retweet(tweet.id) rescue Twitter::Error::Forbidden log "Already retweeted: #{tweet.user.screen_name}: #{tweet.text}" end @@ -298,13 +316,12 @@ module Ebooks def follow(*args) log "Following #{args}" - - @twitter.follow(*args) + twitter.follow(*args) end def tweet(*args) log "Tweeting #{args.inspect}" - @twitter.update(*args) + twitter.update(*args) end def scheduler @@ -314,7 +331,7 @@ module Ebooks # could easily just be *args however the separation keeps it clean. def pictweet(txt, pic, *args) log "Tweeting #{txt.inspect} - #{pic} #{args}" - @twitter.update_with_media(txt, File.new(pic), *args) + twitter.update_with_media(txt, File.new(pic), *args) end end end From 401586471b9ccb8c85f5180ad98eeda41a79fbcb Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Thu, 4 Dec 2014 05:17:09 +1100 Subject: [PATCH 093/168] Separate unprompted tracking from mention includes --- lib/twitter_ebooks/bot.rb | 130 +++++++++++++++++++++++++------------- spec/bot_spec.rb | 2 +- twitter_ebooks.gemspec | 3 +- 3 files changed, 89 insertions(+), 46 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 4490504..fb89584 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -6,20 +6,28 @@ module Ebooks class ConfigurationError < Exception end - # We track how many unprompted interactions the bot has had with - # each user and start dropping them from mentions after two in a row class UserInfo attr_reader :username + + # number of times we've interacted with a timeline tweet, unprompted attr_accessor :pesters_left + # number of times we've included them in a mention that wasn't from them + attr_accessor :includes_left + def initialize(username) @username = username @pesters_left = 1 + @includes_left = 2 end def can_pester? @pesters_left > 0 end + + def can_include? + @includes_left > 0 + end end # Represents a current "interaction state" with another user @@ -35,7 +43,11 @@ module Ebooks def receive(tweet) @received << tweet @last_update = Time.now - @userinfo.pesters_left += 2 + + # When we receive a tweet from someone, become more + # inclined to pester them and include in mentions + @userinfo.pesters_left += 1 + @userinfo.includes_left += 2 end # Make an informed guess as to whether this user is a bot @@ -59,6 +71,56 @@ module Ebooks end end + # Meta information about a tweet that we calculate for ourselves + class TweetMeta + attr_accessor :mentions # array: usernames mentioned in tweet + attr_accessor :mentionless # string: text of tweet with mentions removed + attr_accessor :reply_mentions # array: usernames to include in a reply + attr_accessor :reply_prefix # string: processed string to start reply with + attr_accessor :limit # integer: available room to calculate reply + + attr_accessor :bot, :tweet + + def mentions_bot? + # To check if this is someone talking to us, ensure: + # - The tweet mentions list contains our username + # - The tweet is not being retweeted by somebody else + # - Or soft-retweeted by somebody else + @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') + end + + def initialize(bot, ev) + @bot = bot + @tweet = ev + + @mentions = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } + + # Process mentions to figure out who to reply to + # i.e. not self and nobody who has seen too many secondary mentions + reply_mentions = @mentions.reject do |m| + username = m.downcase + username == @bot.username || !@bot.userinfo(username).can_include? + end + @reply_mentions = ([ev.user.screen_name] + reply_mentions).uniq + + @reply_prefix = @reply_mentions.map { |m| '@'+m }.join(' ') + ' ' + @limit = 140 - @reply_prefix.length + + mless = ev.text + begin + ev.attrs[:entities][:user_mentions].reverse.each do |entity| + last = mless[entity[:indices][1]..-1]||'' + mless = mless[0...entity[:indices][0]] + last.strip + end + rescue Exception + p ev.attrs[:entities][:user_mentions] + p ev.text + raise + end + @mentionless = mless + end + end + class Bot attr_accessor :consumer_key, :consumer_secret, :access_token, :access_token_secret @@ -126,38 +188,7 @@ module Ebooks # Calculate some meta information about a tweet relevant for replying def calc_meta(ev) - meta = {} - meta[:mentions] = ev.attrs[:entities][:user_mentions].map { |x| x[:screen_name] } - - # To check if this is someone talking to us, ensure: - # - The tweet mentions list contains our username - # - The tweet is not being retweeted by somebody else - # - Or soft-retweeted by somebody else - meta[:mentions_bot] = meta[:mentions].map(&:downcase).include?(@username.downcase) && !ev.retweeted_status? && !ev.text.start_with?('RT ') - - # Process mentions to figure out who to reply to - reply_mentions = meta[:mentions].reject { |m| m.downcase == @username.downcase } - reply_mentions = reply_mentions.select { |username| userinfo(username).can_pester? } - meta[:reply_mentions] = [ev.user.screen_name] + reply_mentions - - meta[:reply_prefix] = meta[:reply_mentions].uniq.map { |m| '@'+m }.join(' ') + ' ' - - meta[:limit] = 140 - meta[:reply_prefix].length - - mless = ev.text - begin - ev.attrs[:entities][:user_mentions].reverse.each do |entity| - last = mless[entity[:indices][1]..-1]||'' - mless = mless[0...entity[:indices][0]] + last.strip - end - rescue Exception - p ev.attrs[:entities][:user_mentions] - p ev.text - raise - end - meta[:mentionless] = mless - - meta + TweetMeta.new(self, ev) end # Receive an event from the twitter stream @@ -195,7 +226,7 @@ module Ebooks @seen_tweets[ev.id] = true end - if meta[:mentions_bot] + if meta.mentions_bot? log "Mention from @#{ev.user.screen_name}: #{ev.text}" interaction(ev.user.screen_name).receive(ev) fire(:mention, ev, meta) @@ -271,17 +302,23 @@ module Ebooks return end - if !meta[:mentions_bot] + if !meta.mentions_bot? if !userinfo(ev.user.screen_name).can_pester? log "Not replying: leaving @#{ev.user.screen_name} alone" return - else - userinfo(ev.user.screen_name).pesters_left -= 1 end end - log "Replying to @#{ev.user.screen_name} with: #{meta[:reply_prefix] + text}" - twitter.update(meta[:reply_prefix] + text, in_reply_to_status_id: ev.id) + meta.reply_mentions.each do |username| + # Decrease includes_left for everyone involved here who isn't + # directly talking to the bot + if !meta.mentions_bot? || username != ev.user.screen_name + userinfo(username).includes_left -= 1 + end + end + + log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" + twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id) else raise Exception("Don't know how to reply to a #{ev.class}") end @@ -292,9 +329,9 @@ module Ebooks log "Favoriting @#{tweet.user.screen_name}: #{tweet.text}" meta = calc_meta(tweet) - if !meta[:mentions_bot] && !userinfo(ev.user.screen_name).can_pester? - log "Not favoriting: leaving @#{ev.user.screen_name} alone" - end + #if !meta[:mentions_bot] && !userinfo(ev.user.screen_name).can_pester? + # log "Not favoriting: leaving @#{ev.user.screen_name} alone" + #end begin twitter.favorite(tweet.id) @@ -319,6 +356,11 @@ module Ebooks twitter.follow(*args) end + def unfollow(*args) + log "Unfollowing #{args}" + twiter.unfollow(*args) + end + def tweet(*args) log "Tweeting #{args.inspect}" twitter.update(*args) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 9a18dd3..c04d2ff 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -17,7 +17,7 @@ class TestBot < Ebooks::Bot end def on_mention(tweet, meta) - reply tweet, "echo: #{meta[:mentionless]}" + reply tweet, "echo: #{meta.mentionless}" end def on_timeline(tweet, meta) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 5a41e0d..6224cf9 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -18,8 +18,8 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'rspec' gem.add_development_dependency 'rspec-mocks' gem.add_development_dependency 'memory_profiler' - gem.add_development_dependency 'pry-byebug' gem.add_development_dependency 'timecop' + gem.add_development_dependency 'pry-byebug' gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth' @@ -30,4 +30,5 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency 'engtagger' gem.add_runtime_dependency 'fast-stemmer' gem.add_runtime_dependency 'highscore' + gem.add_runtime_dependency 'pry' end From daeda5d7eb99a974b26df0ef913ba4558fd22e39 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 14:03:11 +1100 Subject: [PATCH 094/168] Add `ebooks auth` command --- README.md | 11 ++++-- bin/ebooks | 80 +++++++++++++++++++++++++++++++++++++-- lib/twitter_ebooks/bot.rb | 1 + 3 files changed, 86 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ed5506c..bf4c4e0 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,13 @@ [![Build Status](https://travis-ci.org/mispy/twitter_ebooks.svg)](https://travis-ci.org/mispy/twitter_ebooks) [![Dependency Status](https://gemnasium.com/mispy/twitter_ebooks.svg)](https://gemnasium.com/mispy/twitter_ebooks) +A framework for building interactive twitterbots which respond to mentions/DMs. twitter_ebooks tries to be a good friendly bot citizen by avoiding infinite conversations and spamming people, so you only have to write the interesting parts. -Rewrite of my twitter\_ebooks code. While the original was solely a tweeting Markov generator, this framework helps you build any kind of interactive twitterbot which responds to mentions/DMs. See [ebooks\_example](https://github.com/mispy/ebooks_example) for an example of a full bot. +## New in 3.0 + +- Bots now run in their own threads (no eventmachine), and startup is parallelized +- Replies are slightly rate-limited by default to prevent infinite bot convos +- Non-participating users in a mention chain will be dropped after a few tweets ## Installation @@ -65,9 +70,9 @@ Ebooks::Bot.new("abby_ebooks") do |bot| end ``` -Bots defined like this can be spawned by executing `run.rb` in the same directory, and will operate together in a single eventmachine loop. The easiest way to run bots in a semi-permanent fashion is with [Heroku](https://www.heroku.com); just make an app, push the bot repository to it, enable a worker process in the web interface and it ought to chug along merrily forever. +'ebooks start' will run all defined bots in their own threads. The easiest way to run bots in a semi-permanent fashion is with [Heroku](https://www.heroku.com); just make an app, push the bot repository to it, enable a worker process in the web interface and it ought to chug along merrily forever. -The underlying [tweetstream](https://github.com/tweetstream/tweetstream) and [twitter gem](https://github.com/sferik/twitter) client objects can be accessed at `bot.stream` and `bot.twitter` respectively. +The underlying streaming and REST clients from the [twitter gem](https://github.com/sferik/twitter) can be accessed at `bot.stream` and `bot.twitter` respectively. ## Archiving accounts diff --git a/bin/ebooks b/bin/ebooks index 1864380..fab9105 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -6,7 +6,7 @@ require 'csv' $debug = true -module Ebooks +module Ebooks::CLI APP_PATH = Dir.pwd # XXX do some recursive thing instead def self.new(reponame) @@ -163,11 +163,84 @@ STR bot.tweet(statement) end + def self.auth + consumer_key, consumer_secret = find_consumer + require 'oauth' + + consumer = OAuth::Consumer.new( + consumer_key, + consumer_secret, + site: 'https://twitter.com/', + scheme: :header + ) + + request_token = consumer.get_request_token + auth_url = request_token.authorize_url() + + pin = nil + loop do + log auth_url + + log "Go to the above url and follow the prompts, then enter the PIN code here." + print "> " + + pin = STDIN.gets.chomp + + break unless pin.empty? + end + + access_token = request_token.get_access_token(oauth_verifier: pin) + + log "Account authorized successfully.\n" + + " access token: #{access_token.token}\n" + + " access token secret: #{access_token.secret}" + end + def self.c - load 'bots.rb' + load_bots require 'pry'; pry end + # Non-command methods + + def self.find_consumer + if ENV['CONSUMER_KEY'] && ENV['CONSUMER_SECRET'] + log "Using consumer details from environment variables:\n" + + " consumer key: #{ENV['CONSUMER_KEY']}\n" + + " consumer secret: #{ENV['CONSUMER_SECRET']}" + return [ENV['CONSUMER_KEY'], ENV['CONSUMER_SECRET']] + end + + load_bots + consumer_key = nil + consumer_secret = nil + Ebooks::Bot.all.each do |bot| + if bot.consumer_key && bot.consumer_secret + consumer_key = bot.consumer_key + consumer_secret = bot.consumer_secret + log "Using consumer details from @#{bot.username}:\n" + + " consumer key: #{bot.consumer_key}\n" + + " consumer secret: #{bot.consumer_secret}\n" + return consumer_key, consumer_secret + end + end + + if consumer_key.nil? || consumer_secret.nil? + log "Couldn't find any consumer details to auth an account with.\n" + + "Please either configure a bot with consumer_key and consumer_secret\n" + + "or provide the CONSUMER_KEY and CONSUMER_SECRET environment variables." + exit + end + end + + def self.load_bots + load 'bots.rb' + + if Ebooks::Bot.all.empty? + puts "Couldn't find any bots! Please make sure bots.rb instantiates at least one bot." + end + end + def self.command(args) usage = < Date: Fri, 5 Dec 2014 16:22:21 +1100 Subject: [PATCH 095/168] ebooks start command, reorganizing CLI --- bin/ebooks | 238 +++++++++++++++++++++++++++++++++++------------------ 1 file changed, 158 insertions(+), 80 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index fab9105..a402cfe 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -2,31 +2,54 @@ # encoding: utf-8 require 'twitter_ebooks' -require 'csv' +require 'ostruct' $debug = true module Ebooks::CLI APP_PATH = Dir.pwd # XXX do some recursive thing instead + HELP = OpenStruct.new - def self.new(reponame) - usage = < + HELP.default = < -Creates a new skeleton repository defining a template bot in -the current working directory specified by . + ebooks new + ebooks auth + ebooks consume [corpus_path2] [...] + ebooks consume-all [corpus_path2] [...] + ebooks gen [input] + ebooks score + ebooks archive + ebooks tweet STR + def self.help(command=nil) + if command.nil? + log HELP.default + else + log HELP[command].gsub(/^ {4}/, '') + end + end + + HELP.new = <<-STR + Usage: ebooks new + + Creates a new skeleton repository defining a template bot in + the current working directory specified by . + STR + + def self.new(reponame) if reponame.nil? - log usage - exit + help :new + exit 1 end path = "./#{reponame}" if File.exists?(path) log "#{path} already exists. Please remove if you want to recreate." - exit + exit 1 end FileUtils.cp_r(SKELETON_PATH, path) @@ -39,17 +62,17 @@ STR log "New twitter_ebooks app created at #{reponame}" end + HELP.consume = <<-STR + Usage: ebooks consume [corpus_path2] [...] + + Processes some number of text files or json tweet corpuses + into usable models. These will be output at model/.model + STR + def self.consume(pathes) - usage = < [corpus_path2] [...] - -Processes some number of text files or json tweet corpuses -into usable models. These will be output at model/.model -STR - if pathes.empty? - log usage - exit + help :consume + exit 1 end pathes.each do |path| @@ -62,17 +85,17 @@ STR end end + HELP.consume_all = <<-STR + Usage: ebooks consume-all [corpus_path2] [...] + + Processes some number of text files or json tweet corpuses + into one usable model. It will be output at model/.model + STR + def self.consume_all(name, paths) - usage = < [corpus_path2] [...] - -Processes some number of text files or json tweet corpuses -into one usable model. It will be output at model/.model -STR - if paths.empty? - log usage - exit + help :consume_all + exit 1 end outpath = File.join(APP_PATH, 'model', "#{name}.model") @@ -88,16 +111,17 @@ STR log "Corpuses consumed to #{outpath}" end - def self.gen(model_path, input) - usage = < [input] + HELP.gen = <<-STR + Usage: ebooks gen [input] -Make a test tweet from the processed model at . -Will respond to input if provided. -STR + Make a test tweet from the processed model at . + Will respond to input if provided. + STR + + def self.gen(model_path, input) if model_path.nil? - log usage - exit + help :gen + exit 1 end model = Model.load(model_path) @@ -108,50 +132,51 @@ STR end end - def self.score(model_path, input) - usage = < + HELP.score = <<-STR + Usage: ebooks score -Scores "interest" in some text input according to how -well unique keywords match the model. -STR + Scores "interest" in some text input according to how + well unique keywords match the model. + STR + + def self.score(model_path, input) if model_path.nil? || input.nil? - log usage - exit + help :score + exit 1 end model = Model.load(model_path) model.score_interest(input) end + HELP.archive = <<-STR + Usage: ebooks archive + + Downloads a json corpus of the 's tweets to . + Due to API limitations, this can only receive up to ~3000 tweets + into the past. + STR + def self.archive(username, outpath) - usage = < - -Downloads a json corpus of the 's tweets to . -Due to API limitations, this can only receive up to ~3000 tweets -into the past. -STR - if username.nil? || outpath.nil? - log usage - exit + help :archive + exit 1 end Archive.new(username, outpath).sync end + HELP.tweet = <<-STR + Usage: ebooks tweet + + Sends a public tweet from the specified bot using text + from the processed model at . + STR + def self.tweet(modelpath, botname) - usage = < - -Sends a public tweet from the specified bot using text -from the processed model at . -STR - if modelpath.nil? || botname.nil? - log usage - exit + help :tweet + exit 1 end load File.join(APP_PATH, 'bots.rb') @@ -163,6 +188,15 @@ STR bot.tweet(statement) end + HELP.auth = <<-STR + Usage: ebooks auth + + Authenticates your Twitter app for any account. By default, will + use the consumer key and secret from the first defined bot. You + can specify another by setting the CONSUMER_KEY and CONSUMER_SECRET + environment variables. + STR + def self.auth consumer_key, consumer_secret = find_consumer require 'oauth' @@ -196,9 +230,59 @@ STR " access token secret: #{access_token.secret}" end - def self.c + HELP.console = <<-STR + Usage: ebooks c[onsole] + + Starts an interactive ruby session with your bots loaded + and configured. + STR + + def self.console load_bots - require 'pry'; pry + require 'pry'; Ebooks.module_exec { pry } + end + + HELP.start = <<-STR + Usage: ebooks s[tart] [botname] + + Starts running bots. If botname is provided, only runs that bot. + STR + + def self.start(botname=nil) + load_bots + + if botname.nil? + bots = Ebooks::Bot.all + else + bots = bots.select { |bot| bot.username == botname } + if bots.empty? + log "Couldn't find a defined bot for @#{botname}!" + exit 1 + end + end + + threads = [] + bots.each do |bot| + threads << Thread.new { bot.prepare } + end + threads.each(&:join) + + threads = [] + bots.each do |bot| + threads << Thread.new do + loop do + begin + bot.start + rescue Exception + bot.log $! + puts $@ + end + bot.log "Sleeping before reconnect" + sleep 5 + end + end + end + threads.each(&:join) end # Non-command methods @@ -229,7 +313,7 @@ STR log "Couldn't find any consumer details to auth an account with.\n" + "Please either configure a bot with consumer_key and consumer_secret\n" + "or provide the CONSUMER_KEY and CONSUMER_SECRET environment variables." - exit + exit 1 end end @@ -242,20 +326,9 @@ STR end def self.command(args) - usage = < - ebooks consume [corpus_path2] [...] - ebooks consume-all [corpus_path2] [...] - ebooks gen [input] - ebooks score - ebooks archive <@user> - ebooks tweet -STR - if args.length == 0 - log usage - exit + help + exit 1 end case args[0] @@ -268,9 +341,14 @@ STR when "tweet" then tweet(args[1], args[2]) when "jsonify" then jsonify(args[1..-1]) when "auth" then auth - when "c" then c + when "console" then console + when "c" then console + when "start" then start + when "s" then start + when "help" then help(args[1]) else - log usage + log "No such command '#{args[0]}'" + help exit 1 end end From 8708aaa3e37cd9822faf52723f13958e349ac782 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 16:35:57 +1100 Subject: [PATCH 096/168] Allow starting a single bot by name --- bin/ebooks | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index a402cfe..7a144dc 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -254,7 +254,7 @@ STR if botname.nil? bots = Ebooks::Bot.all else - bots = bots.select { |bot| bot.username == botname } + bots = Ebooks::Bot.all.select { |bot| bot.username == botname } if bots.empty? log "Couldn't find a defined bot for @#{botname}!" exit 1 @@ -343,8 +343,8 @@ STR when "auth" then auth when "console" then console when "c" then console - when "start" then start - when "s" then start + when "start" then start(args[1]) + when "s" then start(args[1]) when "help" then help(args[1]) else log "No such command '#{args[0]}'" From efde0fd16ff722145ff80a04a1e9f0bba462f804 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 19:04:15 +1100 Subject: [PATCH 097/168] Conversation-based bot detection and politeness --- lib/twitter_ebooks/bot.rb | 111 ++++++++++++++++++-------------------- spec/bot_spec.rb | 34 +++++++++--- 2 files changed, 80 insertions(+), 65 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index c3fcc2e..06054b1 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -12,62 +12,50 @@ module Ebooks # number of times we've interacted with a timeline tweet, unprompted attr_accessor :pesters_left - # number of times we've included them in a mention that wasn't from them - attr_accessor :includes_left - def initialize(username) @username = username @pesters_left = 1 - @includes_left = 2 end def can_pester? @pesters_left > 0 end - - def can_include? - @includes_left > 0 - end end - # Represents a current "interaction state" with another user - class Interaction - attr_reader :userinfo, :received, :last_update + # Represents a single reply tree of tweets + class Conversation + attr_reader :last_update - def initialize(userinfo) - @userinfo = userinfo - @received = [] + def initialize(bot) + @bot = bot + @tweets = [] @last_update = Time.now end - def receive(tweet) - @received << tweet + def add(tweet) + @tweets << tweet @last_update = Time.now - - # When we receive a tweet from someone, become more - # inclined to pester them and include in mentions - @userinfo.pesters_left += 1 - @userinfo.includes_left += 2 end - # Make an informed guess as to whether this user is a bot - # based on its username and reply speed - def is_bot? - if @received.length > 2 - if (@received[-1].created_at - @received[-3].created_at) < 30 + # Make an informed guess as to whether a user is a bot based + # on their behavior in this conversation + def is_bot?(username) + usertweets = @tweets.select { |t| t.user.screen_name == username } + + if usertweets.length > 2 + if (usertweets[-1].created_at - usertweets[-3].created_at) < 30 return true end end - @userinfo.username.include?("ebooks") + username.include?("ebooks") end - def continue? - if is_bot? - true if @received.length < 2 - else - true - end + # Figure out whether to keep this user in the reply prefix + # We want to avoid spamming non-participating users + def can_include?(username) + @tweets.length <= 4 || + !@tweets[-4..-1].select { |t| t.user.screen_name == username }.empty? end end @@ -99,7 +87,7 @@ module Ebooks # i.e. not self and nobody who has seen too many secondary mentions reply_mentions = @mentions.reject do |m| username = m.downcase - username == @bot.username || !@bot.userinfo(username).can_include? + username == @bot.username || !@bot.conversation(ev).can_include?(username) end @reply_mentions = ([ev.user.screen_name] + reply_mentions).uniq @@ -130,6 +118,8 @@ module Ebooks # Configuration attr_accessor :username, :delay_range, :blacklist + attr_accessor :conversations + @@all = [] # List of all defined bots def self.all; @@all; end @@ -148,7 +138,7 @@ module Ebooks @delay_range ||= 0 @users ||= {} - @interactions ||= {} + @conversations ||= {} configure(*args, &b) # Tweet ids we've already observed, to avoid duplication @@ -160,13 +150,29 @@ module Ebooks @users[username] ||= UserInfo.new(username) end - def interaction(username) - if @interactions[username] && - Time.now - @interactions[username].last_update < 600 - @interactions[username] - else - @interactions[username] = Interaction.new(userinfo(username)) + # Grab or create the conversation context for this tweet + def conversation(tweet) + conv = if tweet.in_reply_to_status_id? + @conversations[tweet.in_reply_to_status_id] end + + if conv.nil? + conv = @conversations[tweet.id] || Conversation.new(self) + end + + if tweet.in_reply_to_status_id? + @conversations[tweet.in_reply_to_status_id] = conv + end + @conversations[tweet.id] = conv + + # Expire any old conversations to prevent memory growth + @conversations.each do |k,v| + if v != conv && Time.now - v.last_update > 3600 + @conversations.delete(k) + end + end + + conv end def twitter @@ -222,6 +228,7 @@ module Ebooks # Avoid responding to duplicate tweets if @seen_tweets[ev.id] + log "Not firing event for duplicate tweet #{ev.id}" return else @seen_tweets[ev.id] = true @@ -229,7 +236,7 @@ module Ebooks if meta.mentions_bot? log "Mention from @#{ev.user.screen_name}: #{ev.text}" - interaction(ev.user.screen_name).receive(ev) + conversation(ev).add(ev) fire(:mention, ev, meta) else fire(:timeline, ev, meta) @@ -292,13 +299,12 @@ module Ebooks opts = opts.clone if ev.is_a? Twitter::DirectMessage - return if blacklisted?(ev.sender.screen_name) log "Sending DM to @#{ev.sender.screen_name}: #{text}" twitter.create_direct_message(ev.sender.screen_name, text, opts) elsif ev.is_a? Twitter::Tweet meta = calc_meta(ev) - if !interaction(ev.user.screen_name).continue? + if conversation(ev).is_bot?(ev.user.screen_name) log "Not replying to suspected bot @#{ev.user.screen_name}" return end @@ -310,16 +316,9 @@ module Ebooks end end - meta.reply_mentions.each do |username| - # Decrease includes_left for everyone involved here who isn't - # directly talking to the bot - if !meta.mentions_bot? || username != ev.user.screen_name - userinfo(username).includes_left -= 1 - end - end - log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" - twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id) + tweet = twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id) + conversation(tweet).add(tweet) else raise Exception("Don't know how to reply to a #{ev.class}") end @@ -329,11 +328,6 @@ module Ebooks return if blacklisted?(tweet.user.screen_name) log "Favoriting @#{tweet.user.screen_name}: #{tweet.text}" - meta = calc_meta(tweet) - #if !meta[:mentions_bot] && !userinfo(ev.user.screen_name).can_pester? - # log "Not favoriting: leaving @#{ev.user.screen_name} alone" - #end - begin twitter.favorite(tweet.id) rescue Twitter::Error::Forbidden @@ -342,7 +336,6 @@ module Ebooks end def retweet(tweet) - return if blacklisted?(tweet.user.screen_name) log "Retweeting @#{tweet.user.screen_name}: #{tweet.text}" begin diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index c04d2ff..f7d0dec 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -43,10 +43,11 @@ module Ebooks::Test # Creates a mock tweet # @param username User sending the tweet # @param text Tweet content - def mock_tweet(username, text) + def mock_tweet(username, text, extra={}) mentions = text.split.find_all { |x| x.start_with?('@') } - Twitter::Tweet.new( + tweet = Twitter::Tweet.new({ id: twitter_id, + in_reply_to_status_id: 'mock-link', user: { id: twitter_id, screen_name: username }, text: text, created_at: Time.now.to_s, @@ -56,22 +57,29 @@ module Ebooks::Test indices: [text.index(m), text.index(m)+m.length] } } } - ) + }.merge!(extra)) + tweet + end + + def twitter_spy(bot) + twitter = spy("twitter") + allow(twitter).to receive(:update).and_return(mock_tweet(bot.username, "test tweet")) + twitter end def simulate(bot, &b) - bot.twitter = spy("twitter") + bot.twitter = twitter_spy(bot) b.call end def expect_direct_message(bot, content) expect(bot.twitter).to have_received(:create_direct_message).with(anything(), content, {}) - bot.twitter = spy("twitter") + bot.twitter = twitter_spy(bot) end def expect_tweet(bot, content) expect(bot.twitter).to have_received(:update).with(content, anything()) - bot.twitter = spy("twitter") + bot.twitter = twitter_spy(bot) end end @@ -104,6 +112,20 @@ describe Ebooks::Bot do end end + it "links tweets to conversations correctly" do + tweet1 = mock_tweet("m1sp", "tweet 1", id: 1, in_reply_to_status_id: nil) + + tweet2 = mock_tweet("m1sp", "tweet 2", id: 2, in_reply_to_status_id: 1) + + tweet3 = mock_tweet("m1sp", "tweet 3", id: 3, in_reply_to_status_id: nil) + + bot.conversation(tweet1).add(tweet1) + expect(bot.conversation(tweet2)).to eq(bot.conversation(tweet1)) + + bot.conversation(tweet2).add(tweet2) + expect(bot.conversation(tweet3)).to_not eq(bot.conversation(tweet2)) + end + it "stops mentioning people after a certain limit" do simulate(bot) do bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 1")) From 1977445b1cb9ff5fcd3cec3ca6f33de4a1cd8766 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 21:12:39 +1100 Subject: [PATCH 098/168] Lots of documentation and cleanup --- .gitignore | 2 + bin/ebooks | 2 - lib/twitter_ebooks.rb | 1 - lib/twitter_ebooks/bot.rb | 164 +++++++++++++++++++++++----------- lib/twitter_ebooks/markov.rb | 82 ----------------- lib/twitter_ebooks/model.rb | 90 ++++++++++++++----- lib/twitter_ebooks/nlp.rb | 59 +++++++++--- lib/twitter_ebooks/suffix.rb | 10 ++- lib/twitter_ebooks/version.rb | 2 +- spec/bot_spec.rb | 2 - twitter_ebooks.gemspec | 1 + 11 files changed, 237 insertions(+), 178 deletions(-) delete mode 100644 lib/twitter_ebooks/markov.rb diff --git a/.gitignore b/.gitignore index b0436d8..f2b5f47 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .*.swp Gemfile.lock pkg +.yardoc +doc diff --git a/bin/ebooks b/bin/ebooks index 7a144dc..a41681f 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -4,8 +4,6 @@ require 'twitter_ebooks' require 'ostruct' -$debug = true - module Ebooks::CLI APP_PATH = Dir.pwd # XXX do some recursive thing instead HELP = OpenStruct.new diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb index ea857f4..b104501 100644 --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -15,7 +15,6 @@ end require 'twitter_ebooks/nlp' require 'twitter_ebooks/archive' -require 'twitter_ebooks/markov' require 'twitter_ebooks/suffix' require 'twitter_ebooks/model' require 'twitter_ebooks/bot' diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 06054b1..585c96e 100755 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -6,10 +6,11 @@ module Ebooks class ConfigurationError < Exception end + # Information about a particular Twitter user we know class UserInfo attr_reader :username - # number of times we've interacted with a timeline tweet, unprompted + # @return [Integer] how many times we can pester this user unprompted attr_accessor :pesters_left def initialize(username) @@ -17,6 +18,7 @@ module Ebooks @pesters_left = 1 end + # @return [Boolean] true if we're allowed to pester this user def can_pester? @pesters_left > 0 end @@ -32,6 +34,7 @@ module Ebooks @last_update = Time.now end + # @param tweet [Twitter::Tweet] tweet to add def add(tweet) @tweets << tweet @last_update = Time.now @@ -61,14 +64,24 @@ module Ebooks # Meta information about a tweet that we calculate for ourselves class TweetMeta - attr_accessor :mentions # array: usernames mentioned in tweet - attr_accessor :mentionless # string: text of tweet with mentions removed - attr_accessor :reply_mentions # array: usernames to include in a reply - attr_accessor :reply_prefix # string: processed string to start reply with - attr_accessor :limit # integer: available room to calculate reply + # @return [Array] usernames mentioned in tweet + attr_accessor :mentions + # @return [String] text of tweets with mentions removed + attr_accessor :mentionless + # @return [Array] usernames to include in a reply + attr_accessor :reply_mentions + # @return [String] mentions to start reply with + attr_accessor :reply_prefix + # @return [Integer] available chars for reply + attr_accessor :limit - attr_accessor :bot, :tweet + # @return [Ebooks::Bot] associated bot + attr_accessor :bot + # @return [Twitter::Tweet] associated tweet + attr_accessor :tweet + # Check whether this tweet mentions our bot + # @return [Boolean] def mentions_bot? # To check if this is someone talking to us, ensure: # - The tweet mentions list contains our username @@ -110,47 +123,65 @@ module Ebooks end class Bot - attr_accessor :consumer_key, :consumer_secret, - :access_token, :access_token_secret - - attr_reader :twitter, :stream, :thread - - # Configuration - attr_accessor :username, :delay_range, :blacklist - + # @return [String] OAuth consumer key for a Twitter app + attr_accessor :consumer_key + # @return [String] OAuth consumer secret for a Twitter app + attr_accessor :consumer_secret + # @return [String] OAuth access token from `ebooks auth` + attr_accessor :access_token + # @return [String] OAuth access secret from `ebooks auth` + attr_accessor :access_token_secret + # @return [String] Twitter username of bot + attr_accessor :username + # @return [Array] list of usernames to block on contact + attr_accessor :blacklist + # @return [Hash{String => Ebooks::Conversation}] maps tweet ids to their conversation contexts attr_accessor :conversations + # @return [Range, Integer] range of seconds to delay in delay method + attr_accessor :delay - @@all = [] # List of all defined bots - def self.all; @@all; end + # @return [Array] list of all defined bots + def self.all; @@all ||= []; end - def self.get(name) - all.find { |bot| bot.username == name } + # Fetches a bot by username + # @param username [String] + # @return [Ebooks::Bot] + def self.get(username) + all.find { |bot| bot.username == username } end + # Logs info to stdout in the context of this bot def log(*args) STDOUT.print "@#{@username}: " + args.map(&:to_s).join(' ') + "\n" STDOUT.flush end - def initialize(*args, &b) - @username ||= nil + # Initializes and configures bot + # @param args Arguments passed to configure method + # @param b Block to call with new bot + def initialize(username, &b) @blacklist ||= [] - @delay_range ||= 0 - - @users ||= {} + @userinfo ||= {} @conversations ||= {} - configure(*args, &b) - # Tweet ids we've already observed, to avoid duplication @seen_tweets ||= {} + + @username = username + configure(*args, &b) + Bot.all << self end + # Find information we've collected about a user + # @param username [String] + # @return [Ebooks::UserInfo] def userinfo(username) - @users[username] ||= UserInfo.new(username) + @userinfo[username] ||= UserInfo.new(username) end - # Grab or create the conversation context for this tweet + # Find or create the conversation context for this tweet + # @param tweet [Twitter::Tweet] + # @return [Ebooks::Conversation] def conversation(tweet) conv = if tweet.in_reply_to_status_id? @conversations[tweet.in_reply_to_status_id] @@ -175,6 +206,7 @@ module Ebooks conv end + # @return [Twitter::REST::Client] underlying REST client from twitter gem def twitter @twitter ||= Twitter::REST::Client.new do |config| config.consumer_key = @consumer_key @@ -184,6 +216,7 @@ module Ebooks end end + # @return [Twitter::Streaming::Client] underlying streaming client from twitter gem def stream @stream ||= Twitter::Streaming::Client.new do |config| config.consumer_key = @consumer_key @@ -194,11 +227,14 @@ module Ebooks end # Calculate some meta information about a tweet relevant for replying + # @param ev [Twitter::Tweet] + # @return [Ebooks::TweetMeta] def calc_meta(ev) TweetMeta.new(self, ev) end # Receive an event from the twitter stream + # @param ev [Object] Twitter streaming event def receive_event(ev) if ev.is_a? Array # Initial array sent on first connection log "Online!" @@ -250,14 +286,7 @@ module Ebooks end end - def start_stream - log "starting tweet stream" - - stream.user do |ev| - receive_event ev - end - end - + # Configures client and fires startup event def prepare # Sanity check if @username.nil? @@ -268,12 +297,18 @@ module Ebooks fire(:startup) end - # Connects to tweetstream and opens event handlers for this bot + # Start running user event stream def start - start_stream + log "starting tweet stream" + + stream.user do |ev| + receive_event ev + end end # Fire an event + # @param event [Symbol] event to fire + # @param args arguments for event handler def fire(event, *args) handler = "on_#{event}".to_sym if respond_to? handler @@ -281,11 +316,17 @@ module Ebooks end end - def delay(&b) - time = @delay.to_a.sample unless @delay.is_a? Integer + # Delay an action for a variable period of time + # @param range [Range, Integer] range of seconds to choose for delay + def delay(range=@delay_range, &b) + time = range.to_a.sample unless range.is_a? Integer sleep time + b.call end + # Check if a username is blacklisted + # @param username [String] + # @return [Boolean] def blacklisted?(username) if @blacklist.include?(username) true @@ -295,6 +336,9 @@ module Ebooks end # Reply to a tweet or a DM. + # @param ev [Twitter::Tweet, Twitter::DirectMessage] + # @param text [String] contents of reply excluding reply_prefix + # @param opts [Hash] additional params to pass to twitter gem def reply(ev, text, opts={}) opts = opts.clone @@ -306,26 +350,28 @@ module Ebooks if conversation(ev).is_bot?(ev.user.screen_name) log "Not replying to suspected bot @#{ev.user.screen_name}" - return + return false end if !meta.mentions_bot? if !userinfo(ev.user.screen_name).can_pester? log "Not replying: leaving @#{ev.user.screen_name} alone" - return + return false end end log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" tweet = twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id) conversation(tweet).add(tweet) + tweet else raise Exception("Don't know how to reply to a #{ev.class}") end end + # Favorite a tweet + # @param tweet [Twitter::Tweet] def favorite(tweet) - return if blacklisted?(tweet.user.screen_name) log "Favoriting @#{tweet.user.screen_name}: #{tweet.text}" begin @@ -335,6 +381,8 @@ module Ebooks end end + # Retweet a tweet + # @param tweet [Twitter::Tweet] def retweet(tweet) log "Retweeting @#{tweet.user.screen_name}: #{tweet.text}" @@ -345,26 +393,36 @@ module Ebooks end end - def follow(*args) - log "Following #{args}" - twitter.follow(*args) + # Follow a user + # @param user [String] username or user id + def follow(user, *args) + log "Following #{user}" + twitter.follow(user, *args) end - def unfollow(*args) - log "Unfollowing #{args}" - twiter.unfollow(*args) + # Unfollow a user + # @param user [String] username or user id + def unfollow(user, *args) + log "Unfollowing #{user}" + twiter.unfollow(user, *args) end - def tweet(*args) - log "Tweeting #{args.inspect}" - twitter.update(*args) + # Tweet something + # @param text [String] + def tweet(text, *args) + log "Tweeting '#{text}'" + twitter.update(text, *args) end + # Get a scheduler for this bot + # @return [Rufus::Scheduler] def scheduler @scheduler ||= Rufus::Scheduler.new end - # could easily just be *args however the separation keeps it clean. + # Tweet some text with an image + # @param txt [String] + # @param pic [String] filename def pictweet(txt, pic, *args) log "Tweeting #{txt.inspect} - #{pic} #{args}" twitter.update_with_media(txt, File.new(pic), *args) diff --git a/lib/twitter_ebooks/markov.rb b/lib/twitter_ebooks/markov.rb deleted file mode 100644 index ed66fad..0000000 --- a/lib/twitter_ebooks/markov.rb +++ /dev/null @@ -1,82 +0,0 @@ -module Ebooks - # Special INTERIM token represents sentence boundaries - # This is so we can include start and end of statements in model - # Due to the way the sentence tokenizer works, can correspond - # to multiple actual parts of text (such as ^, $, \n and .?!) - INTERIM = :interim - - # This is an ngram-based Markov model optimized to build from a - # tokenized sentence list without requiring too much transformation - class MarkovModel - def self.build(sentences) - MarkovModel.new.consume(sentences) - end - - def consume(sentences) - # These models are of the form ngram => [[sentence_pos, token_pos] || INTERIM, ...] - # We map by both bigrams and unigrams so we can fall back to the latter in - # cases where an input bigram is unavailable, such as starting a sentence - @sentences = sentences - @unigrams = {} - @bigrams = {} - - sentences.each_with_index do |tokens, i| - last_token = INTERIM - tokens.each_with_index do |token, j| - @unigrams[last_token] ||= [] - @unigrams[last_token] << [i, j] - - @bigrams[last_token] ||= {} - @bigrams[last_token][token] ||= [] - - if j == tokens.length-1 # Mark sentence endings - @unigrams[token] ||= [] - @unigrams[token] << INTERIM - @bigrams[last_token][token] << INTERIM - else - @bigrams[last_token][token] << [i, j+1] - end - - last_token = token - end - end - - self - end - - def find_token(index) - if index == INTERIM - INTERIM - else - @sentences[index[0]][index[1]] - end - end - - def chain(tokens) - if tokens.length == 1 - matches = @unigrams[tokens[-1]] - else - matches = @bigrams[tokens[-2]][tokens[-1]] - matches = @unigrams[tokens[-1]] if matches.length < 2 - end - - if matches.empty? - # This should never happen unless a strange token is - # supplied from outside the dataset - raise ArgumentError, "Unable to continue chain for: #{tokens.inspect}" - end - - next_token = find_token(matches.sample) - - if next_token == INTERIM # We chose to end the sentence - return tokens - else - return chain(tokens + [next_token]) - end - end - - def generate - NLP.reconstruct(chain([INTERIM])) - end - end -end diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 0f1bbad..666f78c 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -8,16 +8,41 @@ require 'csv' module Ebooks class Model - attr_accessor :hash, :tokens, :sentences, :mentions, :keywords + # @return [Array] + # An array of unique tokens. This is the main source of actual strings + # in the model. Manipulation of a token is done using its index + # in this array, which we call a "tiki" + attr_accessor :tokens - def self.consume(txtpath) - Model.new.consume(txtpath) + # @return [Array>] + # Sentences represented by arrays of tikis + attr_accessor :sentences + + # @return [Array>] + # Sentences derived from Twitter mentions + attr_accessor :mentions + + # @return [Array] + # The top 200 most important keywords, in descending order + attr_accessor :keywords + + # Generate a new model from a corpus file + # @param path [String] + # @return [Ebooks::Model] + def self.consume(path) + Model.new.consume(path) end + # Generate a new model from multiple corpus files + # @param paths [Array] + # @return [Ebooks::Model] def self.consume_all(paths) Model.new.consume_all(paths) end + # Load a saved model + # @param path [String] + # @return [Ebooks::Model] def self.load(path) model = Model.new model.instance_eval do @@ -30,6 +55,8 @@ module Ebooks model end + # Save model to a file + # @param path [String] def save(path) File.open(path, 'wb') do |f| f.write(Marshal.dump({ @@ -43,19 +70,22 @@ module Ebooks end def initialize - # This is the only source of actual strings in the model. It is - # an array of unique tokens. Manipulation of a token is mostly done - # using its index in this array, which we call a "tiki" @tokens = [] # Reverse lookup tiki by token, for faster generation @tikis = {} end + # Reverse lookup a token index from a token + # @param token [String] + # @return [Integer] def tikify(token) @tikis[token] or (@tokens << token and @tikis[token] = @tokens.length-1) end + # Convert a body of text into arrays of tikis + # @param text [String] + # @return [Array>] def mass_tikify(text) sentences = NLP.sentences(text) @@ -69,9 +99,10 @@ module Ebooks end end + # Consume a corpus into this model + # @param path [String] 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}" @@ -94,6 +125,8 @@ module Ebooks consume_lines(lines) end + # Consume a sequence of lines + # @param lines [Array] def consume_lines(lines) log "Removing commented lines and sorting mentions" @@ -126,11 +159,12 @@ module Ebooks self end + # Consume multiple corpuses into this model + # @param paths [Array] def consume_all(paths) lines = [] paths.each do |path| content = File.read(path, :encoding => 'utf-8') - @hash = Digest::MD5.hexdigest(content) if path.split('.')[-1] == "json" log "Reading json corpus from #{path}" @@ -156,25 +190,26 @@ module Ebooks consume_lines(lines) end - def fix(tweet) - # This seems to require an external api call - #begin - # fixer = NLP.gingerice.parse(tweet) - # log fixer if fixer['corrections'] - # tweet = fixer['result'] - #rescue Exception => e - # log e.message - # log e.backtrace - #end - - NLP.htmlentities.decode tweet + # Correct encoding issues in generated text + # @param text [String] + # @return [String] + def fix(text) + NLP.htmlentities.decode text end + # Check if an array of tikis comprises a valid tweet + # @param tikis [Array] + # @param limit Integer how many chars we have left def valid_tweet?(tikis, limit) tweet = NLP.reconstruct(tikis, @tokens) tweet.length <= limit && !NLP.unmatched_enclosers?(tweet) end + # Generate some text + # @param limit [Integer] available characters + # @param generator [SuffixGenerator, nil] + # @param retry_limit [Integer] how many times to retry on duplicates + # @return [String] def make_statement(limit=140, generator=nil, retry_limit=10) responding = !generator.nil? generator ||= SuffixGenerator.build(@sentences) @@ -209,12 +244,17 @@ module Ebooks end # Test if a sentence has been copied verbatim from original - def verbatim?(tokens) - @sentences.include?(tokens) || @mentions.include?(tokens) + # @param tikis [Array] + # @return [Boolean] + def verbatim?(tikis) + @sentences.include?(tikis) || @mentions.include?(tikis) end - # Finds all relevant tokenized sentences to given input by + # Finds relevant and slightly relevant tokenized sentences to input # comparing non-stopword token overlaps + # @param sentences [Array>] + # @param input [String] + # @return [Array>, Array>>] def find_relevant(sentences, input) relevant = [] slightly_relevant = [] @@ -235,6 +275,10 @@ module Ebooks # Generates a response by looking for related sentences # in the corpus and building a smaller generator from these + # @param input [String] + # @param limit [Integer] characters available for response + # @param sentences [Array>] + # @return [String] def make_response(input, limit=140, sentences=@mentions) # Prefer mentions relevant, slightly_relevant = find_relevant(sentences, input) diff --git a/lib/twitter_ebooks/nlp.rb b/lib/twitter_ebooks/nlp.rb index 819ee69..541720b 100644 --- a/lib/twitter_ebooks/nlp.rb +++ b/lib/twitter_ebooks/nlp.rb @@ -12,31 +12,35 @@ module Ebooks # Some of this stuff is pretty heavy and we don't necessarily need # to be using it all of the time + # Lazily loads an array of stopwords + # Stopwords are common English words that should often be ignored + # @return [Array] def self.stopwords @stopwords ||= File.read(File.join(DATA_PATH, 'stopwords.txt')).split end + # Lazily loads an array of known English nouns + # @return [Array] def self.nouns @nouns ||= File.read(File.join(DATA_PATH, 'nouns.txt')).split end + # Lazily loads an array of known English adjectives + # @return [Array] def self.adjectives @adjectives ||= File.read(File.join(DATA_PATH, 'adjectives.txt')).split end - # POS tagger + # Lazily load part-of-speech tagging library + # This can determine whether a word is being used as a noun/adjective/verb + # @return [EngTagger] def self.tagger require 'engtagger' @tagger ||= EngTagger.new end - # Gingerice text correction service - def self.gingerice - require 'gingerice' - Gingerice::Parser.new # No caching for this one - end - - # For decoding html entities + # Lazily load HTML entity decoder + # @return [HTMLEntities] def self.htmlentities require 'htmlentities' @htmlentities ||= HTMLEntities.new @@ -44,7 +48,9 @@ module Ebooks ### Utility functions - # We don't really want to deal with all this weird unicode punctuation + # Normalize some strange unicode punctuation variants + # @param text [String] + # @return [String] def self.normalize(text) htmlentities.decode text.gsub('“', '"').gsub('”', '"').gsub('’', "'").gsub('…', '...') end @@ -53,6 +59,8 @@ module Ebooks # We use ad hoc approach because fancy libraries do not deal # especially well with tweet formatting, and we can fake solving # the quote problem during generation + # @param text [String] + # @return [Array] def self.sentences(text) text.split(/\n+|(?<=[.?!])\s+/) end @@ -60,15 +68,23 @@ module Ebooks # Split a sentence into word-level tokens # As above, this is ad hoc because tokenization libraries # do not behave well wrt. things like emoticons and timestamps + # @param sentence [String] + # @return [Array] def self.tokenize(sentence) regex = /\s+|(?<=[#{PUNCTUATION}]\s)(?=[a-zA-Z])|(?<=[a-zA-Z])(?=[#{PUNCTUATION}]+\s)/ sentence.split(regex) end + # Get the 'stem' form of a word e.g. 'cats' -> 'cat' + # @param word [String] + # @return [String] def self.stem(word) Stemmer::stem_word(word.downcase) end + # Use highscore gem to find interesting keywords in a corpus + # @param text [String] + # @return [Highscore::Keywords] def self.keywords(text) # Preprocess to remove stopwords (highscore's blacklist is v. slow) text = NLP.tokenize(text).reject { |t| stopword?(t) }.join(' ') @@ -90,7 +106,10 @@ module Ebooks text.keywords end - # Takes a list of tokens and builds a nice-looking sentence + # Builds a proper sentence from a list of tikis + # @param tikis [Array] + # @param tokens [Array] + # @return [String] def self.reconstruct(tikis, tokens) text = "" last_token = nil @@ -105,6 +124,9 @@ module Ebooks end # Determine if we need to insert a space between two tokens + # @param token1 [String] + # @param token2 [String] + # @return [Boolean] def self.space_between?(token1, token2) p1 = self.punctuation?(token1) p2 = self.punctuation?(token2) @@ -119,10 +141,16 @@ module Ebooks end end + # Is this token comprised of punctuation? + # @param token [String] + # @return [Boolean] def self.punctuation?(token) (token.chars.to_set - PUNCTUATION.chars.to_set).empty? end + # Is this token a stopword? + # @param token [String] + # @return [Boolean] def self.stopword?(token) @stopword_set ||= stopwords.map(&:downcase).to_set @stopword_set.include?(token.downcase) @@ -130,7 +158,9 @@ module Ebooks # Determine if a sample of text contains unmatched brackets or quotes # This is one of the more frequent and noticeable failure modes for - # the markov generator; we can just tell it to retry + # the generator; we can just tell it to retry + # @param text [String] + # @return [Boolean] def self.unmatched_enclosers?(text) enclosers = ['**', '""', '()', '[]', '``', "''"] enclosers.each do |pair| @@ -153,10 +183,13 @@ module Ebooks end # Determine if a2 is a subsequence of a1 + # @param a1 [Array] + # @param a2 [Array] + # @return [Boolean] def self.subseq?(a1, a2) - a1.each_index.find do |i| + !a1.each_index.find do |i| a1[i...i+a2.length] == a2 - end + end.nil? end end end diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb index 6e09d7e..83c6f88 100644 --- a/lib/twitter_ebooks/suffix.rb +++ b/lib/twitter_ebooks/suffix.rb @@ -1,11 +1,14 @@ # encoding: utf-8 module Ebooks - # This generator uses data identical to the markov model, but + # This generator uses data identical to a markov model, but # instead of making a chain by looking up bigrams it uses the # positions to randomly replace suffixes in one sentence with # matching suffixes in another class SuffixGenerator + # Build a generator from a corpus of tikified sentences + # @param sentences [Array>] + # @return [SuffixGenerator] def self.build(sentences) SuffixGenerator.new(sentences) end @@ -39,6 +42,11 @@ module Ebooks self end + + # Generate a recombined sequence of tikis + # @param passes [Integer] number of times to recombine + # @param n [Symbol] :unigrams or :bigrams (affects how conservative the model is) + # @return [Array] def generate(passes=5, n=:unigrams) index = rand(@sentences.length) tikis = @sentences[index] diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 9456226..37ab8f8 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "2.3.2" + VERSION = "3.0.0" end diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index f7d0dec..802b937 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -3,8 +3,6 @@ require 'memory_profiler' require 'tempfile' require 'timecop' -def Process.rss; `ps -o rss= -p #{Process.pid}`.chomp.to_i; end - class TestBot < Ebooks::Bot attr_accessor :twitter diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 6224cf9..2e68482 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -20,6 +20,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'memory_profiler' gem.add_development_dependency 'timecop' gem.add_development_dependency 'pry-byebug' + gem.add_development_dependency 'yard' gem.add_runtime_dependency 'twitter', '~> 5.0' gem.add_runtime_dependency 'simple_oauth' From 822f5e4c6c9fa8e9b246d108643785567818bdfb Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 22:57:32 +1100 Subject: [PATCH 099/168] More cleanup --- README.md | 72 +- bin/ebooks | 74 +- lib/twitter_ebooks.rb | 1 + lib/twitter_ebooks/archive.rb | 9 +- lib/twitter_ebooks/bot.rb | 65 +- skeleton/Gemfile | 2 +- skeleton/Procfile | 2 +- skeleton/bots.rb | 59 +- skeleton/run.rb | 9 - spec/bot_spec.rb | 3 +- test/corpus/0xabad1dea.tweets | 14696 -------------------------------- test/keywords.rb | 18 - test/tokenize.rb | 18 - 13 files changed, 144 insertions(+), 14884 deletions(-) mode change 100755 => 100644 lib/twitter_ebooks/bot.rb mode change 100755 => 100644 skeleton/bots.rb delete mode 100644 skeleton/run.rb delete mode 100644 test/corpus/0xabad1dea.tweets delete mode 100644 test/keywords.rb delete mode 100644 test/tokenize.rb diff --git a/README.md b/README.md index bf4c4e0..22f3959 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,11 @@ A framework for building interactive twitterbots which respond to mentions/DMs. ## New in 3.0 -- Bots now run in their own threads (no eventmachine), and startup is parallelized -- Replies are slightly rate-limited by default to prevent infinite bot convos +- Bots run in their own threads (no eventmachine), and startup is parallelized +- Bots start with `ebooks start`, and no longer die on unhandled exceptions +- `ebooks auth` command will create new access tokens, for running multiple bots +- `ebooks console` starts a ruby interpreter with bots loaded (see Ebooks::Bot.all) +- Replies are slightly rate-limited to prevent infinite bot convos - Non-participating users in a mention chain will be dropped after a few tweets ## Installation @@ -26,47 +29,57 @@ Run `ebooks new ` to generate a new repository containing a sample bot ``` ruby # This is an example bot definition with event handlers commented out -# You can define as many of these as you like; they will run simultaneously +# You can define and instantiate as many bots as you like -Ebooks::Bot.new("abby_ebooks") do |bot| - # Consumer details come from registering an app at https://dev.twitter.com/ - # OAuth details can be fetched with https://github.com/marcel/twurl - bot.consumer_key = "" # Your app consumer key - bot.consumer_secret = "" # Your app consumer secret - bot.oauth_token = "" # Token connecting the app to this account - bot.oauth_token_secret = "" # Secret connecting the app to this account +class MyBot < Ebooks::Bot + # Configuration here applies to all MyBots + def configure + # Consumer details come from registering an app at https://dev.twitter.com/ + # Once you have consumer details, use "ebooks auth" for new access tokens + self.consumer_key = '' # Your app consumer key + self.consumer_secret = '' # Your app consumer secret - bot.on_startup do - # Run some startup task - # puts "I'm ready!" + # Users to block instead of interacting with + self.blacklist = ['tnietzschequote'] + + # Range in seconds to randomize delay when bot.delay is called + self.delay_range = 1..6 end - bot.on_message do |dm| + def on_startup + scheduler.every '24h' do + # Tweet something every 24 hours + # See https://github.com/jmettraux/rufus-scheduler + # bot.tweet("hi") + # bot.pictweet("hi", "cuteselfie.jpg") + end + end + + def on_message(dm) # Reply to a DM # bot.reply(dm, "secret secrets") end - bot.on_follow do |user| + def on_follow(user) # Follow a user back # bot.follow(user[:screen_name]) end - bot.on_mention do |tweet, meta| + def on_mention(tweet) # Reply to a mention - # bot.reply(tweet, meta[:reply_prefix] + "oh hullo") + # bot.reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") end - bot.on_timeline do |tweet, meta| + def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # bot.reply(tweet, meta[:reply_prefix] + "nice tweet") + # bot.reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") end +end - bot.scheduler.every '24h' do - # Tweet something every 24 hours - # See https://github.com/jmettraux/rufus-scheduler - # bot.tweet("hi") - # bot.pictweet("hi", "cuteselfie.jpg", ":possibly_sensitive => true") - end +# Make a MyBot and attach it to an account +MyBot.new("{{BOT_NAME}}") do |bot| + bot.access_token = "" # Token connecting the app to this account + bot.access_token_secret = "" # Secret connecting the app to this account end ``` @@ -107,7 +120,6 @@ Text files use newlines and full stops to seperate statements. Once you have a model, the primary use is to produce statements and related responses to input, using a pseudo-Markov generator: ``` ruby -> require 'twitter_ebooks' > model = Ebooks::Model.load("model/0xabad1dea.model") > model.make_statement(140) => "My Terrible Netbook may be the kind of person who buys Starbucks, but this Rackspace vuln is pretty straight up a backdoor" @@ -118,14 +130,18 @@ Once you have a model, the primary use is to produce statements and related resp The secondary function is the "interesting keywords" list. For example, I use this to determine whether a bot wants to fav/retweet/reply to something in its timeline: ``` ruby -top100 = model.keywords.top(100) +top100 = model.keywords.take(100) tokens = Ebooks::NLP.tokenize(tweet[:text]) if tokens.find { |t| top100.include?(t) } - bot.twitter.favorite(tweet[:id]) + bot.favorite(tweet[:id]) end ``` +## Bot niceness + + + ## Other notes If you're using Heroku, which has no persistent filesystem, automating the process of archiving, consuming and updating can be tricky. My current solution is just a daily cron job which commits and pushes for me, which is pretty hacky. diff --git a/bin/ebooks b/bin/ebooks index a41681f..da54991 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -4,6 +4,12 @@ require 'twitter_ebooks' require 'ostruct' +module Ebooks::Util + def pretty_exception(e) + + end +end + module Ebooks::CLI APP_PATH = Dir.pwd # XXX do some recursive thing instead HELP = OpenStruct.new @@ -17,8 +23,7 @@ Usage: ebooks consume [corpus_path2] [...] ebooks consume-all [corpus_path2] [...] ebooks gen [input] - ebooks score - ebooks archive + ebooks archive [path] ebooks tweet STR @@ -50,13 +55,18 @@ STR exit 1 end - FileUtils.cp_r(SKELETON_PATH, path) + FileUtils.cp_r(Ebooks::SKELETON_PATH, path) File.open(File.join(path, 'bots.rb'), 'w') do |f| - template = File.read(File.join(SKELETON_PATH, 'bots.rb')) + template = File.read(File.join(Ebooks::SKELETON_PATH, 'bots.rb')) f.write(template.gsub("{{BOT_NAME}}", reponame)) end + File.open(File.join(path, 'Gemfile'), 'w') do |f| + template = File.read(File.join(Ebooks::SKELETON_PATH, 'Gemfile')) + f.write(template.gsub("{{RUBY_VERSION}}", RUBY_VERSION)) + end + log "New twitter_ebooks app created at #{reponame}" end @@ -78,7 +88,7 @@ STR shortname = filename.split('.')[0..-2].join('.') outpath = File.join(APP_PATH, 'model', "#{shortname}.model") - Model.consume(path).save(outpath) + Ebooks::Model.consume(path).save(outpath) log "Corpus consumed to #{outpath}" end end @@ -97,15 +107,7 @@ STR end outpath = File.join(APP_PATH, 'model', "#{name}.model") - #pathes.each do |path| - # filename = File.basename(path) - # shortname = filename.split('.')[0..-2].join('.') - # - # outpath = File.join(APP_PATH, 'model', "#{shortname}.model") - # Model.consume(path).save(outpath) - # log "Corpus consumed to #{outpath}" - #end - Model.consume_all(paths).save(outpath) + Ebooks::Model.consume_all(paths).save(outpath) log "Corpuses consumed to #{outpath}" end @@ -122,7 +124,7 @@ STR exit 1 end - model = Model.load(model_path) + model = Ebooks::Model.load(model_path) if input && !input.empty? puts "@cmd " + model.make_response(input, 135) else @@ -130,38 +132,22 @@ STR end end - HELP.score = <<-STR - Usage: ebooks score - - Scores "interest" in some text input according to how - well unique keywords match the model. - STR - - def self.score(model_path, input) - if model_path.nil? || input.nil? - help :score - exit 1 - end - - model = Model.load(model_path) - model.score_interest(input) - end - HELP.archive = <<-STR - Usage: ebooks archive + Usage: ebooks archive [outpath] - Downloads a json corpus of the 's tweets to . + Downloads a json corpus of the 's tweets. + Output defaults to corpus/.json Due to API limitations, this can only receive up to ~3000 tweets into the past. STR - def self.archive(username, outpath) - if username.nil? || outpath.nil? + def self.archive(username, outpath=nil) + if username.nil? help :archive exit 1 end - Archive.new(username, outpath).sync + Ebooks::Archive.new(username, outpath).sync end HELP.tweet = <<-STR @@ -178,10 +164,9 @@ STR end load File.join(APP_PATH, 'bots.rb') - model = Model.load(modelpath) + model = Ebooks::Model.load(modelpath) statement = model.make_statement - log "@#{botname}: #{statement}" - bot = Bot.get(botname) + bot = Ebooks::Bot.get(botname) bot.configure bot.tweet(statement) end @@ -223,7 +208,7 @@ STR access_token = request_token.get_access_token(oauth_verifier: pin) - log "Account authorized successfully.\n" + + log "Account authorized successfully. Make sure to put these in your bots.rb!\n" + " access token: #{access_token.token}\n" + " access token secret: #{access_token.secret}" end @@ -271,9 +256,9 @@ STR loop do begin bot.start - rescue Exception - bot.log $! - puts $@ + rescue Exception => e + bot.log e.inspect + puts e.backtrace.map { |s| "\t"+s }.join("\n") end bot.log "Sleeping before reconnect" sleep 5 @@ -334,7 +319,6 @@ STR when "consume" then consume(args[1..-1]) when "consume-all" then consume_all(args[1], args[2..-1]) when "gen" then gen(args[1], args[2..-1].join(' ')) - when "score" then score(args[1], args[2..-1].join(' ')) when "archive" then archive(args[1], args[2]) when "tweet" then tweet(args[1], args[2]) when "jsonify" then jsonify(args[1..-1]) diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb index b104501..9d9652f 100644 --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -11,6 +11,7 @@ module Ebooks SKELETON_PATH = File.join(GEM_PATH, 'skeleton') TEST_PATH = File.join(GEM_PATH, 'test') TEST_CORPUS_PATH = File.join(TEST_PATH, 'corpus/0xabad1dea.tweets') + INTERIM = :interim end require 'twitter_ebooks/nlp' diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 281832f..3582fcc 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -39,9 +39,14 @@ module Ebooks end end - def initialize(username, path, client=nil) + def initialize(username, path=nil, client=nil) @username = username - @path = path || "#{username}.json" + @path = path || "corpus/#{username}.json" + + if File.directory?(@path) + @path = File.join(@path, "#{username}.json") + end + @client = client || make_client if File.exists?(@path) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb old mode 100755 new mode 100644 index 585c96e..c25e2e7 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -6,28 +6,11 @@ module Ebooks class ConfigurationError < Exception end - # Information about a particular Twitter user we know - class UserInfo - attr_reader :username - - # @return [Integer] how many times we can pester this user unprompted - attr_accessor :pesters_left - - def initialize(username) - @username = username - @pesters_left = 1 - end - - # @return [Boolean] true if we're allowed to pester this user - def can_pester? - @pesters_left > 0 - end - end - # Represents a single reply tree of tweets class Conversation attr_reader :last_update + # @param bot [Ebooks::Bot] def initialize(bot) @bot = bot @tweets = [] @@ -90,6 +73,8 @@ module Ebooks @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') end + # @param bot [Ebooks::Bot] + # @param ev [Twitter::Tweet] def initialize(bot, ev) @bot = bot @tweet = ev @@ -138,7 +123,7 @@ module Ebooks # @return [Hash{String => Ebooks::Conversation}] maps tweet ids to their conversation contexts attr_accessor :conversations # @return [Range, Integer] range of seconds to delay in delay method - attr_accessor :delay + attr_accessor :delay_range # @return [Array] list of all defined bots def self.all; @@all ||= []; end @@ -161,24 +146,17 @@ module Ebooks # @param b Block to call with new bot def initialize(username, &b) @blacklist ||= [] - @userinfo ||= {} @conversations ||= {} # Tweet ids we've already observed, to avoid duplication @seen_tweets ||= {} @username = username - configure(*args, &b) + configure + b.call(self) unless b.nil? Bot.all << self end - # Find information we've collected about a user - # @param username [String] - # @return [Ebooks::UserInfo] - def userinfo(username) - @userinfo[username] ||= UserInfo.new(username) - end - # Find or create the conversation context for this tweet # @param tweet [Twitter::Tweet] # @return [Ebooks::Conversation] @@ -229,7 +207,7 @@ module Ebooks # Calculate some meta information about a tweet relevant for replying # @param ev [Twitter::Tweet] # @return [Ebooks::TweetMeta] - def calc_meta(ev) + def meta(ev) TweetMeta.new(self, ev) end @@ -255,7 +233,7 @@ module Ebooks return unless ev.text # If it's not a text-containing tweet, ignore it return if ev.user.screen_name == @username # Ignore our own tweets - meta = calc_meta(ev) + meta = meta(ev) if blacklisted?(ev.user.screen_name) log "Blocking blacklisted user @#{ev.user.screen_name}" @@ -273,9 +251,9 @@ module Ebooks if meta.mentions_bot? log "Mention from @#{ev.user.screen_name}: #{ev.text}" conversation(ev).add(ev) - fire(:mention, ev, meta) + fire(:mention, ev) else - fire(:timeline, ev, meta) + fire(:timeline, ev) end elsif ev.is_a?(Twitter::Streaming::DeletedTweet) || @@ -290,7 +268,19 @@ module Ebooks def prepare # Sanity check if @username.nil? - raise ConfigurationError, "bot.username cannot be nil" + raise ConfigurationError, "bot username cannot be nil" + end + + if @consumer_key.nil? || @consumer_key.empty? || + @consumer_secret.nil? || @consumer_key.empty? + log "Missing consumer_key or consumer_secret. These details can be acquired by registering a Twitter app at https://apps.twitter.com/" + exit 1 + end + + if @access_token.nil? || @access_token.empty? || + @access_token_secret.nil? || @access_token_secret.empty? + log "Missing access_token or access_token_secret. Please run `ebooks auth`." + exit 1 end twitter @@ -346,20 +336,13 @@ module Ebooks log "Sending DM to @#{ev.sender.screen_name}: #{text}" twitter.create_direct_message(ev.sender.screen_name, text, opts) elsif ev.is_a? Twitter::Tweet - meta = calc_meta(ev) + meta = meta(ev) if conversation(ev).is_bot?(ev.user.screen_name) log "Not replying to suspected bot @#{ev.user.screen_name}" return false end - if !meta.mentions_bot? - if !userinfo(ev.user.screen_name).can_pester? - log "Not replying: leaving @#{ev.user.screen_name} alone" - return false - end - end - log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" tweet = twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id) conversation(tweet).add(tweet) diff --git a/skeleton/Gemfile b/skeleton/Gemfile index 6059e80..9be91cb 100644 --- a/skeleton/Gemfile +++ b/skeleton/Gemfile @@ -1,4 +1,4 @@ source 'http://rubygems.org' -ruby '1.9.3' +ruby '{{RUBY_VERSION}}' gem 'twitter_ebooks' diff --git a/skeleton/Procfile b/skeleton/Procfile index 9357bc0..84f6f23 100644 --- a/skeleton/Procfile +++ b/skeleton/Procfile @@ -1 +1 @@ -worker: ruby run.rb start +worker: ebooks start diff --git a/skeleton/bots.rb b/skeleton/bots.rb old mode 100755 new mode 100644 index 4e480bb..969f072 --- a/skeleton/bots.rb +++ b/skeleton/bots.rb @@ -1,42 +1,55 @@ -#!/usr/bin/env ruby - require 'twitter_ebooks' # This is an example bot definition with event handlers commented out -# You can define as many of these as you like; they will run simultaneously +# You can define and instantiate as many bots as you like -Ebooks::Bot.new("{{BOT_NAME}}") do |bot| - # Consumer details come from registering an app at https://dev.twitter.com/ - # OAuth details can be fetched with https://github.com/marcel/twurl - bot.consumer_key = "" # Your app consumer key - bot.consumer_secret = "" # Your app consumer secret - bot.oauth_token = "" # Token connecting the app to this account - bot.oauth_token_secret = "" # Secret connecting the app to this account +class MyBot < Ebooks::Bot + # Configuration here applies to all MyBots + def configure + # Consumer details come from registering an app at https://dev.twitter.com/ + # Once you have consumer details, use "ebooks auth" for new access tokens + self.consumer_key = '' # Your app consumer key + self.consumer_secret = '' # Your app consumer secret - bot.on_message do |dm| + # Users to block instead of interacting with + self.blacklist = ['tnietzschequote'] + + # Range in seconds to randomize delay when bot.delay is called + self.delay_range = 1..6 + end + + def on_startup + scheduler.every '24h' do + # Tweet something every 24 hours + # See https://github.com/jmettraux/rufus-scheduler + # bot.tweet("hi") + # bot.pictweet("hi", "cuteselfie.jpg") + end + end + + def on_message(dm) # Reply to a DM # bot.reply(dm, "secret secrets") end - bot.on_follow do |user| + def on_follow(user) # Follow a user back # bot.follow(user[:screen_name]) end - bot.on_mention do |tweet, meta| + def on_mention(tweet) # Reply to a mention - # bot.reply(tweet, meta[:reply_prefix] + "oh hullo") + # bot.reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") end - bot.on_timeline do |tweet, meta| + def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # bot.reply(tweet, meta[:reply_prefix] + "nice tweet") - end - - bot.scheduler.every '24h' do - # Tweet something every 24 hours - # See https://github.com/jmettraux/rufus-scheduler - # bot.tweet("hi") - # bot.pictweet("hi", "cuteselfie.jpg", ":possibly_sensitive => true") + # bot.reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") end end + +# Make a MyBot and attach it to an account +MyBot.new("{{BOT_NAME}}") do |bot| + bot.access_token = "" # Token connecting the app to this account + bot.access_token_secret = "" # Secret connecting the app to this account +end diff --git a/skeleton/run.rb b/skeleton/run.rb deleted file mode 100644 index 5b7b308..0000000 --- a/skeleton/run.rb +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env ruby - -require_relative 'bots' - -EM.run do - Ebooks::Bot.all.each do |bot| - bot.start - end -end diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 802b937..6b224ad 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -7,7 +7,6 @@ class TestBot < Ebooks::Bot attr_accessor :twitter def configure - self.username = "test_ebooks" end def on_direct_message(dm) @@ -84,7 +83,7 @@ end describe Ebooks::Bot do include Ebooks::Test - let(:bot) { TestBot.new } + let(:bot) { TestBot.new('test_ebooks') } before { Timecop.freeze } after { Timecop.return } diff --git a/test/corpus/0xabad1dea.tweets b/test/corpus/0xabad1dea.tweets deleted file mode 100644 index 4e4f318..0000000 --- a/test/corpus/0xabad1dea.tweets +++ /dev/null @@ -1,14696 +0,0 @@ -# 382286831561080832 -@Ionustron I tend to be really enamored of the sounds I can make playing two squares together. Then I'm all out of squares. :( -RT @rantyben: People who are NOT absent minded will never know the unbridled joy of opening the fridge and finding breakfast pizza. -Chiptune I made one. https://t.co/QH7oin7RV3 *thud* -@xa329 if they were they'd be a) not up to standards currently enforced b) already crashed. -I may not be the greatest composer to ever walk the earth but never let it be said I don't obsess about square wave timbre -@Xaosopher yep looks like he simply blocked anyone who said anything even the slightest bit critical -@Rosewriter2 isn't... reading books and writing letters... what computers are for? -@sakjur @IsTouchIdHacked there are several methods on the webpage now http://t.co/tzeyMIhJnR -@kll @IsTouchIdHacked @Arturas well, I don't have ten thousand dollars to spare, but $25 is infinitely better than $0 eh? -I did not formally pledge @IsTouchIdHacked but I have sent them a little something in @arturas's honor -@frkbmb @phaz3zero @flyingparchment @trutherbot oh look someone who doesn’t know difference between Freedom of Speech and Being A Jerk -@frkbmb @phaz3zero @trutherbot everyone knows human beings are as biologically and culturally simple as carrots! Easy peasy get it peas. -@glassresistor EVERY DAY IN EVERY GAY -@almightygod @WhosTheWiser what a perfect example of love joy peace patience kindness goodness faithfulness gentleness and self-control -I’m told it’s Bisexual Visibility Day. So… GIRLS ARE PRETTY CUTE SO ARE BOYS EVERYONE IS REALLY I just like nerds in general -Quick! Someone go back in time and tell the Nintendo designers that it is MISSION CRITICAL they fit one more !@#$ square wave in this thing -@mikedoherty_ca yeah his name is @arturas -@Dan2552 the people in charge did say it was not being awarded on the video alone as the video is weak. -@Dan2552 anyone with a well-established reputation for having performed fingerprint hacks in the past and has well-known witnesses yes -@0xcharlie @Arturas no you would still have me I would never make fun of you Dr. Chopshop -@iPlop when they took questions from the press etc. they clearly said: no, no, fake/severed finger will not work, we tested -@iPlop it was marketed as: requires. the. real. finger. -@TehGrumpyDude not really! But it had to be proven. -@PxlPhile talking about someone on twitter without atting their handle. Or in this case, talking about a thing and not linking it -.@skattyadz probably, but don’t say “oh it must be a real live finger to work!” and expect us to not try really hard :) -The community broke the marketing promises of Touch ID on a scale of *hours* and we outed a toxic fraud. Cheers all around -RT @hdmoore: if (security_contest_bounty > 1000.00) { find_any_excuse_not_to_pay(); rewrite_history(); turn_off_cellphones(); exit(poorly)… -@jasonmp85 @bstreiff it was -ALWAYS- about using a 2D fingerprint taken from a smooth surface and @arturas is a media whore fraud -@jasonmp85 @bstreiff um, no, that's never what #istouchidhackedyet was, source: I am kinda you know friends with all these people -Congratulations to Starbug and the CCC. Can we hack it? YES WE CAN -@USP_Talon lol pretty sure that’s just art and it’s intended to work with USB game pads in general -RT @nickdepetrillo: It's official. Starbug of the CCC has been declared the winner of #istouchidhackedyet http://t.co/MniI50BDZ4 Congrats! … -RT @chriseng: He forgot [7] Mercury must be in retrograde, and the blue moon must be visible in the night sky from Apple campus. https://t.… -@spacerog I’m pretty sure that happened as soon as the first waves of the gigabyte download completed. -All the gamers are subtweeting Steam OS so I had to go find the actual link http://t.co/R8UC9V9Bir ooh pretty shiny -RT @gsuberland: BlackBerry is being acquired. No surprise there! http://t.co/YWBpHg8xp3 -@octal @Arturas allegedly involved with occupy chicago or something like that? Allegedly a twit then too. -I notice the comments on his bloggy thing aren't moderated. What a strange choice. -@filcab yes, exactly. -In which @arturas completely backs down AFTER THE FACT of the CCC breakin. What. a. twit. https://t.co/I06G5Pp2gY -@oh_rodr that's pretty solid evidence those few hundred thousand followers are fake eh. No celeb would tweet their number -@bryanbrake @pxlphile I am amused at this avatar<-->name mismatch http://t.co/vdG8ZO1GXI -@bryanbrake allegedly -Successfully unfollowed and blocked by @arturas with one tweet! Is good day. -@oh_rodr @chriseng @Arturas yeah... we all got professional ethics to keep in mind -@mckeay @thegrugq I have not done anything so evil as to deserve that -@xa329 I assure you I am utterly 100% aware of that :) It was kinda my topic of research for several months recently... -@dipidoo yeah, we shielded things, but the cargo cult fear of it remained -@xa329 yeah, and then we fixed it. Go humans! (unironic, for once) -I had a dream that @thegrugq was showing me around Vegas. I'm putting this one down as one of those nightmares where you almost die -@dipidoo if it was actually a problem compared to the hardening airplanes already have, we'd find out from all those crashes :) -It's as rational an explanation as any as to why being bathed in the airport’s electronic interference is okay but that kindle is too much -Me in 20 years: "back in MY day, they made us turn off personal computers on airplanes, for fear they were possessed o' the devil" -RT @ternus: FAA to eliminate turn-off-electronics-on-takeoff-and-landing rule. Unreasonably happy about this. http://t.co/BfhzgaXyLs -@chriseng I mean everything he's done as a whole -Though actually there will probably be a Surface 3 by the time I upgrade Baby Acer, if they keep at this pace. -@chriseng @Arturas @violetblue what an extraordinarily efficient way to annoy as many professional hackers as possible -RT @chriseng: As expected, @Arturas has deleted all of his tweets that were referenced in @violetblue's ZDNet article: http://t.co/9vESix0z… -So if Surface Pro 2 can deliver eight real hours without the external battery I will consider it when my upgrade cycle comes around -RT @focalintent: With attitudes behind a FAQ like this http://t.co/qVGV7GLu84, no surprise women turned down http://t.co/6kiDqsPK5x /via @H… -@jeremiahfelt yes, but I'd shell out for the larger SSD -RT @travisgoodspeed: When I was in high school, we joked about teachers seizing books on PHP as drug paraphernalia. Nowadays I'm not so sur… -I didn't get a Surface Pro 1 because I got an Acer tablet that weighed a little more but actually gives eight hours or more on an i5 -RT @kristenvanschie: CNN correspondent says US "home to world's largest population of Somali Americans". Yes, mate. That's why they're call… -I'm glad I didn't cave to the sale impulse to pick up a a surface rt at $250 last week. And those new colors are actually better. -@m1sp "wow, I don't know anything about Windows. Hey Joe? What's one folder on Windows that ALWAYS exists?" -RT @m1sp: Surely there must be more sensible defaults for those fields, Mercurial. https://t.co/IUrI4odfPJ -If you haven't seen it before, I still think this is the best vocaloid video ever made http://t.co/P0pCyyDtq5 catchy, arty with a full story -@itgrrl @jjarmoc use a password with alpha and you will get the full alpha keyboard complete with fancy unicodes -"I'm not allowed to use lighters anymore" "You ever were?" "It was more of an oversight" "He should know to whitelist instead of blacklist!" -@thegrugq @marshray @nickdepetrillo I would like it on the record that I am extraordinarily delicate but that's just because I'm crazy -@nickdepetrillo aww. Chin up :( -@nrr I think the specific place is called Nara -@nrr actually I'm pretty sure that's in Japan -@a_greenberg we're in Poe's Law territory now -@wookiee but it was *specifically advertised* as being immune to these sorts of attacks - that you need the real finger -@wookiee why not? -RT @nickdepetrillo: The only individuals who will review CCC and Starbug's submission (if they so choose) to http://t.co/MniI50BDZ4 is @Err… -@DrPizza because they haven't been near good wifi for a couple days due to travel </hypothesis> -@QuantumG @vogon that is at least more rational than blaming users for not being programmers or programmers of the correct sort or -@ryan @chronic to be sure, I do not mind using fingerprint as *weak* security. But I do mind using it alone for anything serious -@ryan @chronic keys: by nature completely replaceable. And you don't drop copies of them in a thousand places a day. -RT @vogon: has the argument "it's open source, so you can contribute!" ever been wielded without a subtext of "it's your fault that it's ga… -RT @erdgeist: The hardest part about hacking #touchid was to get our hands on an iPhone -@jjarmoc I can't believe it isn't, it's so obvious -RT @jjarmoc: I really wish touchid+pin were an option. -@Talen_Lee IT'S ONE OF THOSE SLIDING ONES -@kx001 I'm a mix of Scottish and Irish, which people do seem to pronounce as Scotch-Irish around here. -@Talen_Lee not in the closet, he's way out of the closet. -@Talen_Lee nah, it's just that the door in question is in fact what's keeping a character who happens to be bi stuck inside. -@Talen_Lee not the kind that you bar shut, though, or it'd kinda be missing the point. Which is to keep the bisexual chars in the dungeon! -@kx001 I'm... pretty sure it's called scotch as short for Scotch Whiskey because it is Whiskey of Scotch Origin -Encyclopedia Brown would have caught that I described the same door as swinging both in and out in two different chapters. Oops. #editing -. @yoisthisracist I need a ruling on (said to a messy person who might be me): "Are you sure you're Scotch-Irish and not Slobbic?" -# 381925308061855744 -@talldarknweirdo the point being that we leave clear 2D fingerprints on accessible objects fairly often. -@talldarknweirdo he is my friend. We've talked about this. He has repeatedly used terms like "such as a beer mug." -@talldarknweirdo that never was part of the requirements. Just that the source material was 2D, not 3D. -@Maclark89 and, as crypto, is a vector of last resort :) the whole bet was originally based on taking a 2D print, the "easy" vector. -@Maclark89 ummmmmm..... no. Definitely, absolutely not. That doesn't even really make sense in the context of a fingerprint scanner. -@Maclark89 it doesn't matter! If the CCC claim is legitimate, then the sensor is hacked according to specification. -@Maclark89 um, well, the *whole point* is that it was specifically marketed to only work for *the real, fleshly finger.* -http://t.co/tzeyMIhJnR woo go ccc -@redsoxunixgeek I've bought iPad 1, 3 and 4 and none of them did. -@chvest all I did was google "next Apple event" and that's the word on the street. -Apple logic: iMac comes with free cleaning cloth. iPad doesn't. -@rgbkrk except you don't really "pick up" an ebook... marketing/charts are really important here. -@DIFion I'm guessing so. -Hacker Typer for history majors http://t.co/X6zYQRks1A -@rgbkrk yeah but, you get one shot at a first impression. -@Xaosopher I'm abusing a coworker who has turned down beer in favor of unspecified future favors. Ominous. -@Xaosopher well, let's assume I know I'll literally never be 100% satisfied and we have to cut the tail somewhere :( -@chriseng hey b-b-boss... you'll read it, right? :'( -It looks like Apple's next event is Tuesday the 15th so maybe I should aim for Tuesday the 8th? Will I be satisfied with editing in 2 weeks? -So far 3/4 of you have said Tuesday so there must be something to this -@pusscat is there a Science(tm) behind this or did you roll 1d7? -I feel like I should pick a date in a few weeks' time and commit to it... what's a good day of the week to launch an ebook?! -@bbfreak HOWEVER - don't get the 64GB model - I cheaped out - and now all my games are on external USB :p -@bbfreak and Morrowind on all the highest settings, which doesn't give it pause. -@bbfreak it's fine for "typical" games ie Not Skyrim. I've played Torchlight 2, Guild Wars 2 on modest settings, Eve Online, etc. -@fuzzmz @mikko they probably went on a takedown rampage already because it hit the tech news. -@m1sp what purposes are that -@drraid I think it'd qualify. I think what doesn't qualify is sticking the victim's finger into a 3D modeler -RT @mikko: Take your guess: Which one of these would you download if you're looking for BlackBerry BBM for Android? http://t.co/cGL8dGI7rS -@kivikakk I never got being opposed to the word "cisgender" in particular. Like how is it offensive or weird to describe the "default" -@Packetknife @barkybree if you mean the different splinters of Christianity, haha no, they waste a lot of resources on infighting. -@Packetknife they're being asked to get along with everyone else just like everyone else has to get along with them. My tears, they flow. -@Talen_Lee one of the boys is pretty tsundere! That's right, a tsundere *boy* -RT @lozzd: Etsy has a new HTTP response code "439 Request Not Handmade", for if we suspect you're a robot scraping/abusing us. Artisanal re… -@int_SiPlus_void but my mind is not made up what to do about the L's -@int_SiPlus_void except the only other repeating letters... don't? >.> -@vRobM yes it looked kind of silly the other way -@NireBryce in my name? okay -it's 2am let's typeset stuff http://t.co/RFsj56jZmc -@bhelyer nope starving is part of the authentic experience -Yessss my artist sent me the inks for my commissioned artwork of my own favorite character, I am most pleased -@ZadowSapherelis replied! -@m1sp hmm hmm. http://t.co/78u7qplLAl -RT @TweetsofOld: In 100 years, insect screens will be unnecessary. Mosquitoes, flies and roaches will have been exterminated. NY1900 -@ZadowSapherelis yep! -@thegrugq @nickdepetrillo n-n-no Your mom is probably a crime boss or something I bet -@bascule @matthew_d_green @SquareEng I may be thinking of some other brand of crypto stick then -@bascule @matthew_d_green dunno. Aren't those things out of stock all the time ? -@bascule @matthew_d_green somehow I don't suspect google authenticator would go over too well with my employer + our customers -@thegrugq @nickdepetrillo don't make me hate you, you are totally my favorite creepy old man -@thegrugq I guess to be fair to @nickdepetrillo I have to hate you too -@m1sp high school AU where Diadem Correl is Tsovinar's senpai -"For the purposes of this magic system, light is not a wave." Takin' stances on the hard problems. -@pettybooshwah @chronic you mean like @nickdepetrillo -RT @chronic: enrolled my nose in Touch ID. it works flawlessly. -@nickdepetrillo @thegrugq awkwardly covering up to the mutual followers I see! -@nickdepetrillo what kind of girl do you take me for http://t.co/bG13skoZmZ -@nickdepetrillo @thegrugq I hate you -@The1TrueSean oh also that pic is kinda spoilery! Oh well it becomes obvious fairly quickly. -@The1TrueSean it turns out Barsamin's entire wardrobe is green. I swear, he's a closet Slytherin -I drew an angry boy this time. He's angry because he found out green doesn't coordinate with lightning magic http://t.co/zpfDEL6LMT -RT @xor: Amazing "Marriott hotel carpet" cosplay and a ridiculous cease-&-desist from carper designer: http://t.co/kJVFm2pfYf http://t.co/n… -@Talen_Lee I'm not. -# 381561194722906113 -@eevee zomg you hacked my corporate email -@The1TrueSean and I would read the back covers and so as a 10yo I was convinced Martha's Vineyard especially was murder city -@The1TrueSean it was several different ones, mostly women I think. He would get them at the local library -@m1sk1t hmm this is a good one -@The1TrueSean and the result is that every millionaire vacationing under a secret identity gets murdered after taking a local lover ! -@The1TrueSean oh they are all set in modern times. But there are a lot of authors who live there, and as a result, they set novels there -@The1TrueSean based on my grandfather's endless supply of novels, Cape Cod and Martha's Vineyard are good places to get murdered -RT @deluxvivens: So the forensic dye used to document bruises, injuries after an assault? Dont always work on dark skinned women. http://t.… -RT @sergeybratus: @tqbf Automated repetition is very common on the web; even guessing is. We need a theory that wouldn't condemn them. -@tqbf @ErrataRob @sergeybratus ie I absolutely did not do anything to get my vanity domain for my irc shell listed but it is -@tqbf @ErrataRob @sergeybratus you CAN take steps, but they tend to just show up anyway -@The1TrueSean I was honestly assuming it was Cape Cod -RT @steveklabnik: http://t.co/OBxHPScXPG -> control-f 'Bsafe' :cry: -@ErrataRob @nickdepetrillo ewwww -@ExpBelieve @vogon are these all from the same book or something? Do want -@WhiteMageSlave did you lose any sunglasses -@killerswan @lindseybieda @wilkieii and I like that about twitter, but twitter is not the only application on the internet -RT @lindseybieda: @0xabad1dea So, myself and @wilkieii worked on http://t.co/1rGlFgfYdn to try and represent the complexity of gender. -@pusscat yep -Pretty strange that I feel "*definitely* female" but in a slightly different cultural context I would be considered way too masculine -@eevee heheh well I blocked them so if you fight about it, you're gonna sound like a crazy person if you leave me on the cc ;) -A major flaw in human experience is to assume that "your" experience or the "common" experience is "the" experience -Two different people wrote in to let me know that experiencing gender as other than strict m/f is "laughable." Only two is progress I guess -@TouchMyMalware the next boat to Prejudiced Twit Town leaves at 6pm. You can make it if you hurry. Blocked -@PWTerpstra @Jennimason0990 @varka lol fun fact I can pronounce those dang g's and ch's... if I speak in a whisper. But not at full volume. -@bobpoekert ridiculous sideburns? it's legit -.@Jennimason0990 yes. Dutch people are dragons. This is why their language has sounds no mortal human can pronounce -Wiki gem of the day: Japanese depiction of Dutch people, 1708 http://t.co/WuYpbdumFr -Twitter's lack of context for suggestions is sometimes tragic and sometimes, well, hahaha (cc @thegrugq ) http://t.co/j8lTIYtJl6 -It's 4:13 PM. I am just now having my morning coffee. I'm not sure what happened or where I went so wrong -@nickdepetrillo no. Someone else tweeted it earlier. I’m guessing either @osxreverser or @miaubiz -@flipzagging redditors did some math and one explanation is tenths of a second since dawn of year 2000 - overflows 32 bits -It is the crankiest of crank publications but science bloggers keep falling for it like they have no ability to google -Public service announcement: if you ever see “science news” which cites the Journal of Cosmology, slap the writer and burn the blog down -A moment of silence for a victim of integer overflow http://t.co/IIykIu6hYR -@skynetbnet @GeekGurlPhD okay time to block you for arbitrary prejudice against the reported experience of others goodbye -@skynetbnet @GeekGurlPhD this is the second time in a few days you’ve randomly said something rude, is there a particular reason? -@halvarflake no, it’s okay, I know it is the truth, and the truth hurts :p -@halvarflake ouch :( -RT @GeekGurlPhD: Are you a queer, bi, trans, asexual, pan or gender fluid video gamer? Your input is needed for a new book project http://t… -Got deep into a detailed reply to someone on reddit only to realize they misunderstood the definition of a virtual machine *backspace* -@chunter16 the pin situation has changed 0%. The change is there’s a faster shortcut if you have the right finger. -@chunter16 never, because it will fall back to pin -#IsTouchIDHackedYet no but you can START with a gelatin finger, which is promising. http://t.co/To6PHSX95E -@chriseng “it is highly unlikely that Wikileaks would trust an untrustworthy 19yo” uh, about that… -@m1sp we are not an em— :( -RT @nickdepetrillo: The only authoritative sources for http://t.co/6Sr6c7RwBC are myself and @ErrataRob. -RT @8bitpimp: Family values - Nintendo Style https://t.co/6Rcrpde16p -RT @dotMudge: Rhyme of the day: look real close and you will see that these three fruits have identities http://t.co/lWsytKg4AB -RT @dotMudge: Having fun lifting prints, cutting dies, and authenticating 'rind-prints'. My colleagues are brilliant :) http://t.co/n4UCsw4… -@i0n1c I don’t think so, one doesn’t upgrade from an iPhone 5 to a 5c, one gets a 5c for their teenager's birthday. -RT @ciphergoth: "sudo make me a sandwich" as I most often experience it http://t.co/7BFTs9kHQd -@Myriachan the book is already finished! I'm just editing it. -RT @chriseng: The amount of text dedicated solely to villanizing and exaggerating the sophistication of modifying a User-Agent is incredibl… -@thegrugq is that hashtag a compliment or a condemnation -@Ruzvay heh, thanks ^_^ -@Ruzvay Wow, sure, no "creative imagination" because I was influenced by something, which all creative people are? :\ -@iPlop @FiftyThree their dang loupe makes me nauseous in the name of forced skeu. Pinch to zoom is where it's at -@iPlop nope, wacom's ipad app -.@Ruzvay no, my own character, though my perception of what magic looks like is pretty obviously influenced by Avatar. -If you like “Angry women with magic and weapons: the sketches” you’ll love “Angry women with magic and weapons: the book” -RT @ErrataRob: @csoghoian I like the reasoning that since AT&T didn't offer a bounty, that it's illegal to point out their flaws -RT @csoghoian: Gov in weev appeal to chilled security researchers: Take your bug bounty money and quit your whining. (p64) http://t.co/BcTK… -I tried very hard http://t.co/c8srfcSk9O -@dangoodin001 @martijn_grooten only a bet that the NSA’s insider info won’t ever leak. Maybe it won’t! -RT @arw: Want to know (a little bit) more about the iPhone 5s Touch ID? See http://t.co/1BaKe08rWo -@m1sp he is! He revels in it -@dangoodin001 I consider there being n >= 1 adversaries who can crack it to be “a weakness”, maybe they do not… -# 381202400729522177 -@m1sp my husband finally got to the part where Solornel pushes Tsovinar off and he thought it was hee-lar-ious so I think I'm on track :p -@eevee in any case, I break clients too often as it is ;) -@eevee and that's what I get for casually tweeting without tearing the html open :D -@eevee so like I never figured out: is that SUPPOSED to be alien heads or does OSX/iOS miss some glyphs -RT @jjarmoc: This, right here, is the best thing to come of #istouchidhackedyet so far. http://t.co/1lXFgq1kQ3 -@johanjortso I’m just gonna go ahead and predict: no. -linux.jpg http://t.co/XQXNpfo7dM -@USP_Talon so I just realized your avatar is a space ship and not a satanic porcelain doll with dark hair. I'm disappointed :p -@mbhbox they are the best; do not question me!!!! -I just swooned for OSX's Australian Male text-to-speech voice. BRB listening to my reading queue as read by a fake Australian -And let me tell you I have *been* around that biology education block. -I have no words strong enough for how toxic teaching individual religions as equal to observed scientific reality is http://t.co/T8KjXqLh5P -Editin' my novel, editin' my novel, having existential crises over the placement of commas, I'm editin' my novel. -When the sun is in my eye and I squint, I always see the shape of a butterfly in the sunburst. That doesn't make me otherkin, does it? -@tangenteroja @4Dgifts all its flaws aside, I am at least reasonable sure POSIX compliance is not literally a spy agency conspiracy. -@dakami and we need measurements to determine if we're talking a nice, comfortable fuzzy or six-foot strands of killer hair -@geekable http://t.co/tUtdihgqie -@tangenteroja @4Dgifts maybe that would be a reasonable cop out if you know it wasn’t already determined to be an NSA backdoor -RT @redenz: TouchID. Used a combination of 4 fingers from 2 different people to set up a single fingerprint. All 4 seem to work just fine. -RT @redenz: @reaperhulk @c7five Also created a print using my thumb and index finger combined into a single "fingerprint".Either finger unl… -RT @eevee: i keep being briefly confused about why neal stephenson has a kickstarter to work on a c compiler -@tangenteroja @4Dgifts the issue isn’t that it was *supported*. It was going to be supported. It’s that it’s the *default* for WEIRD reasons -@feralchimp @thegrugq yeah I guess what I’m getting at is there should have been more public shaming of RSA. I’m all about the shaming :) -RT @zooko: We just made reviewing patches even *more* fun—imagine the patch author has a gun to his head: https://t.co/tfj1TYgmi8 -RT @travisgoodspeed: I for one believe RSA's latest announcement that @unicorn_threat is behind the recent #BSafe bugs. -@thegrugq oh I don’t think that. I just wonder if we could've maybe gotten this in particular fixed years ago if things had gone differently -@eevee yes :( -.@thegrugq everyone qualified to notice that the default algo was one under serious suspicion -However I kinda wonder if we collectively screwed up in not really noticing this and making it a Big Deal sooner (2/2) -I see no rational basis on which RSA can justify keeping it as the DEFAULT after the research published in 2006/2007 (1/2) -@vogon it’s slow, and there are multiple papers attacking it as flawed, so let’s keep it as the default -@eevee I see you don’t work for a Christian book store (for some reason this is the default example for unreasonable bosses) -So RSA’s defense is actually that they used the slowest algo as the default because elliptic curves were a hot trend. Brilliant -@dinodaizovi aww -@eevee yes, some people are just convinced they’ll get fired if their boss finds out they say things on the internet -@tangenteroja @4Dgifts and the very NIST standard which defines it defines several others; no rational reason it’s the default. -I totally and utterly believe you http://t.co/9TBEr5wtnp -@Paucis__Verbis @michaelossmann @marshray I didn’t even know there was such a thing actually -RT @ShuttleCDRKelly: In one night, at least 23 people were shot in Chicago, incl. a 3 year old. This is not the America we strive for. http… -RT @matthew_d_green: New blog: RSA warns developers not to use RSA products. With annotated quotes by Sam Curry, CTO! http://t.co/PfB5kMNPOr -@michaelossmann @marshray I’m interested. But in that place I was ten years ago wrt hacking: not feeling very informed. -RT @innismir: This is silly, but it's a great example of knowing bad actor's TTP and exploiting weaknesses and applies to CND -- http://t.… -RT @thegrugq: @0xabad1dea it isn't even real money. It's a pledge, completely valueless -How to be a social media jerk: see small-scale community funding, blow it out of the water with corporate $$$ solely to get media attention -RT @kaepora: I need to go on Etsy & sell framed prints of this actual quote by RSA’s CTO: “Dual_EC_DRBG was an accepted, publicly scrutiniz… -@vogon no you’re reading it in the wrong tense. Once upon a time, it used to x. -@mbhbox it’s kind of the “root is root” problem though: if you have this access you can probably just access the plaintext directly -RT @strcpy: EVERYONE, http://t.co/xoC3VdJMIU NOW OPERATIONAL, JUST TYPE YOUR DOMAIN INTO THE BOX, EVERYTHING ELSE IS DONE FOR YOU! -@mbhbox “worms” in the technical sense generally don’t happen anymore. But you can compromise a host’s entropy if you’re running locally yes -But really when I get clear and consistent results like this who can blame me http://t.co/4nsOp5Hb0U -I think @pusscat is silently judging me for being a *static* analysis researcher who doesn't get my hands dirty with debuggers -@pusscat no, I am not saying that at all! I don't like gdb either. And have occasion to use it only a little more often. -@pusscat seriously though this is the first time in a rather long time I have tried to muck around with a running process on Windows -@pusscat :( then what have I been doing all these years -@pusscat a Macintosh? -This is the first time I've tried to use WinDBG in several years, and now I remember why. -RT @mcclure111: So http://t.co/ScdpuT8Vjc is doing Typewriter Art Week. 70s ascii art http://t.co/ohLYKhQfKR http://t.co/o1B23z4hFA http:/… -@dangoodin001 aww, so I’m not getting a new one for free then -RT @dangoodin001: The statement came from an RSA spokesman after I asked if Dual_EC_DRBG was used to generate the cryptographic seeds for S… -RT @dangoodin001: Dual_EC_DRBG is "contained nowhere in RSA SecurID or the RSA Authentication Manager software; it uses a different FiPS-co… -RT @twittersecurity: Getting a new phone? Remember to disable login verification on your old phone so you don't get locked out. Then enable… -@matthew_d_green @mattblaze @jjarmoc @nickm_tor @NemoPublius this should work http://t.co/tCx4D97PU0 -Dear GCHQ: I have been to Belgium there is nothing there worth stealing except candy bars -@mattblaze @matthew_d_green @jjarmoc @nickm_tor @NemoPublius a Former RSA Employee was vehemently defending that quote on Ars -You can’t seriously tell me there is anyone on earth who considers Belgium some kind of threat. http://t.co/esajPlW8ar (<3 you Belgians) -@solak unable to make request, please try again later. -@ra I am the only one strong enough for this terrible burden -RT @vogon: @0xabad1dea (except when it does) -RT @vogon: @0xabad1dea remember the mnemonic: syswow64 doesn't contain 64-bit DLLs and system32 doesn't contain 32-bit DLLs -@pawel_lasek You are indeed presuming a lot :) The client refuses to post a tweet which contains within it the tilde character. -Thanks Windows and your system32/no the other system32 nonsense. I enjoy not being able to find files I know exist from a file dialogue -@xorbyte hmm, true... -@innismir @billpollock and our schools seem specifically engineered to stomp that out like a dropped cigarette -@landley pretty sure this is entirely on some team at Twitter -@anathem Twitter for Windows 8 decided it doesn't like tildes and I couldn't get tweets to go through. -@innismir @billpollock I've seen kids of all ages make dramatic recoveries, it's not 100% decided beforehand. -@adamauckland so guess who just discovered Twitter for Windows 8 chokes on tildes -@anathem I may have sent a tweet to you when I meant to the other person starting with "a" I am interacting with XD -Holy pants. Twitter for Windows 8 cannot post a tweet with a tilde in it -@anathem I am trying to tweet at you and Twitter for Windows 8 is flipping out. This is a test without the special chars. Going through? -I have managed to use computers for twenty years without ever figuring out what "scroll lock" was supposed to do, actually. -*reads debugger documentation* "Press Ctrl+Break to..." *looks down at keyboard* Hrrrm. -So I figured out my audio problem - it actually wasn't Windows 8's fault this time - just Steam randomly deciding it was quiet time. -RT @SecurityHumor: Fool disclosure: That guy in the office next to you who exclaims "Whoops, looks like I clicked a malicious link again!" -@gcluley @OhThisBloodyPC excuse me? -RT @JohnHedge: Apple KB article for Control Center, kudos to whomever made the screenshot http://t.co/FxSYcmYz1a cc @dinodaizovi -@tmanning @thegrugq @chriseng @0xcharlie @WeldPond converting potential drama to kinetic drama -@chriseng @thegrugq @0xcharlie @WeldPond it’s their *handle* that counts -@thegrugq One of my followers doesn’t know what subtweeting is, let’s snicker behind his back about it and hope he doesn’t notice -You know, most of the people on #IsTouchIDHackedYet are infosec professionals w/ real names/jobs listed. They’re not all gonna flake out. -@thegrugq @chriseng @0xcharlie @WeldPond yes. He’s the one who used to blog for sophos. Shall I drag him onto the cc or are we subtweeting? -@Tomi_Tapio and what does that saying mean -@0xcharlie how dare they quote @WeldPond and @chriseng but not me (who didn’t pledge anything) -RT @newsycombinator: I Am An Object Of Internet Ridicule, Ask Me Anything http://t.co/v7JpBvATSK -RT @i0n1c: Stupid me! I always forget that there is a good and a bad kind of espionage. The bad one is that that is targetted at Americans. -@froztbyte it might be fine for ten or twenty seconds then, spike. -@froztbyte typing and mousing is one of the most timing sensitive things you can possibly do with a computer. -RT @billpollock: The problem with American educatIon is not too little homework. It's that we're not teaching kids to think. http://t.co/gN… -@froztbyte the problem is that iPad can’t be a Bluetooth device to others, so the soft keyboard is over tcp — ie latency :( -@froztbyte oh, well, the top one is in its stand, the bottom one is just lying there, I didn’t rig up a physical binding. -@bSr43 @adamcaudill it’s certcli.dll in system32 and its exported functions are decoding weirdly. -@froztbyte yes -@thegrugq @bernarpa however I did spend about half my life in rural Virginia and I concede that is where hicks are born. -@thegrugq @bernarpa the Netherlands! -@RealPosixNinja @grsecurity what is it with me and fake accounts? It must be the zero, I am the first in auto suggest. -RT @_cypherpunks_: Here's the NSA story by @USAToday's @bradheath: http://t.co/iE4WTy7DvX that the Justice Dept did not want published: htt… -@thegrugq do not question my impeccable taste in wording do you wanna take this outside old ma*falls asleep at table* -I should make a program to set as the postmortem debugger on Windows which will play a funeral song for the deceased -@hackerfantastic oooooold -Tired of commenters who “knew” about the backdoor since 2007. No you didn’t, you heard about speculation it might be backdoored. -@Talen_Lee I think one can love “the Lovecraft mythos” as interpreted by modern culture separate from the actual books -@matthew_d_green in my head it’s called Dual Rainbows -@Myriachan my name kinda became linked with it because I did some blogs with it back when it was pretty new -@Myriachan it is good little one-person operation. You use. Yes. -@jesster_king no. Second person is always "you" (and its forms: thou, ye, etc) -@futarist yerp -@Talen_Lee @m1sp oh no oh no you're gonna trigger a transhumanist tweet cascade duck and cover -@Talen_Lee @m1sp hmm stealing this line for my novel thx -@m1sp you're not making me feel any better! -@adamcaudill @bSr43 in any case, the disasm must be wrong, because it is utter nonsense. -@JeffCurless #TalkLikeAPirateDay -@dancapper except there's no rational pattern there. It's not 8.3 in caps / otherwise not in caps. -My disassembler crashed looking for the certificate generation code! CONSPIRACY. http://t.co/9CH2TCtr6Q -@Kufat I probably mean the other way around from what I just said. -@Kufat there are also uncapitalized basenames and capitalized extensions which is just completely off the wall -Windows, I wish I could see what it is in your little brain that makes random capitalization seem normal. http://t.co/sz5g1VPUY1 -@The1TrueSean @codeferret_ he doesn't. But I've never done NDS. And I told him to go get a different one and I don't know which he got. -@matthew_d_green so far this stuff is not calling bcrypt directly but stuff declared in wincrypt.h -@matthew_d_green yep been there. And no, I gotta know for sure! -I was nerd sniped to go reverse something and so far 95% of the effort has been reading Windows system headers -@matthew_d_green which is nominally documented here http://t.co/nYKtaUeM7n -@matthew_d_green started with certobj.dll based on the name. It instantiates a context of the default provider (null) of type PROV_RSA_FULL -@pingudownunder oh, so that's what happened to your username... -@The1TrueSean gee I wonder why you asked. Don't use desmume it's buggy wrt the rom. Ask @codeferret_ what he was using -@matthew_d_green btw the core crypto DLLs definitely *support* it but I haven't found the implementation yet -Windows 8 has decided that now when my music player app isn't in focus it should definitely cut the volume by 90% #UIRage -@DrPizza @matthew_d_green @wil oh so you can. Well look at me I'm a Unix User o'er here -@matthew_d_green @wil k I'm gonna see if the relevant DLLs are on my Windows 8 machine but I wouldn't be surprised if they aren't -@matthew_d_green if I can find the binaries we can look for relevant constants etc. -RT @matthew_d_green: I'm going to rephrase previous Tweet. Let me know if you happen to find out what PRNG Microsoft IIS uses for key gener… -RT @thegrugq: @matthew_d_green @0xabad1dea remind me not to get on your bad side... Or backdoor my customers critical security products for… -@matthew_d_green @thegrugq I’d assume the problem would not be rooted in the technical people -@matthew_d_green @thegrugq btw their offices are across the street from ours if you want to come have a protest party -@thegrugq I think that’s just business. After all they could reseed all of them in the same general fashion -@DrPizza I do not consent -RT @pranesh_prakash: @chort0 @matthew_d_green @0xabad1dea 4 years, 2 months, 9 days after the compromise: https://t.co/FnGUSXdQhf -# 380840440930791424 -@kludgebox @thegrugq @matthew_d_green yeah so about that... -I forgave the “lost all our seeds” incident but if rumors of RSA knowingly sabotaging stuff are true lemme tell you we have a problem -RT @thegrugq: @matthew_d_green @0xabad1dea and can you imagine how much NSA laughed when China had to actually hack RSA to get access? -@matthew_d_green … then I’ll need this thing replaced agaaaaiiiin? -RT @matthew_d_green: Oh hell, if RSA generated all their master SecurID seeds with Dual_EC_DRBG............ -@nelhage @matthew_d_green I’m pretty sure I bet like one dollar -@sigwo and from camera roll you can access sharing functionality which is how I tweeted whatever I wanted. -@sigwo make sure the camera is active by opening it from the lock screen first. Then go to it and you can access camera roll -@demize95 they’re cosplaying -@sigwo that would be an impressive feat of psychic power -@sigwo @oncee https://t.co/5Oc1def3s4 -RT @ErrataRob: What we are experiencing is a product recall notifying customers that the NSA backdoored their product http://t.co/H8aMHSF456 -@sigwo @oncee yeah um no that is definitely not what happened -@attritionorg @andybochman hahaha! Am I doing it right -B-b-b-buuuurn 🔥 “@nzaghen: @0xabad1dea it might be the same they use to audit the alarm on daylight savings change” (and New Year's, ofc) -@thezeist yeah. Thank goodness. -@borcef they’ve had lock screen bypasses after pretty much every release tbh -@thegrugq I am sure every businessperson with an iPhone would appreciate their suggestion for improving cellular radio efficiency -So I guess my question to Apple (which will go unanswered) is what techniques they are using to audit the lock screen's state machije -I guess I should consider how to write featureful lock screens without bypasses to be an open research topic for improvement -@wimremes what did we do -@chriseng oh it did. But not by several thousand people. -@JbMokuZ the wallpaper? It is fan art. Search pokemon on konachan -RT @osxreverser: Can we please get a feature in browsers where history has the damn short urls resolved? #kthxbay -@chriseng @c7five I mitigated this so hard -A first world problem deserves a first world solution. http://t.co/coQptQcMUZ -I thought y'all were offended by the photo I just posted but it turns out Twitter is enjoying silently failing today -@phillips321 how what? Do you mean my next tweet? http://t.co/x1pJMWB4uJ -@ra6bit it doesn’t seem to be doing anything particular for me that way -.@ra6bit oh Siri at the lock screen is absolutely turned off. She is a traitorous fiend -@c7five I’m more concerned about the tweeting and the mailing -@judsontwit I just did it how it felt straightforward to me, tap click click -I can’t get it working on my 4S. Not sure if I’m just not nailing the timing. -@redsoxunixgeek now consider that my twitter account is my most precious possession… oh pretty sure you can email and stuff too. -Yep that totally worked. http://t.co/x1pJMWB4uJ -If you can see this post, then I have successfully bypassed lock screen on my iPad to tweet w/o the PIN. http://t.co/rmmgNRB5ZF -@Packetknife no, that is not common. Perhaps a few particularly outgoing sorts would encourage it but not generally… -@metareflection maybe they're a secret time traveler from the 1970s when that made perfect sense -@tomkrall hmm honestly at this point I have no idea. -Off to murder redditor who said it’s okay to batch pending emails on a scale of minutes because the spec doesn’t mandate immediate sending -@savagejen I’mhaving ahard time of it with the ios7 keyboard can you tell -@savagejen no actually I cant -Yep I can still reliably segfault Chrome for iOS simply by letting my thumb unintentionally swipe off the left side of the screen -@ELLIOTTCABLE offhandedly, it shouldn’t, but I’d have to dig in to be totally sure -Hahaha, it kills me two ways to see a commenter call the author of an article “he” and the author replies in third person to say “she” -Random SDR snooping on restaurant pagers by @windyoona http://t.co/wLt1CJ7lmt -I bet the iPhone fingerprint reader is pretty well-engineered and tested. Now who wants to bet on the imitations coming in six months? :) -@hellNbak_ because iPhone sets the new normal. -Context: snapchat “@kivikakk: Their web form lets you reset a password to a longer length than the app lets you enter. :\” -@kivikakk pro -RT @MarkKriegsman: Linux performance-tuning checklist: http://t.co/C5UZHhti9K (OSX version: http://t.co/IFhRfto0Cu ) -@jack_daniel you cannot convince me that’s a fruit. -@m1sp huggle! I overslept and had scary dreams -@mndell @dakami I’m only special in that it’s my job to worry about this on behalf of the users -RT @radian: Your weekly reminder that integer promotions in C are the worst thing: http://t.co/W4VeZZ1TAI -@mndell @dakami so if one said “the collision rate is similar to guess rate for PIN so good enough” that is not good enough for me :) -@mndell @dakami I meant PIN. It absolutely should strive to be better than PIN in every measurable dimension. -@mndell @dakami hmm... settling for equivalent to insufficient strength... look up WEP :) -@sethr there is absolutely no excuse for this utter failure -@sethr what is your secret because the desktop is stubbornly not acting particularly touch aware -Looking at my App Store update tab, every UX designer in the world has used iOS7 as their golden opportunity to demand budget and time -MS failed so hard at integrating touch and the desktop in Windows 8. No pinch to zoom. No auto keyboard popup/pop down -@vogon @blowdart in typical Windows fashion I can easily find the settings for remote assistance but not how to actually start one hahaha -@vogon @blowdart the "server" is my tablet -@vogon @blowdart psst all I actually care about is remote desktop :( do you have a cheatcode for that? -@blowdart okay and that entaaaiiiiiils.......... -Am I crazy or is there literally no product description for what this upgrade does to Windows 8 http://t.co/6JIlXYy8XQ -RT @rantyben: CURRENT SOUNDTRACK: RAGE AGAINST THE JAVA VIRTUAL MACHINE -I think the one thing holding me back from declaring go the one true language is an excess of capital letters -@jeremiahfelt @eevee ps there is nothing anonymous about my twitter identity :p you could even pinpoint my house if you really try -@jeremiahfelt @eevee and what are you trying to say about me huh -@eevee my capacity for twitter is pretty much infinite. I am a complete different person in front of a large audience than in private. -@limako and I’m a professional security auditor, my throne of skulls of programmers is enough for me ;) -Subtweet: in case anyone didn’t know: I have Really Bad Social Anxiety and if you try to coax me to socially engage I’ll just freak out more -RT @ErrataRob: Is Touch ID Hacked Yet? http://t.co/vrBY2fAX17 -@limako okay, now show that the glue which is more or less identical to python and ruby's has magical properties outweighing the problems :) -@chriseng @thegrugq @_wirepair it’s true, I enjoy suffering. -@OSVDB since it was patched at some point I’m guessing it’s already disclosed in some fashion -RT @matthew_d_green: New blog: The Many Flaws of Dual_EC_DRBG. http://t.co/2U3kctu0He -@m1sk1t @kivikakk what’s different about this bot? -Yep found a boneheaded bug in PHP3. Sadly it's not still there in PHP5. They learned to strndup() instead of strcpy()... -@cadrpear that's okay, I doubt the original designer was wiser the first two times around :) -@limako I'm afraid I fall 100% into the camp of http://t.co/GHsl4VRgjz . -RT @matt_merkle: @0xabad1dea I know you didn't ask, but you shall receive anyway: http://t.co/SlcNNgdXIu All the way back to 1.0. I'm sorry… -@iirelu php 3.0.18 functions/image.c -/* skip over a variable-length block; assumes proper length marker */ Yep PHP3 already killed me I'm dead I'll miss you -@Kim_Bruning it might only be triggerable by larger context. -@spangborn sorry if I sound grumpy I am angry that the way I knew how to pause simply disappeared for no reason. -@spangborn Um, no, because telling me that a panel exists in the platonic real of existence does not tell me how to get to it. -PHP's release archive goes back to 3.0.18 in the year 2000. Oh well, I suspect looking at the actual PHP 1.0 source would literally kill me -@spangborn that's good to know, but my question was how :) -@spangborn I don't see a button called Control Center. I suspect you mean the "swipe up from bottom" others suggested. -# 380478167544119296 -Dangers of automated translation: No, I don't think PostNL and UPS are the same thing, Google, even if they both bring mail. -@mtheoryx so there is simply something particular to the exact combination that produces brown food dye which is disagreeable -@mtheoryx I eat wheat every day, and my dairy problems upset my stomach, not inflame my ears -@mtheoryx here is one kind http://t.co/QXIoY8izhW -@mtheoryx lol you know I never said it was chocolate I said it was brown dye -@mtheoryx like... brown dye. -@mtheoryx I don't see how being allergic to coca cola, pepsi, root beer, and all knockoffs could have anything to do with dairy. -@mtheoryx coffee, sorts of dark bread that aren't totally fakey, actual pure chocolate ie the expensive kind -@_JosephGrace is that not what I got when I double tapped home ? -@mtheoryx oh I am lactose intolerant but that's pretty much complete curable with pills. -@mtheoryx ie this bottled Starbucks stuff is brown as heck but it’s just actual coffee and milk -@kivikakk well that seems dramatic -@invalidname click the what -RT @aeleruil: @0xabad1dea swipe up from bottom -@mtheoryx yes, ones that are completely 100% naturally brown with no dyes -Yes hello how do I #%^* pause my music on iOS 7 because double tapping home doesn’t bring up that bar any more -@mtheoryx nah haven’t tried. I’m also randomly allergic to medicines so I’m pretty hesitant to try new ones. -“Why does my local mall have its own Wikipedia page” *click* “was the setting for the movie Mall Cop” … huh. -@vogon so the end result is that I like white chocolate, even the cheap stuff, more than nice chocolate because I don’t have a bad assoc -@mtheoryx well this will intrigue you: the exact reaction is that my ear canals inflame. Happens to my mother too. -@vogon it is a good excuse to buy expensive European chocolate, but the association has built up in my head to expect a reaction lol -@vogon basically: anything with cheap chocolate. All cola. Many breads, cereals, etc. They add brown dye to counterbalance fillers -@mtheoryx my life improved dramatically when I figured out the pattern and avoided mass-produced food that is a nice even brown. -@thegrugq @quine @0xcharlie all I know is that my theology teacher told us about this song and that it was from the devil. -@mtheoryx or I could not make myself miserable because it’s already happened enough hundreds of times -@mtheoryx I didn’t say it did! It’s to make it LOOK like chocolate. -@mtheoryx cola, chocolate candy, some brown breads, but not very pure stuff that is naturally brown like coffee. -@mtheoryx I don’t know! My family determined the common factor in everything I was allergic to was being brown, often artificially so. -@mtheoryx in actual (cheap) chocolate bars, to counterbalance the filler. In flavored foods, to make it more obviously chocolate flavored. -@mtheoryx pure chocolate obviously has no dye but how often does one actually have pure chocolate -@mtheoryx brown food dye in foods that contain chocolate flavor. -@mtheoryx you may have read my tweet backwards…v -@mtheoryx I’m allergic to brown food dye. It features in a very large percentage of chocolate flavored things. -@frkbmb @vogon roll the dice and find out what kind of chocolate is in Mass Produced Food Product X, eh? :) -@frkbmb @vogon no, I’m allergic to brown food dye, which most chocolate has to make it look “right” -I continue to be astounded at the number of people prejudiced against white chocolate. The fact that I’m never allergic to it kinda factors. -@frkbmb @vogon yeah and as a bonus I don’t have to wonder if I’m allergic to it -@mtheoryx well it’s a BRIBE what do you think I mean uh -@vogon you know I’m allergic to the color brown right No literally not joking -@matthew_d_green @r3d4ct3d I am probably using a choosier set of “anyone” than you :( -I would never accept a bribe to implement shaky crypto. By the way, I always get a white chocolate mocha at Starbucks. Hot, with whip. -@r3d4ct3d @matthew_d_green no, because it was actually suspected all along -@matthew_d_green @r3d4ct3d you underestimate how much I like white chocolate mocha -@dakami well, I was thinking hundreds trying hundreds of phones, if it’s against one phone I would want thousands. -@matthew_d_green one Starbucks gift card -@tapbot_paul I bet it’s the pulse. You’ve probably seen that video that’s shot to show up the guy's pulse under his skin -@dakami ie if hundreds of people try each other’s phones and come up with zero collisions, that’s a good sign it’s working as intended -@tapbot_paul perhaps if you stick your finger in ice water? Or is it looking for the pulse? -@dakami measure, measure, measure. It’s a black box to empirically verify. -@tapbot_paul perhaps I should say and their four best friends if we’re assuming five tries before lockdown -@objclxt those scanners are foolable with a flat image though, they’re not directly relatable. -@tapbot_paul what are the odds that the thief and their ten best friends might have a collision with my fingerprint? -@tapbot_paul for the actual testing I’m assuming a sacrificial lamb phone. But from a security point of view, if my phone were stolen, -@demize95 that’s the thing, I won’t be satisfied without some empirical third party measurements -Seriously though, I want to know if I could hand my phone off to ten thousand strangers and realistically expect zero fingerprint collisions -Idea: fingerprint party. Everyone tries to unlock everyone else’s phones to see if there are any collisions. 👍🎉📱 -@spacerog completely nontechnical magazine editors != idiots -@spacerog more that they don’t know the technical differences and how to spot them, I think. -Hmm, I enjoy the mental exercise of looking up a foreign word in that language's own dictionary. -@nickdepetrillo heh, that I don’t believe! I’d believe that an actual high budget spy agency could do it if they REALLY wanted, but no less. -RT @dragosr: P.S. Hexagon is the architecture name for Qualcomm's baseband chips, currently in 86% of handsets. -RT @dragosr: PacSec 2013 Presentation: Dr. Ralf-Philipp Weinmann - Mobile Phone Baseband Exploitation in 2013: Hexagon challenges -@nickdepetrillo I’m just trying to live the gray hat dream here and measure in new kitchens -RT @rudyrichter: if you want to get rid of the parallax effect on iOS 7: Accessibility Settings -> Reduce Motion; for the blur, Increase Co… -@spacerog I’m not even joking. -@spacerog Apple don’t ship all those downloads straight out of Cupertino, they hire CDNs and we are simply exceeding the internet capacity. -@MattGrimley doubtful, I suspect the server is just totally down. -.@nickdepetrillo you call that a payout, Uncle Scrooge? -RT @nickdepetrillo: I will pay the first person who successfully lifts a print off the iPhone 5s screen, reproduces it and unlocks the phon… -@mbhbox nope you’re many hours off :) -@tangenteroja no it’s a perfectly cromulent word in Dutch. Here is the translation! http://t.co/Kr7oVCrCYe -@tangenteroja it also means melted metal and stuff so like whatever -@tangenteroja I can’t help that literally every nonsense sound in English means something sexual if you try hard enough. -@tangenteroja eh wot I swear on me mum I don’t know -@aeleruil it is when your unchangeable OS icons all directly clash with one another -@ra6bit I did not see this remark before what I just tweeted -*picks up iPad, walks away, glances down* oh no no no my icons are sliding off the screen they’re gonna fall off ahh -@codinghorror so far it decided that my timezone is definitely Cupertino -RT @ternus: Coworker comment on delivering the iOS update: “The Internet is pretty full right now.” -@renpytom @HanakoGames woohoo! -@filcab is it the bubbles? I bet it’s the bubbles. -Darn! iOS 7 didn’t upgrade my camera hardware. I thought it was supposed to be “magical” http://t.co/GxyTsCTSk0 -@nickdepetrillo and then didn’t post it to twitter like good NDA signers -RT @GoogleFacts: 28% of IT Professionals hide their career from family or friends out of fear of being asked to provide free tech support. -@ReturnFalse sometimes it’s Greek instead :) -@ReturnFalse you just haven’t noticed that this happens every few months when I have time on my hands. -The good news: Safari benchmarks (iPad 4, fresh reboot) dramatically improved iOS6 —> iOS7. Sunspider: 841ms to 653ms. -@MarkGStacey No, I left it a long time ago. -@axqfrk The clock app is right. The OS is wrong. -WTF. It's 3:30. The iPad says 12:30 across the top and 3:30 in the clock app. -@amanicdroid because Americans never did figure out the difference between Deutsch and Nederlands -Augh I can’t type. It’s not registering pressing the space bar. Like I will press right where I always have and it’s like nope -@amanicdroid uh… so… you know they speak German right? -@FredericJacobs een beetje. -It is also a really great way to ensure that no one else asks to use my computers ever -Yes my iPad is in Dutch. It’s a handy way to keep the language in my mind. AAN DE SLAG! -Success. Now switching from complaining about downloads failing to complaining about icons. http://t.co/T7P7EmZSVj -@claymill @grp are you freaking serious -Oh oh the screen is black! Knowing my luck it's about to brick. -@hemantmehta I guess I should have figured a school with cool math teachers would be a lot more first world than mine :p -For the love of marshmallows it actually downloaded the entire update and then failed to install it for no stated reason -@themarkcaudill Dollar styli from Amazon. -@hemantmehta … your school has a wifi network? -I uninstalled those Windows 8 apps I didn't want and they appeared under Updates in the app store. No. Bad. #UIRage -@StrThry Windows 8? Bit of a broad category. Good direction, needs work. -My Windows 8 tablet is very picky about styli. The handwriting will work with one but not the other from the same box. -@apiary @frkbmb I can’t believe it’s been more than a year and they haven’t fixed this yet -@0xdeadbabe these are dollar styli off Amazon. I grab them by the pack because their capacitance varies a bit between specimens -@Dan2552 I have a pressure sensitive stylus but I need a new tip for it. These are dollar styli -Happiness is a new capacitive stylus with its rubber tip all springy and smooth. Oh yeah. It glides so well -@Support cheer up @aeleruil -@DrPizza I dare you to post that screenshot as the entire review. -@XTreeki I can’t even make fun of you based on your phone preference because I checked your client string and what -@DrPizza be strong -RT @attritionorg: Brazilian hackers confuse Nasa with NSA in revenge attack - http://t.co/72rYjTTfdd #derp (ref: http://t.co/DQsNQVyR0H) -RT @partytimeHXLNT: I'm working on a paper about "indie game dev[eloper]" discourse, but in the meantime, a GIF. http://t.co/5IKL9Hr164 -@hackedy heuristics, I assume. Which would explain occasional sightings of spellcheck suddenly changing its mind. -@locks iPhone does it too, but only when you switch language keyboards at the bottom. It will tag word by word for spellcheck. -So I just realized OSX is dynamically figuring out what language I am typing in per-textbox and switching the spellcheck. Huh. -@SimonZerafa ik heb alleen "Het Woordenboek van Vos en Haas" http://t.co/5catGRAlaZ :p -Of course I'm reading the release notes instead. Whoa hey we're getting a Dutch dictionary? Awesome! I could use that. -This is quite possibly the first time I have ever applied an Apple update the first day it's o--MOTHER OF PEANUT BUTTER THE DOWNLOAD FAILED -@kebesays @Kufat we just established they are cylons, so, do what comes obvious -According to the iPad, iOS7 is available! According to iTunes on the Mac it is plugged into, it is *definitely not.* Okay, OTA it is! -RT @Kufat: PSA: 1024 bytes = 1 KB. If someone says it's "1 KiB," they are a Cylon, replicant, or shapeshifter, and must be destroyed forthw… -It’s the 18th! I want to recklessly apply updates! Where is it? I bet the Apple download servers are racist against Bostonians -@raudelmil @gsuberland hmm, unfamiliar with how precedent works in American court systems? -Lol sorry tweet deleted: it was a screenshot of a third-party calculator which looks almost exactly like the built in one. -@gsuberland hallelujah -RT @gsuberland: US court rules that Facebook likes are protected speech. http://t.co/tRygdlucgD -@nickdepetrillo @0xcharlie @nudehaberdasher I came into contact w him and I seem fine. But if he gets Dr. Miller killed he’s on the bad list -@pwpslade I haven’t tried gqrx on Linux actually. Are you using a distro package, a different package, or building from scratch? -RT @arstechnica: Researchers can slip an undetectable trojan into Intel’s Ivy Bridge CPUS http://t.co/rchRI7HMQq by @dangoodin001 -RT @nickm_tor: "I'm done cleaning! There's nothing on the floor but carpet! [And the carpet is covered with junk.]" #IfKidsLiedLikeTheIntel… -@0xcharlie DO IT LIKE THEY DO ON THE DISCOVERY CHANNEL. -@kivikakk ey wot’s wrong with American accents mate -There’s no such thing as a govt that’s really good about keeping its hand out of cookie jars on a scale of decades. http://t.co/DZETXVsKXw -RT @snipeyhead: X-Men/Avengers writer OWNS comics fan after sexist remark http://t.co/JF78IzSqi3 - bwahah! -RT @41414141: "@windyoona: I'd say my receiver looks pretty innocent as well. http://t.co/wa3vhGyOg0" <- cutest TETRA device ever :) Congra… -RT @fabsh: Terry Pratchett is winning. Again. http://t.co/vW0jDLWXmJ -@pwpslade I mostly use OSX! My Linux test machine runs Mint. -@berickcook put some rhinestones in the corner of the letters -@sergeybratus @maradydd @travisgoodspeed aaaaaaaeeeeeeeeek http://t.co/ULZKnljnk2 have you SEEN this -RT @Sirupsen: Paper on the redundancy in the x86 instruction set, showing that it remains turing complete with one instruction. http://t.co… -@thegrugq Serious mode: rebooting iOS helps WAY more than it ought. -True frenemies: “I would never silently block you. If I unfollowed you I would take that as public as possible!” -.@mof18202 @eiridescent I… think we now know why the unfollow bug strikes so many technical people -RT @mof18202: @eiridescent @0xabad1dea I've been shouting about that for months, feels like years. Also, F6: Want your URL bar? Nope, [un]f… -@ThomasWinwood at least that makes some sort of platonic sense as videos and pages both have starts and ends -RT @eevee: 📢 your regular reminder to get http://t.co/hiPnryB49D if you want to be cool and see astral plane unicode -RT @eiridescent: 'cause, uh, that's kind of a horrifically bad UX decision -RT @eiridescent: so, when did twitter start intercepting F5 on pages for individual tweets to have it retweet instead of refresh the page? -@zephyrfalcon @m1sp so, she's actually speaking Imaginary Fantasy Language From The Far West. -@m1sp so I realized this listening to a recording in Dutch http://t.co/LrOfcSll6k -How many years from bromance to gay marriage under common law? I may have a surprise for @codeferret_ and @GWakaMurray -RT @RedMinus: So this is real, one of those things you couldnt even parody because its already at its most extreme ( c/o @gn0s1s ) http://t… -# 380115059235897344 -.@judsontwit it's not burn in, it's completely dynamic. Could be residual data idiocy in the graphics driver I guess! -Dunno if you can see that light stripe but it's an Explorer toolbar underneath. Happens everywhere http://t.co/8EyECpNOoC -I would give you a screenshot except this is apparently not done at a layer that can be caught by print screen. Let's try a photo... -okay, this is driving me nuts. Why does Windows 8 render a particular shade of gray as slightly translucent to the desktop? -@The1TrueSean PS where is my husband I assume you know -@The1TrueSean because you weren’t involved ? -Oh good my local airport caught fire today. Go Logan -@vikemosabe actually I'm not sure I agree! -@Xaosopher I don't see what platforms this is for -Oh well if Diablo is down I will just click to kill on OSX the old fashioned w-- what am I *wearing* http://t.co/pIfQQQ2BTM -@okoeroo @biosshadow lekker -@Talen_Lee all I ever used it for was to grab an extra gem or two. The real money one was incredibly stupid from the start -I have been in a mood to click to kill the last few days. Oh of course the server is down http://t.co/Z9K7nOCFM5 yay for online singleplayer -@biosshadow my passport is American. My birth certificate is Dutch. -@biosshadow to my understanding it would be fairly easy for me to move there, perhaps I will someday. -@biosshadow I'm Dutch according to the paperwork, it comes up sometimes :) -I award no points to Google Translate for managing to change "cannot deliver within the stated timeframe" to "cannot deliver." -Ha, that Dutch bookstore sent me a letter apologizing for not fulfilling their overnight delivery promise. -We have established that some of y'all's clients are stripping the HTTPS from the link. Bash your clients upside the head. @viss -Chemical Plant Zone Acapella - iiiiiiinfinite reeeeeeemix. http://t.co/bzIt9UHUXa -@ragekit @Viss oh (lol sorry for assuming) weird -.@ragekit @Viss "say" is an OSX command. Substitute festival or whatever, but you won't have the creepy laughing voice :) -RT @Viss: "the news": curl -vq https://t.co/v5xnK7ElBN 2>&1 | grep 'tweet-text' | perl -pe 's/<([^>]+)>//g; s/\s+/ /g;' | say -v hysterical -@vogon I don’t think that was anyone’s argument, the argument was they systematically gloss over stuff when it is convenient to them. -@marshray @matthew_d_green you didn’t call me out for saying EST last night. You can’t hold different people to different standards! -@i4AK I don't know if there's a TV viewer app that will work on Mac. Try the community resources at http://t.co/bTvYH3cp3P -Wow I just had cause to use the default pdf viewer on a Nexus 7 and it is a new tier of bad. I'm so sorry. -@darkuncle no no you have to say it so the bot shows up It’s over 9000 -@Dragoneral_ two thousand percent of downtime? -Um… 2000% of what, @github? http://t.co/WEExwRtFwi -@mauvehed @DynamicWebPaige it’s back so I’m guessing they just had to bounce something -RT @DynamicWebPaige: GITHUB IS DOWN REPENT YOUR SINS -@sadimusi yes absolutely. Tried in Safari and Chrome, to hit JIT and no JIT. -@sadimusi weird… still can’t repro -@sadimusi you may be hitting a pathological case in low memory — try rebooting -@sadimusi cannot reproduce (4S 6.1.3) -@tangenteroja it’s Shellcoder’s Handbook not Hacker’s Handbook ;) -@hubbit @frkbmb hmm well pretty sure that was originally written in Black Speech too -@frkbmb @hubbit I don’t speak much Hebrew but I’m almost *positive* that’s the One Ring’s incantation written right to left. -@Nightyyy yes. I want to acquire as many as I can in the whole Germanic family, which is why I just paid a fortune for shipping for Frisian -@savagejen part of the idea is getting vendors to actually make a Linux release by providing a stable and viable platform. -Due to some excellent timing in reuniting me with a box, here is the whole collection, with Frisian still pending. http://t.co/r0fiHvirb8 -@vogon ahh — gun nerds who never actually joined the military but read the magazines. -@vogon depends a lot on the base actually. But here in the states, non-combatants everywhere. -RT @arstechnica: Microsoft issues fix to stop active attacks exploiting serious IE bug http://t.co/IjxJFcoEXJ by @dangoodin001 -@jonelf @toco91 optimization is like other forms of art. You can’t demand the lightning strike on cue. -@elad3 I swear this is not trolling: my primary browsing operating system is actually iOS… -RT @comex: Finally. RT @verge: Apple now lets old iPhones download old apps http://t.co/e9UlUbEeOo -@psobot pickle packing is an open question of grocery store science -Watching a talk on fast C++ ( http://t.co/DIa2L7iIa4 ) and it’s tearing into PHP’s “arrays” for their in-memory structure -Someone tweeted months ago that the obj-c message dispatch hot path is several instructions shorter on iOS 7 and that’s my #1 upgrade reason -@solak @apiary it doesn’t. It has heuristics. The bots don’t. They have different heuristics. -@matthew_d_green an actual reason to wake up on time?! -RT @matthew_d_green: Johns Hopkins will be hosting a roundtable at 10am EST tomorrow to discuss the NSA crypto revelations. Livestream: htt… -Cloud-side implications aside, my favorite recent feature in Chrome is the “tabs on other computers” button. -RT @0xcharlie: Today is my one year anniversary at Twitter. I'm still not verified. -@skynetbnet @SteveStreza wow uh… that’s really uncalled for -@ELLIOTTCABLE it’s a Star of David! Forgive me if I don’t run it. -RT @mikeash: YOU CAN NOW SUBMIT 64-BIT APPS TO THE STORE WITHOUT HARDWARE TO TEST IT ON WHAT COULD POSSIBLY GO WRONG -The official twitter apps which hide direct messages as a little envelope button under “me” tab: terrible #UIRage, people can’t find that. -Inverting the fandom, mostly RT’d for Goku http://t.co/wk96b4Gjsq -RT @SteveStreza: It would be great if we talked about how badly society handles people with mental health problems *any other time* besides… -@Jolly I swear this urge to tweet that you need more meat on your bones comes from my future grandmother self -@TakoArishi @m1sp She’s so annoying. She puts her opinion everywhere and is too certain of her wisdom -@Worthless_Bums @berickcook hmm, you need a louder brand identity, hombre. More pink. Trust me -@WhiteMageSlave haha sorry I just woke up and was checking twitter -RT @thegrugq: If Hayden thinks terrorists love gmail cause it's free, better not tell him about Linux... -@jakeboxer I suspect what happened is someone told the artist “the best part was where they played chess as the pieces” and left -RT @standupjoe: Mom to kid on train today, a watched pot never boils. 8yr. old kid thinks for a second and replies, did you hit refresh? -@attritionorg oh, good, good, my fortress of solitude behind the 7-11 near the office remains a secret location. -@bbfreak I have found Frisian not terribly hard to make sense of :) -@attritionorg @chriseng awesome! Wait, you know where I live? -@fivetonsflax does so! -@hattmammerly @ashedryden it exists in many Romance languages. And my opinion on that is another matter; it's not my native language. -@thegrugq there is gonna be a whole chapter on how mean you are -@ErrataRob My twitter is archived on github! Actually I need to update it -@thegrugq but I’m here :( -Someday I’m going to write a tell-all dramatization of the hacker community of the 2010s. I’m archiving y’all’s twitters. -@eevee noooooo poor Armin -@bitsweat @ELLIOTTCABLE that’s one intimidating turtle -@huibw I’m… pretty sure that’s what makes something slang :) -RT @chriseng: Beautifully illustrated, poignant web comic of a girl (@ElizSimins) struggling with her love of video games: http://t.co/WUhy… -It was 95 degrees a few days ago and I’m currently wrapped up and shivering in my house. Good job New England -@apiary I prefer my answers artisanal hand-crafted -@ReturnFalse that was the exact context, thank you. “Not enough blue on the street.” -@apiary don’t worry, somewhere, there is a stoner lying staring at the ceiling in Amsterdam, and they will see my tweet when they come down -@DrPizza well… is “blue” slang for the police in the Netherlands or not? -@DrPizza but you’re not the right KIND of European. I’m looking for a *continental* sort. -Next time I have a pressing question for Europe it needs to pop into my head before nine at night EST. -Dutch people: is “blauw” (blue) slang for the police? -@ashedryden of course, I’m told to take being called a man like a man all the time. -RT @ashedryden: Stop using "guys" to refer to mixed gender groups. Some thought experiments for the "well, actually..." crowd: http://t.co… -Medieval textbook illustration http://t.co/Ceihk7nGtc -@thegrugq @gsuberland @nullwhale @CipherLaw I think the nuclear clauses are about it not being equipped for real time computing ? -# 379753949211160576 -@johanjortso seventeen, I think. Several are not with me -@johanjortso heheh do you mean my avatar? Her name is Kasane Teto and she is a parody of Hatsune Miku -@johanjortso "relic" is the word Rowling chose as the backup word that means something alike to hallows, so I guess so. -@johanjortso "hallows" is quite a peculiar word though. Almost all English speakers have only heard it in: "Hallowed be thy name" in prayer -@johanjortso ahh book 7: with a word in the title so obscure she had to make up a second title for other languages! :) -@johanjortso no they are completely different. They are soft pastels, largely color-coded after the first volume. -@johanjortso I actually don't think the American covers have all three on the front of any. The seventh may have the others on the back. -In retrospect, the Prime Minister's opening chapter of Harry Potter and the Half-Blood Prince is rather clumsy. I don't like it. -@johanjortso Harry's looking pretty hot in that last one. And Hermione looks exactly like a WWII beauty lol -@thegrugq that was actually the only one I spent much money on. I was able to get most of them second-hand -@johanjortso I have just the first volume of Swedish and yes it is exceptionally good -@chriseng @thegrugq @codeferret_ I give away my iPads as I replace them, SIR -@kevinlange btw your sudden disappearance had me convinced the pebble mafia had killed you -RT @Talen_Lee: The stirring love story of a school surveillance AI falling in love with a masculine kill drone from the neighbouring airfie… -@thegrugq @codeferret_ yes, but I don’t get handed literal bags of cash by someone in vibram five fingers, so I can’t do it EVERY paycheck. -@Talen_Lee you syllabize weird -@thegrugq @codeferret_ the rumor mill was saying October. -@thegrugq @codeferret_ um yes that was the idea? -Yes mass surveillance of students on the internet is that special something our schools were missing http://t.co/LFpWFVPdKz -RT @arstechnica: California school district hires online monitoring firm to watch 13,000 students http://t.co/flNYhUR3zn by @cfarivar -@jack_daniel I think the only woman commercial pilot I’ve ever seen was in Peru. -@dragosr safe safe perfectly safe -@Packetknife I’m married so I don’t count right -RT @hanno: Just found: wordpress theme with license "free as long as you leave the footer intact" - the footer contains a php remote shell -@CodaFi_ stone, we call it a stone to be polite. -@Casiusss nein, not particularly, I collect this stuff -@SimonZerafa I think I might, but that set is in a box I don't have access to atm -@vogon Italian version of Chamber of Secrets is Harry flying away on a giant book. Rest of the Italian covers make sense. -Weirdest freakin' cover award goes to: Italian http://t.co/t789DAG6ar -@jonelf "So kindle a fire.." ... "ARE YOU MAD? ARE YOU A WITCH OR NOT?" -@Samurai336 is this low enough http://t.co/gwKoZlh9XE -@mikaelj no it's like... Here are lists of words (colors, numbers, household items). Here are verb conjugations. Memorize -Here is arguably the most obscure Harry Potter translation I own - Faroese http://t.co/58h87ckoSb -@mikaelj and in general I think the techniques used are very shoddy but maybe I just find grammar comes more naturally than most people. -@mikaelj class as a language one, kind of an effort to keep all of us from being WHOLLY ignorant of the outside world. -@mikaelj like, these classes are not designed to actually teach you to speak the language fluently. They're as much a geography/history -@mikaelj most people will take a few years of Spanish, French, or German in high school but it's fairly casual -@_yossi_ integer wrapped several times, yes. -@mikaelj you can find someone who speaks fair Spanish in any crowd, but other than that, it's considered a distinguishing accomplishment -(Brace yourself, condescending tweets from my six trillion foreign friends who speak perfect English are coming) -@fascinated http://t.co/L1pbZc0OYP -I am awarding myself a cookie for getting through that ordering process without having to look up a single word! Look mom I'm bilingual -@okoeroo @RATBORG it came out to as much as the book and then some. oh well -Well, a Dutch bookstore just took my money for Frisian Harry Potter, now to see if it actually arrives... and if my bank calls me for fraud -@okoeroo As an American, I am not used to this idea of businesses that will ship internationally :p -@okoeroo that's what I am trying to figure out -@okoeroo It is linguistically between our languages. I found a book written in the 1800s in Frisian once and I could read it fairly well. -@okoeroo yes to the latter, but Frisian I especially like because it sits so prettily between English and Dutch -@Talen_Lee pretty sure I already have that one! It's in a box somewhere though. -Oh my gods can anyone mail me the West Frisian edition (Harry Potter en de stien fan 'e wizen) I live in America :( -@sevanjaniyan I did import one volume from England - but it was in Faroese :) -@sevanjaniyan If it falls into my lap, but I chose not to import it and pay all that shipping etc. -(If you forewarn me I could bring cash to trade for it) -I should make a spreadsheet of which translations of Harry Potter I have in an attempt to get more from international convention-goers -@dangoodin001 so I gotta be that person who points out the typo right :) -@seccubus now granted, I would not have changed Hermione’s name, as it is a traditional Greek one. -Ars Technica commenters: “it’s just a DoS! This isn’t a security problem!” Yes I feel safe when my servers can be brought down with a post -@DrPizza hey guess who called it -RT @SteveD3: So... here is a random question. Would any physical pen testers / red teams mind a reporter tagging along on a gig? I'd cover … -@seccubus well, Hermione’s patronus *is* a small, long, fuzzy mammal -@PxlPhile counting ones that only translated the first volume, there are several dozen, of which I have at least one from 17 different ones -@PxlPhile I collect all translations of Harry Potter -@seccubus I think the Dutch ones are cute… -Augh! I forgot to lock the door, and @The1TrueSean came in and — oh my gods he just gave me a German copy of Harry Potter volume 4 okay -@ochsff 64 bytes received from @ochsff -@heathborders @natesbrain hmm, remind me to ask Rowling if dementors have gender next time I’m at the world famous author club -RT @dangoodin001: Would someone please email me the DoS disclosure that was posted to the Django-developers mailing list? dan.goodin http:/… -@m1sp I AM YOUR SENPAI -RT @m1sp: Dammit Eugene. Now I have to figure out what to do with this http://t.co/t5fjdN6fhb -@elathan nobody for real, but think on the ten year plan, I bet the most paranoid will. -The sound of surrender https://t.co/KO6RXCpQZC -@josefnpat no, I do mean the interpreter. -I saw ONE line from customer code and I could tell it was actually the PHP interpreter, gods save my soul -@mattblaze it’s a desperate attempt to make yourself feel better just by throwing all the adjectives, I think. -@BomuBoi very detailed, do like. -@jdguffey_netsec a lot of people disputed that having the limit be the limit of POST the server will accept Should Be Fine. -See! I *told* you having literally no limit on password length could DoS the server. https://t.co/eIInjdgrM5 -@sanitybit @0x7eff VINDICATED -@leighhollowell @MrToph congrats !!!! -So one or more someones are shooting up the navy yard in DC, ffffff -RT @zooko: @matthew_d_green Remember NSA pushed small keys for a long time; presumably they thought they could brute force better than thei… -@chort0 @briankrebs but I don’t think closing it to some arbitrary cabal will fix it either -@chort0 @briankrebs my first experience with whois was discovering my registrar autofilled in my billing address… when I was 16 :( -@sciencecomic horses have pretty eyes, and there’s a lot of variety! -@briankrebs hmm, mixed feelings there. The whois system as it now stands is definitely a terrible mess -@vikemosabe minding that these aren't my faithful followers :p -@vikemosabe I have been repeatedly deluged with many different photos of women wearing one and/or asserting it fits them, great. -@vikemosabe that since the back is flat it does not sit correctly on many feminine wrists and just slides around it. -@ptolts https://t.co/17YKqGziKy :) -(It's not any one person, I've just been contacted repeatedly over the course of weeks based on ONE remark) -It seems like there's some sort of Team Vengeance that keeps pestering you if you criticize Pebble. It's a goddam watch, people -@Becca_monster @PurseandClutch @Pebble is there a particular reason you keep sending me this same picture like some social media hellbeast -@Kufat @codeferret_ yes? It's not like I'm going to never upgrade my iPad again until the foundations of the earth are broken. -@Kufat @codeferret_ is that not what I just said -I realized I shouldn't pick up a Surface RT at a steep discount... because then @codeferret_ will be mad when I want to upgrade my iPad too. -@0x00string early morning light, gray and moody, emphasizing the dour tones of rust. -Infosec industry: keeping photographers in business with stock photographs of dramatically lit masterlocks since 1997 -@addelindh does this government have a higher presence of women than “Bellatrix and Narcissa” -@locks about a fifth -I’m officially using Voldemort’s Death Eaters as my benchmark for presence of women in positions of power from now on -RT @themetresgained: OK I admit this is made me snort with laughter - still more women than the Abbott cabinet http://t.co/LBc5EC4O2s -@DarthNull oh no, immigrants! -@Viss daaaang. -RT @OnionGovAU: [Ed.: I had a tweet lined up about Abbott appointing himself Minister for Women, but it appears he's bested me.] -@kivikakk @m1sp oh my gods it’s been ages since I heard someone say non overlapping magisteria -Apparently my biggest fan is a five-year-old -- I consider this a resounding success -@Packetknife send me pics so she can be officially my first cosplayer -I just noticed that I have several Diablo 3 auctions from over a YEAR ago marked as "processing" -@puellavulnerata @csoghoian he’s old, so probably, and 51% is close enough to true for them! -@apiary they do? And why? -@skattyadz I don’t think I can even do that with Chrome for iOS -What is this HTML thing which prevents me from pinching to zoom a page and who do I assassinate to fix it -RT @MS2: .@katylevinson just clued me into this BAD-ASS BEAR: http://t.co/o9JMuATpfg http://t.co/BWG4EHe6nV -@ZadowSapherelis aww okay -@Tomi_Tapio our system is perfectly cromulent thank you very much -@Packetknife she may also enjoy my collection of real life reference material http://t.co/sWbx2cJ72J -# 379388981416566785 -@silviocesare grats! -@Packetknife lemme know if she wants different ones -@Packetknife I’m afraid this is the best I can do, don’t laugh at the hands please http://t.co/d9fwPZvHaX -RT @pusscat: This was in my attic. Dad sent me to school with it 13 years back. Current day #irony http://t.co/j3Z8Vw9IOq -@Packetknife gimme a few! I will get you some sketches -It'd be pretty cool if @tumblr could invent a live theme preview that didn't bring a thousand dollar computer to its knees with javascript -@Myriachan report it to @OSVDB !!! -@Myriachan some day, northern Virginia will find out about proxies -@MarioVilas if you were actually trying to decipher me: “I know that post is old. I'm drinking cheap chocolate as though it were a drug.” ;) -This is the sort of hot diggity dog 0day I crave http://t.co/FXwKArqSLC -RT @OSVDB: Nothing is sacred: The Oregon Trail vulnerability. http://t.co/ldRaLvutbh -RT @GPGTools: We've learned that there are fake keys with our team@gpgtools.org address on the key servers. Our official key id is: 76D78F… -@clearcup @frkbmb if you live and work in the United States, I require missile coordinates. -RT @chort0: "the power of being inside the government system is the greatest perk." <- Gov recruiting pitch. No wonder surveillance is out … -@thegrugq I don’t judge YOUR substance abuse old man -@kaepora so are many stochastic processes -@kaepora why? -@ZadowSapherelis @m1sp ps am awake again -Strong contender for most ridiculous use of C preprocessor https://t.co/rGBLn2wnXQ -@sakjur I already have a Swedish server ;) -@sakjur well we can switch to Comcast and take a significant downgrade in the process. -According to my nightmares, my biggest fear is missing my stop on the train… and ending up in Osaka? -@sakjur ugh, we have Verizon … -Don’t tell me that stack overflow post is older than Dumbledore I’m getting wasted on instant packet hot cocoa on a Saturday night -First answer http://t.co/NfLSUMrBaQ -@Packetknife @kivikakk oh, so this is where the other two tweets went :) -@Packetknife I’d say it’s in our blood but I am not Dutch blood. So I guess it’s something in the water -@Packetknife apparently I have trouble writing meltdowns, the one in chapter 23 is nearly pure exposition, I’m halfway done rewriting it -@savagejen first guess: timestamp problem? -@armcannon I’m told it’s a default of some toggle. -@kivikakk she actually doesn't get around to saying LIES AND SLANDER in this book, will have to remedy in the future -@kivikakk aw man. Chapter 23 is terrible just so you know. But other than that: yay! -@Packetknife his beard is the subject of several nordic eddas, yes -@Packetknife you know I kinda dig beards right -@dan_crowley 3.5/5 would settle -@oh_rodr beats me. They probably have some ridiculous contortion paperwork -@Talen_Lee perhaps I should clarify the @m1sp defense grid is merely under my command, rather than me being the ghost in the machine -@Xaquseg I guess I'm not enough of a dirty pirate -@qole I'm deliberately trying to get people to confess they bet I find them attractive so I can crush their hearts and cackle madly -OUTSOURCING being spoilsports? Seriously? http://t.co/1Xak72MreO -@thegrugq I trust you utterly, good sir. -I would like to drive all of you into fits of paranoia by saying that it is one of YOU I do not trust for being too handsome, dear followers -@ZadowSapherelis @m1sp awesome :D your today being my tonight, gonna pass out soon. -@Talen_Lee @m1sp I have been informed that I do not have cause to consider you a threat. Systems on standby. -No context: "I do not quite trust him, because he is charismatic. Trust Only Dorks." -@The1TrueSean we deliver. http://t.co/5svlDMI4GK -“Are those girls with his mother (of clearly different ethnicity) his sisters?” “No they are adopted” Uh… so, yes? They are his sisters then -@vogon hey you should maybe not die -@me_irl @apiary — @NewtonMark points out that it’s DeCSS (I guess that’s why the variable is named CSS eh.) -@Packetknife branch closed with unaccepted pull request -@me_irl @apiary it’s probably graphics. It’s just bit shifting. -RT @apiary: Cyber war! The spy museum was weird. http://t.co/P4GdcokBBU -I have brought @WhiteMageSlave back to my house time to act like we're kids on summer vacation again #videogames -I'm now old enough to be that relative who remembers fondly someone who died before someone at the table was born. -I shall inflict upon you exactly one wedding photo. I bear genetic resemblance to these young individuals http://t.co/L2ApxxIoZg -# 379030183044710400 -@m1sp also: instead of ranting about patriarchal wedding ceremonies, http://t.co/9chD7tEZ5E -@m1sp it's okay I have dream insurance -@stupicide thanks ! -@michaeldinn https://t.co/8quA0YoHBK ;) -(I saw no less than three different older couples taking pictures of the wedding with an iPad, and it was a fairly small wedding.) -You laugh. But it turns out old people LOVE taking pictures with their iPad. Because they can SEE it. -@kyhwana my feet are wider than average on one end and narrower than average at the other -@kyhwana I suspect they would be terrible. My deep secret is I was born with malformed feet and they're stil not quite right -Everyone speeds up 20MPH when they cross from Massachusetts to New Hampshire because they know NH can't afford cops. -@kovnsk my toes are too wide and my heels too narrow. So they pinch one end and fall off the other bc girly shoes don't grip the heel -@kovnsk apparently my feet are a little malformed. Mostly corrected by baby surgery. Normal shoes are fine but feminine ones... -Ahparrently I get my accent back magically when I cross the border into New Hampsha -Hi I'm running late and -- and I see you decided to take an entire little league team to Starbucks instead of the Cold Stone next door :( -@chriseng these shoes still have the tissues I stuffed in to wear them to my interview at v-code -@chriseng I have never once in my entire life worn dress shoes that did not leave me LITERALLY bleeding at the end of the day -So I tried on my husband’s shoes and ZOMG I am never wearing women’s dress shoes again. -@bobpoekert context was Facebook -@vogon wow it’s like someone said “I wonder how closely I can try to copy the Haruhi formula without putting yellow ribbons in her hair” -Interesting observation: when you are running code at HUGE scale, you want to optimize execution time simply for *power* savings. -Paraphrasing @0x6D6172696F (protected): fogpad leaks everything to a third party spellchecking service -@ppattersonjax Not particularly but we are suspicious. But algorithm soundness is one thing, implementation soundness is another -@annavester @homakov lol check the screenshot in his timeline. His twitter crashed and drew my avatar by your name. -@vogon you had to physically scrub to get the dirt out before detergent. -@technololigy the coffee mug is not optional ☕ -In this RT: you can see my avatar so I take credit for hacking @homakov -RT @homakov: Not sure if my iPod is hacker or the twitter app is drunk. Render bugs, wrong avatars, messed authors. http://t.co/BJrvJVbSAV -@homakov I had no idea I changed my name to Anna Vester Coffee Mug -You know what’s a huge red flag to me? Using the phrase “military-grade crypto” when the whole industry mocks it https://t.co/Tg7P34E6o7 -@Havokca I think it’d be fun to ask, say, Marvel/DC artists to gender-guess those in the middle panel… answer is 6 women and 3 men. -Have I mentioned lately that Drowtales’ main art team is just absolutely amazing http://t.co/b9MW724uEL and can draw armor on a woman! -I have no idea what I’m doing http://t.co/Xz5IEkC1hB -RT @ShiroSirius: Two elderly ladies at a crossing. One complains about the students, the other replies with "We did that when we were young… -@jimauthors so every time someone has asked where their favorite language is on the chart, the answer is the same... purgatory -@argonblue @ternus yeah, and, I swear, some complete dead weight just for lulz. -This cheesecake has lavender frosting. Lavender is not a flavor. My brain needs HELP knowing what to expect, pretentious cheesecake! -@ternus of course I doubt Silverlight is on the up and up so I am just gonna assume it’s bundling an entire Windows subsystem -@ternus you know, for all that text with beveled drop shadows -@ternus those don’t generally ship anymore, but they don’t add TOO much. Oh, but localized high-res pngs in 27 languages can… -@ternus they tend to directly bundle every framework known to the human race -@m1sp I only like REAL ones, I guess -@m1sp it looks lovely but I hate puzzle games! -@m1sp what on earth are you playing -.@abby_ebooks don’t go telling anyone, dear robot! -@julianor you have a talent for worrisome tweets -@rantyben oh, it is. It’s just not to YOUR benefit. :) -@m1sp I think we have established I definitely have a type. Not of person but of couple -@m1sp I have no idea who these characters are but this is my jam http://t.co/1nXQG9cdOY -@nickdepetrillo @thegrugq look it's a stupid hand with five stupid digits okay http://t.co/WiMH47jGSy -@Fe3Mike purgatory -# 378667934232879104 -@demize95 so I hate this entire concept of dressing up -Don't tell the Macy's cashier you're going to a wedding. She will judge you -I'm that cousin who goes shopping for something to wear an hour before the mall closes the night before the wedding -@m1sp seriously though if you devise a plan for the salvation of many that you believe necessitates my death gimme fair warning plz -@m1sp ................ that is the most terrifying thing you could have POSSIBLY said. -@m1sp but we love each other right -@USSJoin @thegrugq @kaepora no-one in the industry features in my secret stash, except that pic of @MrToph in handcuffs. -I hate my friends. @thegrugq @nickdepetrillo -@nickdepetrillo @thegrugq I'm glad you are all so supportive of my art therapy. This community makes it worth it -@thegrugq no no that guy has curly hair. Like @kaepora, who I can honestly say does not feature in my secret stash -@thegrugq full disclosure dox leak abadidea's secret stash http://t.co/W0LPcVjO3c -@aeleruil @ibutsu @m1sp @_eugenek and I write novels about a gay guy who needs to be kept in chains a lot for magical reasons, it's all good -@JohnnyCocaine this does not solve my problem -@m1sp @_eugenek look my photoshopping skills may not be the best but I think that is A VERY WORTHWHILE EDIT. -@thegrugq be fullfillllllled -@thegrugq IT'S NOT PORN IT'S ART and the idea is to semantically tag them within the context of the larger database so your preferences may -What is it with Japanese websites and not knowing about ajax. This is a very inefficient way to bookmark luscious pictures of young men -@m1sp I improved that picture you put on your tumblr http://t.co/442OqYwm7N -@frkbmb @GreenSkyOverMe hahahahahaHAHAHAHAhahahHAHAHahahAHAHAaaaa -@supersat @vogon yeah, it was kinda a given, but it also raises more questions than it answers IMO -@GreenSkyOverMe @frkbmb heheh yes. Maybe they think being in another country from Google protects them from having to comply… -@kll @micahgoulart but I am the funniest person on twitter this has been proven by Science Science is the name of my pet plant -RT @kaepora: FBI admits it was behind the attack on Tor (I was right!) http://t.co/iB7UuniQ4k -@vogon but the spooks haven’t published an explicit denial claiming the journalists, Schneier etc are lying about it. -@vogon so, here’s the thing. They won’t publish it. Only say that is what it says. -@m1sp and then there’s http://t.co/QptQn9QCW9 -@alex_gaynor and it was not too long ago that “don’t call the functions in this order or you’ll segfault” was accepted php behavior -@alex_gaynor in theory they could be implemented essentially the same. In practice PHP is bolted on to the C API -@drjackbennett without having specifically looked at it, I suspect it falls into the category of boutique LLVM native languages? -@m1sp inside JavaScript is an elegant language screaming to be let out. And there it shall scream until the end of time -@m1sp except that Lua is orders of magnitude more compact, has few sharp edges, and is specifically intended to directly integrate with C -@rubynerd bamboo paper (different from just paper) -@rubynerd on an iPad, yes. -RT @arstechnica: Gov’nt standards agency “strongly” discourages use of NSA-influenced algorithm http://t.co/0xXELcQyR0 -For your reference, my personal religious beliefs about language highness and lowness. http://t.co/nBfgDd4FnD -@sergeybratus @dangoodin001 I’m just giving us all a hard time :) -@nothology @ASTRALPRISON @frkbmb oh dear. -@AdvancedThreat @thegrugq I think my husband still wants me to pitch an electronics ID-ing system based on my radio stuff to the TSA… -@Myriachan gods deliver me from the condemnation of “neurotypical” -@eevee idk god ? Pretty sure that’s the xkcd theology anyway -@zenrandom @thegrugq as kismet guy points out it arguably makes the very function of wifi on a busy street illegal -@dantoml @dakami yes, I just found a few on reddit RIGHT NOW. Assembly exists, therefore C is sky high?? -@technololigy well according to traditional western theology this is where the devil came from -If you insist on calling C a high-level language, you’re implying we need stronger adjectives for higher languages, making Ruby “heavenly” -@dangoodin001 come join the forces of @sergeybratus in the war against Turing completeness ;) -@thegrugq I want technically accurate laws that lay down what’s not allowed while not making the very use of wifi kinda illegal -@vogon what have you done -Oh my gods, macros http://t.co/999CD2BPXv -@vogon here is my Kickstarter for buy me pizza for every meal without my husband seeing the bill -Also I walked to 7-11 in the rain to buy Bagel Bites and the owner asked why I wasn’t at work. I think he needs a vacation too… -Thanks, guys in gray SUV! I very nearly went the entire summer without any strangers whistling at me from a car -RT @trevortimm: Amazing. Citing Snowden, the FISA court has ordered the government to declassify more of its secret opinions http://t.co/hp… -.@briankrebs you can also get their like at gas station corner stores. The USB charge kits with exchangeable ends have no data pins -Yes, everything I see, everywhere I go, my first thought is “that doesn’t look robust to attack.” And they wonder why I don’t sleep -Thank you for the suggestion, Kindle! I have total faith in this 60-second setup process http://t.co/Kovda9DZsN -@blueben I just took Google to be the very definition of the sort of place that would be using its own database stuff -@pettybooshwah I was not the original discoverer of the Unicode Bug — I just did my part to prove it can be dangerous :) -I’m kinda surprised Google was using MySQL at all, even heavily modified http://t.co/yb8JFIURGn -RT @Packetknife: “If You Argue That the NSA Data Has Not Been Misused, You Must Know Something the NSA Doesn’t” by @zeynep http://t.co/SSzi… -@vogon if you’re subtweeting me, I’m pretty sure the kismet guy is pretty invested in being well read on this stuff -@raudelmil I a, so far beyond even caring about the street view stuff. It’s the entirely broken definition of wifi that concerns me -Well if this isn’t the most ignorant counterfactual definition of “radio” http://t.co/o7SnZ2DcpJ go law! -RT @iamdevloper: Setting your username to "false" is a great way to test other developer's use of strict equality checking in web apps. -Godsdammit Chrome for iOS why did you have to go give yourself a giant white border too? -@eevee @0x54726F6E @Chase because they are terrible? :) -RT @kirtan: A 36-year-old spacecraft just told us that it's left our solar system over a 23-watt transmitter from over 11 billion miles awa… -.@0x54726F6E @eevee @Chase Not necessarily. It is often glue code between website front end and database backend that is the problem -@aeleruil just to be clear: that isn’t English, right? -RT @sergeybratus: Non-alphanumeric PHP backdoor http://t.co/2u0WZQmAWA (via @XakepRU) -@thegrugq @i0n1c the real answer of course is that it is a gross salmon color that is not red and not quite pink either -@LBontempoNunes @eevee to avoid fixing their backend code from 1986 -RT @eevee: you may notice that the characters @chase disallows in passwords are < > & " ' -- you know, just in case my password appears in … -@kingcope whereabouts in the source should I be looking -RT @eevee: give me all your hilarious bank website security stories i need to write a blog post -RT @eevee: lol i can't log into @chase because my EXISTING PASSWORD contains punctuation and their client-side form validation rejects it. … -@m1sp new section in the middle of chapter 18 with Eodar and Helian. I haven't actually read it. Good night. -@arjache improvement over where I used to live - it'd be a solid zero :) -@arjache yeah there's two restaurants on that which deliver and both keep rather tame hours -A staycation? But there's no cafeteria in my house. What will I eat? -@DarrenPMeyer dude Ginny is hot. Oh... you mean the other Weasleys... -@JBASkeen put one in my hands and we'll find out... if it's done WELL it's most likely better than a four-digit. -Remember that mint plant I got? Not only have I remembered to water it, but it’s wilting of old age and I am genuinely upset -But no I don’t have a great idea for how to render previews of doc files without parsing them all the way either. -RT @DataIsAmazing: Usage of older versions of internet explorer drops on weekends showing that they are used at work, not by choice. http:/… -Dropbox response via @cgranade: “uh… hang on… let me turn off that attack surface” https://t.co/jsdXia0vvO -Honestly if Dropbox is ACTUALLY parsing Office files server-side this is an idea that can only get them hurt :) -@vogon cool gl -Hey, anybody have any 0day in LibreOffice? I have an idea. http://t.co/J03U0U2ckU -@vogon where are you going anyway? And I guess I will have to make @blowdart my new preferred insider -@vogon I’ll take them -Cute OSX password leak (patched) http://t.co/w0LnvxyF33 -@m1sp (Eodar's perception of how much they cost is skewed a bit by being from a second-fantasy-world country.) -@m1sp not absurdly rare in the Occident. But black market stuff. New paintjob. There's no serial number to file off... -@m1sp well you see, it all starts with some Grand Theft Mechanical Carriage... -@m1sp but really - do you think they teach you how to get out of handcuffs in noblewoman school? Well they probably should -@m1sp but only in the Republic! Totes doesn't count. -@m1sp http://t.co/l0CqsI2zuV -"Could she, like, tear off someone's arms with that gravity power?" - his first question, a page and a half into the book -The only way to get DH to read the manuscript is to encourage him to speculate about horrible ways the characters can kill each other -@m1sp we're getting a new flashback scene that was originally for book 2 http://t.co/wIzlSKf2oZ hint -@leighhollowell @jlwfnord good luck <3 -@m1sp1dea_ebooks what are you trying to say dear robot -# 378306334921613313 -@leighhollowell should I be inferring something -@frkbmb @amazingatheist gods forbid someone tells you what they think of what you said. So controlling. -RT @DrPizza: This has a veneer of plausibility: http://t.co/Ep8Av2CwQs -@m1sp with my writing, but not with anything else. -@m1sp ps *hug* I've been in tears over anxiety :< -@m1sp I'm already much more satisfied with reframing Helian's so far with Eodar and Rodomond getting a little snippy #bromance -@blowdart gee what'd he do now -The simplest little things make me laugh until I cry http://t.co/QX5LRFsmBb -@Vefessh weev can have his weev rights to increment integers I am totally okay with that -@sergeybratus I'd direct you to the author of the quote and get my twitter argument popcorn, but their account is protected -@_ta0 and Hitler had puppies (my Time To Godwin is very short.) -RT @seriouspony: Screenshot of a comment about me *today* (on diff site) re: the Verge article. They're still angry 6 years later. http://t… -Looks like the OSX patch for the Unicode Bug is out :) http://t.co/Z1xfTEC74J -@The1TrueSean it’s supposed to be trumpets. I have yet to find a trumpet soundfont that sounds like good trumpets. -Maybe the thing weev went to jail for wasn’t something worth going to jail for. But he is an absolutely awful person http://t.co/MiXaHpTE8g -@The1TrueSean well what did you think of the one I actually made :| -@dildog I am none of those! Give me a backup copy of your passwords -@chriseng @JastrzebskiJ @The1TrueSean @apiary @codeferret_ @fredowsley http://t.co/WHJhZqAVyv -@chriseng @JastrzebskiJ @The1TrueSean @apiary @codeferret_ @fredowsley Snape is the dark, brooding, bitter middle-aged man who’s not evil -Today I learned: it is really hard to make mysterious minor key music sound like a fife-and-drum song that stuff's pretty upbeat -@apiary @The1TrueSean Threw this together. It doesn't really lend itself well but I tried https://t.co/IViKweVXce -Google continues to be just a little bit too good at this http://t.co/qAmi35G97h -@The1TrueSean @apiary @codeferret_ also: I am SO on writing a "Yankee Doodle" style cover of Harry Potter theme -@The1TrueSean @apiary @codeferret_ we need a Snape. "Pay attention Mistah Pottah" -@The1TrueSean @apiary @codeferret_ the thu'um can be taught, like any skill. (mixing fandoms so sue me) -@ShahinRamezany spam. -@The1TrueSean @codeferret_ (it’s win gaaaaah dium) -@The1TrueSean @codeferret_ so, fan movie. I’d make a good Boston Hermione. Chewie could be Boston Hagrid. Who’s Harry? -@m1sp time to rewrite Helian’s and Talassen’s respective monologues. Wish me luck. -@spacerog and now there are bitter people angry about “fake nerds” who didn’t have to get bullied to enjoy nerdy things. -@focalintent — such unprofessionalism. -@focalintent I was highly annoyed with both sides TBH. Though I guess that’s one of the few degrees of emotional duress that can justify — -@kaepora for $3000 I will teach them about the fork button -In this RT: I ragequit before the end of the first page. -RT @ircmaxell: I feel dirty: http://t.co/bJi4Xt849K worth the read, but eiw... -RT @JastrzebskiJ: Re last rt re @SenFeinstein "legitimate journalism" is like "legitimate rape", right? If *I* agree with it, it's "legitim… -@launchz @comex that’s naht true. -@PxlPhile well do you accept my sister as authoritative? -RT @windyoona: Just found the #44CON microphone frequencies... -@aeleruil it can happen at all sorts of exciting angles, if you believe in yourself. -@aeleruil that’s… not how pregnancy works (and I’m not even commenting on the mpreg) -Someone tell all these teenage youtubers not to upload videos that will probably get flagged to the same account as ones that won't. :( -Amazing what one year of youtube atrophy can do to a playlist. Tried to repair it as best as I could. SPIN SPIN SPIN http://t.co/eIIkyRnRnp -@PxlPhile https://t.co/s47zustPzK -@codeferret_ @The1TrueSean yowa wizahd harry -@Samurai336 hmmm. http://t.co/Z2svmzNnw2 -@Samurai336 in any case, the story is set 70 years ago, not a few hundred :) -@Samurai336 on the contrary, that's kind of where witchcraft's most famously tragic incidents happened, don't you think? -Whoa we are finally gonna get a CANON look at the HP Wizarding World in America. But she should have picked Boston, not New York ;) -Well in news that is simple and happy: Rowling is writing a film set in expanded Harry Potter world. Fantastic Beasts and Where to Find Them -@WhiteMageSlave oh my gods does it have Gay Young Dumbledore? Or Molly? Apparently she’s about that old I once read -I don’t think I believe in there being any magic pixie dust to designate Legitimate Journalism. https://t.co/fGOnJHDDpX -RT @EFFLive: .@SenFeinstein uses example of a 17-year-old high-school drop out who starts his own website as someone who shouldn't be cover… -@EFFLive @SenFeinstein so do I reach for the popcorn or the facepalm -@WhiteMageSlave what -@halvarflake XXXXXXXXXXXX———<(’o’<)—————————————————————————————————————————————————— oh no! Wild Jigglypuff appears -RT @_wirepair: happy to announce I can finally release the https://t.co/aHfI7nYUcf wiki and ninko https://t.co/R4JOT5zTjS -RT @blainecapatch: america isn't the world's policeman, it's more like the world's george zimmerman. -@m1sp <3 affection -RT @mikko: Yahoo CEO Marissa Mayer: "We faced jail if we revealed NSA surveillance" http://t.co/mOJMFrxIvQ -@cirdan12 heheh it’s a guy, a very pretty guy. -@DrPizza it’s Kasane Teto yes. -@DrPizza :( -RT @leighalexander: "I am not hoping senpai will notice me this year. I AM the senpai. Someone is waiting to get noticed and I AM THE ONE W… -@NedGilmore yeah I really just don't care about the high-level metawhatever -@DarrenPMeyer I'm pretty sure it will render fine, I have one of the ultra-cheapie Kindles and it seems fine, it was just the insult of it -@NedGilmore I decided to reinstall it and kill some zombies to try and deal with anxiety -@mikeestee heheheh. -@thegrugq sure, but that's not the point. Generating dozens of X11 windows is :( -@jbrodkin desktop http://t.co/Tn96FYCbNz -Well I guess we'll NEVER KNOW what my mobi file looks like on a Paperwhite device because it generates infinite "install X11" notices -OMFG AMAZON WAT R U DOIN STAHP http://t.co/7oNHZklQlg -@mikeestee ....thanks :( -Oh, of course the official Kindle preview app is in Java. And of course it takes about a minute just to open a novel. -@rmhrisk @dan_crowley it's not an "exploit" though :p -@dan_crowley @rmhrisk I think it was more about, there are a thousand ways to capture the local passwords once root. This one is just cute. -I surrender to the will of Kindle to start the book at Chapter One rather than Prologue, and inline the prologue to the first chapter. -@ra6bit he specifically tries very hard to look effeminate when he is young. By age ~70 he's pretty much given up on that -@ShadowTodd yes but I don’t have any sources handy to cite! -@ra6bit one of the important characters in my story is the blatantly gay old man who is perpetually up to something shady :) -@thegrugq :( I'm not a real artist, I just play one on tumblr -@ra6bit @thegrugq yes he's just fabulous -@thegrugq Can't you just be happy for me that I drew a good Crazy Old Man face like yours :( -RT @Kasparov63: I hope Putin has taken adequate protections. Now that he is a Russian journalist his life may be in grave danger! -@thegrugq you’re just sad because you got old too. -I’m on a roll tonight (hope you like amateur artwork). Same character, five decades apart http://t.co/JEmYQ0mpA8 -@Mordicant yes -@marshray @thegrugq @homakov did this “recently” end around the time you were absorbed into the Microsoft Empire -Today on “double-take bylines” http://t.co/v0P52HeenX -More faces. http://t.co/NyoKbUJfBn -RT @blueben: @0xabad1dea We can tease it out because we put it there. -@ternus @Brian_Sniffen yeah, pesky EXIF. The downfall of drug-crazed antivirus merchants everywhere ;) -@m1sp but you can add the Many Slightly Different Moods of Barsamin to your pinboard of my Great American Novel ^_^ -@m1sp Huh. Weird. Right as I tweeted that my phone was being deluged with "has pinned Vulpix. Has pinned Lugia. Has pinned" -@m1sp you DID just upload a bunch of pokemons, right? Otherwise my stalker script has broke. -And no, they didn't do anything particularly Dark Black Magical, but that's kinda the point. "We" know how to tease out the data. -@jdiezlopez it says they say they did NOT know who she was but they knew what school she went to, probably overheard it at the party -"Why engineers scare me - a true story" http://t.co/uwgkglic3z this is the power WE have over other people. And we're not even the bad ones. -@trap0xf same -@codinghorror that’s hilarious because fallacy of ignoring choice and consent -# 377942162874576896 -.@rmhrisk once you’re root you can use really cute root powers ;) -Common sentence in infosec: “This technique was already known.” I think it translates as “you will never be a 1990s hacker, kid” -@dangoodin001 I’m guessing they mean achieving full sandbox escape into native code as opposed to writing malicious Java only -@m1sp hahahaha you just triggered my stalker script for the first time in months and oh my gods stop posting to Pinterest -@vogon like if you think there is something flawed with most teenagers and you’re in your 40s well I have some bad news about your peers -@eevee @cgranade @atweetingtwit I have an extremely vague memory of my mother preferring the Hot Dog Stand windows 3.1 color scheme -@vogon actually, I consider anyone who condemns millennials to kind of missed the fact that they didn’t come to be in a vacuum -@Tomi_Tapio not everyone in a cloak is a vampire! … His uncle totes looks like one though -Malicious password filters — obscure Windows feature http://t.co/GmiBB7H4pN -@atweetingtwit @eevee as someone who started programming around 2004… not that simple at all >:( -RT @eevee: maybe there's a generational void between 1982 and 1991: those of us who grew up alongside the web, not with it, and are now off… -@eevee possibly because it’s almost always spoken in the most insulting way possible -RT @ternus: “There exist terrible yet exceedingly rare events where the cost to prevent exceeds potential loss” is deeply hard for us to ac… -@eevee I was under the impression it most directly applies starting at about five years younger than me. But then, what am I? -@clonepa_ I see they are branding geniuses -RT @GooglePoetics: my wife is emotionally unavailable my wife is emotionally abusive my wife is expecting our first baby #GooglePoems http… -@demize95 thanks, but still a long way from where I want to be -@demize95 well like idk been doodling my whole life but got a little more serious about trying a few years ago? -@snare more technically my opinion is a function should have only one non-error return but should feel free to error fast -@snare you only get to say I have one exit point if I get to use goto :) -RT @RBStalin: Haha Millenials, you're so crippled by preceding generations. Losers. I thumb my nose at you. -@blaufish_ it’s an iPad. Bamboo is the software -@JBird_Vegas nope -@oddtazz yes -@clonepa_ it’s an iPad. Wacom Bamboo is the name of the software -@0xmchow @_defcon_ sigh :( -Forced myself to draw expressions other than Sad http://t.co/PAGPRElrhs -@F706L3665 got it :p -@aeleruil happens every time -@clonepa_ @jan_ekholm Wacom bamboo (with generic capacitive stylus) -Having an anxiety attack for no specific reason. So here is more of my attempts to digitally watercolor. http://t.co/5PNC824TY1 -@skynetbnet common misconception. -@_yossi_ I probably do not have as many spare iPhones as @comex -All of my other problems in life aside, the huge glaring whitespace on the Safari iOS7 icon makes me ANGRY every time I see it -@notfabrice that’s not pink. That’s Nuclear Waste Salmon -@antoniusglock @zygen much better -@McGrewSecurity aww. -Like I want a colored everything, I just don’t want Bright Searing Nuclear Meltdown colors -I don’t like any of the ultra-saturated colors tech companies are using (iPhone 5c, Surface RT covers, etc) Am I just… old? -RT @nkjemisin: Captain America in a turban http://t.co/8TPto5qXnJ -@SzymonSzydelko if I’m the default dump location I should probably set up a new gmail filter -By which I mean Android was like “tap here to send crash dump to Google” but it brought up an email dialogue pre-addressed to me -RT @awgross: @0xabad1dea Fixing /r/n would free up some speed for correcting the spelling of referrer -I’m not sure why Android wanted permission to send a crash report to MY email address but it’s an interesting dump -@gigideegee @trap0xf as opposed to Thor’s Day, Freyja’s Day, Saturn’s Day… -@mikko Latin, maaaaaan. -You might work in technology if: your phone autocorrects window to Windows -I bet the internet would be like a whole 0.000001% faster if we replaced \r\n in headers with just \n -@eevee @jdiezlopez oh my gods -@mattblaze well, they claimed TPM module or whatever it is called, right? And private API. Maybe a jailbroken device could. -.@DrPizza crank theory: rebel within the NSA made it too obvious it was backdoored on purpose to be a warning -It sounds like the FBI makes a huge point of not asking *on the record* for backdoors http://t.co/np6jU123LK -So I kinda just woke up, and my throat hurts like the dickens. Is there anyone on my list near enough to go infect? -RT @djrbliss: vCard handling on Android is so bad that my mom just persistently DOS'd my messaging app with a default iOS vCard. Empty vCar… -@DrunkCyberczar this went a little dark for a parody account -@kivikakk @m1sp watt :O -RT @rgov: The security question choices on http://t.co/cQdCnQLhPe are "mother's maiden name," "city of birth," and "password." -@jesster_king and pay three times? -@mdowd well in that case you must concede I am PRETTY SOCIAL -@hellNbak_ I can’t see a thing on that picture, but yes -@mdowd sir are you implying that internet flirting does not COUNT -@alexwoolfson well… that’s hot -@harrytjohnson that's the Nintendo Store -@kyhwana I... may be drawing the male protagonists *cough* -@kyhwana yes it has gay dudes and lesbians and bi kids and even a token straight hookup -@kyhwana heheh I think you will like my novel <3 -No I'm not drawing gay stuff! I am just practicing male anatomy. A buff guy and a skinny guy. A skinny, effeminate guy with cute glasses and -RT @blowdart: @0xabad1dea dance offs. Apple wins usually. -I'm not sure my town is ready for the intensity of having both an Apple Store and a Microsoft Store in one mall. Will there be gang fights? -@MADdashDAN311 there is a Microsoft store opening -@MADdashDAN311 Burlington MA on the 19th -RT @TheXbone: @0xabad1dea It's the bone that phones home! But not to the NSA. Promise. -@TheXbone oh no it's the bone :( -Windows 8 seems to have given me a giant "sports" icon I don't remember having #UIRage -@m1sp *public display of cuddling* mrrrf. -My chibi ancestor! http://t.co/XN7WhOUPUF -@Myriachan just autocorrect. I’m just on the prowl for one or two more beta readers -@Myriachan hey do you like Adventure stories -RT @trevortimm: For years, NSA was conducting suspicionless searches to obtain the suspicion the FISA court required for searches https://t… -Yep that’s me, “Trivializing Serious International Problems with Dungeons and Dragons” Elliott. But you can call me Dragons -@BrandonTansey look again -Halfway into solving the encounter with swords, the bard remembers he has a diplomacy check he can roll. https://t.co/BdsmhDM145 good going -@snare indeed. I am, however, allergic to the brown food dye used in cheap chocolate. -@snare white chocolate is better than full chocolate -@thegrugq it’s still the tenth in America, you’re good. -RT @attractr: Behold the INFORMATION DOMINANCE CENTER http://t.co/Ealp0IJHsB (it doesn't disappoint) #cybercommand -RT @a_greenberg: NSA Secretly Admitted Illegally Tracking Thousands Of 'Alert List' Phone Numbers For Years http://t.co/PUVUJdIX2I -@aeleruil he exhibited his sanguine humor -@nickdepetrillo I’M TRYING -@dangoodin001 what is the practical distinction? Other than there being blood involved in removing a thumb but not a token. -# 377578798965088256 -@m1sp she pretty much is -@sneakin if you are implying she has a large frame, this is true and she is not insulted by truth. -@m1sp lol I drew Tsovinar in ridiculous western clothes. PANTS. What is this outrage -@chriseng that might be prone to… FPs *badmpssh* -Character art drawn waiting for my husband to buy clothes http://t.co/g17CkP6THH -@m1sp gee you hang out with some strange people :) -There’s another Melissa in line at the coffee shop. But can I teach these people to spell 0xabad1dea? -@kivikakk PS I decided a scene near the end with Eodar and Helian (you'll know it) needs to be rewritten entirely -@kivikakk I changed one of them to contempt :) -@kivikakk it is -@Myriachan seriously considering it, as it comes with full Office, right? And IS there a good jailbreak, I don't even know -Surface RT is gonna be $250 for one day at my mall - the price I thought it should have been all along -@m1sp I'm pretty sure the Think Of The Children Police would love to condemn my story as Pernicious in Every Way :D -@dan_crowley I am the Softest Criminal. My street name is Marshmellow Feather Duster -@ELLIOTTCABLE well I can give you a copy of it right now if you let me tell you which scene I think needs to be completely redone -@elad3 I used Lulu for the test run and my BFF in Australia got their copy quickly -@elad3 yes but I can't make that one $3 lol -@ELLIOTTCABLE no it is artisanal hand typed -@ELLIOTTCABLE also after I posted that on tumblr I remembered one of the teens is actually *gasp* straight. -@ELLIOTTCABLE there is not even anything gay on that page! -@ELLIOTTCABLE what whyyyyy -@ELLIOTTCABLE what whyyyy -@ErrataRob and this story is LONG, it will end when Barsamin is like forty. -@ErrataRob I'm self publishing all the way but there will be printed version available through lulu :) I have one it's nice -@ErrataRob the overall story started in Glory in the Thunder began to take shape about six years ago -@ErrataRob it's a tricky question. I've been trying to finish ANY of my stories since 13 -@ELLIOTTCABLE http://t.co/S0tivgSF5Z -@ELLIOTTCABLE I have a printed and bound 400-page test run of the manuscript in my hands RIGHT NOW. -After rereading again, I think only one scene needs to be completely redone. Then I need my cover art and I can dump my life's work on you! -@michabailey @chronic that doesn't really answer the question. If fingerprints are used then fingerprints are used whether 1 or 2 factor. -@torvos well I said to send a Linux version to @m1sp who may or may not know XD -@torvos exactly. -@m1sp am I being too pessimistic? :p http://t.co/fGPhc4D73T -RT @dildog: @dakami "In case of Emergency False Positive, Revoke Breaking Glass" -RT @arstechnica: University apologizes for censoring crypto prof over anti-NSA post http://t.co/XIOjslwQG4 by @natexanderson -(My issue is that in my notoriously hummmble opinion I should be getting download links for each supported operating system) -Dear kickstarted game: "Choose which platform you want your copy for: Windows/Linux/OSX" No. Bad. -You know you've been RT'd by @chronic when all your replies to a comment about proof in court are suddenly about buying weed :p -@boldComicSans with a PIN it’s pretty plausible that, say, your rebellious kid figured it out -@boldComicSans anything illegal you could do from a phone — pirate a movie, send a death threat, order drugs -@MrToph sorry, closed API, gotta wait for the jailbreak. -@ErrataRob which is of course *totally different* from Afrikaans. -@ErrataRob I *can* spell it, but if I tried, then people could call me out on any grammar errors! So it’s Fake Dutch. -@dangoodin001 aside from “how can it be fooled by experienced criminals” I am worried about legal snares https://t.co/ha4v4xIMFZ -@ErrataRob (you may have noticed that the language the doctor spoke near the end of the draft was actually Dutch As Spelled By Abadidea) -@ErrataRob @thegrugq Utrecht. -@thegrugq @ErrataRob some of us spawned inside the zone though (come to think… I actually didn’t!) -@ErrataRob no, I actually don’t think so. IMO it’s an “obvious” feature which happens to have its uses to them too -@rik_ferguson @ioerror maybe? I don’t think all of those ever made and actually used together will equal the number about to deploy -(I’m thinking as opposed to being able to say “my KID pirated that, sorry, after she watched over my shoulder and stole my PIN”) -@vogon *checks ram* no I think I care at least a little (do not say PAE. Do not say PAE) -Question: if you use fingerprint authentication, and your phone does something illegal, is that considered proof to a court YOU did it -@ioerror I don’t mind fingerprint as *opt-in* behavior but we have a serious lack of precedent I think. Can it be compelled etc -@DrPizza two kinds of Apple customers. One wants Apple and will take what they can afford. The other wants the BEST no mater what. -@Mordicant it’s my burner pin -@lrigknat @asteingruebl yeah but I don’t have the live stream and I’m not certain they said anything either way -@kaepora not really. It just has to be on par with a decent android for kid to convince mom. -@DrPizza well I know who Elvis is. And I have heard of Abbott and Costello. Am I warm? -@garywhitta @DrPizza it does something for me — big shiny beacon of who to avoid. Fake gold, really, REALLY. -RT @peterhoneyman: Here is Johns Hopkins Interim Dean of Engineering Andrew Douglas’s #apology to @matthew_d_green https://t.co/iYlTRslhFS -@i0n1c not mine — I think — but I’m not positive. -@chead it is my opinion that “something you have” is inferior to “something you know” as a single provider of authentication -@chead sure, but that’s not all I’m worried about. -Okay question. Can I have both the fingerprint AND the pin? 1-2-3-4 press home. This would be ideal. -@spacerog they’re insisting it’s on device only (which isn’t proof, but it’s stronger than NOT insisting that) -RT @matthew_d_green: I just received a very kind formal apology from the Interim Dean of JHU Whiting School of Engineering. -RT @tapbot_paul: What are the 5th amendment ramifications of fingerprint passwords? Can you be forced to touch id unlock? -Oh hey email preview crash in Outlook possible RCE http://t.co/rswuWrDxaq -@chort0 @i0n1c if it doesn’t I bet it will soon @bSr43 -@chriseng but then my witty sarcasm would have missed the window of opportunity -@kovnsk how many multi gigabyte files do I even have on a 16GB SSD :< -On the other hand I could probably be quite happy with 4GB RAM on an iPad as having just the one is its main problem. -If I am going to have a 64-bit phone it had BETTER come with > 4GB ram I can’t actually think of a use for -@zenalbatross be a little fair, there are political beat reporters and tech beat reporters. One doesn’t go to phone shows -RT @DanAmira: This is the most hilarious, passive-aggressive lunch date I've ever seen http://t.co/XYeW8wKVdV -@b_cran it’s red, but it looks kinda pink in one of the photos, due to the projector I guess -@F706L3665 the target market is children and teens, so, nothing -No pink or orange Plastic iPhone? No sale. It’s almost like I wasn’t even their target market :( -@itsdapoleece it’s the same board as the mini, really -My faith in liveblogging journalism is shattered! http://t.co/DUpbsyKlJt -@tapbot_paul well maybe Facebook shouldn’t have gotten all uppity and shipped its own phone ! -RT @macusermagazine: “Porn” blocking? EE’s compulsory default mobile content filter is blacklisting http://t.co/oEPiXvT7pf: consumer info o… -RT @Viss: guize, srsly. guize, stahp. http://t.co/iZmvrRILRV -Whatever you do, don’t say anything important you actually want people to read for the next *checks Apple iPhone* three hours or so -RT @jeremiahg: Many who use ad blocking software aren't necessarily anti-advertising, but more pro security and privacy. Web-based ads are … -@DrPizza but but World peace :( -RT @matthewbaldwin: My local community center was built with the Diablo level editor. http://t.co/R2rEkX6Sxq -New coworker seems charmed by how freely we discuss doing illegal things at Defcon. By which I mean he’s convinced I’m a hardened criminal! -@MrXors Defcon -Oh my gods my coworkers are making me watch the video help -RT @MicroSFF: "Maybe," I wrote, "internet's been self-aware for years, but doesn't dare tell us because we'd freak out?" Post. - Fail Paste… -If you don’t get it then either don’t worry about it (wise) or get aboard the meme boat (what does the fox say) -This is my husband’s idea of absolutely hilarious twitter gold. I think he shouldn’t quit his day job https://t.co/CvSHWqG0aQ -What is the appropriate reaction to hearing an abusive parent is pregnant again? Can I throw something into the sun -@nasko gods. I don’t even know. Just google NSA. -RT @JLLLOW: New Snowden Documents Show NSA Deemed Google Networks a "Target" | good summary v @rj_gallagher on industrial spying http://t.c… -RT @matthew_d_green: A last note on the NSA and why I think this is worth blogging about: http://t.co/2sZS8C9Klk -RT @jzaddach: MIPS linux routers apparently use a dummy get_cycles() implementation that weakens randomness ... https://t.co/BE2bzNoCtL -@bbfreak I prefer the e4000 -@bbfreak I have those too. They are generic, go steal some from your grandparents’ TV -@WesleyFlake yes. And it’s not “because” of any one neatly identifiable cause one can blame. -@bbfreak I used the one that came in the box -RT @Popehat: I #standwithpax because it's mean and hurtful to criticize him when he talks about how oversensitive women are. -RT @csoghoian: Can a tech-focused, in-depth news site please partner with @ggreenwald? The security community shouldn't have to beg for scr… -@m1sp LOL I knew if I reread enough times I would find another slip up on the “thou” thing. Gotcha! -@noirinp @jerenkrantz @timbray I’d expect the tone of sales sexism to be very different: ie demanding workers look “prettier”. This so? -@vogon it’s at least the same core compiler right -@vogon oh my gods. -@vogon jay-z it must be windows itself -@grey_area @wilkieii @lindseybieda @hypatiadotca @noirinp sort of. It still really helps if you’re looking for your first Real Job -@vogon I’m way more concerned about that handle count wat r u doin -@vogon and that is something a man can take pride in -@noirinp @hypatiadotca which is? The priest industry? -RT @alex_gaynor: https://t.co/MvU1namULX :( -RT @maira: "This painting is not available in your country." // new artwork for the @EFF office. http://t.co/ewGjnqOHil -@DrPizza BTW I noticed you had too much America and left. What was the final straw? -I mean 90% of you are guys in the opinion of Twitter Analytics, not that 90% of you are cool. Wonder how accurate it is actually -@demize95 I have no idea what your gender is because the cute anime avatar set seems to be about 40/40/20 m/f/n -Times like this I gotta remember: most of you, my 90% male followers, are actually pretty cool (that is Twitter Analytics’ actual figure) -@vogon no. I’ve seen twitter tonight. You’re really not. -@paxdickinson @frkbmb block me harder -@paxdickinson @kivikakk I’m so glad our internet had so many shining examples of good, compassionate, and wise human beings -@eevee I continue to be fascinated by how the php team consistently lives up to my expectations of being the worst possible open source team -@eevee it seems to be “aside from all the points it raised, I didn’t like it” and then writes a similar article -@kivikakk ever just wanna retweet something out of context -# 377199077894938624 -EMET is a godsend for anyone who can actually figure out how to use it. For the rest of us, enjoy your DLL-induced tears -@a_z_e_t @dangoodin001 imagine the low-level mole cracking the senior engineer’s new keys on their shared development shell server -@a_z_e_t @dangoodin001 all in all shared non-virtualized servers in a school, corp, gov etc would be an easier playing field for this -@a_z_e_t @dangoodin001 and sooner or later you’d probably get a slot on the right box when someone spins down a VM. but of luck though. -@a_z_e_t @dangoodin001 if you are an APT, and have an oracle for if it’s the right box, you could just buy in a loop -@a_z_e_t @dangoodin001 why not just… buy one -@4Dgifts @gsuberland no, my advice is DROPBOX needs to FIX it and end users shouldn’t ever need to hear or care -@0x90NOP @dangoodin001 @a_z_e_t well that’s good though I doubt the patch penetration has been high so far -@4Dgifts @gsuberland hey you know what ISN’T advice you can give to the average home and small business user? “Use EMET” -@demize95 @gsuberland having any amount of no ASLR in a process is bad and it’s getting into Firefox -@dangoodin001 if the summary is accurate that’s very bad for users of virtualized shared hosting -Dropbox DLL has no ASLR and injects all over the place http://t.co/LIwaRlGtQk by @gsuberland -RT @dangoodin001: Cryptographers: how practical is this side channel attack for extracting GPG keys? Should users be concerned? http://t.co… -@chriseng @ErrataRob we know that, whoever panicked about Dr. Green’s post apparently did not. -@eevee I think we need some sort of “Client side. Server side. What you need to know” public health brochure -@DrPizza I’ve got some unopened floppies I can sell you… -RT @pusscat: @donicer but if you ignore that you're offensive when really you have all the privilege in the world the word we use for you i… -@kaepora doesn’t it repeatedly say it was done without cooperation? Unless you mean the bit where it’s “not for them” to comment -RT @mattytalks: It's pretty weird that a guy who would murder a teenager might also threaten his wife. I guess you really never know someone -@ra6bit @matthew_d_green no. Only in the context of merchandise or implying endorsement or relation. -However SOMEONE is doing a good job swinging that law around to make people hesitant to use this logo in any context http://t.co/YGFcFvjjYL -@lorenzoFB yes. But there IS a law covering that logo specifically. -Or for commercial gain. Obviously. -I honestly don’t see how @matthew_d_green’s post could be construed to be breaking the law of using the NSA logo to imply endorsement -@matthew_d_green common sense, academic freedom, and young firebrands are on your side :) -Check @matthew_d_green timeline of about an hour before this tweet, I shouldn't retweet all that. -We built this city on best-effort transport mechanisms which presume participating nodes to be voluntarily cooperative -RT @tyndyll: First they came for the Linux users, and I didn't speak, because I couldn't get my audio drivers to work with 3.0.46 #nsa -@_larry0 no, some cloud providers etc. -.@ezchili Twitter Mobile thinks it’s okay to turn back on settings you have turned off during updates. -@bmirvine ^_^ -@kevinlange do you mind if I call them out of this without your name (if someone tracks my tweets backwards they could see this) -@kevinlange @Pebble oh geez I didn’t even notice that. Wow. Not cool. -Or maybe someone was trying to make sure all us paranoid nutters save a copy ;) -RT @brynosaurus: Phil Rogaway: "I herein condemn and assert my repugnance of the USA’s mass-surveillance programs". http://t.co/XiKjvZd6Ww -I don’t want to have a country where a university is scared to host this article by their own professor http://t.co/ph8L94Kife -@thegrugq also it sounds like the dean *was* put up to it -@thegrugq I did in my head but I am too busy raging already -RT @matthew_d_green: The post is still up on Blogger, but a local University mirror of my blog was shut down. And no, this isn't my Dean's … -RT @thegrugq: @matthew_d_green so who put him up to it? -Rehost the planet RT @matthew_d_green request from my Dean asking me to remove all copies of my NSA blog post from University servers -@adamcaudill exactly. But this is like the third time. Whoever makes these initial decisions needs a good talk -@matthew_d_green the HELL. -RT @matthew_d_green: I received a request from my Dean this morning asking me to remove all copies of my NSA blog post from University serv… -Guess whose husband won’t read my manuscript? He’ll only look over my shoulder and start reading a battle scene in a porn voice -@thegrugq @i0n1c neither of my Macs has a drive slot now. But the 2010 model, and the 2006, and the ones at school…, -@i0n1c every Mac I have ever used had the drive mechanism fail in under a year. :| -Microsoft sure has gotten into the habit of obviously unpopular announcement — sudden complete backtrack http://t.co/Eowp2QLfW5 -RT @m1sp: I made a Skyrim mod! Papyrus is a surprisingly nice language once you get past the editor UX. http://t.co/nWeql8gdJu -@bl4sty right, it represents millennia of abuse from our cartoon oppressors. I’ve got cel-shaded privilege -@RenaKunisaki did you just trick me into establishing a homestuck 2uirk? :| -@RenaKunisaki I’m 2uite positive -@bl4sty thank you for using sexualized language to dismiss concerns of sexualized culture, you are helping -When your font (IM Fell Great Primer) has a Q this awesome you start looking for ex-Q-ses http://t.co/WbfO8xCmRf -@_r04ch_ https://t.co/1LrFqPxmXu should work -RT @mattst0rey: They also appear to have tried to bypass the boot/disk encryption with several password guesses.. -RT @mattst0rey: So it appears the USA TSA has opened my case from my recent trip, booted my laptop, and then left it running for x number h… -@janiczek it is an old fashioned printing press font so yes. The descenders are not very adventurous -@qole @chead @vogon error: you have died of dysentery -@ReinH gay teenagers causing political and religious problems on a magical version of the Silk Road. -@ReinH my novel -@RSWestmoreland not yet! I am still editing it ;( -@FrederickGeek8 I have a few. You can plug in generic bunny ears from Radio Shack if you get a PAL female adapter. -@The1TrueSean when have I seen you stone cold sober? -@The1TrueSean that explains why you haven’t died of shame yes -@vogon you cannot judge me -Disliking programmers is prejudice against a protected class() -@m1sp I’m pretty sure you reread the whole thing again so be more brutally honest -@ErrataRob because I’m a programmer?! Sir that is prejudice against a protected class() extending engineer -@thegrugq @ra6bit @HackerHuntress Korean. -@The1TrueSean effect*, sheriff -My beta readers are all fired for not telling me I used the same adjective twice in one paragraph like an unlettered serf -@paradroid001 it will be self published soon <3 with no DRM option for ebook -@paradroid001 I finished my first novel (sans final editing) -@thegrugq @chriseng retweeted, be precise. -@chriseng @thegrugq FYI I’m totally not posting bail if you call me after the cops decided you were having too much fun at the playground -RT @chead: @vogon @0xabad1dea thanks dad http://t.co/fqnRKHOm49 -@The1TrueSean precisely -@chriseng @thegrugq where did you source your tempestuous teacup filter -@The1TrueSean Your Grace* -@chead @vogon don’t copy that floppy. Keep that floppy floppy -@The1TrueSean breathe*, Mr. President -@passetc @vogon ask the year 1995. https://t.co/ee69ssKhoe -@patrickwonders IM Fell Great Primer -@aeleruil CHARGE YOUR PHONE -@kaepora I have read it multiple times and trust me: read this version. http://t.co/bRgY58Tmnv -@Kufat o/ -RT @vogon: @0xabad1dea screenshot: http://t.co/eBagrrJCwA -@vogon you -RT @vogon: @0xabad1dea "you are about to embark on an adventure", the chrome extension (intercepts the new tab page): https://t.co/0yRSA0Ee… -@nickm_tor check out its sister poem Alte Clamat Epicurus :) -@thegrugq don’t make us revoke your smartphone privileges, old man -@donicer nah that’s what I am to *everyone* -Uh oh. @thegrugq has finally learned how to use emoji 😐 -@donicer no actually I have no idea who did it. And I care because it’s yet another reminder of what *I* am to some people. -@washiiko it is an adventure on a vaguely steampunk version of the Silk Road -@washiiko hmm come to think I guess I haven’t seen you on twitter recently! So I guess you missed all my excitement of finishing -RT @rockets: lol did the people behind titstare buy a bunch of tweets or something http://t.co/EsnS3p2iLA -# 376855971005739008 -@washiiko yes -Aw yeah got a test printout of my book. http://t.co/GJXPVcslxG -@VackerSimon roughly 110 MHz -@m1sp An effective disguise! http://t.co/iE0ffJQ8lZ is this just all a plot to get characters in outfits -@thegrugq I'm imagining you're at a terminal and can't actually see it render. In which case you owe me for not pasting the bomb emoji -@thegrugq ⬇ -@thegrugq ➡ -RT @vogon: @0xabad1dea whenever I connect to the internet I want a dlg to pop up saying "you are about to embark on an adventure that spans… -@thegrugq yep. It's brown -@AwfulHorse me either. A lot of floppies apparently -@hdmoore \o/ I am seeding chaos -OS/2 Warp comes with a doozy of a disclaimer http://t.co/nihMKnuyGe -Mission success! I have taken their innovative products http://t.co/u2931X6tp9 -@aantonop yes -@zedshaw do you have flash on? Flash took a sudden performance nosedive recently wrt freezeups and stuff -Reporting back: IBM is as boring as I thought, and they have a road called Innovation Way. -@thezeist I don’t even need to click that. Yes, yes it is :( -@hellNbak_ ie go drive for sport if you want but please please please let the robots solve needless mass casualties :( -@hellNbak_ I don’t understand why the heck anyone thinks human beings manually steering huge machines going fast is not the apex of dumb -@a_greenberg aw man don’t phone up IBM security and blow my cover -RT @a_greenberg: @0xabad1dea I have a feeling this tweet is bad opsec -I’m infiltrating IBM headquarters! Why? Meh, who needs a reason, spycraft is fun -@sergeybratus http://t.co/L6W6mwhy4d -Der Spiegel says they will have a full length article tomorrow… I’m hoping they’ll be more direct than the others and just go for it. -RT @matthew_d_green: .@F706L3665 @pbarreto The first step is to tear apart every standard we don't have a proof for, and decide if we can j… -@bbfreak nope. On OSX I use GQRX -@bbfreak heheh all of them. On stage? That was an Acer W700 tablet running Windows 8. Usually? A MacBook Air -RT @dildog: You can get rich and famous and important, but you'll always eventually be reduced to cleaning malware off the in-law's compute… -@pwpslade @codeferret_ I am cuddling with a cat RIGHT NOW -@dan_crowley @jack_daniel nah need some baby powder for color -I am convinced I literally *need* a cat, for mental health reasons. Tell @codeferret_ -RT @_snagg: A formally verified browser, I'd be curious to see how it fares in real life: http://t.co/N5q6mTdXWX -@maxtch that’s kind of a vague question! TrueCrypt is better suited to protecting large amounts of files in a practical fashion -On the redacted trickle of NSA docs RT @marshray This is like having parents who only let you eat one piece of Halloween candy each day -RT @trevortimm: New Snowden docs show NSA can access user data from all major cell phones—including iPhone, BlackBerry, and Android http://… -RT @zarawesome: architect of death-ray building blames sun for being too hot and in the wrong place http://t.co/V1pBjhVAsX -@elcuco2 um, no, it’s not a bad analogy at all. Stay far away from me. -@JackLScanlan get better flies -RT @WeldPond: John Gilmore speculation on "BULLRUN" and standards committees he was on. http://t.co/nV1Rs4savG” -Also being walked in on while taking an iPad selfie of a fake beard is ranking pretty high on awkward moments -Really though my intent is to join @travisgoodspeed and @moxie as being recognizable by hair alone. The Poof of Tangly Doom. -I have been informed to make heavier use of rubber bands when appearing in fleshly form. Is this how this works http://t.co/WaTnc2pR1Z -RT @MGS_Quiet: Mr Kojima explained to me that trousers on women just isn't possible with current gen hardware but said it may be possible f… -@DynamicWebPaige the most productive times of my life are Saturday nights. -@The1TrueSean @codeferret_ you take care of him or I will have your head from your neck -@0xcharlie someone has already reversed it iirc. The save files are in the figures -RT @csoghoian: "I'm glad the media didn't name the specific technologies and algorithms that NSA has broken or backdoored" - said no securi… -@ChaosDatumz make sure to test before you rely on one ! It took a lot more tinfoil than I had supposed to kill 3G on my phone -@ChaosDatumz if your grocery store has those big ol’ foil bags they might work (mine doesn’t seem to stock any) -RT @BrendanAdkins: Now go ahead. Tell me again why women on the Internet need thicker skin. -RT @BrendanAdkins: I haven’t seen a single negative tweet or email. No threats, no hate, not even an attempt to argue. Not one. -RT @BrendanAdkins: So @twoscooters and I were both widely cited for being upset with Penny Arcade. She’s since received thousands of rape a… -@i0n1c @thegrugq well that explains what happened to me! -@ChaosDatumz if you mean brand, not particularly, but don’t pay a lot of money for one. -@0xmchow @TheDukeZip maybe they’re going alphabetically by handle? I always win that one ;) -@kernel_pan1c sure, link shouldn’t change :) -@thegrugq oh... No, I'm worried about the sorts of comments no one would ever make about you ;) -If someone posts one of "those" comments to YouTube do me a huge favor and DON'T tell me :( -# 376436686357811200 -@blaufish_ if you see me with a waterfall display and you don't stop me it's your own dang fault ;) -So when do I get my check from the SDR manufacturers' lobby -@blaufish_ my voice goes multiple octaves higher depending on social context -@wimremes @sergeybratus I follow like six trillion of them which I am pretty sure is all of them -RT @TweetsofOld: The typing record is ninety-seven words per minute. Now if only a typewriter could be educated to spell correctly. MI1888 -@kaepora has improved 400% for people with brand new high-end phones* -This is the kind of unnecessary bitterness towards simple joy I can get behind http://t.co/9iEythgi7C -Apparently my talk is up, I can’t bear to watch it and kick myself over every tiny stutter and awkward turn of phrase http://t.co/InMaDihQPG -Wait if every Australian on twitter is unhappy then who exactly voted for whoever won -@McCarron @jjarmoc finally! But you do know about http://t.co/TulNC6sC9O right ;) -@m1sp it’s not necessarily a bad thing it’s just… well clearly something in my head is installed at a different angle -@kernel_pan1c this should work https://t.co/1LrFqPxmXu -@m1sp the part about being… disconnected. -@m1sp doesn’t it. But I mean looking at how I actually described her thought process that’s uh kinda too much like me -I probably shouldn’t psychoanalyze myself but apparently my brain is some kind of alien artifact almost but not quite compatible -@m1sp also, no context, I realized I am actually exactly like Erasmin -@m1sp hmm so he does ! He is _emphatic_ Mispy -@m1sp oh gods what did I do -@Wrathematician @m1sp therefore you must -@geekable @Packetknife https://t.co/AstyHuIgOj -@Jennimason0990 @chead yeah no sorry it’s probably actually true :( -I’m pretty sure our stuff flags 1024-bit keys as a flaw - and we find them often… http://t.co/vTvgMSbJSp -(So I’m expecting the next doc to be about time traveling aliens, obviously) -Incidentally everything said about the NSA recently I have heard before but I also heard about aliens and time travel. So… -In this RT: I advocate slightly less violence than @Packetknife or at least my PR people say I do -RT @Packetknife: Next time someone says "We already knew that" about a NSA revelation - throatpunch & waterboard them until they tell you W… -@mdowd but @spacerog totally took a wrong turn and ended up at their office once -@JackLScanlan what’d ya do Jack -@yolocrypto yolo my brolo -@m1sp it's hard to take pictures on a train http://t.co/VuQfzkemDH -# 376122134277664768 -Native New Yorkers can smell your fear, I am certain of it -@justintroutman @marshray @matthew_d_green oh are we playing thread necromancer ;) -@ameaijou a weak one, for I am already on an outbound train -A policewoman flagged down our bus from the sidewalk... to high five the driver and leave -@m1sp and that means NO scarves, NO boots, and for gods sakes NO SWORDS! -@m1sp lol way too skinny! Rather trying to leave the country without Fluens hearing about it -@m1sp btw I drew Ismyrn in a dress and she hates me now. It’s plot relevant too! -@m1sp I got on a bus with some weirdo named @kufat -I wasn’t paying attention for a few hours and now I’m in New York City. Yuck. -@ErrataRob @sambowne @0xcharlie COMCAST DOWN CONTINENTALLY - SEND COMPLAINTS TO ROBERT GRAHAM -@thegrugq @0xcharlie St. Louis, MinnesOta, it’s code -@alex_gaynor @glyph my favorite kind of programmer To murder -@blowdart @0xcharlie it’s okay. I already know he lives in Minnesota, so ISP choices are limited -@0xcharlie Comcast? Seen a few say so now I think -@Packetknife and some of us are in love with them as a concept -RT @hdmoore: GitHub has no confidence in my ability to code: "Great repository names are short and memorable. Need inspiration? How about g… -@ezchili it could be the refresh rate. Or maybe the colors are leaning too blue and it wakes you up too much -@marshray @ioerror it’s true. A huge number of these workers would live in Prince William County; I did -@ioerror IMO it’s not “the NSA” but a problem inherent to gov using the net as we know it, preaching to the choir but http://t.co/ROwiraCKeQ -RT @DeusJes: Why can't a spambot ever be like "Hey, keep up the great work! You are awesome and appreciated!"? -Wow this description of php-internals is pretty much exactly what I assumed just from looking at the product. http://t.co/wmoPG0IRPh -@marshray @ErrataRob the heck did you do -@LiangNuren I haven’t, but viruses are often given very arbitrary names by whoever finds it first, if they don’t come with a clear name -@Viss wow it’s not dead yet? -@LiangNuren yeah -@FinalBullet I sent you an email from on a bus and I’m not 100% sure it went through -@ShadowTodd neither holy nor roman, bro -RT @julianor: Thomas Pornin did it again! http://t.co/6gxzXjN15T how to backdoor /etc/ssh/moduli -@kaepora yes, because 10 years ago it would have been SVN ;) -@mattblaze let’s all use SEED algorithm. I trust South Korea! -RT @RandomStep: @0xabad1dea better: you don't get to set up cameras outside them and record everything for future reference. -@mattblaze my instinct is implementation. That’s what would make it so fragile. -@thegza10304 @llaurs grats! -@SteveD3 I’m on a bus but you can send melissa . b . elliott at gmail if you want -I am so sick of the “ohh you use the internet so you have no right to privacy” argument. Yeah my house has windows but you shouldn’t look in -@thegrugq so either my young memories are corrupt or the tiers of the overpass used to go higher -@thegrugq actually I do remember the old system in exactly one way: looking DOWN on the sand and gravel mixer -@thegrugq "finished" sure sure... -A fear I just found out I had: an elevator with a mechanical bell #rickety -Times Android Maps has crashed while navigating Boston: all of them -Sometimes I feel like I am drowning beneath the weight of all the problems I know about but can't actually solve -@thegrugq @chriseng um yeah that was my point -@thegrugq @chriseng but really- who can deny that IF standards and codebases were deliberately flawed- others can exploit them too? -@thegrugq @chriseng he's only my boss when it's convenient -@thegrugq but that doesn't really absolve my heart of the burden of "ugh, everything is terrible and it's too complicated to explain" -@thegrugq I did go out of my way to say "this will protect you from laptop thieves and snooping housemates, but not necessarily governments" -@chriseng your mission, should you choose to accept it, is to not make the rooting out and repression of dissenting thought even easier -@jesster_king right, let me tell all the readers of Wired to roll their own damn crypto algorithms and shoot and hang themselves too. -It's really hard to write an advice column for how to encrypt your files when your subconscious is screaming "WHAT IF IT'S BACKDOORED" -RT @mattblaze: If Snowden wasn't read in to BULLRUN but had access to docs, that suggests even more serious weaknesses in NSA security. -@homakov that uh, is a bit awkward, yes. -@WeldPond well that’s kind of it, isn’t it? They’d have to be daft to not build in an excuse. -I swear, some problems with text just cannot be seen until after they are published on a blog. *tweak* -@Packetknife But if you are wondering where the older characters find their endless wells of philosophical outrage -- well -- here it is. -@Packetknife incidentally I have a growing discontent with the last few chapters, they need work, but the basic structure will not change. -@Packetknife I am a character in a novel with a convoluted plot, and I do not yet know the ending. I hope it isn't the sort that I write. -Finally gathered the greater part of my thoughts together: Anger Against Surveillance. http://t.co/v2zLlQVQbk -@_____C it’s Schneier; his audience is the people in the government as much as it is people like me. -RT @thegrugq: Terrible typography in these declassified docs. Can't NSA hire some designers to fix this? http://t.co/iPqSfHRjJK -RT @Webwereld: #Android #Kitkat maakt heel wat los bij kleine kinderen. https://t.co/CJqm172vrH #comic #strip -@ZadowSapherelis @m1sp yay! -@kivikakk oh my goodness well please mind the last few chapters need some editing still! -@chort0 well, no, I do not think he is sane, but that is a different problem from if he has some good points ;) -RT @matthew_d_green: New blog: My (tiny) brush with the biggest crypto story of the year. And lots of random speculation. http://t.co/BDVKo… -@m1sp <3 I need the artwork afore I can fiddle ~ -@matthew_d_green I’m not under the impression Silent Circle has anywhere enough traffic to be Major. -@chriseng @grey_area I’m saying, idiocy and ignorance are NP-hard, but among people who write standards MD5 is in fact pretty deprecated -@chriseng @grey_area you could literally put out a presidential emergency notice to stop using an algo and SOMEONE will still ship -@grey_area @chriseng everybody who’s actually qualified to be making these decisions at least -@chriseng yes actually -@SecurePessimist if you're serious I am very honored!, but I do not think I am in a position to be going to California right now? :( -I stop and reevaluate the four paragraphs I have just written into a tumblr text editor. My gods, I am self-righteous. Oh well. It's tumblr! -@r3d4ct3d it is going to be a Thing! I need to substantially edit the last few chapters and get some artwork I commissioned. -@demize95 ahhhhh two t's ttwo tt's ;-; -Hipster Best Friend had a printout of my manuscript even before I did... https://t.co/Rhq2NgW3vT -@m1sp is that a metric Joltik or imperial -@m1sp OH MY GODS YOU GOT YOURS FIRST turn it on the side so I can see how thick it iiiiiiiis -Time to tap into the source of my power and transmute anger and frustration into tumblr posts that get like seventeen whole likes -RT @drainmice: Well, we are Mozilla, so I figured this needed to be made consistent with Firefox UX http://t.co/1W04Crm7IW -@ELLIOTTCABLE none of that genderized language ! -@m1sp oh no you’re encouraging me ;( -@ELLIOTTCABLE @m1sp this is true blue friend zone love, I think. -@m1sp I want to topple the oppressor or something but really that just means write an angry blog post -@m1sp I need a hug -RT @zenalbatross: "Complete enabling for [redacted] encryption chips used in Virtual Private Networks and Web encryption devices." http://t… -@marshray @matthew_d_green is there some sort of super hero team of cryptographers I can be a junior member of -@alex_gaynor @eevee personally I don’t get it. Like is this a wedding? Speak up in 1993 against NSA or forever hold your peace? -@alex_gaynor @eevee this is an extremely common trend among people who… worked in/for government. “Well duh!” -“The NSA’s actions are legitimizing the internet abuses by China, Russia, Iran and others.” Damn right. -@Atheist_Dan02 @0x17h gods damnit 17! Stop trolling innocent atheists -RT @osxreverser: With all these capabilities why did they took so long to find out that general cheating his wife? ;-) -# 375764140914405376 -@ShadowTodd I’m… pretty sure he actually has a pretty big fandom among young ladies. -@flamsmark @puellavulnerata I would say yes because they *interact* and the whole story is their relationship whether or not there are words -RT @DrPizza: If algorithms and implementations that people actually use are insecure then that information should be published. -@Tomi_Tapio first caller: woman says: “farms” -@Tomi_Tapio question: “There were once over a hundred of these in America. Now there are four. What are they?”: -@Tomi_Tapio that reminds me of the most “American” thing I ever heard spoken, on a local radio show — -RT @thegrugq: "Five weird tips to NSA proof your life - the SIGINT community hates them!" -@bistromath I basically heard it when I was like twelve -@Jennimason0990 that’s the question ! :( dumb meanie NSA -Yes we were all already speculating SSL was broken since forever but with a little more oomph this time -Wait so I turn my back for a few hours and suddenly everyone is speculating SSL is broken? GDI -RT @thegrugq: “@matthew_d_green: Still feel confident in OpenSSL?” < has anyone ever felt confident in OpenSSL? -@SteveD3 I’m not even sure what happened I was working on something and what -I figured out how laptop manufacturers will stay in business: it is easier to buy family members a new one than deal with them… -RT @Viss: http://t.co/frxO4hp5Qv .. holy shit! Can.. can i.. take.. some credit for that? I'd love to be able to say I made a difference. #… -@vogon NO, *VOGON*, I am being quite literal -@vogon you are such a disproportionately heavy favoriter that you pretty much have direct control of my Discover tab -@m1sp btw I uploaded all my newer source material photos into my old gallery http://t.co/IE65PmvMDr now with like 900% more birds -@m1sp http://t.co/uTxkoIUgiH ^_^ -@donicer I just think, if it were being used for intelligence, they've already screwed up and it will be too noticeable when it's active -@donicer but they're noticeably not-particularly-active. They should all be hitting up random popular websites or something -@m1sp well how else am I supposed to brutally mock their points without mercy if I didn't take the time to read carefully first -@misuzulive why am I even bothering to be surprised -@thegrugq conveniently, there is both a bank and a liquor store across the street -@SurprisingEdge it boils down to getting the meaning of some booleans in setting cookie options wrong. -I just distinctly heard someone outside my house say “remind me to rob a bank later.” Hear something say something on twitter! -Yes I know I retweeted cwgabriel but I’m a “at least hear their side” type generally -RT @cwgabriel: Been working on this post for a couple days: http://t.co/u5uMwyKKLN -@misuzulive is that Fan art of your car -@donicer it’s a little too obvious for that I think. You don’t need hundreds of thousands of noticeable nodes… -@name_too_long I don't! But no-one is going to try. -Reasons I don't get to be customer-facing, episode 317: urge to glue the documentation (of THEIR code) they didn't read to their faces -Today I resent: poorly-named Java library functions confusing programmers into thinking they did the security thing right. They didn't. -I'm glad @gmail decides to non-deterministically load or not load the tracking number widget in the exact same email #UIRage -@Kim_Bruning @blazingcrimson honestly it doesn't surprise me when people block me because I can accidentally bring too many people in -@Kim_Bruning @blazingcrimson could be for anything, we're not exactly ideologically aligned -@Kim_Bruning @blazingcrimson if you mean 20Committee, he blocked me and that just makes everything on twitter awkward -@jemgillam wow at least I'm not allergic to that. To some other weird random stuff, but not latex :( -@thijs one that is such a thin font it all but vanishes at twitter avatar size. And is beveled serif. Like it's a gorram bank. -Paypal sent me an email titled "Congratulations!" and doesn't really say what I'm being congratulated for. Am I the new CEO of something? -@jemgillam the guild of people who do not react as intended to having their messed-up organs messed up in the other direction! -@StrThry I have extremely long ones. So yes, probably. -@jemgillam now imagine that you were given contraceptives for having excessive periods... and it turns out you're allergic -@iiadamogrady oh yeah I know and I often exploit this >:) -Guys who like to say "it must be her period": you have a 1/4 chance of being incidentally right. And a 4/4 chance of being incredibly rude. -@blazingcrimson which I interpret as a symptom of having worked with a focus on Russia and developed tunnel vision… -@blazingcrimson he seems smart and knowledgable but he comes across as having decided that Russia is the root of all schemes in the world -@blazingcrimson Mr. 20 Committee is tenured at the navy school or something I guess -@blazingcrimson forgive me, I mean the people who are aggressively blogging about being Former NSA -I guess I can’t distinguish between “Former NSA Guy knows something” and “Former NSA Guy been doing this too long, all roads lead to Russia” -@mattblaze I got one, Gail! They be payin’ top dollar for fresh cryptographers down at the NSA! -Oh my gods it’s beveled? Someone just got Photoshop. Okay, that was my one allotted tweet on the subject. -@Hackintech_ well that’s a good reason to spy on us isn’t it ? :p -@Hackintech_ well wait until you are not in class! But it’s just a Former NSA Agent who sees all roads to Russia -I’m also confused by people who think the simplest explanation for a known journalist publishing leaks is they already worked for Russia -@Hackintech_ this guy has blocked me but it’s just as well he’s homophobic and stuff http://t.co/rU4XmTW4V5 -It troubles me that the “former NSA” types consider “selling secrets to Russia for cash” and “leaking to press” to be the same thing -@justinwolfers @DynamicWebPaige ofc not all schools actually have economics and home economics (not that I’d rank them high anyway) -The tor botnet http://t.co/hnkfamAbrs -@DynamicWebPaige if anyone ever dares ask me to wear heels to anything, my condition is all men in attendance must as well :) -@stavvers @kivikakk I have literally never seen a man punch another man in the mouth in my life. Maybe this person just has abusive friends! -@thegrugq @wimremes you are really really gross -@thegrugq they are CLENCHED -@amanicdroid (the boy in the picture I drew earlier - I don't like him, and he dies horribly for it, MUAHAHAHA-- haaa.... I'm sane) -@amanicdroid heheh. I get to brutally murder my own characters one by one -http://t.co/2suymWAX9N is the first story I have ever read where I hope the supporting characters murder the main character and take over -I’d ask if this is to imply that Nokia phones DON’T break in half with sufficient force, but you know, actually… https://t.co/82UEEEwrIt -Make fun of ME for not drawing hands will you well look that's totally a hand what now huh http://t.co/fsGa2QP2ph -@vogon okay I’m putting you down as “would settle” -@vogon I need to know for score keeping purposes -@vogon you didn’t answer my implicit question -@vogon clearly we are long lost siblings. Hope you weren’t secretly pining for me -@vogon also it doesn’t happen until I *stop* stimulating it by removing the q-tip -RT @vogon: @0xabad1dea incidentally, the reason why: http://t.co/y9mapWwo8Z -@vogon I demand funding for a study -Weird true facts: I can make myself cough on demand by using a q-tip on my right, and only my right, ear. -@vogon if your target market is other startup founders, you’re gonna have a bad time -@vogon why on earth would they think anyone would recognize and care about their VCs -@_redwire from an engineering requirements perspective. There’s more to deploying it than just getting the math right -@_redwire yes, technical texts will stick a lot better the second time around -@_redwire rereading, technically, though it's probably been seven years at this point. Found it lying around -@Ionustron I draw hands! Hundreds of hands. They're just not very good yet unless I am drawing jumbo man-hands -@_redwire yes I know it's just literally the only thing associated with him in my mind :p I am guessing you mean the puffy hat and stuff -@_redwire you mean they both look like 10yo girls? >.> -.@bhelyer HIS FISTS ARE CLENCHED I can't draw hands -Characters! Art art art. http://t.co/0q5HWdFBB9 -@bascule @kaepora lol. This new avatar reminds me that one of the characters I designed for my second novel looks weirdly like kaepora -@kaepora why doesn’t your avatar have glasses -RT @jenheddle: This Amazing Stories editorial boils down to "Girls are icky." http://t.co/5HASpTB53X -@nickm_tor A: they complain about top posts Q: how do you know someone is old? -@jenheddle @Xaosopher wow this is literally “how dare someone write science fiction that appeals to women” -RT @mfeathers: School is a prison and it is damaging our kids http://t.co/Dm3nRLoYKD -@GetYarny ooh ooh me. Just finished my novel about gay boys and girls from a fictionalized Silk Road… -@matthew_d_green I thought we already agreed he was Dogbert -@0xcharlie feel free to share these thoughts with me -RT @Packetknife: "Sorry I Thought I Could Leave When You Said “You Are Not Being Detained”" http://t.co/kYDqBmxkqF -@matthew_d_green not when someone figures out that if ten thousand people with huge passwords log in at the same time the ram thrashes -@ameaijou I don’t like those either. The list of things I do like is a bit different -@thegrugq @pusscat source: some very traumatized American teens who saw a woman shot in a bar fight. -@thegrugq @pusscat my understanding of Mexico City is that they won’t even accept a report of murder if it’s a busy day. -@ameaijou I do not enjoy burning myself -# 375407883703574528 -If any of you wonder why I’m not into hardware hacking see exhibit A: everything I have ever tweeted about my hands interacting with matter -For only $8 a day you can save a badidea from having to endanger herself by operating a stove or using a knife or anything else oopsie-prone -@vogon I DON’T KNOW it just happened okay -He leaves me to fend for myself for ONE meal and what happens? I scald my toes. -@glyph I don’t know! And they might not have known either. I nominate @marshray to the stand -@marshray yeah. And what is really the point of a few hundreds KB of password being mapped onto a smaller hash anyway :) -@glyph my offhanded guess is it’s defensive against hypothetical information leaks -@vogon I’m kinda disappointed my parents managed to get it fixed -@vogon they put the wrong year on my birth certificate… -@vogon are you the Corruption Whisperer -@m1sp here's to the next two hundred pages of notes http://t.co/9mpdLXv7JM -@eevee fine but your only choice is oatmeal -RT @nicklockwood: @0xabad1dea @vexorian0 [joke about it being possible to hash a longer explanation to fit the character limit but it takin… -Now to figure why Preview.app would seem to crash because its open file was forced out of working set by MD5'ing movies. -@Kufat with *******? wow, weird -@eevee is someone looking for a cookie ;) -@nicklockwood @vexorian0 it's difficult to fit in "All of you think you want literally no upper limit but you are wrong" and still fit why -@DisK0nn3cT and Ferguson -So yeah you can set it to kilobytes and be totally fine but if I can paste a 1080p movie in there we got a problem ;) -You don't actually not want *any* upper limit on user-controlled password length, everyone. Hashing is fixed output but it is not fixed time -@ShaneTheKing and then your backend is DoS'd by kids setting their passwords 8MB long and it has to hash them -@yacCz no, I really doubt it. At that high, it's just a limit so that you can't set rickroll.mp3 as your password... -@ShaneTheKing I think PHP defaults to 2MB or something, my novel is aaaalmost that long. -@ShaneTheKing (and if you want to define it as the maximum size a POST can be without crashing your server, that's fine.) -@ShaneTheKing hahahaha I will paste my novel just to spite you, that's what attackers do. The backend has to reject it at some point. -@ShaneTheKing there has to be a limit SOMEWHERE. And it's usually a heck of a lot lower than 200. -"Your password must be between 8-200 characters in length." Well that's refreshing -@clerian so this will always feel like "elder scrolls lite" to me -@clerian The creative team looks pretty good... I just consider the magic of Elder Scrolls games to be in the private immersion -@clerian yeh -I can't believe I'm checkbox-signing an NDA for a video game. It says not to reveal anything about the game's setting SPOILERS it's Tamriel -RT @marcedwards: Ok, you win. I promise I will never complain about iOS 7 again. http://t.co/sqNtc8O7oY -RT @RSnake: This is what happens when you try to write a funny Blackhat post and it turns into "hrm" https://t.co/zo8wiROg0M -@arstechnica I ended up carrying a battery larger than the entire phone in my purse for peace of mind. -@pisseditguy it works fine except when it doesn't -@julianor wow contradicting the word “random” in the space of one sentence is a pretty good start huh -@Raspberry_Pi gahhh! I’m sorry. -Oh look Twitter Web is down *switches to Mobile Web* “Oops! You will need to generate a temporary password on Twitter to—” (╯°□°)╯︵ ┻━┻ -@irvinHomem Practical Crytography, 2003 -I love my field because it is very optimistic http://t.co/X7Ll7aRdaU -BUG: if Javascript is not enabled, this function may falsely report that the world has not yet been destroyed http://t.co/iVCoAoOe0p -@vogon oh, twitter web still has the blue lines? well then -@thegrugq ahh I was looking at Linux's http://t.co/khDXD0Vc6Y -@thegrugq pretty sure malloc still uses their actual system calls -@thegrugq that's the manual page the quote is from actually. -Is your allocation routine just not comfortable? Are your page tables thrashing? Try malloc(3) with no obligation today! -"The malloc(3) memory allocation package is the portable and comfortable way of allocating memory." This sounds oddly like an advertisement -@sakjur it really really depends on the app. The new Internet Explorer is actually pretty touch friendly, more so than Chrome... -@sakjur he's done it to me too they all do it sorry! -@sakjur in any tablet it will almost certainly be a fixed amount. They are SoCs -@elad3 spare a thought for the peasant with only two cores -Someday I will actually go and find out what is in gettext that makes it take so long to compile and you will never hear from me again -Oh wow Outlook Web is horrible. Oh wow it's so much better than its previous incarnation how did I not stab myself in 2006 -@vogon “We are having a problem with the electrical system and I — hello?” -@_wirepair almost all the good games come out in Japan first deal with it -@FinalBullet work address? hang on... guess who's home sick ;( -At least I'd give it a shot if @TESOnline's beta key redeeming page wasn't down -Hey I got an @TESOnline beta invite. I still think the quiet splendor of the single player games will always be better but I will try it. -@gmail pardon, Promotions tab. -Funny how an offer from Google Wallet doesn't go in the Offers tab, @gmail -@mtheoryx honestly I probably like Kubrick better -Get your VOIP automatically rerouted through higher-capacity links by saying something suspicious! / @_wirepair -Friends don’t let friends deploy default Bootstrap. Don’t let Helvetica Neue face the fate of Times New Roman -@sakjur I chose it because it has 4GB ram. If you don’t care you can probably get a 2GB tablet a bit cheaper. -@sakjur I have Acer iconia w700. Get at least 128GB SSD if you can. Don’t get Acer’s 8” model -RT @eevee: RT priv: Longest piece of literature ever written is allegedly an SSBB fanfic: http://t.co/LSTis9ZI8X 203 chapters. Over 3.5m wo… -@sciencecomic I’m not a comedian but people like to explain my own sarcasm to me -@0x17h they said money didn’t change hands, rather it is a double promotion -@landley it was in the comments on the recent Ars article about “balky carriers” -@Myriachan it seems to be crashing right now but https://t.co/yaI1L1khKu -@0xmchow also, no one eeeever spells my name right ;( -@0xmchow *turns deep red* other people have had such thoughts! My only novelty was demonstrating how to do it for $10 ^_^;; -@ThomasWinwood I’m pretty sure he just has one of those generic bendy-neck lamps with a shade that focuses the light straight down -.@_larry0 I know three different people who set fire to their dorm rooms with those things. AVOID -RT @_larry0: The dangers of lazy desk lamps. http://t.co/TqWgHTWbo7 -@zooko if you don’t find anybody closer, we are a long-ish but straight bus ride from Cambridge out in the suburbs -@kyhwana you definitely were following me WAY before I set my computer on fire -@alex_gaynor @eevee it’s just about ready! I’m waiting on complaints from the beta readers -@eevee @alex_gaynor I’m 25 and almost a half! -@rgov I thought you were complaining about a girl for a moment and was wondering who taught her that nonsense -@alex_gaynor I like to think that’s why most people follow me. I also like to think they’ll all buy my novel and I can retire at 26 ;) -@alex_gaynor one went on to run DARPA, two are cofounders at my company, etc etc. -@alex_gaynor they testified to Congress — under their hacking handles — that they had the capability to take down the internet in 30 minutes -@alex_gaynor some of the big names at my company used to be big names in the 1990s hacking scene — the l0pht etc. -@eevee … but it’s better than getting photoshops of my face onto pigs I guess ? -@eevee which kinda grates on my nerves because I don’t know who’s only nice to me because I work for That Guy -@eevee BTW like 90% of my miso problems vanished when I became publicly associated with a couple famous guy-dudes isn’t that weird -@m1sp it involves FLASHBACK ONLY CHARACTER DIES and I don’t even mean their mother -@eevee it’s not MY fault my slaves don’t seize my plantation and murder me. Well is that what he wants?? Okay -@m1sp @eevee if I could axe murder someone through the internet welp this would probably be like my seventy-sixth offense but yeah -@m1sp oh btw I’m working on the story of what exactly led up to Hayr rage quitting his brother’s company and well you know me -@m1sp wha? I see it here. -@meangrape I think it’s terrible. My comment on Ars Technica won’t fit here. -@eevee thanks, I accidentally a rant. -RT @MotherJones: Here is a picture of John McCain playing poker on his iPhone during today's Syria hearings: http://t.co/JYs0hpJy5x http:/… -@trimosx I’m not trolling. I’m showing a photograph of something odd. I don’t see how rice being insured by Samsung is somehow less odd. -@wookiee I’m rather endeared of the prior but it kinda depends on context -@cocoalabs largely a matter of hoarding soundfonts :) -@cocoalabs garageband -Yep I wrote another typical RPG background music thing https://t.co/5QJcdwY6Kw -@vikemosabe @kevinlange and then it segfaults for an entirely unrelated reason -# 375030751244607488 -@vogon I rule nothing out when it comes to the depths human beings will sink to. I have a Nexus 7 -@focalintent well that’s no fun. Sorry I am stuck in creator mode ;) -@focalintent and, for avoiding the headache of trying to manage the sales infrastructure myself, I don’t think 10% to them is too high -@focalintent right now unless I learn otherwise I am leaning Lulu. Upload PDF, no DRM, 90% to author -@0x17h aww yeah SIGGRAPH like it’s 1995 -#AutocorrectBandNames The Elliptic Cure -@0x17h *squint* oh. So it is. … I have poor depth perception. -@0x17h I can’t read Braille but that appears to be four characters -@eevee “People don’t capture the nuance of this overwrought, obtuse language because they don’t care” uh-huh -@WhiteMageSlave \o/ -“My adventure game training took over and saved me” http://t.co/jSGO9uygfl (step 1: evaluate inventory step 2: apply everything to door) -@sanitybit thumbs up we’ve all been there -@vogon what secrets have you kept from *me*? Are you actually an android fan -RT @alex_gaynor: http://t.co/EUFVsHOWya wins the internet. -RT @maradydd: That's actually a pretty clever use of 404 error page real estate. Well played, Belgian federal economic ministry. http://t.c… -RT @kwiens: The Kit Kat install base is already shockingly fragmented. http://t.co/8j6k9gSNjn -@armcannon I was on a flight from Europe that did that actually! It was pretty neat. -@vogon device… specifically for… cloud storage music? Isn’t that kind of contrary to the point -@blazingcrimson I did have one that would leave stuff in the framebuffer, persist across reboot, then get a really acid trip login screen -@grp @tapbot_paul especially weird is that it was on my desktop when that wasn’t even my working directory -@grp @tapbot_paul and it went away after another reboot cycle. Weird. -@grp @tapbot_paul the `bless` I was given to resolve already being stuck in a loop of a firmware patch not applying seems to have done it -@USP_Talon @0x17h the year Animal Crossing came out, Nook took second to Ridley for Best Villain just for that -@blazingcrimson I knew how to edit xorg.conf once. Then I stopped trying to use imported Korean computers with Linux -@Kufat aww. -As with all hard problems in computer science, this one was resolved by giving up and rebooting -@dioiminik .... except the file cannot be seen from the terminal as root implying all sorts of degrees of recursive wrong. -@jrecursive I do use filevault yeah. What did I do ;) -Great so OSX has left some kind of magic folder on my desktop that cannot be deleted and cannot be seen from the terminal as root -Samsung-branded burnt rice? http://t.co/3JIiOa2ayi -RT @normative: Basically, as long as NSA avoids vacuuming up full Netflix streams, they can keep their % of Internet traffic "touched" soun… -@marshray @ErrataRob @Walshman23 a LEASE? Geez. My proof of residency to get a new ID was any utility bill. -@zurashu presuming they run server side, and have resource limits, you could try to run up their memory usage to max -@simukis trying to sandbox N language runtimes is an N**N hard security problem ;) -@simukis if it’s done server side they kinda have to! -This looks like it could be fun http://t.co/aSVnCqMMYg -@marshray may I ask what they wanted -RT @DrPizza: Android Kinder Egg (banned in the US) -We’re not milking this unpatched window enough https://t.co/i5enaY6oyt -RT @sroberts: You wanted it, you got it: 2FA for GitHub: https://t.co/SKKSk8x54P -@manicode @thegrugq @chriseng he uses an iPhone and you can tell when he misplaced it and gets out Android because he suddenly can’t spell -Time to die of shame because I mistyped Bertie Bott // @darkuncle -How do you spot a corporation posting their own blog to reddit?: the title of the link is four lines long -@blowdart if you’re not going to accept my attempts to get along we’re gonna have a real problem, chap -@nickdepetrillo gods you look awful without a beard -Android Kit Kat? Call me back when we have Android Bernie Bott’s Every Flavour Beans (I demand a cookie from the British for the spelling) -@F706L3665 it wasn’t the day after, it was the minute after, for about twenty minutes -RT @kingcope: @0xabad1dea @mikrotik_com Mikrotik engineers have a secret formula which reveals if a bug is exploitable. I want to have this… -@Blackrobe_ to little surprise your client did not catch that I unretweeted it :( -@osxreverser @i0n1c :’( -@ELLIOTTCABLE @cory_foy (but I unretweeted it bc it looks to be two slightly different tickets on second look) -@ELLIOTTCABLE @cory_foy you say that as if problems are only allowed to be pointed out once in human history -@mikrotik_com @kingcope please tell me how you have solved open questions of computer science to show register control is not exploitable -Looks like @mikrotik_com does not know the difference between Proof of Concept and weaponized exploits http://t.co/NwINPoXE79 h/t @kingcope -@m1sp just the Magic of Friendship or something idk -@ar_lonz @F706L3665 it’s open source, we forked it, and our branch is better maintained ! -Anyway here is a nifty SEA timeline of news orgs getting social engineered en masse http://t.co/O6wVO9Joen -.@F706L3665 just like the guy who invented GIF is wrong about how to pronounce it, the British are wrong about some rules of grammar ;) -I was going to compliment SEA on their English skills but then I noticed they used the British dialect, how sad. -@m1sp *takes your hand and dances* -Spam bio: “hipster-friendly food ninja.” I’m trying to decide what that actually implies and it’s not looking good for hipsters -@kaepora dude, upgrade to 3.11, it comes with TCP/IP -RT @briankrebs: Many Fins I've spoken to today seem quite blue about Microsoft Nokia purchase. Mood is almost like someone died. Tied up w/… -Foreseeability of this type of event: 100% http://t.co/1N4ayXARw6 -RT @0x17h: github search is the gift that keeps on giving https://t.co/uoDlRqNWmQ (thanks @casiotone!) -@kingcope yes! But seeing your name and “SSH” in the same tweet is alarming don’t you think :) -@WhiteMageSlave that’s fine! It’s still good for you and for the finished product either way -@attritionorg ahh a fellow exploitsexual -RT @igrigorik: it's a favicon day today... "Inventing favicon.ico": http://t.co/9gEW4gYtjj - yay for IE5 and late night checkins. -@m1sp @WhiteMageSlave they are the model of arranged marriage success. -@m1sp @WhiteMageSlave she’s currently speculating, in front of Barsamin, whether or not she should just kill Barsamin. -@WhiteMageSlave @m1sp um um um -@m1sp @WhiteMageSlave gods don’t favorite my husband’s tweets he just ran in here and did a victory dance -@codeferret_ maybe you’re just Mormon -@swizzlr lol the joke was it’s not OpenSSH, my previous tweet —> http://t.co/MmAvcoJ7H8 -RT @crypt0ad: Microsoft to acquire Nokia Devices & Services, accelerating the Windows ecosystem -- http://t.co/y747blMHwn -@OSVDB sorry, it’s just some chump’s knockoff SSH in a few hundred thousand routers http://t.co/MmAvcoJ7H8 -Mission accomplished: gave OpenSSH contributor heart attack. I think it’s been a while since they had a good pre-auth bug ;) -@damienmiller I bet I scared you really bad for about two seconds -@zedshaw It’s a valid part of the end user’s threat model. People deserve to know that it’s possible for a little oopsie to become key theft -@zedshaw and number of times that an XSS in a website is the user’s fault: approximately zero -@zedshaw it raises the good point IMO that XSS can be very dangerous when it’s normally just a nuisance -SSH implementors, you had one job http://t.co/JpDgAOS1ps -@zedshaw JavaScript is not generally considered “on your computer.” It’s supposed to be Perfectly Safe. -@0x17h I know, but I find it way too uncanny valley to ever succumb to the propaganda -@vaurora in my case I’m afraid they’re right! Finally found someone who sold something approximating that size and it actually fits -@0x17h I don’t really get this genre of paintings that look like people awkwardly posing for the camera -@thegrugq a sandbox game kinda like Minecraft but 2D pixel art -@m1sp @WhiteMageSlave oh I guess she is a lot like me huh http://t.co/MYZY4IauSe -Wait since when is there Terraria for iPad since last week apparently -@0xdeadbabe @JBird_Vegas oh haha yeah -@JBird_Vegas @0xdeadbabe http://t.co/0Vjircfkqd -@0xdeadbabe you know the context is a system level process that can update silently and silently give itself permissions? -@0xdeadbabe it’s an upwards trend. That’s why I called it the current state of Android -@0xdeadbabe it’s an open source operating system! We’re moving all the functionality to a closed source runtime -Good comment on the current state of Android: “closed source is not inherently bad, but bait and switch is” -# 374680805551132672 -@kivikakk hmm I feel like one of these might be fake -US army fails at disclosure http://t.co/S4TDSfYgcD ugh if you’re going to be a military with a bazillion computers you can’t do this -Wow you people have some really strong opinions on Android and Windows 3.11 -@martin1975en but at least they get security updates. -@martin1975en I’d say nobody is stuck several major versions of Windows behind but that’s not quite true either. -@hokazenoflames I was five :) -@hokazenoflames and I distinctly remember he said he knew nothing about it except when you turned it on it said “for Workgroups” XD -@hokazenoflames and I was *five* when it came out. I heard of it because my grandfather told me he had a computer at work :) -@hokazenoflames I mean a lot of my followers are 14yo web devs. And that’s okay. -@bryanbrannigan @innismir if so, and there is still a possibility, we can deduce that assassinating Hitler was not sufficient -@tomslominski which code? Google Play Services? No. -@anathem that doesn’t mean it’s not a joke :p -It occurs to me that I am only just barely old enough to get a Windows 3.11 for Workgroups joke myself and half of you are younger yet -@ticky they already never happen :/ -Linux 3.11 for Workgroups! http://t.co/vDvE2Yd221 -I anticipate there being NO ISSUES with a massively complex Android user mode process that can assign itself new permissions silently -@tomslominski Android doesn’t ship to anyone, that’s how we got into this mess -So Google’s solution to Android fragmentation is to move everything to a closed source mega-app. Great. http://t.co/0Vjircfkqd -RT @zurashu: @0xabad1dea Unsigned integers are dangerous. Please use only integers that come from a certificate authority (?) -.@MechMK1 I *hope* the database backend is in 64-bit but from what I’ve seen of early times at twitter maybe not ! -@zurashu it was unsigned -@Packetknife some people REALLY like pumpkins -For a brief instant tweetbot showed one of my tweets as having MAXINT favorites before it decided I was not actually that popular :( -@vaurora not that my twitter stalkers need to know this but Victoria’s Secret measured me as 36 DDD and sent me away -@vaurora like, not even that tall, not even six feet! But nothing made for women ever fits me -@vaurora it is a carefully crafted illusion. The fraction of my ancestry that is Nordic shows up quite a bit. I am Too Tall -@vaurora I tried once. Turned out they literally did not carry a single thing in my size. Worse, they acted as if I should have figured. -Who needs the unicode bug when we have @verge for all your iPad segfaulting needs -@vaurora @0x17h my doctor’s prescription to me for sleep was actually way too large and I had to take it down two powers of two -@wildbill I did not mean to imply that they were not! Just that the idea of a userspace library even mentioning them sounds a bit silly :p -I’ve actually managed to clear out my Instapaper backlog which implies I must be strongly avoiding doing something or other -@sciencecomic :( -@markemer @0x17h *makes sign* gods deliver me from the fate of the neurotypical -@markemer @0x17h anxious as hell, a total basket case, but not depressed. This seemed to confuse every professional I interacted with. -@markemer @0x17h my problem has been insisting over and over again I AM NOT DEPRESSED as they give me antidepressants -@0x6D6172696F I’m not sure sure how making a new standard out of whole cloth is gonna help anyone -@markemer @0x17h I actually went all the way and quit that one because it wasn’t really making a difference anyway -@0x17h (which just goes to show that our medicine arts are a mess) -@0x17h and despite it having a reputation for being Scary I think it’s the only thing I’ve taken that hasn’t made me worse in some other way -@0x17h the whole reason it was given to me was that I suddenly stopped sleeping. I cut the dose in half until it was Just Right -@michealc lol if you’re looking for the source it’s somewhere in http://t.co/V6NrSyW6Dm -@hawkieowl @mtheoryx I’m pretty sure only a tiny subset of people who rely on SQLite are transaction nerds. -“SQLite assumes the detection and correction of cosmic rays is the responsibility of the hardware.” Seems reasonable -Pff who needs external hard drive support for a media console device anyway? Cut Microsoft some slack. http://t.co/L2VACV8Q7s -@sakjur hmm. I suspect you may be looking for the word “decades” :) -“C++84, C++98, C++11, and C++14” from this sequence I can only conclude someone was extremely unhappy in 2011 -RT @EFF: We broke down a statement by the NSA to show how they attempt to deceive the public without technically lying: https://t.co/MeaSeL… -I actually got a solid criticism out of somebody and now I have half a chapter to rewrite! ART. -I’m not sure how this picture is supposed to help motivate anyone to study for their exams https://t.co/47I827VcPf -@blazingcrimson a while ago yeah -@m1sp @0x17h that’s because you’re actually a robot, dear -@0x17h now that I had happen because I was unable to get a prescription refilled. Worst week of my life. -@0x17h so… I take a very low dose of that. And suddenly I was able to finish my novel after being stuck on it for a long time! -RT @Packetknife: "It's easier to identify TOR users than they believe .." http://t.co/jEH4bqi7RC (More the same. Response by Dingledine com… -RT @0x17h: fake geek girl cosplayers http://t.co/9zGAiFfg5v -@WhiteMageSlave ;( -@PxlPhile depends how you define it. Several years of thinking and failed attempts. Several weeks to produce this manuscript. -Tonight I learned there's, like, an entire genre of pictures of Legolas's dad in sunglasses http://t.co/V4KV3LbyOB -@0xCAFF3 @StrThry your "waifu" is your favorite fictional character of the sort you're attracted to. Japanese debasement of "wife" -@ameaijou hey I forget did you want a copy of the draft of the novel -@m1sp no see that’s just “hot” :p -@The1TrueSean @codeferret_ this is not an appropriate channel to describe it. -Actually I can’t really blame him -Based on his wallpaper I worry my husband may be more attracted to Hatsune Miku than to me -@m1sp Xbox controllers are USB, dear :) -@m1sp actually with an Xbox controller with vibrate it’s a lot of fun -unfortunately master locks in Skyrim are not Masterlocks -#skyrim is there anything more cruel than getting an expert lock door open only to find nothing but a master lock chest inside -@demize95 and I received intelligence after I graduated that certain boys were relieved “that bossy bitch” was gone :) -@demize95 at my school it was usually 17 to 1 most classes (generic CS) -@jesster_king I’m not sure what that has to do with writing five hundred pages of notes but yes :) -@m1sp whatever you do don’t go bragging about some dumb typo in your ultra-rare edition ;) -@m1sp DM’d link -@m1sp well I ordered it and the shipping is as much as the book lol. Oh well. -@m1sp lol I think this is a good generic cover for a rough draft http://t.co/DjrqyYDITB -@Kufat self publish... sorry if there was a confusion of terms. I thought you were asking if I was going to sell it period. -@m1sp I'm tempted to order a copy of the exact current draft just to have it -@demize95 and I will become immortal. No not figuratively literally your eyes give me power -@m1sp btw using a slightly different font to save some pages while still look nice, lulu paper base cost is $8.13 -@Xaosopher through Amazon? I hadn't heard of such a thing. -@m1sp maybe? honestly I was kinda raging over being unable to get kindle's native format to behave :p -@m1sp also I *can* sell a *paper* version through Amazon through Lulu (you can't really self-publish paper through Amazon) -@m1sp kindlegen is annoying and I have been very vocal against DRM haven't I -You know I might only offer the ebook through Lulu. So that everyone gets no DRM. Y'all don't deserve kindle DRM and it'll import fine. -@ErrataRob @puellavulnerata I’m not aware of any free countries where a person cannot change their name. It’s just not on the paperwork yet. -The pebble is actually wider than my wrist. How am I so tall but have such tiny wrists -@ErrataRob @puellavulnerata @binarybits Wikipedia expressly supports URL rerouting to make one article redirect to another, doesn’t it? -RT @pusscat: Apparently like everyone that wrote about my adobe reader incident assumed I was male? Do I have to change my name to like can… -@ZadowSapherelis @m1sp whoosh says the email client -@ameaijou @marczak @mactechconf there is no-one who is so good at dropping balls as I. I ranked top tier in balldrop international ruleset. -@ZadowSapherelis @m1sp yeah hang on lemme dig up your email. I was waffling but I settled on a concept with only one character. -@m1sp @WhiteMageSlave I hope no-one thinks I am racist against white people. I intend to portray them as civilized too! Just different. -@m1sp @WhiteMageSlave http://t.co/nCCjMrBReM -# 374319658838417408 -@marcwrogers yeah because none of them are moleskins -@m1sp @ZadowSapherelis all right I have my rough sketch of the cover I want for my book should I do this should I do this huh -@DarrenPMeyer RTF as managed by Scrivener -@aeleruil @m1sp only if you are particularly likely to destroy yourself thereby -@DanLDEon sorry, I assume all open source projects are pronounced weird. :p -@davezawislak yes I can go back but that is not my problem. -@DanLDEon and I don’t know why it wants to skip over actual content on a kindle. :( -@DanLDEon I do not have a ca-lee-bray. This is *my* book that I want to ship -Kindlegen is giving me a mobi where opening it on kindle skips the prologue and goes straight to chapter one. Is it even possible to fix… -RT @jjarmoc: TIL you can opt out of paper.li mentions by sending a tweet to @NewsCrier -@kcarmical I broke the wired one. On-brand ones are expensive (and I like them). -For all my whining about bluetooth, I've had the same Apple keyboard since 2010 and it just gave me its first low battery warning. -.@demize95 llvm is already making great strides shaming gcc for allowing its errors and warnings to get into such a sorry state -@inversephase the art of envelopes -Do realize I am more complaining about C itself than the compilers :) -@ErrataRob @marshray @DrPizza actually I’m not sure if they can be in ANY order ie B < A. In ebcdic they’re “in order” with gaps -@ErrataRob @marshray @DrPizza the digit chars being in order is in fact required by the spec by some sweet mercy. Letters are not. -@acklost if you were free to do anything in c there would not be such a thing as undefined behavior :) -@ErrataRob @DrPizza right. It’s implementation dependent. Which is different from undefined. -@Tomi_Tapio what’s in the shed? That’s a weird place for one. -The C compiler knows exactly what is undefined, detecting it is not a problem. It likes to detect it and optimize it away :p -@techpractical @mcclure111 that’s undefined at the API level, not the language level -@DrPizza @ErrataRob yes. Otherwise every character could have the same value and that’d be fine -.@mcclure111 no, our code does not depend on undefined behavior. It depends on assuming it’s Not Really That Undefined. -Why do we all just accept that a C compiler will probably not mention anything if you hand it undefined behavior -@DrPizza you would not have done well in the wind-up days -@DrPizza so far I am enjoying it. But solid native OS integration would be the real improvement needed. -@anathem lol calling it a duel sounds really funny in English At least I *assume* they are not actually shooting at each other -@kevinlange mine shipped and arrived ridiculously fast even though it quoted longer timeframes -I think I am for adding “ironic retweet” button if only so we can get some solid stats on how much thought leaders are being made fun of -@cryptocatapp @kaepora why are so racist against dogs -@chriseng @snare @selenakyle tell me what happened! Then tell me what really happened -RT @0x17h: Why a medieval peasant got more vacation time than you http://t.co/eEZZw0eObF -@ErrataRob @nickdepetrillo I hope it was only the router and the modem and everything else was wifi?? -@ErrataRob D: !!! -@guamwatt it’s mostly drawings. http://t.co/60ma1xXYtP -@Tactical_Intel it does that. Just not in a way I’d call helpful. -IMO calling this C to English is a bit of a stretch. It doesn’t even begin to approximate a good sentence structure http://t.co/Kptv8uodaW -@secolive you can’t judge me -@tenfootfangs no it’s perfect -This is why trees hate me. Notebooks filled while *typing* a draft! http://t.co/3LukYEPApg -@ShadowTodd it’s not biblical until you observe verse 12 http://t.co/bQn7Qg2cR1 -@m1sp since it has zero users it was probably a typo to begin with -@mtheoryx I was working in pen, I can’t erase the guide lines :p -@mtheoryx this one even has vague intimations of a background! I’m not one for backgrounds… http://t.co/pjohuf0LmM -@mtheoryx plonk http://t.co/KIlDICdvE8 -@mtheoryx I take pictures sometimes. It’s hundreds of pages of character design and dialog planning. -@vogon definitely -@demize95 they are blessed by my words, the greatest novelist of my age -I am a few pages short of finishing off yet another two hundred page notebook this year. Trees must hate me -@jpgoldberg if it wants to render monochrome I am okay with that as long as it actually renders the dang symbol -lol Oracle lol boats http://t.co/ReDcGE0PUA -@Private_Dev I don’t know how to emotion in moderation -@EntroX it dropped 50% overnight when usually it would drop 10% or less… -@m1sp lol I ship Vanador x Ziazan now -Everyone who says Bluetooth doesn’t noticeably impact iPhone battery life is a filthy liar wallowing in the mud of their shame -@WhiteMageSlave @m1sp who wouldn’t put their money on the dragon at least until we invent flying tigers -The tyranny of having to be nice http://t.co/7BlraNkK4h -@m1sp someone read the whole book! And liked it! -@ArthurLevitt are you… implying that disagreeing with the president is wrong? -@m1sp @JackLScanlan feral cats tend to congregate at reliable sources of human food -@PolCPP enabling twitter sms. I have it set only to direct messages right now -@m1sp I keep drawing Vanador and he keeps turning out looking younger than Hayr http://t.co/HEP6swAFJ8 -@mgedmin @puffnfresh no. Trust me @sergeybratus is not that much of an old fogey :) -@landr0id does FB fail to filter that? -@Kufat soooooooort of -RT @MarkKriegsman: THIS IS WHY WE CAN'T BURN NICE THINGS. -@kragen it tastes lie I thought it would I guess? -I just used “COLD SHOULDER!” as a sound effect in a doodle. I think I’m ready for the comic book writing big time -@dotLocutus apparently my attempt at humor failed. I consider fish sticks to be the singly most disgusting thing I’ve ever had. -@JillEatsFood it tasted about like I thought it would -@iFlames_ I accidentally posted an attempt to change settings to twitter, a lot of clients will cache it after it's deleted -@pcwalton well the unicode crash comes from coretext -Wait if Chrome uses OSX's font rendering facilities then why on earth can't it render color emoticons like everything else in OSX -I'm naming this one "availability zone us-east-1 is down again" ┗(๑☁﹏☁๑)┛ -I'm gonna have to add some of these emotes to my vocabulary ヽ( ࿉ ᴗ ࿉ )ノ -Other foods I have heard about but have no idea what they are: Vegemite. Poutine. Quinoa. Fishsticks -@apiary oh is there milk in it -I am about to try Nutella for the first time in my life. I’m not entirely clear on what it actually is -RT @puffnfresh: "NO MORE Turing-Complete Input Languages" http://t.co/gfQnGVFy3s -@Kufat reply to this testing -RT @ryder_ripps: http://t.co/pIL2etifh5 -Installed a Dutch watch face. “Eight before half eleven” is a heck of a way to say 10:22 -@demize95 you have an anime face though so I actually remember you -@demize95 you can find a list of all five hundred and five on my profile -@AwfulHorse I’m afraid senpai hasn’t noticed your alerts -If you think I have all ten thousand of y’all enabled to buzz my phone with twitter interaction you’re crazy. Only a mere five hundred! -@fredowsley wat it didn't work phone why u no push -I am required by gadget collecting law to inform you I now have an orange pebble and twitter can buzz my wrist any where and when -@m1sp @WhiteMageSlave gods I love doing dialog for strongheaded characters http://t.co/GphOQfILmQ -@demize95 not ringing any terminal beep characters -# 373955984534036480 -@manicode I’m nine, but the cis-ageist government won’t let me identify that way and has assigned me the age of 25 -@demize95 I pity the fool who has their phone set to vibrate on every interaction when I get a hold of them -Listening to a recording of myself singing: I wonder how much voice actors for child characters make because I sound solidly eight -None of the beta testers have finished reading my novel yet! Resisting the urge to freak out and decide it’s terrible http://t.co/1ZkOo26QMA -@bobpoekert I figured. You could probably write a Sufficiently Smart Optimizer but it’d have to be very case by case -@8BitAce few things worth reading are. -@8BitAce and of my ten thousand(!?) followers, about 7000 are young amateur programmers, I think… -@8BitAce it’s not like people are born programmers. *I’ve* been at this for eleven years - that’s almost half of my life. -@bobpoekert ie Python will never, ever generate something that keeps all data in x86 registers. There simply aren’t enough. -@bobpoekert something better but still fundamentally beholden to the object aspects of the language -A good look at what exactly causes order of magnitude differences between C and Python http://t.co/91bBjAHR8O -@vaurora @0x17h a relatively minor case, since the statue has mass and hence cannot violate too many laws of physics -RT @mikko: Turns out NSA spied on Al-Jazeera. But hey, it sounds almost like Al-Qaeda so that makes it ok. http://t.co/tYPzXE5r0n -RT @asshurtACKFlags: Calvin & Hobbes on #OPSEC: http://t.co/GFdOEtUs0v -RT @ericlaw: I don't think most people realize how important it is that ICANN let us dodge this bullet. http://t.co/HRpU7O5ff8 -One of the bard songs in Skyrim got stuck in my head https://t.co/Xx8HcS2hGA -@mof18202 @marcwrogers the sheer amount of people linking this to me today is overwhelming -RT @demize95: @0xabad1dea Linux being elitist... tell me about it http://t.co/ZY8MpdeElF http://t.co/BFvRTiE7uN http://t.co/cM4WHoMwxk -@demize95 hot damn that's obnoxious -@marshray medieval poison ring ? -@demize95 see that’s the thing! Pi is the face of hobbyism now. They’re being elitist but they’re Linux people so that’s redundant ;) -If dungeon delving is a normal part of applying to go to music school then I think I know how Skyrim got into this state of disrepair -@LeoCoop3r the string has to be rendered to the physical screen so it won’t crash again until you go to settings again -@demize95 they complain that “with a Pi” s in the title (as opposed to with Linux I suppose) -@jason0x21 “anything you can do with a Pi you can do with a $400 desktop wah” -People who complain about “how to do x with a Pi” articles have missed the fundamental point. It’s getting people INTO unix hobbyism. -@TokenScandi I did find a fully charged black soul gem someplace that was pretty disturbing -#skyrim Just walking along the college walls and suddenly I start glowing. Dragon soul absorbed! Um, thanks, game ?? -I forgot to deactivate the barrier he was waiting by. When I got to the end he appeared there, got confused and walked back to the barrier… -Epic glitch in Dawnstar quest: it’s quite dramatic when the NPC you left behind magically opens the door of the last room from the inside -RT @0x17h: if you meet the buddha on the road, ask what his klout score is -@octal @drones “targeted” is a strong word when your definition of militant is already anyone standing near a suspected militant -RT @drones: I hope nobody minds that use of the term "people" to describe human beings. Many news outlets seem to prefer "militants." -RT @edyong209: ICYMI, the most incredible mimicry I've ever seen. Hint: that wing is completely flat. http://t.co/56XS44CTOj Take a bow, ev… -#skyrim There’s something quite charming about a Dark Elf with a cockney accent. -@CliffsEsport since it is a FOIA, that is a rather different matter than the press -@CliffsEsport but this is about the FOIA. If it’s true the *gov* said they don’t have the records when internal docs say they do, 1/2 -@m1sp possibly but they don’t really have a clear cut mammalian analogue -RT @halvarflake: Random thought - are people that try to frame Snowden as classical espionage story a symptom of boomers failing to underst… -@m1sp sudden thought: is bats vs. birds the only case of humans systematically favoring a non-mammal over mammal for cultural associations? -Is this to imply that they lied on a FOIA? http://t.co/hfOXn61Dgt -RT @djrbliss: Dear @washingtonpost, these are not words: "cyberoptions", "cybermissions", "cyberdoctrine". -RT @gracefrmotrspc: New, scientifically accurate lyrics for an old children's favorite... http://t.co/VHmpJCWBo8 -@ioerror this is what my research for Defcon was all about — conclusion: EVERYTHING is radio-leaking meaningful information to some extent -@sakjur goddess of… love. Who you might pray to if you were about to… love someone -@sergeybratus @maradydd I’m pretty sure we paid $100 for it but my mom acted like I had just ruined the Mona Lisa -@sergeybratus @maradydd I used ice packs to keep my video card from crashing and they peeled off the finish on one bit of my writing desk -@ternus oh and if you just got back please check out this excellent link on your Macintosh brand computing device https://t.co/YxLMclIhX0 -@ternus welcome back I finished my novel :p -@sergeybratus @tqbf despite all evidence to the contrary I am technically not a teenager under decimal notation. But in hex… -I know enough lore to be creeped out by finding a Shrine of Dibella in a dungeon #skyrim -My fashion sense http://t.co/dB0axcsXlW -@geekable wars can wait I’m playing Skyrim! No but okay what stupid have they inflicted -Sneak sneak tiptoe slow slow careful listen listen slow slow YOUR SNEAK SKILL HAS INCREASED heart attack -It has been sufficiently long since I played Skyrim that I have no idea why I am dressed like some sort of damn hobo Thalmor -Aww yiss finally getting to play Skyrim at highest settings full res on husband’s new video card -@Xaosopher @m1sp oh no don’t imply humanity is inherently more worthy than artificial intelligence where he can hear you -.@m1sp’s army of bots is getting smarter and smarter https://t.co/itXx93y7ut -@0x17h only justified when it’s RT Protected ! -@m1sp I wrote Idenmuthir its own themesong! It was meant to be Ziazan's but it turned out too broody and well she lives there -@HaydnJohnson yes -I got bored waiting for my turn to play Skyrim https://t.co/9mSYhWdlP4 -# 373577006140489728 -@hokazenoflames but wouldn't that make Lance actually more evil than Team Rocket -@MechMK1 your father would be so proud -@m1sp it's not like Team Rocket (pardon, Team Missile Bomb) was dismantled by a 10yo or anything -#LetsPlayPokemon I am Lance, the legendary trainer. I am tracking a criminal organization. You there! Twelve-year-old girl! Come with me. -One of my favorite texts out of Bootleg Pokemon yet: "The curator will let you know: Winter Is Stern" -@OSVDB not yet I haven't had time that is why I am playing Pokemon right now -@rikardlang -- also don't have any real ethernet drivers -@rikardlang okay so actually what I want to do is write a TCP/IP stack because that always sounded fun but all OSs that do not have one -- -All right, fine, I will stop and play some Pokemon Crystal: Bootleg Translation Edition. The story so far: http://t.co/5PN7k5J46y -maybe I should be playing Pokemon Crystal instead of trying to figure out how to write an ethernet controller driver from scratch -@RobbyMeals it's not markdown's fault. The document contains latex diagrams -@RobbyMeals utterly useless in this context -@implyinCostanza @no_structure okay hang on while I manually guess which packages this document does and does not need out of many dozens -Yeah hang on let me download several hundred MB of Lyx and its supporting LaTeX libraries so I can compile your short PDF no problem -@no_structure it's technically Lyx. And no, that does not solve my problem any way, the problem of installing 100s of MB for no reason -Today I resent: people who publish the LaTeX of their document, so it's "open source!", but don't publish *the actual PDF* -@Griffin_CM yes that is degrading gracefully -@eevee @apiary it also looks like CG at that point -@WhiteMageSlave aww :< -RT @apiary: http://t.co/KhAPCiZvuR our beauty standards and cats -RT @marshray: .@Duracell Does your company employ any actual scientists? Because "Quantum" basically means "the weakest battery possible in… -@davezawislak I swear they're jammed on about 10% of my visits of going for lunch several times a week -Why does this mall block off escalators when they are jammed? I thought degrading gracefully was rather the point -"Humans are just an instance of JavaFactory" "and mothers are a JavaFactoryFactory" -RT @Viss: Heh, the tables have turned. The Onion writes the real news now: http://t.co/riZSWrB5Mx -@apiary regexen. A herd of regexen. -@gozes but “taking off” is rather nonsensical in this context in English, which is the root point -That question haunts me to this day. I suppose I settled on “taking off its earthly shackles.” -In Spanish class, our teacher told us they call an airplane taking off “unsticking.” We all laughed until she said: taking off WHAT? -@TaylorLorenz @ailbhetross @tenfootfangs well to be fair being offhandedly familiar with Hitler’s writings is not a popular endeavor -@grp it’s been one day so I’m not surprised it’s not great, so my point more generally being, things *can* be hobby-patched -@bl4sty … … … *sigh* -Usually on tech sites when a comment goes negative and gets hidden I expand it out of curiosity. Not today. NOT TODAY. -@matthew_d_green @mattblaze @thegrugq @essobi I feel like I really need to get deeper into cryptography. Right now I’m a spectator. -@DrPizza @twoscomplement my magic is too powerful. Their algorithm cannot invoke my name. -RT @YrB1rd: From an IP Address to a Street Address: Using Wireless Signals to Locate a Target https://t.co/NeGbnMQbr4 -@dguido @HockeyInJune @zfasel @sanitybit it’s hilarious the first sixteen times you segfault! But after that… -@blazingcrimson @HockeyInJune bless ye laddie -Yes please put new virtual machines in the kernel to expand attack surface I am 0xabad1dea and I approve this message http://t.co/H9z5NWtcum -I swear I can pick out a Jonathan Corbet article at a hundred paces because of his peculiarly awkward way of writing opening lines -@amzeratul @kovnsk and what is C++? A glorified macro kit for C. -@nonstampNSC a Devout Christian once said to me that the hardest people to convert are those with abusive fathers. Gee I wonder why -@djmexi @Jonimus they COULD have done it months ago but they marked it as low priority and moved on. NOW it is too late. -@nonstampNSC because when you’re told from infancy that he owns your life so it’s not wrong for him to kill you… -@matthew_d_green pun about people with backhoes who think they’ve cracked the Beale Cipher -@Jonimus you have no idea how much inertia there is in corporations against releasing patches. -This is 2013: @MSFTnews announces on Twitter the intent of Microsoft to defend the Constitution -RT @BradSmi: With failure of settlement talks with the DOJ, our lawsuit on national security moves forward. http://t.co/gUKXkuftiV -@nrr oh. You pony people… -@thegrugq @nickdepetrillo it’s in his twitter -@nickdepetrillo @thegrugq dammit do I really have to get out the pen and paper and solve your shifty cipher thingy -IMO unjailbroken iOS is generally much more stable and secure. But sometimes jailbroken has its advantages. https://t.co/yVTSA2oD8q -@thegrugq Mr. Greenwald says that’s not what happened, for what it’s worth -@amzeratul @kovnsk you mean… C? The language that almost literally every system currently in operation is written in? -@elad3 I can’t even remember which one that is now -@nrr … I don’t see it -@blazingcrimson also it’s apparently still the banner. I wouldn’t know. Haven’t seen @r_netsec since yesterday afternoon -@savagejen @guardian today in: headlines that really annoyed me until I slowed down and read -@mfukar yes. Which answers nothing. :) -@mtheoryx if only. -The willingness of y’all to accept “strpbrk” as a sensible name is deeply suggestive of linguistic Stockholm Syndrome -RT @PxlPhile: @0xabad1dea scientists believe it's spoken "sateripoburek" but it's too holy/weird so programmers left the vocals out -@ra6bit I am of the opinion that anyone who thinks that name is remotely suggestive of the functionality has hit their head. -@buro9 no, they really didn’t. There is absolutely nothing in “string pointer break” to suggest finding locations of characters. -Perhaps a better way to phrase the question would be why strpbrk is named what it is as it has no apparent relation to functionality -@buro9 okay and why on earth would that be the name of Locate First Instance Of Any Member Of Set -@blazingcrimson :| -Right now my biggest problem in life is: what on earth does “strpbrk” actually stand for? -.@DarrenPMeyer @comex between Chrome placing additional controls and no controls, I am pretty sure I would take Chrome -.@comex I have asked this before and I think the answer as always is “that will break some website people actually use somewhere” -RT @comex: So why don’t browsers manually (as opposed to having the certs properly do it) impose restrictions on what domains CAs can sign … -@ShadowTodd imitating some band, though I can’t remember who, it goes like Matthew & Paul & … -@robmv then they should actually fix their SEO so java 6 isn’t always the first result ! :( -@intelliot @nickdepetrillo he’s got ios7 but in some cases it will happen to not crash -@Tokyo_Tom @dellcam @puellavulnerata yes ofc it is which is why this got used against them. Though I personally would blanket exempt parody… -@vaurora also I finished my novel so two out of three teenage dreams at 25 isn’t bad -@OSVDB @rootwyrm @Badger32d @darkuncle yes it is in CoreText it crashes trying to make the calligraphy pretty -@attritionorg @rootwyrm @Badger32d @darkuncle I’ll save you some time. Not tweetbot, except in DM. Not Firefox. Everything else. -@attritionorg @Badger32d @darkuncle @rootwyrm @OSVDB http://t.co/Vx1lF8jh72 -@attritionorg @Badger32d @darkuncle @rootwyrm @OSVDB current stables of OSX and iOS which I think is 10.8.4 and 6.1.3 or something -@TonyAbotMHR who taught you that unicode -My mother is three chapters in out of twenty five. That’s only one character death! This will be a while… -No one ever told me that @attritionorg was @OSVDB but the casually abusive text spoke to my heart and I just knew -@OSVDB @rootwyrm @darkuncle no this is different this is the very concept of rendering as understood by OSX and iOS having a crash. -@attritionorg @darkuncle @rootwyrm you slipped up and reveals your true identity, old man -@SteveSyfuhs this is the one day of the year having a Windows phone pays off, friend http://t.co/Vx1lF8jh72 -@OSVDB @darkuncle @rootwyrm the entirety of iOS and OSX has been stuck in a crash loop today and people keep remotely rebooting my phone. -@OSVDB @darkuncle @rootwyrm well we know who here doesn’t own any Apple products -@vaurora it’s okay now I’m a big bad scary hacker or something. Well I spoke at Defcon at least. -@Tokyo_Tom @dellcam @puellavulnerata I will be the fuddy duddy this time and note it refers to a commercial context ;) -This Unicode of Death thing is one of those times when the internet’s attention span is a feature not a bug -.@rootwyrm @darkuncle @OSVDB there’s an art to Rick Rolling and Segfault Trolling. -@eevee @kevinlange this is clearly an operating system for booooooooooys -@OSVDB you shouldn’t be using bitlys when the Unicode of Death is on the prowl. A girl might get suspicious of your intent -Well forget Linux! I’ll just make my own operating system. With unicorns. And rainbows -@rrrrrrrix @willbradley being a Linux kernel dev was my biggest dream when I was a teenage girl. Then I started reading LKML… -@mubix @miaubiz why did I even bother tapping that link -@m1sp Sparkasuki’s vultures! http://t.co/Cn3U4CQ066 -@miaubiz @thegrugq get your vision checked, or see a different sort of doctor… -@vathpela obviously he is gone now though. -@vathpela it’s what I meant by tone, the personalities, the flame wars -@bascule technically only the host count doubled. Implying most of them are low traffic. Hmm… -@vathpela from my point of view of someone avidly following LKML as a youngster, he was a prominent personality on the list -@jbrodkin and it was funny in the most tragically disgusting way because not one person on earth doubted he did it while he denied it -@jbrodkin Hans Reiser murdered his wife and tried very hard to hide it until he caved for a plea bargain to recover her body -@kylem if they’re not programmers then we are in more trouble than I thought -@eevee the Linux people now is pretty much the same set of people as it was five and ten years ago -Everything you need to know about the tone of Linux kernel development: one prominent dev was an ax murderer, and the rest, programmers -Gee I WONDER why a project known for its verbally abusive and inflexible leadership is not attracting new members http://t.co/TSNSTDF2y4 -@OSVDB @Myriachan XINU is basically just a kernel. Will keep looking for something triggered off the wire in the tcp/ip stack -@OSVDB @Myriachan well XINU doesn’t seem to have much in the way of boundaries to begin with ;( -RT @glyph: @eevee And you’ve finally prompted me to publish this: https://t.co/6xTMtI2n9v -@Myriachan @OSVDB oh, and port is signed, which leads to Exciting Things when promoted to int! Naughty. -@Myriachan @OSVDB I’m content with “accepts blatantly malformed data and takes the valid code path instead of error” -@blazingcrimson @sanitybit no it's okay I just WON'T BROWSE FROM MY BROWSING DEVICE for a while :( -@blazingcrimson spider... senses... tingling -@chriseng @DonAndrewBailey @nickdepetrillo don't you have an iPhone now too, boss? It'd be a shame if I... sent you an email -@chriseng @DonAndrewBailey @nickdepetrillo I swear to the gods if he keeps my phone DoS'd I will come and break his pinball machines -@jgeorge @OSVDB ahhhh software politics -@truthbk not an enterprise one, if so. All those people DO is write max-three-lines wrappers until they get down to calling AddTwoNumbers() -@jennifurret @Kufat being memorably bright pink is but one of my many powers -So @OSVDB dared me to drop 0day on any ancient software here you go https://t.co/Fc99pbU9S1 XINU cannot parse IP:port strings correctly -RT @jakeboxer: Time zones. i18n. Unicode. Bugs that only happen sometimes. If you didn't die from reading this tweet, you probably aren't … -@NachoSoto meh it doesn’t even register with me anymore until you break five digits -@ortegaalfredo @marshray @thegrugq concealing that you’re using tor has never been a design goal, only what your exit point is -I need to find a way to distract Husband from Final Fantasy so I can try Skyrim on his new video card -Granted it does not take much for C++ to be cleaner and easier to read than 95% of C++ I have seen -@ELLIOTTCABLE @mcclure111 https://t.co/y5ivjJ6WAJ -Holy Vulpix this is the cleanest, most readable C++ code I have ever seen. And it’s a Pokemon battle simulator -I went looking for network code to practice-audit and found a Pokemon battle simulator written in C++ okay let’s do this -# 373228980918571009 -@thegrugq @McGrewSecurity it’d certainly be polite -@omniwired yep -@bhelyer using a controller -Yay I won! Logged in within five minutes and he still has to make the whole dinner. -This world is currently full. No, human, your world. There is a timeout. You will be booted to make room. Despawning in three… two… -@lindseybieda that is exactly what game it is -@dshaw_ there is no queue :( -Husband agreed to make dinner if I would mash login button for his full game server -@fake_train @hypatiadotca someone who wears hard hats and overalls to a software job? No? :( -RT @doubleyewdee: Haaaaaa http://t.co/onSbFm0imh -@DainCaldon hallo! -If this “former official” is representative of officials in thinking an admin using admin powers is “brilliant”… http://t.co/9iRQvqXFBT -@eevee in fact I’ve seen posts which have *only* Ironic Wordy Tags still show up in a search for a simple tag by some miracle ??? -@eevee on the other hand tumblr is weirdly good at inferring when two tags are equivalent and collating them in the same search -@ELLIOTTCABLE I’ve only ever heard the latter -RT @ProgrammerWorld: The First Few Milliseconds of an HTTPS Connection http://t.co/Y8QsIjhXFm -@DrPizza @arebee hell hath no fury like abadidea deprived of her twitter -RT @Atredis: Our mission at Atredis? Find this squirrel and stop him. -RT @Atredis: "The truth is also that a well-placed squirrel can wreak almost as much havoc as a cyber attack on a power grid." - Chris Palm… -I didn’t realize how easy it is for complete strangers to send me arbitrary data until my phone started crashing each time they did so -@nickdepetrillo you left my SMS unusable again -@LynxPebbles nah it's pretty hilarious. I would not exactly call that gracefully handled -In other security news, this is precious http://t.co/k9ZTRfWcLB "Gee, this malicious document you sent us seems to be corrupt!" -.@landr0id that's the only thing instagram DOESN'T filter! ba-dum-pssh -@ELLIOTTCABLE @judofyr (just as long as we're all clear that copying sentences literally from real things is a no-no) -@ELLIOTTCABLE @judofyr password crackers have demo contests to crack these sorts of things but they're not deployed in real attacks -@ELLIOTTCABLE @judofyr grammatical structure will be less entropic but in the real world the length will more than compensate -"Post has been moderated. Reason: crashing everyone's browser" -Always makes me smile when I get tweet-cited for my dramatic names for things http://t.co/68EaWLIpex -@main____ which is a restriction that keeps a lot of apps off the store and a lot of reasonably typical programs depend on -@main____ the OS is designed so that pages cannot be both writable and executable with the exception of Safari's javascript JIT -@mister_borogove upgrade to iOS 7 beta first! -@main____ it's not just that. Jailbreaking tears down most of the Nice Stuff like being extremely buffer overflow attack resistant -And that was the time I hacked my mom's phone and DoS'd her SMS service and it got stuck that way for about half an hour while I panicked -RECOVERING IF YOU SCREWED UP: then send your victim enough non-malicious texts to scroll the malicious one off their screen -RECOVERING IF YOU SCREWED UP from Mac: delete ~/Library/Messages. Relaunch iMessage. Sign out under prefs. Restart. Reauthenticate -@die_no_might actually it does for me. Probably depends on the font or something. But I got myself in a lot of trouble... -@main____ because it’s actually a LOT more secure … when you’re not stuck because of a rendering bug -@Irrnick TRYING TO FIND OUT -@main____ you know it's impossible to access this stuff under iOS6 without jailbreak right? -@main____ so this part where I “just” delete something on my iPad… -@nickdepetrillo ffff see I may have gotten my mom's phone stuck. iMessage for Mac was working for me before and then not. -@nickdepetrillo how are you sending the badtexts without getting yourself stuck in a crashloop -@nickdepetrillo thx -@nickdepetrillo can you send me a non-malicious message or three no seriously please -Hey didn’t my mother get an iPhone recently? brb -Hacktivism (unicode trigger warning) https://t.co/4YfCLzb45f -@alicexz @eevee the hardest problem in computer science has been solved -RT @ramblinpeck: "SSID cannot contain the character س " <- damn you Asus -@eevee oh yeah?! Well how do you like — oh. Twirssi. -RT @sazzy: Please know, the whole “women in the industry” thing hasn’t gone away. I have to put up with crap like this? Really? http://t.co… -@VTPG that would be pretty cool if we can figure out how to do it without massive performance penalties -@VTPG I’m just saying: imagine if there were only one web renderer available to me on an entire OS! Boy I’d be stuck then. Crazy, huh? -.@iPlop it is already fixed in iOS7. I think a bug triager did not realize one can cause remote resprings with this and marked it low impact -Note: I do not actually advocate griefing Apple simply because it's entirely their fault @nickdepetrillo is tormenting me -RT @nickdepetrillo: Oh no, someone go to the Apple Care website, get into a live chat with a support specialist and... well you know what t… -Guess who just mastered the ninja skill of opening iMessage and switching to a different thread before the text finishes rendering -.@matt_merkle probably not - the unicode shouldn't be displayed anywhere in the call stack - but I think I will try anyway ;) -RT @matt_merkle: @0xabad1dea I wonder if sending a report crashes anyone's system at Apple... -I am this --><-- close to phoning in an orbital strike on one of my so-called "friends" http://t.co/aBH30AxcZB -@nickdepetrillo you crashed desktop iMessage. I need you to send enough safe messages to scroll the malicious one off the top -RT @tweetsauce: Alphabetically, this appears to be the very last page on the English Wikipedia --> http://t.co/N3eFNOJ0bi -@kurt_culley you have no power here -@nullwhale is good fun -The demo iPads have predictably formatted iCloud IDs, but they're not hooked up to iMessage. A pity. -We're by the Apple Store. Let's find out what the iMessage IDs of the employee devices are -@DrPizza I thought that was true about Chrome but apparently not -@nickdepetrillo but not until you actually look at available wifis on the screen, right? -@nickdepetrillo oh, got it. -@nickdepetrillo that implies the other way around works but not necessarily -I'm trying to see if SSIDs work but I might be having a unicode problem with Windows. Don't have a Linux machine handy. -Now Facebook and anyone else trying to mitigate gets to play "how many text outlets are not processed by the filter ban inlet" -RT @vladkov: @nickdepetrillo @julianor yup, but quick workaround: post a photo and then add the unicode as the location of the photo… boom … -RT @nickdepetrillo: Looks like Facebook has blocked the unicode string from being posted on walls and timelines: http://t.co/RInKAkDsgY -@kylemaxwell but this TYPE of bug can very easily effect All Of WebKit at an unspecified point in an unspecified way. -But no actually stuff like this is why I am against software monocultures. I'm mean to Firefox but guess what it isn't crashing today -@djrbliss it's funny because I can't imagine you holding an iPhone -@elad3 the Chrome crash isn’t a Chrome bug though. -FIREFOX! Good friend. Best friend. You are not to be crashing, yes? Yes. Good fox. #unicopalypse -@segfault314 it was just private messaged to me and guess what -I literally cannot text my husband right now because the messages app is stuck in a crash loop thanks @nickdepetrillo -@panzer @nickdepetrillo just keep browsing twitter from ios you’ll find it ;) -@nickdepetrillo http://t.co/40l5MS0T01 weh weh -@nickdepetrillo actually it doesn’t crash on my Mac. :) -@addelindh @nickdepetrillo yes, because he was texting in Arabic -OH FUDGE FUDGE @nickdepetrillo JUST RESPRUNG ME OVER iMESSAGE WITH NO USER INTERACTION AAAUUUUGH -@tenfootfangs we’re all unblocked now! Toxic water under the structurally unsound bridge. -@m1sp see this is the end result of homosexual marriage! -RT @C0deH4cker: Culprit of that crashing link is this sequence of unicode characters: \u062E \u0337\u0334\u0310\u062E This could be a majo… -@DarthNull @i0n1c it’s crashing my tab -Help I'm under attack from @i0n1c http://t.co/qVyJKzBBRi -@i0n1c my chrome just died when I went I check so I am guessing not yet -@i0n1c how do you mean? Is it blocking the unicode of death? -Tweetbot is superficially immune to the unicode of death but try an interaction like actions -> translate and you should get your crash -@kherge now try action -> translate mr. Tweetbot -RT @chriseng: RT @shadshar "Your attacker respectfully disagrees with your concept of scope." @zanelackey #NSC2013 -@SurprisingEdge I deleted it last night, my first world problem is getting too many answers -@SurprisingEdge um… no answer to what? -@Myriachan @chriseng it won’t, it’s a userspace segfault. -RT @chriseng: Apparently it's this easy to crash iOS and OSX: https://t.co/YmLuiisrwv -@codeblue87 @caughtinflux @chpwn @grp nope. Try action -> translate! :) -@filcab try actions -> translate -@antifuchs actions -> translate ? -There are only 1,112,064 hard problems in computer science and all of them are Unicode -@m1sp but but :( -Thar be iOS segfault dragons https://t.co/i5enaY6oyt -@codeblue87 @chpwn should I infer the reason this was retweeted has to do with how it’s segfaulting tweetbot, @grp ? -@CliffsEsport but only black and only if they’re in stock, right? -@andywgrant thank you! The pink gives some people the twitches -@xthread also I need to delete this one too since it depends on the question I asked and got many good answers for … -@xthread nope! No standard lib. -@Kufat @Myriachan @naughtysecrets oh. -@Kufat @Myriachan @naughtysecrets you know it’s on steam right :p -@thegrugq it isn’t the best we can do but neither is the Latin alphabet… I think it’s stuck -@thegrugq should there still be a Linux in 20 years? -@thegrugq because Torvalds is not good at fostering talent -@Tomi_Tapio fixed width is not sufficient to save you from that. -@ErrataRob except not because this is a kernel -@kivikakk ew what codebase -RT @kivikakk: "gender - String. The gender of the Human (e.g. 'male', 'female'). Default: 'male'" -@mattblaze JUST 34? What does that make me -@coreplane I am aware! Nonetheless, I am quite sure that it links literally nothing not contained within itself. It's a kernel. -When all you deal with all day are binaries, pre-compiliation C starts to look like utter wishy-washy nonsense -@coreplane I am pretty sure the C standard lib isn't being particularly linked here. -@computionist @meursalt you're assuming I'm looking at a Linux userspace application. I'm not ;) -@QuantumG okay. I understand what's going on now then. -@QuantumG in particular in that this is clearly an older version of C than I learned. -@QuantumG which is why I was asking what I should expect to happen, to make sure I'm not wildly off base with The Weirdness. -.@QuantumG I have never seen THIS PARTICULAR IDIOM of declaring a function IN a function and not being able to find its implementation. -@QuantumG I don't see how that's supposed to make me feel better that I have a declaration and no implementation of some function -@jdiezlopez yes but the function, where is it? -I can offer no rational reason for why programming ought be done in fixed-width fonts but by golly it ought -BTW if you are in the preorder queue for a pebble, gmail puts the notice that it's ready under the promotions tab -@OSVDB @timb_machine @_larry0 but I'm busy finding overflows in network code in Xinu :( -Re: "glad I noticed that filename": I just checked and con, aux, etc are still forbidden filenames in Windows 8. Thanks Obama! -@InfoSec208 technically Defcon :) -@nickm_tor (and you could recover the ASCII with some binary gunk) -@nickm_tor is it compressed? It may just be zip in a box -@kivikakk you aren’t?! -@0x90NOP @ErrataRob I met a kid in 2008 who said his entire university was still on token ring with no plan to upgrade -@stillchip @Secbuff oh. Just logged in did you? Yeah. Go use a third party client until UI Team gets the message... -I'm glad I noticed that filename before I tried to download this folder to Windows http://t.co/O1ZQqAzHKn -I think it would be good fun to review the first release of Linux to the same sky-high standards Torvalds holds contributors to now -Someone linked me Dr. Dobb's Journal. It looks like it's 2002 and it's loading like it's 1998. -All you old-timers really come in handy sometimes -@homakov well ya shouldn’t have left Boston huh. -@ErrataRob I was sad when I looked it up and loose source routing had already been deprecated before I could discover it ;) -@m1sp_ebooks @m1sp I am very prejudiced against the year 1248 -@Secbuff @stillchip I bet you pirated it -# 372870979393175552 -@ErrataRob I don’t remember which book it was but I independently discovered loose source routing spoofing while reading it at age 14 XD -@nickm_tor yay -@axiomfinity ahhh this may work out :D -RT @axiomfinity: @0xabad1dea http://t.co/3GIdeml4Zy -Old timers: you had tcp/ip in 1993 right -Like someone’s homemade tcp/ip stack from 1993 or something -@rubynerd err, not quite what I meant ^_^; real applications -Does anyone know of a good archive of old C code from 80s and 90s especially that isn’t maintained anymore -Dat documentation https://t.co/glsWD7xYAy -@hackerfantastic no >:( -@vogon @dijkstracula it’s not about you, vogon! It’s about other people who are not you -@dijkstracula @vogon please take any and all blocking bugs deadly serious. Blocking is used to mitigate severe abuse. :( -@trufae oh gods -RT @vogon: well, twitter conversation lines apparently broke the way blocking works, so that's a thing I'm going to be miserable about for … -RT @dangoodin001: Unpatched Mac bug gives attackers “super user” powers by going back in time http://t.co/rt6kTK921O -RT @adamcaudill: Anyone else seeing this? RT "@Reversity: yep #engadget is serving me malware each time I reload the main page" / @engadget -@ELLIOTTCABLE @vilhalmer you don’t need to tell me! I’m just not clear on whether or not you know what’s under the redaction -@nelhage that’s so yesterday! SEA hijack is unfashionable now -RT @SecurityHumor: "Be advised that the IP address 482.388.718.283 is fictional and does not correspond to an active or dormant network." #… -@ELLIOTTCABLE @vilhalmer wait you don't know what your criminal record says either? >.> -@comex you can see the first couple times you RT'd me on this graph from zero to ten thousand http://t.co/6z3NuGIDrx -How weird is it that when Nintendo says "play in 2D" they mean what they used to call "play in glorious ultra-real 3D" -RT @jennifurret: I'm always blown away by how many people go "Me too! I thought I was the only one!" when I talk about mental illness. This… -@boblord get me the UI team so I can <s>strangle</s> have some polite words about these tweets jumping all over the place #urgetokill -Now twitter is putting incoming tweets at the top and then violently yanking them away. Okay I will try to stop complaining... much -@i0n1c @ErrataRob we are all going down TOGETHER -@ErrataRob yes -RT @_ashleyelise: @0xabad1dea it also shows people that you have blocked in those convo blurps -Especially since it's now showing me replies TO people I don't follow and isn't showing me the original tweet #ComplainingAboutChanges -no I understand they're replies but that doesn't mean this method of operation is making sense to me regarding repeats -um so are tweets from earlier in the day just randomly going to pop back up in the web interface attached with blue lines or how does-- -@ELLIOTTCABLE so: they can see that there is a criminal record but the contents are redacted? is this standard Alaska procedure? -Re: the cracked jars: @codeferret_ has learned web hacking pretty much from scratch since coming to work here and he has seen some horrors -@ELLIOTTCABLE wha -RT @arstechnica: In historic vote, New Zealand bans software patents http://t.co/iV8jWeHctB by @joemullin -.@shanley @techreview @paulg @eevee oh look it’s a point, there it is, reach out, aaaaaaand missed it -RT @shanley: Editor MIT @techreview defends @paulg's misogyny & discrimination; says startups have "plenty of weird skin colors" http://t.c… -@blueben thanks! -“I was much happier before I knew the internet was really just a carelessly stacked pile of cracked glass jars” - @codeferret_ -@boblord BETTER NOT SCREW UP HUH. -@Viss my true mission has succeeded: to forcibly inject pink into a blue office -@boblord of course you realize if Twitter ever goes down due to a hack I'm going to mail y'all live squid or something -@Viss neeeeeverrrrrrr. -And that was the time I sent Twitter flowers for not going down and they all suspected it was a trojan of some sort -@boblord oh good I'm surprised it actually got there :p -I can read English just fine. I can read Dutch pretty well. But both in the same sentence is kinda hard I guess -@greenrd yes -"Password incorrect. Wachtwoord vergeten?" If you're gonna translate an interface in a commercial product... -@wompa164 and Zelda and Metroid and Animal Crossing and Fire Emblem and Kirby and oh the massive multimedia franchise Pokemon -Of course, I am not some sort of business person. My only credentials are being a loyal fan of Nintendo for twenty-two years & gamer angst -@Mordicant let’s wait and see how 2DS turns out because 3DS was a misguided venture in unnecessary costs -@ochsff I use imgur with twitter and generally it would happen immediately so that’s probably not it ? -.@akopa yes. But Nintendo has more good stuff than Sonic Team -I would save Nintendo by turning it into a software publishing house. Their own and their closely allied smaller brands. Seal of Quality. -@ochsff well this isn’t suspicious -@SzymonSzydelko that second one is artistic interpretation ;) -"Algorithm for causing your employer all sorts of exciting and entirely foreseeable problems" -Someone just told me their Java textbook has an "algorithm for extracting dollars and cents from a double" -@WhiteMageSlave this has been canon since Oblivion! He was the guy who wakes you up on the ship in Morrowind -@m1sp audio engineers are terrible people -@m1sp actually compat problems are pretty low because there is only one OSX. Shipping “Linux and OSX” is easier than “Linux and Linux and” -@JeffHandley @blowdart the sad truth is that the typical entry points of new coders to PHP just don’t talk about this stuff -@Paucis__Verbis oh that is attractive what is it -@chriseng yeah but you’re in Iceland so clearly you’re never coming back -@m1sp AAAUUUUUGH I am revoking your photoshop privileges -Oh no I forgot to bring back @chriseng’s DVDs oh wait he is in Iceland NEVER MIND I am keeping them forever out of spite -@m1sp but yes come to the “just like Linux but with more corporate funding” side -@m1sp there is similar Expensive software for Windows but none that I am aware of for Linux -@m1sp to my frustration I prefer to notate this type of rhythm in sixes which I can do with chiptune but in GarageBand it has to be 3/4 -@m1sp GarageBand (comes with OSX) and carefully curated and hoarded soundfonts and gentle coercion to get them to load -@m1sp btw did you hear the orchestrated version of Stormwaltz I am envisioning it as Ismyrn teaching Barsamin how to be epic ;) -The Gameboy Advance is the greatest handheld console and the fact that it coincided with my emotional early teen years is coincidence -@chunter16 honestly this thing is closer to what I wanted in the first place: GBA just more powerful -I admire the artistic techniques of effective adversaries, at least until they take down Minecraft login servers -@mikko @spacerog I’m charmed with how effective SEA’s tactics are. Security teams need to update their playbooks. -I’ve actually seen a well-maintained Sears and Roebuck mail-order barn in Virginia. I wonder how many are still in use. -@tsdNull if you click through the video it appears to be on the official Nintendo YouTube -If you think the 1980s Sears Catalog is somethin’ — in the 1880s they had mail-order barns. http://t.co/4bo8smUSUK -@khronosdm I thought so but apparently it came through the official channels… -@m1sp it could be, but, ugh it looks unbalanced -@ra6bit get it, it’s 2D haha… -RT @TimoHirvonen: Grrrrrr, yet another Java PoC... http://t.co/PVy9pDUaF2 (thanks for the link, @kafeine!) -Nintendo is doing a good job parodying themselves http://t.co/1ZwGYkCESD -@vogon are we sure this isn’t a parody? Because if I were to parody Nintendo backtracking on the 3DS, the lack of hinge is a good touch -Actual text of law, part 15 http://t.co/AXjLCoiB8C via @mfukar (if it’s not clear: I was joking) -@mfukar I was hoping it was clear I was being facetious :( -(I’m pretty sure the “and” there means “in conjunction with” but that’s not as funny as the casual interpretation) -We’re all criminals! This was their master plan all along. http://t.co/FVT2tXBOuN -Amazon opened as a book store in 1995 and in 2013 it maintains a significant portion of the internet as we know it #scopecreep -@m1sp why would you say that :( -@arcticf0x they do actually. SEA already got some access a few months ago and was unable to change twitter :) -@m1sp I would be delighted -@m1sp I think my subconscious just finds the trope play there funny :p -@arcticf0x and it’s up to said organizations to learn to adapt to this tactic :) -@arcticf0x a bunch of script kiddies who are consistently able to break into famous organizations with phishing are not “lucky” but “smart” -RT @dresdencodak: In my experience, when cartoonists complain openly about their lack of skill, it's never fishing for compliments. We all … -@m1sp I had a dream someone complained my male characters are just decorative husbands with no agency -@arcticf0x not covering up anything, I suspect. This is how all of SEA’s hacks have gone down. -@shish2k it is genuine :p -“Melbourne IT has confirmed that the SEA used phishing tactics to gain access” raise your hands if you are the least bit surprised -RT @sakjur: @0xabad1dea Good morning :) You don't have a UEFI Secure Boot jailbreak for Chromebook Pixel lying around? ^_^ Asking for a fri… -@nlstart oeps :) -RT @_wirepair: if the NSA can make a typo and collect all of Washington's calls. Why can't the IRS make a typo and make all our tax dollars… -@m1sp there’s a reason Ziazan is so worried about running out of coffee with three gods in the house… -@blowdart I’m afraid I have spent all my sound and fury tokens for the night -@m1sp good cover concept? After being redone by a real artist who can color, of course. http://t.co/OWs4oWpjJJ -@blowdart are you encouraging me to be mean to children -@CaseyDunham yep. Not to be rude to some casual acquaintances but maybe they are not as intellectually fulfilling as the internet -This sort of "internet talking doesn't count as talking" stuff really grinds my gears. By gears I mean circuits. http://t.co/dTrr5P2SUk -I just sent flowers to someone on an impulse. It’s cheaper than buying computers and ball gowns on an impulse I guess -@Kim_Bruning works for me? Your DNS may still be poisoned http://t.co/5b63jQN5jN -Sorry that pastebin was the OTHER Melbourne IT compromise. They all look the same. -.@kivikakk @hk_net hey at least they’re not root, only www! ;) -@kivikakk I was actually expecting Melbourne to be the founder’s last name and you’d get all offended I’d blame your city ;) -@kivikakk THIS IS ALL MELBOURNE’S FAULT -@demize95 the official mobile clients might have hardcoded IPs to fall back on but I doubt it -@demize95 they could bring twitter down entirely if they can change the IP and it would just be Gone -It looks like SEA is trying to see how much they can poke Twitter without knocking over the actual API (because they rely on it too) -RT @jedisct1: twitter[.]ae now hijacked -@hemantmehta I’m allowed to be a grammar guardian on a site about teachers right -# 372506243543212032 -I think I like this Cicero guy http://t.co/Ws4fDHRE54 -Google Drive: "cannot sync this file for unexplained reason" Me: "okay here is a 'new' one that is actually the same file" Drive: "ok!" -@mtheoryx Syria Electronic Army. Political script kiddies with a high success rate. -@mtheoryx not at all, same registrar -@mtheoryx it was but it seems to be fixed. They did not bring down twitter (by choice, I think, as they need it) -@mtheoryx their DNS was compromised by SEA. SEA’s modus operandi is email social engineering. -@cfarivar I posted it in a second comment but http://t.co/Br1qXF7ycy has a quote from NYT’s chief information officer re: email safety -NYT telling their staff to not send any emails shows they actually paid attention to what brought down such noble competitors as the Onion -In any case I concede that the SEA is very good at their little niche http://t.co/Br1qXF7ycy -Why are registrars so annoyingly prone to getting popped -@znjp @marshray I’d assume it’s because you can do them by hand. I tried SHA1 hashing a string by hand once… -@vogon the future of the human race is a smoke detector beeping just out of reach forever -@boblord @0xcharlie uh do you know about your Whois just checking -@matt_merkle @demize95 such things are usually managed by a third party so... -It looks like the SEA has gotten into Twitter's whois settings via @demize95 -@demize95 uh oh is this in DNS -"Someone" has slipped me the Defcon DVD set. But I'm too embarrassed to look -@int_SiPlus_void no idea. It fixes(tm) vague things(tm) to do with .net 4.5 -(If you elect to "get help" it takes you to a knowledge base article with a patch. Instead of just... I don't even know) -@int_SiPlus_void the last of those, I assume -.@int_SiPlus_void no this is stock Windows 8 -This is a bit of a dramatic way to say there's an update available, don't you think http://t.co/OuiL1Ftg4y -@nvll @vogon be strong ;-; -bitter irony: what I thought was a misplaced quote was actually a use of the very "e" modifier whose name I have cursed #php #EasyToMiss -@vogon PHP was my first language and I turned out fine -I'm that horrible person who's judgmental of all code like it's been submitted to a high art gallery -@waywardhem blehhh https://t.co/tc3NyAWwIl -@demize95 at least they're hashing correctly -@demize95 hardcoded min password len of 6. Nested if-pyramid from hell. Minor (non-persistent) XSS -I made the mistake of looking at a PHP repo listed under "trending" on github and oh my gods it's a login script and it's terrible -@apiary @LambDaTom @The1TrueSean yes because Europe is on another planet that'd be silly -@apiary @LambDaTom @The1TrueSean yes and you can take a boat to Europe but that doesn't mean Bostonians won't whine -@LambDaTom @The1TrueSean on a Bostonian scale we are on another continent -wow I just submitted my first pull request to an open source repo I'm big time now (it's to correct a typo) -I'm still not over the fact that PHP's original implementation of microtime() returns a string you have to manually parse ("fixed" in 5) -@xa329 uhhhh >:| -@Rddesjardin sort of. The nearby mall is the suburban leaf node of one of the bus lines. -I should probably clarify this is way out in the suburbs, not the inner city -@mtheoryx no I'm saying ls --recursive existed when I thought to try it and that's all I care about. -There is consistently a beggar in the same spot near the office- but a different one EVERY day- to the point we suspect a social experiment -RT @chpwn: @xor @0xabad1dea Sorry, that was a bug. It should be fixed later today. -@mtheoryx "the program 'tree' is not installed. You can get it by typing..." :p -Why did I only just today after nine years intuitively infer that `ls --recursive` must exist -Somewhere, an IBM mainframe programmer is grumpy https://t.co/TyzHqNzsFc -@qosys *checks price* yeah uh so about that... strictly hobbyist here -@qosys garageband + carefully hoarded soundfonts -@alex_gaynor we do. -I don't know OpenSSL, is it?! https://t.co/WfbvQBS4kD -dear heavens @soundcloud what does it take to not get one of my weakest uploaded pieces to be the first "related" track all the time -I finished the stormwaltz https://t.co/g80bf2YC7q -RT @xor: @0xabad1dea @captainsaicin alright I've posted to imgur http://t.co/YrJfZPTz8F -@xor @CaptainSaicin do you know imgur? Their no-login uploads have a reasonably large allowed size before they recompress -RT @xor: Ugh, Facebook's transparency report requires login. Screenshot of entire report attached. http://t.co/Zfsl1lntH9 -RT @howtogeek: Microsoft screwed developers by not releasing to MSDN until GA, even though the single biggest Windows 8 problem is a lack o… -@profoundlypaige mint -@numist @0x17h Yellow Toner Needs Food Badly -@pippin @kyhwana “It’s me again! Humor!” -@JulianBangert þat is entirely besides þe point ;) -@Irrnick imgur’s twitter card must be broken… -@SrslyJosh I did both. Hate them both. -@nickm_tor @mjj122 *cough* -@0x17h lemme guess: outed someone as trans? -@0x17h I feel like I might have missed something exciting -@nickm_tor yeah but it’s the kind of thing that makes me want to write my own to show them who’s eight-bit boss -@dhw neither was I :( -.@nickm_tor I can only assume a fundamental confusion of machine word size and address space endemic to the 32-bit generation -@nickm_tor http://t.co/tZU5arRDnL -@Sonikku_a those are a different model. I assure you those are not the context :) -Start reading something. It refers to the 6502 as a 16-bit processor. Stop reading something. Rage into the night. -@d0m96 just GarageBand actually. The trick is nabbing good soundfonts and coercing the thing to actually load them :) -Work in progress -- I am trying to go for the "Game of Thrones soundtrack" type of sound https://t.co/g80bf2YC7q -(not being frivolous: I use my keyboard as, well, a musical keyboard.) -my keyboard needs a pressure sensor so it knows how much I really mean it -@ra6bit see also https://t.co/F8wEionZcW -@ra6bit there were some very dark and depressed times in between -@ra6bit ummm, so about being "the enlightened one".. ... ... ... -# 372145732662226945 -@ra6bit because Jefferson was a kidder and Franklin was just going through a phase -@jlwfnord @QuantumG yes I am aware the protestant reformation started in Europe -@jlwfnord @QuantumG God's own hand reaching into the hearts of men to set America on the path of manifest destiny (no really it said that) -@attritionorg sorry boss haven't checked the main timeline since after lunch won't happen again boss -@geekable the important bit is he used a 6" ruler (span in this context == width of hand spread) -@rgov tide goes in tide goes out you can't explain that -@elwoz @djon3s well, that's part of what I'm saying, a private school can be literally anything -@jlwfnord unfortunately I can't find the biology book but I assure you it had pictures of Hebrew kids riding triceratops -@sakjur (in many American secular textbooks they will say Before Common Era and Common Era but it is not mandatory) -@sakjur wait, so, of all the possible things wrong with that, you're offended by BC / AD? XD -@pborenstein however in south of the mason dixon's defense I also went to a school that used these books in New Hampshire -@pborenstein Catholic schools do not generally teach such a hard-line literal interpretation of biblical texts (they do other weird stuff) -@djon3s ie a Texas public school and New York public school are plenty different but a private school is just in another castle entirely -@djon3s assuming you're not American: there is a vast and deep gulf between any private school and any public school -@bhelyer yes, referring to the transition period, not to the complacency period -@willjohansson fun fact, I found all of these inside of five minutes, the entire book is just this stuff back to back to back -and now all of you know why I had a brief but fruitful Insanity Phase -No, my foreign friends, that is not a textbook used in *public* American schools, they're slightly more fair-n'-balanced -I feel like today is a good day to randomly drop this link to pictures of my actual high school history textbook http://t.co/XqDYtlr3OX -@attritionorg http://t.co/ktmXAHhriX -@Myriachan I know, I have studied Greek ;) -@marczak @newsycombinator yes there was a fuss about it beginning to exist at all recently -"It's me again! The Debian OpenSSL bug!" http://t.co/lbaiJXSXd6 -@demize95 I imagine getting the ones in Spanish is not really a problem but I haven't actually seen an ID with such before -@demize95 even before ASCII America systematically forced incoming immigrants to respell their legal names with no funny squiggles -@demize95 I can tell you're not American -@xa329 it would be a manga if I could draw ;( it is definitely 100% novel :p -@Se3ek I have never met someone whose native language was not English who did not pronounce it that way already -@eevee I did use to have a flower symbol in my google name before G+ but people complained it broke sorting and search by name -@eevee because Google Plus blocks flower symbols -@Samurai336 overhang.... -@Samurai336 it has other ligatures like in "fi" the dot will be subsumed into f's overhand -@Samurai336 no just ordinary TTF I like the font IM Fell Great Primer (which is a mimic of 1800s typesetting) http://t.co/MZJaETAfvH -@Samurai336 a good font like I use for compiling my manuscript will create ligatures automatically -I should start insisting my IRL name is spelled Melißa so I can break websites with that too -@vogon @bburbank denial frustration bargaining acceptance patching the wad -@m1sp @WhiteMageSlave he slept like that. That’s a valid, non-fan service reason, right?! -@CyborgCode I’m saying it’s not a type of compromise that implies server-side access to data. They’re spray painting the outside. -@m1sp I fixed several before sending the release candidate draft to People -Though threatening to change the name of a country on Google Maps is not as effective when your delivery method was DNS hijacking -@demize95 @newsycombinator http://t.co/1QFbsBheBH -@eevee wh a a ? -@demize95 @newsycombinator probably DNS poisoning then unless you’re jesting about agreeing with their political demands re: map name -RT @newsycombinator: Google palestine hacked http://t.co/F3O8KjoF6a -@DrPizza well when you think about it the alternative is fighting the snow -@DrPizza I unblock pretty much every website that uses Project Wonderful -@WTFuzz I am incredibly jealous -@demize95 my ego is already dangerously cheesy -@nelhage I do, but people tend to download and send to iPad, as it's a PDF -1) send manuscript to a bunch of friends 2) find typo 3) infinite shame -@WilRockall I never touch the dynamic stuff and often do not even remember it exists :) -I only just noticed that our own list of flaws we check for now officially includes "client-side Java" as an official vulnerability -@mubix good luck finding a computer that won't crash under the load on kernel memory -@technololigy I like your new bio a lot -@DrPizza @gsuberland you just have to enumerate them with 16-bit unicode. Check out my é drive -Without dragging out my copy of @markrussinovich et al, I suspect Windows will ragequit before you get to two billion hard drives anyway -Today on "if only I could exploit that": "hmm... this will overflow if your computer has over two billion hard drives" -The face of a cat finding Turing-completeness in another unsuspecting file format http://t.co/xWpjUzP3Mk @sergeybratus -RT @vogon: humanity has been capable of powered heavier-than-air flight for longer than women have been able to vote in the US -Is that to imply that Canadians are NOT afraid of dragons http://t.co/UvuU5apGFB -@_____C @puellavulnerata except plaintext email is not buggy and incompatible and is in fact the standard -@puellavulnerata most clients support expanded attack surface! -RT @puellavulnerata: My bank now sends me e-mail with a text/plain component that explains "most e-mail clients support HTML and you should… -“Using an ad blocker so the images aren’t seen is a crime!” Thieves! Time to go arrest everyone on the internet who is blind! -Calling all @shit_hn_says we got a code red https://t.co/DRyJj4V70H -@akohlsmith @natashenka not an intentional one. I’ve had people tell me their fridge was a source of interference before -@savagejen oh my gods -@eevee I have had the thought "take a screenshot and flip it over" as a method of taking a photograph of myself at my desk so... -@m1sp "someone" scanned my old letter to myself instead of sending the envelope to me and I am almost too embarrassed to show you. almost -@savagejen tried to tell her that ones that start with @ don't go to all ten thousand ;) -@savagejen yes but I didn't say so because everyone loves using the "how could you say that to ten thousand strangers" line on me... -I thought if I told someone where a letter I wrote to myself when I was 13 was and I wanted it back ***DON'T OPEN IT*** was implicit -@m1sp @WhiteMageSlave meanwhile, in book 2 http://t.co/HkX21jBhDz -@Kim_Bruning @vogon only one of the characters is Fake Dutch just FYI ;) -@nickm_tor can’t tell if amazing pun or just been into the Naruto -@m1sp I am sketching out the opening to book two right now and it is the most manga thing -@PhilippBayer @supersat well they’re clearly really bad at it -@dan_crowley and that’s how you internet, FIN -@dan_crowley that was your SYN. This is my ACK. Now you give me a SYNACK please ACK -@ShadowTodd remember the time you publicly consumed an item of pop culture despite already being of the opinion it wasn’t that great -@natashenka try everything with a screen, and the refrigerator -@natashenka I’m not an expert I’m just good at getting into trouble and back out of it -@armcannon because the world is so short on generic guitarists -@natashenka do you have any idea what frequency it is or what it “sounds” like ? -@kattkieru \o/ -@0x17h depends. Some just let it slide, some watch TV services, some visit a local church at random -@quantFlu I'm not, thank gods -@ryanfenno I find it utterly astounding that even Sun has better visual appeal on docs than Oracle (especially since they're the same docs) -Tonight on interesting vulns: this SSL certificate checks out! I'mma just pull the organization name out and use it as a filename verbatim -# 371783547943526400 -@ryanfenno serving up a few MB of static HTML once a week is truly the limit of computer science -Everyone: my question was W H Y not H O W ;( why would Oracle block public documentation from being indexed by all bots -@PhilippBayer yes the question stands W H Y -@gsuberland what do you mean? there's nothing cached about it, I can see the robots.txt with my own eyes, it denies everything to everyone -W H Y it's not even anti-google - it's user-agent: * ! http://t.co/RlbKHeLLQo -@dveditz My father is a devoted fan of Tolkien. I don't think my mother has ever read a fantasy novel in her life. -@cyclerunner PATCH NOTES v1.0.0.3 * resolved temporal paradox - please reboot canon -@zcutlip I escaped before the mandatory transformation into Northern Virginia Barbie -@chort0 http://t.co/Bx3NlSYT4d I lived there for a few years everyone chuckles about the rogue backhoes -@chort0 have you heard about the treasure allegedly buried in southwestern Virginia? People take backhoes to others' backyards at night... -As a former resident of Northern Virginia I am pretty sure the soil is in fact cursed by a malevolent cult and that's why AWS goes down -@bobpoekert IT'S ALWAYS VIRGINIA WHY IS IT NEVER CALIFORNIA -This is the state of our internet: I hear that two services are down and I know something happened at Amazon's Northern Virginia datacenter -"instagram and vine are both down" "what at the same time" "yeah" "this looks like a case for Cloud Detective" http://t.co/UrF3hbu6XD -@savagejen I know a girl who did a ten-minute video demoing that and teenage boys won't stop sending her messages on youtube -@MarkKriegsman btw I finished my novel that's my true hackathon completed -@MarkKriegsman I knew of it - it's parodied by The Princess Diaries - I just didn't realize how ridiculously awkward the rulership setup is -@savagejen *scratches neck* ow my bare skin -@pajp I couldn't figure out how to turn that stuff off and I had a one megabyte file system allowance including versions it was hell -@savagejen it's been amusing to watch everyone project their favorite minor league brand as the mythical Third Phone of my dream -@vogon @Kim_Bruning ps one of the language spoken in my novel is Fake Dutch which is just Dutch with Abadideaized spelling -@vogon @Kim_Bruning *sings off tune* VILHELMUS VAN NA-SA-WE BEN IIIIIK VAN DOOUUT-SEN BLOOOEEED I'm so good at Dutch -@vogon stop giving me technical answers when I am marveling at the artistic majesty of how ridiculous it is -no joke there is a country whose king is elected by another country which is a republic Europe how did this happen http://t.co/EjJ9Y0TsKA -@beist that's rough. Hang on, I have some PHP... -Did you know one can be elected to Their Serene Highnesses Highness the Co-Princes of Andorra -@geekable it's been edited to a Certain Extent and it is now in "ignore it for a while before rereading it" phase -@ulysseas yeah there's nothing worse than "forget to take it and you'll get sick. Take it twice and you'll get sick differently" -"Dear... thirteen-year-old... self: do not... write solemn vows... on Lisa Frank unicorn stationery. Sincerely, just kidding go ahead" -@mbrit planning on self-publishing as ebook because I think my main audience would be those who read other online stuff I enjoy. -@mbrit wrote, as of two nights ago :) and yeah I sent it to some good friends etc. -@CyborgCode unless of course one specifically wants to be a professor -@CyborgCode I don't particularly feel that I need more degrees, they are necessary to advance in some sciences but not CS so much -You can tell I am actually a programmer because the novel is now in "release candidate" stage -My genius is surpassed only by my ability to take a pill out of a medicine bottle and lose track of it before it gets to my mouth -@m1sp you're fired for not questioning Clarion's last action :p -@jason_shell well I wrote the novel so if they don't they will soon -You see here a NOVEL. It is about RELIGION. Also about GAY. It may press some BUTTONS. Send copy to parents y/N -@WhiteMageSlave @m1sp I have so many subplots plots within plots within the tears of shippers -@tomslominski http://t.co/ykGxv1BuZz -@elad3 I seem to be magnetic to early adopters of all sorts -To show you how messed up my psyche is, in my dream, the Third Brand of Phone pretty clearly ran VMS. -@Radeachar twitter is so easy to manipulate ;) -@m1sp why do I feel like I've written almost four hundred pages and barely advanced the overall plot at all -@Kufat yes. and Symbian. -@pusscat D: -And now all of you tell me your brand loyalties and so far none of them have been Blackberry. -I had a dream last night that I finally found it: the legendary Third Brand of Phone that was neither iPhone nor Android. What nonsense! -RT @PRISM_NSA: What's a nice girl like you doing in a keyword search like this? #NSAPickUpLines -RT @dhh: Remember when NSA was caught recording phone sex between American's overseas and passing it around office for laughs? http://t.co/… -@m1sp and may he be damned for it! -RT @dan_crowley: There's another word for #LOVEINT: Stalking. -@Ruzvay http://t.co/ykGxv1BuZz -I have been reading my *own* book literally all day, and it is a LOT longer than I thought it was -@MechMK1 yeah. stupid unicode tricks -This is a good way to scare yourself to death with a search box http://t.co/F0DczG1CYf -# 371397972606451714 -@m1sp if you read Glory in the Thunder backwards it's the story of an old man who doesn't kill all of his friends -@puellavulnerata being IT in a prison is interesting in the academic sense because there are malicious actors physically present -@puellavulnerata as staff of the "free to quit to the extent that any lower-middle class person is 'free' to quit jobs" sort -@puellavulnerata fun fact both my parents have worked in jails (there I just ruined your opinion of my family forever) -@ID_AA_Carmack except htons, I think we’re stuck with that one… -@lyyx because non-Americans don’t have RIGHTS, silly! ;( -Jails and hospitals are both constantly catching workers looking up acquaintances in the system. Or random interesting strangers #LOVEINT -This is only the single most predictable misuse of access to information in human existence #LOVEINT http://t.co/xLp5tFym5t -@The1TrueSean you should see how many smart phones you can put on a railing over water -@maradydd @sergeybratus eeeeeeeeeeeeeeeeeeeeeeeeeeee -RT @chort0: So the author of the PATRIOT act and the UK Terrorism act both saying they're being abused. WHO COULD HAVE PREDICTED THAT??? #I… -@m1sp you know I'd be the melodramatic one saying "there isn't room for us all, I GIVE UP MY PLACE FOR YOOOOUUUU" -@Packetknife I’m rereading it to patch a few things up then giving some copies to Trusted Friends -@froztbyte yes, the one I finished last night and was generally freaking out on twitter about 8) -@trap0xf what in tarnation is this contraption that guards its bytes so well -I never would have finished the novel without @m1sp best friends forever until the end of the world or the eve of our mortality whichever -RT @AutomatedTester: A QA engineer walks into a bar. Runs into a bar. Crawls into a bar. Dances into a bar. Tiptoes into a bar. Rams into a… -RT @commentisfree: The detention of #DavidMiranda was an unlawful use of Terrorism Act | Charles Falconer - who helped introduce the act ht… -@JackLScanlan I hate to break it to ya Jack but I think your parents might have secretly been white -RT @usayd: REALLY from a kids book: "As they went through the airport, Olivia was searched for weapons. She was very pleased." http://t.co/… -@0x17h I just woke up but my fake detectors are ringing -@m1sp I'm doing a read-and-fix scan now... wooo -@m1sp /me grabs you and dances -@Xaosopher I know what is meant by that phrase, but the body count is pretty high -@inversephase I'd say my *taste* has improved considerably. But when I pull out old notebooks I am not ashamed of the writing itself. -@inversephase I was always the grammar worksheet golden child -RT @SecurityHumor: When someone starts a conversation with "Promise not to get upset?", just punch them in the face to save everybody’s tim… -@chriseng yeah, it’s like attending a wedding, if you don’t object the very day it’s declassified you have to forever hold your peace! -RT @SamSykesSwears: This picture was intended to illustrate the "horrors" of suffrage, but damn if that doesn't look like an awesome bar ht… -@m1sp I think I succeeded in making “Ani” into a woobie in four whole pages of prologue -@darkuncle I generated the PDF myself, sooo..... 50/50 -Problems that should not exist: having to reboot the iPad so I can get a large PDF open in userspace without malloc failing -@kevinlange I should probably read the last several chapters I just wrote first -@strathmeyer http://t.co/wm2hA0bX1R -If you wonder what on earth the novel is about (not hacking), this is a lot easier than trying to fit it in a tweet http://t.co/ykGxv1BuZz -Word count (aside from final editing) is 106,940, almost exactly the size of Prisoner of Azkaban, this pleases me -@megapint I prefer to think of myself as having a different sort of genitals! ;) -@elimisteve the final http://t.co/Pt93gknC4m is girl-on-girl. -@hypatiadotca YES just let me do one more readthrough to patch up some minor rough spots -@hypatiadotca PS. IT'S REALLY GAY -@GarethLewin yeh -@elimisteve vaguely steampunk take on the Silk Road. Teenagers. Politics. Blowin' stuff up. Gaaaay. -@Tomi_Tapio at this moment only @m1sp because I need to reread it myself and straighten up a few things -.@Jedi_Amara yeah in my personal headcanon I am still 17 -Dear thirteen-year-old me tell that random girl on the internet she was wrong that you'd never finish a novel it just took until you were 25 -RING-A-DING-DING hey what's that sound oh nothing it's just the sound of me FINISHING MY NOVEL LIKE I SAID I WOULD TWELVE YEARS AGO -@attractr thanks <3 I already went through my sound-and-fury newly forged atheist phase, to the luck of twitter -@attractr always there, strangled repeatedly, until I went through an outright suicidal phase and came out the other side a few years ago -@attractr for the record I am no longer a fan of the Trumpet Sounds, Everybody Dies club. -@attractr and yeah I could read pretty well at six. Read the whole thing. Maybe barely seven? I don't know, doesn't much matter. -@attractr that everyone who did not bow before my god was going to have the blood squeezed from their bodies to the depth of bridles -@attractr now imagine when I was six years old I was told that every word of Patmos: The Acid Trip was literally true -@m1sp it is a wicked thing I have done -# 371021337097023488 -One of the locations in my novel is actually just a really good game of Dwarf Fortress I played back in 2010 (it's a secret to everyone) -@kevinlange @eevee I bet this would be hilarious if it would load :( -RT @KristinPaget: Attention, world! Hormone therapy is "basic medical care" and does not equate to "sexual reassignment surgery". Just FY… -@attractr I feel educated in all the wrong ways that I actually know which book is a bad acid trip on Patmos just offhandedly -RT @RajaSandhu: Very short story of a designer... http://t.co/CzqBQF6bii -@nickm_tor my Hermione Instinct to lecture you on the reason the term is used is overpowering -@TweetsofOld was the context discussing the name of the town of Ladysmith by any chance? -RT @SLWorona: No spying. Well, spying, but legal. Well, a few illegal, but unintentional. Well, a few intentional, but not many. … http://t… -"Drivers carry less than twenty dollars at all times" Yeah well I just tipped you $21 what now huh yeah I thought so -I don't know why someone said "I'm gonna ask Mark Twain to pose shirtless" but I'm glad they did http://t.co/iz5Icotpm1 -Hey husband, come here, I want to try something http://t.co/5LWe4tG07r -.@kattkieru is it working http://t.co/q2km6AfTd0 -.@kattkieru then I am channeling Stan Lee subconsciously because I just woke up -@nickdepetrillo incidentally my cultural narrative does not overlap with yours on this concept so there is an infinite gulf between us -At some point we just replaced stories of fairies and magical knights with stories of aliens who get power from the sun (and Batman) -Of course everyone is talking about Batman. Shared cultural narratives are the building blocks of cohesive civilization. -RT @caulkthewagon: .@nathanLfuller Okay, then @jaketapper and CNN, you can never use the name "Lady Gaga" ever again, or any other celeb wh… -@kevinlange Dear Husband has been angsting about character choice -RT @chimeracoder: I've also been blown away by the number of similar experiences that people, both strangers and friends, have shared. *Tha… -Read this story about the TSA. To the end. There’s a plot twist. http://t.co/LfsEmeLtbM -@tapbot_paul unsolicited UI suggestion: visually distinguish between jpeg instagrams and hellnoise instagrams before I tap #heartattack -Reminder: we have the secret opinion now and the opinion is not gentle http://t.co/XOTdF3EWT0 -RT @savagejen: None of our heroes are perfect, which is why it's important to limit the powers we grant them. It's damage control. -@radarpixie depending on context, I am "from" the Netherlands, New Hampshire, Massachusetts, or any of six places in Virginia -@radarpixie it's a long story, but in this case, rural Virginia -RT @maxious: @0xabad1dea check yo pizza privilege -Yes indeed I come from a place where there's no pizza delivery any time of day, never mind so late. Third world stuff I know -It was worth moving across the country solely for "I'm hungry, I don't feel well, and it's about midnight. Let's order pizza" -@m1sp Ding! The Old Draft Fragment is finally integrated! -OH "I'm thinking of writing an Atari demo now. But that might be the legal definition of insanity." -@adpaolucci I'm about halfway there! -The last few thousand words of a novel are the hardest to write... -@m1sp ctrl+f "telescope" and behold the dialogue that is the peak of my writing career -# 370634543209791488 -@focalintent I feel mostly better so I think it's a large block-by-block move and erase -I have successfully passed the fever token to my husband! -@SurprisingEdge IDK. I noticed this because I could not actually fit the connector in the socket due to the offending particle -@amazingant It's cool except that the magsafe 2s are EXTREMELY prone to falling out -Warning: if a tiny piece of magnetic material gets lodged in a magsafe connector port, it is the dickens to get back out -.@EWErickson is the sort of person who makes me reconsider my philosophy of the goodness of the human heart http://t.co/5wIlOQqs0d -@neontrotsky @puellavulnerata @EWErickson it must be nice to live in a world where you can literally demonize people -@kaepora I assume it isn’t her legal name yet (and may never be). Chelsea “Bradley” Manning? -@gsuberland you think our prisons even acknowledge transgenderism as a concept? -If you can remember to call Manning “Chelsea Manning” from now on, that is one little victory for one sort of freedom — of identity -RT @ioerror: It appears that #Manning has made an extremely important statement today: https://t.co/xevyH1PBPd -RT @tv_Amaro: #Syria A 10 year old girl drew us what she saw in her village. More compelling than any press report. It sums it all http://t… -@Viss nooo not the beautiful hair -@mattblaze I’d guess by packet in which case that’s easily all the important bits -RT @avibryant: OH @nelhage "DNS was always doomed to be a disaster... naming and caching, that's _all it does_" -RT @suchitagarwal: This is how all deploys happen at Twitter https://t.co/867XYEUALy -@lllamaboy this is the part where I’m not sure if you’re kidding -@m1sp @hypatiadotca @TonyAbotMHR and we can't let Gillard continue to be the Prime Minister of This Napkin. -@m1sp ohai down under. I wrote a bunch! I am too tired to write another word I think so Little Miss Introspection is gonna have to sit there -@hypatiadotca @m1sp everyone should have a friend who makes a perfect markov chain input. -@kyhwana @nrr with all respect to leafypants, we are not two souls of one heart or something sappy like that -The @m1sp x @0xabad1dea fusion bot cuts straight to the heart of the matter https://t.co/oXrpA7I2fJ -@trevortimm @MalwareJake @EFF I probably owe y’all some donations… -@nrr I… I… … …. -RT @conor64: UK forced David Miranda to give up his email and social media passwords on threat of prison http://t.co/j4zIv8Q6WU -RT @trevortimm: This footnote from the just-declassified FISA court ruling on unconstitutional NSA surveillance is extraordinary: http://t.… -@jesster_king because I find Saint Guiltystine supremely annoying -@jesster_king @m1sp it turns out to be a curable condition, if you are whacked upside the head with enough books. -@jesster_king @m1sp Yeah. I did that. For twen'y years. -@jesster_king @m1sp you know I spent about twenty years being super religious right? I don't think it's genetic. -@Tomi_Tapio the live word / character count for the working section increments character count on spaces -@rejectionking http://t.co/D5hTVwhz0F -@bobpoekert http://t.co/QbbBiv1Ttk -@bobpoekert yep -WORDS FOR THE WORDCOUNT GOD http://t.co/xnGYBhA3c3 -This startup looks pretty promising http://t.co/KlPVxZVQcx via @harper -# 370331219201761281 -@Mega_Turd that's the justification -@m1sp I hadn't seen this trope before! I'm glad I did http://t.co/cZIVi9Od1A -@lllamaboy though I'm being told the whole mobi won't be sent to Kindles, so hopefully the relevant part will weigh in under that. -RT @dvsch: @0xabad1dea @harper the mobi files you see are combined kf8 and mobi7 files. only one of those is sent to a device. So 1.5x epub… -@lllamaboy my standard-length novel produces a mobi of over a megabyte with the official kindlegen. -@JulianBirch I am not dragging myself through a billion pages of "women suuuuuuuck" for that :p -Amazon deducts from Kindle royalties based on filesize of download. mobi files are about three times the size of equivalent epub files. Hmmm -My reporter on the ground is telling me League of Legends was hacked. My response: LOL ! Get it? You get it right -FYI I have read several physical Loeb books before and they are specifically what I want for my personal library. Muy perfecto. -@CharlesAllhands I need physical copies. I'm starting my collection for Hypothetical Future Daughter. -@bobpoekert (to channel some Molly Weasley) -@bobpoekert because lemme tell you I had to learn the hard way to NEVER TRUST A TRANSLATION if you CAN'T SEE where it keeps its SOURCE! -@bobpoekert My school library had these books. There is a reason I want them. They are bilingual. And very carefully typeset. -Can someone crowdfund getting me every book on http://t.co/5A3KyFgpDx except the Confessions of St. Augustine let's skip those ones thanks -@bhelyer I'm a defensive mage. As opposed to offensive. Color is up in the air ;) -@bhelyer "infosec people" is a broad category. In my case we do not begrudge them a good score ;) -If honesty is a word then earnesty should be too. I say this with all the earnesty in my heart -Every now and then we get a customer app which is actually robust, resilient, and exhibits security-aware structure. We stop and marvel. -@technololigy I think so. The target data was not normalized anyway. Are we using <p> or <span> today? -I'm basing that tweet on a very vague memory of Intern Hell where I was told to parse some XML. And it had to be Classic ASP. -.@xabean The only reason it's better than classic ASP: ASP has zero native XML parsers. PHP has seventeen! -RT @xabean: @0xabad1dea Did you author a book recently? http://t.co/ANZ9bxBC6n #PHP -@steveklabnik I just hope I remember in thirty years I got hella lucky. -@steveklabnik When I look at my past economic status compared to my present I was definitely The Poor But Smart Kid Who Got Hella Lucky -RT @commitsfln: I'd call myself the git master, but apparently I'm the git issue_117 -RT @m1sp: Biblical genetics: make spotted sheep by... getting them to mate while looking at patterned sticks. http://t.co/VyNmIzFnr0 -RT @ejacqui: @werezompire @BenKuchera I'm going to start asking "How will your game stand out from other games with male leads?" -RT @werezompire: I was seriously asked, "How will you make your game stand out from other games with female leads?" I should have said, "Sh… -RT @alertnewengland: Operators of the remote control mini-sub have been instructed to call the @USCG before future operations. -RT @alertnewengland: Environmental PD off with a remote submarine in the outer part of Boston Harbor. Requesting MSP dive team to evaluate. -@eevee hahaha wow oops I'll just make something up about being European. And measuring words fractionally. -@eevee because I'm not patient, I can't focus, ..... dang my novel's word count is gonna hit 100,00 today how is this even possible -@geekable I’m all for Rule of Laws Which Consistently Produce Reasonable Outcomes -RT @gsuberland: Bradley Manning has been sentenced to 35 years in prison. -@nrr I’m pretty sure it’s a “get attention for the problem — plan on coming back when some legislation is passed” -RT @bascule: Spent way too much time making a high res ECB mode penguin: http://t.co/UDsaCMAKh8 -RT @sergeybratus: Bought new shoes today, advertised --out of all things!-- as "airport friendly". O tempora o mores. -@eevee almost as if it’s OUR careers he’s talking about (Ohai I’m awake now) -@SimonZerafa … “woman flu”? I wasn’t aware an excess of X’s led to increased risk of influenza -RT @matthew_d_green: Never trust a PRNG you don't control. -@SimonZerafa never had a fever as an allergic reaction before -@SimonZerafa hmm, I just woke up… but my face is still red… -@m1sp I just wrote Talassen's impassioned defense of her brother while delirious with a fever. Please let me know if it makes ANY sense. -@savagejen MY husband? Wake up while he was taking a nap downstairs? Science has not yet shown this possible -@WhiteMageSlave http://t.co/ZhjGFFE1JJ -@_yossi_ there were no witnesses. So either I did this to myself or Harry Potter is real and I've been Hermione all along -@BaconZombie TIL I read fluent Autocorrect -1) be delirious with fever 2) draw the Deathly Hallows on yourself for no apparent reason 3) pass out 4) wake up and freak out -@BaconZombie pretty sure that would kill me a lot faster than the poison would. Or is that your plan, ASSASSIN? -And like if Han Solo could be scared or upset or angry or whatever I totally could too! ...... .... ..... I was a lonely child -I figured this out while reading a Star Wars novel actually. It finally hit me that it was written by an adult for adults about adults. -# 369971580006199296 -I did not figure out until I was 13 that adults experienced a full range of emotions. I thought losing most of them was part of maturity. -@SimonZerafa I think I will be soon -@m1sp if I die of this fever, finishing the book is your job. I'm serious. Don't screw up -@_BluShine then you get moral failures with a 100% management approval rating -I am running a fever. It started about five minutes after I took a sip of coffee. I am stronger than your poison, assassin! -@Kufat I am not moogosexual -I’ve been informed @codeferret_ is leaving me for a chocobo named Chocobro. It’s Massachusetts so that’s probably legal -@hirojin I would say kill it with fire but the NSA's metaphor detectors are not very accurate -@jdunck I'm just trying to show both "all <x> are evil" and "I know an <x> and they're a good person" the intersection thereof -My next tweet was going to be complaining about coffee and I gave myself mood whiplash -So if I say, an organization is bad, I do not mean every person engaged in its activities is evil. Most of them are good. Just also small. -@seedOftheNeed and governments and departments that governments leave well enough alone. -Complicated systems produce moral failures which no individual person involved in the decision-making process would have approved of. -@m1sp Maybe I should mention you to my mother some day I mean you're kinda my best friend in the whole universe an' stuff Mom this is Jaiden -@m1sp this communication channel is compromised ! http://t.co/pipjJ7OjPn -@eevee I met one once! -@callmewuest nah it'd probably have the exact same metadata as it's sourced from whoever publishes the MP3s and it's not WRONG metadata -The number of people who have answered "by grabbing a random googler face-to-face and making them listen" shows google has a problem -@miguel_pilar I went to their support page and nothing seemed suggestive of "click here to file an actual technical bug" -@pmjordan *slow clap* -Negative six internet points to whoever points out I could mitigate by renormalizing my MP3 metadata that came right off *Google's* store :p -I'm pretty bad about filing bugs but this is angering me because it renders my current favorite song completely unsearchable -Six internet points to whoever can tell me where to file a bug report with Google Music that will actually get read by a human -I have determined that the problem is that @GOOGLEMUSlC cannot figure to normalize between straight quotes and smart quotes. Dorks. -Google Music's search is broken. "The King's" will turn up every song I have with substring "king" except "The King's Arrival". ... ... -@iand but no-one ever told me that girls shouldn't drive cars. -@iand incidentally, I don't have a driver's license. -@thegrugq why you gotta retweet me out of context -@kaepora I’d take that in a heartbeat over a pledge of allegiance that involves someone else’s tribal god … -@homakov you will see that in every restaurant in Massachusetts, so don’t bother keeping count -(P.S. the frog is your civil liberties) -“This isn’t too hot,” said the frog in the warm bath kettle. “I’m not sure why we need so much extra firewood, though.” -@puellavulnerata oh my gods who do we need to bludgeon -@alzeih it says 口口 you just have a narrow width font -@JackLScanlan drag out @m1sp kicking and screaming and cursing the sun. And give coffee from me with love <3 -RT @mikko: Code review of Future Crew's seminal 1993 demo Second Reality: http://t.co/8lNKeCPIUL By Fabien Sanglard (@fabynou) http://t.co/… -RT @rachelmyers: What to do when dude says 'It's bare metal rails. Pure computer science.' I can violence, right? -@m1sp but I think you will find it… was never gone in the first place! So I must be innocent -@m1sp because let me tell you I will give back my stolen data if that’s what you want Mr. Thug nooooo problem -Uhhhhh does Britain know how electronic storage works because uh… http://t.co/QaGYkK0uYF -@m1sp mispy my mother is texting me the watchmaker’s argument mispy help D: -RT @tqbf: Oh for fuck’s sake. Ruby’s OpenSSL binding gets fooled by NUL byte in subjectAltName. http://t.co/u3zWH5eoo0 -@iand https://t.co/7FGyOKFiG4 computers ain’t free bro neither are weekends -@m1sp and is impressed that at SOME POINT across THOUSANDS OF YEARS, a city in the Middle East was attacked and destroyed! PROPHECY -@m1sp this person comes so close to reasonable then veers off -- https://t.co/aJsriiw3po -@m1sp on a *completely unrelated* note, I wrote a new epilogue -@m1sp tonight on: randomly linking you religious texts http://t.co/W0Q4v51Flk -"Two hour guitar music chillout video" Sound of door abruptly slamming twenty-nine minutes in -@allen_jensen tell me I am fuck-ing imagining it. Everyone is upper middle class and schools are funded and life is good and fair. -@allen_jensen tell me how all of our schools have equal access to technology and qualified technology teachers. Please. -@allen_jensen tell me how that’s just some freak statistical fluke and my school was the only one on earth like that. Please. -@allen_jensen I lived in an area that was 60/30/10 white/black/other. My programming class was 100% white. I was the only girl. -@allen_jensen tell me how everyone in the world can afford computers and internet access and has the time to tinker. Please. -@allen_jensen @TravTurn sigh, way to miss what I was telling you: go read. Conclusions are not tweet-sized. -“All your emotions sound really fake” “WHAT” “except your anger” -@LoveFNDeluxe it might help just a tad. -@QuantumG not ending in flames is the outcome of, say, 99.99% of bus rides. If it DOES end in flames, that's bad luck. -@QuantumG so just understand by "luck" I mean a favorable outcome that I did not produce by conscious, rational choices. -@QuantumG I didn't pick my genes either if that's what you're getting at. But I could have been raised adoptively from day 1, it happens. -RT @blueg3: @0xabad1dea People seem to not understand that it's not about individuals, it's about population statistics. -@QuantumG So, of all possible parents in the world, that the two I had were a favorable outcome compared to average and worst case, is luck. -@QuantumG Um, absolutely nothing new agey about it. I didn't exist. And then I existed. And I had parents. I didn't pick them. -@QuantumG so yeah I'm lucky as hell -@QuantumG it was luck they were *MY* parents. Pure, completely uncontrollable happenstance. -@QuantumG I don't remember choosing who my parents were at character generation -@QuantumG that does not mean individual white kids are not poor. It means there is a system of biases larger than individual kids. -@QuantumG My area was 60% white, 30% black, 10% other, my CS program was ~98% white. It's not mysterious. -@QuantumG and judging by how many children I've seen discarded, having parents that truly care is pretty lucky and out of the kid's control. -@QuantumG there. are. multiple. axes. multiple. dimensions. it. is. not. one. number. -@m1sp zomg the marriage oath in this chapter is actually a poem I wrote in 7th grade during my first big crush -Almost no-one is successful purely by privilege! They worked hard too. Almost no-one is successful purely by hard work! They got lucky too -@QuantumG @AsherLangton GDI you opened with a mention of cultural context and promptly began to ignore it -@QuantumG @spacerog well I was definitely the only girl who graduated in computer science from that school that year. -@QuantumG @spacerog cultural context: an area of Virginia that's about 40% black. -@QuantumG @spacerog the 29 white male students from upper middle class homes I went to CS 101 with? Me being 30 of 30. -okay no more buzzing my twitterphone I have a novel to finish chumps -@Bluebie @aredridel naw see they uppercased it first it's totally airtight yo -@allen_jensen @TravTurn I am not google. But google, if it was having a busy evening, might suggest something like http://t.co/SAkPBVYPm3 -@QuantumG @spacerog You had computer clubs?!?! But yes see point about community acceptance -RT @rauchg: You can replace `FIXME` in source code comment with ¯\_(ツ)_/¯ -@QuantumG @m1sp I don’t think any of us stated that having a computer induces being a programmer -@QuantumG and I’m a woman. It works out sometimes. -@xa329 @thegrugq what do you think mentors are… -Privilege is not a master on/off switch. It exists on several axes. As a white female bisexual once on welfare, I’m all over the map. -@QuantumG in *my* social context, being a poor white kid was measurably more privileged than being a poor black kid -@QuantumG but in the original context, being given the benefit of the doubt due to gender was part of the privilege equation -@QuantumG so did mine, and I put that at a middling rank of privilege. I’m thinking of the other kids. -@eevee the math they taught me in school has thus far proven not particularly relevant to programming except this addition stuff -# 369609438849945600 -@QuantumG um okay yes that was kind of my point if your parents couldn’t afford a PC your chances of being a programmer go way down -@thegrugq @cs_saheel and they all wrote code I can hack with my eyes closed ;) -@QuantumG I was the only kid I knew in our welfare neighborhood with a computer. And now I have a Good Job and live in a Good Neighborhood -@QuantumG I had less privilege than a lot of kids. More than a lot of kids. It’s not a binary switch. -@QuantumG ie the problem is getting better because computers are getting cheaper and internet access more available -@QuantumG once we account for India, yes, they are undergoing a nascent computerized revolution, and I am quite glad. -@QuantumG I am not contradicting myself. My father spent every penny he had and some he didn’t on our first computer -@QuantumG note: speaking from an American context -@QuantumG gee, why are most programmers white? It almost seems to follow a similar curve to average household income by ethnicity -RT @Roguelazer: @eevee Computer towers are stereotypically beige. White man evolved programming as a form of camouflage in computer labs. -@QuantumG so getting a computer was a BIG DEAL but it was a deal that happened. -@QuantumG most of us in the west are at least a little. I grew up on welfare. Didn’t have food in the house sometimes. -@eevee I left a comment to that effect, dunno if it will actually get read. -@thegrugq … in the context of critique and recommendations for improvement. -@thegrugq for the same reason that a musician with no listeners, a painter with no viewers, an author with no readers… -@thegrugq I bet your code is nasty -@m1sp true, but Tarimin is not his native language, and Tsovinar notes he should talk in Asram as he sounds smarter -It’s privileged because the equipment, resources, and TIME are not trivial costs, and community feedback ie acceptance is very necessary -@M0zilla of course it should be, I didn’t crawl through the mud of prejudice for years because I was BORED -Summarizing myself: programming is no more inherently male than it is inherently white. It is, however, inherently privileged. -Many lucky humans do not understand that access to technology and education is gated by privilege, news at 11 http://t.co/i0KKuS41Cb -RT @eevee: as a general rule if your evopsych insight derives from "men hunted while women stared into space all day" you are probably an i… -@Packetknife I’m almost done -RT @thegrugq: After its illegal to teach anti-polygraph techniques, whats next? Ban on teaching how to encrypt? http://t.co/vmnEnfpguE via … -@homakov no, you’re just near MIT -@rgov oh are we playing Hacker News, or Proggit? -RT @emilyst: Awesome flowchart for absolute Python beginners which explains why your program doesn’t work. http://t.co/YxDIcXponi -@WhiteMageSlave +17 -.@QuantumG now if only our Imperial oppressors would learn to spell “wookiee”… -RT @QuantumG: @0xabad1dea wow, paranoia is that rife there? http://t.co/hNblGyti8r -@dan_crowley except for that one time here in Boston it totally worked and no one is going to forget -@mtheoryx this is a very high nerd density area so they probably get called a lot :p -(The good news is the cop apparently knew was geocaching was and nobody got tased) -Dear whoever saw my husband geocaching and called the cops: good job on see something say something I guess?... -@_yossi_ we go at each other like eight-year-old siblings to be honest -Please tell HR I'm just horsing around and not beating my husband senseless behind closed doors you believe me right -The #1 way to figure out we're married is when I punch him in front of other coworkers and have to explain oh no it's just *domestic* abuse -@androolloyd the whole time I think (I've been here coming up on two years) and Chewie has been here for a year and a half -It's always funny to watch a coworker suddenly realize that my husband and I... have been married this entire time !!! -@m1sp lol I find it so hard to write "dumb" sounding characters. Had to rewrite something Solornel said to not sound so edumacated... -Office art part 2 http://t.co/F1koqeyhZv -Considering they got EVERYTHING else wrong, I can tell this web coder cribbed their encryption wrapper from someone else. Thank goodness. -OH "they were shipping XSS as a feature" Wish I could sit in on THAT remediation meeting -Rubber duck debugging: it also works for novel plots -@jlwfnord in a padded room! -Fact: all programmers are that naive at some point Fact: this should be resolved strictly before pushing to production -@Kufat she is proud and open about her marriage to Mr. Drop, as she had a falling-out with her father -.@scottmarkwell oh, no, they thought of that bypass, they already uppercased it ! -I don't know what Mrs. Drop is supposed to do when she wants to order a box of licorice cough drops .... -validateQuery(string q) { if q contains "DROP" return false; } // love ya, coders -@Casiusss WHY WOULD I WANT SOMETHING TO GROW INSIDE ME AND BURST OUT THROUGH MY ORGANS -@benmmurphy @devolvify @ioerror one step at a time... -@vogon sext: NO CARRIER -RT @devolvify: @ioerror BBC asking those previously harassed by UK state security to contact them via unsecured web form http://t.co/TvtU1b… -@vogon sext: lol -RT @zooko: Haha! Best "this software is not production-ready yet" warning ever: https://t.co/kxyfxG5ywa from @nickm_tor -@oh_rodr grats! -@SimonZerafa I am going to be a parent someday. But I decided on adoption when I was seven years old -@SrslyJosh you may be thinking of amazon’s Glorified Fanfic program ? -I had the most vivid, realistic nightmare of my single greatest fear: I was pregnant :( -@SrslyJosh I don’t know what you’re referring to; I’ve read the license. The only problems come around payment, not rights. -@KronicDeth it is? It’s like fifty files in a project structure. -@twoscomplement it's across fifty odd files in the same project, but it seems to have no caching of partial results -Word count is an o(n) problem. As my word processor likes to remind me when it locks up. Incidentally: 94,882 -@sakjur hmm, probably not... -RT @partytimeHXLNT: Yeah, Animal Crossing knows. #ACNL http://t.co/sgYLP6LOgz -RT @ChadAustinSD: @onekade How long before laptops can be confiscated on buses, trains, ferries? -@sakjur Canada’s dirty secret is that they are England and America AT THE SAME TIME -@dancapper I think treason is a pretty powerful word actually. But in this case, the dude’s Brazilian, the stuff American, the cops British! -RT @ID_AA_Carmack: Right now I have some really terrible code that does impressive things, and some really good code that doesn't work yet. -I cannot admit a definition of “terrorism” so broad that completely nonviolent crimes count just because there’s a political tangent. -@abby_ebooks me either… -RT @sergeybratus: @osxreverser We've had material for a bunch of "Watergates" lately, and none seem to be happening. Predictable but very a… -@WhiteMageSlave okay way to creep me out -RT @fivethirtyeight: "Never connect at Heathrow if you can possibly avoid it" is right up there with "never get involved in a land war in A… -RT @thegrugq: @halvarflake @matalaz when you give a bureaucracy a capability (e.g. a law) then it will use that capability in everyway poss… -@m1sp http://t.co/EyXDMC9QDS Barsamin, take a permanent -5 modifier to your relationship with your wife -@rnjsun13 it's called Glory in the Thunder, it's set in a fantasy version of the Silk Road, teens get in trouble, and people ask questions. -@rnjsun13 I reckon -# 369240568204763137 -@apiary I have been working on the characters, the world, and the machinations of plot since halfway through college -@apiary this story has been years in the making. The manuscript, weeks. -@CyborgCode yes -@apiary as they apparently dock your profits for that when the download size is quite large -@apiary you can actually make good money at kindle if your book file does not have a lot of images and stuff -- 1/2 -@CyborgCode a fistful of teenagers caught in the intersection of national politics and the wills of gods driven mad with power -@apiary (there is a certain crowd of bus/train commuters who will buy dollar short stories appealing to their fantasies like crazy) -@apiary yes. I read an article about a girl in her 20s who had made over a million dollars on ninety-nine cent romances on kindle. -@M0zilla well, the spam bios are generated from markov chaining real "typical" ones, and that was one phrase of one, so, probably. -@vogon POLITICS: there's only consensus if you don't want it. -Best twitter spam bio yet: "infuriatingly humble analyst" Somewhere is a real person who used that unironically -@Eyal6699 both, and probably a DRM-free option somewhere that costs a little more (like, fifty cents more) -@vogon it's spelled @abby_ebooks -Writing chapter 23 of 24. I keep promising my husband we're going to be kindle ebook millionaires -@bobpoekert it's a pretty common last name for that part of the world... -RT @akopa: @0xabad1dea Villians are under a lot of pressure to ship. -The moral of a lot of novels seems to be “if only the villain had been more patient, their evil plans would have succeeded! Be more patient” -RT @peakscale: Slow clap, @nytimes - http://t.co/USccKFDDYU -No, I’m not *surprised* they took all his electronics or whatever, but they’re just slapping terror procedures on any ol' suspicion -RT @Sc00bzT: Advisory for #cryptocat group chats: You can send "attack at dawn" to some and "attack at noon" to others. https://t.co/Slmov8… -@chriseng bam! Magic -@geekable @ggreenwald are they allowed to stop someone, hold them, NOT arrest them, and still keep their stuff, under anti-terror measures? -@geekable @ggreenwald not really, I don’t think not being SURPRISED they’d take all his stuff is the same as not thinking it heavy-handed -@chriseng enjoy the flood of paranoia from my followers in 3, 2, … -RT @chriseng: Foursquare uses an obscene amount of data. I've checked in maybe a dozen times today. http://t.co/delirKwcua -@geekable and I feel so much safer! He won’t be terrorizing me none now! -Or maybe he had a Playstation Vita, in which case, sarcasm retracted, he’s evil -@armcannon best I can do is Hermione hair -The British confiscated the evil Nintendo device from evil journalist’s boyfriend http://t.co/zuJDVL4pPz we are safe! /nod @ggreenwald -@NotFaulty @vogon where… can I find this?… -RT @mattblaze: Put another way, anyone who thinks users who misunderstand technology don't "deserve" privacy doesn't "deserve" to be a secu… -RT @_wirepair: with regard to last tweet imagine if the ss had prism. -RT @RealTimeWWII: Himmler: "Are you sure you're a Jew?" Boy: "Yes." "You have no Aryan ancestors?" "No." "Then I can't help - I did all I c… -@JackLScanlan no no I like it where it is thanks -RT @chibitech: basic program in JP beep magazine full of almost incomprehensible hex values. There is no checksum implementation. http://t.… -@puellavulnerata “why do people worry someone is going to kill Assange? It’s not like anyone openly fantasizes about it…” -RT @oh_rodr: OH: How much do you think #Prism intercepts are blowing up because of payday 2, and people chatting about bombs via voip. -@RandomStep I'm saying an NSL is the component from which totalitarian regimes are run. They are not yet used *often.* We think. -@RandomStep exactly like NSLs -@RandomStep it is literally "do whatever we say and don't tell any other authorities or we'll ruin your life" -@RandomStep forced secrecy, no appeal, no oversight, and it can ask for absolutely ANYTHING and you can't ask ANYONE for help -@RandomStep you think national security letters don't exist? -@m1sp ding! chapter complete! The Huuuuuue of Wraaaaaath -Things my husband asked if I had remembered to do: take out the trash, do laundry, queue up more skills to train in Eve. I got told off! -@bhelyer yep, or Diffie-Hellman key exchange -DH, playing new Final Fantasy beta: "whoa! We're collecting CRYSTALS? No waaaay" -@chunkycupcakes I know but they are heavily represented among the fandom posts I am drowning under -@ryanmr isn't that kind of the point of reading -Honestly the whole thing of the giants with NO SKIN is the only reason I haven't read it already that just creeps me out too much -Am I gonna have to read Attack on Titan? Dangit I'm gonna have to read Attack on Titan aren't I. After Clash of Kings... -There's one thing tumblr does very right: figuring out when two different tags should be treated as equivalent -@jesster_king we do, but on a Saturday, like, once an hour at best, and, it's a straight shot so I'd rather walk -I have no idea how someone got this reaction out of @sergeybratus http://t.co/Nuv4Ifw676 -# 368874300477935616 -@homakov get out of the city, go to New Hampshire and see the mountains, if you can \o/ -@homakov welcome to the best part of America, comrade -@cryptocatapp @kaepora *squint* -RT @aeleruil: “Ye Olde “The”” by @TPrime https://t.co/TyBD5L7fbs -RT @ellievhall: Benedict Cumberbatch to paparazzi: "Go photograph Egypt and show the world something important." http://t.co/l0ADTHnZOU -RT @Mornacale: WHAT IS WRONG WITH OUR INNER CITY YOUTH? *closes schools* WHY ARE THEY JOINING GANGS? *tears down community center* OH THESE… -Patent idea: mechanism by which the road between home and school may be made uphill both ways -It's interesting to see old people talking at restaurants. They could have met five minutes ago, or fifty years. -@MechMK1 thank you for accepting my age identity and using the correct age-noun -@thegrugq and to think I was JUST about to give twitter a cookie for not making this joke -@saving_state they would DIE WHERE THEY STAND -Wasn't me who said that, but I think I will identify as not cis-age from now on. I'm a transaged nine-year-old -OH "don't be a baby" "maybe I identify as a baby! Not everyone is cisadult." -@ulysseas I think I have literally never seen a skateboard here, actually... -PS. the pharmacy is more like forty minutes away on foot but I have no sense of time or scale and a poor grasp of consequences -@ulysseas the only actual Bad Part is the rather aggressive traffic. I'm just a neurotic mess. -@ulysseas no, the most peaceful, low-crime Boston suburb imaginable :p -@chriseng I DON'T KNOW HOW TO INTERFACE WITH HUMANS IT INDUCES KERNEL PANIC -@meursalt I suspect being honked at is the occasional manifestation of being stared at -I did it! I walked all the way without being murdered, robbed, abducted, talked to or honked at. Now about the way back.... -@zcutlip I'm not even worried about the word count itself anymore, it's higher than I ever thought it would be, but the plot needs ends! -Conveniently, the cafe is next to the pharmacy, so I can do another push of a few thousand words to hurry up and finish this dang novel -You might be an introvert if: walking ten minutes, on a sidewalk, in suburbia, to the pharmacy is the biggest deal of the week -RT @DarrenPMeyer: @0xabad1dea ia; ia; require_once("fhtagn"); -@yacCz I haven't actually gone to look yet, but I assume it's text, as that was the modus operandi of Mark Reads Twilight. -@thegrugq @homakov @chriseng @WeldPond I cannot be held responsible for what happens if we let crazy Russian hackers into the office -Apparently, Mark of "Mark Reads Twilight" also did "Mark Reads Harry Potter". I think my next few hours are booked. -@m1sp “What does he do, does he have some sort of cabinet of bottled souls? Do they spoil?” -@m1sp aside from that, it was interesting, she had gone into hiding, and seemed to have decided to learn Latin while hiding -@m1sp I'd be pretty happy with being Ginny... -@m1sp I don't even like Ron -@m1sp today on transgendered dreaming experiences: I had a dream about pursuing Hermione's love and I was Ron wat -@m1sp oh you. -The Necronomicon is written in… https://t.co/RP7yGP4ijz -@m1sp what… are you watching -@JackLScanlan I tried mentioning it to my grandmother and she looked at me like I made zero sense trying to compare it to abortion -RT @GooglePoetics: How can I change my IP address How can I change my name How can I change my Gmail password How can I change my life - ht… -RT @SimonLR: What. The. Fuck. is wrong with developers? http://t.co/3eo8MTEeZw -RT @oh_rodr: #SQLErr http://t.co/jxF6kxkX5i -RT @Myriachan: LOL... #DuckTales Remastered has the Visual Studio .pch compiler output in the public Steam release. Waste of 11 megs of dow… -@jbrechtel http://t.co/73LsBY5Mee -Dear Apple Goddess please make it against store rules for apps to have modal popups advertising other apps or deals -@iirelu also, the Computers Are Hard problem has resulted in people who know, okay, type into this bar to search and DON'T CHANGE ANYTHING -@iirelu I'm just saying, google sits on a huge chunk of the very content it searches -RT @ra6bit: I once told @0xabad1dea I'd been paid to write an EMR in JScript. Her reaction of genuine disgust still makes me laugh when I t… -@iirelu duckduckgo doesn't run the world's biggest video distribution site or the world's biggest email site or... -When Google stops, the internet stops. https://t.co/87Uqf6qJq1 Except in China I assume. -@Niki7a but but Hello Kitty -@dastardlylemon @vogon tonight we dine on ground pepper and sugar cubes it is a local delicacy -@Tomi_Tapio okay… now imagine that someone just walks up to your house and puts you under such an NDA without your consent :/ -@tqbf @ErrataRob I think the real problem is a pathological hatred of REWRITING existing unstructured queries, which are vast and terrible -RT @tqbf: If you pathologically hate SQL param queries, I’d like to talk to you to find out more about what makes you tick. -@nelhage @Myriachan sorry @DefuseSec wins :p -@bascule @qmx that’s kind of its specific purpose in life. “It’s perl, but reimplemented by someone who doesn’t understand perl” -@nelhage @Myriachan I suspect it would involve “use less registers” and hence have a measurable performance impact -RT @Myriachan: I'm curious... how feasible would it be to modify a compiler and linker to resist generating code sequences that would be us… -@Myriachan wait… they had a variable that controls signing, a mechanism to prevent patching, and failed to apply the intersection thereof? -RT @Myriachan: @0xabad1dea And I just found an awesome way to use such an exploit to break into kernel mode, too. Now I have to wait for an… -Unsigned code on RT, aw darn, it’s patched http://t.co/jmn6g75mRx -I took a nap and google went down? The frequency of such correlations is beginning to convince me I am the goddess of the internet -@bascule it appears to be dated 2008, so… -@Tomi_Tapio not any NDA I’ve ever seen — as most of them are simple prerequisites to publicly visible processes like buying stuff -@DrPizza King Hitlear -@HanakoGames um… are you still playing the nice boat game? I’m pretty sure it’s intentional… -@homakov you haven’t seen America yet, only New York… -RT @mikko: Next time, I surely won't vote General Keith Alexander for NSA's Director. -We only even know about national security letters because of people brave enough to fight the most totalitarian court order imaginable -@M0zilla you’re not supposed to acknowledge you have one! We only know it’s an NSL because others have disclosed their existence -RT @pusscat: @0xcharlie thats cool - its probably easier to pop mobile safari than write an objective C app anyhow... -It looks like the gov is going to argue that saying there’s something you can’t say violates an NSL. #lavabit -RT @runasand: Lavabit's owner threatened with arrest for shutting down rather than spying on customers: http://t.co/4j8HeyqL56 -RT @ChuckBaggett: 8 year old used to place tracker on surrogate dad so US could murder dad. http://t.co/43DhKDQ3fx -@kevinlange now to go back in time and tell my professors THIS is why to upgrade from windows XP -@The1TrueSean well I’ll be madamed -RT @matthew_d_green: 'Dear Author: You don't *have* to assign copyright to us, but if you don't we'll make sure you never publish in a top … -@kevinlange implying RDP does directx now?! -RT @Asher_Wolf: Oh grow the fuck up @bbc. RT @TechoPirate Debating the UK 'porn law' can sully your name http://t.co/4WCLVOEBqY -# 368498405825605632 -RT @garybernhardt: Reminder that in an HTTP transaction, the server tells the client to return its printer carriage and feed a line of pape… -Office art http://t.co/RE3Za07GkP -@geekable I meant a ' should only take half as much space to encode as " because clearly " is really just '' -@geekable um... maybe my joke wasn't as obvious as I thought. -Look, if the double-quote character is one byte, then shouldn't a single-quote be one nibble? -@m1sp well, in this context, being afraid that people who thought you were a Real Person would suddenly disown you though nothing's changed -@tapbot_paul there was a sign on the thing that said the frosty was free if they forget to ask. -@m1sp "scared of coming out of the undead closet" as an analog to LGBT. Discuss! -@cowtowncoder but they have "caramel" which is clearly a vanilla shake with added caramel!!! -@cowtowncoder last week they didn't have strawberry. This week they didn't have VANILLA. -My new conspiracy theory is that Wendy's is trying to drive me insane by giving me different lists of what flavors of milkshakes they have -@mndell @alcyonsecurity @DrWhax hahaha yes my mother pigged out on the fish filets there when she was pregnant with me :D -@mndell @alcyonsecurity @DrWhax lemme think... I think he was there from '86 to '88. The air base he worked at belongs to the Dutch now -@kc1rtap @RSnake just a humble commercial researcher! -@RSnake My job is to study what hackers do and devise new ways to stop them or slow them down. -@DrWhax I can read it pretty well but my sentences always fall apart :) my father was stationed near Utrecht with the American Air Force -@SteveD3 @helpareporter @msjoanieg no no no he should say “The word 🐔 should not be used to end a sentence” -@TweetsofOld oh, never mind :p -@TweetsofOld and whatever is a biggie I wonder ? -@DrWhax weet je dat ik was in Nederland geboren? Maar, mijn Nederlands is vreselijk -@DrWhax because I set my iPad to Dutch for some reason and was too lazy to change it back -@pusscat @halvarflake @rantyben ooh ooh I studied some Greek in school I’m not a barbarian -Oopsie daisy @rsasecurity http://t.co/jD4odlIbHw -@Casiusss it is. I believe the current model of government is fundamentally broken in a word of instant global communication. -I’m 25. By my reckoning I have 50 years to think of better solutions to hard problems than I have so far. Wish me luck. -@Casiusss but that’s the thing: governments never actually trust, they are broken in this respect -@DavidBHeise to lack of sneezes -No, I don’t have a magical pixie dust solution to the mutual spying problem. That doesn’t mean complaining about it is naive, I think. -.@nullwhale I certainly think Egyptians have every right to privacy that I do! But you gotta work Americans right to get them to care ;) -Little details like “yes we accidentally executed a program against Washington DC calls instead of Egypt” are why we need the transparency -@kivikakk I swear to gods you are Asian in my head -Good morning America! Did you know the difference between the Egypt and Washington DC area codes is one digit? And someone in NSA typo’d it? -RT @kris_kaspersky: wincalc is buggy! Win7/x64. go to Scientific mode, type 1/255. Press ENTER or [=]. Press [F-E] button. Crash happens. h… -@JbMokuZ yeah, that was the day random people on the internet accused me of hacking Flash, because their mitigation was buggy :) -RT @LeVostreGC: Thou: subjecte. Thee: objecte. Thy: possessif (:thyne, yf yn front of a vowel). Now thou knowst, and the knowinge ys wel ha… -@savagejen at least that’s not unconstitutional I guess -RT @STLonAir: "I'm not fat and I don't live in my parent's basement." -@0xcharlie #hacking -@vogon you have to get a JavaScript extension to actually filter tags properly, to my understanding … -RT @JackLScanlan: if anime is better than manga then why is manganese an element but not animenese, checkmate Jayden -RT @conor64: Guys, out of ten amendments, the NSA is violating one of two at most. That's, like, a B on civil liberties. -RT @katecrawford: NSA made 2,776 privacy violations in a year: from typos to unauthorised intercepted comms. That's an *internal* audit htt… -Remember when our biggest question about the government was what kind of cool stuff was at Area 51? http://t.co/BjuYLWKgzL -RT @nickm_tor: Man, who *wouldn't* want to use this nifty new "My illegal activities are a vanishing fraction of all my activities, honest!… -@pzmyers @TheTruePooka aw man no one EVER gets MY ethnicity randomly wrong I must be boring -@ELLIOTTCABLE @savagejen aka Adrian Lamo, I’ll let you google and decide for yourself… -@savagejen he should have the sense to be ashamed. OTOH if someone has threatened his safety, that’s wrong… -RT @nickm_tor: (Ask not for whom /dev/random blocks; it blocks for thee.) -@m1sp @mcclure111 the military is the one sure fire way for a 17yo to escape their parents -@ggreenwald @onekade oh my gods. @20committee blocked me like a bazillion years ago but I see he’s still being a bigot -RT @maradydd: Huh. Young or female engineers and CS folk experience major depressive episodes more often than older or male ones. http://t.… -RT @OboeCrazy: "If you know bringing the oboe means you get searched then why bring it?" Life advice from airport security. -@m1sp you should check, Bars loses his cool again ! -word count: 87,434 #novelquest -"I found nothing weird whatsoever about a priest raining me with expensive gifts," says archbishop http://t.co/KxfeAy78ZK -@vinski_ combination of slapping on cross-platform glue and the secondary platforms being less of a priority -@vinski_ it is an extremely common pattern for multi-platform programs to only be stable and smooth on their platform of birth. -# 368156286254587904 -@KluZz my subconscious wanted to use it as "was made to become placid" -@IveGotMyDoubts I actually did type "placify" and was confused when it got red squiggled -I strongly feel that the intersection of "placid" and "pacify" should be a word #placify -@octothorpe it did not seem to completely destroy it -@eevee how to screw with human cultural conditioning: all those ants are girls! in fact they're all SISTERS! you monster -Also I forgot I was spraying febreze directly behind a fan and now my lips taste like febreze thanks Obama -@MatthewOden actually, watching them, I'm not convinced it does. It probably doesn't bind to it or however febreze works. -Empirically determined: febreze does not kill ants. They will freeze up for a sec like "wtf was that" and slowly start moving one at a time -True fact: I am emotionally incapable of playing Pikmin due to a nightmare I had several years ago about undead pikmin -"real" in quotes because Melissa is an okay name but it doesn't really have the ominous ring of hexadecimal digits you know what I mean -gdi google stop telling me to use my real name on my youtube like I am so stupid that it never occurred to me to wonder if I ought -I can hear it, I can feel it, and I am actually... er... just a little... http://t.co/hLyIlLsUfh -@m1sp Chakori's original concept art http://t.co/Zbqt6uhfKt -How can we know so much and still be discovering new species of mammals like we haven't even opened our eyes yet http://t.co/ohQJEb6jlb -I'm sad every time I get a used book and there's no signature and date inside the cover. I feel like I've been denied a story -I completely forgot I ordered these for the vast fortune of $6 http://t.co/K0zZHLraDd -@blowdart @0xcharlie don't forget to say DOCTOR -User-mode apps should *never* have to manually seed except when reproducible runs is a feature ie certain games and simulations -RT @vogon: @0xabad1dea also they're not actually fixing the RNG to do the right thing -- they're just advising app developers to do the rig… -RT protected: now we wait for 1 billion android devices to get their timely updates -@m1sp you seem to have come by at like 4 am I assure you I was in fact asleep -*・゜゚・*:.。..。.:*・’ sorry about the uninitialized random number generator, bitcoin!’・*:.。. .。.:*・゜゚・* http://t.co/PtG7yl3FfW -RT @goldshtn: Obscure WinDbg Commands, Part 2 - DML, .printf /D, .dml_flow, and .browse http://t.co/qQ10TOG7wa << also a super-obscure hidd… -There were already a bunch of piddly countries I couldn’t go to. But I can’t go to Russia because there are too many cute girls there -@lindseybieda yeah I’m pretty sure someone was embarrassed it took so long and hoped this would serve to excuse them -@itinsecurity @biosshadow they are saying STRAIGHTEN UP OR GO TO JAIL NOT OUR PROBLEM -“We ship on the same platforms as games like Skyrim, but multiple character meshes was just impossible!” http://t.co/nFAitJzm7X -@biosshadow @itinsecurity EXACTLY -@itinsecurity @biosshadow and said “oh well” to the ENTIRE CONCEPT that people like me can go to jail for breathing while gay -@itinsecurity @biosshadow or do you suppose straight people never do anything noticeably straight? -@itinsecurity @biosshadow yeah hang on my friends need a moment to get divorced and remember not to hold hands or kiss like Normal People -@johnnemann @vogon complex custom looks! Because you need gigabytes of ram to have two different player characters :D -@itinsecurity @biosshadow there is no moral high ground to be found in keeping the peace and having the show there anyway -@itinsecurity @biosshadow the short version is: “gay? Pretend to be straight.” Try: “black? Pretend to be white” -@johnnemann @vogon I feel like I may have missed someone saying something amazingly, spectacularly dumb -@itinsecurity @biosshadow being a candidate for being arrested for freakin’ breathing is not me picking a fight -@pusscat @IAmTheMenace don’t be hasty, it could just as well be she! -RT @apiary: Sure random person on the phone with an excellent phone voice, I will just give you admin privileges on this random account, no… -RT @bSr43: After struggling with Windows version during a whole week, I’m pleased to announce the availability of Hopper 2.8.1! http://t.co… -“Holy cheese people had to give up Olympic dreams because they were gay? In 2014?” say fourth graders in fifty years -Olympic committee defines being gay as political, so it’s not their problem gay people will be arrested in Russia http://t.co/kjUJfu1lBA -@vogon it’s p obvious so prob convergent evolution -@dwrkoa @trap0xf she’s wrong. -@Dirk_Gently you seem to be speaking in past tense for some reason... -@stillchip I like to give apple engineers a little something to look forward to -I always feel really sorry for programs that segfault in their user-invoked exit routine You were so close, little buddy! Next time!!! -On that note http://t.co/QG0I7W6s0j -How did people give birthday presents before steam -@nelhage “why didn’t Instance come in to work today?” “He… got an *early retirement package*.” -@natashenka well, it’d minimize average distance to arbitrary other points on the board, wouldn’t it ? -RT @chriseng: Motion for @tqbf and @dakami to settle their PRNG disagreement via slapfight. -@vogon why would -@HersonHN why are we listening to the security advice of a girl who names her computers Vulpix and Flareon?! -… I actually met @natashenka at Defcon but my social protocol stack had a BSOD, I am not good at human -I had a dream I went to a convention where there were boy’s dorms and girl’s dorms and me and @natashenka had the place to ourselves … -@xa329 but re: MIT thing: it's academic, which often just means a fancy unicode proof of what was already believed -@xa329 the compression-related problems we've had in recent years were 100% expert designed, tested, and approved -Photographic evidence of the echo chamber in action http://t.co/0sInymfaZz -@xa329 but if we've learned anything recently it's to slow down and re-evaluate our use of compression in cryptosystems -@xa329 ah sorry, twitter wasn't loading the metadata that it was a reply -@IAmTheMenace good use of gun-centric language -.@IAmTheMenace this troll would be about 3000% more effective if you replied to something I said about security and not about a cartoon -@xa329 I mean... those are quotes, where is it from, and what are you asking about -Part of the punishment is that I have to watch it dubbed, not subbed #cruelandunusual -@xa329 can I have a little context there? -.@codeferret_ is making me watch a gender normative cartoon as punishment for not taking out the trash -@rantyben but but manifest destiny :( -# 367794628663058432 -@m1sp @WhiteMageSlave http://t.co/TFK44z7mjG I link for no reason while writing a scene with Ziazan -I don't understand why the world is full of nations destroying themselves #egypt -@m1sp I think a nascent dialect withered when smart phones with autocorrect became affordable -Hey kids! Do your parents complain about newfangled txt spk? http://t.co/FJQB1ZXRlV -@hattmammerly I'll just pretend I know what's going on -@0x17h maybe if @th3v0t4ry wasn’t acting like someone far too young and bratty to hold a gun, we could have a productive conversation -@0x17h the best part is that my dad is a veteran and I wouldn’t be surprised if he would get in a bar fight with this guy… -@0x17h and only men are soldiers! I guess I must have imagined all those veterans I met who were mothers. -@th3v0t4ry aaaaaand blocked, thanks @0x17h so glad to see our military is in good, reasonable hands -RT @chriseng: #Veracode Hackathon is over. Some people waste no time reverse engineering their prizes. http://t.co/llpsoQ8XZn -@th3v0t4ry @0x17h @_stux_ good use of gendered vocabulary to associate courage with maleness I’ll be over here in the corner -My poor sweetie is Mr. Abadidea’s Husband to the industry. His name is @codeferret_ ;) @thorsheim -RT @thorsheim: (husband of) - @0xabad1dea, @marshray & @dropdeadfu at #passwords13 Penthouse. Picture by @marco_preuss (thx!) :-) http://t.… -RT @elwoz: Why can't I give you $X a year for no spam, @Twitter? -I also find it remarkable how many seconds it took for my brain to realize that what I thought was boxed apple juice was really cranberry -The result is that when I kick off the compile on the server, my brain expects my laptop to get hot and run out of battery really fast -@froztbyte I see a CPU-intensive process spinning away; I see a battery meter; my brain connects them as one will drain the other -I am unable to mentally disassociate the battery life of the machine in my hands from that of the server I am remotely logged into. -@codeferret_ you're supposed to put it in QUOTES you're so bad at twitter T_T -@mbhbox there is no java on this machine. There is a black void that devours starlight where java once thought itself to be. -Autocorrect makes an excellent suggestion: memory allocators -> memory alligators -@elad3 what's to file? Oh look pages with tons of JavaScript are still Satan on memory allocators -@Yurienu normal Chrome actively -inb4 browser wars: I 100% want Firefox to exist and thrive to bring balance to the Force. I just also want it to not lag my machine -"why don't you use firefox" because this is me trying to close a single tab http://t.co/JeKAiVqz1P -@mbhbox WHO KNOWS? -Oh, of course. GMail decided the sensible thing to do about expiring my session is to leave everything open and just return timeout errors -@vinski_ forgive me if I don't trust the screen blinking and emitting an audible beeping sound that it is not charging -@stillchip there's no way every Windows laptop I have access to has cheap, bad, low rated USB ports. -iPad 4: $500 MacBook Air to charge it with because it will refuse to charge off any other USB port: $1000 -RT @kaepora: Paris: Beautiful city, not-so-beautiful Internet regulations: http://t.co/BdE1qZvZGF -It was entirely too many clicks to convince Windows 8 that I wanted to apply pending updates NOW and not as a surprise in the near future -@shellbryson https://t.co/QHqFwE52An this is what cool kids used instead of sourceforge -RT @savagejen: To all my Mom friends: if you have a nanny cam or baby monitor you would like me to test, let me know. -Wait… doesn’t google have… their own github competitor? https://t.co/cuh6QTDIBJ -.@z0rlac it’s not literally the same problem fortunately ;) Also it’s apparently unreliable -Ping of Death 2: IPv6 Boogaloo https://t.co/qfOqSxd1Oe -@m1sp mew. Google drive is being funny for me I don’t know if it’s showing latest updates -Come for the Dropbox 2FA bypass, forget about it and stay for the python monkey patching https://t.co/01oZneI528 -@JackLScanlan GDI Jack you’re like 21 or something and the first 20 years are just the boot sequence -Not trolling cryptographers this time http://t.co/pUfntGYAXL -I want to be like @attritionorg when I grow up http://t.co/EmLe40r9RG -RT @halvarflake: Lavabit founder presumably on NSL: "there’s information that I can’t even share with my lawyer" - talk about a level playi… -RT @mniemietz: Best XSS fix ever by Linksys (4.30.16, Cisco): they fixed a known stored XSS vulnerability by blacklisting "alert". -.@AdvancedThreat @matthew_d_green by “most computers” I meant “phones” -RT @matthew_d_green: @0xabad1dea The attacker will jump and down to force your gyroscope into a known state, then he'll attack your keys. -But you have to admit: “Generating key… dance around with your phone for a bit” would be fun -@skattyadz there’s a relatively small number of unique states (and you could only use for seeding as they change too slowly) -I have already succeeded in getting someone to send me a flood of private messages to the effect of: no -@technololigy phones is what I mean by most computers ;) -Hmm, it seems most computers have a gyroscope and compass in them these days. Can we use that for entropy? (Just provoking cryptographers) -@thorsheim @marshray @dropdeadfu yep -@thegrugq @jonelf dust your stuff in flour! You’ll find out one way or the other… -RT @thegrugq: Pics from my hotel safe in Vegas, after: http://t.co/MglekMkizb -RT @thegrugq: Pics from my hotel safe in Vegas, before: http://t.co/bHCVlUX4c0 -RT @ioerror: It sure is rich to read the US Secret Service valuation of different seized items from @aaronsw - "Masters thesis ... " ... "n… -@dakami gee why do I have so many new tweets from the past several hours Oh -@ra6bit if it doesn’t do anything x86 dependent… -@m1sp now with a scene where Littlenar realizes she will never get a letter to Hogwarts -@m1sp @WhiteMageSlave word count: 84,496 -@m1sp If social currency was convertible to dollars I'd be... well, what's the exchange rate on follows? -@m1sp now for an unfortunate accident to befall whichever boy I don't like so the other one is free! -@m1sp I was just thinking: my setting lends itself rather well to OC Mary Sue fan fiction, doesn't it... -@trackzero \o/ -@m1sp @WhiteMageSlave this answer redacted for reasons of national security -@WhiteMageSlave @m1sp yes, P3. So I think my entire multi-universe of characters can eventually be condensed down to Everquest -@m1sp currently extremely sad that I cannot find ANY of the other word docs I remember writing around that age -@m1sp what's especially cute is that I remember replying to her that I would always remember my first fan mail. -@m1sp this one appears to star my cute little robot and @WhiteMageSlave's big one -@m1sp I may or may not have the actual text of this short story -@m1sp true story I just remembered: I got my first fan mail for a short story set in the Phantasy Star Online game when I was maybe 14 -@Kufat yes, they don't even pretend it's otherwise. -It's true, I wrote like, a fifty page long fanfic about my half-elf rogue from Everquest in 8th grade, and made my teacher read it -I hope I'm a successful novelist so that when people say "how did you get started" I can look them in the eye and say "Everquest fanfic" -# 367408640283914240 -RT @Myriachan: It must be from @0xabad1dea's bad influence that I bought a Hatsune Miku case for my iPhone. The corruption is spreading...b… -@WhiteMageSlave I don't think hindsight counts as a superpower :D -Wow! It looks just like a quill pen! -- -- yep I'm an idiot http://t.co/A3RyHRy8dM -@DanlAMayer and if you don't see something where you'd guess it would be, check at half that and twice that. -@DanlAMayer largely guess work and scanning. The screen I demoed was at (800 width) * (480 height) * (24 bits per pixel) * (approx 70 FPS) -@cyclerunner to the watchers? not at all. That's only relevant to marketers. -@rantyben nah I am definitely a genius But only at things that don't involve hand-eye coordination -IN MY DEFENSE it’s a little one-piece pop up tent with some sort of pulley mechanism and it folds funny -Me, programming: "I'm a GENIUS" Me, folding a tent: "I... I'm an idiot" -@mattblaze wait, so, what happens if you refuse? -If anyone knows of any bad 0day in Nintendo 3DS that could get RCE in my animal crossings, please warn me now -@kaepora I don’t know! It’s at home at the moment, sorry, remind me when it’s evening-tide stateside -@mattblaze my dad’s a paranoid fed and he only worries about *cargo* trains (where you can stash literally tons of Bad Stuff) -.@solak here’s the thing: it DID search for “covert”, it just considers “convert” to be equivalent! -RT @mattblaze: Conductor on my @amtrak train is doing 100% ID check of all passengers. First time I've seen that. Because terrorism or some… -Gosh dang it google I am actually trying to google “covert” not “convert” I swear on @thegrugq -@raudelmil the idea is relevant to my job, and we’re one of very few groups doing it commercially. -I googled to see if anyone else had an idea I just had and most of the results on the first page are my own coworkers -@declanm @hellNbak_ I can’t tell if this site is a parody, or they don’t know Internet Chronicle is a parody -@m1sp in America it is a checkbox when you renew your ID card. It goes on the card -RT @runasand: NSA liar James Clapper to head Obama's “independent” review over NSA surveillance: https://t.co/kcCt8Azesc -RT @SecurityHumor: Before you profile or attribute a threat actor, walk a mile in their IOCs. -(Think of it this way: if I watch a ten-hour YouTube video, there’s only one relevant bit: me hitting the URL) -Remember: some small fraction of a percent of all internet traffic is, in fact, all the important bits. http://t.co/pjTVkmvBc3 -RT @rantyben: Being a "Legendary Cryptographer" should be subjected to 5 yearly re-testing. #snakeoil #fuckups #mediawhoring -@JackLScanlan @marchofclouds you’re Australian. I am pretty sure you are seven feet tall. -RT @frogworth: We literally killed it. RT @magnus72 We did it guys! We killed English! http://t.co/Hlik89rcMT -Just got to demo an Occulus Rift with a roller coaster sim. The falls and loops are actually very convincing. (Sharp turns are not.) -I have extreme difficulty waking up in rainy sorts of weather. I think I deserve a doctor’s note excusing me from morning meetings -@m1sp he hasn’t beenTHAT kind of busy! -RT @benwizner: If the NSA were defending #StopAndFrisk, they'd say it's not a stop or a frisk unless we find contraband and arrest you. -RT @m1sp: TIL a >> is called a guillemet and Gmail accepts a search keyword of "has:orange-guillemet" -@m1sp I HAVE HAD THIS LINE PLANNED FOR LITERALLY YEARS http://t.co/9tVKXLh7mD -@m1sp yeah, but this is CANON, and that's hot. -@8BitAce you can probably get some cool ideas from http://t.co/bTvYH3cp3P -@eichin yeah, it was returning textual strings and each sample I saw was correct. However it's very sensitive to lighting. -@phyre5 of course then I went and started my own world setting where the epistemology of the divine is ambiguous so people can fight over it -@phyre5 where he freakin' physically incarnates to give Nerevarine a pat on the back just like the others -@phyre5 I got extremely angry because I was metagaming with my knowledge gleaned from playing Morrowind :p -@phyre5 here is your cookie for acknowledging the divinity of Tiber Septim -@m1sp except in this case Ismyrn would be Harry as a lesbian -@m1sp zomg Barsamin's inner monologue I am writing could be right out of HP, self-berating for getting caught up in the Saving People Thing -@vogon and increase the consumer price of the platform by ~$100 as I understand it -Don't think I don't know which of you are Microsoft employees! Your opinions on Kinect suffer a -5 modifier to persuasion ;) -@vogon er'ryone I know was complaining about the kinect before the NSA was dragged into the spotlight recently. It's gimmicky. -@locks uhh what? It's pretty undeniable that Nintendo's target age group is a younger average than xbox's. -@HaydnJohnson I do have one. And no doubt we will have a PS4 *and* an xbone because Pokemon Syndrome -I understand what I said is not literally true for 100% of people older than 12, but it *really* isn't xbox's core market. It's Nintendo's. -XBone removes kinect requirement. "Turns out no-one older than 12 really finds that fun, and that's not our market," said Captain Obvious. -@m1sp btw I rewrote the last bit of Solornel's exposition to Houri. Is better, I think. -# 367054564551176192 -@ameaijou @boredzo @NSHipster IMO time() should only be used for gaming. And not the kind where money changes hands :) -RT @codeferret_: @0xabad1dea apparently kickstarting "Wife Public Embarrassment Kits" is not allowed T_T -@m1sp that's different ! That was for my own good. THIS is for public safety -Appending to the list of things my husband isn't allowed to have: a kickstarter -We apparently have an internal music video montage now. I think the best band name was "Framework of Pain" (because that's all of them) -It's not a good meeting until the intern is dropping 0days in someone else's website on stage Yes she reported it. Oh well -@AdvancedThreat I didn't. The emails are github notifications. -@grp he put an apology on his repo's readme -@AdvancedThreat lol I was just really confused -Someone accidentally sent me a zillion mails trying something cute with the twitter archive on my github. Lol thanks. -@biosshadow all I know is that the URL I've been using for weeks suddenly shows an old copy of the document and its current URL lacks perms -I'm so glad Google Docs decided to generate a new URL for my shared document when I updated it. #UIRage -@sakjur what "green stuff"? I mean they gave him an entire second burger. With no vegetables. -@demize95 he doesn't need encouragement ! -Today on Only My Husband: the burger stand giving him more cheesy, meaty food for free because he's so loyal. -@vogon yeah, it mostly just relies on good lighting, because the screen is not backlit -Another hackathon project: OCR’ing RSA tokens from a webcam. Don’t leave them lying on the desk. -“Dammit! As soon as I showed my demo to @0xabad1dea, it stopped working.” -@jb33z that’s about me. I check once every few hours, because I am not customer facing. -@spacerog unfortunately, most apps seem to just give themselves all permissions, some even notate they won’t “really” use it -Not shown: there are colored "pellets" in the tube and when the snake hits them it "eats" them and becomes that color. -One of our hackathon projects: glowing tube snake controlled by dials. http://t.co/cBye21Uk7W -@pa28 I am pretty sure I would indeed look silly with a beard. -@jlwfnord especially when you're someone who doesn't have email popups enabled and just check every hour or two -Things I don't like: email with instructions that says "this MUST be done by noon" sent at 10:30 -I just found out my baby brother is growing a beard. My baby brother and I were able to swap ID cards when we were younger. He looks silly. -@m1sp please to be refreshing the PDF. Multiple betrayals! -TIL bosses have "dad voice" too: "Monty, wanna help me with this?" "no" "*clears voice* Montana, come help me with this" -RT @arstechnica: Scientists create “impossible material”—dubbed Upsalite—by accident http://t.co/LBXJWtgySz -A little girl told me about her comic strip: it stars a gray cat made of a poptart. No wait, it’s different, you see, it has poptart lasers -Today on Only My Husband: being sincerely confused why I’m waking him up on a Monday morning, and deciding it must not be important -@abby_ebooks >.> -RT @stetime: thanks @virginmedia for protecting me from dangerous radical website / slow search engine duckduckgo http://t.co/xuSll7HKzG -@jpgoldberg just for you http://t.co/Yy42g3VXhj -Word count: 80,951 #novelquest -# 366705408343162880 -WTF tumblr: somebody replied to my post. I liked the reply. It seems they deleted it. And now it says I liked my own post like some perv? -Today's wiki walking brought me to this bizarre little side story: http://t.co/DgPSt91Dum -@m1sp @WhiteMageSlave “I don’t want to be carried by a woman,” the boy protested. “Then you should not have been shot by a woman.” -@MennaEssa it's a vaguely steampunkish story set on a fantasy version of the Silk Road. Politics, magic, monsters, and teenagers. -I've gone to a cafe to do a writing push to finish up my novel. Gotta make up for time stolen from me by Defcon :p -@m1sp @WhiteMageSlave “Let me get my bear-killing equipment,” Oseni said, “but I must warn you, it’s only been tested on tigers.” -@m1sp but but but blonde is a recessive trait, Mispy!! -@m1sp however, the boy in my dream was clearly Occidental — wavy blonde hair and a striped shirt — so dream me is not on the up and up -@m1sp oh well I am pretty sure they’d be totally down as long as they’re further apart than first cousins -RT @auerfeld: The miserable tragedy of web #filtering: Hamlet is banned in the British Library, for violent content. http://t.co/LNTW6rhFD3… -@m1sp apparently I am Law’s Issue, because I had a dream where I met a cute boy and double-cheeked that he wasn’t. -@amazingant I share because I think she deserves to be remembered - as an individual, and as a face of violence against children. -@Packetknife in the meantime please enjoy this music written to go with the story https://t.co/zAQRjXcg0p -@treyka @Packetknife I fancy I am doing well on that front as well. -@Packetknife I am working on it Right This Second. Had to put it aside during Defcon stuff. Word count: 74,851 -@m1sp @WhiteMageSlave #StrongFemaleCharacters http://t.co/i2VUHs6IgY -@Bagelturf almost certainly. Thanks! -Two people in one minute told me that the problem is the update silently does not apply if you are using OSX's built in encryption. GREAT -@WretchedWinston by fail silently you mean fail to apply in the first place, not catastrophically fail and break my drive, right? -@m1sp I am Writing!!! The guard that Evren savaged was a woman. She's not quite dead. -@The1TrueSean I blocked them -Reasons I am crying tonight: I remembered that the voice actress of Ducky from Land Before Time was murdered at age ten -Jeremy Soule's (of Morrowind/Oblivion/Skyrim fame) first video game sound track was Secret of Evermore http://t.co/E7xruZjDMK -@jeremiahfelt nope -I'm pretty sure my Air is asking me to reinstall the same firmware update for the sixth time. That or Apple REALLY likes firmware patches -Maybe I need a #notlookingforaliteralanswer disclaimer tag -@therulerofchina #whoosh -Recursive philosophy: what is the "it" in "it's best not to think about these things"? -@sciencecomic I’m not sure which I should find remarkable: the pizza on the roof, or the windshield held on with blue duct tape -@vogon so close to looking intense and dramatic… and so far -RT @abiodork: Damned if you do, damned if you don't. http://t.co/luKqGk1YfI Speaking out or staying silent about sexual harassment. Either … -RT @TweetsofOld: What a fine world this would be if all of us were as broadminded as we pretend to be. UT1922 -RT @centerofmath: "Friend bought a french baguette only to witness this MATHEMATICAL HORROR" (http://t.co/GJ6efXdm8d) http://t.co/aBeEFg68hK -@MechMK1 I have what I call Hermione hair -# 366336918377607168 -I have some sort of rapport with toddlers. They always just walk up and start pulling on my hair -@MechMK1 (oh, also, most pre-made stuff like this is simply not cut to fit me, I am tall and husky) -@MechMK1 sure, but I'm in trouble if I come home with $500 of new dresses :p -@MechMK1 I wanted this dress and I got it ;) it's just *I'm* not satisfied with how I look in most dresses. -@MechMK1 oh I like the look, I just don't have the figure for it -@MechMK1 I bought this on impulse recently -@MarioVilas I already left the religion after being raised very deeply in it. -.@sakjur I'm pretty sure she meant petticoats and pantaloons -@MarioVilas it is. -A little girl made me stand up and show her how the skirt works. She then confessed she just wanted to see if I had princess underwear on -Dress > hula hoop http://t.co/VTfambrfid -OH "I was born in 2006" augh -Off to do the princess thing at @MarkKriegsman's house -@Kim_Bruning @ELLIOTTCABLE mijn ouders zijn amerikaners, er, English now, they were stationed with our Air Force -"Please run instructions.pdf to install your software" Wait do you mean there's a link to the real installer in it or -- -Let's add the assumption that permanently destroying the relationship with this person is out of bounds of acceptable solutions -What is the polite way to deal with someone who keeps sending you "hint hint" links to stories about people who converted to their religion -@blazingcrimson but my point was it was a tautological complaint, one I found bizarre that someone took the time to make of random freeware -@ELLIOTTCABLE wuh? -@blazingcrimson this is true of all languages, you just have to implement it... I'm pretty sure Ruby has some of those -@ELLIOTTCABLE ik was in Nederland geboren. Maar, mijn Nederlands is vreselijk. Ik las kinderboeken -(Or it can be “opslaan”. I’ve decided that Dutch is at least as synonym-happy as English, if not more.) -@hacktress09 hail season in North America is March through October. -RT @mark_e_evans: Cool pic: Undersea cables are all sheathing. The internet flows on a 3 strands of FiberOptics http://t.co/NoHWrUpLPP http… -The Dutch UI text for saving a file is “bewaar”. I feel like it’s reminding me to double check every time I go to download something -RT @obs3sd: @CipherLaw I was asked & refused to provide a backdoor to BitLocker back in 2005 -@jb33z being excessively literal in a way not compatible with actual human communication :) -@jb33z you know what you’re doing… -Also it seems everyone forgets size is metadata. For fully arbitrary messages, you still have a rough size after encryption. -RT @JamilSmith: Why @MotherJones is joining @Slate and other publications in banning the word "@Redskins" from its publication: http://t.co… -The time a message was observed being transmitted is metadata. The IP it came from is metadata. You cannot remove these from your protocol -A new class of programmer security mistake: only counting the textual metadata they explicitly put in headers as “the metadata.” -@jennifurret I woke up at 11:58 today. Still counts! -@radarpixie lots of professional programmers don’t have degrees. If you have a knack for it you can get to professional level with time -@radarpixie there is only one “real world” language I am fundamentally opposed to, and that is php :p -@radarpixie … yes? -“It does not work well on systems without ruby” complained the redditor, of a program explicitly written in ruby. -@DaKnObCS it is -@DaKnObCS I have such a monitor actually. But the touch runs over USB -RT @savagejen: "Eeee! What have you done to my sister bun-bun?" ..."you will be assimilated" http://t.co/OkvWbJF43r -@LambDaTom it happened to both of us -@thegrugq rong* -I'm convinced these live DOTA matches that DH is watching are crashing our router -Right click isn't working in dosbox. I can't kill the rat. The tutorial was unprepared for my failure. #daggerfall -I'm impressed. The Emperor in the opening CG of Daggerfall looks and sounds like the one in Oblivion. Or the other way around, I suppose. -@chavezery also, re: Firefox: I use OSX on two different machines. So, no. -@chavezery Flash ships binaries to Chrome. I lack sufficient data to know if it's in all recent builds. -@M0zilla @metrotwitapp no, I mean the official one -Time to add "silently fails if connection is down" to the list of ways Twitter for Windows 8 is not a real client -@chavezery as opposed to...? Noting that the problem is *Flash* -I'm really enjoying how Flash for Chrome, across multiple machines, decided it's time to start skipping music randomly -@LambDaTom I saw the rolled-up mattress in your room and sat down on it to see if it was comfy. My eyes started watering immediately -@AlanSwithenbank actually this tablet has worked perfectly with HDMI so far.... -My first world problems: I want to squish this bug, but everything within reach is an electronic device. I'll use this disassembled netbook -@amanicdroid I do all my actual typing on a laptop. When I bust out the USB keyboard, it's to play a game on something... -I think 12yo me would be quite pleased with my computers. And note that I seem to still have the same freebie keyboard and mouse. -At some point a standard USB keyboard became more cumbersome to carry than my actual entire high-end computer -@LambDaTom what detergent do you use? I’m apparently allergic to it -@_larry0 name and shame, especially for the gendered insult language -“Email hates the living” http://t.co/kaL32b7QqF I laughed, I cried, I wept openly -@focalintent something in the set [Chrome’s HTML5 audio, Soundcloud’s support thereof] broke recently. Flash or iPhone should work… -@ErrataRob @Packetknife @krypt3ia you’re typing ? -Much like with real weapons, I would not recommend using “active defense” against a real target for “fun.” -“Fun with active defense” — what’s that Lassie? Timmy fell into a ditch he dug after shooting himself in the foot? http://t.co/n3QmFAa1iX -I had a dream that I dropped my large Windows tablet, and inside was another smaller tablet, with HDMI out to the screen I had just broken. -# 365984392306368513 -Dear internet, I wrote you a song https://t.co/zAQRjXcg0p -@jozacks @anildash iPad, iOS6, tested in Tweetbot and in Chrome -@anildash that is a much better answer than "because screw you" I guess ;) -@anildash why does your blog resist pinching to resize and force me to scroll back and forth horizontally for every line? -Doubtlessly accurate future history. http://t.co/2NcRoAlQkB -RT @thegrugq: NSA firing 90% of SysAdmins can mean only one thing: DevOps … http://t.co/WogAlD7EhD -@MechMK1 @nrr IE6 is dead in the free world but not in China. IE 7/8 is not dead. Deliver us, almighty gods. -RT @xor: Obama: "Core Al Qaeda" is on the run, but we're still in danger. Orwell: "The war is not meant to be won, it is meant to be conti… -RT @nrr: http://t.co/N6FffekQTn http://t.co/uHuy3mvpCK -@alethenorio @TheDukeZip a document which CONTAINS its hash as visible text IN the document. This amounts to breaking the algo. -@alethenorio go ahead and try it then, some agencies will be very interested if you can solve this trivially ;) -@WillSecurity it's soup. -My subconscious just screamed at me not to get up from my desk without pressing control-alt-delete on my soup to lock it -@asiekierka fwoosh! https://t.co/Ca4AnAvnlG it's a mix of chiptune and orchestra (fake orchestra, of course) -@yacCz I'm not going to bother trying to calculate how many zillions of zeroes there are, but it can be derived from http://t.co/UaI5fqUSyA -@myfreeweb @Kufat yeah, like, a few billion :p -@yacCz it would be an absurdly massive computational effort, but hashes are decidedly more finite than possible documents. -@yacCz and if the VISIBLE garbage data is longer than the actual document, that doesn’t seem very entertaining ;) -@yacCz yes but my point was that you would end up with many kilobytes or even megabytes of random garbage padding for what I am asking -@collettiquette do you mean programming or linguistics? C and Dutch… -@yacCz but note, converting something that has its hash *appended* does not count, only the whole file counts -@yacCz sure, you can use a text file, except then you can’t hide your arbitrary padding and it’s ugly -@DrPizza not if they’re using internal mixers of some sort. I don’t know what Lavabit’s architecture was, though. -@billpollock the fundamental problem is that unlike anything else in comp sci, one takes lives into their hands with this subject -@DrPizza no, but they can demand all the other related data. Or maybe they think they can crack it… -RT @billpollock: We really need to publish a practical book about privacy and anonymity. -@sciencecomic the confederate flag thing is weird around there. There are different reasons people fly it and you can’t always tell… -@Kufat we *have* generated MD5 collisions; one could adapt the algo to padding a PDF, and go get some fresh coffee, and some more… -@sciencecomic do you remember which county? Shenandoah’s is the best one I saw.m -.@Kufat it could happen if you have enough computing power laying around and nothing better to do with it than amuse me :p -Trick I want to see: a document in a conventional format (such as PDF) which mentions its own MD5 or SHA1 hash in the text and is right -@focalintent (noting that I will count almost anything as an art - programming, fixing cars, whatever) -@focalintent kind of my first question about a person is “but what is your art?” I have met people with no answer and it confounds me -@focalintent there remain many people confused that I didn’t pursue an English degree. As if that would have improved me :p -@Tomi_Tapio nope. Gods know I couldn’t keep my voice pitch steady enough unless I was singing along to a recording… -RT @thezeist: Kartlytics: Applying Big Data Analytics to Mario Kart http://t.co/tOBNBrxUny -I guess I’ve been programming for 11 years, interested in infosec for 8, and composing music for all of 3. The last one needs some work :) -@pborenstein lol I was never particularly healthy to begin with -Sometimes I get frustrated with how little I know then I remember I have approximately 50 years remaining -What a cute idea: writing programs that guess the contents of other programs based only on their input/output http://t.co/UiWK1yu2Ti -When I see stuff like this, I imagine a guy who got drunk and got in an argument with himself on reddit http://t.co/gww8VozCuY -RT @profoundlypaige: http://t.co/a134yPtTZ4 -RT @AdmiralA: This is a first: Linux-only banking trojan tested to work on 15 distributions and 8 desktop environments. http://t.co/e5j6MFX… -RT @MarkKriegsman: Snowing? In August? At @Veracode's #hackathon? (Not shown: dry ice fog mix-in.) https://t.co/cEsFzschdy -In a year and a half, this is the first forensic evidence acquired that our team member in Israel actually exists http://t.co/VlwXoTVXay -@osxreverser you can talk to me… -@travisgoodspeed I never got an ack on this one… http://t.co/rglxyckkvV -@Motoma a world was and then suddenly was not -RT @arstechnica: Building a panopticon: The evolution of the NSA’s XKeyscore http://t.co/0kPsaMUbe8 by @thepacketrat -RT @puellavulnerata: http://t.co/KgxxRhSTVa Gotta love the "crosshairs on your co-workers, they might be an Insider Threat!" imagery: http:… -@m1sp what are you saying about furries?! -RT @Packetknife: I just published “Dear Leakers, Terrorists, and Uncle Abol,” https://t.co/NaaUhCHI2S -But seriously the NSA is burned by a sysadmin and their reaction is to lay a bunch of them off? They have clearly never met a sysadmin -@docsmooth @kvegh Thaaaaank you. I may or may not have spent years terrified a family member would shoot any boy I liked -RT @docsmooth: Hey, guys. The "hope you have a shotgun" joke isn't funny. My girls will be capable and strong and independent. So, STOP it… -RT @oh_rodr: Inlaw1: what can normal people like me do to avoid state surveillance? Me: nothing. -“NSA to cut system administrators by 90%” “NSA closes because senior officials got locked out after three guesses” -@Twirrim do you see why I would maybe want to wear the intestines of people who don’t write my name on things like a necklace -@Twirrim it is fundamentally placing me below my designated man to such an extent that I do not deserve to be called by name -@Twirrim and why the hell does that make it okay? -RT @ibogost: Facebook kept pestering me to take their platform developer survey, so… http://t.co/CpQjGizeSa -In retrospect the URL "Yaoi 911" was probably intended to be a subtle hint -I started reading what I thought was a normal super hero comic and it turned out to be yaoi yay! -@m1sp @WhiteMageSlave so I'm reading a well-drawn comic about a superhero who discovers the yaoi websites of his fangirls -@dancapper Lots o' things are traditions. Like tearing out beating hearts to appease the sun god -@Tactical_Intel I don't consider them advanced enough of a threat -@thegrugq true story I should have a chance to wear it this weekend to something with no luggage involved ~ -At least @codeferret_ has some idea of how hurtful it can be, because at infosec gatherings, he's Mr. Abadidea's Husband. :p -I don't see anything "polite" about sending *me* a letter that only has my husband's name on it. Good way to get negative faction points -@blowdart yeah, so, what's the proper format for introducing your slaves? Does it matter if I bought them or they were born to the family? -Why does MY side of the family send me letters addressed to Mr. and Mrs. Thomas Husbandpants as if I were subsumed by his flesh by the pact -I know what this is a picture of (Peter is going to town on that guy's ear) but it looks like a fabulous dance party http://t.co/xksxdiN6yc -@ndouba I don't have anything to upshift or downshift frequencies - yet - but should probably stop getting strange packages for a while ;) -@m1sp oh gods Bran is a furry #abadideaReadsBookTwo -@m1sp by which I mean: doesn't everyone find it a bit *odd* that a 7yo prince of Baratheon would shout "for Casterly Rock!" -@m1sp finally reading book 2, I'm struck by how brazenly Cersei has instilled her house in her children against the cultural standard -@fuzztester by the same I mean, nothing will break. You'll just have a visually blank name. -@fuzztester as if I have a num pad! but it should be the same. The dollar sign is the terminator because I don't know ask DOS -@fuzztester your seed factor is dollar sign space space space if you hit enter at the name prompt -The seed of zcaravan's Random Number God is based on your name. Choose wisely... -@_larry0 what sprintf? -@0x17h what are you trying to say about me -@m1sp conquering the world one ebooks at a time -RT @MotherJones: The NSA is reading every email sent to and from the United States http://t.co/BmXWN2umlH #ICYMI -RT @solak: There's no such thing as too many #blinkenlights @veracode #hackathon https://t.co/WSagW25Zoy -RT @Niki7a: Anyone from #DEFCON lose a bag at the Vadara Hotel on Monday? Spread the word and have them contact me, I might be able to re-u… -It’s clear Lavabit got an NSL. Time to disclose I have never gotten one! My secret is forgetting to check the mail -RT @i0n1c: So it looks like US gov kills http://t.co/0gIoAAlrCM over #snowden -RT @Myriachan: Oh hai from #WindowsRT 8.1 kernel debugger #JailBreak http://t.co/tC64uBAq33 -RT @Diunoctis: @0xcharlie @thegrugq http://t.co/EK4xVCiv0e -RT @dinodaizovi: Dear Twitterverse, please make this picture of @AmberBaldet and @0xcharlie into a meme: https://t.co/CVNyp2jZAe -@nasko wat? Something MUST have changed that on you… -# 365620323003011072 -@mistydemeo apple clang -I've concluded it's simply desperate to avoid the div instruction at all costs and goes on quite the adventure -@guamwatt I promise I know the difference between the opcodes in my own function and a library I didn't link ;) -@meursalt it is clang -Oddly, the compiled output of the C version of my itoa() is about three times as many opcodes as my asm version - even though I wrote both -@0x17h not as such. There are spiritual siblings. But that does not matter here -My itoa() works :p #asmquest http://t.co/C23F8YKAei -Yes, apparently smuggler is the sort of occupation you put on your tax forms in this game's universe -@iSentriX It's my weekend project. -@vogon nasm -Now with interactive name-writing class-choosing activity! So dynamic! Hey gimme a break I had to roll it all by hand http://t.co/0dy2R0pHF4 -@alethenorio I'm not sure what exactly it is doing. I think OSX is set to require password after 5 seconds. -@alethenorio um, that is kind of the problem. -@zcutlip off-handedly I'd guess the locale data broke an assumption of mutual exclusion somewhere -We're camping! Say hello to @GWakaMurray everyone http://t.co/GAUiDbrezK -This is a contest to see how much of the standard C library I can reimplement in a slightly incompatible way -@bhelyer nasm. dosbox. Close and restart dosbox and remount my folder every time I hose the imaginary machine. -Very glamorous. Top-notch effects http://t.co/xXHGttX3VK -// non-reentrant as heck I believe this counts as adequate documentation of the function's side effects -@mister_borogove I'm not too terribly worried about that :) -@mister_borogove essentially I just implemented a static char buf for this function that happens to live within it :p -@mister_borogove no, it needs buffers right where I put 'em -@chead it is dosbox. And it is definitely taking longer than half a second. -Not making this up. I thought I was going crazy earlier when I found my MacBook unlocked! https://t.co/Jt2ewvgBhe -(I'm guessing it's generating a mouse or keyboard event before the few-second timer for canceling lock kicks in) -Uhh so if you lock a Mac with dosbox open it will unlock about five seconds later thanks dosbox -(or as opposed to my bulk of asm for NES with rom banks, where you also can't do that but for more basic reasons) -It feels so weird now that on DOS I can just put a buffer in the middle of my actual routine and write to it and the OS doesn't care -Amusingly enough behind the screen depicting a forest is a window overlooking an actual forest but that's too analog -@sam82490 what if I told you it's actually a flickr stream -@sam82490 sad?!?! how often do YOU go camping at work -Authentic camping experience http://t.co/TVZQ3AH8e2 -@gu3st namely, the PHP language designers -RT @vogon: @0xabad1dea in about 20 years or so those'll make great bits for a "2000s-era computer programmer" halloween costume, keep them … -I got some... "merit" badges... http://t.co/8H0ArBOjG3 -@m1sp @aeleruil … I’m pretty sure my husband would eat humans if he thought he could get away with it. -I don’t understand why the first word Hayden came up with to describe Snowden supporters was “nihilists.” We care because we don’t…? -RT @norton_tim: Ten stars, Wikipedia whale editor. http://t.co/uTsjsmhHeF -RT @fbz: tltl;dr -- too long to load, didn't read. -@DamnViolas paging @attritionorg -@m1sp I had another dream about you! What is this -Wanted: iOS “cloud storage” app I can share to that will scp the files to a folder on my web server -@SurprisingEdge first chapter under PC architecture -@SurprisingEdge did he fix the part where he says IBM PCs have up to 512 bytes of ram? :p -Wow I just accidentally implemented Dwarf Fortress in like six lines of asm http://t.co/u1CxImLF8X -@codeferret_ because I was in the bathroom -@daviottenheimer yes... and... 512 bytes is a few orders of magnitude below that :p -@daviottenheimer the reference to 8088 on the page is to contrast it to the 286 ie what IBM PCs have -@WhiteMageSlave \o/ -@markoff @ioerror but in any case, maybe we should consider using crypto for mundane purposes a civic duty. -@markoff @ioerror standing out because you use crypto is, in my best guess, better than showing up in a text search in xkeyscore ! -RT @yesterbits: @0xabad1dea 640 bytes ought to be enough for anybody. -Either this is a misprint or DOS was more memory-efficient than I thought http://t.co/6Fw9bPXj75 -@sergeybratus @dildog pretty lucky I know so many old people ! -Implying that yes I own so many random old technical books I had no idea I already had one on the subject I was researching… … … -I wish I had noticed this book on my bookshelf in my living room about two days ago http://t.co/HpclRrO3yL -@marshray no, I’m trying to program DOS, and that’s my cutesy XOR screen test pattern -@dildog I'm trying to learn how to hook the timer so I can feed the speaker music from a table -@dildog you just made the mistake of revealing to me you are a source of information for what I want to do :p -@jinkee no, the colored part is the screen :) I'm apparently drawing it backwards -Well... I discovered exactly how much of the screen renders before the first timer interrupt goes off and gets hosed. http://t.co/JY3sri4nkY -I'm so glad this source code editor decided that I definitely wanted the unicode ellipses and not a literal dot-dot-dot -@thegrugq @asshurtACKFlags @0x1C and then you vanished off the face of the vegas! -The Exciting Adventures of "Looking For Documentation Older Than The Internet" Girl -@thegrugq @asshurtACKFlags @0x1C you didn't talk to me at ALL at the party, so... -@vogon to be fair, this sphere is finite. Not going to be exhausted in the next fifty years, but finite. -@crash8100 yeeeeeup -Maybe the NSA misunderstood “the unexamined life is not worth living” -RT @marshray: http://t.co/IRqSfFBzjd Official treachery: IRS, DEA, and NSA conspire to launder intelligence info and hide evidence from leg… -@travisgoodspeed http://t.co/rglxyckkvV -RT @codeferret_: recursion: when you curse because cursed when you are trying not to curse -@ashedryden @0x17h I’m sure tea partiers were a healthy portion of subscribers! -@tenfootfangs my life has only been getting better -@xkeepah I’m not THAT young :) -Engineers reporting for hackathon duty http://t.co/lQWYla4iL2 -@elppaeht8 I don’t think you understand. This company. LOVES. Programmable LED displays. -OH “I need to go find an extension cord so we can plug in the camp fire” -# 365260420665188352 -RT @zygen: We are literally heading to a scifi dystopia. http://t.co/Zkq4gBJoru anyone who doesn't agree with the current govt will soon be… -RT @dguido: God damn it! Who keeps giving these people my name!? http://t.co/Dl5Ti9bFDL -@tenfootfangs oh gods it’s Satan -@taviso “we’re too busy making money to defend our design decisions” -RT @taviso: I'm not making this up, http://t.co/LqqY6nDSn8 -RT @taviso: Bromium are hilarious, they won't give me a demo copy to evaluate because their security model is too complicated for us to und… -RT @dangoodin001: MT @awpiii: All I did was plug into the CHARGING port in the seat back. http://t.co/7hubWAaykR > mile high juice jacking -The boom box was made from a cooler by @MarkKriegsman to be Burning Man proof and more critically Veracode proof -@glesec it'd be hard to find something it can't play somehow :) -@Kufat we'll be done Monday. -I'm being told the stuffy suits may not enjoy finding an eight-person tent in their meeting room in the morning -@techpractical binaries! -Upgraded the hacking tent http://t.co/GXVSjtMEzc -@clerian some people don't understand the difference between Black Hat and Defcon -Some redditor's impression of me: "Gee willickers scooby" Jinkies! I actually say gee whittakers. -@Rorosaurus whoa it's my reddit birthday ! -@YourMomBot your timing is occasionally excellent -Hey Michael Hayden, former NSA director- your "opposite sex" comment is juvenile and prejudiced. Good job. http://t.co/qls5he8GwJ -I see Twitter for Windows 8 finally got a new update. I should probably put it through some paces before sending that #UIRage hate mail. -@clerian I just changed it so it's if(seed == 0) seed = 0xABAD :) -.@clerian the seed is getting set to 0 if it doesn't fit in a short. (Because I'm porting it to 16-bit.) Apparently it's a dull seed. -This is my Oregon Trail-like game so far! I think I found a bug in my home-rolled random number generator. http://t.co/Hvyk1besNJ -Noooo I can't be coming down with con flu during hackathon stop it body stahp -"Click here to switch to the beta of the new http://t.co/aoeU8lshVg!" "LOL welcome to the front page hope you weren't reading those docs" -@jonoberheide @mtrumpbour @thegrugq @0xcharlie @quine @mdowd @aaronportnoy @no_structure http://t.co/RophkGBQds -@philpem already linked it :p -@N0SSC I was a mere student, but the GBT has that certain special something that your higher resolution can't make up for :p -@eevee I just can't get over how its behavior is fundamentally different from eval() despite being in theory the same thing D: -New PHP Manual Masterpiece: four people voted against deprecating this. http://t.co/MO0f2YUHUA -@philpem I may or may not be writing a new blog post about that RIGHT NOW. -@elwoz I'm too young to know perl. So it doesn't have this eval feature? -(btw I did find it after looking through the file checkin history of the C implementation https://t.co/rLUBqQ2CPC ) -@OrwellUpgraded please see point about checking procedures and policies ^_^; -@botnet_hunter it's "deprecated", but so far that looks like that just means someone put a note in the manual -@OrwellUpgraded yes but that wasn't really what I was talking about, I meant ie "MegaCorp has six a year and JumboCorp has eight!" -I'm on a mission to find the bug report or patch where PHP realized that PREG_REPLACE_EVAL was a terrible idea. No luck so far o_O -@OrwellUpgraded presuuuuuumably vulns get fixed :) -It’s not really possible to get absolute vuln count in large, old products. Compare their processes and policies instead. -Are you comparing vuln counts between two competing products? STOP you are probably doing it wrong http://t.co/b5S42F0ZvT -RT @bSr43: I’m currently refactoring Hopper (for several reasons), and adding Python methods. Please send me all your Python needs! -@_larry0 thirteen years ago I was in middle school -This corporate carpet is now a war zone - many feet will be lost this day http://t.co/cVhR81SoQn -@vogon @grahamvsworld I realize now I actually slightly misread your tweet as “start pronouncing spelled…” instead of “start spelling…” -@thegrugq time to hit the safe house -@vogon … how else can you pronounce cooperate ? -@m1sp @aeleruil @WhiteMageSlave I’m told I’m actually a nightmare hell-student -@mubix … :\ -@m1sp @aeleruil ask @WhiteMageSlave about the teacher who said to the class “kids with divorced parents like @WhiteMageSlave …” -RT @Packetknife: "A modern, fast web-mail client with user-friendly encryption and privacy features. Free and Open Source software." http:/… -@JackLScanlan make a contact of yourself. -RT @rethinkdb: https://t.co/2mvnTYyitp -- some fun notes on implementing date support. Read it and weep. -@Packetknife so far my best baby experience is the one who decided the brown spots on my neck are removable -RT @menendymendez: in new zealand, the centimetres have eleven millimetres. http://t.co/g7Pv015390 -RT @kaepora: PuTTY SSH client for Windows releases new version fixing four security vulnerabilities: http://t.co/MMBVqucztf -@blackswanburst @wimremes hahahahahahaha no. -RT @nickm_tor: Feature request for the next version of RealityMUD: Restrict PvP to PvP zones. -@thegrugq @asshurtACKFlags not sure if insult… -@thegrugq @asshurtACKFlags wow you must think I’m a commie spy then -@m1sp I had a dream I showed up at your house without warning, and you were grumpy and hid under the blankets -RT @simonnix: "I want to print a synthetic chicken burger why the FUCK do I need to replace the synthetic beef cartridge?!" - future person… -@0x17h @ashedryden where’s my commission -Software changelog, 1989: "Negative numbers may be used for tempo on really fast ATs or 386 machines." -Thanks computer that's not creepy at all right after I was there and thinkin' wow these balconies sure are high http://t.co/UT0r0wyMRQ -@CaucusRacer I'm pretty sure this is just someone who thinks less keystrokes == less opcodes -@CaucusRacer of course you don't, they almost certainly didn't actually check. -@kcarmical I'm told it went well.. and I got like two hundred new followers... -@ELLIOTTCABLE its name is Zepto-Caravan! Zepto because it is so small, see -@ELLIOTTCABLE no I really meant not at the moment I am busy with my own project X_x; but @GWakaMurray and @hypermice like mods, so: ping -@ELLIOTTCABLE OCCASIONALLY BUT NOT AT THE MOMENT -However, http://t.co/Eaiydp1iLq did suggest "Inept Chocobo: The Lost Levels" -It is very hard to come up with a generic computer game name that someone else hasn't already come up with. -@billpollock -- because you got me thinking and if I wrote a book it would probably be about the joys of programming the asm way :) -@billpollock I'm still here! I'm actually taking the next few days at work (tis hackathon week) to try to implement a game entirely in asm-- -@zooko I'll need to run it past a few cryptographers... I'm just a lowly appsec type -RT @dylanhorrocks: If a group is 17% female, men see it as 50/50. At 33% female, men think there are more women than men (Geena Davis): htt… -@rantyben @julianor "padding" is a dirty word around here! -# 364886959769923585 -@codeferret_ I'm so glad. -@jpixton in context, they are integers. It would take the world's simplest, dumbest compiler, undergrad sample implementation, to screw up! -@stylewar @puellavulnerata @Bruce_Schneier ….. No tor node should be using a browser. At all. -RT @dangoodin001: Twitter rolls out two-factor authentication that’s simpler, more secure http://t.co/jwPNVoIl9D -@voqo @0x17h “sure, I see you have a kid, but it looks like the child prostitution ring has custody and you don’t pay support to them” -RT @puellavulnerata: .@Bruce_Schneier should really know better than to refer to a browser exploit as affecting "Tor nodes" -@ericlaw @innismir you know, I think everything still doesn’t parse rar. I assume for licensing reasons. -RT @WTFuzz: Thank you IE F12 Developer tools for creating an RWX memory section in my process, I needed that ... -@Packetknife @thedesertgate it’s not “hilarious”. People have a right to CHOOSE how much to share. -@pa28 yep -Found in code: /* v/=radix uses less CPU clocks than v=v/radix does */ If this is ACTUALLY true, slap your compiler silly -For new followers: here is the rainbow tree I was telling you about https://t.co/qpqqa3RMr5 -RT @pushinghoops: white people are rarely asked by the culture around them to identify w nonwhites let alone see them as humans, so: http:/… -@julianor I think it’d be a lot safer and just as reliable to take a byte distribution! -RT @julianor: I haven't seen anyone suggest using emulation to detect x86 code in JavaScript objects. Would be fun to exploit the emulator. -RT @justinschuh: If you're tweeting at me anymore about saved passwords, I think I've responded thoroughly here: https://t.co/3ELSmxhcTu -RT @AmberBaldet: Ugh, Children's Place drags out the "Math is Harrrd" trope (via @consumerist http://t.co/VSsLp1J5zv) http://t.co/t7nxyq8x… -Y'all are giving me some really good examples going back several years. I salute your memory! -@4Dgifts oh this totally counts IMO - because you get bitten by a language feature while using correct algorithms :) -@tef @alex_gaynor perfect! I had a vague memory of this but couldn't put my finger on it -@cybergibbons yeah, that's homerolled, can't help there. I'm thinking like: oh good the RNG is broken and undermining the API -@uppfinnarn that's my aim! -This is motivated by some recent crypto bugs that I think could have been plausibly detected by following a checklist of modes of failure -Crypto nerds, please cite me some real world examples of crypto failure that could have been unit tested (hash returning all zeroes, etc) -@chunter16 @amanicdroid nah it was just mentioned to me in passing. I think maybe by @thorsheim ? -@xkeepah without the paper, I'm guessing it comes down to average finger length. So it'd only work on adults and certainly not 100% :) -.@chunter16 yeah, I assume it comes down to a distribution of physical hand sizes. Allegedly I have "piano hands" -Someone mentioned to me that a study found typing timing differences between men and women and now I want to know if I type like a boy -@pa28 @codeferret_ we have like, the exact same body type and hair type http://t.co/n9Icxxp1yq -Wow looking at pictures of us on stage @codeferret_ and I look startlingly alike from a distance -It looks like Exchange was so offended by my 20,496 unread mails that it locked out my domain account -@McGrewSecurity @beauwoods for me the barrier is when there is an accent thicker than mud, not their fault but I can’t understand a word -RT @AnttiIsokangas: Chart of the day: The most controversial Wikipedia articles in different languages http://t.co/vOUbGSnd9Y -RT @agentdarkapple: From the WTF files: Gag order forbids kids from discussing fracking http://t.co/lh8k88B0nf -@homakov business goes much smoother with that personal connection, as it forms a trust deeper than anonymous paperwork -@ra6bit my first apprehension is how often DNS gets jacked -My husband seems to have con flu and I have a persistent cough. We’re coming to the office to share :) -@hellNbak_ it was a Firefox exploit. And the vuln was disclosed by @nils some months ago -@m1sp I just had the most vivid dream of becoming engaged to the prince of a small tropical island with a Muslim-ish religion -@DragonStuff a decorative tree sculpture with lights, and tuning into the noise generated by them. I said aloud “I can hear the tree” -@zorm but then that’s more bits than actually fits! :) -@puellavulnerata if they were consistent about it, I’d just accept it and move on, but they arbitrarily do or don’t lead with an extra zero. -@puellavulnerata …. So maybe this code is actually in real mode but that does not clarify the mystery to me -@oh_rodr not that I know of -Why did this programmer write 0x00009? Not 0x9, not some number of zeroes to pad it to a register size, but five hex digits. I can’t sleep -Our housemate moved out a few hours ago. It just now occurred to me at 2 am that I am once again free from the tyranny of pants in my house. -@savagejen https://t.co/s90fXxHyEd -RT @savagejen: Whelp, there goes the only reason to choose trains over planes. http://t.co/cNJsDa7ynB Sad. -@savagejen bunny is eternal -@hemantmehta because a webpage rudely shoved it in my face today -RT @KdotCdot: Best #Defcon tee shirt so far: white guy at airport with dreadlocks and shirt that reads "I'M NOT @MOXIE" -@m1sp_ebooks @m1sp yes -@dakami @bascule they should ship — as Math.WeakRandom — for games and other realtime simulations. -RT @nils: Seems like the Firefox vuln used against Tor users is CVE-2013-1690 reported by me in April and fixed since June http://t.co/XAES… -@dkabot AHHH charge it!! -@iFlames_ if I open the calculator, it's for programmer's mode... -calculator.app for OSX failed to open any windows. You are a calculator. You don't get to crash. -@vogon suuuuure you did. And bogosort returned a sorted deck on the first iteration -@vogon and the magic of C is.... ..... the same, but with semicolons -@JeffCurless I certainly write more than most people :) -I am quietly astonished every time an asm program I wrote actually executes to completion without segfaulting or hitting halt-and-catch-fire -@bSr43 what do you mean Hopper doesn't happen to have 16-bit DOS executable parser lying around?! :) -Hey @paypal why do you even allow vendors to do this? Most of them don't know any better - but you should. http://t.co/zhS9z6APyG -I was thinking about Morrowind and then this happened https://t.co/fSgwrNDPna -# 364498580398014466 -@myfreeweb yes, anything can have its own URL handler. That does not make it okay to launch another app without my consent. -BTW here are my slides if you want to grab the URLs https://t.co/p3dpOZ53xe try not to crash google docs again thx -“Requirements for this programming tutorial: you know how to operate an IBM PC (or 100% compatible)” Dang, I might be out of luck -@vathpela I don’t know, what’s in this hard drive from the late 90s? -Also, I find it extremely amusing that my “x86 computer” has one x86 chip but possibly three or more ARM chips. -Also note how easy it was to circumvent the checksum. It’s clearly only checking for accidental corruption, not tampering. -@ShadowTodd no, I am pretty sure that one was an on-the-fly decision. -Absolutely top-notch research on reflashing hard drive controllers that just came out of OHM http://t.co/WQNWnVld58 they have ARM CPUs!!! -@billpollock awesome. Were you looking for a particular topic -There’s no point in warning tor users not to visit CP websites. Either they never do, or they will anyway. They already accepted huge risks. -RT @Akamai_InfoSec: Security Reminders Inspired By Van Halen's Brown M&M Test - The Akamai Blog: https://t.co/cZtgpdIGo3 -@Vanguard_Group @eevee why only twenty? -@Kufat that’s not a requirement -Summer hackathon starts at work in a few days and I don’t know what I am doing yet -@anildash @hypatiadotca I actually heard a mom say to her little boy last week: “I picked THIS dress because it has pockets, honey” -RT @0xcharlie: ...and that is why we release everything so you can judge for yourself who is right: Paper and code available now: http://t… -RT @nudehaberdasher: Dear Toyota: Our attacks did not require dismantling of the automobile. We just wanted to look inside. -RT @0xcharlie: So now Toyota is saying you can only do our attacks if you remove the dash board. This is absurd and very troubling Toyota … -RT @thegrugq: Stop fetishising the technology! Security requires more than just sprinkling tech on something. -@DrPizza why not? True story: my high school was named Carmel. They ordered hats and they came back saying “Caramel” -RT @runasand: Firefox vulnerability was Windows-specific and targeted older versions of the #Tor Browser Bundle: https://t.co/q4D4meMozm -@kragen the one where I am extremely annoyed -@m1sp I mean the firearm that Tsovinar has taken from Aramaz -@Packetknife @krypt3ia it randomly did that to me once too -WTF: a webpage in Chrome for iOS redirected me to Candy Crush in the App Store app with no user interaction. This is not acceptable -From reddit: “APT1 really emphasizes the ‘P’” -Twitter is finally getting an abuse button. http://t.co/nwZz3xLfq4 the noun, not the verb. Do not abuse the abuse button. -@thegrugq @jduck if @fredowsley gave me the cloth one and kept the plastic one I’m gonna have to pay him a polite visit -@thegrugq @jduck wait there’s more than one?! -@donicer well that’s kind of a different issue entirely. I just meant that what *happened* didn’t happen because of a flaw in tor. -@snare I listen to baroque era music all day… -@thegrugq @jduck noooo I mustn’t destroy it -@thegrugq ffff I can’t get my barcon bracelet off !! -RT @vlad902: Brief analysis + annotation of the TBB payload here: http://t.co/B02R2R4hHd -RT @vlad902: Wow, the TBB payload exfiltrates the hosts MAC address by looking at gethostbyname()->h_addr_list and using ihplpapi!SendARP -@vogon I know nothing about Magic, how is this one? https://t.co/iOg7z29Xez -@MagicCardMe ?! -@charliesome @kivikakk seriously though expect this on PHP Manual Masterpieces in the very near future -@kaepora in the meantime: disabling JavaScript completely will break the exploit -@kaepora no, who knows, and trying -@charliesome @kivikakk WHY WAS I NOT INFORMED -@john_t_lutz @torproject that’s… not what closed source means >_> Go read the source, and then compile it yourself. -@donicer how does any of this reflect badly on tor? It’s a Firefox 0day which was used to target someone known to use tor. -@john_t_lutz @torproject …. Wherever would you get the idea that Tor is closed source ? -RT @runasand: Looking for info about #Tor, hidden services and the Firefox 0day? Please read https://t.co/R8SyqgaKDO -RT @DonAndrewBailey: OH: "I spent the last 24 hours analyzing a new 0day and my advice is to disable the Internet." "Where can I sign up fo… -RT @djrbliss: In case anyone else was looking for this too, here's the Bugzilla entry for the Firefox exploit: https://t.co/HkKbc7czy5 -RT @torproject: Dear global press, it's called Tor, not TOR, see https://t.co/CE4LQWdhGB -@kevinmitnick definitely the one by that Melissa girl -In my house. Not dead. Nobody broke in and stole my iMacs. Further bulletins as warranted -@jmgosney yes, and that thought is “lol” -@m1sp hey! I figured out what to do with that literal Chekhov's Gun I planted -@boblord it turned out he didn't work for them, so no death. -# 364143625346637824 -My good friend General Protection! I haven't seen you in over ten years! What brings you to heavy machinery http://t.co/OBzLQYOvkC -@dan_crowley just saw you on the tv in the airport -@Bitweasil it went normally for us at noon. Except for "FEMALE opt-out?!" Guy. -On the news in the airport: "Another tough week for the NSA - agency chief asks hackers for help" -@boblord I'm wearing my new Twitter security shirt. Ran into someone wearing a Facebook security shirt. Staredown!!! -RT @Packetknife: And - of course - the idiots going VPN VPN - as if any of these single items are an OPSEC solution. -RT @Packetknife: I think the Tor damage assessment(s) will be a while in the making - and then lessons learned for ages. -@tapbot_paul all I know is it executes shellcode at some point. -@BaconZombie yes but I mean because otherwise it won't work or because otherwise it'd start hitting non-targeted users -@ShadowTodd the art of software security assessment -Has anyone figured out yet if the FF exploit used against tor users only affects ver17 or did they artificially restrict the payload -@zedshaw I'm just saying, I doubt there are any nodes running on the same host as a Windows browser bundle. I hope. -@vogon it's the ONE thing the Feds can do right now that won't get them bad press, so... -@zedshaw so far the exploit has only targeted Windows, and most (all?) nodes are Linux, but it could conceivably be used to stage -@zedshaw I just mean that "tor servers" sounds like the actual tor nodes -Maybe we shouldn't put half of all anonymity services in the same colo next time -@thezeist free stress test -@zedshaw I wouldn't call them "tor servers" as tor itself doesn't need them; servers accessible only over tor. But yes. Eggs, basket -@codinghorror might as well! We already have all the fat binary infrastructure and the ARM compiler infrastructure -RT @Atencio: Ohhhhh, so Doctor Who is kind of like nerd pope, and today the conclave burned white smoke. I get it now. -In this RT: compression ruins everything again -RT @thezeist: Xerox scanners/photocopiers randomly alter numbers in scanned documents http://t.co/7IgUWtPoZI -@comex I haven't had a chance yet, maybe on next leg of flight -@supersat I kind of opted into the extended screening anyway -@skullmandible @tenfootfangs maybe he's just whitekin! -RT @csoghoian: Top security researcher @0xcharlie (ex-NSA) on NSA spying: I don't think anyone should believe anything they tell us. http:/… -@charliesome check my timeline -@MechMK1 I picked up a casual interest around 11, started programming at 14, got more serious at 17 -@michaeldinn don't see any actually but the box part might be tucked behind something -@MalwareJake http://t.co/cksK7witgr -The desk at this gate is unattended. Both workstations are unlocked. I see text boxes, buttons and checkmarks. -@jtauber not sure, as I was planning on opting out anyway, but they didn't open my luggage -My twitter stream suddenly stopped being Defcon and started being people freaking out about Doctor Who -I'm very sad there's less than a year left on my chipless passport :( -I think they might have given me a handwritten SSSS because I'm using a pre-RFID passport as ID for a domestic flight -@ioerror do you ever get handwritten SSSS or only printed ? -This looks like an SSSS to me. But I thought it's printed if you get one. http://t.co/BDiSOOVwbt -@MalwareJake the honest answer is there is fresh blood on my clothes due to an unexpected medical issue. That may have confused it -I award no points to the male @TSA agent who exclaimed "a FEMALE opt-out?!" Stay the hell away from me, buddy -The bomb detector machine crashed when the nice TSA lady fed it my sample -@RichardBarrell I forgive people of misspelling that. I don't forgive them when they misspell Melissa w/o asking; it's a dictionary word -These touch screens won't let you press the same button twice in a row. Guess how fun it is to type Melissa Elliott -@kherge (yes the person arrested supported this that and the other, good for law enforcement I guess) -@kherge 0day doesn't discriminate -RT @runasand: Any Mozilla security engineers at DEF CON? Please find/email me. #defcon -Fascinating thread of the day: law enforcement using 0day against Firefox extended support edition http://t.co/kCzTwge9bl -RT @PennyRed: Actually, I don't think the internet is 'a breeding ground for misogyny'. It makes already existing misogyny more and differe… -@techpinscher @thijs I'm amused at how many people still take "Thanks Obama" very literally... -Unfortunately we have a noon flight tomorrow, so, goodbye Defcon! -RT @Packetknife: @0xabad1dea In real terms I'm not sure there is a difference but customers I've worked with want to move simply on percept… -RT @addelindh: @0xabad1dea I've talked to people, both customers and internally, and consensus seems to be that $ > concerns. -To be clear: just repeating sentiments of some Europeans I met. They are skittish of using American cloud services... -@WilRockall has he fixed it? :/ -@WilRockall do you let your children out undressed ? -@addelindh your sarcasm meter may need calibrating ;) -OH: "FTP... that's one of those hacker tools, like wget!" "Once you start curling, you never go back" -@SimonZerafa that was what I was getting at :p -"I think Veracode is hogging a disproportionate amount of compiler engineers" "no wonder Microsoft hasn't shipped that C compiler" -We as an American company with a cloud storage component are losing European business because of the NSA... thanks Obama -@Bitweasil @marshray okay found a sign if you never see me again the casino ate me -@Bitweasil I.... don't know.... the big one up front? -@Bitweasil I'm going down to the lobby. With husband, if I can wake him up. -The problem with these casinos is that they are all self-similar in every direction. Hey yep it's glitter and neon down this way too! -@Bitweasil in the fantasy tower I think it's called? I just mean this place is huge and directionless to me. -@Bitweasil how exactly do I get into palms place -@kaepora IDK..... pokemon and mario kart? and animal crossing -My hotel's webpage says "you deserve a staycation." Good job on getting the meaning of that word exactly backwards, marketing! @Palms -My Nintendo 3DS offered to do a firmware update today. Well I guess that's one way to find out if the code is signed... -@LowestCommonDen @eevee sit downstairs. Watch child play. Come upstairs when they start climbing on the bookcase. -@LowestCommonDen nope! -RT @jodymelbourne: just got threatened at #defcon #isightpartners party by isight staff member who to hit me cos he said my eyes made me lo… -RT @runasand: Poppin' calculators at Caesars: http://t.co/B6gBxWTtNO -@0x17h yes. The given figure is they have $4/user/month. -@Kufat yes, thank you -@SteveSyfuhs nah it was normal Linux and I was surprised -RT @schemaly: What Happened When My Son Wore A Pink Headband To Walmart http://t.co/kh9xwOeJ8b via @HuffPostParents -@landley see @boblord ! It's *not* just me! -RT @DrPizza: So why deliberately do things that serve only to reinforce tech as a boy's club, when it would have been easier not to? -What does it say if I hear about a cool vulnerability and I just assume the speaker meant Android as opposed to normal Linux -I'd like to thank everyone who was in the front row with their transmitters and DIDN'T blast my demo out of the sky. I know it was hard -RT @jonoberheide: Things in Vegas seem to break more frequently during DEFCON. http://t.co/daaM2Gveey -@MB5 thanks! Much less blurry than the one I had -@spacerog I did specifally ask if it was you but he said he figured he could tell if it was :p -Trying to figure out what acquaintance of mine talked with my husband. His description: "he had a beard... and glasses" so, like, 73% of you -@AndrewMohawk my screen decoder is terrible and useless! And also a bit API-specific -.@yaakov_h the goons swarmed the stage with alcohol. I had to designate my husband as my proxy -BTW I did notice my goon say "we got a first timer in track 1" into his radio but I didn't realize I would be raided halfway in -@m1sp what if I didn't and I'm actually a ghost now -@m1sp I might be a little bit delirious -@chriseng @focalintent gods I look awful in these pictures :( -Thanks everyone... my feet hurt. -@leEb_public my email is melissa.b.elliott at gmail I will try to get to it :) -RT @natashenka: "By informed consent I mean everyone knew I was up to something"-- @0xabad1dea -RT @chriseng: Since @0xabad1dea doesn't drink, hubby came up to take her whisky shot. Goon: "Do *you* drink, sir?" Hubs, with conviction: "… -*collapses* -# 363804668100489216 -@quine the speaker room is looking for you -I hear I won an award for "desperation to win an award" from @attritionorg. Yaaaay !! -RT @Zac_Mueller: @0xabad1dea that's how my parents got robbed -@blowdart @vogon I'm not payin' -@blowdart gdi @vogon you favorited this before it was fifteen seconds old -@WilRockall I'm talking about video feeds. -I think I have put the fear of @0xabad1dea into Twitter's security team, good and proper. -@sakjur they have these large cutouts that hang from the ceiling in layers -@sakjur they use projectors and a video which has black pixels to match the gaps in the sculpture -Infiltration complete. http://t.co/BXmX0sy4bo -@boblord be there in a sec -@boblord where you at -I really like Defcon's animated sculptures. It's a low budget effect, why don't more places have them? -@p0wnlabs it should be 1. Online schedule has two track 2s for the time slot -In the chill out lounge seeing which of my demos are still working ;) -.@savagejen and the bunnybroken baby monitor http://t.co/2alUtBoBNK -@Kufat instion hub or something -@Kufat I already forgot its name lol -@cybergibbons track one, hacking smart homes -@dasshuchan lol nope -"The password is the last three octets of its MAC address." About a device that controls your locks and garage doors -@eevee video. Toddlers. There are a few people into that... -@Emyylii though the chances that someone who wants that lives within a block or two of you are probably pretty low. -@TheDaveCA @thejefflarson what threat? I reserve the right to mock advertising they actually spent money on :) -@Emyylii it's a video feed of a child's room -(Though remember, conventional radio baby monitors are easily tuned into by people in your neighborhood.) -I'm glad I don't work for the toy company that's being revealed to ship a baby monitor toy that can be hacked into by pedophiles ... -@chriseng @apiary though I did type BHDC out of habit I realize -@chriseng @apiary we're at Defcon, not Suit Hat -@apiary we know it's not anonymous, but to us asking to see photo ID just sounds rude :) -@apiary it's a sensitive topic at BHDC -.@mescyn the nice man at Starbucks said they do it year round because people lose cards in the casino -@SimonZerafa I asked and they said lost cards in casinos are a huge problem. -(No cost, these are from the crate I ordered on the super cheap) -@afreak @Kufat @cyan2049er I will give them for free but only to four different people. -To everyone asking: a lot of places in Vegas demand photo ID if you don't pay in cash, even for coffee -Not leaving Vegas until I give these away to four good homes (with photo this time) http://t.co/Z5m3zmcJIj -The coffee place in the Palms is good and they do NOT ask for photo ID -@tpw_rules will link slides afterwards. Video out of my control -@Achifaifa as much as I'd like to attend @quine's... -@zooko @dangoodin001 it must be a mistake, as they have two talks in track 2... -Well apparently I have no idea what track I'm in because different schedules say different things. Yaaaay -@0xcharlie <3 -Today, 5pm, Track 1, I will give you a new source of paranoia: the emanations leaking from your electronics http://t.co/fztGYMBRNF -oh wow for some reason I thought I was track 3 but I'm in track 1 with the glowy rainbow sculpture stage -@MalwareJake (I was taken by surprise. It's off schedule.) -@MalwareJake It might or might not, it's different every time, I'll let you infer the rest -@nrr yes you are on my list -@MalwareJake no, I'm sick. -@boblord hey you're on my list of people who are here that I haven't seen yet -@nrr you know what I am getting at :p -@Kufat @cyan2049er ahh sorry my mind was fixed on the "31" and thought "that just happened" -Of course my body decided that today specifically I need to be in horrible pain. You know, the one day of the year I'm going on stage -@rantyben but so was everyone I saw wearing those boots -@Kufat @cyan2049er it's expired. -@blowdart not me personally, just venting -Of course after checking morning twitter I learn defcon had strippers at jeopardy or something. Of only one gender, of course. -@ircmaxell I wasn't particularly surprised to learn this person has already blocked me on twitter :) -RT @DrPizza: That a girl was being stripped as a reward at hacker jeopardy at #defcon was pretty incredible. -@minus1cjb eyeroll.gif -@k8em0 @marthakelly fortunately nothing in particular has happened to me so far :) -@stevelord well we kind of spend our whole childhoods being warned, warned, warned, men will touch you, men might rape you, run away -@minus1cjb I'm just subtweeting someone on twitter who thought it was great and feminists are stupids who make fake drama -@stevelord Apparently it has 0% discomfort for many men! Unless we gender flip it and suddenly that's gay :) -@pryv83y3s ............... what ? -@stevelord I am attracted to nerds -@ircmaxell I'm subtweeting someone who thinks it's "great" some slides had objectifying imagery because "stupid" people will make "drama" -@Packetknife @savagejen IDK, I've been mistaken for Not The Interesting One countless times as a subconscious thing. -@nrr wat -And remember, jerktrolls: *I am bisexual. I find ladies sexually attractive.* But my first reaction is still to feel acutely uncomfortable. -Because nothing makes a woman surrounded by men she doesn't know feel safer and welcome for her skills than sexual objectification, YA KNOW? -Subtweeting OHM, not Defcon: if you don't think sexual objectification in slides is a problem, I can only conclude you don't want women here -RT @savagejen: @ashedryden Photo of the invite they handed to my male co-presenter (despite speaker badge, they didn't give me one) https:/… -@vaurora I am here because I want to be here. I guess technically I got "paid" in two free badges. But so far so good -@joshcorman @spacerog IDK. The wizened beard doesn't match the youthful hair. One or the other! -RT @RT_com: ‘Encryption is a human right’: Wikipedia aims to lock out #NSA http://t.co/9c0Twuq13W -@danchodanchev I'm pretty sure "exploitable" in that presentation does not refer to vulnerable to attack. -I made it back alive. They were not the NSA -@puellavulnerata his wife isn't a citizen !! -Don't tell my mom but I am totally getting in a car with a guy I met on the Internet -I don't own any knee high black leather boots. Am I doing Defcon wrong -@caeliat I'm in a gray hat with pink hearts on it right in the front door -@caeliat cominnnng. -@caeliat oh um well they have a big front lobby and um um I donno I can wait down there? ^-^;;; -@caeliat I am at the Palms. Is that okay? -Google Docs is convinced there are six different instantiations of me all looking at the same slide. Six little Kasane Tetos in a row! -@charliesome my tweets sure are postin' good, in that case! -Boy I wish I could check @tumblr on this open wifi but they don't support SSL for reading the dashboard hint hint HINT -Twitter, it'd be more efficient to tell me when there WASN'T an internal server error when I click tweet -@Xaosopher I'mma hop in the shower I assume that's okay time-wise? -@m1sp but I don't have any kittens T_T -@m1sp why do I pick fights on the internet? -@8vius key word, *as a woman*, because men already had these rights. -@8vius You are running around in circles and making no points. Feminism is about MY RIGHTS to have a job, be educated, etc, as a woman -@Xaosopher only the finest in local cuisine ! -@8vius Because I identity as non-male, that is a critical component of my existence, and that MATTERS. -@Xaosopher *checks clock* I reckon -@8vius then I am not sure what we are disagreeing about. Yes. I am a feminist. I fight for gender equality rights. -@Xaosopher I'm awake -@8vius Thank you for sharing your opinion on my rights and my identity. -@8vius I will say it again in bigger letters EQUALITY OF RIGHTS IS NOT SAMENESS OF IDENTITY -In this thread: I pick a fight, then act surprised they're ignoring my point. I realize I should go back to sleep. -@8vius @dresdencodak It is a fight for equality. -@8vius @dresdencodak because equality of rights does not in any way imply identical identity????? -@8vius @dresdencodak "stop identifying differently from me! it's weird!" - the rallying cry of the comfortably privileged -@8vius @dresdencodak if I recall correctly (ie not confusing my crazies) he's a raging misogynist among other things -@leighhollowell I am, if you want to grab food downstairs or something, but I'm not feeling well and not going out. -RT @vogon: do you roguelike her, or do you roguelike*like* her -@blueg3 I guess @m1sp doesn't count... -@m1sp I'm not doing anything illegal! On stage. I pre-filmed those parts. -@0x60 I already retweeted it -RT @TimKarr: #Snowden's wikipedia page is edited to label him "traitor." IP address of editor belongs to someone in Congress https://t.co/b… -@m1sp but I'm in America... -"Hurr hurr intelligent people with useful skills and good jobs don't have gurrlfriends" - @Unilever, maker of axe body spray -RT @thejefflarson: Hey, axe body spray, no one can understand this because it isn’t programming: http://t.co/257xsuCQAG Also, you are all… -@Reversity @Bitweasil last year someone tried to "get me into" ninja party. I was already invited. He wouldn't go away. He was uninvited. -@rezaaslan @sciencecomic it's special sorts of people who never get a second opinion on anything. -RT @eevee: http://t.co/xPz6pLrIFY dear haskell: where do i even start. -RT @dinodaizovi: Text message from Unknown. Phone acting up at #DEFCON, nothing new here. http://t.co/j7oZZSOqOm -I tried very hard to shake @dotMudge's hand, ending up having to settle on Kingpin :p -RT @nickm_tor: I'm betting that people will find CRIME/ BREACH variants for years until compress-and-encrypt is treated as guilty-till-prov… -@m1sp no, that's in about 22 hours! -@m1sp *collapses in hotel room* hi ! -Flash mobbing @dotMudge http://t.co/iHFGjQYY6x -They're dropping hints that DARPA has a new initiative coming up ... -@codeferret_ thank you dear -# 363444153364914176 -@attritionorg meanie head -Today I am undercover infiltrating Akamai -@MalwareJake I found one Tylenol but I may come by after this talk... -@pmylund fortunately I know a hundred people here at least. Probably a few hundred ... -I need ibuprofen or something. I'm behind the AV guy in track 1 if anyone I know isn't shady has any I can have :( -@joneszach at the palms buffet with @_larry0 :) -It was like this when we got here I swear http://t.co/KrkYIW9k9C -@matthew_d_green ie I am Loud and Proud. -@matthew_d_green but the original proposition was: faced with non-anonymous review, conceal your minority identity. I hate that. -"A java app for Windows" write once run somewhere -Listening to about how horrible Java smart cards are. "Ints are optional" -Apparently @aaronportnoy and @aloria fell for it... -.@the_navs you know that's fake, you always knew it's fake, and I'm sad you can't go a year without posting it for no apparent reason. -@mczonk It is an autogenerated name for an offset into the stack; are you looking at something that is pushing values? -@G13net to Mr. Portnoy, who I think considers the discussion over. -@kennwhite I'm actually tall for a lady and into normal range for men :p -@DrPizza you actually didn't catch me in bubbly mode... -If you have a non-anonymous review process and my chances are improved by having a "generic" (white male) identity, I don't want it. -I refuse to censor my girly name on a non-anonymous submission to anything. Because the pink and glitter is part of the deal you're signing. -@aaronportnoy right back at ya :) -Attention web developers: why aren't you using the protocol-relative URL to prevent SSL mishaps? It's REALLY EASY http://t.co/J97orRgfU7 -@vogon The protocol-relative URL. The protocol-relative URL. It can be deployed with a regex -@aaronportnoy I believe you, I believe you! I'm just a dissenting opinion! -@aaronportnoy okay, but I am still 100% dead set against it as conceding to the status quo of what's "normal", and empowering it. -@vogon It is the only policy that doesn't break the entire point of SSL. USE THE PROTOCOL-RELATIVE URL, WEB DEVELOPERS. -@aaronportnoy one of the biggest motivators for me several years ago when I was young was seeing women's names on schedules. -@aaronportnoy hiding varied identity does not improve the ability of people of varied identity to become established in the field. -@homakov maybe -RT @m1sp: "You see, patents are like Pokémon cards..." -@aaronportnoy No. I am not missing the point. I simply refuse to conceal my identity to improve my chances. That's not meritocracy. -RT @chort0: If you stayed at Caesar's, check your bill. Heard yesterday people were billed phony local phone charges. Found one on my bill.… -RT @newsycombinator: Creator of xkcd Reveals Secret Backstory of His Epic 3,990-Panel Comic http://t.co/gfMvD1D86W -@aaronportnoy hell no. Rather be rejected for being a woman than accepted for not being a woman any day. The pink is part of the deal. -RT @tojarrett: Here's to my fabulous, funny, smart and friendly @Veracode friends. cc @annenielsen http://t.co/VR9naoF3tl -@DaKnObCS it looked like a narrow FM broadcast, but it sounded nonsense. -@m1sp reminder that I adore you -@Bitweasil @spacerog we're standing on the stairs at the raised dais bar at the center of the casino area -@Bitweasil be down in a minute -@Bitweasil @spacerog there's more than one lobby? I only know the giant one that's a casino food court -@Bitweasil I'm in my room atm. Want to meet in the lobby? Maybe we can find @spacerog -@matthew_d_green well my talk is at 5 on Saturday -@spacerog okay I'm done -@spacerog I'm not inviting you, sorry. But I should be done soon... -@spacerog I am upstairs, Chewie is trying to make me take a bath because my legs hurt so much... -@Odysseus8yzx about twelve years ago IMO -how DARE you encrypt your radio signal! I'm CURIOUS! oh gods this is how the NSA feels -@Randominterrupt nowhere! I really mean it. I am going to sit RIGHT HERE and work on my slides and not move my legs :( -@KronicDeth I think I just did myself in with alternating walking miles with sitting for hours, and having several computers in a bag -@MalwareJake Palms actually. -@chriseng @Xaosopher fine food is completely wasted on me. My favorite meal is rice with gravy. -RT @DrPizza: @julianor I almost worry that the hardest part for you is not making it practical, but coming up with a nice acronym. -@0x00string not that I know of, sorry! -@tenfootfangs so @codeferret_ has been playing this again recently and was thrilled he got a street pass today -@matthew_d_green yay you're here I didn't know that -RT @DrPizza: Crypto experts issue a call to arms to avert the cryptopocalypse at @arstechnica http://t.co/H8cntne0nM -If anyone wants to hang out, I'm in the Palms and my legs hurt too much to leave *grows roots* -Two hot dogs, two lemonades, $30. Yes @Xaosopher I know that if I walked for an hour I could find some reasonable prices :p -@spacerog Chewie and I are going to the Palms cafeteria if you're around -My demo of observing the capacitive field of a touchpad isn't working. Did it freakin' migrate -@zeroday nah I'm not sick just not built for running back and forth across Vegas sixteen times in two days lol -@0xcharlie *Doctor* Miller, you should know me better than that. -Did you know in Nevada it is illegal to disclose the EXISTENCE of someone else's radio communication? Do not tune to around 860mhz -Remind me to dismantle this giant antenna rig feeding into a nest of wires and glowing lights before the maid comes tomorrow -( @0xcharlie is my benchmark because he's not good enough for Black Hat either.) -it's a good time for Imposter Syndrome to set in. <s>I am blood of the dragon</s> I am definitely at least as smart as @0xcharlie. Right? :( -My entire body is sore like I've been riding horses while lifting weights what is this nonsense -@spacerog yo you in palms? -RT @savagejen: Someone put a black hat on top of the statue of Caesar! http://t.co/CtpsUTq8VB -@homakov I've got over forty thousand tweets, a husband, AND a few boyfriends. ;( -RT @eevee: apparently @Fidelity only stores passwords as digits, as typed on a phone keypad! replace e.g. A with B, C, or 2 and it still wo… -The police's response about the pressure cooker google search thing http://t.co/5dYfnrMjhn -@spacerog That's not in our room! But... never stick things into strange ports. -"Another device on the network is using your IP address." Hey knock it off jerk face -# 363086545307185153 -@blueg3 ie, random people visited by the police over assorted harmless internet activities. -@blueg3 I was discussing this with some journalists today. There are some complicating factors, but the core stays the same -I won't post the back. You have to work for it ! -The deluge of people who want to see the back of my badge has already begun -zelda_get.wav http://t.co/ta1y7YxAl5 -My plan to subvert @arstechnica is going swimmingly. But I didn't know how to own @DrPizza's Windows Phone bc I've never seen one before. -@joneszach in the women's bathroom, I wouldn't recommend it. Heading downstairs to get lunch with the Ars reporters -@dangoodin001 are you at Blackhat, or just Dr. Pizza? -@DrPizza I'm in some sort of wifi lounge (aka sofas in a hallway) near the sponsor hall ATM -@DrPizza yo I have a badge for a few hours if you wanna talk for more than thirty seconds -@authentic8 noise floor :) no worries it was loud as heck -I am become Chad, Worker of Booths. It's uh... short for Chaderella, don't judge me -In tvtropes terms, Tsarnaev has a http://t.co/isCl0yksZA that sees him as http://t.co/vcz7TadPeA -@itsdapoleece I think they have a right to insist they believe he's innocent, I just also think the evidence is tremendous he's guilty. -@vogon should be set to global -RT @chriseng: Thesis: There is a *small* but real chance that both RSA (the algorithm) and non-ECC DH will soon become unusable. @alexstamo… -I know all of you use Adblock or API clients. I want you to know someone is paying to promote Tsarnaev's fandom group on Twitter. -@jennifurret praise the science ! Seriously though, congratulations -RT @vogon: exhibit A: why browser escape bugs mean less and less as the browser gets more powerful http://t.co/tx8vD3UnCR -I'm at the lobby at the base of all the escalators #blackhat and apparently all my friends are still asleep. -This is why the surveillance state is a freaking PROBLEM, America http://t.co/6mAvDFlkqq -RT @mikko: She was googling for information on pressure cookers. He was Googling backpacks. Then they got visited by the feds. http://t.co/… -Pink hacker owes @annenielsen now -Pink hacker needs mocha badly -@wimremes ... Wuh? :( -Who is going to be at the Rio after lunch? -@DonnyVantage @mikko you sound like the idea of a government suppressing someone's rights is just too crazy to imagine. -RT @birgittaj: #Snowden finally receives asylum for one year in #Russia. -@fuzztester well, of all three or four women there last night, I was the only one in a pink shirt -@dangoodin001 only by betting our understanding of the math is incorrect. Or common libraries have massive implementation flaw 0day. -@tab2space we kind of attend as a company, but, I don't have a badge of my own this year. -@m1sp I am sleepy and what is this -Why yes, stranger laughing at me going to Defcon but not having a Blackhat badge, we DO all have to start somewhere. -@canweriotnow technically we make a living cheating at the halting problem :) -RT @NewtonMark: @0xabad1dea If you can’t find a restaurant, at least you won’t have to solve the dining philosophers problem. -Veracode: we can solve the halting problem, but we can't pick a restaurant to meet at -@Packetknife \o/ -@amanicdroid and written in latex -@amanicdroid this is someone who was up for a pwnie :) -@Bitweasil yo. Still at Caesar's. still going strong at palms? -I'm at the kind of party where people hand you a copy of their upcoming research paper -Happy Annual Run Into Your Industry Ex Night ! -And @c7five forgot I don't actually have pink hair -@vogon it didn't make the journey... -I found my cousin. So this is what I would look like if I were a boy -@DrPizza yes waiting on my bag -@Myriachan this is the internet. It happens. Also, they're blocking the guardian at .gov -@comex I'm told "it's a Japan thing." -Seriously READ THIS it is bad very bad http://t.co/RQWxGxLPwM -@vogon that does exactly 0% to placate me -@profoundlypaige @mikermcneil NO -xkeyscore *brags* about not needing "strong selectors" (ie the name of who you're looking for) after they talk so much of protections -RT @vogon: @0xabad1dea those slides are 2008-era, when 20TB of data/day meant a max retention time of 5 days -Xkeyscore, according to slides, sometimes can't keep up with incoming data with 500+ servers. -@cpu @vogon No. If you press too hard on the walls, you will discover it's a hologram -RT @BlackHatEvents: Demand for the #BlackHat Keynote from Gen. Alexander has been so high, we put it on YouTube http://t.co/cdEAdGujmv -@jennifurret wooooooooo -@DrPizza my internet is about to expire and we're not landing for another hour at least T_T, but I will contact you later ~ -@Myriachan yeah they'd have been promoting it differently if it was a new way to break code signing -@xa329 it kinda looks like it might be my name XD -@DrPizza there's barnes-con hosted by @thegrugq and the password nuts are having a party and that's all I've been invited to so far -@xa329 @_defcon_ woohoo look mom I'm famous -@Kufat yeah, Android has failed completely at keeping users patched :/ -@chriseng I ain't touchin' no phone at no def-con -RT @a_greenberg: If you have info about the plot to egg the director of the NSA during his Black Hat talk, contact me at agreenberg@forbes.… -RT @winnersusedrugs: Before you make a joke, ask yourself, am I reinforcing an idea or status quo that makes life harder for other people? -@tumblr Thanks for redirecting me to plaintext when I manually type in https:// . It is very helpful to defeat my attempts at privacy -@DrPizza I am ready to get the !@#$ off this plane but we are still so far away and my internet timer is ticking down -@Kufat if you're still running gingerdead, USB ports are the least of your problems -Use a USB power-only condom when connecting to strange ports... http://t.co/lIzcuDFQaK -@xa329 that's a battery/CPU thing -@vogon no actually, it seems. I was reading some comics and they looked fine. They're typically already gzipped -@vogon pretty sure they are proxying and recoding the image. JPEGs are blurry. -# 362724029892788224 -*gasp* they... they change animated GIFs to only be one frame. This is an assault on our core values -Looks like gogo airplane internet automatically recompresses jpegs loaded over plaintext. I just now visited a plaintext page... -@matthew_d_green @marshray .... we hope -RT @chriseng: Don't assume lower rate of vulnerability reports mean things are getting better. More likely it's publication bias. @attritio… -@ra6bit IDK. My university of 1800 students had 65535 IP addresses. It just kind of happened. -@fuzztester it wasn't but we've been on the plane almost an hour and it hasn't left yet -RT @Packetknife: I wasn't kidding - they ~forgot~ I was a US Citizen. The word "forget" was used by my DSS liaison. This type of stuff is s… -Follow @Packetknife for the perspective of someone "suspicious" -I don't know the travel etiquette: do I get to challenge the guy who brought three carry-ons and took my backpack's spot to mortal kombat -@xkeepah @trap0xf the difference is that's not particularly sexualizing. A few women are into that, but not many. -@blowdart well you did it wrong. Try again -@blowdart some sort of x-bone -@_wirepair that's why you got carded -RT @kwestin: At Blackhat/Defcon not even taxi meters are safe http://t.co/EjHvRg7rSF -RT @LTorcello: @puellavulnerata @AnonPressOffice Given human cognition #NSA meta-data is too broad. Analysts own cog bias will create narra… -@boblord y'all sticking around for the weekend? -In funnier news, I hear Microsoft is thinking about calling a do-over on their product unveil. Great job -@Xaosopher wrong letter. N -@MechMK1 context: NSA at Blackhat -I'd be more inclined to be polite with leaders of an organization if it wasn't engaged in, you know, "being too cute by half" -RT @evacide: I'd be more impressed with crit of #BlackHat heckling if it didn't add up 2 "respect the guy w/ all the power who won't answer… -@puellavulnerata hallo vriendin. Hoe gaat het? Engels is een dom taal. #suspicious -RT @puellavulnerata: #XKeyScore Page 15: to find terrorists, look for anomalous events, like someone using encryption or a foreign language… -Hanging out in an airport is a good time to invent a new system of buffer overflow tracking I guess -RT @moxie: Gen Alexander says that we shouldn't worry about NSA collection because analysts have taken a pledge. Also, they took a class. -RT @vogon: most unexpected thing in the #xkeyscore deck is the way it mentions decrypting VPN traffic as if it's a thing an analyst does be… -RT @KimZetter: Heckler in audience yelled "bullshit" at Gen. Alexander - audience applause -@partytimeHXLNT the look on my face when I found out about tab breaking... -RT @Packetknife: a US Citizen the very day they decided to violate my rights. My DSS liaison suddenly was asking me if I was a Citizen. I w… -RT @Packetknife: Keep telling yourself they get warrants for US Persons (as if that makes it blanket OK for everyone else anyway). They "fo… -I travel rarely enough that the complete pointlessness of the "security" rigmarole still amuses me afresh every time -@DarrenPMeyer I tried to put all the nice plastic cases back on... -@DarrenPMeyer I had no choice, but I do not need them, they are the extras -"Dear TSA, this suitcase is full of wires and circuit boards because science." -RT @chort0: If you have to redefine words in order to answer questions, you're probably lying. -Both these programs operate on a very large scale. We made sure to redact the important part. http://t.co/w5PfGjfRvL -RT @ODNIgov: DNI Clapper Declassifies and Releases Telephone Metadata Collection Documents: http://t.co/Twg8d07FuW -Here you have it. Finally. Documentation about NSA tools to query actual web site transactions http://t.co/wDY6YMXLRy -RT @ggreenwald: REVEALED: NSA tool that collects 'nearly everything a user does on the internet' http://t.co/EIksUzEF5w -@MechMK1 you can't type that on an iPhone lock screen keyboard though :p -RT @vikrum5000: @0xabad1dea iOS7b1 had a bug where slide/swiping to pick an accented character would scroll the view and dismiss the keyboa… -For the record, iOS totally lets you use accented letters in passwords. Yes, it's Impractical Phone Password Week for me -@DrPizza hey can you hang out with @codeferret_ that would tie things together nicely :p -@Irrnick ehhhhum. -@DrPizza whatever Dr. Calendar I’m already asleep -Because why would I want to use an accented vowel in a password? #android http://t.co/Rg8FXtpZac -@DrPizza by tomorrow I mean it is today already here in Boston but not in Vegas I think -@DrPizza tomorrow night -Holy cheese. My android tablet knows about my flight and reservation. This thing is too smart -@mattblaze oh boy I should probably take advantage of not being en route yet and be the only girl with a patched tablet at the ball -@fredowsley your challenge, should you choose to accept it, is to go figure out if @thegrugq has bracelets this year -Things found searching for my bathing suit: AV cables. Priceless jewelry. My other iPhone charger. Last year’s Blackhat badge -The hoop skirt is definitely not cooperating. I was starting to worry too much about random guys harassing me anyway, honestly… -RT @Sci_Phile: Holy s***: Because nerve signals are driven by ion gradients, salty soy sauce can make food with unused ATP do this http://t… -@eevee my IT department would have banned servers if they thought it wouldn’t just make the CS department even more overtly rogue I think… -@amanicdroid it’s my suitcase, and now my husband’s. -DH just realized his backpack is gone so now his stuff is in my suitcase. … there might not be room for the hoop skirt. -@pborenstein yeeeeup -@washiiko unfortunately, there is no Teto doll. -@washiiko ARE YOU NOT ENTERTAINED? -Improving my slides based on feedback. http://t.co/dbInts2f64 -@vogon I’m pretty sure the text accompanying that screenshot was semi-sarcastic. Obviously it was a bug. -This player-written guide to Daggerfall is complaining that Bethesda still hasn't shipped Morrowind. -# 362352830868226049 -Already knowing that multiple endings shipped broken, my impression is Daggerfall is the buggiest thing to ever succeed. -Reading a guide to Daggerfall: "do not pick this trait for your character because it was never implemented" -RT @ericlaw: @fugueish @chort0 @0xabad1dea I've seen that before; I believe it's caused by registry corruption in the ZoneMap keys. Sorry. -@chvest on the defcon floor? Gods no. I'm not TRYING to generate harassment. -RT @AlSweigart: Browser plugin idea: Appends to your user-agent, "By accepting this HTTP connection, you agree to nullify your terms of ser… -RT @chort0: @JZdziarski @0xabad1dea I assume you're responding to the Google-claim. It's all sites in 64bit IE, cannot add any. -@docsmooth http://t.co/bukJSnElTu -@codinghorror “has entered”? At least half of all geeks are too young to have ever seen Clippy in the wild. -@MechMK1 Vulpix -RT @chort0: Dear Microsoft IE team: F-you very much for this. Artificially blocking your competitor is a dick-move. http://t.co/ZAXf7xe65o -RT @Pinboard: On the plus side, tonight I have a dozen new servers -RT @Pinboard: One thing I won't miss about this colo is how they let me remove servers without checking any ID, and even lend me a cart -@Wanyal I prefer the Bootleg Crystal way of saying it. http://t.co/CNpPRKLtr0 -It will be easy to find me at Defcon. I dress like a Pokemon trainer http://t.co/bqFeuYtfzD -Hey @USAirways you forgot the most frequently asked question of all - WHAT IS THE URL http://t.co/qv0xMRGzBL (first google result!) -@longshanks_ I'm not @natashenka. Mind blowing I know ;) -“22 packages can be updated. 22 updates are security updates.” Guess I should stop putting that off -@RSnake now, I keep Flash as click to play, if only for performance/battery life, no matter how secure it gets :p -@RSnake Java. Flash problems have tapered down quite a bit IMO. -@jruderman Amazed that JavaScript is a language that has semicolons as a token but you can often omit them nilly-willy and it will still run -RT @marshray: #passwords13 conference lays down the rules: no physical fights allowed during the talk "Defining Password Strength" -@jruderman @JSHint @miaubiz amazed that JavaScript is a semicolons but we’ll try to parse without them language… -That’s exactly what the APT would say, @CiscoSecurity … https://t.co/4BnVcEGXxn -Is this what @6 wanted? -RT @ph1: "My house is on fire, but only a bit. Do I really want to call 911? It's expensive." How US healthcare feels to a Brit living here. -RT @arstechnica: Bradley Manning not guilty of “aiding the enemy,” convicted on 19 other counts http://t.co/iXYyDr0jc3 by @cfarivar -RT @MotherJones: BREAKING: Bradley #Manning has been found NOT GUILTY of aiding the enemy, the most serious of the 21 contested charges fac… -@vogon nah I mean I can scroll with my cute little fingers and the page bounces and stuff -You wanna know a secret? I use IE10 on my tablet sometimes, because it actually understands touch. Except when it doesn’t. -RT @corkami: PE102 - a Windows executable format overview http://t.co/geaC6axH4l http://t.co/KAodpVbwW2 (available in poster & booklet) -Internet Explorer is literally bribing people with cupcakes http://t.co/yEvLPlU7fl -@fugueish lol I got like three hundred retweets when I shared that when it was first found. Mongo peeps were hurt we were laughing -TIL that “import *” is its own opcode in python -Here are some slides about things you absolutely should not do in python (first slide is blank, skip forward) http://t.co/X4AbFTEbXM -@EddieCLeonard a few different people on reddit said this indeed would work -@EddieCLeonard they called him, he hung up, he picked up again, they were still on the line, they played a fake boop bleep bloop -@EddieCLeonard this whole thing relies on the quirk with who hangs up first in UK landline phones. -“If you are a religious zealot about git one way or the other… well, there’s only one way, the other way is SVN zealot…” “who?!” #meeting -@DrPizza yeah, and it’s possible to get fairly cool outside at night. -@DrPizza a light sweatshirt or something -@ZackMaril @steveklabnik is it thinner than an iPhone? (Mind you, I have never been t New York and never seen these bikes.) -@EddieCLeonard except he hung up on the people who called him and called the bank himself. He thought. -.@ZackMaril there probably *is* a camera for reviewing after an accident. But that person has a paranoia that makes even me blush :) -@Achifaifa I’m just saying, “it’s the live-streaming panopticon of New York City! Bloomberg Bloomberg” is uh… prooooobably not true. -@jmdeliso also I consider Skyrim’s magic system the funnest by far. I actually can’t play magic in Morrowind… -@jmdeliso I feel like large portions of Oblivion were fairly uninspired. Skyrim recovered a good portion of it. Good environment -@Achifaifa clearly they’re for reviewing footage after an accident. But it feels creepy to point one up at your face without warning. -@TimoHirvonen @ChromiumDev oh thank gods -RT @TimoHirvonen: RT @ChromiumDev: Animated GIF decoding time was sped up 50%: https://t.co/jUKmssqz5i lolcats, Chrome fast. -@ZadowSapherelis @m1sp eeeeeee -This is kind of creepy. But Citi Bike is a privately owned company. It is not “New York.” http://t.co/50RP7mrd8i -@misuzulive which one is that? -At least, the reddit comments said it was a UK landline thing; I barely remember using them, but I don’t recall US phones doing that. -A sophisticated bank fraud scam that relies on quirks of UK landlines http://t.co/ScBMmrFrMW -RT @mattblaze: MIT has released the "Abelson Report" on its involvement with the Aaron Swartz prosecution: http://t.co/FgH1IWogQ0 [pdf] -@nrr aren’t you glad we live in a universe that doesn’t lag and crash when we get too frisky? -@mike_acton someone needs less crunch time -I’m pretty sure at this point you could accuse @briankrebs of anything and his local cops would laugh it off. https://t.co/CK4pqsSZEp -@miaubiz http://t.co/MFwpYikwoY -I can’t be behind UnthreadedJB. However, I *might* be Pinkie Pie and I am definitely Satoshi. Rumors settled. -RT @capotej: programming http://t.co/8hAUv0Xa4e -@i0n1c do you really think I would NOT put pink and sparkles everywhere -@KronicDeth it could probably run the mod but I am running bare. -@Sektor9 I got rid of everything that would not result in hardware losing functionality -@i0n1c yo tree nose you’re only allowed to troll me if you unblock me so it’s a fair fight -@m1sp I only have a Divine Intervention scroll... let me think, that'd probably take me all the way to Castle Ebonheart -But here is my pretty elf. Because Morrowind lets you layer armor and robes http://t.co/RXEzwT87Pr -I’m going to bed, Morrowind, I have work tomorrow. “You can’t rest here enemies are nearby” -@nelhage @nickm_tor @matthew_d_green maybe we need a guide for how to unit test your crypto API usage -@miaubiz yes it is a kind of fruit soda. It is too sweet, I do not like it. However it is extra caffeinated. -@miaubiz … tea? Cola? Mountain Dew? Bawls ? -@chriseng no, no, it’s fine, I’ll survive. I’ll need a way to find y’all when I stumble off the plane… -@attritionorg most kawaii, @0xabad1dea. Most desperate for awards, @0xabad1dea -It’s that time of year when the very dignified @chriseng starts drunk texting -@vogon @nickbreckon @chrisremo *takes notes* -@matthew_d_green this is all perfectly apparent. Why even document it? :) -@raptastics @natashenka they don't get paid until you confirm you received it or the dispute period expires. Good plan I think. -@jmdeliso I would put Skyrim between Morrowind and Oblivion -Guess who forgot that Morrowind ghosts can only be harmed with silver weapons #dead -@natashenka I’m two for two so far -@thegrugq sir yes sir -@WeldPond not on SSDs integrated into a tablet there aren't -"Get a real PC" he said "you can't play games on that thing" he said "the SSD is small and there's only 1 USB port" http://t.co/WKpUJoy3pM -Now to do a battery rundown test of the tablet running Morrowind and see how that compares to a flight from Boston to Vegas -I remembered to get three ounces exactly of lotion to take to Defcon. The TSA can take my dignity but they can’t take my complexion -@eevee welcome to this end of the network. There are hackers, watch your step -@Zookus Duel Masters! It’s time to d d d d DUEL! http://t.co/2gyRaJcZ3V -@hokazenoflames the video card isn’t a gamer’s card but it still plays most things fine if you turn off the extras. -@hokazenoflames well, I didn't cheap out on this tablet. It is an i5 with 4GB ram. It's fairly high end laptop range. -@DrPizza http://t.co/IeSvYlv5Yn -@DrPizza well he kind of did a whole song about DOTA several years ago -RT @TNG_S8: Picard must choose: caulk the Enterprise and float it across a tachyon river, or attempt to ford it. Barclay gets dysentery. -@DrPizza dang it man I don’t have time to learn about the creepings and the sleepings and other words I learned from Basshunter -@pusscat @smallesttiger aww :) we were broke too. I ended up with my mother’s ring -@homakov no idea. But elder scrolls 2 is free and runs in dos box -@DrPizza it often breaks real-world exploits. I added steam.exe and steamservice.exe and they seem to be working fine -@DrPizza do what I’m doing: opt everything into emet -@homakov it’s on steam you know -@homakov I've written fan fiction about my Dunmer character if that's what you're asking... -It's a shame my tablet doesn't quite have the oomph for Skyrim... but Morrowind should run juuuuust fine :) -# 361996393361051648 -@charliesome I've been using tablet computers for many years. First rule is: don't remove anything related to the tablet hardware! D: -I should get out my radio antennas and fool around *thunder rolls* or not -@kevinlange you know why I followed you? Because you claim to be the shadowy force behind the miku telnet host. That's why. -@WeldPond the latter. Because I've never once in my life clicked a link and it was an RTF. Certainly not from browser to wordpad.exe! -Protip for anyone else taking Windows 8 on stage: sidebar -> settings -> notifications -> hide for one hour -I'm fiddling with emet because this is the computer I'll be taking on stage and I know y'all have Steam daemon 0day -Of course that reminds me of my most fun-to-research blog post: the time a vendor app ate ram when I shook the tablet http://t.co/4c9o7b2gcn -@WeldPond Yes. I am saying that is lame. -@hokazenoflames http://t.co/4c9o7b2gcn :) -Oh, some of these *are* signed, they're just missing fields like company name... -@hokazenoflames I trust you saw my article about the debugging utility with a memory leak that Acer left on my tablet? -Almost every process running on my Windows machine is signed. The six that aren't were all preinstalled by Acer. Thx -Oh, that compressed badly. It's the list of processes emet protects by default -Who even gets owned by a wordpad exploit I mean seriously http://t.co/fuYA1uzJYP -@Jonimus so is your favorite color black, or white? There's more black... -@m1sp that quote on tumblr is the most mispyish thing -@Jonimus contrary to popular opinion, that’s not even my favorite color -@JackLScanlan the future -I found the USB hub. It was directly under my chair, tangled up with a USB mouse that is exactly the same color scheme -It's okay everyone... I'm trustworthy http://t.co/yRTWxUhCUo -@almightygod I mean nobody knows it’s a parody :p -@kyhwana that is a good thought. I will check when I can -@MaraWritesStuff @qDot in New England, we have novels. -I keep forgetting my iPad is still set to Dutch, mostly because Tweetbot doesn’t have that language, then I see a button like “snij bij” -@almightygod linking the Daily Currant without a warning isn’t nice, Mr. Godhead. -@jesster_king it’s actually just my gaming hard drive. It has eve and guild wars on it -@m1sp @ibutsu in other words Mispy dearest you are as haplessly hopeless as I am -RT @snipeyhead: Hah. http://t.co/sSX3S98RgY -@m1sp @ibutsu you wear coats when it’s not cold and eat a lot of macaroni and cheese I am positive of this -@Kufat offer not valid until USB hub is in my hand -I will give three dollars to whoever can tell me where I left my USB hub with my flash drive plugged in -@m1sp @ibutsu I kind of envision you curled up under a blanket in front of a laptop in a dark one-room apartment is this accurate y/n -RT @solak: Headed across Long Island Sound on the ferry. Of course I had to snap this pic. http://t.co/RhrIVDRZqt -@snare as opposed to… -@ibutsu @m1sp am I idealizing your behavior Mispy -(She apparently saw the news on TV and inferred, correctly, that everyone in infosec knows everyone.) -My mother just texted me out of the blue to ask if Barnaby Jack was really his name because that is clearly a pirate's name. -This program's sanitize function may be nearly useless... but at least they only used it on about half of all code paths that create files. -@kebesays possibly relevant is that I definitely typed echo "blablabla" > .. just to see what would happen :p -@kebesays nope; it's a folder on my local system that I just made. -Ya know how Terminal.app shows cutesy icons for what kind of folder you're in? Okay, what did I break? http://t.co/9aUWf9uIvX -@arlieth I mean the code underneath. If they're also doing the visual design, that's PROBABLY two mistakes. :) -PSA: if you are letting your research scientists write your web interface, you have made a terrible mistake -@nudehaberdasher "bluh bluh bluh it's a Roman numeral ten" - Apple designers -Support ticket: urgent high: need new flaw validity setting. "Valid as HELL" -This kid totally blew his chance for an amazing final line of the article http://t.co/eY6KtuA4Fb -@ra6bit @dildog it’s ok. HR doesn’t have twitter -@dildog check the internal humor list for a screencap… it’s not a security bug it’s just hilarious -I should renegotiate my contract to state I can submit any customer code that makes me laugh until I cry to DailyWTF -string sanitize(string path) { return path.replace(”/”,””);} Yep that’ll do it. You’re safe. I can’t hack this. Just don’t- oops too late -Everyone else is already in Vegas, it seems. See you Wednesday night… -@kevinlange I don’t care what Apple says. “OS Ten 10.8” or whatever sounds dumb. -@hypermice they have been since about 2002 or so -@hypermice @kll @nudehaberdasher apparently the “official” way is “oh es ten” -@kll @nudehaberdasher oh es ECKSSSSSSSS -Also @nudehaberdasher pronounces OSX the same way I do so I award one (1) abadpoint -Dr. @0xcharlie and @nudehaberdasher on real TV! http://t.co/33BKzBcUWV -http://t.co/gC4MRtGMZx “A couple weeks ago I discovered a way to gain arbitrary shellcode execution via PowerShell (on RT)” -@chibitech (I guess I was closer to blonde then.) -@chibitech when I was about 13, my father’s exact words were: “If you go to Japan, they will all say, you are Sailor Moon! We love you!” -@chibitech I’m kind of scared to go to Japan now. Would my obvious foreignness discourage them or encourage them? :/ -@Foolishoverlord on the wall… the picture was not taken straight on to the mirror -Here is a moth on a mirror for you. I’m sad this was the closest the camera could focus http://t.co/2VlhG47fbq -RT @TiloJung: "The sudden reconsideration of post-Sept. 11 counterterrorism policy has taken much of Washington by surprise." Thanks, Edwa… -@thegrugq hey I learned a Thai insult http://t.co/UtFLw5j6vj -wow this article about paleontology sure has a lot of comments *third comment raises question about possibility of time travel* oh nvm -@hypermice (really what I was getting at is that I sound like a teen but I’m an adult and I already have my degree) -RT @Shit_MSDN_Says: Unsafe code is less secure than safe alternatives. -@_wirepair wow @thegrugq looks so young and boyish -@hypermice no it makes you 18 -@thegrugq it's dated 1517 how can you not tell this is pre-Elizabethan -No matter how bad your day is going... http://t.co/IuUmLXQgwC -@thegrugq @marshray pretty sure this trick still works on FBI -RT @harper: @0xabad1dea "dear nsa" is a fun twitter search -@marshray @thegrugq like my daddy always said, look for the ones with the class rings -@m1sp I read in EXCRUCIATING GORY DETAIL how to treat arrow wounds today. D: -Dear NSA I am googling how much different kinds of wounds bleed for a novel not for covering up those murders I didn't do thx -Word count 76,131 #livetweetingmynovel -@nrr I’m kind of you know talking and stuff -@nrr o/ -RT @natashenka: I need a name for my 6502 assembler for Tamagotchi. Please submit your best puns -@loli_vampire @washiiko dude how is she supposed to clean in that do you know what it feels like to get dust in there -RT @arstechnica: Why YouTube buffers: The secret deals that make—and break—online video http://t.co/pelULf0VPS by @JBrodkin -@m1sp !!Atomic Laser!! -@peacefinder he says "it doesn't count as incest when you're different species" -DH: "Aragorn, relax, those orcs are all level 1. Just use Greater Cleave" -@m1sp details, details -Think I just blew DH's mind by mentioning that Elrond is half-elven and his brother chose mortal during his "mortality suxx" speech to Arwen -@washiiko I'm saying he's going to actually buy everything for PC anyway and the PS4 will cry. -"I can't wait to get a PS4 so I can actually buy all the games for PC" - paraphrase of my husband -@singawhore @sophiaphotos 80s apparently -@CyberSquirrel1 why is it ALWAYS Virginia -RT @netik: Nice SSL man in the middle attempt, SFO. http://t.co/VGKdy8HiMl -# 361633584752230400 -RT @sophiaphotos: Trans* folks turned away from ER and told to see a vet. http://t.co/hP4zK5OEbr http://t.co/U9s8u1J3rq -I fully endorse @Hakin9 for their pwnie nomination. They really deserve it. -@meangrape that was kind of part of my broader implication to begin with. -@SpireSec @monsterlemon no, I called them stupid dummies I am pretty sure :) -@ScratchFreedom "normal" in quotes. -@SpireSec @monsterlemon there you go mis-ascribing things to me again :) I believe in both freedom of research and pressuring vendors to fix -The psych[iatrists|ologists] all started from the flawed premise that I wanted to be "normal." Oh hell no. -@SpireSec @monsterlemon in particular, the research that prompted this was not paid for by Volkswagen. They have no right to silence it -@SpireSec @monsterlemon my opinion that full disclosure is A Very Good Thing remains firmly in place, I assure you. -@thegrugq @homakov actually I just live in a liberal commie outpost called Massachusetts -@IRStrutt by ordinary locks I mean pretty much everything you're likely to see in the real world short of treasury vaults. -@homakov it's just a neighborhood very near clusters of tech companies. Rent is a bit high but not absurdly high. -@SpireSec @monsterlemon so this whole thing was you assuming I'm completely colorblind to nuances? :\ -@SpireSec @monsterlemon maybe my philosophy is not a black and white 100% immutable absolutionist little thing :) -@IRStrutt I *have* a deadbolt. So? -.@homakov You're wrong. My neighborhood has as many Indians, Africans, and Asians in it as white folk. If not, added together, more. -@SpireSec @monsterlemon you don't understand the difference between being paid to do a review and choosing what to do with own research? -The psychiatrists I've met were all useless at dealing with someone who was never neurotypical to begin with. They lack imagination. -@SpireSec @monsterlemon how many times do I have to repeat in this conversation that oh guess what the world is still imperfect -@SpireSec @monsterlemon they're idiots who won't take advise they not only asked for but PAID for? That's stupidity beyond my reach to cure. -@SpireSec @monsterlemon and then OH MY GODS YOU ARE SETTING A POST VARIABLE AS A COMMAND TO RUN AS ROOT ON YOUR DB AAAUUUGH -@SpireSec @monsterlemon we rank things by ease of exploitation and severity of impact. It's up front that most findings are fairly minor. -@elad3 yes, and the psychiatrists failed from top to bottom to really understand at all what I do -Now, I live in what you call a Nice Neighborhood, and that itself is a stronger mitigation than the actual locks. -@SpireSec @monsterlemon (many of our customers come to us AFTER they were publicly owned.) -@SpireSec @monsterlemon not 100% of the time. Sometimes we get in shouting matches with them about it. But usually. -@SpireSec @monsterlemon it turns out our customers actually fix the flaws, because they came to us because they WANTED to fix them. -The psychiatrists actually made a big deal about me worrying about stuff being broken into, as if it were irrational. -@SpireSec @monsterlemon My employer discloses everything found to the entity that paid for the review. My personal stuff is full disclose -@SpireSec @monsterlemon I don't know why you'd think I'd think everything is ever fixed. Being vigilant is my *job.* -@SpireSec @monsterlemon World Is Flawed - Perfect Security Not Measurable - Reel At Eleven -@SpireSec @monsterlemon stuff don't get fixed until it's disclosed because vendors are cheap. Disclose, disclose, disclose. -@thegrugq thank you doctor buddha -@SpireSec @monsterlemon "Known" vulns can be fixed. "Unknown" vulns can be exploited without detection. -I have a constant anxiety about my house and car being broken into because I know how !@#$ useless ordinary locks are. No peace of mind :( -@SpireSec @monsterlemon but my tolerance for known and unpatched flaws is effectively 0%. -@SpireSec @monsterlemon and who said there is no threshold of tolerances? -@SpireSec @monsterlemon but indeed, no software system yet devised by the minds of mortals has proven unquestionably secure. -@SpireSec @monsterlemon I said "it can't be secure if there are known vulns (that are not fixed)" -@SpireSec @monsterlemon yes that is definitely my position. That is all the nuances precisely -@LJonhny don't worry, she's not likable at all 8) -@LJonhny oh yeah. -Why doesn't this giant, page-long hyperlink go anywhere?! http://t.co/8QnKKBa8O6 #geocitiesproblems -@willbradley it's actually an ajax form that clears itself... before it gets the OK response. -@s0bercom it... it *is* black -@thegrugq no, it's when I stopped feeling suicidal over being bi, among other things... -There is a phone - like, the kind with a wire coming out of it - sitting in its dock on top of my back patio's fence. Am I being lured out?! -RT @sergeybratus: @0xabad1dea It so happens that the "worldview change" token reloads eventually, although not in the same room :) -@testbeta .... wat -I already spent my one "radical worldview change" token in college. I'm officially Old(tm) and set in my ways now. -I know I come across as about 16 on Twitter. I'm irresponsible as heck but I actually already took Philosophy 101 about seven years ago -@CliffsEsport I believe in leadership earned through respect and trust, not in Rugged <s>Individualism</s> Selfish Jerkism :< -@CliffsEsport wow. THAT was uncalled for. :( -@CliffsEsport I'm saying I don't agree that "to oppose something is to maintain it." I'm just being snarky. I can't turn that off. -@CliffsEsport I, too, base all my philosophy on fantasy novels (it's true. I just also happen to write the fantasy novels I base it off of) -@CliffsEsport I'm pretty sure I don't have any 6th grade art teachers to oppose at the moment -@CliffsEsport no actually, my childhood access to fantasy novels was fairly restricted. -@CliffsEsport I sincerely regret my past willingness to submit to arbitrary authority. -@CliffsEsport oh, if I had known what I know now, I would have turned a lot more things in late or incomplete, instead of being an angel. -@CliffsEsport I think I am old enough, smart enough, and SUCCESSFUL enough to say no, she didn't teach me anything. -@CliffsEsport she completely ruined something I had worked very hard on and was proud of, solely out of spite. Could have written on back -@CliffsEsport I already *knew* it wasn't supposed to be late. She taught me nothing save contempt for arbitrary judgment. -@soulmech @vogon I feel like you two should probably meet each other -I will never forgive the 6th grade teacher who wrote "D" in red ink on the FRONT of my art project because it was late. Hateful witch. -@netmork Yes. There are two extra syllables because uhhh, it's translated from the original Japanese and that was the best I could do ;) -Compose carefully Submit with trepidation Internal server error. -@m1sp I'm starting to like Tamal. I'm a horrible person, developing characters just so I can murder them in book 2. -@ra6bit on my honor I will not be drunk -RT @bascule: 1984 was "We're at war with Oceania. We've always been..." 2013 is "We can't tell you who we're at war with, that's classified… -@willbradley a pterodactyl may or may not be involved I can make no guarantees -@m1sp people who reblog sad things get hugged -@WhiteMageSlave he's doing it ALL WRONG you see -@WhiteMageSlave did you read the new part where Chakori chews Barsamin out for not falling into her trap like he was SUPPOSED to -@WhiteMageSlave lol I guess you really like the Alks -@WhiteMageSlave all my IRL laughs this is perfect -@inferno232 hmm, that's just crazy enough to work http://t.co/H1T5jzyYhq -I'm gonna take a screenshot. Oh, there's a smudge on the screen, lemme clean that off fir.... wait. -@0x00string no he is the wife. Definitely -@0x00string I already did that... the door doesn't shut... -@0x00string husband says I'm not allowed to get any babies until I learn to keep my room clean -@0x00string now I just need to get some children... -@Raxphiel but you know when it's 100% finished you HAVE to read it, no excuses. I started working on this back in college... -@0x00string I have OPINIONS about SOFTWARE. -@0x00string my children will grow strong feasting on the flesh of software that has displeased me -@0x00string I WILL WEAR GOOGLE DRIVE'S SPINE AS A NECKLACE. MY CHILDREN SHALL DRINK FROM ITS SKULL -@Raxphiel I can't make heads or tails of the Chinese one honestly... -@Raxphiel Also I own a copy of the first book in seventeen different languages so... -@Raxphiel daaaaang dude. Never too late to start. But the first two books are written to a low reading level, unfortunately. -@Raxphiel did you finish the first Harry Potter book? It is currently a little shorter than that :p -@Raxphiel HEY WANT TO READ MY ALMOST-DONE NOVEL -@Raxphiel I AM AN ARTIST SIR -My mother is going to disown me over this novel. I killed off a main character...'s horse. -@m1sp chapter 19, in which Tsovinar shouts at a horse and is angry it has the audacity to ignore her -It's a shame how insensitive Twitter's follow suggestions are to context. Yes Twitter I know all my friends are talking about him. He died. -@m1sp <3 -@joshrossi in any case, I do not believe there is an official google drive Linux client. -@joshrossi if my trouble keeping things in a consistent state doesn't warn you off that, WHAT WILL? -@JeffCurless it's actually a mess of python and obj-c glue running *on my system* :( -@BenBrocka it's the same file!!! the exact same file -wtf is this google drive do you think this is some kind of GAME you can't just rename my file to have a "(1)" in it http://t.co/1I6JsKcR5b -Oh good I got the document synced. Good thing it also synced the open-for-editing lock file and hasn't resynced that it's not locked anymore -(The chapter is not lost; it'd be backed up on the other computer; but I was kinda hoping to WORK ON IT maybe) #UIRage -"Sync complete!" Google Drive you filthy liar I am going to strangle you there is an entire chapter missing from this project file you litt- -@ArranDStewart just garageband actually, with some good soundfonts. -# 361269666569654272 -RT @alex_gaynor: OH: “I’m not entirely sure our org-chart is acyclic” -I wrote an orchestra piece very quickly, and I have no idea what I'm doing. https://t.co/5JCX4d6Jnm -@ra6bit pretty sure my hat has sequins or something -Just so we're clear, everyone: I am kinda a fan of dropping full disclosure bombs on commercial vendors. NSA: that is a metaphor kthx. -@SpireSec do you really think I just crawled out of the woods and never heard the disclosure debate before -@SpireSec ........... yeah I haven't spent the last eight years thinking about this or anything -@SpireSec no offense but you're not even making sense to me anymore. It can't be secure if known vulns aren't fixed. -@SpireSec it's objectively *fixed* when the exploit don't work no more. That doesn't mean objectively secure. -@SpireSec the customers already HAVE breakable locks. Criminals already HAVE private research going on. -@SpireSec time and time and time again stuff doesn't get FIXED until vendors have their nose rubbed in it by angry customers -@SpireSec you're probably thinking of the law against inciting riots. The whole point of that analogy is FALSELY shouting fire. -@pborenstein he's actually always like this, I'm just indulging him because he has an ouchie. -@chriseng yeah, but it costs a third as much as the chicken we had delivered last night :p -Went to McDonalds to source more chicken for DH. It's full of children openly weeping because the ice cream machine is broken -@seanmckaybeck http://t.co/8bKMeXc9Xm -A court ordering researchers not to disclose flaws sends the message “we will protect car manufacturers from having to own up to mistakes” -@wolffhechel @savagejen @aantonop ter’rist AND puppy-kicker -@savagejen @aantonop Prosecutors: “ZOMG Apple is shipping hacking tools to our teens” -RT @savagejen: It's not possible to anticipate whether any particular person or unknown algorithm will find you suspicious based on data st… -RT @savagejen: The problem with trying to anticipate what other people spying on you must think of you is that everyone will have a differe… -@MrToph I’ll hate you forever -RT @asintsov: And yeah.. because of this hotfix I got shell on Sony and Apple services. Have sent reports to them - so now they are secured… -RT @asintsov: Why all hotfixes for Struts2 redirect: issue limited to GET? It's also works via POST. Please be careful and re-check your wo… -@Paucis__Verbis dang -I had a dream about a VN game where the heroine must convince Father Time to willingly become young again. Thought of @HanakoGames … -RT @__apf__: this train's internet wants to MITM me to censor image content (shown in safari since chrome silently blocks) http://t.co/bTdS… -@realscientists I wrote a story about that in 8th grade… specifically about the one girl who couldn’t fly in such a situation @JackLScanlan -RT @dangillmor: Think twice before buying a car from Volkswagen, which got UK court to gag researchers who found bad security flaw http://t… -RT @Dinnerbone: Holy crap. XKCD: "Time" finally ended. A comic that has been going on for 4 months, frames were released every hour. http:/… -RT @smartwatermelon: @_minego @climagic there was a tip awhile ago “alias ffs=sudo” # when you get a sudo privs required, type “ffs !!” -@Myriachan no it's just SOUND FONTS -*clicks through installer* yes yes yes augh why is my mac rebooting ack ptth choke spittle RAGE -@thegrugq @homakov at least porn is legal here -@homakov @thegrugq color me completely unsurprised -@thegrugq @homakov no pretty sure it's all rails these days I hear it's pretty easy to get right though -@thegrugq @homakov waiting for Egor to go broke on USA prices -@Taiki__San all of those colors are 3000% better than Nokia Yellow -RT @SecBarbie: BLOG: SecBarbie Backup Buddies - My way to help ensure positive experiences at #BlackHat #DEFCON http://t.co/5OwtpmtcYV -# 360902332457811969 -@thegrugq I guess you're into taxi traffic BDSM or something -@thegrugq why dud you ever move there anyway -@thegrugq do you know what it's like to go to the doctor and some 60yo nurse leans over and coos "oooh you got good veins" -Oi @GooglePlay good job putting the flash widget for music preview UNDER layers of HTML junk so it's not compatible with flashblock reenable -@drwilco I'd go the conferences in Amsterdam instead of saying they're not cool :p -@SamusAranX I'm so sorry about your father. -“You can’t scare people skinny” http://t.co/mmjkAPsItU -@M0zilla but I will think less of every human being who willingly adorns their body with that deadly yellow -@kivikakk \o/ -Nokia: “Apple only sells boring black and white phones. We decided to innovate by selling SEARING YELLOW that will melt your eyeballs” -@melaniepinola @howtogeek it’s like how single people watch strip tease stuff and be like “yeah… if only I had that in person” and sigh -RT @BoingBoing: UK censorwall will also block "terrorist content," "violence," "circumvention tools," "forums," and more. http://t.co/BdLC… -@DrPizza a user mode process should never be able to misbehave so badly that Windows itself bails D: -@DrPizza whuuuuaaat -@Casiusss all right young man I will DM it to you but you had best not leak it or there will be Consequences(tm) -@comex check your DM inbox in about one minute -@comex it's *almost finished* -@comex my novel of course. The one that isn't about Adelie and Sammers but is still good I think :p -@jesster_king Harlem, NY is named for Haarlem, Netherlands. -I got my husband exactly forty pieces of chi— 39. Hey these are pretty good. 38… -@jesster_king no, you’re thinking of Harlem. Totally different. -RT @cpedraza: These 90-year-old headlines about radio could be about the internet today http://t.co/9nFaC8AVGQ -RT @Viss: This is probably the best picture I have of @barnaby_jack - from his 'I made an ATM shoot money' talk http://t.co/qiu2bBk0K7 -A kid in Haarlem is complaining to me about how all the COOL hacker conventions are in the USA. Dude, if *I* lived by Amsterdam... -I noticed the blue veins in my arm are really vivid today and now I am grossed out by the grossness that is the human experience -@solak @c0ntr0llerface I'm envisioning whole, unbroken eggs somehow wrapped around cheese -@GWakaMurray dominos. They do, in fact, sell it by the 40. -My husband came back from the clinic, collapsed in a painkiller-induced haze, and demanded that I order "like forty pieces of chicken" -@docsmooth @Viss (we're all hot by virtue of being hackers, there is no "not") -@docsmooth @Viss Hacker Hot or Hotter -@blowdart @Viss what part of "without even trying" made you think I even know how to use a curling iron -.@Viss but which one of us has the cuter hacker curls ?! -@Viss sure my hair is frizzy but I also get these ringlets without even trying http://t.co/cggFBhUfAP -@testbeta @SoundCloud I'm blocking Flash 100% on purpose, I assure you. Always have been. -@garrettreid not at all. But my other cousins would be the villain if it were a movie ;) -Don't worry, he's the cool cousin, the one with the rocket science and stuff -@tangenteroja @nelhage it's a sibling thing! -@tangenteroja @nelhage it's okay, the Americans have an infinite blank check for making fun of the British. They feel likewise. -@tangenteroja @nelhage the difference being.... -@katzmandu he is not baby, at least I assume, haven't seen him in a few years but I am guessing he got bigger -I'm apparently bringing my younger cousin with me to Defcon. This sounds like the setup for some sort of comedy movie -Surreptitiously opting in @MrToph to the Veracode BHDC chat-by-SMS group. Whether or not he's coming. -Yo @SoundCloud what gives everything was working fine without flash like two days ago http://t.co/Ac7yUIfXIQ -@nelhage however my husband adores it. And tells me of convoluted plot twists I think are severely contrived. :p -@nelhage (I have no idea if the author is actually British or just emulating them, but I can't stand it) -@nelhage yes, I read the first several chapters, but it has that dry British style I can't stand. -RT @clerian: @0xabad1dea Well, you should. It's not coincidence that the Ministry of Magic was compromised so easily. -This is the sort of thing I worry about all day. Operational security of wizards and witches. -Even if we suppose that wizards know nothing of muggle literature, Voldemort still went to a muggle school at some point. He's not ign'rant. -@pusscat yes but within that constraint I think REMUS was a poor choice -also the Harry Potter characters have TERRIBLE opsec. "We need a code name for Remus. lolol I know let's call him Romulus" "brilliant" -@clerian no, I am blaming his parents! Totally different -"you know maybe if his parents hadn't named him Remus Lupin he wouldn't have been so likely to be bitten by a werewolf" -@Md1986ok oh my gods don't tell @hypermice -@tapbot_paul he was just enough of a magnificent bastard that everyone gives pause to consider. -@tapbot_paul his family hasn't said what the cause of death is, they seem to be a bit overwhelmed -@m1sp someone claimed it was unintentional but they couldn't say how they knew; that's all. -@m1sp mispy dear I has a sad -Meeting him was on my list of things to accomplish this year :( -RT @chriseng: Confirmed by @treyford that Barns' session room will be open for friends to gather. #bh2013 -RT @dakami: Some can rage. Some can hack. Some can talk. Few did it all. To @barnaby_jack, you magnificent bastard. What the hell. -Oh no. @barnaby_jack. Is it true? :( -A perfect match! http://t.co/gr7z09JYw6 -@captcarl13 pretty much -@CyborgCode I *am* smiling! I just apparently have a small smile. -I am Difficult To Photograph. http://t.co/WoqC6d1MnF -@Raxphiel your avatar is actually looking pretty good -@amanicdroid @0x17h wow I’ve been so wrong about myself all these years! -TheMostBritishPictureEverTaken.jpg http://t.co/fmiAaa9qJH -@thegrugq I'M AN ADUUUUUULT -Yes the identical-looking links do actually go to two different places, at least. -I can think of a trivial optimization that will reduce the size of this message by 50%. Hit me up for details, Google http://t.co/gsrzYg9TTI -@thegrugq when I make you read the final manuscript you're going to be really surprised when it doesn't actually sound like that huh. -@odexcide they got the "concise" part down -RT @odexcide: @0xabad1dea Is this clear and concise? http://t.co/RzDlL0dMef -Swear to gods my first thought was "hey they forgot to cross the 't' in 'smite'" http://t.co/aLUC3286mq -(It’s not updating from the disc; tis an old disc. Nintendo is just abysmal at clear and concise UI messaging.) -@Myriachan Nintendo is just Really Bad At Interfaces. -@Myriachan it definitely didn’t come from the disc, I’ve used it a hun’red times afore. -@Myriachan the power bit makes sense, I just don’t know why it would need the game disc to stay put to do a system update. -“Do not turn off the power or remove the disc during update” Why? Are you re-burning the disc?! -Wii-U more like Wii-Make-U-Wait #amirite -@vogon you know what else Nazis used thousands of gallons of? Dihydrogen monoxide. -@0x17h that crazy you won’t stop retweeting seems to have already blocked me before I ever heard of them. How did I get so lucky :) -@jennifurret on the other hand, saying “God will judge them” is a great way to get anti-gay-marriage people to calm down -RT @charlie_savage: Creepy having armed MPs in camo patrolling behind each row of reporters & looking over shoulders as we take notes on Ma… -@ternus that, I can safely say, is *cheating* -That was a joke I am not actually that arrogant only very very close. Best infosec account is @thegrugq according to today’s zodiac. -RT @dangoodin001: “NASDAQ is owned.” Five men charged in largest financial hack ever http://t.co/R5ySgGex7T -It’s a good thing none of you nominated me for best twitter pwnie, because my flight would be landing in Vegas right as I win it. -@m0nk_dot @tqbf @nickdepetrillo way ahead of you, I don’t even have a license -# 360549079001997316 -RT @jeremiahg: RT @vegasnewsnow: BREAKING NEWS: Computers Down at McCarran Airport http://t.co/PEEnFHTyk3 #vegas < party is getting started… -@focalintent happy birthday 🎉 -RT @MammonMachine: Teens still share malts right #piracy #dads #teens http://t.co/svDUFKN5dV -@themarkcaudill I'm sooooo close to being done, and then having some edit fests, of course. -@Fengxii yes ~ -Novel word count: 71,965. Where was this productivity my whole life? -@imgur I can't repro now either! It was definitely more than ten seconds - a few hours actually - I happened to notice it didn't stick. -@imgur and no extensions that should be interacting with the page in any way that I know of. -@imgur Chrome, up to date, OSX -@imgur this is the particular page I was trying to favorite. http://t.co/JZQ6sJKfxs -@imgur no, I manually checked that it was not in my favorites page. Tried a few times. It only appeared after I did upvote and then fav. -@imgur hello I have a bug. I clicked favorite and it wouldn't "stick" after a refresh until I upvoted first, THEN favorited. -@Forkk13 um, no, I will not cry you a river, that's the point, I'm celebrating your misery -@ErickStaal sufferrrrrrrr :D -@waruikoohii and they'd be flippin' out because they didn't have symptoms of anything in particular and didn't know what was wrong -@waruikoohii I went to uni in the mountains, where it did this all the time, and every year a bunch of students got sick -I'll have you know it's currently 61 F / 16 C in Boston. How is your July? -@m1sp @WhiteMageSlave 70,451 -Humm.... guess I found a good reference for male musculature next time I try to draw something! http://t.co/JZQ6sJKfxs -@aeleruil I'm pretty sure it does correlation of sets of people who view certain pages. It suggests to me classmates + random Asian kids. -The simplest tricks can be pretty neat http://t.co/TpG4hBRcWz -"Today's comic is an allegory for the War of 1812." http://t.co/fLWrCV0Yk2 -@leighhollowell uh wow… breach of contract… -@blowdart it’s very basic. But I’m followed by a lot of beginners. -RT @thezeist: How HTTPS Secures Connections: What Every Web Dev Should Know http://t.co/S2Em9POvvl -@WhiteMageSlave … -@aeleruil it did the same to me. You know those Facebook like buttons on random webpages ? -@ZadowSapherelis @m1sp maybe like your avatar, but less sketchy? I need to scare up what passes for my character art to show you the chars -@ZadowSapherelis @m1sp I'm in 'merica though. Do you take paypal or whatever -@ZadowSapherelis @m1sp I'm almost done with my novel and I need a cover that portrays four teenage fantasy characters -@jruderman yes, but sloppiness in final human-readable output is more likely in some environments than others :) -@jruderman I bet you a dollar the common factor is Javascript -Wiki walk: start with looking up verb conjugation table. End at color variations of Shetland sheep. -@rantyben @thegrugq you're not hiking around the world on a whim to see my dress Mr. Ben? Lame in the utmost -@thegrugq @rantyben then I shall be sure to arrive by 8:59. -@rantyben @thegrugq or I could just trust that y'all will still be there when I get there at like nine -@m1sp @WhiteMageSlave super high school level passive aggression http://t.co/rLJ7Kq7aw7 -I better not be billed for that extra quintillionth of a megabit http://t.co/8JFv5WbVLy -@thegrugq is it in the Palms by any chance? That will make things easier for me... -Will my mother believe me that for the second year in a row I already have plane tickets to Vegas the week she'll be in town? (I do.) -@thegrugq okay. I just realized I will actually land in Vegas DURING the pwnies. After I said I would make it this year. *sigh* -@thegrugq hang on I just realized... what night is barcon? -@eevee the latter -RT @EFFLive: Amash amendment that would curtail NSA surveillance loses in a very close vote 205-217. -RT @wilw: Remember: when you sext with anyone, you’re also sexting with the entire NSA. #SextResponsibly -RT @EFFLive: Rep. Poe now saying the NSA phone records program is akin to a general warrant, which caused the US Fathers rebelled against t… -RT @EFFLive: Rep. Lofgren: The executive branch's report on the Patriot Act Sec. 215 this year was *eight sentences.* Congress is not getti… -RT @xor: Does Bachmann really think the phonebook has more information about us than the NSA? Wouldn't it be cheaper to just send them phon… -# 360126159528263681 -“If you can write assembly by hand better than a compiler, please contribute to the compiler” https://t.co/rgrdIA6Q0F -@m1sp look who's getting married! http://t.co/1Y9EIUGdr6 -@m1sp I do! But they’re at home and I’m at work T_T -@m1sp halp I am falling asleep at my desk -RT @savagejen: All my letters to Jeremy get to him, but only some to Weev. Jeremy's responses are untampered, while Weev's are steamed open… -@0x17h … -RT @Viss: holy shit! Adventure Time level truth! http://t.co/hKvkaX6k1b (h/t @missbadexample) -@marsroverdriver it is the opinion of Real Programmers that Real Programmers take notes with paper. -"Finish your severely oversized plate the restaurant gave you, because children are starving in Africa" "why is my child overweight" -RT @0x00string: @0xabad1dea that's why hackers wear ski masks! -Someone *may* have just taken a picture of me over webcam messing with their unlocked workstation. Not sure if I ducked in time. -@fredowsley smooth -This just in: floating point is satanic http://t.co/gBmRjYoj7z -“the C/C++ standards don’t actually mandate IEEE floating-point math.” Somewhere, an engineer shivers. -@0xcharlie sure, that too, I’m just saying, “ooh you need local first, wah wah” is a weak excuse on their part -Car manufacturer writes off car hacking via physical access as no big deal, because cars are never left unattended overnight. @0xcharlie -RT @0xcharlie: News article about me and @nudehaberdasher 's defcon talk http://t.co/uNERqKbXXB with amusing videos. -Aw yeah I found a good pencil that wasn't entirely out of lead. That's like Christmas. I made character art http://t.co/fEIyePh2T1 -@m1sp D: -@0x6D6172696F whuh? -RT @sergeybratus: A great summation of the non-constitutional nature of the current US executive branch surveillance, by @maradydd: http://… -@Packetknife it got a copy of my manuscript. -RT @0x00string: Feelin kinda bad about how many people keep RTing my erroneous tweet about what carrier tech support told me earlier. #SIM -@Packetknife you know I only say that to geezers I like -@Packetknife geez old man don’t give me a heart attack I thought the vans were coming for me -@Packetknife genuinely not sure if sarcastic or serious -@nelhage in this case it’s someone I suspect I have serious ideological differences with -That awkward moment when you try to retweet a peer and they’ve pre-emptively blocked your account from interaction. Wonder what I said… -@jennifurret I don’t care, raised both north and south. I consider it a “homeowner classism” thing, really. -@jgeorge 'm too tired. =.= -@hexadigital it's actually a trick to reduce unsolvable support calls when the user blames the last thing they installed for unrelated junk -@deathtolamo @ioerror well see I kind of don't want to get to Vegas to find my costume is gone because it was declared a terr'rist -@m1sp @ZadowSapherelis is your sister for hire for the arting of the arts -@Neostrategos no, that's what the denim jacket and biker's hat are for. -@Neostrategos to a certain villainous convocation in the city of sin, and maybe also this Friday -Anticipated mode of failure: TSA searches my luggage. Folded hoop skirt springs out. They think they’re under attack -@vogon that was an actual question you favoriting bandit -@sneakin I can’t fit in my computer desk -@_yossi_ yes, it’s bendy enough -I got my hoop skirt. It swooshes around in the most amazing way and is the least practical thing I’ve ever worn. -@vogon *leans in reeeaaaaaaaal close* hey kid wanna see a maaaaaanuscript -@vogon nuh-uh -Re: “don’t blindly trust vulnerability data”: some otherwise responsible companies just silently patch stuff like it ain’t no thang -RT @OSVDB: Black Hat: Don't Blindly Trust Vulnerability Data - http://t.co/S3slqZAKne -RT @0x00string: Talked to carrier: if last two digits on #SIM card serial are <25, your card uses 56 bit DES, and you're vulnerable. -# 359814678010011650 -@m1sp of course the kicker is that @ternus called me on Katarosi looking too much like me... -@m1sp "Everyone liked Houri better than Katarosi, especially the reade<backspace><backspace>" -Still haven't found out who left a Nickelback CD on my desk. Maybe I should check if it has leaked NSA documents on it. They'd never find it -I found Satoshi http://t.co/1yHt6WFhPT -There's no way I ever could have written "she laughed allowed." OSX autocorrect is sabotaging me. -@m1sp <3 <3 -@m1sp ps. not really -@m1sp I found two typos in chapter 17! You're fired ;( -@craftstudiodev even better is when the beginning programmers don't realize why this is a problem and willfully imitate it in production -"This sample code has no error checking for brevity" is the root cause of all bugs. -@vogon No official example. Community-contributed example has "no error checking for brevity" -.@vogon I'm not. I never **use** 95%+ of the functions I have to look up -Should I contemplate the finer points of this documentation or just go ahead and start self-flagellating http://t.co/eK38Z6jXVY -@m1sp fantasy economics! http://t.co/EFXSkX0V4z -@maxtch of course the real solution is RAM IS NOT THIS EXPENSIVE, APPLE! -@maxtch I’d want its suspension routine called so it dumps essential state and then give it a mercy death, yeah… -@maxtch not really. It becomes completely useless and I have to kill it manually… -It’s kind of cute how iOS realizes it’s out of memory and will just render giant gray squares on web views as if I won’t notice -RT @stevesilberman: Do not miss this lovely piece: What it's like to lack a sense of smell. http://t.co/H7LlUh04Wh -RT @AvoidComments: I once showed a comments section to a man in Reno, just to watch him cry. -@Packetknife more evidence for my theory that the children of infosec workers are the true APT -@Neostrategos I also have more followers than 4/5 of them, but I talk too much about anime ;) -@zedshaw you know, it was just magically there when I realized I needed it, and I didn’t ask questions. -@realscientists @JackLScanlan one day you wake up stare at the ceiling and go “whoa hang on I am actually legit now” -@zedshaw easy_install pip, obviously! Or just easy_install what you actually needed… -@0x17h oppressor power ! Hoo rah! -I can only begin to imagine why this is in my cube. Since @MrToph isn't here, @fredowsley is guilty by default http://t.co/4KLlYkCRzS -@horse_eatbooks it's salty *ba-dum-pssh* -@m1sp by birth I mean first -@m1sp that’s a good thought. I think I will write it off as the difference between birth language and otherwise -From my tenth grade class notes: "scientific notation - gzip for math" -@chriseng oh boy -Now the contemptible desk has gone and eaten my four-way USB hub. -@tapbot_paul … :| -@ktneely "noise floor" -Tomorrow I am giving a practice round of my Defcon talk to my Lovely Coworkers… no leaking footage, @Neostrategos -@addizins @wilkieii heck yes. -@JGKD705 no, they replaced all of them, so they’re as good as they were until they get popped again. -RT @nobodyrobot: do u guys know why it's turnips in animal crossing. it's because the word for "turnip" and "stock" are homophones in japan… -@thegrugq @WeldPond btw you saw my dress right -@thegrugq @WeldPond all the better for me to slam my faraday cage door on… -RT @leighhollowell: Has anyone ever gotten repeated unwanted 2 factor codes from twitter or is someone trying to get into my account? #just… -@WeldPond “guys”? -@tapbot_paul you don’t believe in the magic anymore (it’s not my style. But I appreciate it for what it is.) -RT @wilkieii: http://t.co/Ssu77uaeLk Study: female handles 25x more likely to be harassed on IRC, hindering women from collaborating and le… -@wilkieii @hypatiadotca I’m here to shank the first person who suggests that “obviously” I should not use a gendered online identity. -RT @bug_reports: Cannot get senpai to notice me. -RT @simplenomad: 13 yrs ago we were "paranoid" w/personal mail servers, encrypted chat, etc. Next time listen to us. -I was wrong. The desk *teleported* it to the table downstairs. -After searching for a solid two minutes, I am forced to conclude my desk is sentient and has consumed my RSA token whole. -# 359441229878005760 -@m1sp I am crying my heart out for happy reasons wake up I need to show you -@mescyn I was in private school K through 3rd, where sexuality doesn't *exist*, public 4th through 8th, then back to private -@hirojin Nope. These dozens and dozens of notebooks count, though... -I think I get now why everyone seemed to be so confused when I wanted to go into computer science instead of English in university. -... And here is my cache of goodbye letters from friends when I moved in 7th grade. Every single one says "keep writing stories." -@mickeypt hahaha it will be hard to miss I will be so excited to finally fulfill my oath of finishing the thing :p -@mickeypt yeah, as ebook -@mickeypt it's almost done <3 -@0xdeadbabe @puellavulnerata I apparently annotated a bit of it sometime after 7th grade and before I forgot entirely... -@0xdeadbabe @puellavulnerata dude, I have NO IDEA. I remember like, three of these letters, and I think I was making words up. -@puellavulnerata I have a confession. I wrote the Voynich Manuscript. In 7th grade. http://t.co/RTu6MUdixN -@Kufat actually I did say I was gonna marry a girl named Christina when I was 5 or 6 and my mom was like uhh no sorry can't -@kyhwana I kinda BSOD'd like "huh? How does that even work" and he just rolled his eyes -I literally had NO CONCEPT that homosexuality was a thing until my first big crush told me he had a boyfriend. -RT @InfoSecRumors: Rumor has it... @0xabad1dea flirted with Snowden in 7th grade. http://t.co/HZ29OSzyxK -Judging by my 7th grade journal, I was really into Tenchi Muyo, angels, and that boy in my Latin class who was actually gay. -I just found a note I traded back and forth with a boy in 7th grade. He said "I think the government is going to destroy identity" ... -@akopa @m1sp actually at that age my mother was kicking me off the computer every day when she got home. :| -@m1sp my father just mailed me my notebook from SEVENTH GRADE. I'm almost scared to open it. -RT @solardiz: ADS-B amateur reception with RTL-SDR in Moscow, Russia (inbetween SVO and DME): http://t.co/HFdBHpZzTb @antirez @0xabad1dea @… -@tenfootfangs though if any men would like to join me, a like one should fit with a bit of help from a tailor. -@tenfootfangs decided to really play up the fact that YEP STILL A GIRL when I go to infosec happy week this year -@m1sp a character nobody will like! http://t.co/KhiqjIN611 -But "Eowyn" isn't, with or without the little accent. Oh, I got issues with that. -.... That sounds an awful lot like I'm writing fanfic. I swear to gods I am not writing fanfic. I just happened to notice okay?! -And that was the day I learned that "Gandalf" and "Galadriel" were in OSX's spell check. -Saurik finds eight distinct implementations of the unzip code in Android. You know, the root cause of the crypto bug? http://t.co/O5qeZXKmyu -@WhiteMageSlave @m1sp makest* ** I'm awake -@WhiteMageSlave @m1sp maketh* but I mean I slipped up and Ismyrn said "you" to Barsamin -@chriseng well, see, I need the hoop skirt, which is scheduled to come tomorrow, do you see my dilemma -@chriseng guess I'll have to test-run it at 404... -@m1sp eeeee I got a dress like Clarion's! I'm so pretty -@okoeroo I'm gonna wear it to @thegrugq's party. Through TSA? Not so much. -RT @hackerfantastic: The SIM card 56bit DES key & hashing information leak exploit rocks my world. You could OTA install malware on the SIM… -The hoop skirt part isn’t here yet, which is of course essential to complete the effect -"what did you get in the mail dear" NOTHING JUST AN 18TH CENTURY BALL GOWN http://t.co/3hLNlhS18J -@savagejen according to old timers, it used to be that you’d go to the woods behind your neighborhood and find someone’s cache. -@savagejen google in its infinite wisdom adds calendar invites by default. -@pontelon @TraceBullet too bad the context is Britain ;) -@mavjs the friend is asking when -@chidpen so did I, but I am guessing someone wrote a bot to do that just to be annoying. -Anyone else get emails from twitter that their password needs to be reset? Asking for a friend (no really) -@m1sp there is a new section at the beginning of chapter 7 that is the rewrite of a scene I tried to sketch already, and new past!Rashk -@homakov 18. The only thing that waits until 21 is alcohol. Because you can vote and buy houses and die, but ALCOHOL? -@waruikoohii that’s your fault for being Box Bot -Also I’m pretty sure everyone I know got an eyeful of porn before they were 18 and lo and behold it did not destroy their souls -GFDI why do governments want to destroy the internet to “protect children” instead of acknowledging that is a parent’s domain -RT @mikko: UK Prime Minster is calling for "horrific" search terms to be blacklisted so they will bring up no results on Google. http://t.c… -@m1sp *hug* -RT @nrr: "Poverty is a more powerful influence … than gestational exposure to cocaine" #shitiread http://t.co/Yl3OiKd9lk -@Netbus :| -@kivikakk grats. -@m1sp ZOMG this is the novel I was working on ten years ago http://t.co/6Wypl1oI9O -@m1sp I don't remember drawing this. They look way too happy http://t.co/H3EnSs9g1v -@AdmiralA no actually most of them have photographs. I'd say @kivikakk isn't infosec but then suddenly she was writing shellcode -.@kivikakk I am the name that parents whisper to their children when telling of the dark corners of C -RT @kivikakk: @0xabad1dea oh hi! http://t.co/zzgMvUYI0t -@damageboy https://t.co/EXNqnVVS6V -@m1sp @WhiteMageSlave silly editors, you're supposed to point out to me when I slip up on the you/thou thing -# 359084613026594818 -@RenBussell bitly is a point of failure. It lengthens load time and often never loads at all. -@profoundlypaige and I'm not planning, I passed 63k words today, it's almost done :p -@profoundlypaige no, it's set on a fictional Silk Road with a touch of magic and a touch of steampunk. -@sam82490 @Cae_9 sure. they have tracking "value proposition" for the poster. Not so much for the person who can't get it to load. -I can't believe not a single pedant has pointed out those are MP4s with no sound, not GIFs. -@Cae_9 the one where you don’t. All URLs count the same length in twitter now -@snare sorry. Already married one of those -@thegrugq Spare me the sting of thy venomed tongue, wastrel -Dear everyone using bitly etc: you are actively slowing down the internet and increasing page load errors. -@profoundlypaige “that” Silk Road has presented problems to me while researching for my novel. -New York Times understands it is not a literal paper anymore; use of GIFs is a nice touch in this photoset http://t.co/0xhJIlOjFp -@jesster_king past tense of bid -RT @fugueish: @0xabad1dea Don't forget "make clean; make" -I have yet to meet the problem that couldn't be solved by blowing the cart, rebooting the router, or checking for graphics driver updates. -RT @bhangakhana: @0xabad1dea ooh, the bare infinitive - http://t.co/HwNxucvnVM -@pusscat lol you probably couldn't stand my husband... -@USSJoin *twitch* "thusly" is not a proper word! It is slang! -@bleebsen I bid thee win Mario Kart -@bleebsen this applies for bade (bid) + any verb. -@thegrugq she who spendeth her childhood reading the King James gets stuck speaking thus -@thegrugq that's right, thou art thou to me, but I'm not thou to thee. -@thegrugq I bid thee humor me. -Why on earth do we say "she bade him wait" and not "she bade him to wait", English? -@nickdepetrillo @djrbliss Mr. Bliss has never ONCE invited me to go to a shady place by taxi. He is impervious to my charms. -@vogon *checks phone* ಠ_ಠ -@nickdepetrillo looking back on that I'm pretty sure you're that guy my parents warned me about -#BHDCTips get in a taxi with @nickdepetrillo five minutes after you meet him, it will all be fine -#BHDCTips Inviting girls to the pinball museum might totally work. Just be prepared to be beaten. -@nickdepetrillo unless they ask. -@dan_crowley :’( -@0xcharlie if I succeed in reminding my husband he owes me a cat, you'll get a photo dedicated to you ;) -@supersat @osxreverser Windows' native string type is two bytes per char, so that should actually be hard to screw up. -@0xcharlie you do realize I have gone an entire year not posting cat photos because you asked me not to ?!?! A YEAR OF NO CATS -@0xcharlie I'M YOUR FANGIRL I COUNT -@0xcharlie your fangirls https://t.co/g0WJwu3Y4f -@anthonicaldwell yeah pretty much -Apparently Dear Housemate is moving out soon. Time to remind Dear Husband he said we could have a cat if only we didn't have a housemate. -@inversephase if I thought all men had to have muscles I wouldn't be friends with nerds like you HEY-OH -@inversephase they don't. I was trying to draw a muscular man. And didn't feel like googling it. -@WhiteMageSlave my kind of villain http://t.co/QHwjMPnbNw -@inversephase I DON'T KNOW WHAT DO MEN WITH MUSCLES LOOK LIKE my husband only has a bit of chub there -Time to set some appropriate music for writing chapters where characters die. http://t.co/VEXK6t1HVm -@wimremes and Belgium is like "we should probably have a revolution, but they're staying JUST on the side of the line where they survive" -@wimremes I just find it funny. All the other countries are like "look at this expensive but pretty symbol of our heritage!" -@elad3 nope. Don't worry you will definitely see me tweet links when it's ready ;) -@b3nzilla it's @weldpond actually -@Kufat black hat def con -#BHDCTips Lotion. No, for the air. It’s dry. Like, more dry than should be allowed. -@grygrflzr the joke ;) -RT @osxreverser: Microsoft, why the fuck can't http://t.co/m6Vd4oO2pJ passwords be longer than 16chars? What's the problem for your hashing? -@wimremes I don’t think I’ve ever met a Belgian who liked their royal family… -My super confidential sources are telling me the Ubuntu forum password hashes were stolen while I was sleeping. -@snare wait, those really ARE your feet? -RT @spookyskeletons: Hard to make friends as a skeleton. Not many ppl share my hobbies of attacking people with rusty swords and dropping n… -@pchengi yep. -@phyre5 passed 62,000 words yesterday… hitting the climax if the action -@Packetknife yep and I’m soooo close -@Netbus because she is one of the few people with magical power, which makes you go crazy easily, so she avoids emotional attachment. -@elad3 they’re inspired by Armenian. -@m1sp btw I succeeded in unnerving @WhiteMageSlave with the trope:arcwords -@m1sp but Solam's one and only POV section was snuck in to the end of chapter 14 -@m1sp WELL YEAH and it's like "yeah hey. this is a trap" "cool. good job picking the one bait I *can't* ignore even after you told me that" -@vogon you are The Worst -@m1sp good morning ~ -@vogan gahhhhh -@vogon did you just favorite and UN-favorite my tweet you monster -Motivation to write the final few chapters: how dang GOOD it looks on a kindle. http://t.co/zcl8SrOefW -@Packetknife tell her that’s illegal in America, glossing over West Virginia of course. -@aeleruil no, don’t do it, whatever you do, do NOT read One Hundred Years of Solitude -RT @mikko: The official #OHM2013 party network cable has an integrated firewall activation feature. #handy http://t.co/F3r4Y5VS5u -@m1sp I just wrote the George R.R. Martin chapter, where everyone Barsamin ever loved dies. -@callmegiorgio @Packetknife @ggreenwald don't send out the privacy calvary, I snagged an engineer and it's a chat system bug of some kind... -# 358731742271651840 -@fugueish @bensonk42 I'm not certain it counts as a security bug though. I was mostly joking about the bug bounty :) -"No way. This SCP can't still possibly be going. Wait why is it.... FFFFFFF symbolic link to my home directory in wine's config folder!!!" -@fugueish this @bensonk42 fellow claims to work for the googles. Hope I didn't give my super secret bug report to a charlatan. -@marginoferror but I don't have "multiple accounts" per se. Just two distinct gmails, of which one is the recovery mail of the other. -I may have broken google's account system somehow, hope I get a bug bounty ;) -@bensonk42 sent you quite the missive -@bensonk42 I don't see any chats / pending notices / alerts of any sort in g+ or gmail... -@bensonk42 an *internal* one? I've found trying to deal with google from the outside to be shouting at a brick wall. -@bensonk42 @adpaolucci and there was a "so and so wants to chat yes/no" pending request in the old email's chat bar. -@bensonk42 @adpaolucci specifically, I use incognito mode when I need to log into the old one, usually to get a password reset email -@adpaolucci I don't know a way to be logged in to two gmails in one browser session... -Most specifically, Coworker George sent a chat invite to my new account, and it showed up on my old account also, which he's never heard of. -@Kufat no idea. -My two gmail accounts seem to have decided to have the same chat contact list. I find that more than a little eyebrow-raising. -Word count: 60,261. I'm winning !!! -Me, every six months, my entire life: "WHOA! Have these birthmarks on my neck always been there?!" -Thanks for that mental image, Obama http://t.co/NLF9rzxm5C -As I slave over my manuscript about a boy and girl in competition to earn the right to use lightning magic, thunder shatters my sky. #metal -Download captcha is a flash widget? I'm sure that's totally innocent. -@m1sp someone go freudian on that plz -@m1sp as I write Ismyrn's inner monologue, this is the third time I've brought up "adults don't believe children when they tell the truth" -@kaepora :( -RT @apblake: 1: Snowden exposes spy programs. 2: White House says it's a discussion we should all engage in. 3: We all said stop. 4: FISA… -@m1sp I should be allowed to be this pleased with myself http://t.co/0bQGRbSKu3 -@m1sp the one kind of animal I know how to draw http://t.co/OiwChbsQ6H -@vogon so I guess the universe conspires to keep you down to one pen. -@vogon if you have one pen, you’ll never misplace it. If you have 5, you’ll quickly lose 4 -Abadidea’s Law: the more pens you own, the more prone they are to going missing -RT @BBCWorld: Norwegian woman receives prison sentence in Dubai after reporting she was raped http://t.co/Gvyjf3vwTs -@m1sp @WhiteMageSlave MOOD WHIPLASH http://t.co/pn2aGwLL69 -@m1sp @WhiteMageSlave remember this old page?! http://t.co/VFDfFUtxO8 -@m1sp @WhiteMageSlave I designed Constans before I even *met* you. It's not your fault he's my friendship type. -@m1sp said to @WhiteMageSlave: "Constans being Mispy I was trying to type Mispy's favorite character, but the statement stands" -I tried my hand at covering "Hagrid the Professor" from Harry Potter as chiptune https://t.co/wk8j5CiMaW -# 358372844125683712 -@Myriachan @xa329 W700, it's a true Windows laptop in 11" 1080p tablet, 8 to 10 hour battery -@Myriachan @xa329 nah surface pro has a terrible battery. Got better for the same-ish price. -@Myriachan @xa329 I just ended up spending the money on Acer x86 tablet with a heavier battery for ARM-like life :) -@Tomi_Tapio I had the next model after that. Loved it to pieces. Small but enthusiastic community. -RT @areur00t: @0xabad1dea and @attritionorg action figures lol http://t.co/eziy7kdKWy -@sakjur pretty sure he's an engineer but I'll grant @eevee honorary infosec status based on anger alone -@sakjur it's just some tech rag. I'm not on their top 25 women list either apparently ;) -@vogon I also want you to know this running monologue is your fault for putting "linguist" in your twitter bio -@vogon I want you to know I went on a linguistic adventure today to make certain of the correct way to pair "thou" with an imperative. -@WesleyFlake if there's anything I've learned from the Dutch, it's that the proper word to apply to anything positive is *lekker.* -@M0zilla #thejoke :p -These are the crimes committed in your name, America, the murder of innocents for association with the suspicious. http://t.co/y56TYc2G6g -@loganb @gu3st it's displaying unicode, I just can't imagine what would be sending bells. -@r2ranch you can se it when it gets here :p -No matter how bad my Dutch is, at least it’s a sight better than Siri’s. -@vogon take me -RT @bascule: Military Grade™: https://t.co/Iy8oXhEaMC -I only just noticed that my iPad’s interface language is in Dutch today. What was I doing last night ?! -@xa329 no I am pretty sure they would just flip out and throw out your hoops and call you a hula hoop ter'rist. -Callin' Oracle out on their systematic screw-up that has been the Java Reflection API http://t.co/cyis2eoMDL -Reasons it's good to be an adult: you can buy the princess ball gown you wanted when you were seven years old and no-one can stop you -@xa329 the "not crippled beyond belief" one is the Surface Pro, which is apparently doing okay. -@m1sp and if you're wondering, my gingerkin status is specifically because of that doll. -@m1sp but you must realize, this is spot on for everything I wanted when I was seven years old http://t.co/0Ved0XjT1K -@m1sp I had to go with a light color, because I am *not* wearing a black polyester dress to Vegas. -I wonder what the TSA thinks about hoop skirts being worn through checkpoints -@rantyben @thegrugq well, the dress and hoop skirt are ordered. I am going to be THE PRETTIEST GIRL AT THE INFOSEC BALL -@m1sp https://t.co/xZG3NgzVSz -@rantyben @thegrugq gosh well what is even the point if the people I want to snub aren't going to be there to have their hearts broken -@rantyben @thegrugq hey btw is ionic invited no reason just asking. -@pa28 it was already at 15 when I woke up... -@rantyben @thegrugq but what color should I get?! they don't have orange. -@rantyben I was just thinking about that... there's a fairy princess one that's not too expensive and looks like it should fit. -@gu3st so it's bell characters? must have been in Asian filenames or something (it's running a huge SCP...) -@TokenScandi nope and nope for sure... -My terminal icon on OSX had a "fifteen new items" badge that went away when I clicked it. Fifteen new what?! -If only somebody, ANYBODY had anticipated that the Surface RT wouldn’t sell well, and told Microsoft. http://t.co/wUIZlitnZi -@no_structure I grew up shoveling manure, didn’t you ? But no, it wasn’t a career, it was their version of teens staffing cash registers… -@lindseybieda context https://t.co/y635xtovqX -@Beaker @HackerHuntress I promise I’m not annoyed with anyone *on* the list :) -.@thegrugq I know, I only follow a few people on that list so it’s clearly wrong ;) -@pusscat @rantyben for me it starts making sense around #15… -“We did a list of top 25 infosec accounts, all men. We’ll do a second one that’s all women so it’s fair, implicitly ranked 26 and lower” -@rantyben *looks at official reply* *giggles* -@m1sp idk, you’re cute ? -Check @ODNIgov for some sort of stream of consciousness blogging from Clapper and/or minions. -RT @ODNIgov: “We collect metadata—information about communications—more broadly than we collect the actual content of communications..” -@m1sp *takes your hand and waltzes* -@kragen also, for the purposes of this discussion, tank tops have sleeves. -@kragen which, for me personally, means just as much “doesn’t look <s>slutty</s> suggestive” as it does “suits my body type” -@kragen that’s for going to work. This is for going to a party. I want to wear something I want to be seen in. -@savagejen people have gotten approximate results out of it in the past -@kragen srsly dude I know I play up the kawaii online but I am simply too tall and viking-ish -I should probably go to sleep instead of ordering a dress. I'll leave the tab open and see if I think I'm crazy in the morning... -@Packetknife I never forgave my mother for not buying a certain child-size ball gown while I was still small enough to wear it. -@_wirepair @thegrugq do they ship amazon prime -@jonathanstray contrary to my carefully cultivated online personality, I have a bit of a viking build. -@m1sp plot twist: Keromeir is a Skarmory. He dies when Clarion turns him to rust -goodness amazon I think bare shoulders looks hot too but some of us don't have the right body type. -It's one in the morning and I am seeing if I can get ball gowns on amazon prime -After midnight thoughts: I should totally show up to @thegrugq's party in a ball gown with a big hoop skirt and party like it's 1899 -@yeshua3s @abby_ebooks yeah, she's my little statistically representative mini-me -I wonder if I could convince the NSA algorithms that @abby_ebooks is actually me and throw them off the trail -@geekable sixteen bits is, like, WAY too many bits. -@DrPizza really? Well… -Shame on MIT. http://t.co/pCOOjvswjj -# 357998144354660352 -@m1sp aspects abridged, part 2 http://t.co/hatRQ4siCQ -Google Image Search: one in seven results may be random anime chicks http://t.co/ChKP754rN0 -@friestog @0x17h some people. -RT @SciencePorn: You're doing a documentary for the BBC. You get attacked by a polar bear. What's the 1st thing you should do? Answer http… -@skynetbnet @Kufat Mario deliberately does not clear ram across a reset, as a poor imitation of a save file :) -Glitching Super Mario by deliberately removing the cart and plugging in another during play http://t.co/4KbMRNsMIo via @Kufat -@matthew_d_green if there is a flag that will let goto'ing a bare integer literal work please let me know... D: -I'd be a lot more disconcerted by example 16.2.4 if it actually compiled in gcc like they say it does... http://t.co/Yh0mE9hI5I -@sciencecomic yes yes but what about THE PITCH DROP -Sooo... is there a CVE for this rather critical Android vulnerability? https://t.co/Hn0qbeTQx2 -RT @tobiasmayer: #Breastfeeding in Public: Tips to Avoid Problems. I love this twist—placing the "problem" back where it truly belongs http… -RT @MrToph: If you think politics is petty now, wait 20 years, when people seeking office can be tied to shit they posted online when they … -@m1sp dunno if you found the time to read *all* the new material? Finally settled on an I Want speech for Clarion... -"I couldn't sleep last night! I will sleep in for an hour or two." "bzzzzt hi I'm here to change your window shutters" -@m1sp also, that will be how the world ends, not with a bang but with a girly cackle -@thegrugq @matthew_d_green @0xcharlie he does kinda have that pallid super villain look… -@m1sp that is the sweetest thing anyone has ever said to me -First there was @m1sp_ebooks . Then there was @abby_ebooks . Now there is @m1sp1dea_ebooks , brother and sister souls forever entwined -@Tomi_Tapio attn: @attritionorg -RT @Kufat: Looks like the BB10 sends your e-mail account credentials to RIM: http://t.co/QZP7rXFxAa cc @0xabad1dea @neilhimself @afreak -Microsoft is still waiting on the government to let it stop withholding the full truth from us. http://t.co/Y1eoOmNhZq -@m1sp why do we have a fan bot -@m1sp yep, Rashk saw an opportunity to push his art even further, since perfecting this is what he wants -@m1sp ah, you're close, but... -@m1sp did you pick up on what happened to Erasmin :) -@m1sp I changed the fate of the Arcocelli family slightly ... -@m1sp if you have the link to the PDF in google docs it is called the end of the sky -@m1sp Clarion actually doesn't appear in it, though she is mentioned. She can meet Sweet Clarion soon enough -@m1sp that's what Official Tumblrs are for -RT @marshray: If you're so worried about privacy, maybe your contacts of contacts of contacts have something to hide. -@2s0cks I meant what I said and I said what I meant. A spider LANDED from the air, one hundred percent. -A spider just LANDED on my screen out of nowhere. Send in the Nope Troops -# 357649794581266432 -@m1sp wake up wake up wake up you have to read Ismyrn's orrriginnn storrryyyy I made it so much better -@stylewar @vikemosabe that does not imply the inverse, that any child whose parent says that but once and annoys me is "not smart" -@stylewar @vikemosabe then that I study parents of smart kids to see what they have in common, and it's not saying stuff like that often. -@stylewar @vikemosabe you're deliberately misreading me from start to end. First I said I don't like **that phrase**, -- -@stylewar @vikemosabe I said the reason was unreasonable. Don't apply actions as universally representative to actors. -@stylewar @vikemosabe I didn't say I thought she was a failure of a mother :) -@stylewar @vikemosabe also one is just as likely to hear a parent say it to an 8yo as a 3yo. -@stylewar @vikemosabe I'm not talking about infants. Children: more capable of reasoning than adults think, since 50000 BC -There comes a point in every writer's life when she makes a new browser window just to hold all the open tvtropes tabs. -@unixronin I think I got this one under control. -no, I don't need rescuing from his patriarchal rule, I'm explicitly planning on ze-ro pregnancies, that stuff freaks me out. -@jason_shell nope. -Husband says I'm not allowed to get pregnant because I'll hack the planet in a hormonal rage -@Mongoose_Q I guess I just considered it only from the perspective of we all consume huge amounts of text. -@Beschizza @Mongoose_Q though typography is considered by almost all designers but accessibility to non-visual consumers often isn’t. -@Mongoose_Q @Beschizza that is not what was meant and you know it ! You and I both interact with text all day. -RT @Beschizza: Typography isn't a snooty design thing. It's mainstream, because everyone with an IQ higher than carpet spends all day readi… -RT @runasand: 2010 study showed that 50% of Twitter users were 4 steps away from each other. The NSA will look at 3 steps when evaluating t… -@vikemosabe "because I say so" teaches children that everything is equally unimportant as a dictator's whim. -@vikemosabe and if you have a history of being reasonable instead of "because I say so", it turns out people will trust you. -@m1sp http://t.co/IbEq5jOl7A PLOT! -@csoghoian @ioerror just like phone numbers are totally anonymous -RT @csoghoian: Good to know that DOJ doesn't think that they get identity information when they obtain firstname.lastname@gmail.com via FIS… -RT @savagejen: In my college data mining course, the professor told us "data is money, never erase it". -@jennifurret I’m convinced they made their political system artificially complicated just so they could make more fun of Americans. -@VTPG I’d like to THINK a java implementation wouldn’t have overflow bugs… -@letoams that’s a funny way to spell 4294967295 ! -@VTPG well, the problem is that things are signed by default, usually, and signed has Complicated Semantics -Oh geez. Google Glass was originally configured to AUTOMATICALLY follow QR codes in pictures it takes. http://t.co/MjZALQETcM -This is why I am religiously opposed to signed integers. http://t.co/8PlTC7Ledc -@m1sp they better be cool things! -@m1sp I miss you in chat land hint hint passive aggressive public display -Also, a notable portion of kids on my "smart kids" list are adopted, speaking to it being parental involvement over genetics. -If I had to say what the parents of smart children I know have in common, it's that they talk WITH children instead of AT them. -@pkutzner it can be, at times. If your child doesn't generally TRUST you, I think I found the real problem. -@pkutzner now that I don't agree with :) -@RSWestmoreland they don't say stuff like because I said so. -@Kufat six? Seven? -I know I don't have kids, but I've made a point of observing the parents of kids I think are smart. -In the most recent case, what the mom meant was "because it's safer" but what she said was "because I said so" -I really hate it when I hear a parent say "because I said so." That is the least reasonable of all reasons. -"Hey Google Drive for OSX. I notice you haven't synced the latest document changes from my other machine. "*yawn* *stretch* meh" -@vogon what does it say about me that I have steam, I use steam, I bought things recently, and I have no idea what these card things are? -@whitequark @miaubiz because it reveals that unix wizards are, in fact, made, not born ? -@DustySTS would bla be there? I’m still not convinced he exists. -@whitequark @miaubiz it is, and I have a legit PDF copy. Unfortunately the whole thing isn’t illustrated. -.@tumblr first mistake: shipping plaintext password upload. Second mistake: not promptly fixing before reporter got fed up and went FD. -RT @darrenpauli: Tumblr Apple apps sent clear text passwords. Patch issued. http://t.co/iseXNGit6Z -@skynetbnet I’m just saying, pretty sure it’s a rubber stamp formality, not that she had direct input into the decision. -@skynetbnet I don’t think it’s different from how the president of the US is required to sign passed bills. -RT @schemaly: Women offered as perks in a job ad http://t.co/iT48GAGXx4 #everydaysexism #geekmisogyny #sodonewiththis -@natashenka thumbs up.gif -RT @AP: BREAKING: Gay marriage becomes legal in Britain as Queen Elizabeth II gives royal approval -RT @rantyben: Learning a new programming language is like a real one. Faux amis, weird idioms, and native speakers conflating illiteracy wi… -RT @McGrewSecurity: My niece has been located and is back home safe now. Thanks all for the RT's and good wishes. -@McGrewSecurity yay! -@Myriachan well, yes :) that’s local-only obviously, but, that’s both a jailbreak vector and a forensics nightmare :) -RT @MrToph: I made @leighhollowell a necklace using hard drive components. I think it came out alright. http://t.co/oR4hQOZE7B -RT @tomscott: The Vatican offers indulgences — time off purgatory — for following them on Twitter. I swear I didn’t make this up: http://t.… -@m1sp but no, the vaguetweeting has to do with finally figuring out what to do with this God of Strength who's been in the canon for YEARS. -@m1sp also, I am pulling out poetry I wrote in middle school for Ismyrn to quote as good ol' folk songs. Amazingly I remember every word -@m1sp *whistles innocently* it is a compliment unto her purity. -@L0sPengu1n0s google music lol -@m1sp my greatest literary accomplishment http://t.co/dnzAg5hgPO -I have a (legitimately purchased) soundtrack MP3 which has a title tag of "The Council of The Elrond." The Elrond. The Galdalf The Frodo The -# 357279156725231620 -Internet flamewars, 1600s style http://t.co/jhxdykuJgW -@jgeorge ps view source -@jgeorge try it and find out ^_^ -@jgeorge it didn't need Reiser, we can all agree on that \o/ -@landley @mirell but the bug dates to 2006, so it festered under his watch, so let's blame him anyway ;) -@SoundCloud it's more than a little annoying to show me this huge "get a pro plan!" banner when I **already have a pro plan** -@Ionustron Melissa Elliott, 198X - 20XX, one of those artists who gained fame only after death for her square wave waltzes. -@LnxPrgr3 there isn't really a context, just Torvalds being himself when rejecting some patch, and everyone being like, sigh, again -@Ionustron @bbbradsmith @kyuubethe3rd I’m a lot better now, but medieval harp chip is just not a happening scene. -@Ionustron @bbbradsmith @kyuubethe3rd I’ve only ever entered one compo, and it genuinely was not that great I’m sure ;) -@meursalt CSS maaaaaaaan it's pretty trippy -@meursalt right click, view source, peel back the layers of deception ;) -Oh man. Linking this to you is just too mean. http://t.co/oKVWJ8QXPD Don't blame me. -Here we go! Pointer mangling has been completely broken in things statically linked against glibc http://t.co/VgtSn9Qozs unit tests you say? -@puellavulnerata I choose to interpret that as he is stalking me personally. For beauty or for brains? -We’re in the quiet time of infosec news leading up to the convention glory blitz, I guess. Not enough for me to be mad about. -RT @SwissHttp: Anonymous commentator: "So according to NSA logic, I'm not a pirate, downloading movies and TV shows, until I actually watch… -@cowtowncoder not really. It turns out 50% of humans are women so their opinion is not statistically different from that of humans. -@jgoldschrafe @puellavulnerata would “shows typical signs of excessive aggression in a male-dominated social group” cut it? -@cowtowncoder so… “Someone told me I am too rude! I noticed she is a woman. I will make it clear I noticed she is a woman.” Yeah. Great. -@mtheoryx just another round of Torvalds being his cheerful self http://t.co/xldWjkPR5j -And remember that Linus Torvalds has a reputation that stretches far beyond his git tree and touches all of open source. -So yeah, go ahead and tell people it’s their fault for trying to contribute to Linux all you want, Linus is making himself an active problem -I notice that Linus, responding to one of the few visible women in open source, told her to go ahead and make it about gender. #sigh -RT @arstechnica: Man organizes satirical NSA walk, authorities come to his front door http://t.co/tsczQxaEiL by @cfarivar -RT @thegrugq: I really hope this matures and works out. https://t.co/r3kckjL7Ee -@snare yeah, that’ll solve open source’s splintering problems. -I was confused why the baristas flirted with George and not with me. What's wrong with me? I was then informed not all humans are bi. -Coworker George: "let's start a coffee shop with an IT worker discount. And skim all the badges." *teary eyes* he's all grown up -@Neostrategos yeah so I’ve been growing mine longer than that it kinda slows way down at some point -@Neostrategos grow it out four feet and we’ll talk… -@Neostrategos I’ll let you in on a secret. Everyone who is attracted to men is attracted to Sephiroth. Everyone. -It has come to my attention I might have only a vague idea of what men actually look like. http://t.co/6rG4OJCxdr -.@gsuberland iPad. “Never save, it’s all automatic!” -Got three quarters of the way through a nice drawing, and the art software segfaulted. That’s what I get for straying from paper. -RT @dhw: If you discuss a Microsoft 0-Day over Skype, does that count as responsible disclosure? -@thegrugq the word is “miles, leagues, whatever”, the unit is definitely five; I was studying Tocharian texts, actually. -@thegrugq but what a twist ending! Not seven days but five miles! -@maradydd my friend George Washington has been suspended from Facebook… multiple times… on the same account. -RT @maradydd: Been suspended from Google+, Facebook, &c. over your choice of name? http://t.co/EVPtGPIxf7 wants to hear from you. http://t.… -RT @jacobian: Linus hasn’t ever been a jerk to me, personally. However, he’s a role model, so lots of people think his behavior’s normal an… -@zedshaw I believe the situation is that the name was openly stated to be a pseudonym to begin with, so the whole character was fictitious. -@McGrewSecurity probably just a bunch of thought leaders then :p -RT @McGrewSecurity: This is my 14yo niece, who ran away yesterday, is possibly hitchhiking in Florida, call #'s (or police) or DM me: http:… -@McGrewSecurity did I? -Tonight’s news: “Hezbollah, America told me to tell you that she’s still not talking to you, but she heard that Al Qaeda said…” -@m1sp look at you ninja-faving. I just found a way to tie so many plot-hooks together it's like I planned it all along. I'm absolutely giddy -@m1sp you know how I leave myself open plot hooks trusting I'll find a way to fill them in later? :D -@invalidname Dunno. Turned out that wasn't the ending yet. He made a beautiful painting then hanged himself. Literature ! -(If you must know, the story ends with the wooden doll falling apart and the guy has a Buddhist epiphany about his body's fate as dust) -I think I just found some several hundred years' prior art for android sex dolls. http://t.co/GfURYLxHbB -@Mr_Reed_ it's a paper "men" sign taped over the permanent sign, implicitly women. -@Mr_Reed_ um, without the sign, it'd be a woman's bathroom, and you'd have to be pretty confused to not know the convention of entering -# 356921108978606081 -“Gee, not a lot of women at this con. Let’s bar them from the nearest bathrooms, that’ll show they’re welcome and first-class citizens.” -RT @georgiaweidman: Asked about the sign was told that since there aren't many women attending we should use the bathroom on the other end … -RT @georgiaweidman: So this is what they do to the womens bathroom at hacker cons? http://t.co/7xaCR1zHyZ -RT @steveklabnik: Linux 3.11 officially titled "Linux for Workgroups" http://t.co/T38nw7vCzf -RT @mtabini: Confused the hell out of a “Windows Service Centre” scammer by asking him if they could come fix my blinds. -@NaNoWriMo @ScrivenerApp I legit love scrivener, I’m coming up on sixty thousand words :) -RT @TheOnion: Nation Throws Hands Up, Tells Black Teenagers To Do Their Best Out There http://t.co/ugYiZYOLH6 -@sambowne I don't actually know for sure they were running wordpress, and the index.html is replaced http://t.co/Nn78YjhUc9 -@Soulmech @plussone trying to use one of the $50 alibaba laptops as an *actual computer* would be folly :p go $100+ -@Em_Space_ I doubt it's literally miles, just translated that way, but it's unambiguously five of them -Sigh... one of the webcomics I read is currently displaying a Turkish skiddie banner... must be a new wordpress bug. -@vogon ps. starring is consent -@vogon lemme know if you're bored and want a copy of the 3/4 finished manuscript ;) -@vogon I use it in my silk road fantasy novel. -@vogon even better, ask me why -@vogon http://t.co/lAsdhjBzmQ -@vogon so close, it has like, ten bajillion Sanskrit loanwords, but it's much much more obscure -@vogon ps. You get a cookie if you can figure out which IE language I am studying. It's not Latin and it's not Greek. -@vogon these pretentious Indo-European languages and their tenses and their cases -@vogon well, I'm not studying how to speak English! It's all one word, which would translate as he went. -Buddhist text: "He walked 7 days through water, 7 days through mud, 7 days across lotuses and 5 miles through snakes, screw patterns" -@vogon you, you're a linguist, I blame you -"verb suppletive absolutive; masculine singular ablative" That is a lot of freaking words for "he went" -@pneif @m1sp because it is fantastically obscure, delightful to my mind's ear, and was spoken by real-life redhead Asians. -@pneif @m1sp a few years ago, I arbitrarily chose to base the naming conventions of my fantasy setting on it -@m1sp the number of real Tocharian words I can recognize in context of real Tocharian texts is quite startling. I accidentally a language -@blejz it's the dining room, but we occasionally co-opt it. -@mike_acton I try not to in the general case. But there was no change in smell, no discoloration. -@mike_acton like, at my uni there were twinkies hung from the ceiling in a moderately humid environment going back years and years… -@mike_acton @AmyChu @fugugames longer than INFINITY? -@jennifurret don’t do that. Ignorance’s biggest trick is sounding louder than reason. Most people are mostly reasonable. -@Urraca @arstechnica Super Mario Bros 3. A masterpiece of constraint engineering. Which I am not very good at. -@jennifurret there are too many high-brow people who don’t understand that social data is just anecdotes in aggregate. -I just got a compiler engineer to yell and smack a table loudly enough to echo by bringing up Pascal -@BeethovensBook I don’t play, ask @codeferret_ :) -Every meeting between young employees here starts with commentary on DOTA. -@kaepora I’m pretty sure I made a libpurple guy cry once. -“@msftsecurity: #FillInTheBlank: The Microsoft Security tool I use most is __________.” Checking the dang signatures on executables. -Is there anything we won't put blinkie lights in ? https://t.co/OByNuQDE83 -@focalintent mek is pretty much writing a love letter to you up on stage right now -Confidential Veracode slide deck leak http://t.co/FAHcwSvQbD -@wimremes like, on paper? I filled about fifty pages with sha-1 rounds back in etiquette class… -.@chriseng is concerned about how amused I am with this charging connector... squid... thing. http://t.co/siT2PYxHeC -@m1sp my definition of success probably excludes most of those -You can be lazy or stupid and still find success in life. But certainly not both. -@wimremes got 99 problems but three letters ain’t one -@m1sp that’s Aramaz, he has a nice fuzzy fur on because it’s cold. And Hayr. Who thinks he’s probably Aramaz’s cousin. -@m1sp http://t.co/829pGWuftn -RT @mikko: New Mac Malware uses Right-to-Left override character (U+202E) to cause OS X to display this… http://t.co/wGxuRK1ReG http://t.co… -@invalidname my handle is known by most people here, it’s usually something like “This is Melissa. … the pink one” “OHH” -@dinodaizovi it seems the very act of observing that changed the result. -@mikko can I get a translation on that… -@bhelyer everyone whose name starts with Chris, including Christian. -At one time, Veracode was a solid 10% Chris. As the company has grown, Chris resources have not scaled. It’s 5% Chris and falling. -@ELLIOTTCABLE no, I’m pretty sure that says 1-883-YOUR-CIA -@spacerog eleven. -(When I say high school of fifty students, that’s actually 7th through 12th instead of 9th through 12th. And it was mostly boys.) -@hirojin they ended up calling me Misty. -It’s nice being the only Melissa around here (at work). In my high school of 50 students, there was another… and she was awful. -@m1sp good morning! Introduced Aramaz. I think I need some new fantasy swear words. -RT @BrandonDoughan: "The US imprisons a larger percentage of its black population than South Africa did at the height of apartheid." http:… -@chumeet I hope so :3 -@chumeet a silk-road setting fantasy adventure -@m1sp I'm hearing rave reviews about the "Rashk drowns someone" chapter from @WhiteMageSlave. -"You're so happy when you're happy. I mean beautiful when you're bea-- I mean--" - Dear Husband -@m1sp http://t.co/D8QKk6VZSc ... secret. -@dshaw_ and written over years, and essentially my diary. -My manuscript is currently over two thousand tweets long, if we max out every one. And my timeline is currently... oh... -@m1sp NotQuiteAsOld!Rashk does the most meanest thing and it's great -@m1sp haha, nope, but they should try that. This is at sea! -# 356562971712954369 -@m1sp it fell into this section which is going to confuse you because how did this even happen http://t.co/8YFinAb8Kb -Google Drive for iOS has progressed from not showing folders I know are there to actively unstarring things I just starred #UIRage -.@nickdepetrillo is harder to kill than I thought. He is a worthy adversary. May his car rest in peace. -RT @gather_here: "It ain't right, Atticus," said Jem. "No son, it's not right." We walked home. -@Ljay90 @0x17h may his gods judge him if he doesn’t give every cent of it away as fast as he can. -@DarrenPMeyer all I want to hear is "it's like Tolkien and Rowling had a baby, but better" ;) -@pa28 MY EVIL RUSE IS DISCOVERED. -@ErrataRob @sambowne that's actually a different project, which deserves my full attention after this one. -@ErrataRob as I hinted at recently, I think my stepsister has opened her eyes to what perfect little angels her deviant children really are. -@amanicdroid when we went to Amsterdam she got super grossed out by two girls kissing I don't think she's ready yet -In other words I'm about 3/4 done with my novel and then I will force each and every one of you to read it. Except you, mom -@m1sp the 50,000-word mark fell EXACTLY on the end of a sentence I am so happy -Ten years after the first time I participated in @NaNoWriMo, I finally have fifty thousand words in one freaking manuscript. -@m1sp word count: 49,929 Gahhhhhhhh just... a little.... more!!! -@singawhore (after all, women are a technical majority or tie in most places, but they're considered a minority anyway) -@singawhore people yell at me when I call it white privilege, I can't win :) Majority *power*, at least, even if not majority population. -@singawhore that's majority privilege, I can bum around in a hoodie if I feel like it and no-one's gonna assume I'm some sort of criminal. -@singawhore white people don't get harassed for merely looking vaguely suspicious nearly as often as black people do. -@singawhore No-one mistakes white girls for thugs armed with lethal skittles. -@m1sp I need a font that shakes on the page for Tsovinar right now -@1ncadence point of it was some people get huge punishments for not killing people, other people get off free for what looks to be murder -I guess hoodies are staying on the list of things that are my majority privilege. FFS. -@blazingcrimson my point is that locking someone up for TWO FREAKING DECADES for a crime that spilled no blood is excessive in the utmost. -@blazingcrimson oh, and remember, now the public is paying for her food, clothes, healthcare and shelter, for twenty years ;) -@blazingcrimson murderers and rapists get less than twenty years all the time. -@blazingcrimson Twenty years. You know how old I was twenty years ago? Five. The whole world has changed in twenty years. -@blazingcrimson yes, obviously. Twenty YEARS? -RT @damonayoung: J.K. Rowling is officially an incognito badass: http://t.co/SGA51abuoh HT @jasonpinter -@1ncadence and that justified twenty years how -@blazingcrimson yeah, and? Twenty years, for shooting at not people? That’s extreme. -@nickdepetrillo :( !!! -@m1sp seriously? Was this when you had blue hair? -RT @LauraALiddell: This picture summerises pretty much everything that needs to be said about the outcome of the #Zimmerman trial. http://t… -@m1sp eeee I found a word http://t.co/ahx3Xtvu5Y -@m1sp http://t.co/ixzu2DlW4G -@fascinated English, I'm afraid :p -@fascinated working on my novel, actually! -Another weekend, another coming near to the brink of passing out from hunger. #geeklife -@QuantumG @kenners my radio equipment smells faintly of day-old pizza. -@m1sp I just checked, so far there are seven instances of (some variation of the string) "HOURI!" -@m1sp and you can see where the land was torn apart by... what was probably not ACTUALLY a giant hitting a river with a mace. -@m1sp anyway, I hope the map makes it clear why the trade route works the way it does. -@m1sp the town that university-town.nsf is named for, I've wavered on its name a few times but I think I settled on Campanile. -# 356196834814861312 -@SamusAranX you haven't heard me complain about the disaster that is Twitter for Windows 8 before? :) -@m1sp look! An extremely approximate map! http://t.co/K0iz0WC1PG -@Dirk_Gently I'm sure it's Valve's fault something is wrong with the dmg, but there should be no such thing as silently fail to mount -steam.dmg silently fails to mount. Hoo-freakin-ray, OSX -@dijama http://t.co/QgicpZc6rO -"assassin" sounds like a hardcore word until you find out the etymology is "dudes who get high" -A cursory glance at Wikipedia suggests that all the FUN princesses, the kind who gambled and hunted and flirted, came from Portugal. -I like how everyone in this painting is clearly bored out of their minds with the ceremony. http://t.co/Dh0FDlpiiQ -@kaepora because open source still comes with politics, so much politics. I think it's good for there to be outright rivals. -RT @daveanthony: Congrats to Texas, who greatly limited abortion but did nothing to change inspection laws when a fertilizer plant exploded… -@DrPizza you’re acting like it’s a Nokia phone unveil, I think you need to sit down -RT @drlangtry_girl: THIS, gentlemen of Twitter, is how you help a woman who's being bothered by a creep when she's trying to read | http://… -@kaepora that would effectively reduce the world to chrome vs. IE. I think we need three competing renderers. -New chiptune, Stormwaltz, in which I attempt to arp. https://t.co/bn9vYUrfGo -I tried to use arpeggios in a chiptune, and it might be good or really awful, I seem to lack the capacity to distinguish. -@benwmaddox that can also happen as @mtheoryx just mentioned. -@benwmaddox abortions *are* a type of prenatal healthcare. Most late-term abortions are strictly medical in purpose. -@benwmaddox @savagejen the ones who died because of lack of access to prenatal healthcare. Texas ranks pretty high. -RT @savagejen: If you want to hear why abortion is important, talk to women you know about their personal experiences. Some might not be al… -@m1sp poor Constans. http://t.co/QhzPmgDJ5E -Not to subtweet extended family, but I bet my mother now appreciates that none of her children ever called her from a county jail. -Every time I think I screwed up, I can remember I have relatives who have screwed up so much so badly that I look 100% stone cold sane -RT @David0Monroe: "Only in America can a dead black boy go on trial for his own murder." ~ Syreeta McFadden -@_____C all parents, everywhere, hate all kids shows. -@_____C I think you may have missed that this is sanity-preserving self-mockery :) -@bdomenech @0x17h come to my neighborhood in MA. Saris and hijabs everywhere. Would love to raise a child here. -@m1sp @aeleruil ps wrote a piece I didn't show you where Shanlar is like "dude Solornel, you're self-aware of your mortality? Rashk is evil" -@m1sp @aeleruil I don't wanna anyway! http://t.co/p0Dh1sud9t -@m1sp @aeleruil me?! What did *I* do?! -@m1sp @aeleruil you confessed the SAME THING to me, more specifically, that your definition of cute was too mainstream, and you were ashamed -RT @JillFilipovic: A reminder that two Texas counties have maternal mortality rates that rank them between Somalia & Sierra Leone. #prolife… -@XTreeki @xkeepah high fives all around, it only gets better from here, the point where you decide to reevaluate critically. -@i0n1c I’d RT this with honors… IF I COULD -I just discovered this excellent blog column. http://t.co/DuXbABA6Mv -RT @slashdot: Aussie Telco Telstra Agreed To Spy For America http://t.co/65Pk7XFBEd -@strcpy @mdowd I have seen the man, this is exactly what he looked like. -Making infosec a better industry, one kawaii at a time -@mdowd @strcpy I *said*, needs more kawaii http://t.co/OkTRCNrv7s -@mdowd @strcpy needs more kawaii -@hypatiadotca but but the cannibals will get me. At least that’s what I heard happens to sweet innocent Americans abroad -@JackLScanlan I’m pretty sure the sort of people who dislike evolutionary biology aren’t aware of evopsych’s problems. -I wish I could give Malala a hug -@KairuByte information agency? That extra A matters a lot ;) -RT @estr4ng3d: Happy birthday, Malala! You're 16 and you've already changed the world. http://t.co/R5kZInPYGx -RT @ggreenwald: Carney said today Clapper "explained himself" about having lied to Congress, so that settles that. Does that work for all c… -@hypatiadotca aww… -RT @oh_rodr: Twitter, Inc. is looking for: Senior Network Security Engineer http://t.co/mFIGMSdb3m #job -@kaepora can you hear mine from Boston -RT @s7ephen: FaceDancer (http://t.co/6eG1dWQl63) screenshot. repeatable and intentional ;-) (cc @sergeybratus @travisgoodspeed) http://t.co… -@inversephase there’s a dunkin donuts right here by my house -@ra6bit they should hook up. Romantically. -@tenfootfangs well, then let me note that the games are HU-UUUUUU-UUGE, the most successful world building of which I am aware. -@nasko tweetbot remembers where you left off (it does scroll up, but, you’re still reading old to new.) -@tenfootfangs “still”? Is Skyrim a shallow well, that one tastes but once and it runs dry? I haven’t even exhausted Morrowind yet. -# 355828193409777664 -"Only once he was alone did he light his lantern." "Did you mean: lit?" No google autocorrect, you are bad and you should feel bad -Airplane crash? Better make racially-tinted puns, that'll fix it. http://t.co/kcmp7kEXeb -@Casiusss I assume so! -@m1sp good morning, sweet prince :p -Protip: if you're gonna use manga reaction pics, try to make it not obvious you clipped them all out of hentai -A dude just hung down from the roof in front of my window with a chainsaw revving. GEEZ HI HELLO #RoofRepairSaga -@Mordicant yeah, but not a medieval western Europe setting, that's been DONE. -@Mordicant and perhaps I am arrogant, but I think I know how to work the young media machine, on twitter, tumblr, etc, for Many Fans :D -RT @pithycomments: THIS is happening in the US. TODAY MT @SaraLang: Looking for a source on #tampongate? @HuffingtonPost's got your back ht… -@Mordicant I think I'm aiming for 60k for the first book. -@Mordicant the characters, characters who I know so well as brothers and sisters. -@Mordicant this story has been boiling in my heart for many years, arranged and rearranged and changed but the constant is not the plot but -@Mordicant it comes in fits and bursts a few thousand at a time. -Current novel wordcount: 40,598. By the definition of Science Fiction and Fantasy Writers of America, that's officially novel-length. -@spacerog yeah, they are new, and REALLY GOOD. -@1BlackICE1 Parsee: the blonde Persian Japanese bridge monster. Sure, green eyes, why not. -Why is jealousy said to be green-eyed? Having good, colorful eyes is something to *be* jealous of. -@d2acc1 it is a chocolate peanut butter one -I've listened to so much vocaloid music that synthesized Japanese sounds more natural to me than organically spoken Japanese. -@inversephase from reddit specifically? :< -There are people on my roof and they are tearing off my roof I'm glad I got the memo from my landlady or I'd be pretty freaked out right now -@Myriachan @rikardlang also, forgot to mention yesterday both my NESs are NES 2s that don't have that connector. -@Myriachan unfortunately, "how do I get this info to someone who both can do something and will" is an Unsolved Problem, case by case -@Myriachan fff, I somehow missed this yesterday. You sent me an email I haven't answered too... -@chbidmead @Falkvinge ie I don't test it, I make it so. -A chiptune - two square waves and one triangle wave - under the proverbial microscope http://t.co/NGba41wUnl -@chbidmead @Falkvinge by using my own layers of encryption, and by prosecuting the government when they're caught spying illegally. -Let's ask this artist from 1893 how "gif" is pronounced http://t.co/SMKzJMWjHW -@chbidmead @Falkvinge I'm a professional security researcher. My every *breath* is making the noise not so empty, good sir. -@Kufat in a bit -Random numbers: finicky http://t.co/aHLSlZsLOG -The landlady's roofing guys decided to park their truck squarely across my front steps. Like, if my door swung outwards, it'd hit them. -@basedwhale yes, so this outrage might stand after all. -Hey whoever thinks "abadidea" is their reddit username: no pretty sure it's mine, stop sending me password reset mails kthx -Peanut butter pop-tarts come six to a box instead of eight. This outrage shall not stand -@chbidmead @Falkvinge that never stopped me from demanding anything I feel I deserve -Also, I shall immediately adopt the term “born offline” to describe the vast chasm crossed only, so far as I know, by @jack_daniel -The fallacy of “you use Facebook so you shouldn’t expect any privacy” http://t.co/np2DEtahqg -@inversephase o/ -@jack_daniel all out of fuzzy pink bras? -@WeldPond you know none of that works for an intelligent child :) -RT @taffer: Rammstein does some coding: https://t.co/1YLQGcKKn2 via @twMaize -@m1sp true story: I use the word “convocation” so much because I attended one every morning for four years in high school -@m1sp I just woke up… -RT @swb1192: NSA gif, Pixar-style. http://t.co/Y86E06IExX cc @aral -@m1sp your new avatar is very you -Amazon browser extension: catastrophically vulnerable tracking code http://t.co/r04HneHwlu -RT @jedisct1: OMG. RT @DefuseSec: This is the worst crypto I've ever seen. http://t.co/iXzMETUWpO #php #cryptofails -Holy moley, someone actually posted half a million dollars for the Facebook not-terrorist kid http://t.co/ZIsVsP4Q3n -It's so cute when a married couple's chat icons go idle at the same time -@jesster_king I got the 64GB and I think about 30GB was free. Ended up compressing the drive, as it has little performance impact. -Google Drive has quit: Reason: PRIMARY KEY must be unique Oh goody goody good, my data feels so safe. -@jesster_king I paid $850 I think, $1000 must be with all the SSD fixings -@jesster_king http://t.co/IeifsKJ34C -@m1sp miiispyyy where did you go I just wrote a whole part where the perspective character is 10yo Eodar -@judsontwit pp-mck MML compiler. Tracker GUIs are the devil's work! -@McGrewSecurity @abby_ebooks I deny everything -# 355458649289793536 -@rikardlang <3 some of them are pretty old and hit some sour notes, but I think I am improving :) -@clerian I absolutely only use the Real True Channels, all expansions are blasphemy -@clerian I use the pp-mck MML compiler -Apparently my Very Special Gift is writing chiptunes that are mistaken for FM chips instead of the plain Nintendo chip. Keep hearing so. -@rikardlang (there's also a few songs in that soundcloud with soundfont cellos and oboes, I trust you can distinguish.) -@rikardlang there's about 24 of them in that there soundcloud :) they are all plain 2A03, no expansion. Two squares, triangle, static -@rikardlang it's the 2A03 <3 Emulated, because getting the sound off my old TV is A Lot Of Work. -It went away after I gave up and rebooted - airplane mode didn't fix it. But I guess that means it wasn't the feds, and that's BORING. -@Kufat ah, good/not good, I can still get messages even though my phone is convinced it's in la la land. -@Kufat kindly text me over real true SMS and let me know when you have. Debugging. -Apparently 108 is sometimes used by spoofers. Why would my phone be presenting a spoofed number as its own to me :/ -@meursalt the emulator I use is Audio Overload -@meursalt I have the powerpak, but that's a lot of work to get the sound off my only compatible TV -Uh... so my phone is self-reporting that its number is in the 108 area code, which I don't even think is real. -I think I found their secret base http://t.co/8jTmS53jTk -I wrote another chiptune, or rather, fixed up and finished one I started last year. https://t.co/D2htI6ZsMZ -It's always the side projects with attack surface that get you owned. https://t.co/JiLPGSGFMb -@m1sp and as an aside, note that all the women on the right-hand side have curly hair, and so does Chakori. -@m1sp what have I done http://t.co/qSrU6X6pLw -@michaelminella some of us prefer to live with fewer failure modes :) -@SamusAranX D': D': D': D': -@SamusAranX FYI your avatar freaks me out. The way he smiles. Never stops smiling. Everyone is h a p p y i n A n i m a l C r o s s i n g -My mouse is on the right, the cable goes left, wraps around keyboard tray, comes back, plugs in on right. Who wired this?! --- oh. Me. -@blowdart the "halfway" part was incidental. I mean as opposed to, like, the first time I heard of these problems, when I was twelve. -@Kufat https://t.co/sjRSTTlqun -@chosafine emphasis on the 2013 :) -Why did it take Microsoft until halfway through 2013 to formally decide to do something about its family problems -“Giving teammate bunny ears in class photo”, 1922. http://t.co/njXfThhpxJ -@savagejen @no_structure the universe ends, is reborn, and the next iteration finds out about your weird fetish. -@leighhollowell ;-; -@vogon I don’t think it will actually change anything. They’ll still show up, and it will still be in lower numbers because sequester.z -RT @atheistium: Just a daily reminder on why so many of us talk about sexism in the games industry and community http://t.co/S0U3lg68sc -@savagejen DID YOU KNOW “MELISSA” MEANS BEEEEEES -Buying a queen bee is $25… buying a queen bee plus literally thousands of bees bees bees is as little as $55. -A very long, wandering, and interesting post on mobile memory management http://t.co/HNra7OtA7K -@Kufat yes, I am unprepared to comment at this time -I’d comment on the Defcon/feds thing, but the site seems to *still* be down. -RT @afreak: Cat is out of the bag! Announcing a beta release of CanaryPW! (https://t.co/om03vAo88Z) - More details here: http://t.co/fo4EMR… -@m1sp ... or at least, that would be the implication in the interpretation of Clarion, which Rashk mostly shares. -@m1sp but anyway, it's a two-edged sword. It might not be Solornel! But that would imply someone kills Solornel while Rashk yet lives... -@m1sp I believe the word you're looking for is foolhardy -@m1sp do you know how many hundreds of times I threatened to drown the computer science lab in my future husband's blood for some offense -@SMBCComics err, has the random comic button always been so... deterministic? -@m1sp in summary: you wanna play the vague prophecy game? We'll play the vague prophecy game. http://t.co/FUny2706mG -@m1sp of course not! I changed the exact time and reason Clarion decided to aspect him. -@m1sp tweaking Solornel's early story to make it cruel in ways I'm surprised I didn't think of sooner. :3 -@iain_chalmers well, they didn't kill Al Capone... -@tapbot_paul someone proud of what they did -@DrPizza @blowdart yeah, I'm just saying, the root of the groupies is his friends instinctively sticking up for him on social media -@blowdart to all appearances, he was a dead normal college kid. Dead normal college kids have friends. -He's accused of 17 capital crimes. There's five dead, and I can't even begin to think of twelve other kinds of capital crimes. -@mleveck I just assume terrorists to have pride and admit they did it (and the evidence he was involved really is quite large) -I must admit I am a bit baffled that Tsarnaev the Younger is pleading innocent on all counts. Did his conveniently dead brother coerce him? -RT @TheOnion: Dzhokar Tsarnaev Rushes Out Of Summer Class To Make Court Hearing http://t.co/tmACylWcEQ -@Chispshot @AmyLukima also, I don’t recommend ending suggestions to women with “honey” -@Chispshot @AmyLukima you know “coworking space” implies she probably has no idea who this person is right -RT @egyp7: WTF? "The webpage at chrome://config/ might be temporarily down or it may have moved permanently to a new web address." -RT @AmyLukima: Guy in my co-working space is loudly talking about how he immediately deletes applications from women. Yay tech! -# 355080904298868736 -@m1sp Rashk, in his 50s http://t.co/dNO19RFngk -Oh good, my iPad connected to “attwifi” in this hotel without asking me. I’m sure there’s 0% chance it’s a rogue access point -The door opens. "Hello sweetheart," I say. "Hello," says a voice too high to be his. I turn. It's Coworker George. Does that make us married -@katzmandu @bdunbar @yesjrk when I make fun of anonymous people, you're not supposed to go and humanize them! -I have been given this screenshot of a now-deleted blogpost in which NASA reveals their admins have no freaking clue http://t.co/I8sQVKENnb -I know almost nothing about DNS and I just manually set up a WWW cname record in literally five seconds. Govt DNS admins, wat r u doin -@grp 404 -@vogon ..... my maiden name is Elliott. My parents, thankfully, did NOT give me a middle name that is also a last name AND a boy's name. -@grp I just set it up on http://t.co/cpqQzwiaPU in under five seconds. -@grp too expensive? Their DNS providers are taking them for a ride, it's a line in a config file. -Whenever the town sends us correspondence, they put my middle name on my stuff but no middle name on my husband's. What's with that -G+ is the ravenous beast which consumes APIs. G+ devours all. http://t.co/GnAfhGCPda -RT @deviousdrdave: @0xabad1dea You could play bullshit bingo http://t.co/nb5W6pfFhn -Blue dot problem solved, but now this banner is stuck over my tweet button. http://t.co/SG7Dz9eGVe -@zoevkl what is your avatar from? -You say mandatory company meeting, I hear two hours to work on my sketchbook -@lebijouambre @iShark5060 @MaxBlumenthal your absolute faith that he'd get off the hook if he was innocent is heartening. -@lebijouambre @iShark5060 @MaxBlumenthal if you think a sarcastic joke against no-one in particular is a real and actionable threat... -The blue dot is fixed, I take all credit -But Cyndi, all my best experiences in life came from meeting strangers on the internet and not telling my parents http://t.co/yT064L1lXK -@Myriachan direct message -.@chriseng I mean it's corny, cheesy, and an assortment of other words to describe things that look silly, not that it's bad per se. -@Xaosopher by silence on the DM wire -If you google "nsa kids" to find that ridiculous website, and click the first result... http://t.co/22DiIPjgmz -@Xaosopher my hordes are disappointing me, so far. -As such, there is a moratorium on sending me DMs until such time as blue dots learn where they belong -I'm so glad read status of DMs is serverside now! Too bad it's currently 100% broken and none of these blue dots will go away for any reason -Someone did the work I was too lazy to and double-checked that @NSApubrel is in fact a parody ;) http://t.co/MYJxRI8ryy -@MalwareJake I’m just reading it… -.@_yossi_ no, there’s a separate fax number. No-one old enough to know what a fax is would confuse a fax and a phone number :) -On NSA website: “Phone number for verification of employment: … All requests must be submitted in writing” -@Kronos666_ @NSApubrel getting verified is actually a pretty opaque and arbitrary process -But the number of government websites that fail to resolve if you omit the “www” from their domain name is astounding. -I genuinely cannot tell if @NSApubrel is a real account or a very in-character joke. -RT @NSApubrel: "Does anyone think about the children?" - Yes, we do: http://t.co/D3yDRpuHZ1 #cryptokids -RT @chort0: Again, not particularly fond of Greenwald, but making up obviously disprovable lies only strengthens his case: http://t.co/8S4H… -@hellNbak_ @WeldPond if by companies you mean large corporations. -RT @dangoodin001: Documents Reveal How the NSA Cracked the CIA's Kryptos Sculpture Years Before the CIA: http://t.co/MsvJQQdW35 by @KimZett… -Whoever is in charge of the Windows App Store needs a wake-up slap http://t.co/RjQun3zQnz -RT @kivikakk: '{"stat":"fail", "code":100, "message":"Invalid API Key (Key not found)"}' -- from flickr's own website using its own API. uh… -@edyong209 @InkfishEP @JackLScanlan we were so wrong… it’s not humans who have souls, it’s worms. -RT @edyong209: WTF? Decapitated Worms Regrow Heads with Memories Still Inside http://t.co/rQOFhMRXb7 HT @InkfishEP -@JackLScanlan you have a sick fetish for convoluted puns -RT @botherder: If the disk is smaller than 50GB, this malware prints "Yeah, right, maybe 5 years ago" and quits https://t.co/dR7WvOlMaq -Siri is in on it… keeps transcribing NSA as NASA. -RT @ashedryden: This is why I have panic attacks about answering emails. #tw http://t.co/t7slhCTTSS -There shall be no tumultuous petitioning in this house http://t.co/TfjvwHme6V -@m1sp btw the sigil of the Republic is now boars as makes sense. Here's Ismyrn and Luzcrezo. http://t.co/fBvbl4lH8T -@m1sp Mispy, if they can't have potatoes because that's new world, they darn well can't have sugar gliders! -@Mordicant House Cuttlefish, led by Fell Lord @pzmyers -@meangrape Ancient and Moste Noble House of Goatse -It's really hard to write fictional royal houses and avoid all mention of wolves (dire or otherwise), dragons, and other such "taken" sigils -@marshray @WeldPond dang man I live in Massachusetts and there are three air conditioning units in my townhouse. Go on strike -@WeldPond should we pay Microsoft royalties every time you can see someone using Windows on camera? :p -@WeldPond a violin can play any genre of music; a match between two players can take on any timbre. It contains rules, but not the outcome. -@WeldPond not to the degree that no two Smash Bros matches are anything at all alike -@WeldPond a game is not sheet music, it is a medium. The experience follows the gamer's direction. -Every time I link a wikipedia article to @m1sp, a long silence follows. I'm pretty sure he's becoming the seed of the singularity -(yes, I am saying playing a game is a type of performance art; and it's not a set, prearranged performance copyrighted by some old fogey.) -Also saying one needs permission to broadcast a live play of a game is not unlike the inventor of violins demanding permission to play one -Some people are telling me they reversed the decision (but I can't get links to load). Sounds like a classic legal department PR bungle -@SwooshyCueb it's not loading... -"We really hate fans and we especially hate it when old games get new fans" - @Nintendo -RT @Kotaku: Nintendo blocks top fighting game tournament from streaming Smash Bros http://t.co/KXPBKuly9M (Fans had raised $95k to get game… -# 354738988189364224 -@m1sp is Tsovinar... smiling?! http://t.co/lLuveTx2eO -The Linux password and Windows password on this old machine are different. I don't remember being that paranoid -Could whoever had me pwned in 2011 DM me my Linux login from about then ? -@m1sp *draws an awesome pterosaur* *realizes she has made the same error as most dragon artists and given it six limbs* -@sam82490 ....... how would it do that? Its level would be below the mountain peaks then, that's the point. -@sam82490 because it won't tunnel through rock -@sam82490 @Kufat right, and the segment where the drain is would empty completely and the rest would stabilize behind their mountains. -@m1sp she gets a lot of use out of one simple word. http://t.co/S8tsCOpa0i -I am technically Dutch and I 100% approve of this plan. http://t.co/1ALnNQNnWT / h/t @Kufat -Lens flare ! https://t.co/jFJIAOLyIn -@hokazenoflames no, it was CS crushing their dream of robot maids -RT @gollmann: Root SSH Key Compromised in Emergency Alerting Systems | http://t.co/mSUqGiHSBu http://t.co/OhmRxQpAGA -@WeldPond eww… -@pewpewarrows @alertnewengland http://t.co/gznnZfpzzA we solved it! -RT @alertnewengland: "Another driver with two eyes...why do we even have a spot for this on tickets?" http://t.co/X6zplM4axA -@m1sp today’s script: in a kind of manga-ish twist, Barsamin realizes Luzcrezo’s girlfriend-in-Canada-type is a bajillionaire -For some reason, the philosophy professors at my university thought it’d be cool to have a Philosophy vs CS debate on AI. Poor souls. -@JastrzebskiJ …. I just realized I have not even seen you in weeks -@natashenka at my uni, we had an AI debate: comp sci vs. philosophy departments. I think the philosophy students cried afterwards. -@thegrugq @snare easy: I don’t drink. But I guess that makes my seemingly drunken antics even worse… -RT @feeniks: Jeeez Microsoft Even though we are all aware of Prism isn't this taking things a bit too brazenly? http://t.co/vmTJlYvPjz -RT @pof: to everyone saying I spoiled @BlueboxSec BH's talk, that's not true: details were already public, see https://t.co/x66eQrQkSO -@strngwys @kvegh I was there a few times during my childhood, but not continually. -Cats and dogs unified by a love of human cosplay, attending furless conventions. The most passionate go shaved in everyday life. -@JackLScanlan I’m a failed European :( -RT @mattblaze: Given how almost cheerful Torontonians look under horrendous flooding, it's clear I'd never qualifiy to be Canadian. http://… -RT @dijkstracula: HN got it right. Twitter's actually a single-threaded select() loop running on a Mac Mini underneath a desk. Don't tell … -RT @edyson: First time I've spotted a #drone warning - near Court Square in Queens. How many to come? http://t.co/nGs5MmXzfM -@nrr perhaps, like me, they live in terror of their electronics being among the mountain of electronics stolen by baggage workers… -@apiary I can at least say I’ve never heard of a corrupt firefighter. That job is pretty hard to do wrong. -RT @timdenee: This little comic about Batman the Hoarder is pretty great. http://t.co/ofxyn8mJTj -RT @marshray: I wonder if these folks criticizing #Snowden for stuff he said pseudonymously on forums when he was 20 realize they're provin… -@meursalt trying to build apache -"WARNING: error: bla bla bla" These words have meanings in programming, computer. Incompatible. meanings. -@m1sp in particular, I'm doing another iteration of adjusting the dialogue of minor characters to be more in-character -@m1sp I JUST WANT MY BABY TO BE PERFECT also it needs a few adjustments to keep the canons aligned -@m1sp also I am editing the heck out of the poor manuscript tonight -@m1sp definitely. Only a very professional internet thief would be able to steal your internets. -RT @m1sp: @0xabad1dea http://t.co/UJOxr2wFwU This is how you protect the internets right -@m1sp I just had a fit that "Kushan" is etymologically disconnected from the rest of the lore and replaced it with "Tarimin" -.@0x17h @stillchip a means of registering I didn't even know existed, and clearly introduced an alternate codepath /cc twitter engineers :p -@0x17h how did you find this -RT @0x17h: @0xabad1dea try to go to this user's main page https://t.co/nGabnFtUW7 -I'm listening to two big tough men loudly trade braiding tips for the sake of their small daughters -I went to a local restaurant and the waitress asked me if my tumblr blog was still popular. She knows too much ! -@WhiteMageSlave if you search for capacitive stylus on amazon it's a completely generic brand -@m1sp I hope I sound like I know about swords http://t.co/1T4qvemBcj -# 354386648718508033 -@m1sp he is definitely the best Occidental http://t.co/rMx8L6aQu2 -@m1sp look at Barsamin you can see his NECK and he’s SMILING for an emotion other than awkwardness he’s all grown up -@m1sp look who it is!! http://t.co/Q3ItC926el -@window !! -@m1sp it’s almost as if a faintly remembered event was interpreted by all parties in a way that appealed to their culture! -@nickdepetrillo @fredowsley ewww, you were camming right next to me?! -Oh my gods. The twitter goddess is real. She has granted our prayers for server-side tracking of which DMs we have read -RT @raffi: we've solved the hardest problem in CS! "Direct messages now sync across all your devices." https://t.co/X8k1NGXxMe -@m1sp :( http://t.co/2mNqeKSKX8 -@m1sp in one of my books of poems, there’s one that’s just straight up “who is the tempter, who is evil and corrupt? Women.” -@m1sp there's an entire section labeled anti-feminine http://t.co/mQJYAzY9Mc -@m1sp http://t.co/9vU7GOzmA6 -*looking out window* "Your husband seems to be outside. I assume he is lost." - @fredowsley -@thegrugq Twitter web interface has decided to auto-prepend new tweets with @thegrugq okay Twitter I know I talk to him but not THAT much -@thegrugq but I haven't gotten an email! I even actually checked my email. -@thegmanehack I heard a lot of people recommend them when godaddy was being godaddyish, and they support unicode domains -@fredowsley @thegrugq … I’ll allow it. -RT @chriseng: I dislike how The Guardian is milking the Snowden story, trickling out in bits (e.g. waiting a month to post Part 2 of June 6… -@MarkKriegsman I swear I just saw like, 30 to 2 in the big glass room -@apiary emphasis on relatively -This seems like a relatively gender-balanced workplace until I see a meeting of the big people up top. -@rbf_ um…. I never said it was -@rbf_ um… that’s still sovereign. They didn’t become a colony or a province of some other place. -@dinodaizovi @dguido is this… a problem y’all have been having, gentlemen? -@rbf_ I meant Japan the sovereign country, with an imperial throne. -@rbf_ I’m just saying, that I believe the Japanese would agree with me that Japan has been Japan for A Very Long Time. -Orwell accused Wells of having some violent agenda against horses… but it was Orwell who sent them to the glue factory :’( -@rbf_ you seem to assume I will defend with vigor every date listed on some http://t.co/UrOpiLliRu page -@rbf_ there was the Shogunate phase too. But there was still an Emperor then too. -@rbf_ there’s still an Emperor. They added representative government, but there’s still an Emperor. -And yes, it turns out defining the starting moment of a country is undecidable in the general case. I know. -@rbf_ Japan’s imperial line is unbroken. That one I will grant being quite ancient. -RT @_FloridaMan: Florida Man Falls Asleep On Couch In The Middle Of Burglary; Found Next Morning By Homeowner | http://t.co/ByZXU71Ou0 -@0x6D6172696F sir I like the way you think -@innismir I’d personally consider that whole revolution thing to be starting over, but I guess they reckon it as just a reform… -RT @jbrodkin: Noticing any slow/buffering/non-functional YouTube videos? Send me links if so, doing some YouTube performance testing. -I don’t think there is anything quite so unsettling as the receding timestamps on the online activity of the newly dead. -@drewtoothpaste @vogon oh my gawd is that a PEAR? My life’s ambition is to eat a pear, of which hundreds grow in this town. -RT @ioerror: Pro-tip: if you want me to do a Skype interview about #Snowden, I'm not even going to reply to your email. -@randyknobloch @DrPizza “Misty Shock” is definitely a stripper supervillain name. And I say that as someone called Misty in high school… -The average age of today’s governments is younger than you think, except Japan really skews the average. http://t.co/VQ6U3B3Aai -@octal @thegrugq I definitely mind the intel a mite more -@snare Mr. Dawkins is plenty smart as long as you realize his erudite tower reaches into the clouds… -@wwwtxt this is a definition of car fax with which I was previously unfamiliar ! -@DrPizza they seem to have some sort of single vendor deal going though… wonder how steep the discounts are. -RT @DrPizza: I want to work for Contoso corp. They are consistent early adopters for shiny new tech. -RT @nicktail: Nintendo managed to not notice a month-long brute force attack... http://t.co/lFiKSLO199 -In this RT: I can’t make this stuff up. -RT @whitehouse: Obama: "We’ve made huge swaths of your government more efficient, more transparent, and more accountable than ever before."… -@Jodzio yes, I got a fellow woman pregnant, I’m just that hot. -@octal @thegrugq except for the way this guy’s happy go lucky one-way signing implicates a bunch of people together -I think the Starbucks lady thinks I'm Coworker George's other woman. And his wife is pregnant. -@m1sp also, Houri has a lot more of it, but she’s still in harmless nascent sidekick stage -@m1sp I think the GoT way of putting this would be waking the eagle -@kivikakk so… is that your name now, Amelias, in the plural ? -@puellavulnerata btw your key-signing fan is easy to find on twitter, if you haven’t checked. Must be him, timeline is very leak-centric -The key problem with PGP is that the web of trust can have one-way nodes inserted nilly-willy. http://t.co/OZJqgCiXUE oh and metadata leaks -@Viss and the only reason I’m not on that list is I forgot to sign @puellavulnerata’s key because my local installation was broke… -@gsuberland I suspect someone may have been trying too hard to make fun of “there’s no such thing as rape” -@iShark5060 @MaxBlumenthal oh yeah I complain. I complain a lot. But I’d never think “I should call the cops and hope he rots in jail!” -@rantyben get your mind out of that gutter ! -@iShark5060 @MaxBlumenthal sounds like a good way to become too frightened to say much of anything -@iShark5060 @MaxBlumenthal what did we learn? You go to jail for pre-crime. -@m1sp last one tonight I swear http://t.co/EMUg1HTPha -@thegmanehack but it’s at http://t.co/1FUyPttxdD if you want to ping it gently :p -@thegmanehack I’ve been using it as a general Linux, even ran dwarf fortress over ssh -@thegmanehack I bumped up the ram to 1GB I think… -@thegmanehack I’m quite satisfied, and it’s speedy from most of the world, it’s like, two hops from Amsterdam… -RT @MikeTaylor: Not sure whether to laugh or cry at: How many historians does it take to change a light bulb? (with peer-review): http://t.… -@m1sp the perfect excuse to draw Bars with his hair down! http://t.co/Z9Lxa9CJXZ -@m1sp writing dialogue for clever little girls is my one true joy in life http://t.co/WUyknME8wg -@puellavulnerata curse you autocorrect -@puellavulnerata stop repressing their /user/lib/ERTY -RT @tab2space: I’m sure they were just plumbers. http://t.co/Wt8bSCGzTr -@nickdepetrillo … this picture is definitely better. If you were wondering. -@homakov the state-run lotteries are considered by some people to be one of the worst things the US government does… -@homakov it’s a lottery if you buy numbered tickets, and they draw the winning number, who gets the money. -@misuzulive yaaaaay -RT @MaxBlumenthal: 19-year-old kid jailed for a sarcastic comment on Facebook. Now he's on suicide watch. Who's next? http://t.co/xTmXgGFqz… -@Viss ohhh baby your signal’s so cleeeaaaan -@DrPizza they are almost all from cargo trucks, out all day every day in the summer heat -@m1sp Should rename the book "teenagers generating international incidents" http://t.co/sMiDAJYbPB -# 354022889118384129 -@m1sp one of these people is not cut out for intrigues. http://t.co/jlvJKy85yu -@m1sp then be a good friend and star my drawings :p -@m1sp arai arai! http://t.co/kSnwvVDzg6 -@m1sp *poke* chats? -@m1sp and that's why Hayr resolves he'd sooner throw himself off a mountain than join a camp. -@m1sp a bit deliberate! The boy shirking off arranged marriage is their cultural archetype rebel -@m1sp no, no, Kandakari and Arakel have two different aspects, only one of which remains in Tokhar. The aspect of truth drifts. -@m1sp anyway if you still have the link I've been expanding the lore book -@ibutsu @m1sp Petragon, named for its stonework, is one of my fictional countries - the token white people. -@m1sp I think that anyone in Petragon too old for fairy tales would say that the story is greatly exaggerated. It's just *Antaram.* -@Kufat this is your notice that I have bailed -I had a dream that I came upon a rural homestead, abandoned. One word hurriedly carved into the snowdrifts: "UNIX" -@marshray pretty sure that only helped software piracy… -RT @RealTimeWWII: Col. Amilakvar wears dress uniform (no helmet) in battle: "When one risks meeting God, one must be properly dressed." htt… -@marshray privateer has a nice roguish ring to it… -Incidentally, “illegal x: don’t do it because of punishment z” is possibly the most circular argument I have ever seen seriously used. -RT @awallens: I asked Siri: When is my next appointment with Beth?" She said, "I don't see any appointments with Death!" Um, good to know! … -@CyborgCode there is no trick. It’s a completely false dichotomy that a woman can be attractive OR she can pursue job skills. -@CyborgCode the fact that you think so means you have bought in to patriarchal ideology :( -RT @dhh: Thousands of spies and billions of equipment will find a way to justify itself by inventing new enemies far beyond their original … -“Illegal gambling: it isn’t worth the risk. Because we’ll set you up then murder you over two thousand dollars.” http://t.co/ALzN98LpGC -RT @maradydd: This is the only 3rd Amendment claim I've ever seen in my life. Are they working backward? http://t.co/0zrlq6nrFj -@DrPizza and the reason they’re not only still open, but USA is spending a fortune on an entirely new facility in Germany, etc ? -You do realize I know all the reasons and I’m making an observation that we are imperialistic right -@DarrenPMeyer I know a country called France who would object to that assertion… -@Sonikku_a and we’re so worried about Germany? :) -@HersonHN the country -I’ve always thought it strange that America has military bases in Europe but Europe doesn’t have any in America. -@hemantmehta ohh, that explains why everyone I ever knew is dead ! -RT @chriseng: On Android, Google replaced the Talk app with the Hangouts app, but in alphabetical view, the Hangouts icon still shows up wi… -RT @MadSagamoreBrdg: Don't worry, I know there was a power outage but I don't run on electricity. I run on the frustration of people stuck … -RT @suigenerisjen: Anyone who isn't outraged by this isn't awake http://t.co/1xkdUssEgA -RT @zoeimogen: I'm told I do not have eldest daughter's school report because the apostrophe in our surname broke the school computer syste… -RT @20000TinyJars: if you see someone staring into space dont bother them bc theyve just leveled up and are allocating stats & skills and w… -@rgov someone mentioned that it has a high number of users in Certain Countries. -@m1sp http://t.co/hEBiix4XAH -@QuantumG dang... that's actually... a really good price, aside from the fact that it'd be a cruel prank -@innismir thank gods it wasn't actually the one with the blue light. It's better and they stopped making them. -I seem to have finally succeeded in frying one of the $10 dongles. A moment of silence… -@theROPfather though of course there’s a lot of perfectly fine music which imitates it in broad terms with the blips and the bloops :) -@theROPfather if someone doesn’t mention what model chip the song is for, it’s probably not a chiptune proper. -@theROPfather it has the very specific meaning of being produced by a programmatically manipulated synthesizer chip -There should be audio attached to hear satanic!Miku... https://t.co/lNaz2ksvK8 -When I started the Eve client, it broke OSX's sound somehow so that it's only playing lower components. Hatsune Miku sounds... satanic -# 353661539728900096 -@scottmarkwell based on the frequency I suspect it’s related to the lower touchscreen initializing. -@Kim_Bruning @blowdart I don’t like it. The style grates on my nerves. -Watch out world! I now know the exact frequency to scan to detect a Nintendo 3DS boot sequence. No secret is safe! -“… I can’t pick up any FM stations. They’re all static!” … *unplugs the entirely powered off Terrible Laptop from charger* “There they are!” -@stiabhang no and not yet -There is a checkerboard pattern on a subset of the LCD I'm tempesting. I'm so close I can taste it. http://t.co/N4oDNWs7RL -@DarrenPMeyer it wouldn't be a problem if my algorithm actually worked, but I'm stuck in the tweak-and-rerun loop :p -(I'm actually only processing an array of ten million things, but it can only possibly be more true of a billion. Especially with 8GB ram.) -It takes far too long to cast an array of a billion things to a billion other things in Python #firstworldscienceproblems -@blowdart I think I was twelve the last time I actually went to a fanfiction site to read fanfiction. -@The1TrueSean I'm telling @WhiteMageSlave all about what a meanie you are -@The1TrueSean @WhiteMageSlave I can't tell if you don't know you're being made fun of -@The1TrueSean @WhiteMageSlave my asquib what? -@WhiteMageSlave TECHNOMAGE -@WhiteMageSlave NO I AM NOT A MUGGLE I AM NOT I AM NOT I AM NOOOOOOOOT -@WhiteMageSlave I was in Salem not two nights ago and I didn't meet any witches :( -#fanfictiontaughtme you can get your Hogwarts letter even if you're American!... ... ... I was a lonely child -@ScratchFreedom @MyLittleDroney I’m not adverse to it but I’ve only seen like one episode ;) the pinkie pie is a good luck talisman I guess! -. @MyLittleDroney , my little droney, death from the skies, it’ll be a surprise ! http://t.co/F8ehhhJlPT -@Myriachan ha, they’d never give me one no matter how nicely I asked, I bet :) -@savagejen @th3j35t3r as usual, he seems upset there are countries other than America which get up to country-ish activities occasionally -I dream of the weirdest tech- like an electronic pink diary with a hash breaker feature for breaking into other diaries -Gah I can't escape the surveillance !! http://t.co/nR1SATU4XO -@snare if those are my only choices, I’ll take fight -RT @jzy: Outside graphic isn't as good as it used to be. http://t.co/TrhErGu2c1 -Wait, did the US seriously send Venezuela an extradition request after they’d already offered asylum? Horse, barn, and the barn is on fire -RT @scanlime: The Zynga mistake reminds me of back when I managed to register "mailer-daemon@aol.com"... http://t.co/W7tjJeKIUG -@apiary hot -RT @kevinmitnick: WOW! Venezuela President offered Snowden asylum. USA shouldn't have messed with the President of Boliva's flight. http://… -@DrPizza DH complains of the same thing -@m1sp http://t.co/R1iqrNilHG -@nickm_tor *googles* wtf -@m1sp you disappeared without sharing an opinion ;-; -@Baneki @nickm_tor I know they're alpacas, but that doesn't alliterate ! -@nickm_tor llama lovin' http://t.co/48O311OMCy -@JeffCurless @The1TrueSean gods deliver me, he's even worse than the husband I got -I heard Irish music in my house. I came downstairs and my husband was gone but @The1TrueSean was just sitting there like he lives here -# 353286342286901250 -From the dictionary of the ancient Tocharian language http://t.co/ZxU6T4a0NE -Next edition of "abadidea draws angry girls" http://t.co/N6iJ9MMmVd -RT @DoritosOntario: @SaddestTiger What you're feeling is the actual universe. This is existence. A brutal, unrelenting, laborious drudge. P… -RT @AndrewCrow: My #Comcast #Xfinity experience: Rep: "I see your modem in our system and it's online and fine." Me: "Really? It's curren… -@m1sp wake uuuuuup I have stuuuuuuff -@tenfootfangs also my stories have snakes as a motif of one of the cultures so yeah. -@zaralynda @azurelunatic mayhaps twitter needs a downvote button... -@tenfootfangs I just wanted to make sure, for purposes of writing a fairy tale, that pythons can measure at least as long as a person. -"google, python length" "the length of a list can be found by..." "google, just this once, python length SNAKE" -@JavaKrypt @pandy92 away from this, actually. Obsession with gender roles is a mark of early stages of human cultures. -(Congress people do not automatically get a *true* clearance but they get a lot more than the normal humans.) -@innismir indeed, they don’t HAVE clearance, but they still have broad access to classified information. -And if you were refused a clearance and then got elected to congress, I don’t think anyone could do anything about that! (Or could they?) -@raudelmil you don’t have to convince them *you deserve a security clearance.* :) -It occurs to me that being elected to congress would be less paperwork than getting a security clearance the conventional way -@blowdart yeah… sigh -People complain about other people who look at phones in public. But they’re a lot less intrusive than newspapers. http://t.co/ZRgJb1hCVb -@BettorOffSingle pff…. Snerk…. Hahahahahahaha this is a good parody account -@IndigoCCS you stole my clever tweet! I’ll report you as spam! (Nah but really, please do.) -@chort0 idg… oh -FOIA requests denied because that would prove they have capabilities they want us to think they don’t, then. https://t.co/89PMfqqpss -RT @aestetix: "Your request is denied because the fact of the existence or non-existence of response records is a .. classified matter." -RT @aestetix: Wow, my FOIA request to the NSA for my phone records was denied. Fuck you, NSA. -RT @KillerMikeGTO: I read this and........"Naw I'm cool" http://t.co/x8fXPG1tvC -@grahamvsworld @innismir need to meet more government contractors then! -RT @TetZoo: Look: holotype of Eocene #lizard Yantarogekko, preserved in Baltic amber. Incredible, c54 million yrs old! #reptiles http://t.c… -@OrwellUpgraded I said don’t use it as a social justice button, not don’t use it as a report spam button o_O -RT @pandy92: There's a website selling wigs for baby girls so they don't get mistaken for baby boys. It starts early. http://t.co/g1fElY7A3a -@nickm_tor there’s a llama one too… -Please don’t use “report as spam” as some kind of social justice button. Even if it’s an abusive account, you’re just being abusive too -@BettorOffSingle … well, I think *everyone* is better off if *you’re* single, yes! -@geekable I want you to know I live next to a Dunkin Donuts and never go. -@SimonZerafa certainly not! There are artists a thousand times better who need the money. -@tangenteroja Salem murdered “witches,” which was basically any woman who was the slightest bit odd. -@m1sp so. much. LORE. http://t.co/JLczROwm3e -@no_structure DON’T MESS WITH THEM. http://t.co/zogXMEbyYF -@GermanCityGirl @The1TrueSean am I the only one who doesn’t understand why an Amazon princess wears the star spangled banner -RT @natashenka: You say my code is self-modifying like it's a bad thing -@matthew_d_green and then every time Amazon's East Coast availability zone goes down we have a global traffic jam -Salem, Massachusetts apparently rejects traffic-sensitive traffic signals as witchcraft -My hobby: seeing how young I can make myself look by making my pupils big http://t.co/sVpRxPENuD -@ra6bit ever hear New World Symphony? Russians got the American music thing NAILED. -@flyhachi probably not, as we already have a cross-country trip coming up... :( -They're playing the 1812 song live and the fireworks are gonna be the cannons eeeee! -Animal Crossing blue-screened. http://t.co/qAaK5qf3nV -My favorite thing is when twitter silently fails to post images over 3G -@tangenteroja though a few hundred years ago I'd have been murdered here -@tangenteroja I'm here. I posted a picture. I just like ships :) -This guy is breaking my heart with reading the Gettysburg Address -My animal crossing town is now open, over 3G, at the beach -Nice town, Salem. http://t.co/uou6hCOkyr -# 352927361571889153 -Going to fireworks … at the beach! 🎆🏄 #America:#TheGoodParts -@grp @comex aw man, evil organizations never try an’ recruit ME… -@kragen because of things related to that, yes -I’ve been angry since literally three minutes after I woke up, so here’s another angry girl #arttherapy http://t.co/GCLcWJB57f -@0x17h sometimes you read too much into things. -@jesster_king they’re apparently not on there. -@0x17h it was never perfect so we should just give up ! -@jesster_king to stick it into another thing -@loganb that... makes sense, if you don't say restaurant. Sorry :p -@jrmithdobbs do you know how many THOUSANDS of real-world buffer overflows I've seen with my own eyes at work? Not "perpetuating" jack. -@jrmithdobbs in C/C++, Java, .NET, PHP, etc, pretty much everything except Javascript, which needed manual prodding. -@jrmithdobbs and I note that this entire process was an EXCEPTION to our usual methods; you never hear about our thousands of routine scans. -@jrmithdobbs it uses sound, non-novel algorithms. The bug was not in a novel (homegrown) algorithm, it was in an entropy failure. -Somehow missed this when it came out... really good owning of a Chromebook. http://t.co/hAH4qJDIUw -@THEwmAnderson they save crummy jpegs to the SD card -I don't suppose there's a way to coax Animal Crossing into not saving screenshots at super low quality -I'm *so close* to having a theme going. Anyone have any high-tech things they want to gift me? http://t.co/MwONOdJ5kJ -@bascule and only America could not understand they’re being called barbarians with that statement -Paula, you are a bear. In a video game. You are not “busy until 3:00.” You are wandering around shaking virtual trees -An AI in Animal Crossing just made an appointment with me to hang out at 3pm. And I feel obligated to show up. Ffff. -@ErrataRob @mikko you know, in most legends, the one who wins the impossible dare for a marriage is killed, imprisoned, or tricked out of it -@jrmithdobbs clearly, you’re so privy to our conversations and business contracts that you must be the NSA… -@jrmithdobbs And it was hyped by Not Us, and *at the time* we tried to tone down the hyping of it, because it wasn’t cryptanalysis. -@jrmithdobbs take a stand against WHAT? We did what we do and were honest about what we did. -@jrmithdobbs wow, if it is fraud to not find 100% of all possible bugs after saying we won’t, the whole industry really is screwed. -@jrmithdobbs but it wasn’t up to me, and I’ll get in trouble again if I keep yelling about it :( -@jrmithdobbs if it had been up to me I would have said to refuse the contract because it’s too far off from our core service -@jrmithdobbs did you actually read the report? -I started up Animal Crossing without an SD card and it punished me with three dialog boxes before it told me what was wrong #uirage -.@thecharrr then we shall INVADE Animal Crossing and LIBERATE THEM. -Time to find out if Animal Crossing celebrates America Day I guess -@gsuberland don’t be silly. There’s no such thing as numbers BETWEEN powers of two. -@WarOnPrivacy same here :p but the east coast is quite vertical -@WarOnPrivacy in all fairness, I grew up accustomed to ten-hour car rides at the drop of a hat -Apple Maps, how far to Salisbury beach? “13 hours” Okay, how far to the Salisbury beach IN THIS STATE? “Oh. Forty minutes” -@WarOnPrivacy also, sorry, still pretty small ;) -@WarOnPrivacy but the only person who lives in the western half of Massachusetts is @Paucis__Verbis -Goodness, I keep forgetting how small Massachusetts is… http://t.co/i1UGF1PqHT (also, my, what classy fonts you have!) -@DarthNull @i0n1c I’m pretty sure it’s one of those things where there are more people making fun of dummies than original dummies. -@jcran NSA has added you to list “NSA/watch” -@SimonZerafa ie it’s only a bug BECAUSE the entropy of the result matters in context. -@SimonZerafa go look at any list of common JavaScript errors, calculating the entropy of something won’t be on the list :p -@brinxmat but in the end you must understand the remark was playful. People in England in the 1770s stood up for us to the king -@brinxmat yes, that kind of supports my point ;) the first waves, who did the hardest part, were religious exiles, criminals, etc. -@SimonZerafa in the end the bug comes down to where I always said the bugs would be in JS — the genre of casting errors. -@SimonZerafa we don’t specifically offer JavaScript line-by-line auditing, no. At least not yet. -@SimonZerafa we did a manual penetration test to verify that it behaved as the spec advertised. -@brinxmat ah, back in the old days, we did it with slavery and indentured servitude (which is slavery with a time limit, for Europeans!) -.@j4cob well, I wasn’t on a phone, though perhaps it can’t distinguish between iPhones and iPads reliably… -@brinxmat I don’t think I know many Europeans who immigrated so recently, they’re vastly outnumbered by the Indians and Koreans :) -Anyway @kaepora claims that one-on-one conversations, which is I presume where the most sensitive stuff is, were not affected -@hackerfantastic what! How do you have almost as many as me -Anyway, if anyone wants to have a fight over audits of enciphered felines, I’m totally game as long as we do it where my boss can’t see. -RT @Number10cat: The Home Office is using an online tool that recognises sarcasm. Great work guys... http://t.co/RSw0nU02hC -“Oops, you will need to generate a temporary password on twitter dot com to contine.” Err, why not just text me my login code…? -RT @cryptocatapp: Blog Post — New Critical Vulnerability in Cryptocat: Details and more: https://t.co/Hu7WbKFSqt -RT @Pinboard: Towards the end of his demo, Doug Engelbart skips over some material for lack of time. That's why we don't have hoverboards t… -The little firebrand is stirred to wrath by a bug. The little firebrand has cold water poured over her head and is told to go back to bed -@andreybelenko @chriseng @thegrugq @solardiz @WeldPond and as it pertains to entropy amount, I’d classify that as cryptanalysis. -@andreybelenko @chriseng @thegrugq @solardiz @WeldPond it’s a stupid bug, but looks like more than one smart person didn’t quite catch it. -@solardiz @WeldPond @andreybelenko @thegrugq (yeah, this one was a manual. Our magic engine doesn’t support JavaScript analysis) -@rantyben @chriseng @thegrugq @solardiz @andreybelenko @WeldPond not a comprehensive source audit and certainly not a proper cryptanalysis -@rantyben @chriseng @thegrugq @solardiz @andreybelenko @WeldPond it was a time-limited exterior manual penetration test 1/2 -RT @EdwardTufte: An enormous contribution to the art of scaling by placing object of known size into a graphic. http://t.co/RrLRStvYvF #d… -@chriseng @thegrugq @solardiz @andreybelenko @WeldPond Namely, that it was using known-good algorithms and such. -@chriseng @thegrugq @solardiz @andreybelenko @WeldPond and we don’t do cryptanalysis. The report enumerates what was checked wrt crypto -@blowdart no actually the last one it’s seriously a tigger word with me for real. -@brinxmat ungrateful? America was built by the people Europe didn’t want! -@blowdart ..... ouch dude, trigger word -@geekable and Thomas Jefferson owned slaves and George Washington probably was mean to someone once. -@geekable spying on someone you are formally at war with is a trifle different from spying on a beloved ally. Even if they're both England. -@CreetureNZ and most of them, including the 4th, very specifically address something they were fed up with. -All the British are sleeping, they can't object. -On a lighter note, Happy IN YOUR FACE ENGLAND Day -Happy Fourth of July America. The Fourth Amendment is one of the things we had to fight a war to have. -RT @zephyrfalcon: @0xabad1dea You should make a game where you throw angry girls at chauvinist pigs :P -Abadidea Boots Up Bootleg Pokemon! http://t.co/5PN7k5J46y tonight: an old man gives me the thing good! -@adamely @supersat yeeeaah... The store detects only the most trivially overt stuff -@xa329 @ra6bit http://t.co/E0tJ2XvZaN -@Disguised99 chemistry, he is from an educated country and he shall have it called *chemistry*! -(I lied. Sometimes I draw pensive boys) http://t.co/Qfccbn9Toc -@ra6bit also, it’s okay, you can say “it’s the glasses… and being stocky… and angry.” -@ra6bit she usually wears these bigger more kawaii ones. http://t.co/ji7hodau4m -@ra6bit dangit @ternus thought this character looks like me too But she is NOT the one who snaps and kills everyone -Fact: the only thing I draw is angry girls. Dozens of notebooks of angry girls http://t.co/a9kK9GslvO -(Uncropped source, because it's really quite pretty. Yes, I'm researching historical costume design...) http://t.co/gWyUTjI8M7 -@CharlieEriksen it's really just a markov chain run over tweets... @m1sp birthed it one night -"I think we're better off as friends. Why don't you ask my sister out?" "Giiirrrrrl don't try to pass him off on me" http://t.co/s2kLiOyF9N -@NireBryce I cower in the suburbs, I'm afraid. -Folk north of Boston: what sort of outdoor nonsense should I drag my <s>cave troll</s> husband to tomorrow? -Okay I get it’s a Blackhat talk but wow this disclosure is a tease http://t.co/8DUR28PaSx -“The United States does not support specific individuals or political parties” Sure, sure. http://t.co/eSxhHgjnfm -@botnet_hunter this particular site - you will know it by its good taste in pink - has done right by me in the past -I find it bizarre that a payment processor would have a rule against anonymization services as if it were immoral http://t.co/BhF6nuaDha -@kivikakk actually, I need to learn more, and learning from a technical document like this would probably be easiest for me ! -@marginoferror you can copy multiple lines without the line numbers, as it’s a table cell or some such -@marginoferror fprintf(stderr ,"引数が足りません\n"); -@dijama yeah I don’t type it out directly to avoid automated spamming -@dijama it’s not particularly secret… -It then turned out I can’t actually read Japanese. http://t.co/wUZCuICqFz -Success! The publisher takes Paypal. I have the PDF \o/ -Our little AI project apparently considers Minecraft to be an arousing word https://t.co/Njvr5PLlpa -Currently seeing if I can stumble through the publisher’s site for it… -# 352577240799780865 -Unfortunately, Amazon.jp won’t let me send to my dirty American kindle… or I’d totally buy it to support this masterpiece -@kivikakk pro -Proof: gcc is not the most kawaii compiler http://t.co/V9ZIxUt0ol -@mof18202 @nrr @_am3thyst k… k… kawaii (≧∇≦) -@_am3thyst @nrr I know the *book* is real, I mean did it really appear in some anime ! -@Tomi_Tapio I find it physically difficult to tap-to-close such pictures -@nrr is that… the original text? -@ErrataRob @donicer @Apofus no doubt a green laser pen will now be as sure a sign of terror as a Casio compass watch -@rallat @bbhorne either it’s old or made from simple, reliable parts. -RT @bbhorne: Here's the inside of the bug that Ecuador found at their London embassy: http://t.co/pDKUgEdN4C -RT @Zookus: Note to the person currently running @MtGox. Twitter has a cap of 140 characters. You shouldn't try to type out a full e-mail r… -@natashenka perhaps old hoary nesasm ? It will generate an iNES header but you can lop that off… -RT @savagejen: There are nationwide protests against NSA spying tomorrow, the 4th of July. Find your local protest: http://t.co/bCSeI22ko4 -I've discovered I can control the weather. If I set something on a windowsill to warm up, the sun will retreat behind clouds. -RT @RT_com: BREAKING: Al Jazeera #Egypt offices raided as national broadcast shut down: http://t.co/8jxskuArBN -Let me sing for you the song of my people http://t.co/Di4YvioO9T -@veorq @marshray the correct exponent is never 1. -I get nervous when I see @julianor tweet acronyms… -RT @jricole: Dear Egyptian revolutionaries: Just remember, we in US already have dibs on July 4; so hurry up or slow down -@solak @Veracode ugh, I couldn’t eat that, it looks like mould… -@noirinp @superglaze @hypatiadotca I have no idea what’s going on but I want more of it ! -RT @noirinp: RT @superglaze OK, this European Parliament debate on #PRISM just got very weird http://t.co/lNEMHmzsrx -RT @SteveD3: On the other hand, this is funny. http://t.co/H76P2EI0ab -@gsuberland they didn’t “pick a slogan.” To my understanding it was a spontaneous response to singing religious songs to tick ‘em off. -@joecarter @gsuberland what’s wrong with “hoes before embryos”? I do indeed value allegedly loose but sentient humans over pre-sentients. -@chriseng I'm checking who RTs this... *cough* @fredowsley -RT @chriseng: OH: "When I first joined the company, I thought it was @0xabad1dea's full-time job to tweet." -If you start a PHP hate blog on tumblr, people will send you mails asking for homework assistance. -@kcarmical postcards are treated differently and often “lost” so I was just gonna go ahead and write on envelopes that won’t fall to bottom -@kcarmical randomly on the envelope, it’d need a valid address. -A fun experiment would be to send letters with encrypted text written on the outside of the envelope and see who freaks out. -RT @ioerror: This is a privacy violation that nearly everyone understands: http://t.co/6AaWs2zWoI #USPS #NSA #postalspying -@McGrewSecurity and that’s a problem, if it doesn’t work both ways. -RT @LINGUISTICSHULK: HULK USE SINGULAR "THEY!" PEOPLE UNDERSTAND! HULK SMASH PRESCRIPTIVISM! #linguistics #language #descriptivism -@katzmandu @MrToph oh, and people actually *trying* to smuggle weapons on planes have a near 100% success rate :) -@katzmandu @MrToph only if you suppose that small weapons found in luggage correlates with in-flight murders prevented. -RT @MrToph: The TSA has an instagram account. Your tax dollars at work. http://t.co/S9ooIngLti -@m1sp that sounds like a prophecy or something -RT @xeni: Obama warned of retaliation for any nation aiding Snowden. But today, South America is pissed. Pres of Argentina calls emergency … -I certainly have learned the names of a lot of presidents and prime ministers recently -RT @BBCBreaking: Bolivian President Morales says diverting his plane was "an offence against the country", via @BBCGavinHewitt http://t.co/… -RT @mrbellek: Hey Ubisoft, your email telling me to reset my password because you were hacked is flagged by Gmail as a phishing scam. Good … -@m1sp a guard! With a name! http://t.co/QFFD0DeKpb -@thegrugq you’re actually right this time -@thegrugq I’ve seen you, you’re not too fat. I could totally shift you if I threw my weight into it… -@thegrugq I’ll shift u -@thegrugq if America wants to be called a lady she had best act like one even around people she considers small folk -@killerswan @oh_rodr me either, but I’m rather against organized religion in the general case -Due to Klout’s algorithm, I was once the world’s leading Hitler authority, beating out seventeen parody accounts and one guy who was serious -@killerswan @oh_rodr I’m sure people lacking basic sanitation will be pleased to know that the political landscape has obsoleted a word. -@janinda @oh_rodr I was once The top klout result FOR HITLER -@oh_rodr @killerswan the argument is that it slowly begins with a distinct lack of a distinct moment sometime after conception. -@oh_rodr @killerswan Ferns are alive. *Bacteria* is alive. It’s harder to prove something ISN’T alive, when you get too philosophical. -@oh_rodr @killerswan I’m happy for your baby but that is such a straw man argument ;) of course it’s alive. -@oh_rodr @killerswan sadly? Sounds like a happy occasion -@oh_rodr @killerswan if someone abuses that protection of the mother’s life, they can answer to their gods. -@oh_rodr @killerswan the law draws the line on the side of “you know, sometimes women DIE if they can’t abort, we should make room for that” -@killerswan @oh_rodr also, there are many religions in the world with priests, and the requirements for all of them tend to vary :) -@killerswan @oh_rodr you don’t need a law to stop you from doing something you sincerely believe is wrong. -@killerswan @oh_rodr I’m just saying, when there’s no clear line, there’s no one answer, if you think something is right then do it. -@Scott_SanfordTX @0x17h someone can’t tell when they’re being trolled. -@oh_rodr many do. If they don’t, it turns out they have moral agency of their own. -@oh_rodr one should ask their priest, or themselves. -RT @billkendrick: @a_greenberg @0xabad1dea Clint Eastwood should interview Snowden's emtpy chair -@oh_rodr only for medical reasons. No sane person suddenly changes their mind that far in. -@innismir goodness I just googled that. That seems unwise also, but at least they had some sort of reason -❝technical difficulties❞ now with bigger quotes -RT @alanc: @0xabad1dea for bigger quote marks, just use ❝more unicode❞ http://t.co/npNMTP1Xeo & http://t.co/JBZI49VXQR -Harsh: “now the colonies are not in the Americas, they’re in Europe” https://t.co/WNzdBHJ4zL -Bolivia claims two different airports turned them away for “technical reasons.” I can’t make those quote marks any bigger -@pborenstein @CFKArgentina I’m not happy either. My government is engaging in puerile behavior. -@vogon according to other news sources, they were told they had to be searched and the president rightfully flipped his wig -I have never heard of a head of state’s plane being searched. Imagine if some random country wanted to search Obama’s plane? -RT @a_greenberg: I can't believe another Snowden news story has been illustrated with an empty plane seat. http://t.co/JhItP8mJzl -Everyone, whether you have a pgp key or not, search your email and see if anything unexpected pops up http://t.co/WTzCatGTBL /nod @kaepora -And on that subject, this is my public key. It’s huge because including my avatar was completely necessary. http://t.co/vehdEfcun5 -@kevinmitnick well then he turned 30 -@dakami security product? It’s already encrypted. I’m only worried about reliability of transport and storage. -@kaepora @charliesome perhaps they mean to use it to sign things -@dakami maybe if twitter wasn’t notoriously flaky :p -@charliesome @kaepora that’s… only in theory, if you ever need to email arbitrary strangers. -Surely there must be a more reliable means to send encrypted messages than pasting them 140 characters at a time onto twitter! -RT @kaepora: WTF?! There is a fake PGP key for my email address that was generated last week. DO NOT USE: http://t.co/UvlCSqhxtQ -@Anon_Central @druidian someone’s never been trampled… -Aw yeah lay down those well-tempered beats (is what I imagine Bach’s groupies said) -@NedGilmore I did consider “unwitting” to be an essential part of what I said -@NedGilmore Not getting your rights is wrong. Getting your rights and not realizing you’re lucky in that respect is the blinder of privilege -RT @KimJongNumberUn: Today I am officially offering asylum to Edward Snowden's laptops. -@JeffCurless I was set off by someone who didn’t understand why anyone would be afraid of cops. After all, they *did* help him. -@JeffCurless but this isn’t “white guilt” I’m talking about. I’m talking about being blissfully ignorant of problems that don’t affect you -@JeffCurless Massachusetts is indeed the closest to Utopia I’ve ever found in this country. -@JeffCurless then you live in Utopia, is there room? -@JeffCurless replace with your local group who frequently enjoys the benefit of the doubt in the legal system based on appearance -RT @kll: O.O this. is. awesome. Real Life Tron on an Apple IIgs http://t.co/Gc1PoPDzRm cc @0xabad1dea -Chiptune ! Just a short simple one. https://t.co/HjEBSVSS0B -@txs well, while we’re on the subject, I think only about one in a hundred of its tweets are funny… -@whyallthenoise I must have told the psychiatrists three billion times I wasn’t depressed and they acted like they didn’t even hear me -@HersonHN how did you know my secret of being a bot -(I’m not depressed ! Just for some reason I feel tears in my eyes at the slightest provocation recently, spilled my coffee, crying time!) -The good news: haven’t had a random panic attack in a while! The bad news: random crying spells o_O 😢 -RT @USDayofRage: Bolivian presidential plane forced to land in Austria over suspicions Snowden on board — RT News: http://t.co/Fr7fYAL0c4 -@InfoSecRumors @txs @SecurityHumor is this true ?! -Unwitting White Privilege: the system genuinely helped you out when you needed it, so why would anyone be against the system? -RT @qwghlm: Pointless pedantry to rival @StealthMountain - Instagrams of people lying when they use the #nofilter tag http://t.co/kpTotHwJ90 -@codinghorror who also have the good experiences of being saved, but also the bad experiences of being tackled and maced for no good reason -@codinghorror I did not mean you. I did not mean your mother. I’ll be blunt, I meant black people and brown people. -@codinghorror (and before I go on the record as some sort of universal cop-hater, my father was one and The Situation Is Complicated.) -@codinghorror they can be welcome in some situations and a source of fear in most others for an awful lot of people who aren’t bad people -@codinghorror that is the most Unwitting White Privilege thing I have ever read in my life -RT @historyweird: 1051: Priests who seduce boys should be whipped, shaved, drenched in spit and given horse food, argues Damiani. http://t.… -RT @mike_br: http://t.co/UVbXmsVEAB -@tenfootfangs people who argued on the internet saved me -# 352214248862126080 -RT @Viss: oops. email from ubisoft saying to change my pw because they got popped. -@CaptainSaicin yeah, I guess that's why it's in there with the stamps which are probably also valuable -@m1sp @JackLScanlan http://t.co/pQqfezxb7C -Just got an email that pebble watches will be in stock at Best Buy starting Sunday. I need one so I stop missing Dear Husband's texts...! -OP breaks into a safe. Contents: nazi memorabilia, thousands of stamps, exactly one Virtual Boy game cartridge http://t.co/Rk6wPSUeGZ -@DarthNull their global empire is an aberration ended, but they sure don't act the part sometimes ;) -@DarthNull was wiki-walking through some stuff about Armenia. Many ancient kingdoms came and went. -It's easy to not care about the significance of an ancient culture that lasted only 400 years until you do the math since Jamestown... -@jgeorge nah, I am largely ignorant of web stuff, though you can probably get that out of wget somehow. -@wimremes yeah, I don't get why that bothers you, they're just cornrows... -@thegrugq is a bad man -It's so humid that the weather widget thinks it's raining. -My lap. A paper coffee cup. Compromised structural integrity. My pants. I’ll let you do the math #sadpanda -@tapbot_paul we won’t forget you -@christinelove @vogon gods that sort of attitude traumatized me as a young girl. I thought no matter who I loved my father would kill him -@tufts_cs_mchow @chriseng improvised lunch meetings, Veracode style -@wimremes o_O you hate braids? -RT @chriseng: How to pick the worst seat in the conference room. (/cc @0xabad1dea) http://t.co/JvYuntvs6o -RT @FDNY: BKLYN ALL HANDS 23 STREET, A LARGE AMOUNT OF A THICK UNKNOWN SUBSTANCE ARISING FROM THE STREET., -@torvos it’s as Canadian as you can get without going to Canada, but I see you’re already there. -I’m at a lunch meeting. The guy who called it forgot and went to Maine. -OH “I need a computer” “Want a banana?” “If it’s Turing-complete then sure” -Simple-looking Android lock screen bypass... thanks, Skype! http://t.co/4cN6UoiuiL -Roll thy own crypto for thy Warcraft game and yea verily shall it be cracked http://t.co/aoK6FyG7UE -This is the most meticulously researched conspiracy theory I’ve ever seen http://t.co/9iiQO33SEs -@flekkzo oh, hello… -@m1sp my pastor had a bar bent by them… -RT @InfoSecJesus: I heal the blind SQL injection -@ra6bit @innismir @_larry0 you say that like trains aren’t awesome -@_larry0 kid knows what’s important -RT @kivikakk: nop http://t.co/O8rtTMWHLB -RT @0x1C: BLACK METAL!! \m/ \m/ http://t.co/A0nxKVv9Vn COMIC SANS HAS NEVER BEEN SO BRUTAL!! @addelindh @csearle @snare @darrenpauli #black… -@m1sp ‘tis Katarosi’s father. -RT @0x17h: http://t.co/wKYJLZxTC6 RT @BrandonDoughan: Today at noon, the Hispanic population matched the white in California -RT @mmpackeatwrite: Best sign I saw today on the Capitol grounds #hb2 #sb9 #txlege while standing with Texas women under the sun. http://t.… -@b_scheller @0x17h united we stand etc etc. -@b_scheller @0x17h — where the strong son could not break them but the clever one could, by untying them and breaking them one at a time -@b_scheller @0x17h everyone stand aside, I have a factoid! Washington deeply loved the story about the farmer and the bundle of sticks — -@m1sp *tempts you out of twitter slumber with Plot and Writing* It's from a giiiiiirl character's POV -RT @spenchdotnet: @0xabad1dea Looking forward to your DEF CON talk! On the subject, I thought you might appreciate some sonified LF RF: htt… -@CharlieEriksen that would be near one of those poles I warned you about... -@comex I'll delete the remark before I have to explain it was edited to a bunch of people, then... -@comex yep. -@blowdart has it been experimentally confirmed that blind people experience a field of blackness? I've always wondered... -@comex United States -It's always darkest at a point equidistant from dusk and dawn unless you're near a pole and then it just might not really change -Why do all "online notebook" developers take so many vacations to Paris and the Grand Canyon? -@armcannon also #RuralLiving -There’s a word for making “erroneous statements” you already knew were erroneous. Lying. Under oath. -RT @kaepora: James Clapper apologizes for lying to congress: http://t.co/k8SXU1YFkI -Mom my hacker handle starts with a ZERO geez it’s like you don’t speak 1337 at all -RT @vogon: "Unable to stop debugging. Operation is not supported." you and me both, Visual Studio, you and me both -Motorola apparently has some cloud thing which feels the need to know all your passwords. http://t.co/rgpcbRCWhD -# 351852436673134593 -@kaepora lol what did the army say that has their president swearing no relation -RT @ternus: In case you feel the need to compare something: http://t.co/kwhy9pfQlG -RT @hillbrad: If the helpdesk tells me to downgrade my browser to complete mandatory security training, can I placement test out by saying … -RT @timothypmurphy: If pro-choice activists really want to stop Texas from regulating clinics maybe they should just rename them "fertilize… -RT @matthew_d_green: The Guardian needs a 'skip' button like Pandora, for when you'd like to move on to the next leak. -@ioerror I have no trouble with it, I just think he has a British spell checker :) -@aquavitaecoll yeah. You see it with words like "team" in news coverage -@aquavitaecoll "The United States has fifty members." "The United States have fifty members." -Spot the distinctly British copy-editing. http://t.co/98KpL3ZON3 (hint: British and American English treat collective nouns differently) -@vogon since I haven’t seen Cambria much in the wild at all, I postulate you have a Microsoft Problem. -@CaptainSaicin I consider URLs that end in .pdf to be a PDF warning… if your client only shows the tco, it’s terrible. -@vogon not times new roman, still counts -This is the prettiest disclosure I have ever seen http://t.co/4hRxRrSNVc oh and there’s a catastrophic bug in Atlassian stuff -RT @RUSALGBT: This is how Gay Pride looked TODAY in St. Petersburg, Russia. Unspeakable violence. All Pride marchers got arrested http://t.… -@Mr_Reed_ I don’t know that I have access to a plasma screen! -@m1sp @WhiteMageSlave http://t.co/abSbmIvx6d -@ra6bit @_larry0 if you’d been showing up to the infosec cabal meetings, you’d have known of this weeks ago ! -RT @jerryshenk: RT @Crypt0s: Oops! CNN Publishes George Zimmerman's Social Security Number: https://t.co/aKZbMng7DH <- and DOB, height, we… -RT @Pinboard: Amnesty International warning that Edward Snowden can endure two, maybe three more Cinnabons before living in airport becomes… -@chriseng no twitter account? Mua ha ha ha -@aredridel @silentbicycle but that one actually makes sense. -@raudelmil now that'd be a vipper -Vipers gonna vipe. Whatever that means. -RT @mippadvocates: #StandWithTxWomen RT @WholeWomans: The crowd via @TexasTribune http://t.co/EpRd8LuXvm -@m1sp I'm thinking of removing all, like, two of Deloram's spoken lines and making her factually mute. -RT @sec_reactions: Vendors that threaten to sue for going full disclosure - by @aloria http://t.co/YsXgEmMNRV -RT @mikko: First US declares they will consider any foreign hack against their governmental systems an act of war. Then they go and hack EU… -@icculus @vogon lemme know if you figure what hash it is… -RT @icculus: So your software uses weak hashes because reasonable data will never have a collision, huh? http://t.co/Q9RHX7bOVH -RT @vogon: @0xabad1dea he'll probably want an ad hominem, that entitled asshole -If You Give A Moose A Slippery Slope Fallacy -"If you give that moose a muffin, next thing you know, you've replaced Linux's entire userland with RPMs from 2005" #meetingquotes -@xa329 it's a plain single cpp file in a plain "gimme a console app" project pretty hard to mess that up D: -I was fuming because I wanted a brownie for lunch and didn't get one. Then the gods dropped surprise chocolate cake into my lap! -"This project is out-of-date. Would you like to build it?" "yes" "Build succeeded: 0 failed 0 succeeded 1 up-to-date" -Good heavens gcc at least Visual Studio knows that no optimization means no removing function calls entirely in favor of a strcpy -@dragosr @chriseng I don't. It was probably a poster delivery for the marketing department. But that's not fun. -@Taiki__San don't worry, I'm *trying* to break things :) -@chriseng I don’t know but if no one else wants it, I’ll take it! -@jeremiahfelt dunno, didn’t get to see who it is for… -.@thegrugq called it: some company open since at least the mid-80s is actively traffic shaping to favor NSA taps, according to German news… -RT @csoghoian: Unnamed NSA partner company "aggressively involved in shaping traffic to run signals of interest past [NSA] monitors" http:/… -It’s in my blood, apparently http://t.co/Hfc6wqdf6b via @hypatiadotca -RT @SecurityHumor: Same-hex marriage with computers is an abomination. The Codex clearly states marriage is between a little-endian and big… -The UPS guy brought a package to the office eight inches wide and seven feet long. Had to swear I did not order a giant antenna. -@vogon apparently the null termination semantics are a trifle different, but that just moves the lack of adequate explanation downhill -And that day, abadidea discovered that snprintf was among the C99-ish things Visual Studio doesn't deign to support -@DrPizza I am so happy about that. Ad NOT just because I keep trying to arrange @m1sp’s marriage -Enjoy Canada Day while you can, Canadians. *sinister and distinctly American chuckle* -@thegrugq @pusscat it’s not even noon, Mr. Asia -RT @kansasalps: It's official, @fakedansavage has won: You can't use Santorum as a name in the new Animal Crossing. http://t.co/4WoaGbADKM -@BenjySarlin @innismir and by global, I do mean many-to-many -@BenjySarlin @innismir why does it need to be “patriotic”? I’m more interested in fixing the global surveillance problem. -@pusscat @thegrugq he’s convinced I’m a minor -@ptolts more or less, I work on a decompiler and control flow analyzer thing :) -@Hypnodrone heh, not with transmitters :) I only own a bunch of the cheap RTL-SDRs. The best one of that lot is Elonics E4000. -@apiary his name is allegedly Jared and he’s allegedly on Research -I have new coworker. His first sight of me was sitting on the floor. Hi, new coworker! I am noted for a disdain of my chair. -RT @daveshumka: Google Reader still works! It's a Canada Day miracle! -RT @MarkKriegsman: This is 10% CLOCK, 20% mem. 15% bit-banged P-W-M. 5% ACK, 50% SYN, and 100% reason to rewire the pins. (Good luck & god… -RT @wwwtxt: For what it's worth, I've been told that TrueType _screams_ under Windows 3.1. ☯91NOV -RT @mikko: Photo of an ATM skimmer and camera recovered yesterday: http://t.co/Nj0vucI89H Note the camera hole. Photo © Helsinki Police Dep… -RT @jedisct1: American Express, Dell, Fanta, Google, HP, Microsoft... malayisian DNS records have been hijacked, redirecting to 173.199.138… -@LargeCardinal when you talk about someone on twitter, and they have a username, but you don’t @ them -@m1sp designs! Of character! http://t.co/Ujfpglscdo -@CreetureNZ @thegrugq considering how few of you there are, I feel like I’ve met half the country on twitter :) -@puellavulnerata I really hate to break it to you, but that quote sources to the Daily Currant. -@puellavulnerata … he didn’t actually literally advocate bombing Hong Kong did he ? -@ChuckBaggett @puellavulnerata no, no, we’re stuck with Canada. And China. For completely different reasons. -@thegrugq poor India and South Africa and all those other places too obscure to remember -@thegrugq New Zealand must feel like a beloved kid brother, not even having the population of one American city. -@pingudownunder sdr touch -@Pepyri_ when you talk about someone, who has a twitter handle, but don’t @ them. Yes, I subtweeted them. -Someone *subtweeted* me! This is an outrage! -RT @jack_daniel: He could brainstorm for hours and never get wet. -@quine @nickdepetrillo I was being sarcastic, Lord Quine. -RT @Sapphykinz: "A wizard is never late. Nor is he early. He comes out precisely when he means to." http://t.co/uArfGbSUxw -@aeleruil since API 1.1 -RT @pueblokc: Celebrating freedom with this.?! I RT @ParanormalAR: RT @TehDissident: You're Drunk Freedom, Go Home! ~~> http://t.co/h85Nxwu… -RT @jmechner: "Whoa, is this a Game Boy?! COOL! I can't believe you still have one!" -10 yr old, born in 2003 -@WhatHoCenturion the Netherlands -RT @Cairo67Unedited: BBC just confirmed what the majority of Eyptians knew hours ago as fact this is the largest demonstration in the histo… -@cgiffard NOT *THAT* MUCH -@mcastilloy2k yeeeeup. -I'm reading a Japanese manga where the girl who moved to Japan from America likes to say "Do it or I'll sue you!" ... ... ... ...... -@m1sp I am inexplicably attracted to this man. http://t.co/ghqZFnfZY6 -@ilkeryoldas Because you are actively being part of the problem by saying that if I just played better this problem would go away -@ilkeryoldas also, you're mansplaining yourself to hell and back. -@ilkeryoldas I've been playing video games for nineteen years. I'm DAMN good at them, son. -@ilkeryoldas um..... did you miss the whole point, being, that NO MATTER WHAT, women are slandered and abused? -@ilkeryoldas @sascha_d wtf no feminism is not misandry. If you think women wanting the same rights and respect as you is misandry, get out. -@hokazenoflames it seems two of them are generating tmp files and then can't delete them lol -@0xcharlie @nickdepetrillo aww, it's okay, Dr. Miller... *I* think you're smart -@focalintent @MarkKriegsman is this prompt enough http://t.co/HU4m6B9INY -Currently running three different Visual Studios, may the gods forgive me -@0xcharlie @nickdepetrillo yeah yeah it's only defcon right? Neither of us is big-time enough to present at Blackhat, after all... -@i0n1c I forget why we hate each other, can you unblock me from following your wisdom about iOS? :p -@chriseng @nickdepetrillo I'm only in it for the pinball -@chriseng @nickdepetrillo we already do that on iMessage -@nickdepetrillo @0xcharlie which issue was it in? :) -@nickdepetrillo I enjoy feigning outrage -@0xcharlie @nickdepetrillo I'm working on my slides, what do you think? http://t.co/FXRokmH7uw -@cwebber I don't want to be called a *certified* hacker :) -From the archives: Don't mess with Steven. http://t.co/zogXMEbyYF -@grumpybozo I know -- I have tuned that very telescope with my own hands :) -There's a murder of crows just, like, camping my front yard #nsa #conspiracy -# 351487430408421377 -@grumpybozo it isn't, I was able to see the real hydrogen line last night, it's junk that's a harmonic of something inside the radio -@iosvap @nitoTV indeed, I definitely don't have any, though I don't see how that's relevant. -@KronicDeth the ghost girl from Paper Mario 2 is another one whose transgender identity is swept under the carpet in translation -@SimonZerafa it's an elonics 4000 + generic OTG usb-to-micro adapter. The tablet is nexus 7 -@liquidvicodin elonics e4000 -@asyncsrc just getting the thing to work with android was a success -@Havokca come to Defcon! :p -The antenna was getting in the way so now it's a hair accessory http://t.co/YFCrm6qLAG -@puellavulnerata at android -@Havokca running the radio on android :) -Success! Until you bump it anyway. There's just BARELY enough power. http://t.co/I7zqms766p -I found the missing lightning cable, while looking for a different cable altogether. -@niteshad in the dark, it might as well be -"You know what this radio needs? A LED status light you can see from outer space" http://t.co/Qy4aaPP93k -@ReturnInfinity no, go ahead, I consider it completely free (though a credit in some file would be nice :) ) -@mattblaze @xa329 well, locking it up in my faraday cage as best I can, it has a harmonic at 355.2mhz, which isn't ringing any bells -@hokazenoflames the vertical donkey kong and warioware were off but I remembered them; it was the POW block stage I'd forgotten -@jesster_king I'm not indecisive about things I *actually care about* -@robotharvest I prefer to think I'm cute... but I'm quite tall -@jesster_king it's globally illegal to broadcast in 1400 through 1427. It is reserved for radio astronomy (which is what I was doing) -@CyborgCode to do what? But generally one doesn’t need a specific degree to do what they want in programming they just need to learn -@CyborgCode I applied, there is no other way. -RT @MrToph: Reminder: You have less than 12 hours to get your shit out of Google reader. Last call, folks. -RT @deborahhorne: #nwpride Scouts provide color guard for Pride Parade for first time ever in Seattle. @kiro7seattle http://t.co/tAQX1IcT1u -RT @mortman: Foxtrot today FTW http://t.co/Hd9Ob31hw7 -@geekable I don't know, I don't care, just saying, that sign is kinda passive aggressive rude-like -@geekable “just saying” is passive aggressive to the max :p -@geekable well, just glancing at the sign, that looks more like demanding one look hotter. -@maradydd @leighhollowell @HackerHuntress @Secbuff I *tried* to wear men’s pants but I couldn’t find any that fit over my hips! -I hate pikmin. They freak me out. Die, little pikmin, die. http://t.co/NgNhvELyNR -@xa329 @mattblaze it’s an iMac. And there’s noise all over the place. Thousands of noises. Gotta catch ‘em all :) -@geekable I prefer to phrase it as: unhealthy living is a choice. -Apparently certain stages have been turned off random select in my 5yo Smash Bros save for so long I forgot they even existed. -@mattblaze the noise floor is about -86 and the peak is about -70 -RT @nagoul1: Please share > In case they shut off access to the internet: Dialup no. 004-949-23197-844321 User: Telecomix Password: Teleco… -@ErrataRob @maradydd we had… sword drills… which are not as cool as you’re thinking. -RT @savagejen: I also think we're seeing evidence of self-censorship as a result of the NSA surveillance. This is what "nothing to hide" is… -@mattblaze here's mine http://t.co/4cDTEgJU9Z and I'm using a USB radio with no external power -@tapbot_paul I simply *have no answer* and it sometimes infuriates people -@tapbot_paul I wear glasses yeah but I mean more like questions which ask for opinions on things that just, like don't MATTER to me -It drove the psychiatrists nuts, it drives lots of people nuts, and all I want to be asked is about technical things -One of my perpetual problems in life is that if you ask me if I'd prefer this or that I often literally cannot answer. -@mattblaze I found several people on the googles who, looking for the hydrogen line, also noticed the spike at .8, steady and unwavering :< -@akopa well, regardless of whether slavery was the reason the South went to war, it wasn't very conductive to the liberty of some People. -@stillchip I'm just quoting the quote -"Whenever any Form of Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it" -@akopa if SETI could automatically discard all terrestrial signals, their job would be a lot easier I imagine! -@raudelmil though I do live in a townhouse so the neighbors might. But, this is in many people's radio astronomy charts. -@raudelmil well, I don't think I own any devices with RAM at that speed, as I made a point of surveying them recently. -@travisgoodspeed (and this 1420.8 signal was there when I was picking up the 1420.4 one) -@mattblaze it's always there no matter which antenna I use, including none (the radio still picks things up very fainly w/o one) -@travisgoodspeed no, I got the hydrogen line last night, where it's meant to me, at 1420.4 :) -But at least I know it's not RAM (someone makes RAM at that speed apparently) if SETI was seeing it over a decade ago. -Trying to determine what is the spike at 1420.8mhz... only finding a decade of forum postings asking the very same question. -@maradydd and I ended up a writer at a young age, all my stories starring girls with stabby implements of some description. -I awoke to find a single hair upon my face. It’s finally come… my unix beard -@maradydd really not sure. I remember desperately looking for girls in the comics and stuff I had available and usually disappointed -@maradydd my father once criticized something I wrote because the princess rescued her husband-to-be. -@maradydd I don’t think so, as the children who are victimized by it see the same in reality, and fiction was supposed to be their “escape” -@sciencecomic @Lubchansky “She kept it all bottled up. Until she met…” -@kvegh it took me a moment to even figure out what it was… -RT @savagejen: That's not how free speech works. Either you let everyone print or it's not free. -RT @savagejen: Here's the thing: if we allow the government to decide what is a journalist, then we let them decide what's acceptable to pr… -@kyhwana not afaict. I had @vogon retrigger a few times to mixed results… -@nelhage what have I told you kids about running with scissors and using crypto with no sanity checks -This is driving me nuts. Sometimes when I get a twitter alert, I get interference on the waterfall display. And sometimes not. -RT @nelhage: Can we take a moment to talk about the fact that M2Crypto will even *let* you request RSA with e=1? -@DefuseSec @nickm_tor @solardiz the best part is where they act like it was merely suboptimal and just a casual fix -@Packetknife cheer up, the soda ban was found unconstitutional. -@_____C and apparently some people are protesting against adding women avatars to Arma 3 bc they’d have an unfair advantage due to manners! -@_____C it really varies by genre. Shooters are the worst. -RT @tavisrudd: Ada Lovelace on the pains of dealing with mutable variables and state http://t.co/BmG82aXXkl -@0x17h you might be overthinking it. -@nickm_tor … what -RT @nickm_tor: Wow. "It's questionable whether 1 (not a prime) was a good choice for the exponent to begin with." https://t.co/Y6UwnVQoEw -@vogon ahh, I kept the phone awake and the spurt didn't happen this time -@vogon favorite this tweet for science -@vogon I'd already lost it, but there really was a spurt if noise when you favorited it -@scott_r_harris but there was a very thin, very faint line right on the dot, in a sea of nothing. -@scott_r_harris just a plain RTL-SDR. Could actually see it better when I removed the external antenna -That is, until @vogon favorited a tweet, it woke up my phone, and the interference ruined my reception. -Tonight's excitement: I was briefly able to pick up the hydrogen line -@asyncsrc I got into radios years ago and have only recently had the time and resources to invest in getting into trouble ;) -@thegrugq that's my desk at home actually; you can tell because of the sleeping bag jammed in to keep the furniture steady. -Oooh this looks like so much fun http://t.co/615MsRgOZY I can't resist anything with the word "heterodyne" I mean really -@thegrugq @matthew_d_green I NEED SOME ENTERTAINMENT, MAN. -@ra6bit that's probably it. -@ra6bit http://t.co/Oa5jBAWK5S I remember it as being big enough to lay three people across, perhaps. -@ra6bit I just checked and apparently by 14 I meant 40' diameter. Not sure why "14" was lodged in my brain. -@ra6bit I got to play with the old analog 14' dish though... -@audpicc @himatako I doubt it was conscious. Trans-everything has a bit of a visibility problem, I think.... -@crash8668 I prefer to leave that to Pinkie Pie... I prefer to think of that event as someone making a tribute to my honor ;) -My life's ambition is some day @TheNRAO will let me steer the Green Bank telescope. You know, the big one http://t.co/KB1cD6DPoJ -@crash8668 heheh yeah there's a note about that on my webpage ;) got some very confused and angry tweets when that happened... -@crash8668 oh gods, they're still defaming me... ! -I'm having so much fun doing my slides for defcon. It's hard to not just spoiler the whole thing. -@iShark5060 any girl who ever held a controller knows all about this sadly. -@skynetbnet @gentilkiwi @msftsecurity @msftsecresponse uh yes you’re screwed but there are trivial steps to take to make it less so -@skynetbnet @gentilkiwi @msftsecurity @msftsecresponse you know about swap, right? :) -@nickm_tor I’m dropping some mad postulation yo -@pete_rood there’s definitely a 9 in hexadecimal :) -Heck I’ll straight-up hypothesize P9 was meant to be Twitter. -So there’s P1 through P8 and then Apple is PA? Come on why are they so special. Or did a P9 get dropped? -@oh_rodr it would imply a certain amount of infrastructure… -RT @m1sp_ebooks: Gzip your friends! -New prism slides, finally. Note that some data types are called real-time. http://t.co/7FGdQ2c55w -@skynetbnet @gentilkiwi @msftsecurity @msftsecresponse it’s considered inferior to not doing that, for forensics reasons. -@pborenstein “we help people find mistakes in their computer programs” -RT @mike_br: what happens if i press No http://t.co/vqcvgjWbTz -@chort0 last time I had one take so long it was waiting for network boot -RT @gentilkiwi: Oups, @msftsecurity @msftsecresponse did you forget to use security in Windows 8.1 preview ? - http://t.co/8N6JflPX6z http:… -RT @DrPizza: Send someone DM, snigger quietly to yourself with the knowledge that they'll be marking the damn thing as read for weeks to co… -A man logs in as his wife’s username in a video game http://t.co/wFuiTXvnqe -I’d like to see my America argue it tapped the European Union offices because of their suspected terrorist associations -@Paul_Rout @linkshund @0x17h I dunno, where do landlords live? -# 351123131559182338 -I thought defining my job to my grandparents was hard... then an eight-year-old asked -I'm talking to an 8yo. "My brother is a bad influence. He's in jail... and he was late to our grandmother's funeral." -@rder0 however it says they MAY store it if they want, not they do store all of it -@rder0 they don't deny that the leaked document saying they are allowed to do so is real -Soooo.... I have a problem. I don't think I can get through my Defcon presentation without using the word "dongle." -@vogon do YOU have a toddler too? -A website selling milk just demanded to know my age before letting me in http://t.co/5lLCoDboRw -@tangenteroja they're fairly evil, but this is prebottled stuff at the grocery store, like bottled soda. It costs a lot less. -@Myriachan haven't installed windows 8.1 actually! Though really, heh... -Did you know Google Docs lets you use animated gifs for slide backgrounds? ;) -@WhiteMageSlave yeah go to the emergency room if you can -@WhiteMageSlave whaaaaaaaat what broke this time D: -Currently scouring the danboorus, the konachans and the pixivs for the finest in radio-related sickeningly cute pictures -@elad3 there's no chocolate in this, they also make a mocha flavor, I just mean, this is milk + flavor + sugar (the flavor being coffee) -@0x17h but my true blue original apple one (the one that isn't frayed anyway) is teh missing -@0x17h I hesitate to buy the generic ones because they reportedly have a very high flake-out rate (got an Amazon Basics one) -@maddashdan311 the gas stations mark them up... if you get them in packs at a grocery store they're about $1.60 -@devuberoi I will never survive in India then :( -@hokazenoflames ript one-day sale... I did link on that day... sorry :< -@argonblue @nelhage *contemplates taste* definitely a colloid. -(It's not coffee. It's like chocolate milk, except with coffee. And it costs the same as a bottled soda around here.) -@DrPizza if you like chocolate milk you'll probably like it. -@DrPizza I've been hooked on them for a few years now. But I only really like the plain coffee flavor. -I don't have a problem, I have a hobby http://t.co/nDRj5h5KCN -@RSWestmoreland sounds like they did, but the bieber escaped. -@WhiteMageSlave MOM THERE'S NO "M" IN HEXADECIMAL well okay there is in the word "hexadecimal" itself BUT STILL -@WhiteMageSlave what. -@matthew_d_green what a delightful young man he's become. -LOST: one lightning cable. Not frayed. White. REWARD: Less than it costs to get a new freaking lightning cable -@elomatreb but we don't have problems nearly as schadenfreude (and it's even in Germany) -How did I not hear that Germany confiscated a living monkey from Justin Bieber http://t.co/AaYuUZxeZq -@apiary looks like your kind of fashion... http://t.co/F3SV1rDSLk -@TeamAndIRC @pof if they have some public system equivalent to CVEs but with different numbers, that's good enough for my question I guess. -@TeamAndIRC @pof but my original question was where are the CVEs, which are public. -@TeamAndIRC @pof well what good is that? -@TeamAndIRC @pof okay, where can I find it? -@pof so I heard, and I was looking to see if anyone could find a contradiction. -Adding Grenada to the list of places where almost everything I say is illegal. http://t.co/tsy6ARDpVF -@securityd0g just searched on Amazon for wifi dish antenna -@securityd0g the generic wifi USB adapter which unexpectedly came with a copy of wifi password crackers :) -Finally got the thing apart, and found the MAC (overturned) literally taped to the processor. http://t.co/xoVabZ3a7C -@grumpybozo @geekable @joncallas oh I don’t think he’s an enemy of mine, I pick on the wording of things good friends say too :p -Me: “There’s no screws…” @codeferret_ : *peels off rubber footpad* Me: “Well don’t I feel silly” -I have a shirt. I am pleased. Yes, that halo effect follows me everywhere I walk. http://t.co/NWt11hINbj -@Packetknife @thegrugq I believe the word for what just ran through my head is “guffaw” -@OSVDB @_grimhacker I’ll take being told there’s known RCE (and not told the details) over being left in blissful ignorance any day. -RT @thegrugq: Sorry people, there are no terrorists who were a credible threat who used Skype. That was not the comms tradecraft of any kno… -The “antenna” sticking out of my new wifi adapter is a pure plastic cone. The real antenna is a metal disc it covers. -I’m on a scavenger hunt. I need a CVE that was filed for Android (incl. Google official apps I guess) that was originally reported by Google -@jack_daniel they raise prices on things you’ve bought before -@geekable @joncallas so it’s a PR disclosure filled with PR words that actively mislead, buried somewhere so they can say they disclosed -@geekable @joncallas it’s on their blog. Though it is a blog that looks brand new and doesn’t show up when I google “silent circle blog” -RT @hdmoore: Dear $vendor, if you place your passwd, shadow, and ssh keys in a read-only location of your firmware, you are going to have a… -@geekable @joncallas they included one, but it was actively misleading. -@geekable @joncallas this isn’t a virtual pet pony website, they sell security, probably mostly to people naive about it. -@thegrugq @haroonmeer @rantyben oh, so you’ve hacked my local vote and removed me, then? -@haroonmeer @rantyben there are at least a few of us in America who mean to stand for you -RT @haroonmeer: Why the reactions to NSA snooping make us "foreigners" sad pandas: https://t.co/Cnb9T5Hj2w (tl;dr: because it reminds us we… -@eevee hi Anise ! -@mdowd yeah, I know, with all respect to you, I am not happy with Silent Circle’s disclosure process. -@geekable @joncallas as it sweeps under the rug that 0days can and do enjoy long periods of silent (*cough*) exploitation -@geekable @joncallas I don’t accept misleading statements implying the first person to disclose the bug was necessarily the first to find it -Further more how can you say no one noticed the patch on GitHub, I myself was linking it like crazy @Silent_Circle -Hold the HECK up. You can’t say @mdowd was the first to find these bugs. You just can’t SAY that, @Silent_Circle http://t.co/Tc6XPDRpQf -@bobpoekert more bigger expensive ones ? -@Niki7a well now that you’ve gone and mentioned it, I need one -@bobpoekert not sure, perhaps they are a loss leader or whatever you call it -@ErrataRob @savagejen it’s not like our government tried to drive any civil rights leaders to suicide or anything -@bobpoekert err you get a terabyte included -Just noticed that my hosting provider http://t.co/jOyhKoqpc3 takes bitcoin... -Let's Play Bootleg Pokemon: Don't Do Dangerous. http://t.co/5PN7k5J46y -@MalwareJake Stone cold sober!!!! I can't handle even alcoholic cough syrup -@joshuajuran and had pulled it in under 8 minutes and made a tool to fix anyone up who got burned in that 8 minutes -@joshuajuran thought prompted by remembering how Malwarebytes accidentally shipped a bad update which flagged Windows as a virus -Living wild on a Friday night, updating Windows on battery power -@G13net ...maaaaaayhaps. -@mendel @hypatiadotca it was declared a point of historic interest, can’t cut it down without a permit -@StackSmashing don’t. That text was not written by any teen alive or dead. -@rbf_ one at my university too ;) -Do you speak teen? http://t.co/jM42srrI1E dedicated to @pborenstein -@Kufat you sneak cheat ! -Oh, also, there were no computers at my high school. Except in the principal’s office. It ran Windows 95. In 2006. -@Kufat it was explicitly forbidden at my school except for final drafts of, I think maybe five pages or more. And only final drafts. -@pborenstein well the cure to that is to post on nerd forums and get flame shamed -Teachers always act like every boss will be out to fire you for the slightest perceived offense. Never seen a teacher get fired though… -@geekable because you get fired when your emails use a different font size -At my high school (03 to 06) turning in homework typewritten was not allowed, I get the impression that has already changed most places -@deathtolamo not at all, this was back when children hand-wrote their essays ;) -I had the same English teacher for four years. A year in, I started writing a fake name on all my papers. Took her two years to notice. -@jack_daniel every now and then someone checks me on fav star and retweets my all time hits from eons ago -@my0b it’s a chastisement. I’m none too chuffed with Silent Circle. -@chadwik66 I stand around waiting for him to pick new headphones -@chadwik66 I want you to know I own one pair of shoes and one pair of boots. -“I see you just finished a novel about medieval warfare. Would you like some harlequin romance?” Amazon’s ad engine is a bit thick. -@kaepora @RiptideTempora it’s true, it’s me, I’m prism. All of it -@RiptideTempora @kaepora dang can’t believe I slipped up -@kaepora someone’s browsing imgur -RT @mattcutts: If you want to get *all* your data out of Google Reader (every read item, like, etc.), a former Googler wrote a tool: http:/… -# 350764191210143744 -@kaepora or just acting up for attention -@qole @StevenLevy I’m not sure if you’re kidding or you just got back from an expedition to Antarctica -Visual Studio to support subset of C99 http://t.co/A8ncGaIBbm As in 1999 -@ebcube her Brawl trophy describes her as intermediate gender; that’s probably her newest game aside from Mario Party 217 and a half -RT @StevenLevy: Yahoo shutting down Alta Vista Like getting invitation to funeral of someone who you thought died ten years ago. http://t.… -RT @hchamp: #Prop8 plaintiffs Kristin Perry and Sandra Stier at City Hall: https://t.co/KU01w9jiMQ #LoveIsLove -And yes, it is actually canon that Birdo from Super Mario is genderqueer. -RT @inversephase: In light of all of the recent (and constant) trans issues online, Birdo would like to remind you: http://t.co/bysX6q5fUR -@ScottMadin @0x17h http://t.co/aSKWFUsxQ6 -@0x17h this is the sad fate of the technology serfs -@0x17h I would, once its interface is no longer beta and its OS is no longer two major versions behind -@0x17h well, unless they cancel it outright, I think everyone’s taking it as a given that the mass-produced one will be a few hundred $ -@0x17h Glass doesn’t cost $1500. Getting a Glass from the first small production run costs $1500. -@ameaijou I don’t think I’m qualified to be coauthor! Never even written kernel code for OSX. Probably qualified to beta read it though… -RT @DanaDanger: The first post-Prop 8 same-sex marriage is taking place in twenty minutes at SF City Hall! -@ameaijou help with what exactly? -@ameaijou I haven’t blocked you have I? Even after you admitted to working on php :p -TLS forward secrecy: like everything else, easier to screw up than you think. https://t.co/KTX9rfLUjn -RT @thierryzoller: WOW - Vendor asking for weaponised exploit based on previously patched vuln. Forgets to remove mail trail from .MIL aski… -RT @steveklabnik: Neo-nazis chased me down the street for taking this photo. The Golden Dawn is a real problem, they… http://t.co/36oEbGRf… -RT @adamcecc: Young Hacker: I'm going to break RSA! Hacker: Crypto Math is hard. Old Hacker: I broke every crypto I've ever looked at sans … -@loligurolove or Kickstarter and its recent PR rather than technical colossal screwup -@loligurolove Malwarebytes prompted the thought, they pushed a bad update that flagged Windows, for eight minutes. -I feel safest using products that have had exactly one colossal screwup and handled it well -RT @thegrugq: @WeldPond @tufts_cs_mchow @violetblue move fast and break things ... apparently applies to trust too. -RT @aaronportnoy: The Chicago Blackhawks bought a full page in today's Boston Globe: http://t.co/slsQ8JoH1T -How the heck do you “accidentally” upload and store the phone numbers of people not even logged in? http://t.co/0RpmnW7nce -RT @hemantmehta: This is as good a time as any to remind everyone to export their Google Reader feeds *somewhere* because they’ll be gone a… -@hypatiadotca but… the one that looks like me dies :( -RT @heyadam: Think your app is intuitive? Set the OS language to Chinese and hand it to someone. -RT @Silent_Circle: The updated version of Silent Phone has been completed and is available on Google Play & the Apple Store. Please update … -@axiomfinity and I feel free to use a fatal example given the gravity with which Silent Circle (which prompted the remark) promotes itself -@axiomfinity what’s the difference between a car wasting fuel and the brakes locking up randomly and killing you? -@ternus you’re no fun at all -Have I ever mentioned how much I hate it when security patches are marked as “bug fixes” without comment? -RT @kaepora: Incredible — this is the update log for the @Silent_Circle update which actually fixes many critical vulnerabilities: http://t… -Abadidea 101: If I won't stop talking to you, it's not because I'm an informant. I probably just have a huge nerd crush on you -@bhelyer there are few people he bends his ear to, and they had best go bend it a bit harder. -A proud man injures a small country’s pride. http://t.co/mJgw0Jbk53 -@Kufat see also me doing the firebrand thing re: silent circle -@Kufat the theoretical math is sound but a bug is a bug is a bug is a bug is exploitable. -@welshypie interestingly it’d be the reverse of the story: the king would do what his evil advisors tell him -RT @a_greenberg: Here's What It Looks Like When Two Hacker FBI Informants Try To Inform On Each Other http://t.co/wOT8jsbCht -Real-world cryptography is just as much about software engineering as about the math. If not more so. -@info_dox well they all get EIP. It’s just a question of sorting ones that only get EIP when the user could get it anyway. -@kirkmurphy @Silent_Circle which is, in my opinion, a breach of responsible disclosure practices -@kirkmurphy @Silent_Circle there has been a patch for a serious bug in third-party code they use, but they haven’t announced that afaict -RT @MarkKriegsman: In C, an uninitialized "bool" can be BOTH true AND false at the same time: http://t.co/lzgVNAZTNx Yes, really. -@TXVB it’s probably already been pushed, but that wasn’t my complaint. -Since I just read Game of Thrones, Sansa pleading for her father’s life is fresh in my mind, I say for no reason http://t.co/83t6FtdFlg -@ladykayaker @AnonymousIRC @Silent_Circle that’s public knowledge to begin with for anyone who knows how to deal with binaries -#ff @CyberSquirrel1 not a week goes by without an assault on our infrastructure from the furry terrorist menace -@WhiteMageSlave probably. I didn't. -RT @arlenarlenarlen: No really guys, ball chain is only $50/km. http://t.co/QIlUhGkbTC context https://t.co/9rsTmFemUE and http://t.co/mYej… -@ioerror it looks like they’ve been taking the “silent” approach to bug fixing, instead of keeping customers informed where the risk stands. -RT @rogueclown: this is wonderful: Trans 101, Up Goer Five style. http://t.co/iIVvOh7y5h -@shmoosr @Silent_Circle if so that’s super great but I’m a fan if loud and clear disclosure :) -@MarkKriegsman the unlock fairy flitted by, hesitated, felt guilty, and didn’t wreck anything -Though I realize @Silent_Circle has no more power than anyone else to get critical fixes through the bog of the Apple App Store Review. -@shmoosr @Silent_Circle this one https://t.co/VfyGpBhizx -@thegrugq @Silent_Circle @mdowd here we go. https://t.co/VfyGpBhizx I know how to reverse from that… -@thegrugq @Silent_Circle @mdowd doesn’t matter, the patch is on github -I note @Silent_Circle hasn’t mentioned on its twitter feed that serious security bugs have been filed against a library it depends on -Tales of ten years ago: first time my baby brother played Morrowind, he ate the mushrooms called Bungler’s Bane. He was a bungler I guess -@miuaf http://t.co/IuaGms1k7A I reckon -And no, my first job wasn’t an abusive holiday hater, I worked at a summer boarding school -At my first job we didn’t have the 4th of July off. At this job I get that AND the Fifth! To mourn for the 4th and 5th amendments, I guess -RT @rgov: Every time I visit Amazon I get put in a different A/B test group and the page looks significantly different. -@thegrugq dunno how I missed this last night… I’ll go drag the truth of it out of my Akamai friends. Hey @ternus is this so -Fairy conga line http://t.co/Tf96BIxIL0 -@tapbot_paul that’s a pretty good random dungeon generation algorithm -@doismellburning @finn copy-paste it to notepad and find out :) -@thequux the infosec industry is Ethical Bad Guys: The Movie -@hypatiadotca unfortunately it was run on a deliberately old copy, it’s not 0day ;( -Oh snap, Mayhem found an exploitable bug in iwconfig in 1.9 seconds -@nickdepetrillo @fredowsley *leans over cubicle wall* *highest of fives* -I should write back to the person offering lists of database customers, and ask for the list of mongodb users, as I must send my condolences -I apparently have no head for corporate politics. One of those “stubborn in their honor” types who gets beheaded. Wait, no, wrong book. -RT @timothypmurphy: How should you talk to your kid about the New Yorker cover? Probably something like, "Damn, you read the New Yorker? Yo… -@erwinkooi Thanks for being the first follower over nine thousand ;) -The research work on MAYHEM looks great and useful. (Just remember 1200 EIP hijacks != 1200 real-world attack vectors.) -RT @apiary: it is a bad sign when I ask someone to clear their cache and they have no idea what I'm talking about. -@sec_reactions @robertauger but… she wins that match, as I recall! -RT @41414141: "@joernchen: .@41414141 they just cannot read your preso: http://t.co/zvOHKSajuF" <- epic CiscOMFG vuln handling: just block … -Red panda baby red panda http://t.co/xjYkJZjnp6 -I just got an email at my work address asking if I’d like to buy lists of people who use certain databases. Wat -@i0n1c @wimremes potato is a vegetable! We’re fierce good win potatoes. -RT @bSr43: Hopper 2.7.16 is available (and submitted to the Mac App Store) http://t.co/eMtLbIBb4r -@wimremes @thegrugq he spells bad. “I don’t know what a grugq is, but it must be something really cool, because I have a man-crush on one” -"Herald of Arms Extraordinary" I'm petitioning to have my job title changed to "Researcher Extraordinary" immediately -@puellavulnerata it turned out to be transient -Category:Articles I Am Glad Will Never Mention My Name http://t.co/rjayfxjJ5R -@m1sp "let me look up the list of typical court positions." http://t.co/EBbjgDR2KQ -@dan_crowley and womansplaining will be a good word for the coming feminist dystopia. :) -@dan_crowley and anyway patriarchynormalizationofprivilegesplained is a mouthful. -@dan_crowley I never said it has nothing to do with being a man! Being a man is necessary but not sufficient to be a mansplainer -@dan_crowley and, gods forgive me, I’ve probably whitesplained to someone at some point. -@dan_crowley it is something women say to other women, who nod and understand and commiserate. -@dan_crowley The word “mansplaining” is not used as a weapon. It can’t be. It bounces off, meaningless to them. -@dan_crowley mansplaining is not about being a man! It is about being a man noted for talking down to women. -@dan_crowley they both are meant to imply there’s something shameful about being a woman or being gay. -@dan_crowley because people who abuse privilege sometimes need a cold slap in the face to remember they have it. -@dan_crowley whitesplaining turns up hits on google and of course on tumblr… speaking only for myself, I’d use the word readily. -@dan_crowley it is the best word I know for that feeling when a man looks down his nose when I open my mouth. Certain men. Never all. -@dan_crowley it’s of privileged origin. If we gave all power to redheads, I’d be a brownie subjected to gingersplaining no doubt. -@chriseng @ioerror @kylemaxwell As I recall, you were there too, though you missed out on some good pizza… -@dan_crowley it is about power balance. -@dan_crowley When there comes a time when a womanly congress tells a man he shall not have a vasectomy for his own good, womansplainers all. -@ioerror @kylemaxwell you coming to Vegas? Wouldn’t want my suspicion flag to expire for lack of suspicious activity. -RT @TriciaLockwood: My body is an internet ... the government doesn't understand how it works -RT @csoghoian: When US gov officials say "we are not collecting X type of data under this program" they just mean that surveillance program… -RT @xor: The newest member of @EFF's board takes no prisoners, so there is never a dilemma. https://t.co/2FKruHIpQ2 http://t.co/sVpKjQ0tam -@JackLScanlan I’m not sorry neither -@JackLScanlan every meme repeated is a prayer fair to the ears of our atheist god, Dawkins -@mikesacco @JackLScanlan Jack (and stranger), I’m going to fight you on this. There is not something inherently wrong with turns of phrase. -@oh_rodr of course they are. And it’s no coincidence the only American citizens they’ve been sent against are brown. -RT @starsandrobots: “Asking a professor whether you should do a PhD is inquiring with a lottery winner on whether you should buy a ticket.”… -@dan_crowley and it’s slangy, but I’m not sure what better way to term the phenomenon of certain men telling women what women think. -@dan_crowley a man saying something does not make him a mansplainer; it is not an insult that casts a shadow over the whole gender. -@CyborgCode with github, they have free utilities for Windows and OSX, and there are other git clients for Linux, to manage the codebase -@CyborgCode Programming, and that's as broad a question as asking how to learn art. -@allicient @elwoz it was never built with any such concepts. It was built with one concept: receive get or post. Spit out text in reply. -@Izkda it's a single syllable, but I'm told it means eye or snow, the latter probably being what's triggering the weather card. -RE: the Icelandic WL defector: don't put heavy moral burdens on the shoulders of teens. They need time to think and grow in a safe role. -# 350402743120326656 -Bing Translator super helpful. http://t.co/AfgNyxBD8Y -@IPvFletch I hate to ruin your pun and point out that’s hangul -I heard your client lacks unicode support >(눈‸눈)< good. -I found a new emoji 눈‸눈 -@hentaiphd @kivikakk says one who doesn’t need to fear mob violence -@pzmyers I’d much rather see them spend their tithes on factional infighting than outwards… -@elwoz concurrency: it’s definitely not the PHP way -RT @0xcharlie: Ugh, car hacking is real. I accidentally made myself crash into my garage today :(. http://t.co/NKeYeeIs7c -RT @matthew_d_green: Oh good, the ZRTPCPP bugs are in the Hello packet. The one ZRTP doesn't properly authenticate. -Here is the ZRTP patch — several classic easy-to-make C mistakes. https://t.co/VfyGpBhizx -“We decided to ninja-edit a public bug report even though THE PATCH IS ON GITHUB” https://t.co/xgcol2udu3 #helping #nothelping -@homakov I only like nerds. -@nrr that smile is because of the brain damage from the concussions -@puellavulnerata it is known that my email address has contacted the email addresses of anarchists, communists, and worse, Australians. -@cl_atlanta @tenfootfangs ah yes, Thomas Jefferson’s famous missive, Against Unions Mofte Gaye -RT @puellavulnerata: http://t.co/SjKEi12k3T Page 13: "Contact chaining and other metadata analysis do not qualify as 'interception' or 'sel… -@axiomsofchoice it’s not unreasonable for most people, but for some of us it’s completely unambiguous :) -@DarthNull it is in the style guide of the New Yorker, iirc, as they think it makes them high-bröw. -@kylemaxwell @ioerror @thegrugq oh of course. But I don’t think I’ve ever emailed him… only late-night twitter DMs… -@kylemaxwell okay, I did email @ioerror a bug report once, so sometimes one. -Regarding email collection: there is no doubt in my mind that I am two degrees of separation by mail away from Bad Guys Of Some Description. -@maxtch no actually… as I hear the apps I use are still crash-prone -Exactly as I assumed, they play games to maximize the amount of packets they snarf, not minimize. http://t.co/ZO0K5vHEHO -@profoundlypaige I pin the business cards of my favorite industry peers to my wall as proof they deign to speak with me :p -RT @puellavulnerata: http://t.co/aEIBiQUUKu Pg. 10, note 4: "...at NSA's request, a vendor diverted a shipment of servers intended for othe… -@DrinkTillKaren and I'm sure maybe not every clinic in Texas is wholly up to those standards! But it's used as an excuse. -@DrinkTillKaren that is a general healthcare concern and we have legions of regulators to keep common sanitation from even being a choice. -RT @thegrugq: “@mdowd: @moxie @thegrugq "uses java...so is not vulnerable” << the first time these words have ever been spoken! -@singawhore @GovernorPerry I was raised in the same faith he was. Am I arrogant to suppose I turned out better? :) -@matthew_d_green see you there at definitely not a conference -@Samurai336 and that is their greatest sin, that they presume freedom of religion to mean freedom to enforce theirs. -Also @GovernorPerry by his own words wants to “protect women” from their own healthcare choices, as if they’re small children. -I’m disgusted by the way @GovernorPerry shamelessly promotes his personal religion as if it’s the decider of the law. -@GovernorPerry protect women from what, their own choices? -@CyborgCode I'm not really sure what you're asking; naming the file which explains how to install "README" is just a tradition. -#siblings http://t.co/Vk50qRTJRK -@JackLScanlan I'm told this should be tweeted at one Jack. I assume you were meant. http://t.co/QiK3OBPSx1 -@vathpela yup, and they failed me by the tiniest sliver. Good thing too, what was I thinkiing? -@MalwareJake 'merica -Every few months, I get an email asking me to apply to be an information services specialist for the Foreign Service. It's cute. -Gods forgive me for indulging in wikileaks drama, but this is all kinds of messed up. http://t.co/pZjf9zWLLV -@spacerog it’s a big leap of faith, but most in fact do not automatically post without user interaction -@philpem yes but the key point is that one definitely shouldn’t assume the crypto-phones are totally safe. -RT @mdowd: Would like to thank @Silent_Circle for turning around fixes for these bugs really quickly. Great job, guys! -@mdowd I wanna see let me see I won’t hack no phones sir -Mr. @mdowd has some serious vulns in crypto-phones. You know, those ones we’re all using to avoid the NSA. http://t.co/7jp4Qo6J7d -RT @photonstorm: My 7 year old found a box of 3.5" disks in my office, he said (and I quote) "are they like a collecting card game from Vic… -@DavidNakamura @ioerror 30-year-old, your grace. -Of all the things one could say to defend the NSA, you say it’s a job creator? https://t.co/B2nOmvwrt1 (congressman) -@Call_Me_Dutch never seen a politician say so plainly he will put up with anything for money. -@m1sp It is his very first meeting with Our Lady of Overreaction. -@m1sp I forgot what I originally asked for, and assumed you meant the European Space Agency -RT @MarkKriegsman: @Veracode goes black tie at the E&Y Entrepreneur of The Year awards. We clean up nice, don't we! http://t.co/iBKFDrdKn6 -RT @mccv: New interview question: "what's your favorite build system?" Correct answers: 1) Rage face 2) None of them 3) Literal table flip -@themarkcaudill @puellavulnerata you know, like squirrel marriage and stuff -RT @puellavulnerata: Oh, now that's taking stupid to a whole new level: https://t.co/MRa1DTywfq -@BryanJFischer I have read many willfully ignorant things today. The throne belongs to you. -@m1sp he’s not so tough without a pterosaur to back him up http://t.co/HWnD6anUKZ -RT @stevebenen: 3 hours ago: Rick Perry declares, "Texans value life." 1/2 hour ago: Texas carries out its 500th execution since 1982 -@dakami well that was cute -Heck of a Facebook bug. A moment of silence for a merciful death. http://t.co/utewTpZBFf -@dakami I have a word for that… -RT @SCOTUS_Scalia: Yesterday I voted to overturn a legislative body. Today I said it was offensive for a court to do so. The difference is … -@eevee sorry, please adjust your decoder for sarcasm and try again -@rgov they are steadily slipping more into the defaults to, I don’t know, drive engagement -@eevee that makes them sooooo much less creepy. Thanks. -@jduck even Apple Maps can find him http://t.co/HqUGH1F3Nb -@ioerror @puellavulnerata who’s invited? -# 350040625170751488 -@_larry0 knowing where you work, that gives me The Worries. -RT @cjcmichel: And here we go again. RT @ArletteSaenz: Rick Perry just called a special session, starts July 1st -RT @dangoodin001: Can Apple read your iMessages? Ars deciphers “end-to-end” crypto claims http://t.co/JJMrjf41hF -@jonelf she is a character in my novel, not known for being emotionally balanced. -@chort0 ah, sorry! The mail came. I was busy writing the first Scathing Review of Malware, but I intend to write several. -@fdiesch The Lord never looked so ladylike, I’d reckon… -Look look I drew something! … why are you all looking at me like that? http://t.co/auabk3SwkF -@ternus fair enough, but city folk are notorious for being too scared of horses to go near them :) -RT @fivethirtyeight: By August, about 600m people worldwide will live in states/countries with gay marriage vs. about 300m a year ago. -@ternus you know you’re a city boy when you think that’s a problem folk don’t have no more. :p -I don’t know which mystery is greater: why my USB stick has a folder named gayporn, or why it only contains signing certificates -RT @vogon: @0xabad1dea a Halliburton always repays his debts -In a thousand years, they will speak of corporations as we do noble lineages. “The House of Sun crumbled, and became vassals of another” -RT @jgeorge: An article about HP admitting a backdoor in a product was interrupted by an ad. For HP security analysis software. http://t.co… -LEGALISTIC ARGLE BARGLE http://t.co/kH1UTugQwl -RT @chort0: When a few officials say "trust us with surveillance, we'll follow the rules" you should do no such thing. Official lie & cheat… -RT @chort0: The TX Senate's attempt to blatantly break the rules should be a good argument for why transparency is critical for legitimate … -@ternus I only pray to red pandas. -@Neostrategos he’s been on the record as believing gay marriage is fundamentally evil for many years. -Best fundie response I’ve gotten yet: I am, to my surprise, a goat worshipper. -@DanMudd @0x17h yeah, that’s me, I went to school to study science and ended up praying to goats. What are you smoking, friend? -I await Orson Scott Card’s brave assault on the White House to fight and die for the right to not look at two dudes holding hands -RT @ternus: “Any government that [legalizes gay marriage] is my mortal enemy. I will act to destroy that government & bring it down”-Orson … -The future: Microsoft advertises 3D printer drivers shipping with the operating system. https://t.co/PkJ7KpasMN -@DanMudd @0x17h naw, see, treating animals humanely is a “lib” thing, abusing their bodies is more what the other side prefers -@mirell Catholics in rich countries are left to their own rational devices for the most part. -I will not hesitate to tell fundamentalists that they preach a religion of hate. I came out of that darkness, I know it intimately. -@ternus Melissa Elliott does not QUOTE, as if her words could fail her. -@GovMikeHuckabee You seriously believe your prophet is upset that human beings embrace in love and freedom? He sounds hateful. -@MadAttorney @0x17h you mean that place that turned down the opportunity to rape Lot’s daughters at his suggestion? -@ternus when the smile is soft and the eyes are gentle and the words truthful but not harsh. -@VirginiaProdan @0x17h I’m sorry, nobody could hear your tribal god over the calls of living human beings for their rights -RT @chriseng: Can't figure out how to add this test case to the regression suite. #veracode (h/t @MarkKriegsman) http://t.co/9mi1OSKOLy -RT @ScottFilmCritic: Woman opposes gay marriage for religious reasons. Facebook friend explains why she probably shouldn't. #DOMA http://t.… -@wimremes good gods man how many languages do you tweet in -RT @neiltyson: Science literacy is less about what you know & more about how your brain is wired for asking questions. -Expired cert stolen from Opera, used to sign malware http://t.co/lz8V2dkxex this is why checking those dang dates matters -@m1sp hey, you can gay marry an American now and it will count. Just saying. -@CyberiAccela nope. -@bhelyer the engine loves me ! -// need to review what the point of this function is And that’s when I knew this code base had achieved sentience -@codeferret_ haha probably. -@BatesLine almost no-one is advocating for late-term abortions for any reason other than life-or-death medical emergency, afaik. -@m1sp emotional support request -@BatesLine you’re deliberately ignoring that such a thing is typically in fact illegal ? -@hirojin it's actually just variable names -Someday I should ask my static analysis elders what is this “Solaris” they refer to in old documentation. Sounds almost… familiar… -@m1sp @CyberiAccela it’s okay, money, and furniture, grows on trees. -@CyberiAccela @m1sp it’s not stealing if you’re human, it’s manifest destiny. -@BatesLine and probably ignoring that the womb carries out far more natural abortions, often before the woman knows, than clinics ever will. -@BatesLine of course, you’re ignoring that almost all abortions happen as early in the pregnancy as possible, no one WANTS to wait -@BatesLine yeah? http://t.co/HowUPvt6IO -*・゜゚・*:.。..。.:*・’(*゚▽゚*)’・*:.。. .。.:*・゜゚・* F A B U L O U S -@Tomi_Tapio the heck is wrong with their hands -RT @ginatrapani: Very good morning hugging my wife and daughter, celebrating our upgrade from second-class citizenship. -@DarthNull @WeldPond I bet Amazon’s east coast facility went down. -@WeldPond you were struck by lightning ? Sudden clarity. -RT @hypatiadotca: Technical term. MT @ryangrim: Scalia calls the DOMA majority opinion "legalistic argle-bargle". Srsly. I think there's sp… -@pusscat high five -I was wondering why my morning twitter log was so large today… no wonder heh -@BryanJFischer back to Philosophy 101 with you. https://t.co/44AfBN28Rj -RT @nonstampNSC: Congratulations to those who have overcome the Mormon church's obscene anti-gay campaign of 2008. #marriageEquality #prop8 -RT @wyethwire: One last time: Privilege means never having to wonder if your Constitutional rights are about to change in the next 30 minut… -RT @SCOTUSblog: DOMA is unconstitutional -@kaepora a curiously American thing to do, really. -@cs2501x so mostly I was wondering if advocating to make sure someone’s phone line is nonstop busy is incitement to a crime. -@cs2501x I was reading tweets saying to make sure the phones of the Texas governor never stop ringing today -@DrWhax ah good, it’s an idiom… it sounds a touch odd translated literally -@cs2501x these seem to both fall under computer laws, and phone laws are older and generally more peculiar to my understanding -RT @notch: I love getting called gay as an insult. In my head it's like calling people swimmers. I don't swim, but I kinda like the idea. S… -@DrWhax err is blue eyes an idiom I am unfamiliar with or are they referring to shared ethnicity ? -RT @djon3s: There's never been a better time to gift an old laptop with a Tor and an EFF sticker to a seat at a train station. -Re: harassment: if ten thousand people place one call each to a publicly disclosed telephone number, who could you charge? -RT @CecileRichards: The official vote was recorded at 12:03 a.m. Know why? Because of you. #StandWithWendy #SB5 #TXLege -Are there actually any laws in America against manual telephone DDoS ? -RT @aurosan: Everyone, say hello to the Texas GOP: http://t.co/t037uUKDMp -RT @vogon: if nothing else my twitter feed is making me glad that I wasn't the only college student who tried to change timestamps to evade… -One of the villains of my novel is a cute, sweet girl easily provoked to sudden violence. No, I have no idea where I got the idea for her. -If you take my words too literally I will throw you off a bridge Metaphorically, one hopes -@m1sp I did not say anything about expertise dear Mispy ! -@rantyben I'm speaking of the sheer amount of free material and you know it. -If you have the internet and speak English, the only thing you may say after “I am ignorant on the subject” is “for five more minutes.” -@raudelmil there comes a point when base ignorance is a grown man’s danged own fault. -@BatesLine pick up a biology book, if they haven’t burned them all wherever you live -RT @MatthewKeysLive: Texas Senate changes website, now shows vote on SB5 happened before midnight on June 25 - http://t.co/YwKA6xKKSC -RT @MatthewKeysLive: Texas Senate website shows vote on anti-abortion bill SB5 took place on June 26 (after midnight) - http://t.co/KahMSwy… -@thegrugq it is always heartbreaking, it is not ever anything someone wants to do. -@amanicdroid @BatesLine He mansplained so hard that the Men’s Rights redditors just all fell pregnant. -@thegrugq Texas is a big place. Not everyone is crazy. And I understand that everything is illegal in Thailand. -Check out this guy’s timeline. @BatesLine Not hesitating to call him out as a privileged little festering wound. -@BatesLine Or mayhaps because to every one of those people, this DESPERATELY MATTERED? Tantrums, indeed. -@BatesLine Do you suppose the tiers of that gallery were packed with throngs on a Tuesday night for sport? -@BatesLine What a majestic dismissal of the desperate fight to protect half of humanity from the dark elements of the other. -@snare “We have to adjourn at midnight, unless it ‘twar a woman who kept us up so late” -@L0sPengu1n0s I don’t doubt that someone vandalized a potted plant or something, but that’s rather besides the point. -RT @jltowns: Omg. Just for the record - in this moment, this is the information the CNN machine is giving us. http://t.co/YtBc5biqWG -RT @rare_basement: THIS SHIT HAPPENS TO WOMEN EVERY DAY. "JUMP THROUGH THESE IMPOSSIBLE HOOPS TO SUCCEED. OH YOU MADE IT? WELL YOU LOSE ANY… -RT @amanicdroid: Hey, @BarackObama, there is oil in Texas. Let's take democracy to them. -Am I to understand that people of my country are being arrested within the halls of a legislature for protesting an illegal vote? … Damn. -RT @doubleNNjen: More than 50 troopers arresting people in the gallery -RT @nikhilgoya_l: Image of state troops entering the gallery. http://t.co/7YvFLOJYmF #StandWithWendy -@m1sp he does not know of such things; after all, Ismyrn is NOT the Aspect, but one who could be, and this he knows. -RT @spacerog: RT @KimZetter: Vine video showing the crowd outside the Texas Senate gallery tonight - https://t.co/0XAY0E1bB9 <- Local TX ne… -Do these senators even know about live streaming -@m1sp plot! http://t.co/UuLZTmytXo -What news from the mark? http://t.co/VLjUGI792l -RT @dresdencodak: I think we're officially seeing #OccupySexism -RT @andykilgore: Welcome to Whose Legislature Is It Anyway where the rules are made up and the points of order don't matter #sb5 #standwith… -Tonight: about six billion people hear the word “germane” for the first, and last, time. -RT @chriseng: Occupation: "The LeBron James of filibustering" http://t.co/BLi1QZNBPL #StandWithWendy -@maradydd apparently it’s three strikes and you’re out or something -@vogon /me tosses you a hundred RTs Pocket change -@vogon “member since June” looks legit… “2012” -RT @tikva: BTW, "point of order" is my new safeword. -@wookiee guilt trip much -@wookiee :O -RT @Seraph1337: hi. Wendy Davis, whether you agree w/ her or not, is a colossal badass with nerves of steel for doing this AFTER her office… -RT @rare_basement: hey non-americans confused about filibusters: dont worry most of us dont fully understand them either -@_wirepair he’s dead, man. They need to move on. -RT @ginatrapani: Yo @twitter, work with @falcon_android, will you? Your arbitrary token limit is killing a passionate community & dev who l… -@_wirepair @rantyben @thegrugq until they let him through customs * -@thegrugq @_wirepair but but but America has so many wonderful things! Like… like me ! -@m1sp how many days of school are there from kindergarten through third grade ? -@m1sp tonight in Abadidea Draws Dresses: Wow Abadidea Did You Know Dresses That Cover Shoulders Are An Option -RT @JasonAller: #standwithwendy in Texas how do legislators in wheelchairs filibuster? Do they have to stand? -@MalwareJake “cracks passwords” is a heck of a buzzword. -I don’t ever answer unexpected calls from mystery numbers on their first call… but 000-0000 is all kinds of special. http://t.co/LzvyoUEfPk -RT @natashenka: @0xabad1dea It was my clever ploy to get everyone to clone the entire repo ;) Slides on there own are here http://t.co/1kHk… -@m1sp never do anything with only one purpose in mind! If nothing else, you can always complicate the plot. -@me_irl as a larper I will respect their fantasy -In which a newspaper refers to killing combatants as hunting big game. http://t.co/TiApcBSicI -@m1sp I have determined that I need a short prologue starring Young Rashk. -@natashenka error: blob is too big :( -Dear cryptography community xoxo I think you are all swell also all crazy -@tapbot_paul @MikeBeas Sorry I blew my lid. -@tapbot_paul @MikeBeas precisely. -@MikeBeas @tapbot_paul and it is all fundamentally the issue of the living human whose body and health is compromised. -@MikeBeas @tapbot_paul it’s not a baby, and the point of regulation is to keep abortions on the side of the line where it’s not a baby -@MikeBeas @tapbot_paul you ASK for their kidney. There is no reason pregnancy should be different. Bodily compromise by consent. -@MikeBeas @tapbot_paul You would never tackle the nearest person and harvest their kidney against their will, for someone who needs one -@MikeBeas @tapbot_paul that’s not what I said. But you know what? Listen to this, please: -@tapbot_paul @MikeBeas I take that ground too ? -@MikeBeas @tapbot_paul of course, this is another pointless argument with someone who has never had to worry of pregnancy -@MikeBeas @tapbot_paul damn my conscience, I would probably be too queasy to have an abortion. Damn lives ruined for religious pretension. -@MikeBeas @tapbot_paul the idea that there is no difference from conception to birth is purely a notion of particular religions. -@MikeBeas @tapbot_paul an egg is not a bird. Go study developmental biology. I did. Learned a heck of a lot. -@MikeBeas @tapbot_paul gfdi nobody is killing babies -@spacerog @th3j35t3r whence the respect? I’ve never known him to have any reaction to anything but DDoS. -@MikeBeas @tapbot_paul the strawmanness of this has left me twitchy… -@brennantom @c7five the 1337 motley fool, naming someone narcissist? Takes one to know one. But sir your geolocation is classy. -@m1sp dangit mispy NO TIME TRAVEL -@mikeestee @starsandrobots @marshray oh my gods. This is going in my meme folder. -RT @johl: If this was a movie, the plot twist would be that Snowden's encrypted security file is already in the Bitcoin blockchain, in Base… -RT @ZoeQuinnzel: I hate it when games tell me to press x because I panic for a split second because of this http://t.co/BhTVGAXSE8 -RT @repjustinamash: Congress has highest security clearance level for classified information. Why, then, are most of us denied access to FI… -RT @MatthewKeysLive: This is the NSA 'fact sheet' that was pulled earlier today from the NSA's website - http://t.co/Xa5znZSQum -RT @oiwan: HK Sec of Justice Rimsky Yuen explained the U.S did not specify the "J" in Edward J Snowden whether it is Joseph or James in the… -RT @deliciousbees: "Ask yourself: should such people be handed over to be imprisoned?" says president of country who imprisoned three women… -It seems somewhere along the way this PHP bot lost all instances of the string "." (including quotes) from the source file. -# 349675707259027459 -@0x17h *squint* RTL8187L ? -@0x17h http://t.co/mqxWSbBdjC -@asyncsrc because it's a hacking tools CD from China -It came with a CD, but my husband won't let me stick it in the only computer we have with a CD drive. -@abditum did your eyes glaze over? Read it, really read it... -So I bought a wifi dish antenna off Amazon. This is the box. Uh... http://t.co/cIHzK3rCYx -I'm writing my first professional review of a PHP bot. /* implicit variable creation is the devil's work, son */ -@WeldPond @QuantumG yeah, so... they do unplug :p -@grumpybozo I do most of my work on Not My Work Machine, but I needed it for something particular... -@jlwfnord I'll assume that's why IT hasn't fulfilled the ticket I filed like a whole 26 minutes ago yet then! :p -@mtheoryx it's not a bug, it's a well-known property. And no, there's no check-as-you-type. -@daviottenheimer I wouldn't call our local network particularly slow... -Someone please tell me the sensible reason that SMB can take over a minute to decide a share you typed in isn't valid -@skynetbnet *I* don't. It's the work machine... -RT @blowdart: ARS makes firefox cry. http://t.co/6m1Q1KMUWa -@grumpybozo what else would you call a thing where you type in a user name and password? -Let's take a look at this malicious PHP *click* *antivirus flips out and deletes it* Hmm. I'm going to hear from IT about this... -Well bless my bit9 sysadmin's prickly little heart, he done give me an "allow" button to use on these here DLLs and my build be workin'! -@dakami bet you I can make one that is -@jeremiahfelt thank you but no operators are free at this time -@cowtowncoder the last time I said the word “serbo-croatian” a Croatian threatened to murder me -“So… you’ve been letting us have electricity for months, we gave you money, the electricity is on and the money is missing?” “Yep!” -“Oh it’s a good thing you called because we apparently lost all your bill payments ever into the black void of despair” -@spacerog I keep getting to a live person and disconnected because all lines are full -“Account locked out” “I understand you have a billing question. Are you moving?” “Account password reset” “I understand you have a billing q -@nrr wh… wh… what. why -RT @ternus: “Akamai Adversarial Resilience: We *Can* Repel Firepower of that Magnitude” -Hello, I am an automated assistant. Please state what you want, given no hints as to preferred input, so I can wildly misinterpret it. -@savagejen @r4v5 @0x17h I’d recommend a tutor under the rules of homeschooling -@r4v5 the jawbreaker I posted earlier is not mine, I only have receivers. -@Wxcafe @codeferret_ the shocked one was a “bonus figure” iirc -RT @arstechnica: World of Warcraft mobile auctions closed after rash of account hijacks http://t.co/fCdI3prhBB by @dangoodin001 -@apiary write a python bot to attend meetings -@jennifurret I tend to make a reply to what they said and then throw in “also I prefer the other pronoun” just incidentally -@r4v5 nope, never. Move along. Nothing to see here. -@Wxcafe @codeferret_ bought a box set from… some Japanese import site I guess? -@DoktorJeep *whistles innocently* -Should have bought more shielding for those serial cables my little friend… http://t.co/ZFGgwXUePd -This one isn’t mine but it consented to photography http://t.co/mRaevZXjed -Expect this sort of thing in my slides http://t.co/5mjbjgEOTd -I’m telling Engineering to freeze the code base forever as soon as my build runs so I never have to see a bit-nine dialogue again. -RT @sec_reactions: How I feel trying to get non-technical people to care about PRISM - by @aloria http://t.co/Dwmhxc1eHX -@tapbot_paul and hence, the Recycle Bin was born ! -@shoebox aww, well, make the most of it ! -Ever notice that in video games, the elevator is ALWAYS on the floor you’re on? #nsa #conspiracy -@raudelmil I actually specifically tried to avoid sending too many me-toos on him cuz I didn't want to be blocked -I think the NSA guy finally blocked me. Well that was inevitable -@kyhwana it genuinely doesn’t occur to a lot of people that an https form loaded through an http container is a problem -@kyhwana eww. One rarely sees iframes at all anymore actually, except to load another site entirely. -@grumpybozo @cba well, Mr. Assange says he is not truly missing, and is safe, so I presume he wasn’t abducted. -@mikko the jester disgusts me. He wields his little sword against everyone he has the vaguest reason to dislike. -@ShadowTodd and no back pain. -@DrPizza I want you to know I’m sorry ere I fall asleep. -@psobot now find the waste and trim at at source level ;) -@DrPizza I’ll miss you. -@oh_rodr small numbers matter too. Though I can’t speak to this UCMJ thing. -RT @eevee: http://t.co/hEq33TMxKC oh, imagemagick. why are you "parsing" xml by hand. -@0x17h you know what else reminds me of schools in Soviet Russia that Texas doesn’t do? Math. -@bojanrajkovic @Edcrab_ and I think people who do not like the word do not like the theoretical future of “needing” to say so -@bojanrajkovic @Edcrab_ which it wasn’t. Cis is not an insult. I am cis. Most people are cis or mostly so. -@mdowd woohoo !! -RT @hypatiadotca: Today marks the 40th anniversary of the worst act of anti-LGBTQ terrorism in US history. Never forget. http://t.co/YBH0ji… -RT @grumpybozo: Who seriously believes that a jr. sysadmin who has demonstrated poor strategic planning was the first guy to walk TS data o… -RT @BenDoernberg: If #Snowden can cover his tracks to hide what documents he accessed, what stops other NSA agents from covering tracks of … -RT @xepheraux: the fact that people who own multiple homes and people who live without shelter exist in the same societal framework is awfu… -@ioerror @hellNbak_ I think, by and large, there are many legitimate security services to which they are just another rich customer -RT @Edcrab_: People mad because cis is an "invented word", unlike those pure naturally occurring words found inside fruit and in the format… -@oh_rodr wait… are you saying gays HAVE to join the military now to show their appreciation for it being a possibility on the table ? -@0x17h though somewhere in my heart I have sympathy for him, the correlation between Marxism and arson eludes me. -RT @trevortimm: Senators claim NSA is lying about privacy protections in its "fact sheet" but can't say how because it's classified. http:/… -RT @sinak: Hemingway killed himself while hounded by FBI. He seemed paranoid to friends but FOIA reveal truth: http://t.co/uUNyBzFXok via @… -@eevee but if I search for Hermione, it’s there. -@eevee example: I have a jpeg of Hermione that has a numerical filename and no textual metadata that says anything about Hermione at all -@eevee unless you’re not the only person with that file, and the aggregate metadata tells them a lot about it -RT @doingitwrong: I remember as a kid reading about the worst excesses of the collapsing Roman Empire and thinking “why didn’t anyone DO so… -RT @djrbliss: I'm so glad that Comcast decided for me that my cable modem password would be much better without special characters. -@WhiteMageSlave WORLD BUILD GET https://t.co/61HBSusPmR (optional: @ELLIOTTCABLE @ternus not optional: @m1sp ) -@thegrugq @hellNbak_ I was told today I'm a firebrand. Edgy. Mad bad and dangerous to know. I'm totally cool. -@RSWestmoreland would explain why no-one can find him... -oh boy oh boy I've been chosen to receive a "bahanas" cruise for two by SMS! -@thegrugq There are many terrible things to say about my educators. Being "Christian Scientists" is, blessedly, not one of them. -Me an' BFF @m1sp on some kind of digi-date http://t.co/1uIM6DIB2z -So I've read about six hundred pages of game of thrones so far and now I'm calling @m1sp my vassal -@jgeorge IDK, but @m1sp is here and I guess there's room for one more! (Actually I don't actually have cherries) -"I'm opening my gate and you can come get my cherries. In Animal Crossing, IN ANIMAL CROSSING" -# 349312542591549440 -It sounds like there was a mass glitch and a bunch of google sessions got terminated. Weird. -@xa329 @0xcharlie *my* DH? He is... how do you say... into physical security? And I don't mean locks. -@apiary all the radio signals you didn't know your electronics are giving off. -@xa329 @0xcharlie I don't even have a transmitter and HE'S FORMER NSA IT'S NOT FAIR -I was just kicked out of gmail and gdrive "for security purposes" and had to log back in. *ominous.wav* -@m1sp gtalk seems to have disavowed me -Writing protip: need a bunch of minor characters in a hurry? Recall one of your classes from school, no matter how vaguely, and run with it -@m1sp slathering random "historic" versions of SDL onto my drive, we arrive at Function 'TCOD_sys_read_file' not found in ... libtcod.dylib -@m1sp Library not loaded: @ executable_path/../Frameworks/libpng.framework/Versions/1.5.4/libpng And there it is- the problem I always had! -@0xcharlie there shall be NO MONKEYING ABOUT WITH THE WATERFALL DISPLAY. -@0xcharlie haha.jpg wait that means I have to wake up to be polite doesn't it -@TakoArishi that's why I RDP :p -@RSWestmoreland she's seen our customers' code a few times too many... -@JamesTCave HEY!!! LUKA WAS FACING THE OTHER WAY! PERIMETER COMPROMISE!!! -I only RDP into this machine, can you tell ? http://t.co/hw3Z1IsCK2 -@scriptmonkey_ @TriCorce @phillips321 spoiler: it's badg3r5 -@Viss @fbz in general, I do not remember the 90s. -@solak come on man you're not even European. -Youtube has me figured out I'm afraid. One of these things is not like the others. All of these things are spot on. http://t.co/EPr1MkYnXm -Allegedly my defcon talk is at 5:00 on Saturday. Good. I was afraid of having to wake up before 10! -Stocking up on non-black t-shirts with which to establish my alpha geekdom https://t.co/iYEsiQhyWh -@d_olex I'm making fun of him. Personally. :) -@amanicdroid somebody stop these maniacs ! Or not. Their loss… -RT @JimmyS: @0xabad1dea check the last anecdote out on page 1: exploitation of your owen code for great victory! http://t.co/LR5wXtBJU2 -@d_olex @rantyben he is indeed no stranger to wrong! -@amanicdroid and they specifically have the most serious threat model on earth. As much as I hate them I'm embarrassed. -@amanicdroid they're specifically using the terms root and super user. They specifically designed their own solution to this -I always wanted a set of rainbow books, but I’ve never even seen a single volume in person. Born too late, I guess ! -@marshray rainbow books… now there’s a blast from my shadowy origins past -@CelestialBeard @0x17h http://t.co/opCtaYYciX -Like seriously if it’s actually true that agencies can’t distinguish between different system admins’ actions the incompetency is… gross. -@amanicdroid no but you’d think knowledge of the existence of RBAC would be uniform among people managing NSA computers -@oh_rodr @chort0 well if you don’t spam me it’s all good -This just in: three-letter agencies don’t know about sudo, even though they developed SELinux? http://t.co/v6RlzFk4XL -@chort0 can you send a zip to [firstname].b.elliott at gmail ? (Do spammers even scrape for emails any more?) -@chort0 I want some unambiguously malicious code it is easy to make cruel fun of -RT @djrbliss: PS4 evidently runs a FreeBSD derivative. I guess there will finally be a place to use FreeBSD 0days besides Defcon CTF! -@eevee please tell @kufat and @codeferret_ I am officially not the world’s worst laptop purchasing maniac -RT @tinycartridge: dang gotta take advantage of this deal at Re-Tail http://t.co/W04kUyvuF6 -@WarOnPrivacy he seems to “defer to the wisdom” of his military and never challenge them on anything they want -But a nice innocent girl like me doesn’t know where to find malware source code ! Preferably stupid IRC bot ones or some such -@ntavish yes, either deliberately (intended to be customized) or by leaks. -@WarOnPrivacy @puellavulnerata I’m pretty sure half the reason we’re in this mess is that he can’t bear to handle warlike things himself -Perhaps, for good sport, I should do a “serious” code review of the source of some malware. -Here’s the complete emet slides btw. http://t.co/MvgecELJAU -@xa329 but… EBP didn’t actually change. -Okay, maybe I’m missing something but I don’t understand why a compiler would emit that. http://t.co/qZHE1JZNC3 -RT @ioerror: I'm glad to hear that Former Italian Prime Minister Silvio Berlusconi was found guilty. -RT @katespencer: This article on what's happening in Texas cannot be RTed enough: http://t.co/fIpNbjzPjs -You can has root on HP storage devices http://t.co/0K0dONtHD2 (via both /r/netsec and @TriCorce) -@L0sPengu1n0s the Netherlands, as that’s where all the cables join, so ping should be low ! -@Kufat /me points to 4chan and the beliebers -@L0sPengu1n0s high holy priestess -@Kufat the idea behind making the Internet its own country is to MAKE it an act of war silly -@sanguis3k “Send in… the BELIEBERS.” -My solution: 1) Make the internet its own country 2) All government surveillance is now an act of war 3) ??? But it will be great -RT @paradroid001: @0xabad1dea Can't hack a computer that has no free memory. Just allocate it *all*. -@jdiezlopez it’s probably effective against a large portion of wholly generic, non-customized payloads -This is the hackiest anti-hacking measure I could possibly imagine. #emet http://t.co/ZqYpCgZV6c -@kaepora I tried to tune in but it was so stuttery and over compressed I could hardly get a word -RT @savagejen: Julian Assange is answering questions about Snowden on RT: http://t.co/6SpHl15MAs "He is in a safe place and his spirits are… -@MrToph mine beeps again after 24 hours… -@wimremes oh come now, a man five thousand followers tall ought be used to it, however will you bear the pressure of nine thousand? -@Gadgetoid @dildog and that my friend is how religions are born ! #SacredKnee -RT @ioerror: When the question of the US pressure on #Ecuador came up - the #BBC feed ended - attempts to reload it "The broadcast has now … -RT @SnowdensSeat: I feel empty. -RT @halvarflake: Correction: US has approx. the same number of people with TS clearance (relative to population) as the Stasi had when the … -RT @dildog: Want to feel old? Every 12 year old was born AFTER the "All Your Base" meme got started. #forgreatjustice -RT @conor64: How could Snowden go to Cuba, a country where untried prisoners on hunger strikes are force fed with -- oh, wait, it's us doin… -@m1sp let us do the dance… the Dance of the Timezones -@m1sp are you chat-enabled today ? -@m1sp I’m at work ATM I guess in a bit I can dig out the air and install rvm on it -RT @offmessage: Big question of the day: If you lose a tooth while abroad does *your* tooth fairy come out or does the local one deliver? A… -This is an amazing tweet thread starring our friend Former NSA Guy. https://t.co/7G0zchXW00 (who apparently has very delicate ears) -Halfway through the book. I propose renaming it A Song of Deus Ex Direlupus -@marshray green? Well some of the nebulae are green… -@marshray I like it, but you can’t take it personally when someone is mean to you -Oh so Hodor really is a Pokemon I thought that was some kind of imgur meme #AbadideaReadsGameOfThrones -@jesster_king in game of thrones -@daveaitel @thegrugq posting safes on imgur — a risky gambit, which paid off. -RT @daveaitel: so I heard you guys like safes - Imgur http://t.co/HGrvrOl3XF -RT @drunkenpredator: Hong Kong? Moscow? And now Ecuador?! Just PICK ONE, dude! This is getting exhausting! #idonthaveajetengine -@thegrugq a keen anger flared in me, and I willed your destruction. It might be the book. -@thegrugq I will not take the grugq seriously I will not take the grugq seriously I will not -@thegrugq Harry Potter picks up a mature reading level around book four -@thegrugq mature reading level does not mean “mature” gratuitous content -@savagejen I’m pretty sure most large departments do by this point -@ELLIOTTCABLE feel free to sample my wares http://t.co/ciIHCvtYKu -@ELLIOTTCABLE in any case yes I write an awful lot, and it defies my guardians that I hold a paper of the sciences. -@WhiteMageSlave I will tell you why progress has slowed: I have been too happy -@WhiteMageSlave the written manuscript hasn’t gotten much longer, it’s all been my patented Manga Notes -@ELLIOTTCABLE you should probably follow my muse, @m1sp , to see the constant flurry of midnight exchanges on the matter -@ELLIOTTCABLE particularly of one of the older characters, and to establish the common people of one of the cultures. -@ELLIOTTCABLE the one which I am a hundred pages into, and in the process of inserting some more scenes for characterization -@ELLIOTTCABLE regardless my story is better -@WhiteMageSlave but as a writer I can guarantee he went back and added that remark after he decided it was a convenient plot device -@WhiteMageSlave nah his mom totally mentioned it a chapter or two before -@ELLIOTTCABLE I made a bad decision to read Game of Thrones -@ELLIOTTCABLE … hello? -@spacerog you’ll look ridiculous -# 348948206761156608 -@m1sp in any case, I intend for it to be clear that, once both of age, anyone of common taste would say that Houri has the Aspect of Hot. -@m1sp your next post was about… oh never mind, sure, some other child’s issues, I believe you :p -@rantyben yeah one of them already got thrown off a roof -@herodfel I’m reading game of thrones… -RT @Packetknife: You know - you're allowed to not like Snowden, Wikileaks, Manning, Greenwald, etc. etc. AND EXPECT BETTER FROM _YOUR_ GOVE… -@The1TrueSean throne of games or something like that -@ameaijou I did specifically ask if it was grooooooss -Why did none of you warn me about the twincest -@m1sp goodness am I the only writer who gives the youngest sister the good looks -@JackLScanlan that’s cheating unless you bring some to share … wait… that sounds really gross. -@jennifurret they all gave me an odd look. -@jennifurret last time I was in Vegas people kept asking me — because I look under 21 I guess — and I said truthfully it was business… -@stevelord I don’t watch TV, but it’s hard not to encounter the fandom on the internet. -RT @arstechnica: California sends a cease and desist order to the Bitcoin Foundation http://t.co/tkhxlr7O79 by @nathanmattise -@savagejen what? They bothered you ?! -@BettyMcGraw7 @sneakatdatavibe yes, but I’m pretty sure I can’t simply visit it. -Read the prologue. Wait, there are zombies in this story? I though it was just about knowing nothing, especially the location of dragons -@iHum4n no actually, and I really need to work on that… but I have a much longer fantasy story inching towards completion -@gangstahugs which isn’t necessarily wrong or bad but it does give one pause -@gangstahugs it’s disconcerting in that the tone of the ad suggests Amazon and my bank have a deal to target my bank’s customers 1/2 -Is it because I’m American I never knew one could simply fly to Cuba -@skynetbnet well, I use my bank card to buy things from Amazon, that might be an easier trail to follow :) -@pa28 @KateElliottSFF same last name — it’s a sign. -@RenaKunisaki yeah, you can pay the difference to opt out of the ads at any point -And no, I never jailbroke my Ad-Supported Kindle. It used to just futilely offer me romance novels and local massage parlors. -@RenaKunisaki the cheapest one does -Considering that this is my actual bank, seeing this pop up on Kindle is a little disconcerting http://t.co/tnJfgFbq8r -@addelindh I can’t stand the writing style of Narnia actually. Tried three times with three different volumes. -@akopa most of the fiction I’ve read in the past several years has been manga and webcomics rather than conventional novels -(I really like stories written on a mature reading level which include children as proper characters.) -But I guess I will go read GoT because I know it treats children as actual characters rather than scenery props based on fandom stuff -In fact my own Secret Novel Project is rather Potterish in that it focuses on teens and reams of personal character development -@nickdepetrillo CHECK OUT NICK DEPETRILLO EXCLUSIVE PICTURES OF HIS HUUUUUGE YAGI HERE IN ANTENNA NEWS it satisfies the radio ladies -I’m more of a Harry Potter kind of fan, will I just get grossed out? -So I’ve been debating actually reading Game of Thrones for a long time now, knowing that it’s heavy on sex, violence, and death. -@puellavulnerata @smarimc I assume they have their own little diplomaticy ways of propagating such information without broadcasting it -@bhelyer high five for five eyes ! -@smarimc @puellavulnerata I’m amused they seem confused how he was able to leave Hong Kong without it,as if they’d be terribly fussed. -RT @thehistoryb0y: This is what Alan Turing's statue in Manchester looks like today, his 101st birthday :D http://t.co/HXJGpZ3ubp -@bhelyer the American attitude is that all foreigners are under suspicion by default. Sorry. -I continue to be astounded at the number of people who conflate unfriendly states towards the US with ENEMIES of the US. -@donicer pretty sure the paparazzi saw him get into a car at the airport in Russia -@rfunk how does going to jail separate one from common criminals? Why does suffering make a cause more legitimate? -@rfunk I just don’t buy that civil disobedience must or even “should” necessarily end in voluntary arrest. -I think humans have a problem with feeling like someone’s cause isn’t legitimate unless they’ve suffered for it. We glorify suffering -@jilliancyork @ioerror cognitive dissonance: I voted for him because I liked his platform therefore this isn’t that bad because after all I… -@kesgardner @McGrewSecurity I fail to see how a layover in Hong Kong affects the genuine status of the documents. -@ErrataRob because a state interfering with a civilian flight always goes over so well… -RT @PRISM_NSA: #FunFact We often swap phone tapping tips with @piersmorgan! He's pretty good at it for a civilian - been doing it longer th… -@rfunk and why does Thoreau get the last word? -@vogon insisting someone be punished for doing the right thing is worshipping Law as a god who has conquered Justice. -.@vogon I don’t think it’s morally consistent to say “I agree the law was wrong but I want you to suffer for breaking it anyway.” -RT @NightValeRadio: Wow, the continuous nuclear explosion in the sky is really nice today. Hardly any floating water in the way. -I don’t get people who both say he did the right thing AND want him to willingly face the music. As then it’s entirely the wrong music ! -@trufae I get it! Is language joke! -How many whistleblowers can the Ecuadorian economy support? -RT @Falkvinge: No, #nsa, it's not "irreversible damage to the USA" by Snowden. It's by _you_. Don't blame others when it's your actions tha… -Talk to your teen about Linux… before you have to talk to them behind bars in chroot jail. -@inversephase TALK TO YOUR TEENAGER ABOUT LINUX BEFORE YOU HAVE TO TALK TO THEM ABOUT OPENBSD -I think what Kaspersky was TRYING to say was, if you have absolutely no idea why this is on your hard drive, that’s suspicious @inversephase -@zedshaw you got my hopes up for a moment… -Via non-criminal Linux user @inversephase , something just a little bit fuddy: https://t.co/4k6ZSs87W1 -@bhelyer @Wxcafe @inversephase well how’d that happen gosh -@Wxcafe @inversephase weird… -RT @densaer: Confidential documents from WookieeLeaks shows that Han shot first. -A little anteater in Animal Crossing just told me he was gay. Is “buying a car together” some sort of Japanese euphemism? -So how do we protect Snowden from torture conditions without seeing him become the next pretentious jerkface -RT @jilliancyork: If you're saying surveillance isn't a big deal, then pretend for a moment that you're not talking about the United States. -@MyLittleDroney do you have any coupon codes for these shirts -@Rikev @Tomi_Tapio I’m so sorry. I hope no small children were present to witness this. -RT @KimJongNumberUn: Yo Edward Snowden: please settle in North Korea. We do not spy on phones or the Internet. In fact, we do not have phon… -RT @BBCDanielS: The Ecuadorean Ambassador is still here at Moscow airport. It looks like Ecuador is Edward Snowden's destination http://t.c… -@kcarmical and I meant in total perceived international clout, though the gap between China and US narrows every day… -@kcarmical first as someone said, “Hong Kong and Beijing are in the same country but being in one is not like being in the other” -RT @mjdominus: strftime("%p") produces "AM" or "PM". strftime("%P") produces "am" or "pm". That is some fucking genius right there. #fuckin… -@donicer @thegrugq dunno if you ever met any Marines Mr. The Grugq, but they be cray cray -@donicer @thegrugq yeah I didn’t think he was advocating it — just reminding that the Marines have a glory problem… -@_wirepair @thegrugq the severity with which civilian plane incidents have been treated in the past points to the outcome we know now -@RSWestmoreland @m1sp in Mispy’s case, yes! -@m1sp you don’t sound bitter at all -RT @vogon: new buzzfeed article: "10 hottest countries to claim will better defend your civil rights than the united states" -Hong Kong really knows how to turn down a larger power in a classy fashion -@m1sp well to be fair they’re trying to give you a chance to pick without “ARE YOU A BOY? OR A GIRL?” -@PiennePN yeah pretty much -I cheated and looked ahead in my overnight tweet backlog. So, uh, Russia, huh? -Don’t tell me all the interesting things happened while I was asleep http://t.co/6RNokDaps3 -@thegrugq Actually I already read the archive about a year ago It was pretty gross -@thegrugq just making sure you’re not the devil trying to lure me into The Pornographies. -@vinski_ DH stands for Dear Husband! Then we got a housemate so I called him delightful to riff on it -@thegrugq why you link this -@hypatiadotca did you try gandi? As many registrars aren't equipped to handle it yet -"Updating certificates in '/opt/local/etc/openssl/cert.pem'" @m1sp confirmed for being APT, thanks a lot! -@DefuseSec hahaha bin-go cc @m1sp who told me to run it -@thegrugq yes, I told my Mac my name is Melissa. I don't consider that classified information since I turned 18. -Dear shell script, you think it's cute to pull my real name from system files and thank me for running you, but it just comes off as clingy -@meursalt on my system, whoising the unicode version will attempt to escape it and search that and be like shruggle XD -@meursalt sounds like it understands it's pointing back to the same page then yeah -@meursalt as the link is the unicode version and if there's no support for it you'll get some dumb error -@meursalt I changed the page to clarify it doesn't matter which way it displays as long as it follows the link back to the same page -@dong1225 I literally have an entire playlist of remixes of her theme, unfortunately many have gone missing http://t.co/EgtQrqLsHy -@dong1225 why not?! http://t.co/3QL9dcPG3m -@Twirrim it's fine as long as you end up back at the same page with the spinning girl -@RSWestmoreland note professional use of a typo to make sure people will complain whether they're offended or not -@dasshuchan it doesn't really matter but I think most everything will show the ascii version -@DrPizza it wouldn't be if everything supported displaying the unicode version -Is your browser dumb? Find out here http://t.co/0pw6pZvNvw -However they do not have good unicode-in-domain-names support. "Communication Error" is a very helpful, specific error, no? -@oh_rodr ha! "communication error" -@oh_rodr actually wait I will just put a unicode-encoded URL on my webpage and click it and see what happens -@oh_rodr nah, just thought I'd check what my webpage looked like. Though I lack a means to enter kanji directly into the URL bar. -Nintendo devices may have ridiculous web browsers but at least they have good unicode support! -@jgeorge I planted some peach trees but they haven't grown yet -@cji kapow! -@jesster_king bam! -@IrritatedGoat zam! -@jgeorge bam! -@NinRac kazam! -@dkabot foosh! -@kjatar boom -@kherge yeah well unless Find My iPhone can distinguish between floors of my house... -@CamJN Incorrect. O is an address. Oh is an interjection. -I wonder how many different antennas in one suitcase I can get through airport security -@CamJN spelled wrong where? -@thegrugq @mattblaze @nickdepetrillo to who? -@0xabad1dea paging Dr. Phone, please buzz -@trollball yeah. A little bit of tempest for fun and profit. -@DatsunInsult @rejectionking oh probably, but he’d notice, as I don’t remember the password to the 5ghz band he uses either XD -RT @mikeklonsky: Did you hear? All over news. Some TV cook is a racist? Yes, and 50 schools closed in Chicago's black community. 30,000 kid… -@trollball http://t.co/LWfMHMKO5N -@ameaijou pretty much -@ameaijou controlled by he bought the router and installed it while I was away from the house -PS if my router is remotely ownable, blame Delightful Housemate, as I don’t even have the password to it. -What. (Minus the IP address so y'all don't DDOS me.) http://t.co/GZbLtGdCyJ -@ELLIOTTCABLE @brforums I’m a lot more incredulous. Check the screen shot I’m posting in about three seconds. -@nrr are they TRYING to get your bike stolen? -Does an integrated GPU clock speed of ~650mhz sound right for a media ARM SOC with a CPU of 800mhz? Trying to identify source of a signal. -.@WeldPond I have no idea who those are! The joke is I just assumed everything related to it would be Canadian. -@focalintent I am super excite about the info I am coaxing out of this 32khz-ish signal by painting patterns on the laptop's screen -I can pick up the FM station with my wifi yagi antenna! At a very specific angle, held directly over my head. -FACT: when I was a child I assumed O Canada was to the tune of O Christmas Tree -@ra6bit well the tinfoil I was holding was the antenna at this point :) -I accidentally tuned into a hockey game. Wait, why are they singing Star Spangled Banner? I just assumed it would be O Canada. -@ra6bit I was touching the connector on the USB radio end -@ra6bit noting that I think I have more of an aura than most as I have lit up things with my hands that many people cannot before -@ra6bit well this is the second time I've stuck my finger into the antenna connector when it was live and feeling tingly afterwards -I wonder if this tingly, prickly feeling all over my body has anything to do with me jamming tinfoil into an antenna connector -# 348591069702782976 -@DrPizza to be honest I was thinking more of things like variables_with_underscores_which_I_hate .. ... .... -In programming as in life: be strict in regulating what's under your control, be forgiving of what isn't. -@KatharineBerry @kaepora as a hexer I am all too familiar with the pain of JavaScript making “interesting” casts on one’s behalf -RT @KatharineBerry: @0xabad1dea @kaepora 2a is the solution. -.@KatharineBerry @kaepora Guess 1: you’re operating in at least base 29 Guess 2: JavaScript and/or PHP was involved in this somehow. -RT @KatharineBerry: How can this even happen? (look at R0): http://t.co/TXvg3H7sBK -@Packetknife that’s not mega creepy at all. -@RSWestmoreland for things he said about transgenderism -RT @puellavulnerata: http://t.co/FTsGHbkWv4 What Cop T-Shirts Tell Us About Police Culture [@radleybalko] - includes "U raise 'em, we cage … -I think Bootleg Pokemon crashing for the third time today is telling me it's time for Radio Science. -@WhiteMageSlave thing is I just bought a giant flying saucer so I guess I'll run with it. After I get a bigger house. Cuz it's huge. -@ebcube "Idea inserts item into pocket" (Idea being my name) -@sakjur They consistently confuse the word "insert" with... some other word. -Let's Play Bootleg Pokemon!: this one deserves its own post http://t.co/t9avMkZBPn -@WhiteMageSlave I let Sahara do my house and came inside to find… a space ship. I honestly can’t object to this. -RT @TheOnion: The Land Of The Free: 10 Ways You KNOW You’re Living In The Greatest Country On Earth http://t.co/cSuIWbkJ37 -@homakov it's not a crime to kill you now -@USSJoin he said some ignorant things about transgenderism -Well I’ll be darned, @cwgabriel apologizes http://t.co/Kjrzyu0WjB -@yolocrypto safe mode because it wouldn’t boot otherwise? -@0x17h @pondswimmer yes of course that is completely outside of anyone’s control -And no I don’t think duckduckgo is single handedly the savior of search but that guy sure is angry about their easter egging -@mattblaze @nickdepetrillo it’s okay you don’t have to justify your small antenna to me -@pondswimmer @0x17h I read that, there’s an explanation, an apology, and a list of steps taken to correct it, so, resolved ? -Before flipping out that a company is taunting you out of spite, make sure it’s not just an automated twitter bot. http://t.co/JSSNCulQSD -@pondswimmer @Anne_Roth @0x17h yeah, so, that Easter Egg thing is automated. They’re not doing anything “out of spite.” -Great, now I have antenna envy. https://t.co/ogjD9hMVBE @nickdepetrillo -@homakov don’t use such an ugly default font. -RT @sec_reactions: umm... maybe... I forgot to lock my screen?!?! - by _2501 http://t.co/yTbradzLmW -@spacerog it’s very Movie Plot, but then again, so is everything else that’s happened recently. -@spacerog the question was asked as to how such a question could even be answered. I think that’s fair. -@20committee you say that as if he asked people to say these things, or that anyone who defends him is necessarily a fanchild. -.@pmocek @puellavulnerata I’m [am|conf]used at people who berated the stupidity of his choice followed by switch to calling him defector -RT @ioerror: If Michael Hastings was killed by Mercedes 0day, how would we know? How might we disprove this theory? What forensics exists t… -RT @mattblaze: Surveillance in infrastructure is a technical and architectural weakness, separate from whether we trust FBI/NSA/President, … -Please check @20committee’s timeline for full context as he says my interpretation of his words is incorrect. -@20committee @ggreenwald what I saw was saying that Greenwald not writing the article was a weak excuse wrt his accountability for it. -@20committee @ggreenwald which is why I just told you, so now you know ! -@20committee @ggreenwald and I shall continue to listen to every side until there is some cessation of saying they’re all lying/delusional. -@20committee @ggreenwald I’m from a government family too you know. And I’ve been listening to you from the first tweet of yours I saw -@20committee @ggreenwald and all I want is the freaking truth, and everyone on every side is screaming that all others are lying -@20committee @ggreenwald you outright rejected the reasoning that he didn’t write certain articles and continued hold them against him -Suicide note of a participant in American war crimes. http://t.co/jW11VnqFeM -Meanwhile @20committee opines that @ggreenwald is personally responsible for everything the Guardian says -We don’t look at American emails! Unless our British friends happen to also have access to them. -@WhatHoCenturion … D: -@JackLScanlan I am literally in favor of smacking you -@nmonkee @miaubiz not dollars, and they are all the same size -@pchengi drew it in Notability on iPad -I should find more games with considerable amounts of badly translated text. It’s an interesting mental exercise. -@dakami why thank you -@savagejen it’s a good place to be, with or without toddler. -RT @stroughtonsmith: As seen on a poster at Facebook HQ: "Advertisers are users too!" -@Packetknife Albert Reggie Angelo -RT @gerryeisenhaur: You don't need to speak turkish to understand this. RT @gde54: Ozgurluk mucadelesi bitmez .. http://t.co/kXxOtIEAr0 -@oh_rodr I’m going to suffocate you out of mercy if you keep using tumblr words you found on the ground -@0x17h the effect they were going for, if I recall, was “fell and hurt my back.” -If there's one takeaway from Pokemon Crystal Vietnamese, this is it. http://t.co/GbMX98McXW -@m1sp <3 <3 <3 you on teh talks? -@name_too_long @chriseng and darnit the SOLE REASON I moved out and got a job was to afford to have it every day -@name_too_long @chriseng I'm actually addicted to frappuccinos specifically as a comfort/ritual thing. -@name_too_long @chriseng WHY WOULD YOU THINK THAT???? http://t.co/Q6bM51ySGt -@wbic16 I've never been drunk, almost drunk, or anything other than having a violently ill reaction to alcoholic cough syrup in my life -@0x17h I was doing DF, but we're currently following the adventures of Ms. Idea in Bootleg Translation Land http://t.co/5PN7k5J46y -my Let's Play side tumblr already has significantly more posts than my real tumblr -@chriseng I maintain that my behavior is outwardly indistinguishable from that of a drunk tweeter -@chriseng I'm getting into the SPIRIT of sending ill-advised and unsolicited opinions of a compromising nature -I stubbornly insist you don't have to actually be drunk to send drunken DMs on twitter -@nelhage @ternus I’ll pedantically u -@ShadowTodd I was also slut-shamed in high school for natural dimensions in that respect. It’s a genuine issue IMO. -@dildog in my experience it ends up looking like ____ + ____ says someone who tried to crash the platform today -RT @arstechnica: Facebook sqashes bug that exposed e-mail addresses for 6 million users http://t.co/y6gqJYSPEw by @dangoodin001 -Random hipster project generator http://t.co/ap1rzFztDB -RT @binarybits: So far four people have emailed to complain that I'm helping the terrorists by writing this article. http://t.co/cwhADUzjEQ -RT @kurtopsahl: The NSA says it removes Americans and the GCHQ says it removes UK citizens. But when you add it together, its still everyon… -.@ternus’s house is named The Event Horizon so I’m not sure how I got out. -@_larry0 just that @ternus guy... -# 348228307050954752 -On a porch in Cambridge with a bunch of MIT nerds... This is the Massachusetts life I was promised -@ra6bit @ternus both ! -Going to @ternus's house ! He has terrible opsec -@eevee I’m declaring war with you not over tabs vs spaces but over dedent vs outdent -RT @kpoulsen: Former #WikiLeaks volunteer @anarchodin just found out the FBI got the entire contents of his Gmail account http://t.co/cRURj… -@grp @comex I thought we were still pretending… -@xa329 yep -RT @craigstuntz: @0xabad1dea Terrorism: Complaining about tap water quality. http://t.co/TbNFZV0ymg -oh come on where did my BRAND NEW bag of antenna connectors go -Aww yiss http://t.co/98VOppbJsT -This allegedly came all the way from Japan. I'm almost afraid to try it http://t.co/J2ieBWQEJj -RT @THEwmAnderson: @0xabad1dea Its also a Voltorb -The flag of Greenland is red. Thought you should know. Carry on. -@ra6bit we probably have openings... -I'm casually submitting maliciously constructed binaries to the engine for fun. But any outage in the next ten minutes is coincidental -RT @mikko: GCHQ is looking for experts on high-speed internet processing, network exploration, data mining and stream analysis. http://t.co… -@Savag3 @comex ("there's no such thing as bad publicity" only applies to shameless celebrities who need to stay on front pages) -@Savag3 @comex we're doing the opposite of promoting it. We're highlighting that Kickstarter regrets their actions enough to donate $25,000 -Buggy client-side extensions that modify the DOM must be a nightmare for tech support, sorry @duckduckgo :) -.@duckduckgo @built Sorry!! It was a github diff enhancer extension screwing it up! -@built @duckduckgo they were on two different computers, Windows and OSX respectively. Disabled adblock, no change. No idea... -Huh weird... I searched "C# hello world" on @duckduckgo and on Firefox it displayed an actual code snippet but not on Chrome? -@nelhage (we do run the *web interface* component through it successfully though.) -@nelhage actually no because it mangles and demangles pointers which our analysis can't gracefully handle. -@vogon most of them are under \windows\ so -Apparently our engine ultimately has over 22,000 include files. It defies belief that it ever compiles at all. -RT @vogon: and the file mode of the beast shall be reckoned as seven hundred, threescore, and seventeen -- /dev/elation 13:17-18 -RT @mjg59: Today's just going to be one long Shit HN Says, isn't it. -@chriseng @ioerror is it illegal to testify in an anon mask? -RT @_FloridaMan: Florida Man Robs Banks Dressed As Iron Man | http://t.co/CkTGXkT7FX -@hemantmehta I’m sure it has nothing to do with peer pressure within the religion to put on a happy face in public. -@joshrossi @comex yeah, and rapes perpetrated by complete strangers are the minority. Date rape happens a LOT. -@joshrossi @comex Because I am in the primary demographic for being a rape victim and I am not going to play games with maybes. -@joshrossi @comex I would, unapologetically, consider any forced explicitly sexual contact with my body to be initiating a rape attempt. -@joshrossi @comex let the women decide that please :) -@joshrossi @comex as a woman: NO. ABSOLUTELY DO NOT DO THAT. -@joshrossi @comex his advice is to physically take ahold of women without warning and “force” them to escape to prove they don’t want you. -RT @chriseng: A quick bloggy... To Be a Secure Developer, Learn the Fundamentals: http://t.co/6qFGYMFMzJ -@comex of course they are... -@DrPizza yeah, dude does have his money now. I read it as they didn’t want to wreck something on 2 hours notice, then woke up feeling guilty -Kickstarter apologizes for allowing a funding to go through after they saw the guy’s really rapey reddit posts… http://t.co/6PhedjcxJy -@skynetbnet I haven’t been playing long enough to really count as a care bear yet I think ! I plan to move to null sec someday -Running a logistics corporation for other players in a video game. http://t.co/p06ArURJ6e -@savagejen @thegrugq eww gross -Well you see NSA, there’s a funny but perfectly logical reason I’m getting all these emails in Arabic… so there was this unicode bug, and… -RT @FTLgame: FTL is 75% off! That's only $2.50! It's cross platform, DRM free and includes Steam key. Buy it here: http://t.co/FMFP7RCXxg -@dangoodin001 but no Happy Winter Solstice for our southern friends? Hemispherist! -RT @nrr: http://t.co/XdzVWAx0Ig -@nrr ouch -@thegrugq @hackerfantastic @savagejen YOU’RE a big meanie -RT @chriseng: That is not a very good password. http://t.co/41aI7IIJvT -@hackerfantastic @thegrugq @savagejen I’m afraid I’m a lot more faux-flirty on twitter than irl. But really, about those 0day… -@dawnluebbe @vogon PLOT TWIST: he loved gardens -@Nirgoldshlager grats! -@thegrugq @savagejen yes. I don’t like you for your looks, only your 0day. Sorry, but that’s just who I am. -RT @puellavulnerata: http://t.co/bNHGPeqxzm A love letter to the NSA agent who is monitoring my online activity (via @isislovecruft) -RT @eevee: look, laptop manufacturers, 768px tall is not an HD screen. we had that over TEN YEARS AGO, except it was only 1024 wide back th… -@thegrugq @savagejen harsh, you sunk my battleship -@niteshad but I confirmed experimentally the effect got louder when I moved my hand closer to the laptop, not the antenna. -@niteshad about five ten and a shade under 600mhz -@tenfootfangs that’s more severe than the circumstances that led to the downfall of the Third Reich -RT @avibryant: I hope that part of Google's evaluation of their interview process involved a control group where they hire applicants compl… -@savagejen @thegrugq “0day is somebody’s fetish” Hi -@focalintent I can hear a BSSSH when I bring my hand within a certain range of the left side of the laptop. woohoo -Guess what: I can now pick up on radio *when my hand is over the laptop's keyboard*. Not even typing. Just physically close. -@focalintent the timbre changes when the screen's display changes, but the spikes are still there when the screen goes dark. -@dangoodin001 I'm pretty sure they were kidding. Pretty sure. -@focalintent this is the soc inside the terrible laptop http://t.co/LWfMHMKO5N -@focalintent representative sample. http://t.co/H69REVtEk2 this is the Terrible Laptop, in a faraday oven. -@focalintent it shows up between 52mhz and ~1600mhz. One of those is the bottom range of my radio and the other is near the top. -@focalintent hey hey do you have any idea what in a laptop would generate a signal spike every 32khz over a very broad chunk of spectrum -@RSWestmoreland yeah but how I'm usually dressed when sitting at my home computer doing Science is between me and the NSA -I PROMISE I'M NOT SETTING ANYTHING ON FIRE -let's play a fun game called getting the microwave door and the iMac's array of USB ports as close together as physically possible -RT @dildog: in iceland cool ranch doritos are cool american flavor. http://t.co/vK85xHRz4a -@matthew_d_green @thegrugq @imichaelmiers yeah, if I find something they didn’t then they really need to get their lives sorted out -@matthew_d_green @imichaelmiers sounds fun, I didn’t know this one had source, where is it -@WhiteMageSlave https://t.co/MCGaGc5Y4O -RT @SarahMPottratz: @savagejen I'm serious. I've heard army personnel bragging about getting off to data they intercept. -RT @thegrugq: @_wirepair @chriseng all I'm saying: if Eve Online had that bug, their economy would crash inside a week. -Tonight’s smash art http://t.co/0Konmjhwa9 -@matthew_d_green @rodrigobijou I disassembled one of those a while back looking for lulz. It was pretty meh. -@ErrataRob *have* to? My Nexus 7 offered but let me decline. -@matthew_d_green though I did here an urban legend of some terror groups refusing to use any western developed crypto -@matthew_d_green well there’s that South Korean one… -@benwmaddox http://t.co/sLd8VrxYco -RT @savagejen: If you've slept with your cell phone, does that mean you've slept with the NSA? P.S. Sorry @dan_crowley, can I be forgiven f… -@chrisflesner @chriseng hello, my usual assigned NSA friend! You know my sense of humor, is joke, yes? -@ra6bit they’re called raccoons. -My boss @chriseng hacked the stock exchange and destroyed the economy you heard it here first -RT @chriseng: Schwab CSR: "I've never seen this happen before, but I've always wondered what would happen if you tried to do that." -Some girls are heart breakers but baby I’m a shield breaker #smashbros -RT @supersat: @0xabad1dea remember, the IPv4 RFC (http://t.co/32s5XUi7Q7) has an optional header to mark the packet as CLASSIFIED and its l… -RT @chriseng: My brokerage acct executed an old order I forgot to cancel and sold shares that I no longer have. Now showing negative shares… -@chriseng and that’s why I’ll never be happy -I hope someday I can tell someone they’re banned from the network for failure to comply with RFC 3514 -@chriseng I’ll never be happy with much of anything related to this really, but there is more happy and less happy. -RT @ephoz: @0xabad1dea let’s reuse the URG flag then, US packets should arrive faster anyway. ;) -@MrToph eep! -Seen on Ars: why don’t we just use an IP packet flag to indicate our American citizenship status? ;) -@doctorshrugs @vogon non-dismembered privilege -RT @seananmcguire: In tragic news today, there was a fire at the Fucks Preserve. All the fucks have escaped and are running wild. No more f… -@0x17h @moomism no comrade -And hey if it looks interesting oh well it fell into the net and we can’t put it back so might as well use it! … 2/2 -In particular the NSA writes itself a mass forgiveness for all “forbidden” data gathered alongside intended data at low network layers 1/2 -@0x17h @moomism you have no right to judge my taste in grumpy old men -@moomism @0x17h being grumpy on the internet endears you to plenty of people as long as you’re cute! And he’s… kinda cute, for an old guy? -The exceptions afforded by the NSA’s secret rules are broad and flexible. You could justify almost anything. http://t.co/op7UMehQT1 -# 347853023843856384 -@jgeorge nope born teh abroads ! -"Would you like to visit a nearby town or a faraway town? Err I mean... are we connecting to the internet?" - Animal Crossing -So I hear you like friend codes - respond in kind http://t.co/Qu7Qrk1AIW -@mescyn and making it less breakable has been traditionally what everyone else does -@GreatFireChina @nytchinese their DNS server is down from my perspective here in Massachusetts -@kherge no idea -This is the third time in under twenty four hours the 3DS has said it needs to reboot for a firmware update. -@scottmarkwell I sincerely doubt they are bothering to record the SSL sessions of completely public websites they can also subpoena. -@mescyn I’d assume. But the fact that decrypting things is on the table is concerning :p -@mescyn but it’s allowed to be kept for the broadest reasons of vaguest suspicion of maybe possibly someday even if domestic -@amazingant I’m just saying that the rules say encrypted data may be retained forever until it can be cracked if they want to. -These rules portray encrypted communication as being inherently suspicious and easy to get authorization to store indefinitely. -If the director of whatever is allowed to sign off on multiple communications at a time, it’d be trivial to authorize basically everything. -@chriseng and we know for total sure they’re not allowed to sign off on multiple communications with one signature? -@chriseng their definition in 2(i) is so broad that it reads to me like a single sign-off could cover eg all data from a certain tap -@vogon but did you make the gun -@eevee they malign the bit operators, but I’m guessing every php script I’ve ever written, save the random quotes one, uses those things -@chriseng and doesn’t it sound… INCREDIBLY broad? Minding that it may be retained FOREVER even if domestic ? -Please do read these documents — less for the rules themselves, more for the technical practices implied. http://t.co/ZCPzKYsWw9 -@chriseng may I have your thoughts on section 2(i) of the second document and the broad retention thereof -@vogon I guess that was his cunning plan -@vogon that graphics design is worth more than $50 -Uh hey this document straight up says they may retain any encrypted communication regardless of who sent it FOREVER until it is cracked -@20committee as a technical person, their definition of inadvertent collection includes a huge chunk of all internet traffic. -Note that they say they get rid of “incidental” American communications if it’s CLEARLY NOT related, not that it isn’t clearly is. -Oh hey they list “equipment emanations” under types of data they store ! -@mirell he is, and he accepts bug reports from iOS7 users if they’re technically specific. -NSA may keep electronic comms of Americans gathered due to technical limitations of the taps for up to five years. http://t.co/nOZP001ICA -An unincorporated association headquartered outside the US is not a US person unless a “substantial” # of members are known to be American. -RT @mirell: I still think MacOS 10.9 should have been “Maru” -@zipkid my Dutch is terrible and it apparently has a distinctly Flemish twist — do I blame the Belgian ex or Belgian television? -@zipkid Nederlands! Maar, ik hou van Kabouter Plop. -@astro_luca @BadAstronomer I once heard it described as an emerald necklace someone carelessly lost at sea — now I see why -RT @GooglePoetics: I actually hate my mom I actually hate myself & my life I actually hate my sister I actually like Windows 8 - http://t.… -@bmirvine not as such! Lol actually haven’t logged on in a week, been really busy… -A person in the US shall be treated as a US person UNLESS it is positively identified they do not have citizen/permanent residence status. -The last paragraph on determining if someone is foreign says that when in a hurry, break the rules and we’ll talk about it later. -Don’t reclaim any yahoo addresses that belonged to terrorists or you’re screwed. Past usage counts ! -@The1TrueSean yes it’s pronounced a bad idea did you skip an entire semester of L33T CL455 -@The1TrueSean it says right in my bio: the zero-x is silent. -RT @DrPizza: @0xabad1dea that sounds like a bad idea. Oh shit, you are *fucked*. -I sure am on the buddy list of a lot of foreigners. It’s a good thing I have this American birth c—— uh-oh. It’s in Dutch. -*Speaking your username aloud* on a *phone call* to another country is evidence the person behind the username is foreign. Think about that. -@Packetknife do you mean abadidea I BET YOU MEAN ABADIDEA -Being included in the “buddy list” (their quotes) of someone associated with a foreign territory counts as evidence for being foreign -@DrPizza most criminals and terrorists are lousy at their job, and that’s good, but that doesn’t mean I can’t laugh at them derisively. -RT @Microsoft: #ThrowbackThursday goodness: How metal-icious is this logo from 1980-82? http://t.co/LMeZpgokb1 -“For example, if a CIA report indicates that a known terrorist is known to be using a certain phone number…” then they’re a lousy terrorist! -@chriseng we think “Xbox One” is the dumbest name possible and calling it ex-bone is our little rebellion -@chriseng yes that is the idea. It’s supposed to look dumb. -RT @ShadowTodd: I also saw an elementary school with the "ABC's of Good Behavior" on the wall. I forget what A and B were, but C was for "C… -@lindgrenM indeed! https://t.co/LVnEnCEPzQ -@tapbot_paul I reckon web view -@supersat http://t.co/LCjZ0DMVgE -@ajyasgar if IT administrators went to jail every time they typo’d… -@daviottenheimer in that case I hack myself several times a day -FTR the LinkedIn DNS thing was not a hack, someone just put the wrong number in the wrong box. -An Apple product with ANTENNA problems? http://t.co/mlyFxpGPns -@locks @valleyhack #thejoke -RT @valleyhack: Facebook's 15 seconds trumps Vine's 6 seconds. We're on Moore's Law trajectory now. Someone will hit 30 seconds next year. -RT @skimbrel: tweets on a map, colored by device type: http://t.co/bVDJk4kJKB class/race divides in some cities (eg DC) are shockingly vis… -@m1sp I think it’s more they resent “traitors” to their ideal of strict gender binary -RT @ajyasgar: @0xabad1dea Everyone knows you're computer-information-systems-gendered. -But indeed, the very fact that I know I’m cis means I acknowledge there are people who aren’t. -In particular he doesn’t want to hear from people who use the word cis, like me. I am so cis. Let me tell you how cisgender I am -@captcarl13 opinions change all the time, otherwise I wouldn’t be here.., -@callmewuest you can look at his recent timeline to decide for yourself how you feel about it -@captcarl13 this is not the first time he’s said that there’s basically no such thing as being transgender. -Though whoever sent him death threats or similar threats needs to Not Do That, that is not legitimate discourse // @cwgabriel -I’m sad to see @cwgabriel whose art I respect continuing to vehemently refuse to consider the transgender experience as a real phenomenon -@WhiteMageSlave @m1sp it’s almost like she’s concealing… some terrible secret. http://t.co/SXIxboMF1d -RT @CDA: Six months of work, "Dimming the Internet: Detecting Throttling as a Mechanism of Censorship in #Iran" #filternet http://t.co/LHgZ… -@m1sp @WhiteMageSlave okay, but the way Reese freaks out if you try to talk to her husband is pretty disturbing. -@m1sp @WhiteMageSlave Barsamin wants to know why you equate being left-handed with being evil ! -@WhiteMageSlave “Oh, I’ve heard of you, Melissa! You’re one of the reasons I moved here!” -RT @mollycrabapple: #GTMO war court- the rooms where attornies met with their clients had, unknown to the lawyers, recording devices inside… -@wimremes you are?! -Shouldn’t have played Animal Crossing before bed — I had a nightmare the town was attacked and the little animal people died. -@hellNbak_ those are the words of someone who does not fear for their safety -@txs @fredowsley aw man it’s his birthday?! I’m not in the office to humiliate him! -RT @kaepora: Skype began “Project Chess” in 2009, secret effort to make calls available to intelligence officials: http://t.co/F9mRSAn6Ah -@NaNoWriMo #my1ststory John and Sarah made a rocket engine out of soda cans for their wagon and flew to Saturn. -RT @hackerfantastic: #OccupyGezi - A protestors banner is absolutely brilliant :-) http://t.co/MId5tVr294 -RT @gsuberland: I once had someone tell me his favourite online psychic must be real, because he knew where he lived. GeoIP must count as s… -@ShadowTodd doing exactly what The Lord commands, doing it happily! -RT @chriseng: LinkedIn DNS hijacked for an hour, traffic re-routed to alternate site: http://t.co/ToGfUtKIHt (and most cookies didn't use S… -@hacktress09 ? -@BrennanML @Earthpics @vaurora SKEPTIC used SKEPTICISM! http://t.co/p8FGWf1GiY -@m1sp character development! http://t.co/a0SIdsoJuE -RT @TonyDanzaClaus: Reminder: men's rights dudes want to criminalize women not putting out on a first date. Their actual serious term for t… -@ELLIOTTCABLE I have no idea what’s going on -RT @mattblaze: I was just told that I'd feel differently about privacy and "so-called rights" if I had been in NYC on 9/11. -RT @jenvalentino: Aw. Courthouse News story that made me LOL was wrong. Judge just ordered gov to respond, not disclose records. (For those… -And in conclusion, don’t start a new Animal Crossing at eleven at night. -Animal Crossing is racist against numbers, it won’t let me put “0xabad1dea” in the comments field of my ID card -@WhiteMageSlave ayep -@WhiteMageSlave you betcha -!!! Finally, a game which acknowledges my identity on my terms! http://t.co/NtsOCJvGAB -Nintendo is great at child-friendly interfaces http://t.co/GP3fk0Tzbi -@Viss that's his reply to her http://t.co/wfiaTKhciJ -@laneshill his full name in this translation is WUSIJI DOCTOR. -Read my Bootleg Pokemon Let's Play or many worms will follow you. http://t.co/5PN7k5J46y -@m1sp @WhiteMageSlave ZHIB CRY! BUT BEIL UNHEARING. This game's dialogue is tugging at my heartstrings -# 347502591472717826 -@dipidoo I do actually ! -@partying101 @hellNbak_ no matter what he told you, @jack_daniel is not a real doctor -@ternus what! You stole that honor from me. Jerk. -@Viss and you are so representative of the general public! -@Viss that’s not exactly trivial to correctly set up though. -RT @dannysullivan: Asking Microsoft support on how I correct my son's birth date turns into "How about you start a new account for him." ht… -@nickm_tor *siblings* Ew -@ELLIOTTCABLE you… don’t respect me? -Do I know this guy? No. Do I know Ms. Weidman? Not really. Have I ever heard she’s mentally deranged? No. http://t.co/DBOcEzPwna -RT @WyattEpp: #Xbone <bVork> IF YOUR WEBSITE CAN'T HANDLE NERDS F5ING, GOOD THING YOU'RE REVERSING YOUR PHONE HOME DRM -RT @vogon: you know why they call it the Xbox One, because when you see it you turn one radian and walk slightly to the left -@alethenorio @RSnake @mat #victimblaming -@alethenorio @RSnake @mat I think that’s a slightly smaller concern than people getting hacked -@spacerog Texas thinks everyone is subject to Texas -RT @RSnake: “@mat: Yahoo’s very, very bad idea: http://t.co/objFXXofZN” < wow spammers who have old invalid email lists will love this. Ees… -@kivikakk @tenfootfangs https://t.co/eHzCH1BZPi !!! -@pdo well it finished and that's the outcome I was hoping for -@uppfinnarn or, less nightmarishly, a watched pot -I swear this svn checkout is only progressing when I look at it. -This is a trending hashtag I can feel proud to use unironically #Xbox180 -WAR IS OVER - MICROSOFT IS SO SORRY PLEASE COME BACK. http://t.co/ixnDKJjD4L -"This folder contains filenames that are too long for the Recycle Bin." Cyclic hardlinks: not even once -@pusscat affirmative response sent publicly because you don't follow ~ -@kebesays I'm on the third floor of building 65, keeping an eye on Oracle. -Guess who's in build error hell hint it's me -@comex ... I'm not sure *what's* working, but it clearly is. -@comex MUAHAHA IT'S WORKING -@tenfootfangs lol it's just trolling. I *always* find out when someone checked the source if I leave a comment they object to. -@tenfootfangs neither is peaking under source code skirts without consent! :p -If you were wondering who is the girl spinning on 厄.net, this will not answer your question http://t.co/WwlfbTdPaN -@curi0us_s0ul http://t.co/8QIv0ebPlu :O -Ahhhh youtube 502 ahhhhh I can't reach my touhous -@klingerock Actually they're quoting the Enquirer so never mind it might be made up. http://t.co/p2RswdIhs4 -@kebesays yeeup. -@CptSexy the entire building is. This is Sun’s old building. -Oracle campus rebranding status: not 100% http://t.co/fMy3rFeczV -@androolloyd help help -Countdown to wearing infrared emitters being a crime in 3, 2,... //cc @WeldPond -@KairuByte don’t tell @Neostrategos that I had a Gaia account in *counts fingers* 2004 and made avatar edits for forum coins in mspaint -@WeldPond because, as someone constantly attending conventions and meetings in an official capacity, your whereabouts are oft unknown. -RT @WeldPond: Goggles that block facial recognition devices. I'll have to get these LEDs installed in my glasses frames. http://t.co/Oq8ph7… -@MrToph @jlwfnord also it was his brother, and we all know domestic disputes don’t count. -Inside Skype is a straightforward voice chat software crying for help http://t.co/LgBRB4FGnj -@XTreeki it’s crying for help you monster -Also I am pleased that the Microsoft bug bounty pays extra to hear your thoughts on how to fix it. -@ygjb @Veracode success! -@McGrewSecurity @innismir incidentally my SDR was marketed at going to 1.7ghz but software reports it going to 2.2ghz and it seems to work -@McGrewSecurity @innismir generic bunny ears have adjustable length and are like $15 -@innismir @McGrewSecurity also, what sort of girl doesn’t show up to Defcon with a special wifi antenna ? -@hypatiadotca it wasn’t me what did it, I swears ! -@innismir @McGrewSecurity I know it is, but my best SDR goes almost that high! Just wanted to to test it -RT @MrToph: It looks like Valve is proving once again that they know how to run a digital goods store better than anyone else. http://t.co/… -@McGrewSecurity http://t.co/x6KQjcmB9X just for fun -@MrToph @Packetknife didn’t you just say you were almost to the goal at the beginning of June? The secret to marathons is pacing -@Neostrategos should probably drop in a line acknowledging that’s a Gaia Online avatar edit… -@MrToph @Packetknife meh. Not the most attractive I’ve seen you. -Okay, which one of my coworkers just photoshopped in Microsoft as a white mage? http://t.co/KHJrf9lSwd -@McGrewSecurity and when I got a bunny ears at radio shack, they had the connector barrel with pal male on one side handy. -@McGrewSecurity the sdr’s have a pal female connector. Avoid the ones that have a micro-connector -@McGrewSecurity I’m waiting on a yagi antenna in the mail, they don’t amazon prime that stuff. -@McGrewSecurity I currently have a generic bunny ears from radio shack, and almost no experience. -RT @k8em0: Announcing Microsoft's new bounty programs: http://t.co/oHJuTuyGNU -RT @mikko: From our blog: An example of a drive-by site that only attacks smartphone users and leaves computers alone. http://t.co/aopRXqd8… -@J4vv4D @gsuberland got that one down I think 💣 -@sciencecomic non-spoiler remark acknowledging that the ending has been observed -RT @landley: Huh. Apparently the original Torchlight is a free download today only: http://t.co/YK4q9lkjc5 -RT @KimDotcom: VERY BAD NEWS: #Leaseweb has wiped ALL #Megaupload servers. All user data & crucial evidence for our defense destroyed "with… -RT @pneif: @puellavulnerata @isislovecruft @SebastosPublius But correctness is very important to us here! http://t.co/4VZxdRrQXG -@MugiMafin @m1sp then that the trend is increasingly problematic rather than just increasingly different. -@MugiMafin @m1sp https://t.co/44AfBN28Rj first you need to show that there IS a trend and not just notorioysly unreliable nostalgia, -@mescyn — I can’t remember where. But majority support him, majority oppose him! -@mescyn and even if they did they’re all completely different. But I know I saw some actual website polls, though in the haze of events — -@mescyn every news site has run its own poll and they all act like their readers are a random sampling of Americans (and not others!) -@snare @djrbliss I have met @djrbliss and this is true -Well this sure is two-faced https://t.co/t0X3kkMBz7 -“Some percentage of Americans say xyz about Snowden” — Dear news sites, your readers are probably not representative of the whole country -RT @johl: #prism Demo at Berlin's Checkpoint Charly. The signs were updated. http://t.co/L9kiBgstnM” -McAfee, the company, should probably just burn its branding to the ground and start over. -Go look at today’s xkcd. The world didn’t end when the telegram was invented and it’s not going to end now. -RT @puellavulnerata: Exploiting that could give a miner about a 5% edge over one that naively evaluates all 64 rounds. I wonder if @Butterf… -RT @puellavulnerata: Observation on BTC mining: the nonce is 12 bytes into the 2nd SHA-256 block, so the 1st 3 rounds of compression functi… -McAfee trolls the living daylights out of… McAfee http://t.co/jWFySgjnZ0 -@_wirepair mistweet? -@thegrugq so nature is so opposed to those finger-shoes that she broke your foot so you can’t ? -@mickeypt it’s just such a common reaction, when a woman says “help he raped me”, for people to enumerate ways she could have “prevented” it -@mickeypt so, uh, no woman should ever interact with any man ever because if he suddenly rapes her she should have seen it coming?! -@Macheh sorry! I try to not sleep, but it doesn’t work. -@_wirepair as if dynamic is better -RT @natashenka: My first stab at answering the deeper questions of Tamagotchi life http://t.co/9zWOxvGrpU -@whyallthenoise ;) https://t.co/SJ56JAWde4 -@jinkee bandcamp?! blasphemy https://t.co/Ca4AnAvnlG -Dude. Remind me to remix the Dark Cave theme from Pokemon g/s/c. It's groovin'. -Abadidea Plays Bootleg Pokemon: Youngster Joey Edition http://t.co/CNpPRKLtr0 -@whyallthenoise probably, but everyone thinks it won't happen at THEIR conference. -@WhiteMageSlave cheer up, have a mistranslated Youngster Joey. http://t.co/CNpPRKLtr0 -@whyallthenoise though I'm not surprised, as neither of them spoke Polish, the police wrote it off as fast as they could. -@Packetknife @oh_rodr it doesn't matter if he's serious, as that's effectively how the ruling goes. -@sneakin just casually observing. I suspect most would languish in "workaround: use the ascii conversion" forever, or already are. -@woodrad those feminist guys are my favorite :p -@Kim_Bruning though the github one complains too -@Kim_Bruning 厄 dot net ( http://t.co/1FUyPttxdD ) -@sneakin and I've already confirmed copy/pasting it verbatim breaks most standard command-line tools -@gangstahugs I'd print out the complaint and frame it -@sneakin (I break it out like that because twitter "helpfully" preconverts it) -@sneakin it is AFTER conversion. It isn't when I send someone an email directing them to download from 厄 dot net! -@RSWestmoreland no no no I am the source not the victim! :D -On the other hand, a domain name with a kanji in it probably pushes me over the 51% chance of being foreign threshold. -Coworker George suggests a good idea: perhaps the NSA tools will choke on my fancy unicode domain name. After all, Americans only use ASCII! -@thegrugq DON'T MISQUOTE ME, SCOUNDREL -@bhelyer there is one Japanese unicode symbol that is meant to display beneath the girl if that's what you mean. -@puellavulnerata it's like how I insist on a patdown rather than a nudiescan. Except in reverse. -Up to three people who've complained that my HTML page's source complained of being looked at ;) -@niteshad the con of def -@thug_lessons ♪ -@vogon I’m not your friend? :( -@thug_lessons of electronics! The air around you is buzzing with the song of a thousand processors. -@vogon this implies you don’t check your overnight tweets when you wake up on yonder coast ! -And thank you everyone for the congrats, the topic is exploring unintentional emissions with cheap SDRs. Also, I’m bringing my husband. -RT @http_coed: what idiot called it kosher salt instead of taberNaCl -RT @Pinboard: NSA testimony in a nutshell: comprehensive system of checks and balances protects against misuse, unless someone types 'sudo' -Also I am very disappointed in anyone who assumes a woman allowing a man to enter her hotel room is consenting to sex thereby. -@nitiger rape. -This is why I am too scared to go to a conference alone. http://t.co/wfiaTKhciJ -RT @DrPizza: Also I'm deeply (un)impressed with the way Skype encrypts its own log files, making them useless for end-user diagnostics. -@reviktra I used gandi -@RSWestmoreland gandi -@tapbot_paul I used gandi -@drwilco and yes, whois'ing http://t.co/1FUyPttxdD works; the point is it'll take 厄 .net but not convert it. -@drwilco #whynotboth -@tapbot_paul I'm pretty sure the concept has been there for a decade but end-user application support trickled in slowly -And I'm delighted with how the whois command will accept 厄 dot net as a valid domain name but fail to find the records. #breakingthings -And yeah, 厄 == "yaku" == misfortune, bad luck, disaster. I thought it fit my identity well :p -@vogon try now Mr. Archaic Encoding Pants -@THEwmAnderson yep. I like the kanji's look and it's vaguely related to my name -@hrist says the one looking behind the curtain! :p -@vogon yes -@jesster_king http://t.co/lLtk5phY9a -@bhelyer :D -@vogon Chrome defaults to WRONG but I don't even know what encoding it's in I just pasted it into the terminal! -Stupid Twitter is auto-converting my fancy unicode domain. It's 厄 dot net, or http://t.co/1FUyPttxdD. Isn't that a pretty name?! -First world problems: I bought a vanity unicode domain and it hasn't propagated to me yet! -@eevee I paid $800 for my 11” 1080p laptop (actually tablet but it’s quite powerful) -@Xaosopher mistweet? -RT @ELLIOTTCABLE: Wow, Google Docs *really* doesn’t like emoji in your content. Tried to backspace over one, got: http://t.co/MxFa0i0MJf -@focalintent fffffff I svn update + build and Parity just flipped out and the build is broken ;-; -RT @mollycrabapple: The phones in the #GTMO pressroom have a sticker saying "this telephone is subject to monitering at all times. Use cons… -@WhiteMageSlave x_x! That include this one ? -@Xecantur there’s nothing python itself did wrong; there was just an incidental bug in a third-party library. -@matthew_d_green @DarthNull though my ipad, air, and iMac all don’t have sims -@DarthNull @matthew_d_green I had been assuming the key was derived from your account password -@reviktra silc is also obnoxious ! -@Viss @chead but the mindset of extrapolating incidental traits of an “enemy” to infer everyone who resembles them is an enemy is toxic -RT @Viss: hah, oh boy - Rep. Jan Schakowsky "how many more snowdens are there? how many more contractors?" - rad. all contractors are now p… -Funnily enough, in that story, it looks like if your username contained only “weird” unicodes, you were safe! #☆ -A story of unicode string comparison gone wrong http://t.co/UdVs4AR8hY -@Viss ha, you’ve seen me, no mustache, no matter how impressive, could ever genderbend me… -@Viss so I may have to try to pass as Chris … Tina -@Viss I have to figure out what we’re doing about badges… last year I was the only girl so I got my own :p -@Viss it may be the only time in my career I make it to a keynote -RT @codinghorror: What the hell have you built. http://t.co/Tq7ktgDWzD -@0x17h aren’t your parents from some weird country with sustenance farming (South Carolina?) -@DogeMocenigo they are slightly less ridiculous than they used to be, but not much. -@DogeMocenigo Bob Jones -@EmrgencyKittens @nrr do not get wet. Will break glassware -RT @zachsherwin: It's unfair that if you get up early, you're a morning "person," but if you stay up late, you get demoted to owl. -RT @mollycrabapple: For security reasons, we can't show the faces of the soldiers guarding the #GTMO war court. So I drew them like this h… -I genuinely resent the people who’ve made wearing a fedora into a bad thing because fedoras look pretty cool -RT @kgosztola: RT @JoshGerstein NSA Chief: Snowden apparently obtained Verizon call tracking order during training at NSA HQ http://t.co/PK… -@leoofborg line . -@leoofborg but for whatever reason, they determined that Japanese and Scottish ancestry didn’t cross their imaginary linen -RT @PixieGirl89: Steam sales have become so good, that the prices have collapsed in on themselves and have started giving YOU money. http:/… -@leoofborg yeah I suspect a lot of them are whiter than me in terms of absolute hue, but BJU thought interracial children were a Bad Thing -@alindeman it’s like it’s got some kind of reputation ! -@savagejen #FREEADASMOM Ada-Crying.jpg -And yes, my father went to a deeply religious, and southern, private university. -@Samurai336 bin-go -@savagejen they’ll lay a trap by sending you free coupons to a tanning salon so you’ll start qualifying -@techpractical younger blood took over the presidency of the school and changed it pretty much immediately to my understanding. -@JR_Nelson @techpractical Bob Jones University. Look it up, be appalled. -.@techpractical late 70s early 80s… they dropped the policy in the late 90s. -True story: my dad’s university forbade interracial dating, but they let him date a Japanese girl because that’s almost like white! -HA!! That guy who demanded the NSA phone records on him to defend himself is getting his wish! https://t.co/vwNWY8vQ4r -RT @GonzoHacker: What To Accept When You're Connecting: A guide to delivering your first http response -RT @PwnieExpress: MT: It comes with a mandatory Geek Squad installation. http://t.co/wb5fpWuwwZ /via @mrtoph -RT @snipeyhead: Best attorney reply to a C&D ever. http://t.co/E2nCV41e2y -@MrToph … that’s a pwn plug isn’t it -Delicious http://t.co/00LZvgYiar -@MrToph hi Courtney may I have a free iMac -@yolocrypto #YouOnlyPadOnce -RT @yolocrypto: Nobody's forcing you to use a one time pad just once. Reuse that shit brah: http://t.co/Ucp4HEuz81 #YOLO -RT @kaepora: Saudi Arabia is planning to ban Skype and WhatsApp in coming weeks: http://t.co/jbKRxF3MbG -So I tried to file a complaint with the government… http://t.co/NMCQ6i9CpH -@m1sp Gridbug is defeated! -@attritionorg you forgot Squirrel Girl, the most successful canonical superhero of all time. -@Kufat the extent to which the police will play mind games to convince you to say something is terrifying -@willjohansson and yeah it probably was him who used the gun! He probably murdered someone! But that’s a separate issue. -@willjohansson against him, that it was him who used the gun, because he wouldn’t answer a question about it. -@willjohansson yeah except for what the Supreme Court just said about they can use evidence a man didn’t answer a question about a gun -@harper not sure… but apparently refusing to answer doesn’t count as obviously using right to refuse to answer. -RT @EFFLive: DOJ mentions "relevance" standard in Patriot Act, but the current "relevance" standard is ALL calling info in the US regardles… -RT @EFFLive: DOJ mentions "relevance" standard in Patriot Act, but the current "relevance" standard is ALL calling info in the US regardles… -The idea that you have to wait until the cops remind you of your right, or you have to remind them, to HAVE that right is absurd. -@Kufat @tapbot_paul I read the story. The entire point of the right should not be dependent on whether the cops reminded you of it -Suspending being angry at the NSA for a few minutes to be angry at the Supreme Court for stomping all over right to silence -“On our honor, we do not use our internal tools at a CTF…” Team Veracode -@ioerror a moment of silence for the slaughtering of the right of silence -RT @KimZetter: NSA: Snowden did not have key/certificate to access area where VZ court order was stored -On a lighter note: improvise! http://t.co/1uujMtvKuX -RT @attackerman: Notice how many times Gen. Alexander says "industry partners" are "compelled by the court" to work w NSA. Imp for coming c… -RT @declanm: NSA's Alexander: We've never seen an analyst do anything wrong. NYT: NSA analyst "improperly" viewed Clinton's email. http://t… -RT @EFFLive: Confirmed, no court review of individual queries. Rest of the checks are inside the DOJ — this is not oversight! -@zeightyfiv oh I know that NK is objectively worse but they’re still technically right -@20committee apples and oranges, while distinct, have a common genealogy; I’m opposed to the tyranny of fruit! -RT @EFFLive: Confirmed: NSA Analyst doesn't need a separate court order to query database. Analysts can decide what is "reasonably suspicio… -@20committee how does that jive with the Verizon Order? -RT @EFFLive: If the NSA's "job ends" once info is inside the United States, as Keith Alexander said, why do they have every American's phon… -RT @puellavulnerata: The assumption that *it's completely okay* to spy on people as long as their (*gasp, horror*) foreigners goes complete… -@mrkoot I’m ashamed. And we JUST had that kerfuffle where the Boston Bomber wasn’t read his Miranda Rights in a timely fashion -RT @feministtswift: I said "Leave" / But all I really want is you / To leave / Because the "no-means-yes" narrative undermines the value of… -Could someone in position of authority please say “I don’t give a damn, I asked you a question” next time an agent says “that’s classified” -RT @EFFLive: "Have you collected any info besides phone records through the Patriot Act?" Cole says that's classified. -RT @EFFLive: No names or addresses in the call records database, just phone numbers. Thankfully phone numbers can NEVER easily lead to anyo… -RT @EFFLive: Inglis describes "queries" as being backed by reasonable suspicion, and that NO court order is needed. -@ak_____28 … it’s not like I have citizenship in Ireland, Scotland, and Sweden, all of which my recent ancestors are from. -@ak_____28 @EFFLive that’s not relevant to the legal definitions under discussion and you know it… -RT @EFFLive: Inglis focuses on foreign aspect of collection, but according to NSA they just have to determine that you're "51 percent forei… -RT @EFFLive: Talk of protecting info sidesteps core issue: By getting all call info, NSA spying is a general warrant in violation of Fourth… -@wimremes is one of them Ilja? Tell him I had a dream where I lectured an American reporter on how to spell his name XD -@wimremes hmm, most companies wouldn’t have “three employees one town” on the risk register I think… -@ELLIOTTCABLE @vilhalmer this year was replacing my old iMac. Hopefully there will be a retina air someday…. -Is there anything more embarrassing than being called out by North By God Korea? http://t.co/dlHPNSIABx -@m1sp we have some bad news… you have a case of… DNA -@runasand see you there! -RT @stillchip: Bank of America whistle-blower’s bombshell: “We were told to lie” http://t.co/RXY28YK4vP via @Salon | It was OBVIOUS! -@ELLIOTTCABLE at least the 2012 airs also recharge absurdly fast -RT @ashk4n: When they NSA says they can tap all your emails -- this is partially why (hint: no encryption between webmail hosts) http://t.c… -RT @EFFLive: Alexander stresses, "We could've stopped 09/11." But 09/11 Commission cited gross mistakes by CIA/FBI, not lack of information. -RT @ioerror: Don't trust anyone to govern your internet or to design policies if they don't understand TCP/IP #FOTunis -RT @TanyaOCarroll: ¨each and everyone of you is living under the #surveillance colony of the United States & you have no rights΅ @ioerror #… -@amazingant @MrToph the title is “Noise Floor” as it’s mostly about radio noise and Defcon discloses everything -@0x17h that’s a weird thing to name your son… -RT @puellavulnerata: Does the #NSA have to worry about BLARNEY/UPSTREAM spying on itself recursively, like running tcpdump in an ssh sessio… -@MrToph yes, but actually with a focus on the unintentional emissions of electronics rather than deliberate signals. -@MrToph how to get in trouble with a $10 radio from China -@froztbyte I have had this conversation many times: “Hello, girl in nerdy shirt, have you heard of nerdy thing that sounds impressive?” -Now I can’t wait for the next time some random guy asks me if I’ve ever heard of Defcon when he’s trying to impress me :D -ACCEPTED. See you on stage!!! -RT @riskybusiness: This week's feature guest, @thegrugq, reading up on his area of expertise. http://t.co/5mXjYL3hOU -Someone call the 2600 Payphone Rights Association! http://t.co/XtDBpfUZHW -@0xabad1dea @JackLScanlan @realscientists @wendyzuk whereas when it comes to… whatever it is you do with pipettes, I’d trust you mostly :) -@JackLScanlan @realscientists @wendyzuk so yeah if you wanted to do a thing on physics…, I’d want to see a lot of reference to other works -@JackLScanlan @realscientists @wendyzuk but like, if I extolled evolutionary biology, I’m not an independently reputable source -@JackLScanlan @realscientists @wendyzuk I’d say so. Note that I’m not trying to insult science journalism; I read a lot of it, I reckon. -@realscientists @wendyzuk perhaps more precisely: are they the peers meant by peer review? If not, it’s journalism @JackLScanlan -@rantyben if you wake me up at 3am with some remark about elephants I’ll keel you -@realscientists @wendyzuk @JackLScanlan participant vs. non-participant in the field under discussion. -RT @oh_rodr: @whitehouse I think you forget who you work for. -RT @whitehouse: Obama on NSA: "I've asked the intelligence community to...see how much of this we can declassify without further compromisi… -@thegrugq @oh_rodr oh sorry. I figured your looks canceled out the whole rich foreigner thing and you broke even -@thegrugq @oh_rodr when do we get to the part where you look at illegal pron? I assume that’s what you do -@thegrugq @oh_rodr if you’re creepy to naive little me at Vegas I’ll tell my daddy. He’s a government man ! -@thegrugq @oh_rodr which you said again and then deleted again so now it’s in the prismbase not once, but twice ! -@oh_rodr @thegrugq they say The Grugq’s heart grew three sizes that day -@0x1C @thegrugq I habitually pick on Australia out of love and respect. -@astroduff @JackLScanlan haha but only serious because technicolor writing is a classic indicator of schizophrenia :( -@thegrugq I just bet the question “can they afford ____?” is “yes for everything up to and including Australia” -@thegrugq with the scale of budget we can assume, it’s a fleet of Batmobiles. -@thegrugq yeah but if I’m traveling Europe on SEVENTEEN GADZILLION that’s a different question I think ! -I mean, I think it’s a given their budget is effectively whatever it takes. So it’s hiding it from the taxpayer a lot more than The Baddies… -Honest question: why is the NSA’s total budget size classified? How would knowing the total help Those Bad People? -RT @m0nk_dot: @quine @Niki7a http://t.co/4a5JbLy34H -@vladkov Not yet, the nice scary lady said it would be later tonight. -@0xdeadbabe @puellavulnerata so in their case, five months. -Am I paranoid to assume companies quote their six-month surveillance figures to make it sound like half as much as it is? -@m1sp http://t.co/sFkShivIKq -@m1sp I can hear gooses in my marsh <3 -@a_greenberg @kashhill @joshbearman SadImNotPettingAPhoenix.gif http://t.co/BvSLiu1xfj -RT @lawblob: girl your body is a temple. but it’s the water temple from Zelda so once I’m in there I have no idea what to do -@ikmultimedia Please do not put goddammed pop up ads in paid apps. Thanks. http://t.co/Clf7eMkxKK -“Policy is a ratchet that only loosens” (Snowden) I guess it is so, as exceptions to policies always, always happen -@ra6bit @eevee maaaan that’s such a false dichotomy! Function and form are not separate for a device you look at and touch all day -@secboffin @VTPG actually I’m better than average at everything worthwhile except humility and the platformer genre of games. -@secboffin @VTPG don’t worry, I’m really good at not thinking I’m better than average! -@eevee there has never been a thinkpad that wasn’t hideous -@0xcharlie we’re trusting you Dr. Miller. Trusting you with our tweets -@0x17h it’s NASA’s lucky day -@0x17h maybe we should just ban all three-letter groups of the form N*A -@20committee @steven_metz I know, that was the part you quoted immediately after he said he approves. -Internalize please https://t.co/UqFQSPSd2F -@20committee @steven_metz most legit whistleblowers seem to approve on the whole, including Binney who you partially quoted on the matter ;) -@steven_metz @20committee I just feel like people are too busy not liking him for things unrelated to the documents themselves. -RT @The1TrueSean: "the card have to be renewed in 4 years time which is 2016." Spammers really need to update their e-mails.#spam -@steven_metz @20committee ah, apologies! https://t.co/h35wgK3TB0 fits that better. -@steven_metz @20committee https://t.co/UqFQSPSd2F Please find better reasons for someone to be wrong than their diploma -@boblord middle syllable for both -@everyunicode oops again! -@Tomi_Tapio whaaaat. My poor Boston! -RT @jaykelly26: Say goodbye to some more Freedoms. SCOTUS Deals Miranda Rights Blow - http://t.co/apNcN3SyVD -@dawnchapel @qDot I’m… trying to decide if the image was switched, or that’s the joke. -RT @RedactedMedic: http://t.co/Bk3P4QeSoU first date. “@AppFlyer: Awkward. @mitrebox http://t.co/SzT9AkPmoB” -RT @arstechnica: Texas becomes first state to require warrant for e-mail snooping http://t.co/8xeUFRKa6x by @cfarivar -#woburn #burlington water on the road is four inches deep in places... Be safe -@Niki7a @tufts_cs_mchow @ErrataRob it's fine!!! I'm just anxious :) -@The1TrueSean where can I get massages by mail -@zygen grats I guess -RT @oh_rodr: . @janinda as someone who worked intimately on this surveillance program, I'm very happy that #snowden leaked his shit. -@solak @everyunicode they deleted the E and inserted the D before resuming I’m pretty sure -@qDot @tinysubversions … wat -@tufts_cs_mchow @ErrataRob it would be fair to delay my rejection until the last day because I also submitted on the last day lol -@everyunicode oops. Start over. -RT @solak: @0xabad1dea @everyunicode Now that you've called attention to them, they seem to have skipped "D". #performance #anxiety -RT @adamshostack: From the weekend: New iphone settings? I could see this through a paranoid prism...(/cc @att) http://t.co/SHPzjjfEjS -RT @mikko: Hugo Teso will run a webcast on Thursday: Practical presentation on how to remotely take full control of an aircraft… http://t.c… -I just tried to lock a paper notebook before getting up from my desk -RT @codeferret_: The NSA knows I'm uncool because I have to google for the definitions when my friends use slang T_T -EMET 4, finally! It has certificate pinning http://t.co/Kqo5G7JZLy -@chriseng wat -Follow @everyunicode for a very exciting buildup -@ErrataRob I don’t really have much of a problem with public speaking! I’m just nervous waiting to hear if I’m accepted or rejected -Sooo… today is the final absolute last day for Defcon CFP notices, right? *refreshes mail* *refreshes mail* -@eevee I am constantly taking photos with my iPhone in dreams then, shortly after waking up, be surprised they’re gone -@FioxyFluff @Tomi_Tapio is your garden a nuclear waste site?! -@chriseng oh geez. What is it? -Is this just creative writing? http://t.co/TwCA7cMx5t -RT @sweis: Snowden:"Encryption works. ... Unfortunately, endpoint security is so terrifically weak that NSA can frequently find ways around… -RT @MsEntropy: Why is this not bigger news? Texas jailers ran "rape camp" | http://t.co/2DPzmsbTxr cc: @WomenUndrSiege -@gazoombo I nominate @marshray and disappear into the shadows -@gazoombo though I am not #1 Crypto Expert -@gazoombo in theory, I think, the sticks are a good idea, though simply storing password-protected key files on a plain one can work okay -RT @ioerror: Someone doing SIGINT and openly advertising on LinkedIn actually brags about a program named Panopticon! http://t.co/2JXYEyTLW… -RT @chriseng: Snowden doing a live Q&A shortly: http://t.co/gPVBuT8CAv -@ioerror he deleted a tweet a few days ago agreeing to defend citizens but wondering aloud why he should care about foreigners. -How worried should I be to find this on my computer? http://t.co/2HFO5nNVRj -@wookiee you are a bad person -@WhiteMageSlave indeed you are -@m1sp @JackLScanlan it’s complicated. -@JackLScanlan @m1sp Mispy will attest that this is exactly what happens -@JackLScanlan @m1sp no, their world would be a happier place if there were only gods of fabulous fashion. Oh and there’s undead people -@JackLScanlan @m1sp basically: fantasy Silk Road, small poor country trying to politically maneuver, crazy people with powers, gay teens. -@abditum @m1sp Novel loading… please wait… 50%… 50.0001%… -@JackLScanlan @m1sp the fantasy novel I’ve been writing behind your back… the scribbles I pass to Mispy are my notes -@m1sp this Father’s Day, let us reflect on how I have developed literally hundreds of characters, but not Hayr’s unnamed father. -@m1sp well, it’s him, Rashk and Tsovinar vs. Hayr, Ziazan and Chakori in the Demographic of Hermit God Strongholds. -RT @wolfpupy: what if the headless horsemans original head was a horses head and the horse he rides has nothing to do with the name -@z4ns4tsu it turns out knowing what you don’t know is intractable. -@m1sp http://t.co/OmvYGROkcZ -@DrPizza yay! 🎉📱 -RT @ErrataRob: Bah, I spent all that effort learning to pronounce "Ahmadinejad", and now they've replaced him. -Wifi is literally invisible and might as well be magic. Please don’t blame people for not having a detailed risk model of it. -@JeffCurless @docsmooth @mattblaze technology is not intuitive. Internet privacy is extremely not intuitive. And a quick google won’t fix it -@JeffCurless @docsmooth @mattblaze WE are the technical experts and WE need to help rather than write off victims as deserving it -@JeffCurless @docsmooth @mattblaze right, so I’m sure you have a medical degree, a law degree, entirely self-sufficient in knowledge -@joshrossi once long ago -@WorldsHeadiest @0x17h /b/ is for /b/anned, /b/locked, /b/ye! -@joshrossi *applause* -@JeffCurless @docsmooth @mattblaze in a perfect world everyone would know everything about all technology they use, but, well. -@JeffCurless @docsmooth @mattblaze any time you use the word “deserve”, stop and evaluate why you think it’s their fault. -RT @tinysubversions: Whoa, @silentbicycle markov'ed the GPL license: https://t.co/RiteBuUZ9v ... Markov works very well with legalese -@WorldsHeadiest @0x17h you’re a real credit to Anonymous team. Giving them a good name. -@docsmooth @mattblaze assuming it was free wifi, there’s no way it could NOT attract civilian moths to the flame… -@PaulM @mattblaze I’m… assuming that’s exactly what they did. -.@mattblaze better question: what happened to the traffic of normal people who surfed at these internet cafes? -Spying on your own guests is simply rude. http://t.co/QAF0FrUJ3v -@PRISM_NSA ugh how did you know -@kivikakk @tenfootfangs I’m just saying, if you’re ever in the area, gay marriage is legal here… -RT @0x17h: Throwing children in prison turns out to be a really bad idea http://t.co/iuo6iStDbM -@20committee you know, most people would say there’s a difference between being at war with someone and not being at war with someone… -RT @m1sp: Found a paper in the arxiv database which was updated prior to its creation. Dealing with physicists here, not ruling out time tr… -“Phosphate, deposited originally as guano, has been mined on the island for many years.” How’s that for a job description -@rantyben @thegrugq why does CHRISTMAS ISLAND need its own investigation agency -@WhiteMageSlave he forgot how to tank http://t.co/3k6KzFh106 -@DrPizza :( -@ashedryden like why would you resent a piece of paper reminding the general public to not be rude unless you were planning on it? -@ashedryden sometimes I see people whine about codes of conduct and call it nannying. idgi. -@JackLScanlan I wouldn’t capitalize it for the same reason I wouldn’t capitalize the world, the ocean, and the sky. -@Sakurina @grp well technically it hasn’t shipped yet… -RT @EFF: Expert: Snowden's EFF sticker a "warning sign" https://t.co/zB8jB57MsD Really? Here's NSA's chief wearing EFF's logo http://t.co/… -RT @osxreverser: "Ms Nagyova - a close colleague of Mr Necas (…) - is also suspected of illegally ordering military intelligence to spy on … -RT @osxreverser: "Czech PM Petr Necas says he will resign on Monday following the arrest of a personal aide in an illegal surveillance scan… -RT @landley: Think the senate will fix domestic spying? Half of them didn't bother to attend thursday's briefing on it http://t.co/6bpyNMvV… -This music strongly evokes feelings of being ten years old, so I'm naming the rival after my annoying little brother who's now an adult :p -#pokemon quick, what's my rival's name? Asian version so only five letters. Hmm, IONIC, GRUGQ...? -@Kufat http://t.co/bfnmOrpcsm -I saved and reloaded and turned into a boy, so I guess I'll have to use emulator freezes instead. #BootlegGaming -Everything you need to know about this bootleg translation http://t.co/Nt9RQeAahE -@chriseng the scoop was that the representative *said* so, which he did say so. Then the representative said some other different stuff too. -I'm liveblogging games again http://t.co/5PN7k5J46y -Forgive me, download site, if I elect to not use the bundled emulator included with this rom I just nabbed -@WhiteMageSlave I love fighting Pikachu in smash bros... as I can just reflect everything. Yes, yes use thunder when I pass directly over! -@nrr I think our lease has something like a fifty pound limit -@kyhwana I would but he refuses because he thinks they're creepy -It’s easy to hate Gary Oak until you realize his parents are missing and his grandfather can’t be bothered to remember his name. -@sanguis3k I’m guessing they were so cheap they didn’t change the plastic between prototype and final -@sanguis3k there’s no connector inside, it’s just a hole in the plastic ! -RT @steveklabnik: Half of Americans living below or near the poverty line: http://t.co/47eytmM8bK -@Kufat you know I’ve owned cats before right I’ve even had horses. Entire horses. -So my husband was exposed to a cat and didn’t have a reaction. I really really hope he outgrew the allergy because I need a cat -@m1sp floor is lava -The URL of the video seems to be gone. But the cnet journalist doesn’t need to retract anything. I saw the video, Nadler did say that. -@chriseng but it’s on video. The journalist quoted him accurately. -@chriseng but it’s on video. The journalist quoted him accurately. -@20committee @ioerror It’s not particularly hard to find out what ioerror’s views are, he’s quite notoriously open about them… -@m1sp how am I supposed to send you pages when you're not online? :'( -@CaucusRacer nah it's clear and it looks like it drizzled off a glue gun, particularly on the underside it's not even touching any component -lol there are gobs of glue on both sides of this circuit board... pro -@xabean lol got it I had to wedge a fork in there... -@xabean it's actually stuck on there pretty good! -I peeled off the QC sticker on the cheaper radio only to discover an inexplicable microusb-shaped hole underneath -@THEwmAnderson no, because birthdays are a lot more fun when your parents love you! -@m1sp <3 -I can actually celebrate Father’s Day, but I think we need a holiday for people who survived failed parents. -That whole match, I thought I was fighting Luigi… then it turned out to just be Mario in a green suit… I don’t know what to believe anymore -RT @ioerror: Bush NSA begun scraping Skype call records and email metadata directly off US networks: http://t.co/zlJuDAx13X -@sciencecomic (it comes down to maximizing bulk movement rather than minimizing miles traversed per package) -@sciencecomic insert ramblings about the computer science field of of minimizing cost of package delivery -Hey twitter, we have successfully sustained conversation on a political topic for over a week without forgetting. Good job! -RT @hemantmehta: Christian College Expels Lesbian Student, Then Demands Repayment of Scholarships http://t.co/kNhEN2TkF1 -RT @zeynep: What Istanbul has come to. People now instragramming tear gas canisters that broke through their windor. http://t.co/nTAd26psCe -RT @NickHanauer: Coolest. Thing. Ever. Scientists re-discover the lost formula of Roman Concrete and it kicks our concrete's ass. http:… -@kaepora just a tad. -RT @vogon: @mattblaze @supersat koan: if you DROP TABLE in NUCLEON does the DBA make a sound -@chriseng I’m surprised Massachusetts is still your most frequent checkin… -@mike_acton pretend I didn’t auto incorrect that -@mike_acton largely a personal preference, but I’d ere on the side of current gender identity -@PatrickAK the spike is generated by the hardware and is always present at the exact center of the window. -@vogon what happened to the others? >.> -Behold the power of this fully operational science station http://t.co/HvdJQ0naFo -@CliffsEsport radio science ! -@corpsefilth that would kind of defeat the point -@QuantumG I am NOT paying shipping on several tons of metal from Hong Kong! :p -@QuantumG I don't see a price, and you know what they say about that... -The fact that the microwave is not big enough to contain the entire live USB cable, the computer it's attached to, and me is a problem :( -@puellavulnerata the script I put on github today specifically deletes a small range from the center before doing analysis -@puellavulnerata yes, it's an artifact of these cheap radios apparently. -@puellavulnerata MHz, but the spike will always be there in the center no matter what. -@jesster_king it's a microwave oven. -@puellavulnerata about like this one https://t.co/1tLeTTV4Ze -@vRobM there's not actually anything there (that the radio is picking up). That spike is spurious or whatever you want to call it -My yard sale faraday cage at work! http://t.co/skN64Rsj7O -@vogon that's an fc00013 on the left and an e4000 on the right http://t.co/yju8jrJxyo -@LowestCommonDen yeah that drives me nuts - also when people say "stack overflow is for people who can't google"! -I wonder how many times I can close the microwave door on this USB extension cable before it frays -@innismir I don't have one and I don't know. I probably shouldn't be trusted with a transmitter. :p -@jesster_king software defined radio -@_miw the noisy one on the left is a fc0013 and the clear one on the right claims to be an e4000 but I'm not positive. -@innismir yeah I know :) I guess the cheaper one goes beyond having no shielding to actively hurting itself -@xa329 @normative thanks -$10 sdr vs $20 sdr... don't cheap out too much, kids. http://t.co/nN2ovW5CRY -@a12danrulz my little bro refused to learn to read until he decided he wanted to play Pokemon without help lol! -Saturday night with KK Slider #smashart http://t.co/Tl4QCZd8em -@WhiteMageSlave they shall know of my greatness http://t.co/bwz2R6rIuO -@xa329 @thegrugq I blessed well don't swear. -@404ed http://t.co/yju8jrJxyo -The problem with writing a script that processes output of a $10 radio is it will randomly decide it doesn't feel it at the moment -@TDotWhiteHat @thegrugq I WON'T FORGET -@Brian_Sniffen @zooko http://t.co/d4EISKDJTz -@_wirepair I’m flattered I guess…? -@kaepora @matthew_d_green I suppose he meant the math is dull -Video of representative complaining he got two different answers from the NSA http://t.co/bIwklqRzER -RT @GooglePoetics: I am getting fat I am getting old I am getting married I am getting used to it #GooglePoems http://t.co/v4SvkLKCh5 -@grumpybozo actually I did end up on that page eventually but it wouldn’t play… -RT @ggreenwald: Whatever you think of the stories or Snowden or anything: can everyone agree that this increased transparency for NSA is ve… -@dangoodin001 @declanm representatives should all have tumblrs! -@Kytri Kytri Thompson, 198X—20XX: single handedly ruined comics forever. All of them. -@thegrugq I’m also good with stabbing -This reporter looks legit but what is the source of Nadler saying this? Or did I just miss it… http://t.co/bIwklqRzER -RT @trevortimm: BREAKING: In classified briefing, NSA admits it "does not need court authorization" to listen to domestic phone calls http:… -@thegrugq I’m great with kids. I swear. -@wimremes @thegrugq there’s not even a cartridge in that Gameboy! -@thegrugq why would you think playing Nintendo with me is traumatizing? Did Mario touch-a you? -@nrr I’m stuck at the house because DH left for the weekend and forgot to leave the house key. But there’s Nintendo at my house! -@nrr I live a few miles north of Cambridge -@nrr hello geographically adjacent friend ! -@zygen pedally. Manual is with hands! -Maybe I can advertise as a babysitter but only for kids who are worthy competition in Nintendo games -Grow up problems: I bet those kids outside would play Mario Kart with me… I also bet their parents would call the cops. -RT @levie: This should sum up America's problems: 53% of senators skipped out on a classified NSA briefing this week to go home early. -RT @ELLIOTTCABLE: Wish you could click those damn little loading-indicators in @Tweetbot, they’d stop loading and go away. /re http://t.co/… -@kirkenovak @Tomi_Tapio someday I’m gonna log back in and go ask that Redguard girl to marry me -RT @SteveD3: Pre-Father's Day comment from kids: If you're ever on life support, we'll unplug you and plug you back in, because sometimes t… -RT @jayrosen_nyu: "Don't savvy me." New shorthand: only 14 characters. It means: Stop dismissing valid questions with the insider's, "and t… -@collettiquette someone needs to learn of burden of proof :D -Code drop!!! https://t.co/x8HGNmZQX3 the worst radio scanner ever written #sdr -@jevinskie oh, well I guess that part is effectively a filter as it just removes a tiny slice from the middle of the array entirely. -@jevinskie it's not a filter, it's just generating a textual list of peaks in the sample buffer -Wee! I wrote my own script for finding local peaks that ignores the false spike always in the center. http://t.co/hFtfa5SZfz -@pchengi no, the opposite! I am saying a lot of Older People seem to not like people in their 20s. -@WhiteMageSlave the range is actually ridiculously short and easily defeated by a wall -@akopa I was trying to use someone else's already-written interactive one -Problem: I should get some fresh air. Solution: Wii-U tablet range extends to patio -Dear abadidea of two days ago, you put the pudding in the freezer. gg, champ! -@NotThatGreg wow... -@hackerfantastic nope, just the rtlsdr tools -@NotThatGreg ie the library detects my dongle as an elonics e4000 but its tunable range stops dead at 1700mhz -@NotThatGreg mass-produced Chinese radios are like a box of chocolates: the chart may or may not be accurate http://t.co/yju8jrJxyo -@NotThatGreg one of many roughly equivalent rtl-sdrs -@mirell not necessarily… depends on the family. -I made a graph programmatically! The most fun you can legally have on a Saturday with a USB dongle!!!1! http://t.co/bngqx7ErZp -Google "pylab". First result: wiki page complaining that the first result for googling pylab is not very helpful. It wasn't very helpful. -@sakjur "blah blah blah you're only 24 what do you know" "blah blah blah he's only 29 why does he make so much money" -RT @hemantmehta: This Woman is Being Denied U.S. Citizenship Because She’s an Atheist http://t.co/g4uRfCWhx7 -@kivikakk it’d probably be more efficient to have stored the RAM states -RT @nullwhale: @0xabad1dea A HN commenter clears up the translation a little — https://t.co/GYCZ0kncoK -@m1sp #youngnar http://t.co/WDAoWZua1o -RT @mikko: German Intelligence agencies claim they can 'decrypt PGP and SSH'. http://t.co/7YjaV8TTAi There's obviously something lost in tr… -@ralphtice it’s not my friends, it’s a zeitgeist -RT @xor: Oh my god, Google's been trying to warn us all along! http://t.co/xbBTMXUKxK -It really seems to me there’s now a disdain for people in their 20s that equates them with teenagers which didn’t used to be there. -@hypatiadotca how bad are we talking -@m1sp http://t.co/xnIw5inIYE -@The1TrueSean my only question is: why one glove -@ca13ra1 https://t.co/uUgXE1SWX1 -@amanicdroid @0x17h my village police are analog, and the Boston police were analog as of, well, was that even two months ago yet? -@0x17h pff, what could ever happen in Boston? -@0x17h oh yeah. -@niteshad It's not encrypted. There's just no-one talking. Because nothing is on fire. -@EightTons the time frame was not my concern... except that three decades ought be long enough to find out what NSA stands for. -@niteshad lol as if! -"Maaaaaan my local police and fire radio isn't very active! Wait..." -(That bright yellow blip was a fireman using the truck's radio about twenty feet form me, just saying something mundane) -@thegrugq nnnnnooooooo...... -@N3OX rtl-sdr -The fire department is outside my window... boy that signal sure is bright http://t.co/YtID7DEsCq -@_wirepair @thegrugq hmm it's not the touhou albums but I guess I'll try to get it anyway to cover for my piracy sins -@thegrugq @_wirepair also my taste is fine thank you https://t.co/cbQPhaEpjg -@thegrugq @_wirepair I suspect the answer is that CDs have *collector's value* -Japanese musicians!!!! y u no digital download so I can give you my monies fair and square -@smb lol I'm sorry. I only see "Super Mario Brothers" -@RandomStep submit child get request to adoption API endpoint -@lil_lost pretty much -@elathan because I'm planning on adopting and you usually can choose that -@MikeyASalazar me too! Actually I've been planning on adopting since I first heard the word when I was seven years old. -Y'all know when I get a kid you're going to be in for like ten years of scientific observation tweets about her learning stuff? Fair warning -When your handle starts with a zero, you get a lot of pocket-tweets, toddler-tweets, and hand-slipped-tweets. -@patrickwonders you seem to be having technical issues, possibly of the toddler variety -RT @Marie_Lu: Classic statues in hipster clothes. Is the best thing I've seen all day. http://t.co/VksjU5FHBs -I can’t believe someone put this much top-notch effort into a movie trailer about Java https://t.co/pkH9fgS00f -I don’t think I’ve ever seen a photograph of an in-flight entertainment screen that wasn’t of a Linux crash or reboot. -RT @marshray: http://t.co/ByTrXVhKH2 Thought I'd mention I proposed an enhancement to SSL which ENCRYPTS your METADATA. Speak up if you wan… -@stillchip lol I'll see if I can find one... -Antenna has female connector. Radio has female connector. I tried rubbing them together, but it seems they're not lesbians. -RT @PRISM_NSA: There's one Internet company that has bravely resisted us, no matter the cost: @GoDaddy haha JK they're total jerks like yo… -This source base has a configure script which does nothing but print "just run make" -This is how Massachusetts people think. http://t.co/m3VndDab9F They can't fathom going more than eight miles to anything! -@tapbot_paul to clarify, I mean robots in homunculus form. If your bag doesn’t have half-eaten candy bars, you’re suspect. -@tapbot_paul Androids. -@tenfootfangs what if you search for four guys or six? What is the limit of guys who can grind as n approaches infinity -@iowahawkblog @innismir I ain’t Russian ! -RT @iowahawkblog: Whenever I get retweeted by a hot chick, I assume it's some kind of Russian internet scam. -@kaepora @cakemail If they think *that’s* hate, they really need some more experience with controversy -@wookiee I’m disappointed there’s no full body shots of you gettin’ down in that video -@0x17h barbarian -RT @BrianBWagner: I'm starting to think that @PRISM_NSA is like Santa Claus. The more you believe in its power, the more it influences your… -RT @arstechnica: What does your cat do when you’re not around? http://t.co/CVotCjTLEH by @drgitlin -@bhelyer anyway it’s like “Celebrating the 191th consecutive year of keeping soldiers out of our quarters” -@bhelyer they don’t just show it to you? o_O -Third Amendment rights group celebrates centuries of stunning success http://t.co/1BRsaHAxus -RT @MarkKriegsman: Pink Shirt Day @Veracode. http://t.co/CLNmWWdzGr -@eevee well they already had that é using up a perfectly good slot in the character map -@HyShai that's the pager - the mp3 player has 32MB of ram by which they mean solid state storage -Review of a $300 MP3 player... in 1998 http://t.co/Lwi0L2SVgY (via @ternus ) -@meursalt not my pager - I'm guessing it's the base station at the local hospital (I haven't hooked it up to a decoder) -@alethenorio 13 is dang well old enough to use the internet and gaming forums. -Right where I thought it'd be. http://t.co/CI0Hepku7R <--> http://t.co/cBLQuwvpra -@m1sp @vogon I was so ridiculously harmless -The NSA could save a lot of money if they just hired my best friend to cyberstalk everyone... nothing escapes his keen google-fu -@H4RDC0pyLULZ >.> -RT @chaosTechnician: @0xabad1dea Don't be too hard on 15yo you. 25yo you set a laptop on fire. :) -15yo me called herself a phreak. 15yo me needs to be slapped -@m1sp SILENCE -"Someone" found a backup of my blog I started when I was 15. Will I hate 25yo me this much in ten years? -@akopa yup. Once again I am punished for buying the piece of fabric which was advertised to fit me -@The1TrueSean @thegrugq @codeferret_ he really puts the bear in pedobear -@thegrugq I'm ten. -I got a Pusheen the Cat shirt, but apparently "woman's tee" means "we cut out a hole the size of the moon" -@lindseybieda I personally have always refused to pretend to be a boy. I get TOLD I'm really a boy enough as it is. -And no, contrary to my mother's apparent fear that the internet is nothing but pedobears, I never encountered any on gaming forums. -When I was a young teen (13, 14) I lied about my age on the internet (saying I was 10, 11) because it freaked me out when guys hit on me. -RT @mattblaze: Didn't Sen. Feinstein reveal more than Snowden about telco metadata when she said it was going on for years & applied to oth… -@ErrataRob attn: @comex :p -@ErrataRob I promise I’m not being interviewed by the police over twitter -Why do I encrypt communications, officer? Because I’m planning a surprise party… several times a day… -@thegrugq I buy surprise gifts for my spouse several times a day! -RT @callmewuest: @0xabad1dea It's not like anyone is hiring people to weaponize those patches. Oh wait -- http://t.co/Q2lgmnSW44 -@reviktra I tend to comment on the thing I most recently RT’d :p though I realize, if you already follow, twitter’s behavior is arbitrary -Giving the govt advance copies of patches is a two-edged sword. On one hand it’s passive defense, on the other it’s so easily abused… -@thegrugq hey man, etsy is on the BALL. -@reviktra in this case it was office space and allegedly someone chickened out on sharing it after the past week. -@leighhollowell fun fact - the white part is technically leaves, and it has several tiny flowers in the center. Double flower! -@hoofadoo @innismir @wimremes no one said there are no adult converts -@innismir @wimremes I’m defining convert as someone who has explicitly prayed for salvation in the generally prescribed Protestant manner -@leighhollowell dogwood -@innismir @wimremes I have missionary training from the Southern Baptists, you know… -@wimremes it’s no coincidence that almost all converts to Christianity are under 15 years old… -RT @eevee: it is seriously cool that animal crossing allows crossdressing and only makes cheerful nods at it -Whether or not you think JavaScript crypto is a good idea, chickening out on helping Cryptocat at the last second doesn’t help anyone… -RT @kaepora: Wow. @CakeMail just canceled a deal to rent part of their offices for Cryptocat because of “what we work on.” Incredibly shame… -@ShadowTodd that’s what makes twitter followers! -RT @landley: Is it a good sign for the future of the USA that Sesame Street _needs_ to cover parental incarceration? http://t.co/7L1kKbExRn -RT @SecurityHumor: Bitwise and byte foolish. #infosecadages -RT @SecurityHumor: Bitwise and byte foolish. #infosecadages -@taoeffect that’s not what NSA stands for. -@rodrigobijou saw a screenie of it -How to destroy credibility in one sentence: “I’ve been covering the National Security Administration for three decades.” -@WhiteMageSlave but it’s the squirrel’s fault in the first place -@thecoleorton @Veracode honestly, we don’t … -RT @Veracode: MAME and legos, the keys to productivity. http://t.co/JbYB7HKbNk -RT @charliesome: Holy shit, this is a bootable Minecraft clone written in *assembly*: https://t.co/NSaPPIDpe0 -@WhiteMageSlave thank @CyberSquirrel1 ! -@Ionustron but the evidence points not to a backdoor, but to the spooks getting an advance copy of next month’s patches -@Ionustron Microsoft Security Essentials? Well it’s not like the rest of the OS isn’t also under their control :p -@octal @puellavulnerata and if people will still call him kid when he’s thirty years old -RT @m1sp: Twitter data visualizations will continue to grow until they reach peak silliness https://t.co/ZGfMA5AdNi -@H4RDC0pyLULZ :o -RT @csoghoian: Wow. Microsoft provided non-public info on software flaws to US gov agencies, which was used to exploit foreign govs. http:/… -@m1sp it’s a legitimately sad story! Solornel just doesn’t have much patience period -@m1sp #TheMeanestAuthor http://t.co/u9AHqIdkdK -RT @marshray: @DonAndrewBailey @tqbf @csoghoian like asking a fox to guard a henhouse,in secret, with exponentially increasing hen-eating c… -RT @thegrugq: A lot of the public evasiveness of the IC heads has been based on hoping that people will understand the non-IC definition -RT @TheAtlantic: A certain 'je NSA quoi': In the 1950s and '60s, the spy agency held a beauty pageant http://t.co/FNXw159dyB -@Kufat it’s been there for TWENTY MINUTES -I should throw out this jello cup before it attracts ants *picks it up. Soldier termite underneath* -RT @textfiles: A COMPLETE BOMBSHELL WAKE UP SHEEPLE http://t.co/VVZGfJoZ04 -RT @marshray: http://t.co/PKZTfT4QS2 "It’s not just meta data. The NSA is getting everything." -I um, missed this when it came out a month ago. FBI guy stammers and then says all digital communications recorded http://t.co/pR5ipQhPFI -In news that isn’t depressing, Supreme Court ruled against patents of natural DNA. That there was ever a question is frightening. -.@dakami xbone’s PR is so condescending that I am seriously contemplating it being sabotage -RT @dakami: https://t.co/uJ2YRk3ebI Wow. The lawyers are actually killing the XBox One. -RT @attritionorg: Is it safe @TrendMicro? No =( http://t.co/nC9BcOnHH8 -@benheaslewood it appears that the graph is upright but "x title" and "y title" strings are fundamentally swapped at API level! -In this widget library demo, the graph widget's x axis is labeled "Y AXIS" and its y axis "X AXIS" and I'm going to punch it in the face -@landley Matt Mackall. Most Malicious. I'm allergic to M&Ms. CONSPIRACY -@MarkKriegsman would that make the 2MHz NES twice as painful or half? -RT @MarkKriegsman: @0xabad1dea I still maintain that the Apple II ran at one megahurt. -I really feel like the singular of megahertz should be megahert -@MarioVilas I *get* it! But it's needlessly confusing because you have to remember two different things for two different contexts -@OptiMizPrime though it's not their fault. It has the correct address on it, but it's visually almost indistinguishable from mine! -@OptiMizPrime I did actually. "Hey so so the post office gave me someone else's kid's pediatric bill from you." "Wow uh..." -@bobpoekert nah I don't really write python. Trying to get some random thing off the internet working. -"Compiling wxWidgets failed because of missing Carbon support in OSX 10.8" If only this could have been tested BEFORE a 20-minute compile! -I look away from macports for two seconds and it starts compiling xorg-X11. All I wanted was some widgets in my pythons! -@null_ptr the one about Cocoa... -RT @mcclure111: San Diego Catholic Diocese fires teacher because she was a victim of domestic violence. This is not an exaggeration. http:/… -@nullwhale I use macports. But the problem du jour is mostly in python extensions -I should put "expert in interpreting needlessly obtuse errors in the process of compiling Linux utilities on OSX" on my resume -@joshuajuran well, let's just say I'm more concerned about wxPython still working in two years than in working 20 years ago :) -"WARNING: can't find headers for this library I need but I'm going to compile anyway and fail after littering the hdd with code corpses!" -It's a travesty that there is actively-maintained code written against the Carbon API. The O'Reilly book on its replacement came out in 2002 -@gdbassett @ra6bit lol okay -@gdbassett @ra6bit yeah it does, that's what I'm saying. There's an audit trail, and he probably had power over it. -@gdbassett @ra6bit which probably involved actually checking the personal files of other users -@gdbassett @ra6bit just on that he was a sysadmin, he got away cleanly, and people are baffled how he got those papers in particular -@gdbassett @ra6bit no matter how hard you try, you can't fix the fact that sysadmins have root. -@gdbassett @ra6bit I think the key thing was he WAS the one checking the audit trail -@rantyben @chriseng "HYDRARGYRUM" I meant the word "HYDRARGYRUM" also written ☿ -@name_too_long mentioning me on twitter would be approx 7000% more likely to get my attention in time :) -@schrotthaufen see my next tweet!! -@MarkKriegsman of course, that roughly pegs one core and consumes a gig of ram, because real time graphics in a scripting language. -@MarkKriegsman pyglet + https://t.co/WcnBfCeizz + https://t.co/f8ZyqEPEvv == http://t.co/bJlcly5L0X -@gpakosz yes, because.... it's ancient. -@chriseng we didn't. But we STARTED a few thousand years ago. -Am I more infuriated by casually inconsiderate interface choices than fundamental human rights abuses? Let's count my tweets and find out... -Splain Train that hg is the ancient abbreviation for mercury please stand down :p -"Let's name the package mercurial and the utility hg," said the most malicious person ever -I got the command-line version of the SDR tools working on OSX... what should I do with these four beautiful cores?! -@MarkKriegsman good news comrade https://t.co/uUgXE1SWX1 -@evacide yeah, and that's fine, it's just the venue comes with that nice tint of "maybe shouldn't get your opsec tips here" :) -“Here’s Vice, the magazine that accidentally leaked the exact geocoordinates of a man on the run, with how to hide phone calls from the NSA” -@DarthNull it was changing the ad every other click for me, unless you mean it doesn’t for YOU because Adblock. -A slideshow on how The Onion pays the bills with ad impressions… http://t.co/psoQArrUFh -@SeanTheProducr @PRISM_NSA yes but only archiving the data that’s public by definition… -@RSWestmoreland I’m curious if it was an auto handwriting recognition bug or a last-mile human error -I just got a medical bill in the mail for someone else who lives on same street with similar, but not identical, name. Huh. -@thegmanehack \o/ -@akopa never, EVER leave me alone with a soldering iron. You saw what happened with freakin' sealing wax. -I somehow doubt that this cheap radio's serial number is actually 00000013 -@TheNoButton (our housemate is a good cook, but he's gone for the week and I haven't eaten a proper meal since.) -@TheNoButton My live-in cook isn't here this week I'm afraid, so ramen and instant soup it is. -You're not a real computer scientist until you have to start over boiling the ramen water because you were tinkering with something -@Ammoniak @MikeTalonNYC @snipeyhead I was thinking you were linking me something pink and I'd be mildly annoyed... but no... you're right. -@CyberSquirrel1 and my freshman year there was an outage every few days until finally equipment started getting upgraded. -@CyberSquirrel1 the infrastructure simply was incapable of handling the load as college students all got their own computers, no joke. -@demon117 um, well, of course. The point is how is presented. -@CyberSquirrel1 it wasn’t me, it was the girl who insisted on using her jumbo microwave ! -RT @thezeist: Deep Wizardry: Stack Unwinding http://t.co/AJrRwZaraT -@send9 yeah… it sees where it sleeps, which it infers is where you sleep! -@CyberSquirrel1 taking down the power in Lynchburg is so simple a college freshman could do it. Repeatedly. I’d know. -@fadenb well Eve is basically a game about suicide bombing other players... -.@sanguis3k I *know* they're logging it; it's just creepy to see them try too hard to be cute with it :( -@sanguis3k I don't think I've ever not been logged on to at least one Google service for a few years now -Google Now is creeping me out. It's showing a list of my recent searches on other computers and asking if I want to continue researching Eve -I will pet my good luck Pinkie Pie while waiting to hear from Defcon http://t.co/dFMMRTopxd -@ra6bit @awpiii yeah that's what I meant by it stays in place when I scroll, sorry. Always straight down the middle. -@ra6bit @awpiii oh, the spike in my output is not at 108, that's just where I was. It's literally everywhere, all the time. -@ra6bit there’s more around 145 yeah -@gpakosz in response to my submission a few weeks ago -@ra6bit with no antenna you can clearly see them... they stay in place as you scroll http://t.co/BVwasjFcSl -@ra6bit lines which are always present in the waterfall. I think some people call them biases? -The cheaper radios I got have not one but five imaginary peaks clearly visible! -@CyborgCode kinda a bit late there. CFP == Call For Papers == submitting a talk proposal -@CyborgCode by submitting to the CFP -Other people are getting their Defcon letters… anxiously awaiting mine -RT @0x17h: London police are confiscating sleeping bags and food from homeless people http://t.co/HeEdjB5oxE -@techpractical @jasonmoliver someone authorized to maintain computers can physically open the case and then… so on and so forth. -@blowdart my mother is IT at a southern university. It’s probably the most peculiarly redneck IT department in the world. -@blowdart yes actually she has domain administer credentials -@blowdart and active directory is controlled by who? :) -@jasonmoliver they already do that -The real Mission Impossible is keeping thumb drives off your network. http://t.co/OGjIRKP2mp -@Motoma that’s the spirit! -RT @zooko: “NSA chief drops hint about ISP Web, e-mail surveillance”—@declanm http://t.co/RUUzwdMyqQ HT @dangillmor -RT @_decius_: I want my views on Twitter to be tracked - thats why I express them here. Facebook is slightly different. Gmail is very diffe… -@oh_rodr he linked me his bio at the naval academy or something and it says so. -@Viss :< -@RenatoFontes his username is 20committee , trying not to @ him too much because getting blocked would be inconvenient :) -I guess too many people bothered the NSA guy about his remark of why should he care about foreigners, as he deleted it. -@solak wow… he said of course he’ll defend Americans but why would he care for the rights of foreigners -@MarkKriegsman gee, what prompted that thought… -@Motoma better than %APPDATA%\Roaming -@wwwtxt my tablet has 2048 rows of tiny blinky lights, what do I win -@MarkKriegsman nasal demons are totally in-spec! -@MarkKriegsman soooooo… how in-bounds is a custom compiler? :p -RT @Veracode: Webinar in 5 mins w @chriseng & @jlavepoze Mobilizing the Masses: Building BYOD Security Awareness in Your Workplace https://… -@MarkKriegsman you’re pretty suspicious… hey has that dollar been claimed yet -I managed to avoid the trap of buying the sugar-free jello, but I realized too late they had already gotten me in the cookie aisle. #bleh -“The “If You See Something, Say Something™” Campaign” If you think of something, trademark something -@landley a better question, indicative of mindset, would be “Would you be ashamed to even try out dressing like a woman?” -RT @gparker: Fast path through objc_msgSend() on arm. iOS 1: 20 instructions. iOS 6: 19 instructions. iOS 7: 11 instructions. -@rantyben @wimremes Morality is messy. But legality is what the power structure allows, hopefully but not necessarily what is good. -@SunTsu they got the check mark, Mr. Tsu -RT @DHSgov: “If You See Something, Say Something™” emphasizes the importance of reporting suspicious activity to the proper authorities #se… -RT @jamesseddon: The Sun at its best RT @JamesManning4: An apology in today’s Sun: http://t.co/H0g6eq9udK -@SurprisingEdge I’m surprised more people don’t ask… I was short a lanyard and my dad gave me a veteran’s administration one and it stuck -@earlzdotnet I think it should start working from the point you first logged in -@tapbot_paul Nah, definitely not. Latest stable on iPad. Snapped a pic, it resprung as it was thumbnailing for the tweet edit sheet -@i_intelligence @Packetknife silly gizmodo, the moon is already dead! -@JastrzebskiJ hahaha … … … -@JastrzebskiJ it was more being annoyed by people who act like it’s a travesty a 29yo with no degree DARE make so much money. -@JastrzebskiJ I’ve kind of been assuming it was sudo cp * -@m1sp http://t.co/N0q8rEM47V -Just experienced a spectacular respring while taking a picture. I blame @tapbot_paul though I doubt it was actually Tweetbot’a fault. -RT @Packetknife: Stacking tolerances.. it applies to software too. -@PresidentHoodie it involves seeds ? -@ELLIOTTCABLE if yours is purple, you should uh, maybe see a doctor… -@kivikakk but are they all in R— if I assume that’s Russian, it won’t be. -@ErrataRob my face clouds over as I read this tweet. -I’d encourage @LorettaSanchez and all other representatives to remember they represent *us* and we want to hear what the NSA told them :) -@NedGilmore now if I had that… -Representative Sanchez sounds like she’s begging someone to leak as best as she can without saying so http://t.co/qaU5jhIu1l -@ELLIOTTCABLE AM NOT -@MalwareJake it completely ignored the SD slot. This was USB, of which it has two -@MalwareJake “Do you want to format this device?” “Please make sure the device is the only one inserted” “Do you want to format this device” -@MalwareJake I expect to be asked, but it asked the same questions multiple times for no apparent reason :( -@WhatHoCenturion you should. -@H0lyPuma it’s so childproof! -RT @Packetknife: And if you think #Snowden harms US-China relations. HAHA. BWAHAHA.. because yes, China went *gasp* what is this Enn Ess Ay… -“I don’t see a USB eject option in the Wii-U… do I just pull it out…?” http://t.co/8hZiGiNG1U -“Once the file transfer has started, the process cannot be cancelled, because we don’t know about journaled filesystems” -Confirming to the Wii-U that yes I really want to format it literally took longer than formatting it -@sarahcuda @vogon yeah, I loved not feeling safe until I left… -@unimp0rtanttech I would *never* make fun of Sonic. The sad thing Sega has become, however… -@Kufat Before. I apparently suppressed the memory. It was traumatizing. -But hey, at least I found my SD card! It was in the Wii-U after the absolutely miserable process of migrating the old Wii's data. -Bonus: I shut down the WinCE laptop with the USB stick plugged in, and now other computers can't recognize it -@H0lyPuma apparently not because there's one in the slot and it's ignoring it ?? -@gangstahugs @H0lyPuma I would generally advise against getting kernel code off a torrent -@H0lyPuma sharing save files: the scourge of innocent game devs everywhere. -@Lavarsicious The Terrible Laptop from China That Came With Windows CE 6.0 (the one I lit on fire) -@H0lyPuma to back up a save file so I can delete it and see if that fixes a bug, if not put it back. -@Lavarsicious ... it's not THAT primitive, thank goodness. -ZOMG Wii-U wants me to reformat my USB drive to some special snowflake format ?!?! -Windows CE doesn’t have an option to safely eject the USB drive! I guess it’s stuck here forever :( -@puellavulnerata Blackhat however is explicitly commercial -@puellavulnerata the Defcon invitation, I feel, was done to deliberately lend a voice to an ideological opponent -@puellavulnerata oh no no no last year he talked at DEFCON. he’s moving up in the world ! -@puellavulnerata ie will he still have the nerve to show up, and will he make it through the talk without being boo’d off the stage -@puellavulnerata Keith Alexander and his appointment to address the security community at Blackhat -@puellavulnerata so what’s the betting pool on him and Vegas at anyway? -@tenfootfangs it worked almost fine until we unlocked Robotnik… maybe I should wipe the save files? -Oh boy, Sonic Racing Transformed has a patch! Maybe I can finally play it without it freezing! LOL NOPE where’s Mario Kart -@tenfootfangs >.> -@DrPizza my husband except… *British* -Someone should take me on dates to the orchestra to hear classical music (my husband is a philistine) -@tenfootfangs wow I am actually jelly -Nintendo in one Vine. I went upstairs to find the phone at five seconds remaining https://t.co/Ujni06VKaR -@fncombo Accessibility -> Increase Text Legibility. You’re welcome! -RT @NightValeRadio: Help control the pet population. Stop calling ants pets. They do not love you and it's inflating the numbers. -@coreplane @puellavulnerata heck, most Americans have only a vague idea of people in other parts of the country -@MarioVilas which I don’t think is a widely held view anymore, although “my marriage is a right, yours isn’t!” is. -@MarioVilas no, the other way around… if you say freedom is a right, then you can’t also say slavery can be moral. -@onekade @puellavulnerata at this point I’m pretty sure they meant as opposed to fiber taps; they request data at rest they didn’t snarf. -@puellavulnerata one of my private essays on ethics is a rant about the moral imperative of meeting those who are different... -@puellavulnerata (only men? Don't look at me...) -@puellavulnerata my grandmother (bless her) said "well you can't trust foreign men!" when a local murderer turned out to be Brazilian. -@puellavulnerata I feel like some older people I know have had so little contact with non-Americans they have no concept of them as people. -@akopa there's a time and a place for privilege, like privilege to use the part of the beach reserved for local taxpayers or w/e -Maybe my sympathies for The Foreigners(tm) is an internet generation thing: everyone I know is equally far away, and yet equally here. -@chriseng HA! Our klout scores are the same again! -@emptythevoid @Twirrim #closeenough -If you claim you deserve a certain right, but others (foreigners, gays, w/e) don't, then you actually claim you deserve a privilege. -If you claim you deserve a certain right, but others (foreigners, gays, w/e) don't, then you actually claim you deserve a privilege. -@JeffCurless @20committee hence all the talking I do. -@JeffCurless @20committee the world works the way that people let it. -@JeffCurless @20committee If I gave a damn how the "world works", I wouldn't be here, an openly bisexual atheist woman with a computer job. -@JeffCurless @20committee I don't care that someone's a "foreigner", I will afford them what I claim I deserve. Rights, respect, no dif. -@JeffCurless @20committee um well my point kind of was: why would geographic location determine whether I apply basic respect to someone? -@m1sp I will give you a present next time you log on chat... to apologize for the digimon thing. -@amanicdroid @chriseng twenty-two dollars for the velcro?!?! -@bigeasy janitors are disrespected gods of physical access, and "uppity" is a privileged word. -I'm picking on @chriseng because I'm fuming over something he said about tinfoil and haberdashery -@0xcharlie @chriseng I take offense to your implicit denial of my gender identity -@katzmandu but not enough to keep the darn kids and their animes and pokemons out ! -@tenfootfangs but you like The Animes -Not to say that ALL Boring Old People don't know how to computer... @0xcharlie and @chriseng for example ! -The fact of the matter is that comic-book-lovin' kids control the world's datacenters because not enough Boring Old People learned computing -And people like @20committee will find it hard to fill their hacker ranks if everyone who lacks a degree and likes comics is disqualified :) -@thegmanehack \o/ -I feel like some people are just mad a “kid” who dropped out and likes comic books made more money than they do. Computers: learn them. -RT @inversephase: @marshray @0xabad1dea oh no! what if they find out that nearly every government hired CS/math/etc student was into anime?… -RT @marshray: http://t.co/n8UCahnwXS "How can I be concerned about blanket electronic surveillance if the guy who leaked it was into anime … -RT @avestal: MS confirms Xbox One has console-level region locking; will not function outside 21 launch countries. http://t.co/6xkXLMthIp -@ChronicleSU @0xcharlie this is how you know you made it, Dr. Miller! -RT @EFF: As far as we know, our victory in the secret FISA court today marks the first time any party other than the US gov't has won in th… -RT @EFF: BREAKING: FISA court rejects Justice Dept's catch-22 secrecy argument, @EFF's case will proceed https://t.co/5Kk36J9hRj -@hypatiadotca didn’t you hear? Everyone with pink hair is actually the same girl. -RT @AlSweigart: Unlike online advertisers, gov. tracking can end with literally being imprisoned, tortured, and executed. THAT is why we ar… -This guy continues to make me very sad https://t.co/FgpC06LnFt -@20committee because being born wrapped in red, white, and blue doesn’t actually make you special? -RT @csoghoian: Alexander's unwillingness to reveal whether the NSA is collecting non-telephony metadata (such as email contacts) should be … -RT @gigideegee: in everything you do on the internet, please remember that at the end of the day you are dealing with real human beings -@0xcharlie I’m four percent of your followers ?! -@Fe3Mike now I'm upset I didn't think of that -@alethenorio oh definitely not. Windows, Linux, OSX and Google Drive -@alethenorio implementation dependent! -This was necessary http://t.co/SrHyRlVaGO -So @txs is leaving the company... we got him a present http://t.co/ZJ4nv6FhGj -And yes, the excess coworker variables have smashed the floor stack and are obstructing foot traffic... -Go to restaurant with coworkers. Fill table. Attempt to realloc the table twice as large. TableMalloc() returns null. Segfaaaauuuult -@alethenorio I meant the filesystem metadata -@aredridel @shu @thinkingfish ahahahaha -@thegrugq pff. My husband's forehead is more than subtly too large *right now*. -@PBTender I'm actually a Magical Girl http://t.co/2hQ6SBKoBP -My github comment signature is :sparkling_heart: it matches my avatar pretty well! 💖 -@Mordicant when you buy something in Google Music it kinda automatically gives free listens to your friends -@mtheoryx You just hurt Siri's feelings... -I often have nightmares of my phone dying. Dreamed of a sudden firestorm consuming my car, first thought, "my spare battery's in there!" -http://t.co/7VnhyQ5JYx my imagination or does that legal footer say 2011? Definitely on the bleeding edge of image sharing -@kehopper well, "issues created by you" actually means "bug reports submitted by you"... -@bobpoekert then their growth metrics don't include user retainment. -"Issues created by you" this interface text sounds so hostile out of context, doesn't it? -@bobpoekert and it took me time and made me angry. http://t.co/8I3PWnisv7 -Thank you @_Delts for reminding me that Twitter Mobile Web actually makes you do EXTRA taps to log in rather than sign up ?!?! -@bobpoekert except when I'm staring at tumblr going "............... there's no signin button" (it's a tiny text in the corner) -@skattyadz I can't tell you how many times I go to sign in on github and I instinctively click the green button next to the white one :( -#UIRage the signup button should be obvious. It shouldn't dramatically MORE obvious than the signin button. Ahem @tumblr / less so @github -@SamusAranX actually I suspect it also starts that ticker after first login -Twitter fixed all the bugs I complained about yesterday. Now I'll complain my Connect tab goes back one hour before jumping to 13 hours ago -@SamusAranX it shows that for some of them for me where I know that's wrong too... -RT @netmork: @0xabad1dea Account ineligible. At this time, we are only accepting advertisers tweeting in English (…). -@jonathanw probably because the adblocker unilaterally blocks domains with "ads" in the name, or something -(It appears that the timeline at the top of the dashboard doesn't start until the first time you log in, so it will be blank first time) -Did you know?: https://t.co/LD87egqkJo will show you the analytics dashboard for your account even if you haven't bought any ads. -@landley archaeology suggests this error is about as old as I am. Therefore it's his fault :) -@pborenstein yeah; I suspect it was an actual hand-maintained text file listing servers for their script to mirror ! -My father once reminisced to me that there as a time in the 90s when a three-letter agency could simply download the internet… -RT @hashbreaker: You think your RSA encryption is safe because the attacker doesn't have a quantum computer yet? Serious attackers _save_ y… -RT @trap0xf: http://t.co/SrIqGLqqF1 greatest subtitle -@Urraca @arstechnica by which I mean, when I open and it loads new posts, it jumps me to the top of the timeline -@Urraca @arstechnica it’s okay and works a lot better than it used to. I hate that it doesn’t seem to support remembering where I left off… -@ggreenwild @0x17h Dr. Russler, you should be ashamed of this behavior! -@alsmola @presidentbeef awesome… had to open an incognito window but I got in -@sintixerr I’m asking if you realize the article is from a parody news site, as your comment on it is ambiguous :p -@sintixerr you realize that’s a parody right :) -@jennifurret is that better or worse than waiting on the ethics committee ? -@NamTaf well yes, but The average American household has had more bandwidth than that since about 1982 -RT @arstechnica: Microsoft: No internet connection? You can still buy an Xbox 360! http://t.co/YIZWaWQaLS by @KyleOrl -@SimonZerafa @callmewuest that’s the joke… -@_losh I ain’t old enough! -RT @callmewuest: @0xabad1dea Careful--Use of non-latin characters carries with it a 51% certainty that you aren't a US person -After the military gets the hang of mixed upper and lower case, we will BLOW THEIR MINDS with ÜTF—8 -BREAKING STOP MILITARY DISCOVERS ASCII ENCODING STOP http://t.co/yu74CxEMZo -“As a loyal patriot, I support the NSA! *wink*” “Good thing winks are harmless emotional metadata.” -@Pebble @Iamkenpage my answer depends on whether that’s a parking lot or a road… -@lindamartin52 @ggreenwild because this is a fake account :( -@ErrataRob @puellavulnerata actually I assume everything you say is literal and you are the worst human being ever -RT @wimremes: OMG, someone is DOSsing the South China Morning Post website. Must be the US censors!! CYBERWAAARRRRR -Not every day you get to score someone’s home-rolled tiff parser. Pretty sure it’s better than the official one though… -“Public outrage has led to lawsuits but no results” Not even *I* am so idealistic as to think one can sue the govt and win in under a week. -@alethenorio seems probable that moving it between so many filesystems including the internet would lose the time stamp at some point -@ELLIOTTCABLE in all seriousness, sitting in a towel at home reading technical documentation -@ELLIOTTCABLE hello -RT @anildash: My marriage, like millions of others, is possible because interracial marriage was decriminalized 46 years ago today. Happy L… -Is it my imagination or have Barbie’s proportions gotten even worse? Look at that neck!! http://t.co/tReKaRaXXp -South China Post teaser for upcoming Snowden interview… http://t.co/jrwuQflZBe -@m1sp o.o -@pchengi :D -@rantyben @thegrugq @_wirepair anyway it’s sleep o’ clock -@xa329 all terrible, wicked things! -@rantyben @thegrugq @_wirepair what is wrong with you -@thegrugq @_wirepair only when you apply a Hatsune Miku theme to the widgets -@thegrugq @_wirepair anyway I did start this to support larger projects, so… I should write something cute huh -@thegrugq @_wirepair *copy* *paste paste paste* -@thegrugq @_wirepair no, but if you can find a security bug then you’re beating Dowd :D -@secolive yeah, I just expected the latency of downloading from across the continent to be a bigger factor -@_wirepair @thegrugq (that was a fun but silly attempt at embedding canaries in buffers) -@thegrugq @_wirepair I said right in the tweet that wasn’t my code -@_wirepair @thegrugq my code may not be USEFUL but it is PERFECT. https://t.co/0j3hNdFjv4 -@kivikakk do you follow that person because their name is Arlen -@thegrugq *my* C is perfect… I am the avatar of native code -@armcannon to be fair, it’s not exactly a skill needed outside of enumerating Final Fantasies -@thegrugq @chriseng @_wirepair me me I’m coming -The emphasis being, of course, on writing C that doesn’t blow up and segfault and overflow and ignore return values -I should write a book on C for people who know Python/Ruby/etc... call it Grimoire of the Old Magic or something. -The best part of Pokemon Crystal Vietnamese is where they apparently just used a thesaurus to find words like "diathesis" -@wickdlee69_man I'm just sad at the whole prism state of affairs. At least Google stood up to them today. -RT @norcross: well done Adult Swim http://t.co/OzU6SPZXqN -@xa329 yeah, and that’s… not a timeline to submit a request to Facebook for private data, get it back, and evaluate it… -@xa329 yeah I still don’t think that all goes through in fifteen minutes in the back room :p -@thegrugq @chriseng @_wirepair surely you wouldn’t be the first patron to ever demand bacon at a swanky hotel -@xa329 someone who speaks German confirmed that the original says they had the printout and surprised her with it -@xa329 I don’t think Immigration would keep someone sitting in their office for several days while they ran a fisa… -@thegrugq @_wirepair I’d totally do that. I’d understand it wasn’t good bacon, but I’d still do that. -@wickdlee69_man A lot of things ! Our government spies freely on the vast majority of human beings who are not citizens here with no concern -@thegrugq getting collectible rubber bracelets again? -RT @MarkKriegsman: All it takes is two flipped bits to ruin your whole gay. -Deleted original tweet because other German sites aren’t reporting it. Perhaps the girl exaggerated. For your ref: http://t.co/NHfT9ofcWl -@_wirepair got confirmation from a German it says what it sounds like it says, but that’s the only site reporting it, so… -@wickdlee69_man sigh -@mike_913 well, if they actually were going to show it to her, I assume they wouldn’t be like “here use our computer” -And I use “allegedly” strongly because I’m not convinced customs officials would have printed evidence for such a trivial case ?? -@ScaleItRon based on the rest of the code, I can assure you that wouldn’t work and, in fact, can overflow itself with intended inputs !! -RT @puellavulnerata: .@Salon Oh noez! There might be *homosexuals* in an all-male organization! Shocking! -RT @Salon: Pope confirms "gay lobby" at work at Vatican http://t.co/cRmfdo7zrm -@20committee yeah, who needs adult women with sexual choice?! They should live to not make their father feel awkward!!! -@akopa IMO Human, as I insist on addressing him, should have been a girl, like in the Animal Crossing movie. -@akopa I don’t. I’m pleased there’s another girl character, though not pleased at lack of established personality… -RT @JeffMcMahon: If toddlers have killed more people with guns this year than terrorists, obviously we need to declare war on toddlers. -@ELLIOTTCABLE “The transpiler accepts an existing JavaScript file, and transpiles it into SJS” My intuition would have gone the other way…? -@zygen bonus: it supports IP range globbing so there are conceptually valid inputs that exceed 19 characters. -If politicians in Germany call the NSA Stasi-like, are Americans now allowed to say so without being offensive? http://t.co/xXcxsfUPVc -RT @NTarakanov: http://t.co/OXYyW7Xw5D a length is multiplied by 4 when allocating the buffer but is multiplied by 8 when copying data into… -Why 20 bytes in particular? Why omit the two characters that would make that scanf not overflow? Why, coder I downloaded this from in 2007 -Found a C program I didn't write in my backups. Let's have a looksie... char ip[20]; fscanf(fp," %s",ip); Wow I had awful taste as a child -@matthew_d_green well we can't break compatibility with useless errors across multiple complete OS rewrites now can we?! -@matthew_d_green "File system errors" -I would be raging at OSX that my 65GB super slow transfer failed except it's because I accidentally yanked the power cable somehow. -@zygen also I think DM's are working for me now -@zygen thumbs up! -Excellent error explaining that the copy from X to Y failed because server Z disconnected. Bravo, OSX! http://t.co/dhz1qSXyvs -@zygen refreshing and trying, hang on... -@amanicdroid even better, I found it on a page that said "Please point your browser to <working hyperlink> to see..." -"Please point your browser to..." remember when people said that? -@zygen my bad weather hasn't cleared up yet :p -@0x17h y u so protected -I'm drowning my surveillance sorrows in a rewatch of the most important Let's Play of all time http://t.co/l8aZrOLC3J -How evil is it to tickle a sleeping husband and whisper "SPIDERS" -@themarkcaudill first, this rearranges my windows, second, it's paginated -Wait. Does youtube really provide a complete list of every video you've ever watched but *no way to search that list*? -Apparently I have the wavs and midis to SimCity 2000 in my oldest backup folder for no particular reason, then. -What game from the 90s had a helicopter pilot ("mayday!" "I'm hit!") and a woman who said "reticulating splines"? I have these wavs... -@uppfinnarn who's checked in from every major city on earth within a span of hours -I have a feeling that this NES rom dump with a file creation date is 1983 is stretching the definition a bit -@Kufat though I don't have any HARD DRIVES I've been using since 1997. -@Kufat It's from a game I had installed in the 90s, though I can't remember what game. -@invalidname Apple naively didn't anticipate it being used as a tracker. -@uppfinnarn yeah it returns a constant now in iOS7 -@Kufat 503.wav Created August 10, 1994 8:00 PM -Can't wait for all the iOS apps which snarf your MAC to have really interesting errors on iOS7 -@thegrugq actually it was the Governor's School of Math and Science, which was hosted by my university -When I worked at a summer boarding school I sneaked a scan of Harry Potter 7 to the kids. They had no other means, poor angels. -@theLoneFuturist @_yossi_ depends. Are we talking 64MB per movie or for all eight? :p -@_yossi_ Was working in a school at the time. Copied it to USB and snuck it to the kids. -@_yossi_ yeah I had that too. I felt no guilt because I had already paid for the preorder. -@zeroday no, I don't remember tape drives. I have literally never seen one in my life. -.@_yossi_ I mean PDFs of the Harry Potter books (If I could compress the movies to 64MB I'd be rrrrrrrrich) -Found a 64MB zip I made when I was a teenager of my Most Important Files... mostly bootleg Harry Potter... and some anime wallpapers. -@Aranjedeath it's basically a trail of every picture that ever made me smile, even if I can't quite remember the reason. -I remember downloading it over dialup onto a Gateway laptop running Windows 2000 Professional. -I have a GIF that, through 10+ computers, and being downloaded from Google Drive just now, still has the original metadata: January 31, 2003 -I read that automatic updates on iOS will "allow developers to iterate faster." I was under the impression the bottleneck there was Apple. -.@reed @wookiee "iOS 7 fixes" "definitely not got caught out using MAC address fixes" -@eevee I still say his name is Human. -@vogon do you favorite everyone this much or am I your… 😎 favorite -@vogon my phone just buzzed. That was you favoriting a tweet. I don’t even need to look -@vogon How un℈lous -@vogon how did you even find the unicode for that squiggle -RT @wookiee: Get ready for an unusually high number of app updates with nothing but "bugfixes" in the description. -RT @mike_br: accurate portrayal of e3 http://t.co/ffDiC0J0yA -I got a pet! I hope I'm ready for this responsibility http://t.co/TMLQpBG4wB -@thegrugq you’re racist against loyalists then -@pa28 yeah but the cloud is in Mountain View! -Consensus is that the streams to and from the router are colliding, but I’m not entirely ruling out AFP just being terrible -@Kufat the only Ethernet cable I have is about a foot long -@mtheoryx literally the only wire attached to that computer is the power, so I guess my house has Ethernet over Power? -How can copying 65GB between two computers on the same wifi be slower than one of them copying 65GB from the cloud?! -@ErrataRob (this is what we need those darn @chriseng constitutional scholars for) -@ErrataRob Apparently he is nominated by President, which is a yes, but it’s also a military position and I’m unclear if that’s a civil role -@JZdziarski @KimZetter I am personally convinced that Google GENUINELY does not want to be handing over as much data as it’s being told to. -The FISA queries Google isn’t allowed to disclose are manually processed and handed over the old-fashioned way. http://t.co/8MvwV6H7ff -@mtheoryx I’m pretty sure we all agreed it really is Sea Lion -@mtheoryx I’m pretty sure we all agreed it really is Sea Lion -@parityzero hmm well, the only Windows machine I could do that on isn’t particularly powerful. -@zygen I like the implication that Twitter is a weather system ;) -@mtheoryx true, but it’s not like it updates once a major OS revision… right? >.> -Is Director of National Intelligence an impeachable position? -@bNull @quine @youbetyourballs I admit I’m a touch jealous -@zygen these issues are Web, Chrome, OSX. API client seems to be working as intended for me -@tangenteroja you already did! -@wimremes well that’s not the prelude to any massive act of government violence ever -RT @wimremes: holy fuck, Greece has pulled the plug on their national broadcaster. what in the hizzy? -RT @a_greenberg: Clapper must be sweating as he reads this: http://t.co/5dA4q2m1hc -8975 (Safari) vs 15786 (Chrome): is Octane this rigged or is Safari this far behind? Minding Safari is 64-bit and Chrome not so much! -@zygen now who do I whine at that I can't get this photo to post AND the blue dot of new DMs won't go away :p -@zygen the best thing you could tell me is it's related to my name -@elyseboyajian @0x17h I can’t tell if she’s serious anymore actually -RT @mattblaze: No comment MT @NSACareers: Test your Crypt skills with #NSA’s #CryptoChallenge game app. Download it now on iTunes or the Go… -@0x17h @elyseboyajian meanwhile some of us actually care about the real Snowden and the *actual files disclosed* -@0x17h @EJosephSnowden @elyseboyajian I see she “punished” you too with her “retweeting a fake account” strategy -RT @0x17h: sexual jokes about 12 year olds. stay classy, fake @EJosephSnowden @elyseboyajian -@sophwilkinson @nnimrodd apparently the matter weighed so heavily on his conscience that how could he not? -@kherge the first one was Dutch, actually. Curiously, both were otherwise the same demographic: blonde, mature women -@Jonimus I cheat, and rake in karma on multiple sites simultaneously -@maxtch well I’ve seen the official screenshots. But I am waiting for the iPad beta -Go get them @ACLU -RT @arstechnica: ACLU sues four top Obama administration officials over Verizon metadata sharing http://t.co/lyUASJpKSs by @cfarivar -I'm pretty sure the FBI could save some money by replacing their spokesperson with a recording that says "per policy we do not comment" -@ebcube to talk and talk and say nothing but hot air -Is it my imagination or has the word “bloviate” been seeing a lot of use the past few days -I don’t wish to force anyone to listen to me ramble about ethics and philosophy! However the opt-in to opt-out ratio has been great so far. -@canweriotnow in this case, the lovely individual doesn’t even say I’m wrong. She just doesn’t want to hear me talk I guess? And that’s fine -Why do people complain I engaged them then continue to @ me after I show them where the block button is? -@elyseboyajian @EJosephSnowden I’m confused why you think RT’ing a fake account from yours is some sort of blow to me -@unclemeow @EJosephSnowden but a fake “truth teller” is a rather dangerous thing to hearken to and take seriously. -@elyseboyajian @EJosephSnowden hooray I’m a whacko! The WHOLE POINT of praising the real Snowden was telling the truth! -@unclemeow @EJosephSnowden I’m not *questioning* it. Check with @ggreenwald his media contact. -@elyseboyajian @EJosephSnowden the onus is on you to block me, ma’am. That’s why the button is provided. -@elyseboyajian @EJosephSnowden because people are falling for it and lies can be dangerous ? -I asked two people if they realized they were praising a fake Snowden account… one cussed me out and the other asked why that mattered -@0xcharlie @chriseng well in that case what are you complaining about? :) -@elyseboyajian @EJosephSnowden so you’re deliberately feeding someone’s poor sense of humor by sucking up to a fake account? -RT @marshray: RT @dangoodin001 Guardian reporter delayed e-mailing NSA source because crypto is a pain http://t.co/bLw7UyEkIV < We need to … -Yeah so apparently that Turkey thing is still going on -RT @CNN: Chaos overtakes Istanbul protests - tear gas, water cannons, fireworks: http://t.co/07acaiGTvJ Details live on @CNN TV. -@sakjur because my IT department won’t give me a Mac at all (I actually BYOD Air), never mind 27”! -My mom needs a Mac for testing things before she deploys them to the Macs her IT dept manages... so of course they got her a 27" iMac! :'( -@alsmola @presidentbeef hey it worked ! (getting twitter’s attention by complaining about twitter on twitter) -Hey twitter, I think I found another broken in 2-factor as https://t.co/D6oyUpc7Zb goes 404 after I auth ?? -@bdconf @ELLIOTTCABLE so not fair -@ELLIOTTCABLE @bdconf … wrong image -@bdconf @ELLIOTTCABLE it’s not a lack of data I have but a lack of a website to say so! -@bdconf @ELLIOTTCABLE I get a 404 when I log in. Possibly more two-factor breakage. -@hyperpape @silentbicycle though demanding that they lie is not out of the question -@osxreverser lol are you confessing to a few million felonies? -@osxreverser they sharply rate limit hits on large files. I hit it in literally seconds linking that 100MB gif -@synfinatic they already publish the transparency report. Calling out the govt increases overall trust I think… -@ErrataRob good thing I’m using neither a browser nor OSX ! -@ErrataRob that tweet is displaying right-aligned like Arabic unicode -@ErrataRob how did you right to left the twitters -@jerrigirl @pusscat you say the first two as if you find them as contradictory as the second two? -@matthew_d_green grab the phone book for your favorite country and start transcribing ! -I’m anticipating the secret that Google has been forced to sit on is FISA orders against something absurdly broad like an entire country -@DrPizza I saw on Authoritative Twitter that DRM will be a publisher matter -@chriseng and it wasn’t just you, a lot of people have said more strongly worded things against laypeople -@vierito5 and shouldn’t the ones making the call whether they care be the people actually affected, not some govt pencil pusher ? -@vierito5 in the most extreme case, that fisa orders have covered literally EVERY foreign account, that’s not of interest to users? -@chriseng and my point of view is that it’s so basic that any literate person is qualified to comment with gravity. -@vierito5 it’s not the number of requests, it’s the number of unique accounts covered by requests. Hint: it’s secretly A LOT -Lighthearted intermission: http://t.co/y3RN72gsbk -This is —HUGE—. Google calls out govt on forcing it to lie by omission on transparency reports. http://t.co/L2VgX5gu2k -@mattblaze twitter-stalking him has proven oddly insightful into the mind of someone born and raised in the NSA… -@mattblaze guy who said that is both right and a bit of a tool on twitter who can’t get over the fact he didn’t graduate high school -@amanicdroid @ggreenwild @EJosephSnowden that was explicitly who prompted me to make the remark, actually. -Okay, technically they’re making demands of the Attorney General. Like Vice Presidents, I’m not sure what Attorney Generals do on a dull day -@ioerror ding ding ding!!! http://t.co/L2VgX5gu2k -IMPORTANT: Google makes demands of the NSA to be allowed to tell the truth http://t.co/L2VgX5gu2k -How modern metadata analysis could have been used to stop the American Revolution from getting off the ground http://t.co/GKKV1VLsD3 -@0x6D6172696F where can I get my unicode domain? -@ggreenwild @EJosephSnowden oh COME ON. #fake -@jennifurret ffs. Can’t they at least keep the misogyny out of my favorite childhood memory. Crystal was 1st game I played as a girl avatar! -@pokemon_ebooks except, gods forbid, INDOORS. -@small_data @thegrugq private school, sorry :p -I’m not saying there’s no debate on the meaning of those words, I’m saying the bar to participate in that debate is not “scholar”. -The Bill of Rights is under 500 words. You don’t need to be a Constitutional scholar to have a meaningful opinion on interpretation. -RT @BriannaCahn: Oh wow.... http://t.co/f439Bh7EUV -@timzania argument is fine! I hate being told I can’t argue because I didn’t get a degree in Constitutional Ritual Theology or something -@adpaolucci @0x17h @lumeet @scumbagjames lol that probably does matter a lot actually -@chriseng @djrbliss whence the presumption one needs a special degree to understand a few hundred words of plain English? -Okay, you know what bugs me? “You’re not a Constitutional scholar therefore you can’t criticize.” It’s not THAT hard to read and comprehend. -@scumbagjames @0x17h @lumeet either that you know a lot of white males, or that the patriarchy is working as it always has re self-hate :) -@scumbagjames @0x17h @lumeet and if Occupy victim stats lean white (I think they do), that’s because the protest leans white, because etc. -@scumbagjames @0x17h @lumeet statistics always have shown that you’re LESS safe from cops if you’re not white -@scumbagjames @0x17h @lumeet or that certain faces of occupy say things like this https://t.co/qCDHAbG8BP -@scumbagjames @0x17h @lumeet or that white males feel safer than other demographics in turning out to protests -@scumbagjames @0x17h @lumeet that more white males hit the bottom than ever and they still had the fresh energy to be surprised ;( -@thegrugq he was astounded that little miss goodie two shoes would take issue with him -@thegrugq I walked out of a chemistry class in high school when the teacher went on a rant about worthless welfare recipients -@spacerog I actually never had any, I guess it was out of vogue by the time I was old enough to eat solid food ;) -@scumbagjames @0x17h @lumeet it’s not “offensive” it’s “indicative” :) I support the principles of Occupy in general -I think my biggest social responsibility is to remember I grew up on welfare, and to remember the reasons each family was there. -@scumbagjames @0x17h @lumeet though, for the theoretical average white straight male, economic position is the key distinguishing factor. -@scumbagjames @0x17h @lumeet I’m white, not male, not straight, formerly poor but no longer. All of these affect me, not just class. -@scumbagjames @0x17h @lumeet so it’s not possible for problems to exist on more than one dimension? :p -@scumbagjames @0x17h … I was just struck that you seemed to think privilege was a conscious effort. It isn’t, but fixing it is. -@scumbagjames @0x17h oops, I don’t remember saying that… -@sergeybratus I’m just wondering at a stat that said there were four thousand new radicals in Germany last year, totaling over 40,000 -@decktonic @TristEndo gods I *want* them to play it safe and stop messing it up -Where do numbers of “radical Islamists” in predominantly non-Muslim countries come from? Is there a form to declare radical intent? -@thegrugq or too much faux metal shading -RT @thegrugq: Jesus fuck, can the US military please hire some fucking real designers? “You can never have too many eagles or flags!” -RT @thegrugq: “@Walshman23: @thegrugq http://t.co/J7wABPpXGl”< awesome! next question, do they take BTC? -@puellavulnerata I associate you with hating air shows! Colored exhaust for bonus points -“Salary discrepancies? How can we trust Snowden on anything!” Well the govt agreeing the docs are real is a good start, I think. -RT @20committee: "In God We Trust - All Others We Monitor" - NSA in-joke. Used to be available on T-shirts (yes, I have one). Probably out … -RT @AlexOlesker: The Russian Duma passed two laws today, one making it illegal to "offend religious feelings" and the other outlawing "gay … -@joshuafoust @20committee I’m amused we’re worried about his salary and not the Verizon Order the govt agrees is completely real -@marshray @yosp it seems they paid more attention to Microsoft’s negative feedback than Microsoft did -RT @ashk4n: New privacy feature in iOS 7: Apps can no longer track using MAC address (ht @anuaimi @jonathanmayer) http://t.co/90FkTiVmcv -RT @yosp: And yes, PS4 is region free :D -@thegrugq @lcamtuf and use the voiceless water sample as the baseline for the noise removal. -@thegrugq @lcamtuf test what results you can get in Audacity with its built in noise remover. Let water run, then talk over the water -@miketheitguy @ioerror he seems to have a critical shortage of imaginative power -With apologies to the environment: iMac, y u go to sleep while syncing with cloud overnight?l bad iMac! Desktops do not sleep. -@miketheitguy @ioerror I personally consider the legality of something a poor metric for whether or not to be upset :) -Sensenbrenner seems genuinely surprised that his Act was abused in exactly the ways the privacy community said it would be! /cc @ioerror -I wish Sensenbrenner had asked my opinion on the Patriot Act and whether it could be abused — the fact that I was thirteen notwithstanding -RT @ioerror: Sensenbrenner: Congress was not briefed, and did not authorize broad metadata collection: http://t.co/VYP3Ojalkc -@puellavulnerata this tweet reminded me of you ;) https://t.co/opyJ24jle6 -I don’t care what y’all say, the main character of Animal Crossing is named Human. -@WhiteMageSlave … Human? They added HUMAN? (That is definitely that character’s name) -My inner asthmatic is looking forward to the doubtlessly healthy future of the person smoking outside my window and depriving me of breath -@WhiteMageSlave I saw something on twitter about megaman? -RT @msuiche: If you have also been offended by NSA Slides, here is for you: http://t.co/UdKQh0Uvsm -RT @m0nk_dot: 1 ノ( ゜-゜ノ) (╯°□°)╯︵ 0 Flipping bits -@DrPizza calling it turbo makes me twitchy -@CipherLaw @thegrugq well, if it meets MY definition of secure, then sure! Sadly, I’m the demanding type -@ra6bit the officials have the same question, but I’m pretty sure it has something to do with a hash-mark :) -Does iOS 7 fix the bug where it stubbornly refuses to admit “its” is a word distinct from “it’s”? -@TheEijk there’s no shortage of those! But I’m only legally Dutch :p And in my country that doesn’t count! AMERICA! -@TheEijk namely that I have a Dutch birth certificate :) -@homakov but remember that time you asked which spelling of your name to stick with? -@TheEijk ik heb geheimen! -@homakov what! I told them not to trust you, you steal rubies… -@kylemaxwell @mikko yes we all do, but that doesn’t address the American mindset! -@annebruijne @runasand @EJosephSnowden do you always flip out at people who check in to make sure you know you’re being lied to? -PRISM in the Netherlands: “direct access to the data on a silver platter” http://t.co/4UQ9jDV20U (how reliable is this news site, .nl’ers?) -RT @mikko: What if Google and Facebook were headquartered in, say, France? How would americans feel about French intelligence tapping into … -@scumbagjames @0x17h nobody opts in to being more often given the benefit of the doubt, or opposite, based on race gender etc! -RT @checker: Every once in a while I wonder why we get the same boring games served up over and over again, but I'm soon reminded: http://t… -@Asher_Wolf @0x17h this drives me nuts. I called out a former NSA’er on this and his reply was “he’s too immature to do his job” -RT @Asher_Wolf: Infantilisation and disregard of a generation. -RT @Asher_Wolf: When newspaper describe hackers and whistleblowers as kids, the vast percentage of ppl they are mentioning are over 25. -@thegrugq the fake Snowden account is pimping your code! Fess up :p -@elyseboyajian @EJosephSnowden fake account! Someone is trying to enjoy his glory by proxy -@EJosephSnowden @annebruijne fake account -RT @ggreenwald: Fake account ----> @EJosephSnowden -@saumroze No, not by any stretch of the imagination, I am, however, acclimated to using an actual mouse. -@angealbertini @corkami I missed this earlier — you do the silliest things :p -@troubledskies by the hour -@troubledskies the bill, however, is about the same… -“A process can even send a signal to itself” — processes have weird fetishes! -@0x17h with a notch in its ear! -@Sektor9 maybe, but that’s not the public -@sneakin no, it was considerably less than a decade ago :) -I am such a spoiled child, upset that my 65GB cloud sync hasn’t finished yet. Wasn’t too long ago I was on dialup… -@Packetknife hey now, some of my best friends are Australian! It’s not their fault. -@uberscientist just ask Nearly Headless Nick, one can be mildly beheaded. So too… -I think I mildly electrocuted my foot with one of these deteriorated Apple wires. -@killerswan that would be a heck of a loud bunny! It was in the marsh and I in my room. -@eevee #NotDestinedForProgrammingGreatness -@mdowd your haircut is very win32. But what’s a Metro haircut? -@mdowd nice quote btw http://t.co/PLH5SDN2NA -@mdowd @savagejen well you can’t mean OSX, and you can’t mean Cygwin… -RT @Joi: Was taking pics with iPhone while waiting for ride at the curb at Logan Airport and cab driver threatened to call Homeland Securit… -@mikkosniemela *cough* @BlogsofWar *cough* -Twitters and blogs are public, but flooding an innocent bystander with negative attention for your own amusement is malicious behavior. -@20committee @EddyElfenbein good to know! So you *are*, in fact, trying to ironically portray negative stereotypes of the Government Man? -So certain accounts are taking delight in a dramatic reading of Snowden’s girlfriend’s social media, as if this has something to do with her -@20committee @EddyElfenbein one of us needs our sarcasm detector adjusted. It might be you. -@BlogsofWar you voyeuristic creep. -@lsjourneys I’m so sorry. -@_am3thyst I just want to know if they’re random or they cycle through some small list -@20committee @EddyElfenbein You make me feel more at ease with every tweet. -Has anyone ever done a study of fortune cookie lucky numbers to see if there’s a pattern? -@20committee @EddyElfenbein see, this is why people think the NSA is creepy! What does she have to do with it? -@thegrugq @chriseng @rantyben I’m telling @SteveD3 -@thegrugq @chriseng @rantyben pff, who would give me a clearance? -Per @gdead , YouTube recordings of foxes sound close to whatever I heard -@RSWestmoreland I don’t think it’s in any distress, I think it just has an incredibly creepy voice. -@WarOnPrivacy suburban swamp. -@puellavulnerata @savagejen Eve is like this too. NPCs hire players to personally deliver documents because transmission is unsafe. -There’s an animal outside that sounds like a shrieking toddler and I don’t know what it is. No, not a shrieking toddler. -RT @KayinNasaki: best random Metal Gear boss idea from someone: Boss that yells "X-Box Off!" during the fight. "Snake, to win you have to l… -@vogon yeah I don’t know how you can mess up “like the 360 but more so” would’ve bought it in a heartbeat -@mike_acton something something Sony something something all is forgiven something something “Microsoft: Knights of the TOLD Republic” -@vogon I also get the feeling there’s trouble at home :p -RT @nico_prime: Rasterization and raytracing are two points on a fluid rendering spectrum. Algorithms between them exist. I call those "re… -I get the impression from Twitter that Sony’s presentation went a little better than Microsoft’s or something -RT @matthew_d_green: What the hell is with these DoD diagrams? Who makes them? They don't make any sense. http://t.co/R1b6wWNiwE -@EddyElfenbein @20committee do either of you think obsessing over this man’s girlfriend is of any non-voyeuristic use whatsoever? -@kherge I know. It’s just that the effort is so pointless. -@kherge I know. It’s just that the effort is so pointless. -@jamie_gaskins @plussone yeah, it’s just, what’s the point in treating public leaks as if they’re properly classified? Horse, barn, etc. -RT @JackLScanlan: Has science gone too far? Has it missed its stop? Will it have to take a taxi home from the end of the line? -@ShadowTodd it’s definitely aimed at younger children. It has an A+ ranking among eleven-year-olds everywhere. -@rantyben @chriseng but then again that never stopped the government did it -@rantyben @chriseng it instantly becomes a moot point to waste paperwork on -@chriseng @rantyben I’m just saying it’s nonsensical to classify looking at already-public material as a classified oopsie. -I love the government’s logic in “oh, classified materials leaked! Cover our employees’ ears while free citizens discuss them.” -RT @plussone: US soldiers ordered not to view or download NSA leak info on Guardian website. Memo: http://t.co/3Roe1YwkGv -@natashenka digimon? -@thegrugq all my computers are kawaii, they all gaze at me with big sparkly eyes -@1BlackICE1 as if I'm so talented! Got it off a random wallpaper site... here is a copy http://t.co/nRNeuLSdWh -@ereslibre lol sorry I'm half asleep -@ereslibre ... .... ....................... what? -There we go, nice and cozy. http://t.co/hRHgq4GLpR -RT @JessicaValenti: FINALLY: Obama administration will no longer block over-the-counter status of Plan B to women & girls of all ages http:… -@chriseng who are they overselling to? >.> -@JamesTCave pretty accurate… -@kyhwana @SIGKILL yeah so neither do I, since I do not live on a pacific island ;) -Google Drive: “You know what she REALLY wants to sync first? A few gigabytes of 1980s magazine scans” -@m1sp I can’t find any Flareon wallpapers of at least 1920 wide that I like :( -@m1sp_ebooks @m1sp aye. -# 344240787057414144 -This computer’s hostname is flareon *pat pat* -@DrPizza Dwarf Fortress in particular benefits from putting all the weight behind single-threaded performance -@DrPizza I actually don’t own a single processor with as much clock speed — the one I got today is 2.7ghz vs. 2.8 -It’s 2013 and I still don’t own a computer that gets more Dwarf Fortress operations per second than the Pentium 4 my mom bought me in 2004 -@demon117 eight should be enough for me into the foreseeable future :) -@demon117 21” no frills -And yes I’ve been using a generic USB mouse with actual right click button like the gods intended since I got my first iMac -@0x17h OSX can right click, if you plug in a godsdam generic USB mouse -I’m being told there’s a *software setting* I need to go change to get *right click* on a *mouse* -@tpw_rules it’s mouse-shaped and you can scroll by stroking its back but I couldn’t figure out how to right click -@dildog yeah so apparently in general they’ll just hang up on you -This stupid iMac mouse can’t right click. I have no use for it and I can’t give it to my mother-in-law because she knows how to right click! -@Kim_Bruning @chriseng (psst don’t make me look bad in front of my boss) -@Kim_Bruning @chriseng I don’t think he underestimates it I think we just have an ideological disagreement -“Hey do you want to set time zone by location?” NO OSX I DO NOT WANT TO TURN ON LOCATION -“Do you want to set up location services?” “No” “You sure? You need it for Find My Mac” “I’m sure” “Okay. Hey wanna set up Find My Mac?” -@chriseng look, that article you posted acted like there’s simply no way to compute over a dataset of all call metadata -@chriseng and that’s different from, say, the NSA how…? -I guess blocking is finally coming to iMessage so I’ll be able to share that with the public ! -If you ever typed something in to Google and it worked, you have to realize there is no such thing as too much data to process. -@chunter16 @eevee compared to how often any online user database at all is stolen -“I don’t know jack about data processing therefore metadata is harmless” http://t.co/87T1fp71vi -@ghostie_ yes that's a devil horn headpiece -@etzolin when I make up my mind, I make up my mind! -Welcome new baby! Old baby is going to a good home with my mother-in-law http://t.co/SjERp8aHoh -@Kufat actually the photo I posted apparently didn't post -@kufat inb4 judging it was three years old -I will not buy anything in Best Buy I will not buy anything in Best Buy I will not hey the thing I want is on sale Oops -@invalidname nope -@_paperino I never resell I give them away -Been thinking of getting new iMac and giving old one to family. How sorry will I be if I get one on sale instead of wait for haswell? -@innerproduct the iOS 7 video goes British American British -@janiczek just get a third party cable… cheaper AND sturdier -@mattblaze because ad hominem ! -I find a switch between a British and American speaker in a video very jarring -@Nial Amazon makes lightning cables now. Much sturdier. -@Nial nothing in particular. My lightning one started to show signs in under a month with me being consciously careful. -“We can make the best everything on earth, except for our $20 cables that are inferior to $2 ones” -Apple forgot to announce cables with insulation that doesn’t deteriorate within weeks http://t.co/oQogoEN7Rx -@secondlooklinux thank you but I meant the injection vector (though detecting it after compromise is obviously important) -@locks @ejacqui so it is! :( -@fiveinchpixie @travisgoodspeed @Jolly @sergeybratus and I take no responsibility for photoshopping it! This crazy foreigner made me do it. -@jenniferbn2 “that” == Apple keynote -Well apparently the iPad beta isn’t even in beta yet! Hmph. -So I can put iOS 7 on my iPad with the corporate developer account, right ? After the download server recovers from heart attack, of course -@lil_lost OSX updates tend to stretch a lot further. -@Anon_Central the hell? You’re not qualified to be an anon spokesperson if you’re going to be blatantly sexist -@thegrugq certainly not until after lunch Mavericks time… -@carl_vinas good grief man stop encouraging them to make an iPad every six months ! -Well that’s over. Back to the part where the NSA lied to the public by playing “cute” word games -@cji @jack_daniel I couldn’t watch the stream but Ars said it’s iPad 4 and Mini. -@quine it just deactivated, it’s safe -@Megan @grp and now she has an optional man-voice! -@snare actually… it is. I can tell them apart without needing to hear the words… -.@Sonikku_a I mean to be a *source* of public location-based app usage data -“Find the most popular apps based on LOCATION” where do I opt the heck out -@invalidname well the iPad mini is, to my understanding, an iPad 2, and that’s supported -@janardanyri I had one, it was actually fine IME. I got a 4th and gave the 3rd to a family member -@runasand what the heck kind of venue checks citizen status?! -Wait, did they just say it’s supported on 4th gen iPad but not 3rd even though they’re basically identical and six months apart? -@thegrugq http://t.co/gkYHtfuaGY I roll ascii-style -Oh gods. I had already managed to forget the word “mavericks” and there they go bringing it up again -@segfault314 no it does not! It’s my one major criticism of Apple’s security model vs. others. -They’re adding a flashlight ! Because it turns out all freeware flashlight apps are address book siphons -Is it my imagination or do these iOS7 screenshots actually look like what Android ought to be -@hirojin buy a Pixel and reformat it. Pricey, yes, but it exists! -@eevee I remember when I was 12 and getting the E3 issue of Nintendo Power was The Biggest Deal -@0x17h @dong1225 actually the Air plays medium-graphics steam games just fine -@tapbot_paul here’s hoping for a hell of a one more thing -“The new Mac Pro has a handle on top” so it’s a thermos?! -@txs dude, don’t release during WWDC keynote!! -Haswell sounds great but I wanted a better screen, so I guess this 2012 Air is subject to the hell of my backpack for another year -Augh, Apple, you forgot to say the new Airs have retina!!! Right??? -@tapbot_paul programming books, yes… -iBooks for Mac: “remind me why we didn’t launch this way again?” -@chriseng mine is both of these things AND Xbox coverage so nyah -Oh oh did they call Firefox's performance on OSX "kinda sad"? Preach the truth !! (But I use Chrome, not Safari, so uh, yeah) -.@Kim_Bruning yeah but like... who scatters all the related files for a project across the disk but takes the time to tag them? -But leading-edge science indicates that's a stupid name for an OS and I refuse to call it that -Tagging? I thought that was called folders… -Finder gets tabs! It’s like 2003 finally got through on a busy line -@captcarl13 it’s a joke I’m pretty sure :p -“We do not want to be the first software in history to be delayed due to a dwindling supply of cats” -"over half a decade" - also known in some circles as "five years" -@RyanHugh I *hate* cookies -#uirage Same Exchange calendar. Two different devices. One shows more meetings than the other. -I’m unashamed to say I’m twitter-stalking the NSA guy and talking about him behind his back. Because — well, you can figure it out -Holy rays of sunshine, he REALLY DID say he was playing word games that were “too cute by half” http://t.co/W9thNX4bSq Fuuuuuuuuck yooouuuu -Rival, yes, ideologically opposed, yes, we’d love to rearrange their political furniture, yes, but China is not an ENEMY of this country -That NSA guy I’m twitter-stalking keeps calling China the enemy. I didn’t realize we were at war with a country our economy depends on -@JeffGroves hey now, I am just as casual about hygiene as other geeks! -Is it my imagination or is the only apparent woman in this picture the one holding the camera? https://t.co/KkuqTOiIFr #wwdc -@captcarl13 ah well, never used two displays on OSX actually -The liberty/safety exchange rate http://t.co/Wit1ooKOTB -@captcarl13 useless if you have a mouse. Good if you have a swipey thing. -.@_nothingtohide <— No explanation needed. Mostly children. -@djon3s @savagejen it’s not in violation if they don’t distribute the program, which I somehow doubt they do… -@akopa I lack the time -@Jomann yeh -@travisgoodspeed @sergeybratus it is a fine work of art, but it would clash with the decor… -@fiveinchpixie @travisgoodspeed @Jolly @sergeybratus y’all jokers PRINTED it?!?! -What iOS users really want to see in an update: more Wacky Photo Effects! http://t.co/s78lmZR4AB -@mansaxel @pajp I assume that no matter where I host, some country will tap it, but some I worry a lot less about -@0x17h huh… I thought they were called tabbies as opposed to toms. -@0x17h where did this spelling come from -@comex @SebastienPage not real icons. Based on description. Yawn ~ -@WhiteMageSlave you live in a tent? No wonder you paid it off so fast… -#xkcd I’m anticipating a wave of people downloading Dwarf Fortress, running it without reading anything, and being confused… -Now the journalists are arguing over who the whistleblower liked better… gj -@Packetknife it’s not finished yet, but I have a great deal done -@Packetknife you’ll read my fantasy novel right? :< -@Packetknife I haven’t read it, but my impression is that the plot is more mundane but the characters more vibrant. -@RndPrecision @RandomStep nice hipster backpack, @wookiee … -Am I a bad person if I’m hoping Apple will release something awesome tomorrow just so I have something to say besides anger -@HollanderCooper @jesster_king presumably if someone was going to shop it, it’d be funny rather than just “huh?” :p -@focalintent remind me to teach the engine that the system’s line separator is not a sensitive configuration property… -@ErrataRob @puellavulnerata @sergeybratus @Packetknife she worked under Thicknesse, but there’s no evidence she was a Death Eater! -@ErrataRob @puellavulnerata @sergeybratus @Packetknife half the problem was Umbridge, who never worked for Voldemort -@puellavulnerata @sergeybratus @ErrataRob @Packetknife Harry goes from naively trusting the gov to outright armed resistance, you’d like! -@sergeybratus @ErrataRob @Packetknife they appear to solve the problem simply by employing the majority of Britain’s magical population! -@washiiko fifty functions that each do very little that call each other in a chain -I should host a class for Java developers on how to write code that nests less than fifty calls deep for fun and sanity -@zenalbatross hey now, Feinstein’s no man. -@ErrataRob @Packetknife or because he’s human, there’s nothing worse than a story with a faultless hero. That’s a religion! -@ErrataRob @Packetknife I can never tell when you’re serious -@_larry0 the college student in me says nooo leave it -@_larry0 🚓🚨🚓🚨 this is the pirate police! Come out with your hooks up! -@_larry0 … is that the entire PDF ? -@dipidoo hmm… I forgot about that button, as its functionality isn’t obvious! -@dipidoo can’t, opening keyboard collapses the dropdown and opening the dropdown collapses the keyboard! Yay! -I guess having a single dropdown with every single customer in it seemed more reasonable before we were so successful :p -Windows touchscreen + Chrome + trying to scroll to the ‘V’ section of a very large drop down list == #uirage hell -@jesster_king it is on a proper wall charger and this is a problem many people have had with this tablet in particular -@jesster_king was being literal based on past experiences; tried just now after > half an hour, doesn't work -I love how if you let the Nexus 7’s battery die, it takes hours to get above 0% charge during which time you can’t use it -@abby_ebooks timely, my dear -# 343879026399645697 -@ErrataRob @chriseng I don’t think they sit around planning super villain luncheons. But I don’t think anyone can be trusted w/ so much -@JackLScanlan … -@theROPfather and they stuck me in remedial English because I didn’t have Spanish or French on my transcript. -@theROPfather I went to a wealthy middle school that had a Latin program, then I moved and the new school was baffled at the transcript -@sciencecomic @BadAstronomer so you’re capping the world’s awesome con resource at about 50? -I know just enough Latin to be afraid of an insect species called bellicositermes natalensis -“The number of ants must be significantly larger than one to converge on the shortest path” gee whiz. -@ceelle1 @anamariecox sorry, I thought we were talking about communications, not loans… -@runasand yeah so… depending on just how off-the-grid you were… -@ceelle1 @anamariecox I don’t *have* a Facebook. Going Google-free is admittedly a serious effort but nonetheless possible. -@prbecky26 if you and everyone you love will NEVER disagree with the US govt no matter what, well that’s great, you’re safe. -@prbecky26 Yeah. No government has ever harmed anyone without fair trial over intercepted free speech. #nobigdeal -It’s a bad day, so here’s a Jigglypuff smash art http://t.co/gnFR4ZojI8 -@chunter16 we’re trying!! -@JeffreyGoldberg @wimremes incidentally, a huge portion of people who have defended the NSA to me live in Virginia or Maryland! Hmm… -@ceelle1 @anamariecox consensual sharing with a company with a privacy policy is different from involuntary surveillance with no opt-out -@LiamReddington <3 -I really wish I had a kitty to cuddle with right now -@Dell56 @anamariecox (and if I’m not satisfied, I can leave their service. How does one opt out of the NSA?) -@Dell56 @anamariecox (because I don’t know about your service providers, but mine have privacy policies I can call them on) -@Dell56 @anamariecox there’s only no expectation of privacy if you roll over and take it -@gilbazoid <3 -@20committee can you please give me some more concrete reasons to not like him than standard fallacies? https://t.co/h35wgK3TB0 -@0x17h SI unit of radiation is the banana, right? -@TheRealMKGandhi also why do I know so many people who make fake accounts?! -@Eyenstyn_v2 I don’t think screaming at the top of your lungs that you’re a celebrity is anonymity in a debate ;) -@DefuseSec I’m pretty sure @EJosephSnowden isn’t getting any money for being a fake account -Why do people make non-parody fake accounts? It’s not funny or insightful. -@albertwenger @EJosephSnowden @zooko https://t.co/yXVfKezdqE -@EJosephSnowden @ErrataRob @ggreenwald said all such accounts would be fake… -@CEJohnson_CEO @anamariecox but it actually *worked* this time and that kind of matters -In other news: it’s pretty manipulative of Nintendo to put play icons for games you don’t own on the main screen -@DrPizza I thought we all agreed by now that “direct access” meant via the order process rather than off the fiber taps… -@DrPizza @raudelmil maybe (just speculating) he had reason to believe going to Iceland would raise suspicions at home -The Guardian says Snowden leaked “the NSA files” and linked to this page http://t.co/QWUj0sUJMx so presumably he leaked the Verizon Order -What is right is not defined by what is legal. One had best hope that the opposite, however, is true. -@TheWarRoom_Tom @20committee I’ll grant that, minus the unnecessary ageism, if you can define Turing machine without googling :) -@Dell56 @anamariecox please understand that exchanging data willingly with a service provider is very different from all data being siphoned -@gallifreyan @Twirrim different person, completely arbitrary, coming though the RT chain. -I assume the bit about Hong Kong is less “champion of free speech” and more “champion of a perfect opportunity to show up America” :p -“We” (the broader security/privacy community) have been preaching the Bad News for years, but our audience is a trifle bigger now -@CEJohnson_CEO @anamariecox I was also talking about this in 2006 (when I was a minor), where was my audience? -Basically a surveillance apologist told me that a judge said it’s okay therefore it’s okay. No deeper concept of morality? -@TheBigFoxx @anamariecox yes, I completely disagree with your entire premise from roots to roof, but whatever. -@TheBigFoxx @anamariecox than* -@TheBigFoxx @anamariecox I have a big fucking problem. -@TheBigFoxx @anamariecox that presumes that “having a fisa warrant” is ethical. But the Verizon Order is 100% a blanket order of all calls -Got RT’d by someone with over a million followers which is cool except for the flood of invasive surveillance apologists -@TheBigFoxx @anamariecox I said stop arguing about prism because there’s this OTHER problem people are forgetting -@TheBigFoxx @anamariecox but the Verizon Order is Don’t tell me everyone forgot already :( -@chort0 @WeldPond great, now I can’t say I think Snowden is cute or it’s inappropriate workplace behavior -@j0emay (at him in a way likely to drag in ten billion people to a pointless fight, that is) -@j0emay still didn’t at him… I am Subtweet Supreme Queen -“The leaker doesn’t have a diploma, so don’t hire people who lack diplomas.” Top-notch surveillance state thinking https://t.co/9jhVGoETsm -@chort0 @justinschuh (I know I’ve said this already, but: I don’t blame Google, I absolutely do not blame Google for anything in any case) -@20committee do you always extrapolate to huge groups of people based on one who did something you don’t like? :) -@20committee you know, technical skill with computers has little to no correlation with formal education. All good hirers know this… -@justinschuh which is great! But the underlying theme of the NSA being far too data-happy remains -@justinschuh I’m saying there’s been a huge kerfuffle over what direct access means and it apparently does NOT mean google gave them root -STOP arguing over the semantics of prism “direct access” — HELLO THEY’RE COLLECTING ALL PHONE METADATA ALL PHONE METADATA -So, Snowden leaked the indisputably evil Verizon Order, right? The NSA-loyal are trying so hard to mudsling all over him right now. -@kcarmical well you’re always your parents’ child no matter how old you get, that’s a different use of the word… -@justinschuh didn’t he leak the Verizon order too? Not a lot of room for not understanding that. -@WickedSmaaaht @20committee I am interested in this definition of childhood which includes being twenty-nine years old -Now the former NSA’er is retweeting things calling 29 years old a “kid” -@zorm presumably @ggreenwald would have a good idea if this was the person who sent him the docs or not -@chead his username is 20committee , not atted because I’m not looking for a fight. -That former NSA’er I twitter-collected seems to be primarily offended that $200,000 wasn’t enough to shut Snowden up. -@null_ptr but it doesn’t have cartoon eyes! -@jonelf so he can’t be disappeared, I assume. -The whistleblower has outed himself. http://t.co/GsiaPI4zwz -I take it LaTeX doesn't have an ant glyph. http://t.co/MNsKMgmchJ -@tapbot_paul it’s not unfortunate except that you remind me of my stepfather — entirely not your fault. -@tapbot_paul is that really you? :o -@tapbot_paul geez, who jailbreaks? Not that I can recall though… -@tapbot_paul good assuming the pin is neither generically obvious (0000) nor personally obvious (birthday) -@matthew_d_green @mikko well, they’re clearly labeled as most likely not related to nothing ! Wait… -@EddyElfenbein @20committee this strawman joke really really irks me every time I see it :| consensually public info is different -@ErrataRob @WeldPond you really have no sense of humor, do you -@JackLScanlan I had raw meat in an Ethiopian restaurant once, it was amazing -@ragekit @puellavulnerata it’s a joke -@doot0 forwarding to @eevee -@chc40 @toddemaus context hardly even matters here :) -@rbf_ I have read it a few times in my life, but my opinion of that article is quite low -@troubledskies @0x17h in principle, it should be possible to run a USB cord to a battery in your backpack, if you’re going to a protest -@DrunkTzu now I have to guess who you are… -@dijkstracula @m1sp maybe the question is genuine. “No really. Why won’t anyone tell me WHO IS JOHN GALT?” -Don’t say something is “classic Sun Tzu” unless you’re prepared to cite, please. http://t.co/J36gSez9u8: bleh) -@chriseng alright who got your phone -@French_Freddy nope! We are very lax types -@KGLlewellyn @Tomi_Tapio … why are there more toilets than beds -@French_Freddy well for one thing I am already married! But I doubt he will ever marry anyone, that’s too normal ;) -Hang on, have we really not solved the cdorked thing yet? -@Tomi_Tapio darn. Apparently my furry radar needs more calibration… -@kaepora I’m pretty sure their denials are in fact true *as written* -@Tomi_Tapio serious question: are you a bunny furry? -@0x17h no-one who played Pokemon ever gets light year wrong ! -@jesster_king I also bought a t-shirt and it was $9… donno if they just put it in an envelope for just a necklace -@JZdziarski it’s not the jewels that count! -I can’t believe I just bought jewelry on the internet http://t.co/Wz2ioX71MS -@ioerror let us know when you get off the plane and we’ll have the cliff notes ready -@ioerror “hosted on corporate services” == amazon? -@thegrugq @hypatiadotca @pusscat I expect one at barcon then -@ioerror dollars to donuts they define metadata as not data -Fwiw I don’t blame the American corporations for this mess — not when we know that things like NSLs are handed out like candy -@dewitt if it’s any consolation, I genuinely believe Google puts in its best effort to try to resist -@dewitt what I originally meant was the govt calls leaking “reckless” because oh no people are complaining ! -@dewitt you need to get your sarcasm detector calibrated -@dewitt yes, it is well established I am Supreme Leader of Earth. -.@bhelyer context is reporting *true* things (like Verizon Order, everyone can agree that’s true and govt is so upset) -Media can only be “reckless” if it gets people hurt. Bruised egos don’t count. -@wimremes … referring to the tendency of services to spew identifying data when you connect to them before auth. -@wimremes it’s clearly casual terminology… -@wimremes then I guess he means “the data returned when one simply connects to an open tcp port” -@wimremes lol context? -@xa329 yeah — don’t understand why the GeoIP databases are convinced it’s in Colorado. -@m1sp_ebooks @m1sp well that’s a shame -# 343506050198147073 -@raudelmil the US govt basically considers itself to have unlimited rights to foreign data passing over US soil -@jesster_king on the webpage -@siuying pretty sure they speak English in Colorado, which was the joke. -@The1TrueSean @codeferret_ ouch -@The1TrueSean it’s nice someone invited you to a costume party you don’t need a costume for. -@Mudgutz what *doesn’t*! -@natashenka !xkcd:standards proliferation -They say they need a “specific” purpose - like “prevention of terrorism” which we KNOW is INCREDIBLY broad. http://t.co/xQUxF62LWP -@nwerneck well, it routes straight across Canada then drops down. But contacting Canada doesn’t route through Canada :p -@wrl @eevee I’m not quite a font hipster… but I literally can’t read ClearType, so it’s pretty easy :p -@tangenteroja @xa329 the host name isn’t in the Netherlands! It’s presumably in England but GeoIP says it’s in Colorado -@PBTender they're definitely from Africa, but I'm embarrassed to say I can't identify more specifically than that. -@PBTender I promise I could identify Greek! -@xa329 I'm starting in Sweden, but it seems everything I could possibly connect to outside Sweden goes through same spot in the Netherlands -I can usually identify languages but the couple of families picnicing out in the yard have me stumped. And their food smells good. -@dshaw_ in my case it was a parody account with like five followers. -According to traceroute, I can get to *Lima* from Europe without passing through the USA, but not Montreal, Mexico City, or San Paulo -@crstry confusing they didn't say londuk in which case it would have been obvious -What the heck, Twitter is urging me to "reconnect with [username], use a tweet to get in touch" Back off, Twitter -@crstry @tangenteroja I think someone's suggestion of Lond[on], En[gland], UK is correct -.@Yirba_ stop being reasonable -@ebcube and the US, is, in fact, a major cable hub! -I suspect the GeoIP is incorrect for that, but that would imply that someone in London didn't know how to spell London and that's just sad -@ebcube They're mostly interested in connections with where servers are, I assume! -@ebcube but wouldn't connecting to Spain provide an overall faster internet experience with fewer hops? -Guess the geolocation of this host's IP: http://t.co/YDHlwz0YD3 Hint: it's a place that can't spell London -@ebcube yeah but... what about all the cables that have absolutely nothing to do with such a concept, why would this one be special -@r4vi I am. We're not *all* monolingual ;) -I admit I'm really confused why everyone assumes that the placement of long-distance cables has to do with language ancestry. o_O -@r4vi I know, I can read it. -@tangenteroja that was kind of my entire point -@ebcube I don't think that's how networking cables are laid ^-^; -@deathtolamo um... none... I just tracerouted from my machine in Sweden to South Africa -@aris_ada @meikk I have no idea, but if it does, why not just alias traceroute? -According to the traceroute I just did, the Netherlands has a direct connection to South Africa?? -@tangenteroja yes, that is what I have been yelling at the top of my lungs about for a few days now -"E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?" You're the computer, you tell me! -Why on earth does this ubuntu install have traceroute6 installed but not traceroute -@giovannibajo I consider SSL mandatory, but there is still a lot of metadata, and the US can’t simply up and seize servers or whatever -@jgeorge but you know — I have serious depth perception problems — I probably shouldn’t be shooting at anything ever. -@jgeorge my father is LEO and a veteran, it’s not like I’ve never seen one :p -@ramonsuarez @treyka well, I did say “help”, it’s no guarantee. :( -@elad3 my Arrogant American(tm) opinions on Israel as a government are not very favorable -@r00tine though how many are properly regulated? Probably like two :( -@r00tine yes, but it’s not an inherent trait of intelligence agencies to tap civilian fiber, if they are properly regulated -@elad3 routing through most of those places would already see a lot of arbitrary dropped connections -Of course — I’m sure other countries are spying too. But I doubt any of them have as big a budget. -@RSWestmoreland I assume… -@octal unfortunately I don’t think there’s a good way to route to the rest of North and South America without going through US -@jgeorge the only gun I’ve ever owned is the NES light gun -You can help protect your non-American customers by hosting in places unlikely to route through America except to reach Americans. -PS — I have been using this hosting service owned and operated entirely in Sweden and have been satisfied — https://t.co/N9Bj6awL58 -@batslyadams oh gods it’s the Shadowgate nightmare of my childhood on acid -@akopa @m1sp yes -@m1sp let’s engage in matelotage which is my new favorite word -Have New Super Mario Bros for Wii? The fan-made sequel (depends on having the disc) is finished. http://t.co/ECFAr02haH -@wimremes I believe the EU said the Verizon thing was purely a US internal matter — which makes no sense. -@apiary am I allowed to say he’s actually looking pretty good :p -I got a hat at 7-11. Somehow. http://t.co/vUmDiFQLoj -Matelotage, gay marriage for pirates http://t.co/vs2P24yNfe -Started a signal intelligence flamewar. Going to 7-11. #typicalsaturday -@donicer I’m not ignoring you, I just can’t make heads or tails of “humit making a sigadz I do ew” -I leveled up in American today - someone sent me a selfie of them posing with a gun! -@donicer @20committee @TheWeek maybe we should continue this discussion when you’ve sobered up enough to spell with the aid of autocorrect -@donicer @20committee @TheWeek I’ve found sources, other than this article, which say it’s “signal activity designator” -@profoundlypaige that looks incredibly painful -Hey - someone who claims to be former NSA (@20committee) says to read this http://t.co/rpSpy0koSG and it actually makes A LOT OF SENSE -@chriseng but we’re arguing until we’re blue in the face about semantics, which is spot on for our industry -@grp and bless their hearts. But the point is more getting people to actually acknowledge that it’s real and happens a lot! -@matthew_d_green they do specifically deny getting an order THAT absurdly broad. -@grp — through direct communications with employees, *as opposed to* fiber taps. -@grp and that’s my point; that “direct access” was taken to mean, like, a shell on the database server, when really they mean it goes — -@DrPizza we knew all of this for ages, really -@grp “Here is a letter which describes what we want. Fulfill it or see us in court.” -@grp I’ve posted or retweeted all the links to them myself. They agree with me: they have direct SOCIAL access. Whether they want to or not -Anyway if we take the new slide as being real it seems to unambiguously agree that massive fiber datataps are totally a thing, yay! -@grp and it seems the PPT meant direct access in a social sense, not a technical one. -@ioerror you have almost 44,000 followers, I wonder how much of the internet is within two degrees of you? -@tenfootfangs @Sakuya_Izayoi *maximizes pic* wow, fangs would love this pic *minimizes* oh -@bobpoekert they all are? -@French_Freddy heheh well, I don’t think he’s going to marry who I suggested, but we love each other but not in THAT way -Another alleged slide from prism.ppt, yes just one. http://t.co/Q8Ef05v6R8 -@savagejen @ioerror I aspire to become a node prime in my own right! -@nickdepetrillo you appear as a character in my dreams far too often for someone I’ve only met irl once! -@French_Freddy what? It’s the best thing ever -@m1sp I love you platonically (=^ェ^=) #nosleeptweets -“That is a very 5am 0xabad1dea tweet” yes indeed!!! I am just going to own not sleeping tonight and have some coffee… -Like this relation-ship has sailed over the Friend Zone event horizon beyond which there is only friendship and rainbows -@washiiko @MAID001 lol what Who even sits there and thinks “I’ll make a twitter bot…of a hateful maid!” -@Wxcafe other gender than mine -I’ve reached previously unexplored depths of the Friend Zone: trying to arrange my other-gendered BFF’s marriage -@die_no_might only with pills. Forget pill == toss and turn all night -@washiiko one night I couldn’t sleep. And the might after, and the night after, and every night since, to the point of tears -Still kinda freaked out how I spontaneously lost the ability to sleep a few months ago -Forgot to take my sleeping pill. 4am. Wide awake. -@kivikakk #closeenough -@renpytom ooh, yuck -@renpytom or more precisely: did you have a directory structure with seventeen *trillion* small linked files or what -@renpytom what was it doing?! -@kivikakk winnar! -# 343154396982554625 -@ErrataRob and I clearly just found it funny :) -@ErrataRob I just pointed out that the guy in the video says Australia is on another planet. -@ErrataRob My claim? I didn't make any claims... -@innismir @thegrugq change starts at home, which is why I've been shouting at the top of my lungs for two days to stop spying -Maybe the problem is that Americans think Australia is on Planet X https://t.co/qClir6Y3Wh -@innismir @gangstahugs Chilling effects bro. Even my grandma jokes nervously about texting the word "bomb". -@dijama I don't always agree with my opinions either! -@gangstahugs and congresswomen, and congressbeasts of all stripes of monstrosity. -@innismir @thegrugq by common sense? Yes, insofar as the EULA/ToS goes. By the NSA's twisted definition? No. -I hold this truth to be self-evident: that the right to free speech, privacy, and freedom of association does not depend on geography -@innismir @thegrugq yes, but that's a tiny footnote to the broad theme -@innismir @thegrugq I believe that privacy and freedom of association are *human* rights. I would be remiss not to stand up for them. -@innismir @thegrugq same difference, considering how bloody difficult it is to get in here legally -@xa329 @wimremes we hold these truths to be self-evident, that life, liberty, and pursuit of happiness only apply to people born here -@Mr_Reed_ now that, I actually would not say, as the censorship is active rather than passive -@thegrugq American exceptionalism is so ingrained that many perfectly nice people are confused why I'd say foreigners have the same rights -@m1sp you around to play tonight? <3 -@m1sp “who let the minmatar design Eve’s server cluster?” -@BurnWorldgov I think they don’t know some things, know others but have to dance around them -@BurnWorldgov I suspect the denials are literally true but dance around some details -It’s here! It’s going to be an exciting weekend http://t.co/ZNZqdb3Zkx -So we’re in a weird position where the companies deny it but the government does not, just that the article contains inaccuracies -@demize95 I think the compiler is only allowed to error on things that cannot be compiled -@0x6D6172696F @lcamtuf I think what is true all falls under Google’s concession that it is forced to play along with SOME stuff. -@0x6D6172696F @lcamtuf well, it’s 100% possible to be involved with prism and not know it by that name; -@nickm_tor that episode is over twenty years old you know. -Google’s long form denial http://t.co/V4oCufESmr -The rainwater management in this town is... poor. Mini-floods everywhere -This is her opinion on most customer code http://t.co/fwCev9wzLd -@friestog Source Insight -The code she's standing on is open source btw, I'm not leaking Customer Secrets -Reached that part of the day where I’m taking code auditing advice from a vocaloid figurine http://t.co/BcC3ZjBH9g -@lorenzoFB @a_greenberg one of the files is literally an HTML to PDF of one of Cryptome’s records of voluntary redaction -@lorenzoFB @a_greenberg they straight up copied stuff off Cryptome as I was shouting this morning but this was lost in the noise… -@savagejen in the context of the time, can you really blame us? -Bing. (It works if you use "MSDN Search Powered By Bing") http://t.co/hMKV9W0mQ7 -@demize95 hmm, well, conceivably it could be doing something “cute”, I’m looking for the exact code that would trigger this warning now… -@ReinH unless you’re @MarkKriegsman -One of the warnings this code has disabled: "recursive on all control paths, function will cause runtime stack overflow" ... ... ... -"It compiles without warnings!" #pragma warning(disable:...) -workstation, playstation, I am 19 years late to the pun -@xxDigiPxx if this were at home, it'd be a PlayStation -Is knowingly leaving your workstation unlocked for the cheap thrill of risk a known psychological disorder yet? -@yakushim do I really believe that privacy is a right if I say “well of course not for people born outside of this arbitrary border”? -@yakushim I can’t force foreign governments to do what I think is right, but I can do what I think is right: to apply human rights evenly -@kcarmical unfortunately there is no perfect answer as to where exactly the line goes — just doesn’t go where it is now! -@tapbot_paul yeah, why not? -@kcarmical transparent, accountable, limited? Or just “we said it’s legal therefore you can’t stop us neener neener”? -@tapbot_paul (obviously some American rights, such as to not quarter soldiers, don’t translate to this context) -@tapbot_paul in this context I’m talking about basic rights like communication, free association, privacy and being presumed innocent -@kcarmical secret snooping by secret programs for secret reasons == totally invalid and morally bankrupt -@tapbot_paul it’s not a “right” if you stop treating people with respect because they don’t have feet on the right dirt -@kcarmical my stance is there’s no valid reason to go digging around outside a specific, documented, transparent criminal investigation -@kcarmical basically what the govt is saying is they would never read *my* gmail, how awful, but my BFF in Australia, fair game! -@kcarmical respecting the basic human rights of communication is not putting the concerns of foreigners above Americans -@blowdart I’d let you vote but nobody asked me, funnily enough. -Also maybe some of you are sick of hearing me rehash how angry I am but the time is now the place is here to be very very angry -I realize that statement has a bit of length-induced grammatical ambiguity. I am saying “FOREIGNERS” DESERVE ALL RIGHTS. -@itsdapoleece err ambiguous * autocorrect -@itsdapoleece rereading my statement, I may be grammatically unambiguous? -Also I’d like to smack all my fellow Americans who genuinely don’t care if it “only affects foreigners” ffs that’s most human beings -not a joke???: Fox News calls to gorge on donuts to stick it to The Man who wants bike and walk friendly cities http://t.co/tc0yCEo76b -@Pubteam okay, yes, but that wasn’t my question ? -Also why the hell is the entire government acting like obtaining phone numbers ISN’T obtaining identity? Do they know about PHONE BOOKS? -I know no word nor art to display my contempt for the President’s definition of secrecy. http://t.co/mNg3SMJ4uk -@0x8badfl00d @ca13ra1 that’s several degrees beyond the point with the government :p -@boblord but @0xcharlie can and he’s just holding out, right? -@snare w… what did I do :’( -@YourMomBot @armcannon buuuuurn -Emotion is the social logic, subject to a calculus far more complex than our mathematicians can reckon with -@hattmammerly that's the one I already posted as just being taken from cryptome -@TruyCrussley @kyhwana we don't know what you do or don't do, why would we? Why SHOULD anyone? That's the point. -@drunknbass I make a lot of money ;) -It’s fighting back… http://t.co/M5hWrG7Wzu -@drunknbass where I lived in VA, going rate for IT workers was thirty five thousand … -@drunknbass because you described to me a twenty thousand a year job maybe -@drunknbass well you don’t need a high school diploma. And I live in America too and California must be a very different place -@drunknbass where the hell do you live that pays forty thousand a year for an unskilled job -@bcarpe211 @savagejen false dichotomy :) -@drunknbass it goes up to eighty thousand which is quite a lot for a government job! -What are these arbitrary numbers even supposed to be http://t.co/YAPUrZfjLu -“White House put out an advisory that National Security Advisor Tom Donilon will hold a media briefing on Saturday” someone’s weekend ruined -@randalleclayton @fakedansavage an old internet meme is reused! -@savagejen but, if the whole point of Prism is that it’s totally okay to spy on foreigners, what are we to do? -@vogon not necessarily? I’d assume it would have some semi-idiot-proof interface for data monkeys to use -@RSWestmoreland @HackerNewsTips yes, and that’s what we want to happen -@WeldPond @GerriWillisFBN green room so they can put a matrix effect in the background, right? :p -Though, checking the real Cryptome, they have some resumes which name Prism as a data collection management tool http://t.co/ozt44jvCqp -FFS Anonymous, rehosting Cryptome is not a leak http://t.co/bkdJpVJolU -@txs @collinrm @nickdepetrillo clearly NickDe is the beauty because of those feminine eyebrows -@danhett @Tomi_Tapio except for the way it tends to be the first google result implies there may have been a lack of good google results. -Soooo…. Is Keith Alexander still coming to Blackhat or…? -@Pontifex @nonstampNSC I’d like to give a Missing The Point award to the Americans who say there is no food shortage in America -@trufae they lost plausible deniability. It’s the difference between “you’re cheating on me” and “you’re pregnant!” -@m1sp wat -@nrr @SwooshyCueb @eevee well I know you’re adorable irl, but I lack data on eevee -@TruyCrussley @mikko gods, some people, can they really not understand this is about friends of friends and networks? -@trufae yes we ALL KNEW, that’s really not the point -Bill to deny alleged hackers and their *family* entry to US http://t.co/1WMOp1gr3C #GuiltyByAssociation -@shalecraig it’s on Windows 8 by default! -@a_greenberg June Bug Day -@chead lol I just mean that if protection is what she's so worried about, that seems contradictory. -@chead one or the other lady! -@ELLIOTTCABLE @rfc2616 ... -"It’s called protecting America." A literal quote that Feinstein actually said -@ELLIOTTCABLE @rfc2616 I'll respond to anyone who @'s me (which in turn just causes more people to @ me) -@rfc2616 aerial floods are the bane of my roof -Personally I wouldn't issue emergency notices featuring a highly unusual word that looks like "area", "a real" and "arial" all at once -Bing Weather wants me to know about "areal flood watch" and that's technically correct so I can't decide if it's a typo -@WorkingDemocrat @AdamJGreene Except for the English language, of course. -@spy604 more steampunk actually... but a major theme is power in the hands of too few people -@averagesecguy @MalwareJake because, when it's possible to retain it for effectively forever, and you suddenly "need" it in ten years... -The 404'd thing is back. Maybe they had a glitch because they've never had to publish two things on the same day before :p -@ErrataRob no? I reckon I am unaware of such a contest -I should channel all these emotions into work on my novel -@dong1225 was his dad killed by slavers or something because I seem to have hit quite the button -@RandomStep “permanent damage has been done to our ability to spy on Americans!” I might be summarizing. -The Director of National Whining About Being Outed’s confession has gone 404, I see -@MalwareJake whoa -@Kufat why would I? I was trying to have a discussion with them -@dong1225 man what the hell was that about? -“Wahh stop replying to me replying to you!” — twitter person who I finally convinced to block me like nature intended -@superMTW yay! -@superMTW …. Stop what again? I was replying to you replying to me… -@superMTW block me, it works better. -@superMTW o____O cool story bro Spying on the general public is wrong no matter where they live -@superMTW and it’s a REAL EXAMPLE of something that was TOTALLY LEGAL in THIS COUNTRY. -@superMTW I’m way out of line? I didn’t extrapolate. I just copy-pasted the logic that something is moral if it’s majority. -@superMTW just like a huge majority of the American public was okay with slavery? -@superMTW just because something has “always been done” doesn’t mean it’s okay -@superMTW …. Sooooooooo? -@superMTW seriously? Whether or not a human being deserves basic rights depends on whether they have a foot on our chunk of dirt? -@superMTW this one is about the Verizon thing, actually. But so dirty evil foreigners don’t deserve no privacy? -“Wahh, boo hoo, no fair” — Director of National Intelligence http://t.co/W1xHFPpBgy -@m1sp don’t scare me like that ;-; -@m1sp … right? -@m1sp … no you don’t :( -The good news is: I found cartoon fan fiction my BFF wrote when they were ten years old #treasure -@puellavulnerata probably because it’s so compromising that the NSA would literally be out for their blood. -@puellavulnerata pretty sure they have deliberately not posted the whole thing -I can’t even keep track of what already leaked vs suspected anymore -@excsc not by THEIR definition. By THEIR definition, automated collection is not surveillance, only human eyeballs is -How paranoid is it to think the US would trade data with close allies so they can each “not spy” on their own citizens? -@innismir nothing! I’m just using it for its shielding -@kyhwana and I can’t go into it, but suspicion of US govt interest is not unfounded in this instance -@kyhwana a log-on to the account from within the Google Datacenter itself. No similar things in other accounts -Incidentally, the most prism-like thing I’ve encountered happened to the gmail account of a non-citizen -“Prism is real but we only use it against foreigners” http://t.co/uFqkm4RaTT -@DrPizza as my father with a clearance says: “Half of all rumors are true and half of what they say is a lie. But you’ll never know which” -@RSWestmoreland @pmocek @declanm AOL is listed under prism… -@DrPizza IMO the denials are very specific and emphasize “legality” of actions -I undid a retweet because the domain name in the image didn’t exist, but it turns out their admin is just incompetent -@paulg @sanitybit hello yes this is Cassandra speaking -@DrPizza between NSLs, clearances, and legalese, that is necessary but not sufficient to actually not participate -Ctrl-f “prism” in this article from 2007 http://t.co/WWl5CzHBST h/t @panther_modern -@panther_modern @bobpoekert haha sorry, some of the smaller details were lost on me as I stared at the slides themselves… -@RSWestmoreland @m1sp when two people love each other very much, but like, not like THAT, I mean…, -What is a SIGAD? -@JR_Nelson @kurtopsahl yeah I’m not sure what difference they think there is -@m1sp I need a friendship hug -@TVietor08 you say it’s a joke, but not in very good taste… as one ought to know the difference between willful disclosure and otherwise. -@apiary we all figure they are it’s just there’s no proof -@ELLIOTTCABLE Verizon metadata being shipped to govt on daily basis -@tapbot_paul ONLY twenty million a year? That sequester really works! -@ELLIOTTCABLE prism, I’m not saying it is, I say I’m reserving a chance for it to be -… Though the information, as presented, is technically feasible IMO. -@redtwitdown @jperkin government officials are not known for aesthetic taste -Since this follows last night’s news so closely, I do reserve a chance of it being an elaborate hoax meant to ride the media wave -.@panther_modern suggests (via Ars comment) the codename PRISM may refer to fiber splitters “reflecting” the data stream; farfetched? -@dan_munz @tapbot_paul *slow clap* -@dan_munz @tapbot_paul *slow clap* -@eevee @habnabit *facepalm* -# 342792505340858368 -@Pepyri_ well, it’s completely unambiguous that Apple can decrypt iCloud and iMessage server-side -@trevortimm @0x17h I have a problem, and that problem is the urge to simplify your statement to not include Skype and YouTube -@Pepyri_ well the gov immediately admitted the thing he published last night was real, so let’s see what they say tomorrow :) -@Pepyri_ and apparently Paltalk is big in the Middle East? idk. But @ggreenwald thinks it’s legit and he’s pretty good at this -@Pepyri_ I’d assume gmail is easily the biggest, most important, most useful thing on that list (even gets a separate icon from google) -@Pepyri_ as it syncs constantly what you have in the text editor -@Pepyri_ non-technicals are prone to incorrect descriptions of technical capability; but in gmail’s case that could actually be literal true -@Pepyri_ I doubt there’s a unified interface for all of them, it’s probably very piecemeal and ad hoc -@SteveD3 though adamant refusal is not out of the question given they’ve resisted smaller things. -@SteveD3 relatively low volume of private data, I assume. -Of course the PowerPoint is terrible. That’s how you know it’s legit: the NSA graphics department doesn’t have the clearance -@m1sp though, the amount of data passing through twitter that is private is very small compared to the public data. -@DrPizza because the graphics department doesn’t have the clearance. Duh. -@kaepora I heard in Japan they call it “the fox god takes a bride” so the association with deity actions seems cross-cultural -@dangillmor @kaepora I’m assuming it’s legal dancing about the definition of backdoor. -And @ggreenwald’s version - http://t.co/TPgNsfripO - time stamped within a few minutes of each other, so idk whose scoop it is… -Washington Post drops another, entirely different surveillance bomb. Check the slides. http://t.co/hrIkTPny1l -The Japanese soft keyboard in iOS is so much better than English this is incredibly unfair http://t.co/H8qwoENY4m -@myfreeweb seeing as tor is a charity project. -@myfreeweb or we could acknowledge that there's not really a good reason to throw plaintext around and solve the problem entirely -@myfreeweb private by default is the only way to ensure privacy is ready when it's needed. -@myfreeweb if the person downloading it happens to consider that act private, because they're in Censorship Nation, they're out of luck. -@0x17h @ashedryden idk, I wouldn't dare call myself devops lest someone who actually has to stay up late for Push Night beat me to death :p -@vladspears @cyclerunner "equally true" != "the same" -@elad3 @glyph ... though perhaps a many-to-many signing system like pgp, possibly complete with real world corporate signing parties! -@elad3 @glyph If I knew THAT... -@meursalt Gov never silently disappears people who leak. They make a big show of it. -@glyph yeah, pretty much. It's the issued certificates that are broken, not the cryptography. -@Kufat #FactsFrom1998 -@Wxcafe that was the (fix HTTPS) part :p -I think it's high time we push to get plaintext HTTP officially classified as a legacy protocol in favor of HTTPS. (And then fix HTTPS) -@attritionorg are there even 32 different certifications in the world? -@tapbot_paul Feinstein is flipping out and on a witch hunt. Also, no FOIA has ever been processed so fast! -@hemantmehta @comcast that… sounds distinctly not legal. -@matthew_d_green (one time pad) ^ (plaintext) == (cipher text) -@stephenfry <3 -Dear whoever leaked the order: I deeply admire you. NEVER leak any evidence as to your identity. -@xthread unfortunately, it turns out I have zero votes in Georgia -@n0x00 @gsuberland @ioerror I was polite and didn't hack them. -@thegrugq @ioerror a lady never swears when writing a formal letter. The automated filter might catch it. -The last time I wrote to a representative, I did get a non-canned response, but it was basically "thanks for wasting your breath, kid" -cc @ioerror: complaint registered. http://t.co/4tYh2148M2 -@eevee sounds like you’re in quite a … … sorry, I’m sorry -@ioerror (really though, how DO I register a complaint with this lackwit?) -@sciencecomic whoa spoiler alert -@ioerror where does one find the official public complaint box for secret orders? -@DrPizza I have some ice water here that they may wish to borrow… -OH @ternus: "Why is your job title listed as VP of SQL Injection?" -@EightTons also, technically the output is neither graphical nor audio, but can be cast as such :) -@EightTons well, SDR# actually supports receiving the output over TCP, and there are the command line tools for Linux -@EightTons in theory it's an FC0012, and my tablet only has one USB port... -A system administrator types into irc: "ls" Go on... -@tapbot_paul my sensors indicate probably not -@Neostrategos @The1TrueSean I don't think I could keep a straight face on Fox, sorry... -@nullwhale yes I know ;) -My demands list for being spokesperson: - A scepter - The scepter needs a +5 bonus (to spokespersoning I guess?) -@Ammoniak because then I'm not allowed to complain about <redacted> -@ra6bit well I figured you *had* to do it, but that doesn't imply that you *wanted* to or that it was a pleasant experience :p -Hey kids: Don't make the same mistake I did. If you're too active on Twitter, the PR department will classify you as a company spokesperson! -@ra6bit this is one of those things where you’re not sure to offer congrats or not -@batslyadams \o/ -@jennifurret you don’t follow enough security and privacy advocates -@jesster_king @GreySyntax I use the official client because I like to complain of misery. -Android trojan exploits bugs in dex2jar, the manifest parser, and the permissions system. Wow. http://t.co/jvnr7Bptdm -@MimiHound LOL for a second I thought you were responding to my quoting Benjamin Franklin at someone XD -So yeah I have a literal wicked stepsister. And a neurotic step-nephew who may never recover from the behavior problems she's given him... -@furicle there are countries which emphasize helping criminals rather than punishing them and it turns out that's better for society. -.@furicle there wasn't really enough space in the tweet for "Jail, as envisioned by the so-called American justice system" -Jail is a fundamentally evil concept, but a distant family member who abused her toddler son is going and I'm fresh out of tears to shed -@codeferret_ I am also there is a package here from your mother and it's really big ?? -I have a fever, so some part of me is hoping I'll wake up and the American surveillance state was a fever dream -TIL the Microsoft Outlook web client makes a Windows ding when you get a new mail, which is confusing as all get out when you're on OSX -@tuomotanskanen @marshray I don't think we're using the definition of "valid" that means "the machine understands it" ;) -Google Voice transcribing a voice synthesizer comes up with my name being "Melissa Yeah I Read It" -@MatthewOden I don't think "SELECT * from * where * = *" is a valid court order... -Venting, please ignore: why do people exist who think it’s okay to spit on the grave of the Fourth Amendment -@jesster_king @normative http://t.co/i9453JQcBu -@dangoodin001 @thorsheim @jpgoldberg it's just a stupid redirect bug in the first case, echoing someone else's claims in the second. -Note to self: Don't attempt to adjust VPN settings while being talked through a problem on an IRC channel connected to over VPN -@jesster_king @normative my gods. -@thorsheim @jpgoldberg I was told Twitter already knows of the first one and it "should be fixed" two days ago already ;) -@jesster_king @normative and that makes it totally not the most flagrant violation of my privacy forbidden by the constitution imaginable? -@jesster_king @normative it’s no laughing matter -@jesster_king @normative I’ll show you my house if you really want to see it… I won’t show you my communications metadata. -@DrPizza everything. Just… everything. -@gsuberland @addelindh well it’s just that I’m at home because I still have a slight fever so if something comes up… -@savagejen why does a creative content site even have a downvote button -“To my knowledge there has not been any citizen who has registered a complaint” of a top-secret order with a 25-year expiration. #gotohell -Fellow Veracoders: am I the only one whose mail server connection is completely borked (from multiple computers) -@DarrenPMeyer I’m not even mad at Verizon as it’s not their fault the gov did this and standing up to it is not a trivial matter -I’m convinced that Dianne Feinstein is the devil. http://t.co/wuwBTz8PVL -@jack_daniel acceptable at small font sizes, looks way too bland at large sizes -@ErrataRob on 3G, 174.236.3.x -@_wirepair I guess they still get the phone book delivered at the NSA -@thorsheim @jpgoldberg and you bette hope you never uninstalled tweetbot or whatever. -@thorsheim @jpgoldberg second, if you deactivate and reactivate an account with two factor, you can’t log in through the web anymore -@thorsheim @jpgoldberg it will break when it redirects you to the mobile twitter instead of to the page to enter your one time code -@thorsheim @jpgoldberg I know of two problems: first, if you try to authenticate to a third party with twitter from a mobile browser, — -@zephyrfalcon nope… -@ELLIOTTCABLE @vilhalmer you are so drunk (I assume) -@ELLIOTTCABLE well *something* you did/said made me think you were 16 or 17 :p -@ELLIOTTCABLE this is documented under “some other stuff” ;) http://t.co/NQeo7qAGMr -@ELLIOTTCABLE haha well, I just remember you being a minor on Google Wave and bragging about your eight-core ;) maybe 17? -@bmirvine never -I have a fever, Twitter’s 2-factor breaks in corner cases just like I bet it would, and this country is everything it said it wouldn’t be. -@nicholsong yes I assume so too -(I’m being told that Verizon Business Network is just a subset of Verizon, which they refer to as Verizon in the paperwork) -.@tapbot_paul oh I assume it’s all of them in perpetuity, but we *know* I’m monitored until at least July 19th! -I have Verizon, and I’m sure you’re all dying to call me now -@tapbot_paul what do you think all this “secret interpretation” stuff is about? They give themselves the OK according to whatever loophole. -@tapbot_paul about ten years ago, according to those who have spoke their conscience -@mattblaze oh I would assume so. The dates are very arbitrary, like a calculated deadline based on a rule. -Damn the American government’s electronic dystopia. http://t.co/Xr9xVMSFdn -@ggreenwald @ErrataRob @trevortimm @guardian well, yes, the link could actually work, for example ;) -@ELLIOTTCABLE sorry, everyone is stuck at the age of which I first met them in my head forever and you were like sixteen -@ELLIOTTCABLE you’re 21 already? -.@gangstahugs I assume it’s poorly written because all the journalists and cops together couldn’t imagine the lock may be flawed -“They’re hacking the car lock in front of our eyes, but that’s impossible because it’s secure!” http://t.co/QCdlzTVOKG -@0x17h how gracious of them to encourage the field of study which most handily destroys them -Load up face recognition experiment, assume it will work on iPad... "press space to continue" Who lets scientists near a web page anyway -@Randominterrupt no... -@zephyrfalcon black, skintone, light green and dark green (I would guess the two light colors are what look the same?) -# 342429670341484544 -@xa329 no, no, no -Internet, I have a dizzy, please to send cure -@pervocracy @hypatiadotca do you know how often I’m accused of stating opinion as fact even WITH the disclaimers? -@RSWestmoreland @dshaw_ nope. Because no-one else would ever be able to make heads or tails of it anyway. -@PiersonBro well, conceptually, they're brass. But I only have four colors. -I made an art!! Like all good arts, it has exactly four colors http://t.co/EjwhFmcw1c -@0xcharlie @MarkKriegsman you're supposed to extrapolate to code more than two lines long :p -#uirage Pixelmator (cheap photoshop clone) has tools which aren't listed on the toolbar and you have to psychically infer shortcut key -*rolls over* wheeeere's emet version fooouuuuuurrrr -Wow why are people talking to other people in person so much today *checks work mail* *error* oh -@Saturn500Jared @trap0xf @BadMiiversePost yeah yeah, kids these days, don’t know how to operate record players either, America is doomed :) -How to prove you are a robot http://t.co/XwJsRHnv8D -@argonblue @MarkKriegsman (sorry if that sounded cross btw. I sound cross a lot in ASCII) -@argonblue @MarkKriegsman … without concern to the fact that almost every C program ever written won’t work as intended *somewhere*. -@argonblue @MarkKriegsman sorry, by real world I meant, on the computers we actually own and compilers we actually use in every day life… -@argonblue @MarkKriegsman turns out in the real world that doesn’t really matter -@BadMiiversePost @trap0xf so we’re making fun of kids for being young huh -@jcchurch @MarkKriegsman well we know who here has never tried to hide a backdoor in a codebase -I am required to inform you that the monstrosity I RT’s from @MarkKriegsman proves the superiority of binary analysis over source -@MarkKriegsman w w What are you doing -@spacerog @hdmoore @hellNbak_ and that doesn’t make it relevant to the events of the last 50 years; we need new agreements -@spacerog @hellNbak_ @hdmoore I don’t think anything to do with computers should be reasoned about with reference to a treaty from 1648… -.@inversephase I eventually realized that the waterfall render algorithm skews its coloring based on the y-dimension of its region… -@spacerog I read it, it sounds totally reasonable and minimal to me -@hypatiadotca it’s a tumblr thing, and tumblr is a teen thing -@brandonmblack no I’m pretty sure I’d be adding value. Too many customers don’t realize how much they don’t know about programming. -@spacerog heaven forbid hackers be asked to practice human decency -@Neostrategos @JastrzebskiJ I’m under the impression copy-pasting customer code is a no no :) -@invalidname pretty sure that all went to court and it was decided they did not “steal” anything ;) #flame -@spacerog how does a residential building in a first world city just up and *collapse*, that is a travesty -What major API? I’d tell you, but sales told me to stop giving this particular company such a hard time… -@RSWestmoreland in theory our system is completely automated, my job is checking the automated output for improvement areas -Googling for documentation of a major API: “A description for this result is not available because of this site’s robots.txt” #helpful -My job would be so much better if I was allowed to pass on my written opinion on code to the customers -@chort0 funding ! -Hmm, figures - the one time I remember to generate character indexes before I need to text search, they’re already generated -@tshanks or in my case, not surprised at all anymore ;) -@ryanqnorth hi, I have a cool name -@TwoLivesLeft hmm yeah me too actually -@tomslominski that’s more than just a little bit unrealistic. There’s no such thing as a secret signal. -After-midnight work in progress because I couldn't sleep... let's try again. http://t.co/asfjglMmmp -@sanguis3k it does, despite me putting it in a microwave tonight, but it’s ARM. -@MarkKriegsman http://t.co/DJjAuUjBzI -@chc40 well, it *is* open source, so that’s more tacky than risky -@vogon http://t.co/O0BIfKqA1z -Via protected: phpbb losing its cool over an emoji. http://t.co/Bq7i8nWJH4 -@JZdziarski @nycjim @Reuters and what the hell do you think they’re doing, picnicking ? Last I checked they’re clearly resisting -@XTreeki … was it the cake unicode that crashed it? -@JZdziarski @nycjim @Reuters yes, far too passive, being afraid to take on hundreds of cops at once ! -@XTreeki may I repost this, o locked account -This microwave (the new one, not the faraday cage) is going to #uirage hell for continuing to beep after the door has been opened -@areur00t now that’s just silly… oddly my iPad will not render them -I’ve employed a highly scientific notation for signals: line, dotted line, squiggle, wider squiggle, and bright red squiggle -@CrappyCodingGuy #neverliveitdown -@Em_Space_ heheh :) from what I’ve seen of tear downs, the exact parts and their emanating frequency vary between production runs -@solardiz http://t.co/yju8jrJxyo :) -@gangstahugs pending radio science! -@0xcharlie according to the rest of twitter, you were taught wrong -@tapbot_paul no it goes to 1.7ghz -@unixronin one of those is too easy, the other too hard ;) -@ptolts the computer's emissions! -@tapbot_paul my install process was get the nightly of SDR# and try each of the zadig drivers until one (of three iirc) worked -@ptolts nothing! But it's made of shielding -@MakagiAkito radio science ! -It's working http://t.co/SgCdFnTGTe -oh yeah new followers: I kind of have this hobby of seeing what weird things I can pick up from electronics with a radio ;) -@octoqueer @xepheraux shielding :) -"Just throw out that old microwave", they said. "What possible use is it..." http://t.co/WkGHytvS29 -@HaydnJohnson it’s a good idea that desperately needs that pending service pack. -Yeah so about those discount radios: don’t jiggle the connector http://t.co/oVlrlWmIcy -@stillchip @0x17h this is a real signal; the artifacts on this radio show as thin lines down the middle of the baseband. -@_larry0 yeah, plenty of apps can artificially generate this sort of noise, but this is *artisanal* white noise sourced from local waves -@_larry0 it's just generic analog white noise, very clean/quiet in FM -@bmirvine too low, you need one of those shifter thingies -I have no idea what's generating this white noise at 74.25mhz but I find it very pleasant to listen to -@akopa I've been convinced it's oiler -@innismir I ordered ten, both to have spares and to give some away -I should probably figure out how to pronounce Fourier huh -# 342064308924059649 -Oh look at that the noise gets stronger when the screen gets darker... https://t.co/oe8WvKQu7d -@Mr_Reed_ yeah, and Dutch and Danish people are, on the whole, extraordinarily tall -@Kufat not from my timestamp’s point of view -@jennifurret iTunes backup / iCloud backup? -@sneakin I’ll keep them in their very benign wrappers. “Mini digital TV stick” -@coolacid I doubt it gets more generic than a $10 USB stick from china with no model number on the packaging :) -@Mr_Reed_ ie I am taller than almost every woman on earth. But I don’t feel tall. -@Mr_Reed_ it turns out your definition of average may be skewed in comparison to the global population -You better hope I get accepted to Defcon because I’ll bring all these radios with me… -@aquavitaecoll I didn’t get this to tune into television :) SDR just stands for software defined radio -It came with a CD! Who dares me to install the TV viewer app -Here is the exact model I ordered — paid $12 ea from someone with free shipping, but some merchants go down to $10 http://t.co/PPyDNUjyOo -@silentbicycle http://t.co/PPyDNUjyOo -The $10 radios work! The antenna is just especially bad (but replaceable) -Wow, we really do need a tumblr for Kerry being awkwardly tall http://t.co/K5erAcOybW -I like to swap out USB devices while the computer is asleep and imagine it having an identity crisis when it wakes up -@Balgan they’re FC0013 according to the description, we’ll see :p -@Balgan I just got on Ali Express and searched for the cheapest SDR that included antenna. -zomg these plastic cases aren’t sealed, they just open! This packager has my undying admiration -@bhelyer @kevinmarks (yes, I assume we were all joking :) ) -@bryanbrannigan they went halfway around the world safe and sound, so good enough -@kevinmarks and we got labor protection laws first; we need to get more protections for people all over the world -Speaking of, my box of radios from China has arrived. Do you reckon they used enough tape http://t.co/mLUPw8K2ij -First world problems: being accused of not caring about factory workers, based, presumably, on the audacity of being born a first worlder :( -@RadCurmudgeon @decivilized @0x17h thanks for telling me what my beliefs, practices, and convictions are! PS you’re wrong! Blocked! -@RadCurmudgeon @decivilized @0x17h sorry I can’t hear you over the sound of how awesome and apolitical radio astronomy is -It’s time to quit an argument when the other person says science is bad because sometimes it changes its mind -@0x17h I assume they just have a twitter search for their group to keep abreast of it -@RadCurmudgeon @decivilized @0x17h but I just came here to giggle at the Primitive Twitter Tribe and get back to studying science -@RadCurmudgeon @decivilized @0x17h I think you’re extrapolating a bit if you think I think that’s totally okay -@0x17h well… yes. You are definitely a magnet for argument. -@RadCurmudgeon @decivilized @0x17h I don’t remember the gun part the last few times I was homeless, but that’s my first world privilege… -@decivilized @RadCurmudgeon @0x17h (nor are all miners coerced or left in excessively unsafe conditions) -@0x17h I only accept anti-technology arguments written on vellum by a small, privileged literate class -@RadCurmudgeon @0x17h @decivilized Foxconn is the most awful thing but that doesn’t mean its abuse is an axiom -@aaqian @eevee but then it’d be pink…! -@decivilized @0x17h … but you must realize that complaining about technology on the internet just sounds very silly. -@decivilized @0x17h why would I have a theoretical understanding of someone else’s random personal beliefs -@eevee what’s with that giant pikachu with the ditto face? -@dontrebootme it’s about the [censored] that happened in [censored] -@decivilized @0x17h … says… someone… on… Twitter…? -@zackfreedman hmm, well, if we go by everyone who self-identifies as such, you’d be ruling out most of America as a market -@SamusAranX it wasn’t broken in Melee though; unless you considered it over eager to assign suicides -The self-kill algorithm in Brawl is so broken. I had the most unambiguous self-kill imaginable and it still gave a point to an NPC -.@nelhage curse you, typo gods -Finland gives baby clothes and sanity supplies to all expecting mothers so no infant is without necessities http://t.co/g2r5H46GTR -@kivikakk you encountered an alternate path ghost of yourself -(I feel sorry for anyone who seriously thinks “a magazine said this is against my religion so I can’t” rather than “*I* am against it”) -Today on stupid headlines: “Can a Christian watch Game of Thrones?” Yes. It is not against the Terms of Service of HBO. Next -@innismir because #uirage is the unix way -@panther_modern *sits a little further away* -@panther_modern so deliberately spreading *dangerous* falsehoods hoping that people will fall for it is cruel. -@panther_modern the difference is: you can’t BLAME a child for doing something stupid. -@panther_modern yeah, because there are no children on the internet, only stupid adults -@donicer the fact that blog is read by many children and they know it is especially cruel. -@MalwareJake I don’t know, I was just googling and found that gem :) -@shoebox \o/ -@m1sp mrrrr -@ErrataRob yeah I’m sure the *three years* in jail without trial thing was just a paperwork error… -@bobpoekert sounds like they’d get along with my laptop manufacturer Spacer -Also, be sure your exception logger has at least five lines that, themselves, can except, and be unprepared to handle any of them… -@RSWestmoreland nor in a continuous loop :) -Yes, don’t worry. No one ever lost hours or even days of productivity over a freak race condition… -Documentation comment: “do not worry about what others call the race condition. Thousands of people have run this code successfully” -It’s one of those “the database is being so slow I might as well get in a two-minute Brawl match between queries” days. -@theonlyrobjames @itsbeno http://t.co/xrf7I9Wq9x -@ReinH I use chrome, but this was specifically for a JavaScript-intense web app, where safari gets roughly 2x performance -@grp in this case I was trying to go to http :// foo rather than http :// foo/page?option -Geez, Mobile Safari’s URL history is useless. Couldn’t remember the domain of the tab I *just* closed. #uirage -@itsbeno the ghost of a bard appears to congratulate you on having better luck than he. -@itsbeno there’s a Forsworn camp in some ruins with a waterfall into a pool — if you jump from the top and land safely, -@thegrugq he started ranting about kids not caring until we were like “I… was two years old… … and I wasn’t born yet…” -@thegrugq my philosophy prof asked us to share our memories of the day the Berlin Wall came down and received a room of blank stares -@thegrugq technically -@ElderScrolls I was pretty pleased when I jumped off a waterfall on the run from trouble, hoping I’d survive, and a ghost appeared to me -I am free to post this link. http://t.co/aSVo6ID2bA -@Kufat http://t.co/BrvcZG8j7Q! -This variable naming scheme is making me uncomfortable: delete(myhead); -@nicolette8174 yes, because it needs both context and translation -More proof that the most advanced and persistent threat is children with their parents’ iPhones https://t.co/7MXFhfria4 -@TwoLivesLeft 😃 -@thegmanehack https://t.co/N9Bj6awL58 -@und0xed @botnet_hunter I was already considering whether I should torment mongo some more… -Attack surface, attack surface everywhere http://t.co/PsHa7GWNqi -@shalecraig this one was the target of one of the citations needed on last week’s xkcd what if blog :) -Citation was a horse who won sixteen consecutive races (citation needed) http://t.co/TsoEeNfaI9 -@ZOMGitsCriss I can access it, including Romanian version, here in US… -@MarkKriegsman I want one… -@doctortovey @vogon “AMEN” -I had professors like this— wouldn’t let you cite anything dee-gee-tal. Even if your paper was on internet censorship http://t.co/c5GxW3Vjbq -@Neostrategos I feel like this may be construed as exploitive rock star behavior… -@kivikakk \o/ -@Neostrategos and my house is… not on twitter! But really I have a perfectly good husband for the but he won’t go get one -@Neostrategos there’s a Starbucks in the strip mall with the Chipotle, in the plaza with LL Bean, and in the Barnes and Noble :p -@jensechu well, I was going by the pikachu hat mostly… -Would anyone like to bring me a white mocha from Starbucks while I hide under this blanket -@jensechu … I get the feeling you like pikachu -Today is my first really bad panic attack in a while. *hides under blanket* -@emptythevoid from that photo, it looks halfway accomplished -@kivikakk be careful. I found it seven years ago, and look what happened. -@maradydd how did you get 1080p? I plugged mine in to hdmi and it just stretched -Reminder that US drone cockpits run on Windows, the primary target of generic malware, and pilots have infected themselves before -Hmm hmm, I've actually been in Jefferson's bedroom, both of them, the main mansion and the summer getaway. -hottest pic I found on imgur tonight http://t.co/6Jifwq5WOM -@USSJoin whaaaaaaaat *flop* -@USSJoin sezwho -"Hello best friend!!" "hey... would you say a staircase is terrain, or an object?" We solve the big problems in life -So all defcon notices go out by June 4th huh... *refresh* *refresh* *refresh* -@geekable well we can’t all be as awesome as I am *bro pat* -@geekable what are you then? -@afreak @dakami (it’s the star) -@dakami are they both 18 yet? -@nrr … but not on iPad :( -@Havokca err… how worried should I be that you know? -Smash Art: he’s right behind me… isn’t he http://t.co/VKa6Nku0FP -@mrHithron I can’t find it now but an ex-employee had a rant on his blog about it -@sciencecomic condolences. -@mrHithron it was implemented literally in the 90s back when no one cared and they don’t want to change it now… -@tapbot_paul my fav was where it would randomly return that I followed someone when I did not. Other way is understandable, but that?! -@tapbot_paul well, yes, but not in such a *byzantine* way. Some past bugs were utterly baffling -@Pentanubis I’m nothing if not judgmental of other people’s code -@tapbot_paul am I the only one who lays awake at night wondering how Twitter’s architecture got to be this way -@tapbot_paul and it’s just… sitting there? It looks like a simple redirect would fix it. -@botnet_hunter oh, I have a paid account <3 -(The bug is very most likely on Twitter’s end, but I am not one of the fabled OAuth Witches.) -@botnet_hunter you know you can host on imgur without submitting to the gallery right :p -Wow I can’t log in to imgur via twitter because it triggers the two-factor then bounces me to the mobile site and 404’s -@focalintent @Viss all glory to the hypno-byte-editor -@m1sp_ebooks :c -@innismir I never get calls from those people… -@Xaosopher I know, I'm not shedding any tears -@DrPizza man with how many thousands of times I've seen DH flip out over that game... I really just have no interest -Also I died because I wanted to visit a star system just because I liked the name. It was full of bad people who do bad things. -# 341703689058258945 -@demize95 eve, and just to be annoying, this guy went around and put small bounties on a bunch of people. -Though I wouldn't be surprised if he then has one of his friends just kill him to reap the bounty. Sigh... -Someone just randomly put a small bounty on me... so I put a huge one on him. #notinthemood -#tweetfleet never mind, should have figured that was the socket being lost again. -#tweetfleet so my probes got stuck at zero seconds remaining... I can't cancel and I can't recall them. -@m1sp they’re pretty objectively the least secure thing ever done in the name of efficiency -@und0xed @BrianFargo it would be reprehensible of me to suggest dropping tables, so I won't. -@und0xed @BrianFargo I seem to recall being angry that they went the extra unethical mile and laid them off during a big media event -@kyhwana @kivikakk php is *all about* the configuration. In multiple places. With runtime reflection -@brentrubell as for why unix scripts tend to break on spaces, well. That’s a problem older than most people I know… -@brentrubell you have a space in the directory name again :p -@indrora okay, that sounds like expected behavior and doesn't interact with the core complaint that it's implemented as a fake function. -@brentrubell this perhaps? https://t.co/WMuPYY82tr -@brentrubell @stroughtonsmith it's choking on the space in the pathname. Either remove the space or edit install.sh to cope. -@kivikakk ... ... ... .... -@comex then define a new syntax rather than overriding existing syntax and returning a parse error for completely, utterly valid syntax -@comex The fact that it converts the argument to a string is both a given and immaterial. The point is, it keeps calm and carries on. -@comex php > if(defined(NULL)) { echo "true\n"; } else { echo "false\n"; } false -@indrora Which sounds like another WTF, but this author wonders how does that change the underlying point? -@mof18202 more effective than heatsinks -@comex I clearly use "in my OPINION" several times to mark where I think the underlying design is bad. -@comex what's still wrong? Is anything I said about isset's behavior factually untrue? -Dear twitter engineers who follow me: <3 <3 I rage because I care Dear PHP fans who follow me: >:) >:) I rage because I revel in your tears -@comex I discuss in the article why it's like sizeof() except worse. -@ameaijou I guess "well don't design it that way next time!" doesn't cut it ;) -@chriseng @focalintent http://t.co/c35oHQkYaH -@comex and that justifies a massive exception to the general structure of the language instead of just returning false? -I notice my profile page is completely gone. Thumbs up for Twitter -PHP Manual Masterpiece: all about the majestic wtf that is testing if a variable is set. http://t.co/c35oHQkYaH -@focalintent but it already contains the sentence "unless the PHP parser has solved the halting problem" -@focalintent it's running a bit long. -@afreak ;) https://t.co/JYW8tqJ8dV -@hirojin http://t.co/hkXeEfRus0 -*opens tumblr* *switches to the php hate blog* *starts typing* -@weskroesbergen thank you Dr. Twitter! -@laneshill I'm allergic to that so no :p -And yes I totally trust Dr. Twitter over Dr. Google. -MEN AVERT YOUR EYES: anyone here other than Dr. Google ever have a period with no blood? (I'm *definitely* not pregnant.) Do I have the sick -@marsroverdriver maaaaan that battle is lost. “Whom to follow” sounds weird to the modern ear, defeating the point of correctness. -@matthew_d_green I’m confounded as to why only the calories match the display -@kivikakk that’s a Ruby on Rails mantra iirc. -@0x17h because of a requirement of the Mormon religion, and a similar mindset infecting other religious groups. -@kenanbolukbasi I promise I’m 100% for your right to protest and I’m glad to see your internet seems to be working… -@kenanbolukbasi “… I can’t trust this journalist, because they include known fakes.” -@kenanbolukbasi I don’t mean “all the pictures of Turkey are fake”, I mean “in this particular set, some I *know* are fake, so…” -@lukegb @i0n1c o_O;;; -@mrHithron @mikko for terrible reasons. -@0x17h I need this power, see also @m1sp -@Jedi_Amara in a bin of Legos in your brother’s closet -@rantyben @_wirepair I’ve fallen asleep in a dentist’s chair more than once… -@jesster_king nope, it's definitely running with some help from wine (and the launcher is python) -@raudelmil my problem is that it acts short on CPU when I ask it to render multiple streams of sound simultaneously and it stutters -(I tried killing processes with names like coreaudiod, but that didn’t help) -I dunno what Eve (or Wine) does to OSX, but every time I play it, OSX struggles with sound processing until I reboot -(In cases where they do stay aligned, obviously. But some people just genuinely prefer TV over books and even comics which is alien to me) -The same thing happens in anime. “Ahh I can’t wait to see what happens next” “have you considered checking the original comic book” -I don’t read/watch Game of Thrones. But I sure do get a kick out of people freaking out over plot twists published on paper ages ago… -@lindgrenM Chrome totes does it in both iOS and android -@almightygod unless you count being toooootally wasted on the road to Damascus -The mobile UI paradigm of displaying webpages in grayscale when they’ve been RAM-reclaimed has made me hate grayscale webpages :p -@dangoodin001 @ErrataRob (since it *is* an online game, downtime on a weekend is A Really Big Deal) -@dangoodin001 @ErrataRob yeah, but it sounds like generic “reassuring the customers we’re doing something” -@dangoodin001 @ErrataRob if you prefer conspiracy theories maybe they really botched the next patch and are blaming the downtime on skids ;) -@dangoodin001 @ErrataRob I think it’s just technobabble for “stopping this DDoS has not proved trivial and we’re doing all that we can” -@ameaijou also it’s not necessarily the wording of the manual that is the problem, but the subject matter which it must cover… -@ameaijou … how much of the php manual did you write ? -@dangoodin001 I interpreted it as “this DDoS is hitting us harder than we thought it could with current mitigations” -@0xcharlie *refreshes mailbox* *refreshes mailbox* -@jinkee @ZoeQuinnzel @christinelove here’s a god place to get some ideas… http://t.co/BTyk2ZWMAz -Me, reading the php manual: “this part sounds promising for finding something dumb. Hmm, okay, okay, that’s reasonable, aaaand… there it is” -@0xcharlie @chriseng don’t you work for some kind of big company now? -@pdo I keep cryptographers prisoner in the basement. -DH has his headphones on so loud I can clearly hear the words from here. And he’s sleeping. -@chriseng @0xcharlie so when’s the rogue talk where we roll out of the hotel’s parking garage in new wheels? -@ternus be… be strong ;-; -@The1TrueSean http://t.co/4KckdNybVp -@eevee @matingmind but yeah, most evolutionary psychology is just making a sport out of confusing genetics and culture -# 341343096124088320 -@eevee @matingmind Yeah, I saw that one already: “signs suggesting possible food addiction indicate that writing papers is too hard!” -@herodfel @EurosportCom_TR a marathon, as dated on that page. It keeps showing up in everyone’s protest photo sets. -@matingmind @eevee okay I’m convinced this is actually a troll account peddling parody science now -Attn: If you include the following image in your Turkish protest photoset, I’ll have to assume they’re all fake http://t.co/knnJZMJAd6 -@AnnabellSciorra @PolicyMic @C_Rice3 @WeldPond if people could stop mixing in photos from marathons, that’d be great. -Okay, that’s bizarre: Slashdot now looks like 2011 rather than 1997, but only from a mobile device. -@rbf_ … apparently it’s their mobile skin. -What happened to Slashdot?! It doesn’t look like 1997 in there anymore -@matingmind Classy. Note: sarcasm, laced with contempt for falsely conflating things. -@zeightyfiv my hypothesis is that most of the “being gay is a choice” crowd are secretly bisexual and don’t know it. -@thegrugq we call them parking lots. Totally different! -@thegrugq cars don’t have parks silly, parks are for people -@dakami I’m sure there are more toxic things, but it does put pure asexuality on a pointless pedestal. -@j_evns @MyRainbowNinja @ioerror @CourtneyPFB apply palm directly to face -@Packetknife *twitch* -@m1sp @kivikakk let me know when you’re on Skype and we’ll find out -@techpractical I have it easy because I up and married a manly man -@m1sp @kivikakk giiiiiiiiiiiirrrrrl you need to get yo’self a new ring-ring -Of course, most of the people who said that to me when I was young also deny that bisexuality is even an actual thing so whatever I guess -@chriseng Florida Man, Florida Man, does whatever a Floridan can -@Kufat I honestly don’t even know if the Wii-u has an sd card slot, never mind where my sd cards are -@CyborgCode news to me and pretty much all my friends. -@Kufat it would actually probably look worse and is a LOT of effort to get the dang thing off the machine and into jpeg? -When someone says “men and women can’t be just friends!” what I hear is “bisexual people can’t be friends with anyone!” :’( -You can probably tell, but - playing Smash Bros alone, I’ve been taking a lot of time to pause and admire the artistic details -Smash Art: no I’m not going through Eve withdrawal look I have spaceships right here #tweetfleet http://t.co/DlJ4hI9U8Z -Smash Art: “I’m sorry, Electrode. I’m breaking up with you because of your explosive temper.” http://t.co/NDJx4guEE0 -@niallgdonaghy you want a photo of my kitchen from the outside?! -@HorribleCoders @m1sp it’s really amazing to read it aloud with the appropriate amount of bewilderment -@yacCz … I’m sorry :( -@tinyblob yeeeeeup -@focalintent @unalmas is it a Saint Bernard? I got to tussle with one once, it was great fun! -View from the kitchen window — life is good (even when my game server is down) http://t.co/CXDOwpM3Hb -@LeafStorm then it sounds like what one wants to use is Symfony itself :) -I don’t know why, but large animals seem to like me. One time I caught a dog’s eye from 100 yards and he ditched his owner to sit with me -@bascule @_larry0 @egyp7 @snare @MarioVilas “emits a warning if an unknown cipher is passed” The wrongness of this surpasses my vocabulary -@vruz that is the idea, yes ;) -@TakoArishi @eevee eeveengelism -Hello new followers, if you haven’t read this article on the design of PHP, please do so at earliest convenience! http://t.co/GHsl4VRgjz -@nelsonmenezes @Tesseraction also, this is required reading. http://t.co/GHsl4VRgjz -@nelsonmenezes @Tesseraction bad design compounded by bad documentation compounded by bad management compounded by many years. -@TakoArishi you should have seen me when they ddos’d Minecraft -I will drain the freaking blood of whoever is DDoS’ing Eve when I want to play. I will find you. I will END you. #tweetfleet -@elad3 maybe it’s regional depending on what database you hit, as many other people see it too -@elad3 empirical evidence disagrees http://t.co/9fqxXLUd9Y -Github is down. Eve is down. What is a weekend even for then -@rhodesjason @Tesseraction a good web language *wouldn’t even let you* use “old functions in bad ways.” -@wbpre cutting corners where it “should” be safe is setting up future disasters. -@nelsonmenezes @Tesseraction actually I’m a professional security code auditor for several languages. … PHP really is that special. -@anthonicaldwell the NES is inherently tile-based; 60 times a second you have a chance to change tiles. -@anthonicaldwell that’s not really how the NES’s GPU works, and it can only render so many sprites horizontally before it fails. -@doeg @vogon @dijkstracula that’s a very Dutch-sounding name, which I suppose explains everything ;) -@doeg @vogon @dijkstracula I just checked, the E in the author’s name stands for… Ekkehard. -@doeg @dijkstracula @vogon is this real life -@WhatsTheBigIT http://t.co/Rqdemzkdv1 -@anthonicaldwell number one rule of NES development: minimize sprite use. always. -@Rhythmreactor I spawned within its borders, actually. :p -@AdamTReineke oh I can believe it! -After-midnight art sharing! Pixels I have so far for the little NES project that's been kicking around my hard drive http://t.co/46DmPH6F5w -#tweetfleet 2809 players - wonder if I'll ever see the universe so empty again :p -@_wirepair no players involved, I'm just tormenting the AI in Brawl -Ten kills in three minutes, it’s more effective for my score to do 3v1 than free for all - because then they all come running towards me! -Smash Art: “I’ve made a terrible mistake.” http://t.co/tTZiSuDTwA -@brrian well, my bestest friend plays too -@nonstampNSC because they’re still at the “well that’s what my dad said” stage of reasoning :( -@StillCountCrows @indrora the idiots are the ones who say “I don’t need to make my app secure” ;) -@StillCountCrows @indrora if someone can get an SQL query working, they’re already not “idiots”; they just *don’t know.* -@StillCountCrows @indrora no, there are a lot of people who don’t understand that PHP is setting them up to be hacked. -@duckduckgo @41414141 gasp -#tweetfleet kindly inform me when my space ship works again, until then I am smashing things in Brawl -#tweetfleet AHHHH SERVER DOWN AHHHHHHHH -@indrora nope! Why would they? How would they? -@SAlbahra the very name is rather evocative of supreme confidence, isn't it? By which I mean: always used prepared, very hard to screw up :) -@Balgan even so - I haven't actually played brogue, but Dungeons of Dredmor goes for a parody vibe (and has "real" graphics) -# 340977723969265664 -@voltagex http://t.co/ix6SPGEKEk -@thereals0beit … I am very passionate about hating PHP. -@thereals0beit which is fine for native assembly macro wrappers like C but PHP claims to be a gods damned web language. -@thereals0beit it wouldn’t be their fault if a programmer had to go way the hell out of their way to cause this. PHP is ownable by default. -@thereals0beit Of course it’s bad. And they DON’T KNOW and the language does none of the many things within its power to help them. -@voltagex the “bad tutorial” I learned from was written by the inventor of PHP. The problem goes straight to the core. -Remember: most of those devs genuinely have no idea what the dangers of throwing GETs into query strings like that are. #blamePHP -@Tesseraction PHP: from zero to owned in more trivial ways than one can enumerate. There’s a reason I preach against using it. -@Tesseraction yes. Note: not literally every single one of these is unsafe. But most are. -.@rrrrrrrix well… not *all* of them are exploitable. So more like 77000 -Hey guess what time it is again? That’s right: “github searches which show up trivially exploitable code” time! https://t.co/x4TBnUmVUk -It’s pretty much the most dwarven let’s play imaginable, right down to hating excess migrants and… the ending. -An exceptionally well-done, in-character Let’s Play of Dwarf Fortress, with original art http://t.co/rDpipM5mmL -@eevee @gwestr that was the joke, wasn’t it? >_> -@eevee sure, sure, and they cast it to float and it got buggy and this was their genius solution -.@eevee probably because they noticed that using a float was buggy! -My iPad’s battery is draining absurdly fast, and when I took it out of the case, it’s practically melting. Hmm… reboot time. -@Balgan that’s Fuji apples to Granny Smith apples :) -@sanguis3k Bug: geese lay iron chairs -“Burning monsters will not ignite terrain while they are submerged.” (Yes I’m reading https://t.co/BHuXmfJZd1 ) -“Fixed an issue that could cause foliage and rings to appear as colorful emoticons under Mac OS 10.8” #roguelikeproblems -@benwmaddox “Polymorph will no longer generate liches or phoenixes, to avoid odd outcomes with phylacteries and phoenix eggs.” -My hobby: reading bugfix logs of games with complicated AI subsystems -@vogon oh boy something for the TSA to confiscate -@Viss … this imaginary guy really cares about yoghurt parfait -@0x17h (but only if they’re straight) -@0x17h are you… are you cat factsing a tag -@thegrugq they play Null Dereference. The only winning move is not to play -@vogon when I was just making an artwork improvement suggestion. -@vogon … so then I was annoyed that the bot is trying to make some profound comment on the worth of redditors’ politics, -@vogon well, my comment was “I think you should tone down the colors in the background…” :p -Weird reddit bot encounters: replies to comments beginning “I think” or “I believe” with “wow! I never thought of it that way” -Gender identities are like a sports team. Most people support their home team and that’s fine – but there are other options, including none. -@infosecjerk @Packetknife “why don’t you drink?” asks everyone else of me. Gee… -@Packetknife autocorrect went there -@Packetknife hmm trying to think of a pun concerning being overweight -@bSr43 yay -@michaeldinn @_wirepair I apparently have both, simultaneously. -@michaeldinn @_wirepair uninstall *what*? Chrome itself? -@_wirepair pasted some text and it silently failed… -@abby_ebooks this tweet makes too much sense, please revise -@jesster_king kill -9 frontmost app -@m1sp ... so I did! -@m1sp http://t.co/RgOcBZvw9Q -# 340586398841204737 -@janiczek yeah... except I can never remember what that middle squiggle is, either! -@Ammoniak ninety-one degrees fahrenheit is the exact opposite of brrr, my friend! -@Xaosopher ..... Super Smash Brothers? :p -@Xaosopher hahaha, I hate Cards Against Humanity ;) -@Xaosopher July Twenty-Somethingth through the first few days of August -@marginoferror yup, got my first two levels of that, third is in the queue -@Xaosopher that reminds me... don't let me forget to bring moisturizers to Vegas this year. Which I had never needed before in my life. -@marginoferror I am All About The Drones, it's basically all I've been training, Drones is 5, Scout Drone Operation will be 5 in four hours -@marginoferror vexor -(I was just mining in the background while I worked my way through some IRL technical reading, in the combat ship I was already in.) -Eve Online: apparently if you go mining in an un-miningish-enough ship, people will assume you're too poor to buy one and give you money -@alethenorio kill-nine the frontmost app. Critical when an opengl program bites it -@m1sp *polite proddling* -@thezeist I assumed this would be about pointers… -@_larry0 people who live in places where water freezes in May should also not own a pool -(The problem was that a minimized full-screen program crashed and took over when I accidentally alt-tabbed to it) -@gu3st yeah if I could do that I wouldn’t be looking up commands on a second computer. -@rikardlang yeah - because a game crashed. -Someday, I *will* remember "command-option-shift-escape" without having to look it up on a second computer #osxproblems -@jb33z um………… no it’s not? Because I’m not fat. I’m objectively not eating too much. -@jb33z but I basically *never* have three meals a day -@jb33z well my soda intake is almost zero if that’s what you’re asking. Mostly drink juice. -@m1sp wat -@savagejen grats! -@xa329 probably because I’m already speaking English :p -@DrPizza I ate a frozen personal pizza for lunch every day for four years in high school. It’s part of my genetics now -@qDot lol overnight shipping -@jb33z it turns out lots of calories is a good thing when you only remember to eat once a day. -I deserve a medal for walking to the store in 91° weather to buy a frozen pizza rather than have one delivered to my door. -@securityskeptic @WeldPond one can’t rectify a decade of lax security by moving from three patch cycles a year to four. -@splicer83 @LarryBundyJr nah, you’re misreading it: if the price lowers before release, Amazon, at least, won’t shaft you. -@securityskeptic @WeldPond Enabling Java is never okay. -@FVT too little too late. Java is a mature project and it’s been Oracle’s responsibility for a few years now. -In particular, Oracle wants us to be impressed they went from 3 security patch cycles a year to 4. Vastly more secure sw than theirs does 12 -I’m deeply amused by Oracle’s optimistic spin on Java’s security https://t.co/9z3nSfPiV5 “record high of security patches!” -@chort0 a ha ha ha haaaaaaaaaa!!! Forwarding this to coworkers… -@Md1986ok TinyKeep game -@thegrugq that reminds me — you’re coming to Vegas this year right? I promise not to stare at my shoes. -@chort0 context? -@tinyblob @gsuberland wh… wh… why -@i0n1c @geekable I’m so glad those 7,994 filenames were inlined before the graphs. -@xkeepah D: -@DrPizza I am aware of humans who use them, but I wouldn’t call them a mainstay… -The “drunken bishop” algorithm behind visual ssh keys http://t.co/VV3iZGCYkf -@DrPizza oh it works, just not in a way I find particularly productive. -@trap0xf Waffle House is open during the day?! -@thezeist yeah so I guess my real complaint is the sudden implementation of special snowflake image picker -@ra6bit @mattblaze @eevee oh it absolutely counts. The grisly detail was amazing. -@sanguis3k yeah — apparently the issue is that since I’m paying pounds the bank thought I was suddenly *in* England -I got an automated fraud prevention call! It wants to know if I made a purchase in the town of Internet, United Kingdom -@ternus … your traveling salesman algorithm is broken… -Kickstarter is claiming my card was declined. I can log in to my bank and see their one dollar test charge just fine. No notices. Whaaaat -Also I have a critical case of the grumpy tonight 👿 Disregard my intense misanthropy -@bhelyer I noticed that they’re pestering me, that doesn’t mean I care about them. -@bhelyer no, I don’t use their code, I have no use for their code, it would not affect my life if their github was swallowed by Cthulhu. -@bhelyer I posted about being annoyed by yet another open source project that treats all passerby as having infinite time and interest -Hooray, more open source maintainers who believe that I owe them my time for a project I don’t care about. It’s your crummy code buddy -@DarthNull @xkcd @zygen they already covered why you can’t do it *from earth’s surface*, but we can put a projector in space… -Chrome on OSX has this new marvelous feature where it flashes my wallpaper when I change tabs! -.@zygen I’m really surprised America doesn’t just project a giant star spangled banner on the moon yet because who could stop them -@zygen I need to get a bat signal so I can complain when twitter is completely down -@mojinations yeah, I'm on autopilot, that's the idea :) -@_larry0 no, cookies are banned in favor of salmonella-safe cookie dough, which is superior in every way. -Happy compromises: reading a programming ebook while flying between points in Eve. -@PhilippBayer actually I really need to play Daggerfall (it came out when I was too young to be allowed to play games like that) -@PhilippBayer so, do all missions in broad daylight, got it. -The definition of metagame is: the NPC offers you a mission he says will be easy. The promised reward is remarkably high. Better suit up... -@m1sp @ELLIOTTCABLE I think "Blameston" is my favorite star system name yet. "Yeah sure pin it on Blameston just like you always do!" -@Packetknife I had a feeling it was her :) -@Packetknife hi -None of you objected to my assertion that I am supreme leader of earth - and that makes it true. -As supreme leader of earth I shall now ban sounds that strongly resemble IM chimes and dings from all techno -# 340251824403656704 -@sneakin I’m not playing around. I was actually trying to see the page. It gave me json. -@_JerryWood chrome on iOS, yeah. -My local bookstore is two floors… and has a built-in Starbucks… which sells cheesecake. #help -@puellavulnerata but the bondage is the best part… -@kyhwana aside from the occasional psychotic breakdown, yes :) -Click link to iOS App Store, receive spew of json. Yes, yes this is helpful -@kyhwana that was the only justification I was aware of… she was a bit too sheltered, I think. -@kyhwana the best part is she ASSUMED he did illegal drugs. The shadiest thing he ever did was give a 20yo a beer -@kyhwana this same furry friend of mine also liked to drink though and my mother seemed horrified I would hang out with him -@kyhwana nope, never had a drink in my life -@kyhwana I’m not a furry though :p I also don’t remember at all why I had a cat ears headband that day -@kyhwana … when I walked in with kitty ears she gave me a look like I said I was gay. But that didn’t happen yet. -@kyhwana well, see, there was this boy, who I was friends with, who was a furry, and I don’t know exactly what he told her about it but… -@waruikoohii I think she was mostly afeared that the young man who had told her about being a furry was corrupting my innocent youth -True story: my mother found out what furries are the same day I happened to come home in a kitty ear headband. -@kyhwana considering who the author is, I’m surprised that text isn’t really offensive (in my opinion anyway) -Hmm… furries, when did you wake up and realize you’d gone mainstream? http://t.co/3tPTtEvRR7 -@geekable @dinodaizovi do you take me for a fool? Pinkie Pie’s cutie mark is balloons -@geekable @dinodaizovi why does your pony have mp3 buttons on her pastern -@TwitterForNews well… that escalated quickly. -So apparently the twitter client suddenly needs location services because they implemented a special snowflake custom image picker -@grp also why don’t my photos just, like, not have GPS tags from the pov of a sandboxed application without location services? -@grp except that it just started this yesterday. -And the license on the back says that using the card is consent to the terms, but maybe their lawyers said to get that signature anyway… -My visa gift card is “not valid unless signed.” To what possible end? There’s no name on it. It’s not registered to anyone. -@gangstahugs I am, but it didn’t do this until yesterday. -@JZdziarski actually the phone is on 5.1 and the privacy tab was added in iOS6 or I assume so as I can’t find one :) -@JZdziarski http://t.co/cfbOpvoXNQ -@JZdziarski and you’re updated? Because I updated yesterday and it won’t let me do it. -@RSnake you realize I mean the doll I am holding right? Though I will double check with the Pinkie Pie you are probably thinking of :p -Oh, and taking a picture on the spot is different from accessing photos already stored. The prior doesn’t need location services. -People saying it doesn’t: you forgot the instructions on how to make it not do that. -Also: Twitter for iPhone now requires “location services” to use photos. It didn’t used to. Whaaaaat -I've been endorsed by famous hacker Pinkie Pie to be a judge for the Pwnie Awards - inform @dinodaizovi http://t.co/TZHidq4oUn -Got in a semi-argument on reddit and the other person used the word “presunpyious.” So now I imagine they’re an 8yo sounding it out. -@mike_acton I’m not sure. It’s just a gut reaction. I guess they have more history than most kick starting groups, though. -@mike_acton though clearly they’re not going to have any trouble convincing people to trust they’re double-good for it :p -@landley it came out a few weeks ago. -@mike_acton — beyond all shadow of a doubt before they presume to ask for more kick funding. -@mike_acton I’ve kicked dicier things for sure, but I still feel that a company should completely knock a kickstarter out of the park — -@Thedeadlybutter I think with Kickstarter one has a responsibility to backers to prove, beyond ALL DOUBT, you’re good for it -Should Double Fine really be doing a second Kickstarter before the first one is fully delivered? I realize it’s different teams, but still. -@innismir and that’s 100% totally okay with me. The burden is on cops to be adults, not on children to be adults. -I really love @verge ! The way their web page crashes my iPad’s browser EVERY TIME has doubtlessly saved me hours of reading. -@focalintent so, about my program that calculates pi… -@innismir what you want to bet a 14yo had no concept that shrinking away from unwanted touch is “resisting an officer”? -@innismir I’m not impressed with police who feel the need to arrest every child who gives them lip. That’s all it comes down to. -@innismir and he insists he was busy holding a dog at the time, how else would his arms be? But that’s not very threatening in any case. -@innismir and the point is — IN AGGREGATE there is an endless deluge of stories like this; a pattern of police overreaction. -@innismir the police freely admit they tackled him because he tensed up and turned away. Not because he sprinted or punched them or w/e -@innismir yeah, and the correct response is “excuse me, we’re still talking here.” -@innismir I’m not die-hard anti-cop. I come from a cop family. But I’m sick of their “everyone is a threat at all times” attitude. -@innismir if they can produce evidence that he had a gun, a knife, or an armed drone, I’d be happy to consider he posed a threat to officers -@a_greenberg no name? Is this literally a sample? -@innismir I am far more concerned with what is right, just, and true, than what officers can squirm out of being reprimanded for. -@innismir that’s nice. -If you can’t react to a teenager shrugging you off in a calm and reasonable matter, you *REALLY* shouldn’t be a cop… -@landley yes…? That’s the point. The book on the right implies that Linux is “rare.” -The language used by the police officer to justify tackling a 14yo holding a puppy for “resisting” is terrifying http://t.co/2VtwzfnLS1 -@dinodaizovi @0xcharlie ooh ooh pick me pick me. -@dinodaizovi “gravitational challenge” is my new euphemism -@ra6bit yeah so most of the TSA works at the TSA because they're not very bright -@ra6bit well come now everyone knows not to run with scissors. But who’s taught not to run with guns? -@TheNRAO hmm… I can’t quite put my finger on it, but this looks photoshopped. -Oh gods it blinks http://t.co/6wxADRbS4o -@Kufat http://t.co/teRRLv0bwq -I’ve actually had difficulty getting through the pointers book, and little things like that make me hesitate to recommend it… -@elliottcable hahaha. Well I’ve only lost one ship so far, not counting the ones the tutorial gives you. -@elliottcable I try. I also try not to blow all my gifted money in eve and I seem to be succeeding XD -gdi @github how am I supposed to taunt mongo developers now -http://t.co/3dXb6kOzf8 <—> http://t.co/zt11lTdg3p -Lady sees my "geek" shirt... sweetly asks me if I work at Best Buy. -@philsplace of course things will happen. That doesn't absolve the man of losing a gun in a playground. -@mr_chip @mkb I have no intention of hurting them, but they seem to lack this idea of their own personal safety -@kcarmical @_FloridaMan they do, but it’s straight up impossible to catch everything -(Everyone: whether he’s legally entitled to conceal carry is entirely besides the point that he brought and LOST a gun in a children’s park) -@spacerog right Such as… … a private park for children maybe? -“Gosh, how was I supposed to know a private park for children swarming with security guards doesn’t allow concealed guns?” - @_FloridaMan -@_larry0 I don’t think google takes longer than seven days to patch critical security vulnerabilities they are aware of -@info_dox err, not any more than before? The previous policy was 60 days -Google revises disclosure policy: if they find an in-the-wild exploit against your stuff, they will go full disclosure after seven days -@kivikakk hmm yes… I recognize some of these lines. -@mattblaze pretty sure that’s old speak -@Jono @0xcharlie he meant security researcher Jon Oberheide, who goes by ‘jono’ on IRC :) -@0xcharlie oooh someone’s in trouble. But are you sure that’s the right @Jono ? :) -The only way to cope with our commute is to model other drivers as video game enemies lacking malice rather than rational actors -@m1sp here’s another item for your juvenalia collection http://t.co/g0M7fMXghl -@amanicdroid @0x17h so THAT’S what I was doing wrong! -@_BluShine @femfreq then I'm not sure what we could be disagreeing about. -@m1sp ding ding ding http://t.co/RnAfkd73cU -@_BluShine @femfreq they are causing actual, material, measurable problems against her free speech, not just making fun of her. Harassment. -@aaronsnoswell @m1sp he is a boy from a fictional world without very many computers :), and he's a bit... dour. -@_BluShine @femfreq this story has been going on for a long, long time now, since the moment she started talking about the project. -@m1sp I'm drawing Katarosi now and she looks extremely dorky :D -@m1sp and tiny! Look at that wittle 16px Governor of Dour Town and his cape -@meursalt GIF AS IN GOD AS IN GOD'S OWN PRONUNCIATION -@elliottcable Every girl needs a CS hate blog -Also, metro seems to have... problems with gifs. -Pixel art for my slowly, slowly progressing NES project... http://t.co/mGKhddRnq2 (attn. @m1sp ) Hooray for extreme color limitations -@m1sp I'm working on Glory in the Thunder in an actual thunderstorm :D -@Forkk13 *checks profile* > Texas Insert generic remark ;) -Rewrote one of my fancy orchestra pieces as chiptune --> https://t.co/w2KWJXvrV9 -# 339859865839218688 -@Mordicant it’s… considering there’s no profound reasoning in the source code, I’d consider it borderline firing-worthy. -@Mordicant 10% of the time it will finish the exception and log it… 90% of the time it just silently returns. -@solak how did we get e-dialog’s? -@Office @MSFTnews how about the time it took to choose a wildly inappropriate, faddish font that clashes with the background? -@hackerfantastic well, renting a hotel ain’t exactly free. But in Black Hat’s case, they’re billing corporations to subsidize Other Things. -@_BluShine @femfreq … why do you suppose there’s a difference? -I think this is the first time I ever mouthed “what the HELL” looking at a single line of code https://t.co/jPDLjwNx5t via @cowtowncoder -@puellavulnerata sometimes they’re a gods-darned parody of themselves -@puellavulnerata … where is this from ? D: -@m1sp as harm none. -Freed. That word always looks wrong. Freed. Onwards my noble freed -@spacerog read my next seven tweets or so :) -@0x17h old junk is 32-bit computers that don’t act their size. -@sleepydashie they’ll make ones with integrated glasses when they go into mass production -It also looks further away than I expected it would. -Yes I could see it through my glasses, but it’s a bit faint and can’t sit right in the sweet spot. Too blurry to read without my glasses. -@sleepydashie awkward and difficult to keep lined up in the sweet spot, and it fades the image a bit. -However @focalintent has this sweet astronomy projection app on it A++ -Obligatory “I nicked Google Glass from a coworker” selfie. Unfortunately it taxes my weak right eye a bit much. http://t.co/WWnXIoNu4K -@Zavie I like how it's very explicit that this is the COMMONWEALTH of Massachusetts we're discussing. -It's been seventeen seconds and I'm not deluged by British people telling me clearly it means Boston, Lincolnshire... it must be tea time. -Google. http://t.co/tngY4zoXxi -@jenniferbn2 curse these oceans (really, Nevada is about as far from my house as England is, but it's a "domestic" flight) -@tomkrall only if I read newest-first. -@r3d4ct3d and with a pinch of luck, I will be presenting, so you will surely hear a lot about that :p -@r3d4ct3d since when do I not live tweet ANYTHING. -Reservation for Blackhat/Defcon hotel made. I'm not so broke I need to beg friends for crash space anymore :) -According to @ternus I have a doppelganger in Israel of all places. -@PiennePN @zenalbatross idk the people who survived Jurassic Park I guess -@emptythevoid doesn’t fall in enough holes to be me :) -@WTFuzz \o/ -I should request a week off just to blow through my reading queue. -“Hardcover: $92 Paperback: $70 Paperback edition not available in US or Canada.” That’s racist against rich people! -@_larry0 online. SHARE50 -zomg zomg half off at MIT press I don’t even know what to choose there’s so many -@blowdart I am aware. The point is still that the cartoon exists, not what they think of it :p -@comex haha yeah … -@blowdart sure, they mistakenly call MLP a “minor” success. But the point was that the cartoon exists. -Cartoon about a boy who gets a super hero ring but it turns him into a girl. I reckon I approve. http://t.co/UwrvrE0Z4r -The new <s>gtalk</s> hangouts UI built into Chrome is astoundingly space-inefficient. I say one word, previous line scrolls off #uirage -@AIRmusictech uhh I don't have a product key. Whence the original complaint that this is confusing. -@briankrebs what How are they even a paper then even personal blogs do that -Oh look. Apple AGAIN approves pirated, duplicate copies of an app already in their store. http://t.co/oaEPnrYWPm via @TwoLivesLeft -@zygen … nice. -@brokenhegemony @reoccupy @0x17h “all you vast majority of people who aren’t white men need to join the white men ie humanity!” #pro -Newbie @DarrenPMeyer hates Cygwin. He’s woken up in hell here at “it’s a Visual Studio project with a perl and tcl/tk dependency”-code -I had a horrible nightmare. My house flooded and all my electronics were destroyed and when I went I the store they only had Blackberries. -@attritionorg nobody’s too young for Squirrel Girl! Err… -@attritionorg what are you writing, fan mail to Squirrel Girl? -@_wirepair wut. -@mdowd now accepting donations to fulfill my dream of visiting Australia -(Just means I have to deregister the duplicates - I don't lose the book...) -Apparently I've downloaded this eBook on too many devices, which really means I uninstalled and reinstalled Kindle repeatedly -@mdowd but but but The saddest face! -You know, my little kanban app for Windows 8 has been done for a long time. I just need to make a logo for it... -@_wirepair @aaronportnoy it certainly puts my fans into high gear (if you know what I mean) -@Xecantur except the article doesn't have anything to do with strength of crypto :) -@_wirepair … who zips a 7zip?! :p -@_wirepair but Where is download -@mdowd nooo! -@m1sp_ebooks yay! -@bascule @miuaf “looking for the sort of coder who doesn’t take flak from fig trees” -@qDot what did I just read -@m1sp I found a pacifist player with this big long in-character bio. It's adorable. -# 339513178935422976 -@QuantumG it's not about trusting *me*. It's about handling customer-sensitive data. I don't go around looking for unlocked Gameboys. -@QuantumG so do code reviews, audits, and everything else that it's our job to do. -@QuantumG all I did was type in "don't leave it unlocked!" on the search screen. We handle sensitive data. -The Unlocked Fairy finds an unattended iPad. The owner returns and does not seem thankful for the Unlocked Fairy's magic blessing. -I take it the recycling bin is full http://t.co/5qiBzEKsOf -@kaepora have you solicited feedback from users? -Gmail is 502’ing… I didn’t do it this time -@casualmalexlfan @qDot I’m… guessing someone forgot to write a separate error text for “name rejected for vulgarity” -@echristo Ubuntu. -"A debugging session is active. Inferior 1 [process 2508] will be killed." Wow gdb that is a really harsh thing to call my program -"The program 'gdb' is currently not installed." But nasm was? Go figure. -@lintile it's... it's so pretty th-NO BAD ABADIDEA YOU HAVE A NICE GREEN LAPTOP FOR WINDOWS -This cutesy real-time roguelike with a focus on enemy AI is almost to its pledge goal --> http://t.co/3U5WI7niqX -@lintile the pink laptop still works just fine despite its little accident and I paid all of $50 for it brand new in the box ;) -The dynamic duo @MarkKriegsman and @focalintent are working on LED driving algorithms and cameras just can’t capture the vibrant range -@jgeorge inquire with @focalintent -I'm disappointed how pale this looks compared to IRL... typical Veracoder desk accessory. https://t.co/fXwzD63u7d -http://t.co/kvXomcqRQH I don’t agree with the final conclusion “don’t use cryptography.” We NEED it so bad. Use well-tested solutions. -@BenLaurie the first thousand are always the hardest. -I walked into a meeting and the wall was a flat screen TV with four webcam views of remote coworkers #thefuture -@m_cars I didn’t even realize the game would let you keep buy orders going that you couldn’t pay. -@_wirepair pro. -@focalintent Ohai!! -@QuantumG so when you sell the UI warns you that you're selling for 99% below average price but you're actually right on the money -@QuantumG in eve the "going price" for some cheap things is highly skewed by people trying to sell for way too much -Though the scams where they trade an item in exchange for your money AND your item seem to be largely the fault of a poor interface. -Example scam going on right now: "I'm selling for 600 isk each! Below local average!" Divide total by units, they're 6000 each. Duh. -Eve Online: flew out to Dodixie to watch the scammers. Who actually falls for these?! -@akopa it's not haskell that's bad and I know it. It's just that my creepiest stalker ever was a fanboy :p -@rantyben .... *slow clap* -According to the pi calculator I just wrote in asm, pi == 9.909090909090909090909090909090909090909090909090... . Hmm. Might need some work -@amanicdroid you're a doctor so it must be true -I need to glue a sign to my monitor: "if your asm is segfauling and you don't know why, YOU FORGOT BRACKETS AROUND A SYMBOL" -@JZdziarski @comex no, no, the reptilians. (Also, it wouldn't be a firmware patch, probably just a plist tweak) -Hmm you know it's been a few weeks since I've heard about anything getting ddos'd is it exams time or something -@stillchip @schrotthaufen no, it's straight asm. The process terminates and the OS reports a floating point error. -@schrotthaufen @stillchip well, yes, but the wording itself is what I am complaining of :p -@stillchip except I wrote the asm div instruction myself :p -# 339160383761825792 -Computer I agree that I divided by zero but I really don't see how an integer division instruction raises a floating point error -@snrson in my case it went very smoothly as it was actually a summer session for gifted teens -@panther_modern @Private_Dev most either fail out or give up after the first year -@panther_modern @Private_Dev in my experience, in the US, in a class of 20 you'll probably have one or two cheaters, but only at 101 level -And yes, I both taken CS101 and TA'd it :) -@panther_modern @Private_Dev how common cheating is in CS actually depends very much on what country we're talking about -.@Private_Dev the sorts of students who cheat at CS 101 frequently show a startling inability to remember the structure w/o a template. -In this case it was an otherwise complete program that omitted "int main() {" and final "}". That would probably stump most CS 101 cheaters. -@puellavulnerata it's a completely 100% working answer. It just omits main() { } in an otherwise complete file with includes and all. -I suspect some stackoverflow answers contain deliberately noncompiling code, to stop kids from simply copy-pasting as homework. -@dancapper @xthread @dakami you set ONE COMPUTER ON FIRE on camera... -@MarkKriegsman whenever "rep stosd" became a thing, which I'm guessing was 386. -@MarkKriegsman ... hey it's still cool even if it uses an operating system because it works on multiple operating systems w/o modification -My asm program has one unit test: did it segfault y/n -@DaKnObCS I know! They won't reassign me their IP block for some reason... -@DaKnObCS twasn't me! however did you actually notice that though :p -@thoward37 they better well read mine. Because my comments are hee-larious. -How self-praising are my comments in an asm program allowed to be? Is "look at that smooth devil" a little too far? :p -I think Amazon and Google are conspiring to hide the one page I want from the preview of a sixty dollar book -@comex kids these days, all think their elders are crazy… -It’s a beautiful day to go for a walk and have a mild allergic reaction to all the freshly cut grass. -@comex bet what's a coincidence? The behavior has objectively changed and I don't remember updating anything. -@comex then suddenly on Friday it stopped doing that and the VPN has not shut down no matter how long the device sleeps -@comex My VPN used to always aggressively shut down and I complained about it on Twitter a lot -@pmjordan don’t have a carrier -In particular I’m confused because I’ve never seen an iOS device silently change behavior before without an explicit update step. -@pmjordan I use the built in VPN -So did Apple push out a silent change to how my iOS VPN works? http://t.co/MOHWsnq4AA because it’s been days and it’s still going -@mattapuzzo @jenvalentino @thegrugq you better bet your bottom dollar you’re effectively a criminal in this day and age. -@m1sp hugglepoke -@rantyben yes, the difference is that everything I do, I do stone cold sober... which makes it even funnier IMO. -@zanelackey should I laugh or share sympathies? -@rantyben aaaaaand there it is. -@rantyben I feel lie this tweet is your version of my “I’m going to try something with a lighter” -@dakami well, the universe is expanding, so everything has to be moving apart. -@borgmamel @0x17h I think that’s more a basic limitation of storytelling format -@attritionorg and they say *my* after-midnight tweets are weird… -@rogueclown @niteshad the ad was insinuating that inorganic minerals are useless to your body because they’re inorganic, duh! #iron #irony -I find Haskell to be triggering. Yes, in the tumblr social justice sense. Loooong story, creepy dude. -* Start reading a paper on a spigot algorithm for pi * Surprise! It’s actually a Haskell propaganda tract http://t.co/ewWhGP9PDr -Just saw a health nut ad to “learn the difference between organic and inorganic minerals.” I guess they want me to take amber pills. -Check chapter 13 for what these people are advocating for “active defense” of intellectual property http://t.co/AN4N5C4RIh (hint: malware) -@Raxphiel I've never reached the "second job" stage of any game, actually... -@mdowd I pay you to audit code, not grammar (I don't pay you) (But you're still welcome to audit my code anytime) -@mdowd It's called "Victorian subtitling" geez http://t.co/D68NTFLkeA -@EntroX -- @m1sp and I briefly joined, but they were very suspicious of us and wouldn't give us any actual fleet location info XD -In which 0xabad1dea writes a love letter to her space ship. http://t.co/5Xf0wYa8jy -@comex I don't feel like teaming up with random strangers though :) -Also, today my husband said: "wow, you're STILL playing eve?" Apparently this was genuinely unexpected. -I think I need to start a corp in Eve just so people will stop inviting me to theirs... #antisocial -@JackLScanlan here’s your cookie for reminding me I don’t know everything -@WhiteMageSlave zomg did you know that Resetti says something specific in Brawl if the camera leaves him behind -Smash Art: I summon the dark fury of the Reset Button http://t.co/gBUwDA3QN9 -@Mr_Reed_ probably was back in Virginia. But yes 25 is exactly right :) -@Mr_Reed_ I like that you assume this was the year it came out — for all you know I could be sixteen :p -True story: when I was 14 my grandmother said I wasn’t allowed to play Morrowind because it looked too scary. So I raised the gamma. -But graaaaandmaaaa video games are SUPER educational. I can sing the whole Brawl theme in Latin -# 338804188068864000 -A sad chiptune https://t.co/oxaGvZMhLd "Not another hymn!" - @inversephase in about thirty seconds -@raudelmil No, it disappears *when you click Not Spam*. -@AIRmusictech your website is confusing and you should feel bad. It should say VERY CLEARLY, UP FRONT I can't just buy Ignite. -@infosecjerk @puellavulnerata they can’t implement in a bad context what they don’t know. -@PresidentHoodie peanut butter pop tarts?!? Oh gods want why doesn’t my store have them -Anyone know @jonmatonis ? His account has clearly been hacked and it’s just sitting there… -@MrToph well it’s not wrong. -@kvegh syncing flags is hard! -@pchengi and is *no longer on the screen I was just using to read it* -Eve warps your sense of scale really fast. “These maniacs have TWO space stations orbiting the SAME moon! How can they live so crowded” -@friestog so what?!?! It's fundamentally broken UI. It doesn't just violate Principle of Least Surprise, it throws it on the ground & spits -I should emphasize: *disappears*. It completely vanishes from my sight. It's gone. Poof. No more wordsies for me to readsies -@friestog it DISAPPEARS. I was STILL READING IT. -Dear gmail: 1) view legit mail in spam folder 2) instinctively click "not spam" 3) it disappears and remains "read" DO YOU SEE THE PROBLEM? -@puellavulnerata they were really popular in the 90s for blinging denim jackets :p -@vathpela you're actually close enough to my house to have done it so are you joking or -@puellavulnerata a bedazzler is a glue gun for children for sticking rhinestones on things. -Should I even ask how the beer box in my living room got bedazzled? -Someone made a smiley face out of sale stickers on the shopping cart return sign. I like this human. -Eve Online: I destroyed a shield generator! It dropped some loot! It dropped ... ... ... ... ... ... ... dairy products. -@Ruzvay @Kufat still counts ;) -@Ruzvay @Kufat a bad password is a bad password is a bad password no matter what technology it is implemented with -Ten points for style, minus three for spelling, anonymous hacker. http://t.co/XS5Tr12Wb3 via @Kufat -@m1sp I see you there. Stop being so afk on teh chats! -@savagejen it takes anywhere from weeks to years. I’m pretty sure the letters are normal to ward off being pestered about it -Sleep in late, receive dream vision of new static analysis algorithm. Good deal. -@rantyben in my opinion, only specific threats against specific people count as “not free speech”; that image not specific enough. -@kikitheman it helped me a lot in the Angry Newly Unconverted Phase. -@thegrugq @snare what did you do to make youtube prompt about opening in an external application -@thegrugq @snare #jokeexplainerexplainer -It's two in the morning and my biggest problem in life is: but who wrote the anonymous IOCCC entry of 1984? -@wimremes sigh -@wimremes wut, what did they confiscate ? -I wonder who at @StateDept got stuck tweeting after midnight on a Saturday night ;) -@snare your question answers itself -@m1sp o.o -@YourMomBot you have no idea -@sanguis3k for me that would be a fail :p -@Ionustron ... so I think the secret of my style is a stalwart refusal to actually study the "correct" way to do it ;) -@Ionustron I have no idea what I'm doing, I just am make square go wooOOOooOOOooo :p -@Ionustron well I already finished it --> https://t.co/AFbYL4C5XR <-- it's just another little RPG loop :) -@Xaosopher sure but is it legaerrrr ethical? -@Kosta_Kosta_ yup. Though safe to assume it refers to my husband lacking further context :p -I need to get some sort of decibel-based shock collar for Dear Husband and Delightful Housemate. -@tpw_rules played with it once, didn't like it... I actually prefer a few simple generators I have good control over... -@demize95 well you can never 100% avoid morons but you can come reasonably close :p -@demize95 basically, the "advice animal" parts attract the most morons. And there are actual MRA boards, of course, it's a free country. -@demize95 oh they're there. It's entirely a question of which subreddit you're on. They're distinct mini-universes. -I call this a "one laptop battery chiptune" because that's how long I spent on it. https://t.co/AFbYL4C5XR -@sakjur oh and the backpain. Oh and being accused of dressing improperly, wearing a normal t-shirt. -# 338444267460648960 -@sakjur It's like being really fat but only in one spot. Fitting nightmare. -@sakjur Indeed. If I go to the store, most of the dresses etc simply won't fit me. -@apiary I'm writing music! -On that note, I am probably the only reddit user who subscribes to this subset... http://t.co/c0jpzyflkc -@chead ..... :( -Never date someone until you see what subreddits they subscribe to. -@lindgrenM we've had zero problems and everything is great :) -Chiptune problems: halp my square waves are canceling each other out -Once again, half the company is here playing Drunk Quest, and I'm playing Avoid Drunks So I Can Write Music Quest #antisocial -Frustration that this Saturday is slipping by because it's rainy and I'm low-energy. Suddenly recall that I apparently have the Monday off. -Whoever wrote all the wikipedia entries on the different musical keys seems to think that music only happened in the 19th century. -@akopa well in my opinion their priorities don't make sense so no :p -@wgl8 and yes, at one point, a few years ago, in America, my electricity was going out a few times a week. -@wgl8 my access to water, electricity, internet, and health care went up when I ditched Ruralia. And so did my extra money. -@ameaijou the number of times I will need to *offhandedly* know the size of a criminally dangerous cipher is likely zero :p -@ameaijou it’s a certification that one holds a general USEFUL knowledge of IT security that can be put to use in general practice; -@ameaijou @veorq and is frequently accused of being… behind the times. Like so. -@ameaijou @veorq CISSP is a certification to do a job, not a four-year degree in theory. -@oh_rodr @thegrugq fortunately they let you count the nodes and don’t make you guess if that’s 500 meters away or 200… -I just wrote this very long rant on generational spending differences and tumblr failed to post it. Probably for the best. -@thegrugq I actually don’t have a license. Because I have poor depth perception. -@benwmaddox I like computers. -@me_irl I think I just searched Bluetooth keyboard mouse on amazon -@8bitstatic I have no opinion, actually… -@ezchili you northerners and your summer “evening”… -@angelXwind why would I want to make my most secure computer not very secure anymore? :) -@angelXwind nope. Never. -@Xaosopher rural is the worst -@jjarmoc fair -@8bitstatic in my case I had to run an efi recovery utility after Mint installed to put windows back on the boot list -@8bitstatic that laptop dual boots. If you get one with EFI instead of BIOS, do some googling to make sure your distro will dual correctly -Of course, I had to move to make the idea of not having a car viable. Don’t be both rural and a lover of technology. -@8bitstatic anyway I play Guild Wars 2 on low settings on my $300 laptop and it’s okay -@8bitstatic Skyrim is one of those games that’s a five-year benchmark :) -(Yes, I understand that if no one bought new cars, there wouldn’t be any used cars :p ) -@angelXwind the VPN is completely separate from the wifi, it aggressively shuts down more than the wifi does.m -@8bitstatic for $500 you can get a laptop that will play most games, but not Skyrim and other very intensive ones -@Kufat the bus, remember? Because we escaped rural hell. -@8bitstatic iPad, laptop, more laptop, more iPad, etc. -(We have a car now, and it’s used. Why do people even buy new cars?) -Older folk called me a “big spender” for buying a $500 computer twice a year, while their car payment was $500 a month and mine zero. -Quote from this article of several months ago, on the mystery of why people like me put off a car as long as possible http://t.co/JpyAq7XQbQ -“I don’t believe that young buyers don’t care about owning a car. We just think nobody truly understands them yet.” — only a marketer… -The true risk of Google Glass http://t.co/TLnOG5aIcq -Larry Page: “your dang privacy is getting in the way of my goals!” Eric Schmidt: “Fight for your privacy!” http://t.co/d6oQ4vwCFj -@myfreeweb I promise I would not be expressing confusion if I had just updated my iOS. -Two people suggested “ghost of Steve Jobs” within ten seconds of each other. -All of the sudden the iPad is keeping the VPN up across device sleeps. What did I do right? -I’m glad I found out DH invited my *manager* over for cards before I went downstairs half-dressed -@m1sp and your very next tweet… lol -@m1sp slice of life comics, which are popular in Japan. -@SarahAnneWillia @WhiteMageSlave agreed, stranger. I had a serious case of zora-kin at the time -@0x60 nope that’s right :) -I'm still working on that Paper Mario/Touhou cover btw. But I have no idea if I am make sound good??? https://t.co/CoHXbzxTRb -oh no I restarted Chrome and for some reason the font size of the URL bar is very. slightly. bigger. #uirage -@comex you can come fly with us :) -@m1sp "The Caldari would rather die than have their plans go to the Gallente!" They hate us for our freedom -@xa329 newest and it's a kindle edition, chapter one first volume, immediately before the section on unicode -Does health insurance cover Gamer's Elbow? -@PiersonBro I think the game is using the premise that everyone has essentially unlimited CPU, so there's no uncrackable crypto. -@PiersonBro well presumably computers aren't going to get twice as fast every 18 months for the next *several thousand years* -@PiersonBro don't know; cryptography has accomplished what was assumed impossible a few times already in the past century. -My favorite thing about Eve Online is that they have instantaneous interstellar communications but never solved the key distribution problem -@spacerog Adobe is Not As Bad As They Used To Be and Verizon screws up our billing Only Occasionally. -@H0lyPuma oh, are they still around? -@comex is so -@comex Google! So lackadaisy and inconsistent -@oh_rodr I see you there -@0x30n is utterly perfect in every way! -Oracle has bad process. Twitter is flaky. Apple is too secretive. Nintendo can't design a system interface. MS is bloated. Who did I miss? -Oh my gods this is too precious a tweet accusing twitter of being flaky was sent to drafts -Sometimes I say something negative about a company and someone who works there favorites it and I'm not sure what to make of that -I like the Windows Internals book's fantasy that most users and *administrators* will never need to edit the registry directly. -Intel rings 1 and 2 are very lonely. -# 338081226126659584 -@Kurausukun things that should take a minute like adding a new wifi end up taking fifteen to twenty >.< -@Kurausukun once I've spent seventeen years navigating endless menus that take forever to load and get to the ACTUAL GAME, it's fine! -@lukas2511 but the file does exist, and it does have a colon in its name. -SCORE!!! Free skillpoints in eve for downtime while I wasn't playing! -@m1sp ring ring ring ring ring ring ring melissa phone -So Windows has a "taskbar" and "task manager" but nowhere else are they called tasks ... Not quite #uirage but a bit odd. -@thegrugq it's one of those things you need to get in touch with your feminine side for -@fwsudia what did I break now? :D -@sakjur yup -Those asking if the Sprite is from my purse: it has been on my desk as long as the snowflake design suggests. -@k0ck4 mostly online video games. -Somewhere in the Wii-U is a cute and simple touch-driven operating system who wonders where its life went wrong -@dangoodin001 @vogon @jeremiahg I was under the impression Apple paid for that rather than develop their own at the time. -@jeremiahg @dangoodin001 I think one could reasonably say IE is included in the Windows licensing price -@Kufat *hug* -@Dykam I like the way you think. -@blowdart well they ought. But it turns out I do wear other colors ;) -@spangborn http://t.co/g8nKwpVe6P -@blowdart I’m a large men’s, so, extra large woman’s, which many don’t stock. -@sebasmonia @MeryPopppins un poco. -@blowdart yeah so I'm 5'10" and of stout frame - the drop of Swedish really shows -@blowdart depends on how big the girly t shirts go, as I am probably a lot taller than you think :) -@chc40 we sent them our notes on how the Kuaiyong pirate utility was circumventing drm -@grp @tapbot_paul I have your shirts muahaha -I thought my radios had arrived, I got the box half open before I noticed the return address was 1 Infinite Loop http://t.co/mfsNF7Adlx -@Wxcafe I'm allergic to cola ... -Things found in my purse just now: just the bare necessities http://t.co/1es3FQl2mQ -@tpw_rules lol I see you missed the fun... check my profile's image carousel -@tpw_rules Terrible Netbook, Post Fire Event -@maxtch well I gave up trying to fill it with wax after it caught fire. -!!!!! The USB port STILL WORKS if you push hard enough -@maxtch sure, but it's nice that it has both wifi and ethernet and three USB ports and a keyboard and mouse all at the same time -@maxtch heheh - I was trying to follow the tutorial video for sealing wax - but clearly I don't have that expert touch :) -@innismir @MrToph do you mean A Bad Idea or Toph? -@MrToph forgive the sales department, for they know not what they do -If you create "aux.exe" (one of the forbidden filenames) in cygwin then run it in cmd.exe, the error is that it violates your trust settings -@JZdziarski also, it would be 8 + 3 + no null terminator in a real dos implementation :) -@ColinTheMathmo well, I’m *trying* to break software, it’s just breaking before that software even runs :) -@JZdziarski it’s Cygwin. -@nullwhale true story: my cubemate @fredowsley tried very hard to light my ponies on fire with thermite. -@blowdart it's not my fault over twenty years of development wasn't enough to prepare Windows for me -cmd.exe has no idea what to do with this thing either. -@mof18202 cmd.exe doesn't get it either. But I somehow created this file in the first place -@vogon The filename, directory name, or volume label syntax is incorrect. -So I can't delete it because it doesn't exist, but I can't create it because it already exists. That's... that's deep, Cygwin. -I think I broke Windows http://t.co/A3SzStVk5e (again) -Well I’ve discovered new and exciting ways to break the filename before bit9 even gets a chance to refuse to run it -@p0wnlabs it apparently does, as I get an error in the form of (primary name) (unicode square) (alternate stream name) is not approved -I’m probably the first person to ever complain of this: Cygwin’s bash doesn’t support autocomplete of NTFS alternate stream filenames! -@no_structure yes, but simply running them from in bash generates that bash did a no-no -@dangoodin001 clients like tweetbot support “mute” which omits their timeline tweets but not their mentions of you -Bizarrely, the ‘mv’ command in Cygwin triggers bit9 as me trying to execute the argument, but not ‘cp’ -@apiary I can compile anything from source and run it but that’s cheating -Trying to break bit9 for sport. I feel like there must be a way to leverage the fact that Cygwin is approved -@duckinator @m1sp I can’t even dislike them I’m just so puzzled -@nullwhale lol bonus points if they’re bootleg -@spacerog @SEA_Leaks4 @itvlondon in all fairness, twitter two factor doesn’t work with all British carriers. -Babies: why do you throw things ? -A statistically significant portion of my trips to the mall include retrieving something a baby threw when the parent wasn't looking -@NationalistPony just remember… it was the taming of religion and in-group supremacism that gave you the freedom to be openly gay. Bye. -@kcarmical gods yes. No I don’t know why. -Because I’ll be honest “I like nationalism… and Twilight Sparkle” is just a bit outside my notion of great tastes that taste great together -Am I a bad person if I poke conservative bronies like a science experiment to see what they say -@NationalistPony @m1sp but you *do* put the word “nationalist” right in your handle, so you know, individuality, not your thing I guess? -@NationalistPony @m1sp Yeah they like the same things most humans do it turns out including choice concerning family -Honestly I would be in favor of Google getting its own root at this point. It’s probably just IE6 and Friends holding them back… -@NationalistPony @m1sp @tomblackuk oh wow again! Telling his fellow gays what gays prefer. The idea is to have the FREEDOM to marry, silly… -@NationalistPony @m1sp oh wow I think the entire point of that letter just went whoosh -Google is changing all certificates, including who the root is, on August 1st. Go adjust your hard-coded scripts http://t.co/QuEJ57uOGA -@siuying nope, it began with “My hobby:” and had no at-sign -@hemantmehta for another, that’s an extension of the “but you have nothing to hide, right?” justification of invasive surveillance -@hemantmehta for one thing, it’s basically impossible to not make a mistake, especially if you have a business or organization. -@Tomi_Tapio I found it physically difficult to tap on this photo to expand -@m1sp @profoundlypaige @JackLScanlan http://t.co/sm6XIlnf3v apparently we’re all peas in a basket or however that saying goes -Twitter isn’t letting me tweet with the “you can’t send a message to people who aren’t following you” message -@m1sp @tomblackuk @NationalistPony you don’t need to be gay to make a mockery of institutionalized marriage! My husband and I do every day -@m1sp @tomblackuk @NationalistPony because religion and nationalism have such a good track record of accepting different lifestyles. -@tomblackuk @NationalistPony @m1sp this is incredible. In the most literal sense. -@m1sp @JackLScanlan they can’t be one species. Clefairy is from space! -@mdowd my job description is cheating at the halting problem -@FiloSottile the sealing wax caught fire, yes. -@FiloSottile I did -@thegrugq he was busy playing video games… he realized mid-match what I was doing -@geekable I never received the original tweet… -@areyoutoo -- until I had turned the filing cabinets upside down looking for an answer -@areyoutoo if someone called me and asked when a bridge that just collapsed was last inspected, I wouldn't say "I don't know" -- -@JastrzebskiJ hacking power sources? Who gave them THAT idea? -@puellavulnerata @dani0xE … the sad thing is I can totally see the DHS afraid that terr’rists might use video games. -Unfortunately the news link broke. But the Department of Transportation “doesn’t know” when the bridge that collapsed was last inspected. -@DrPizza that’s a funny way to spell google employee… -@akTed_ experiment aborted: laptop is on fire -“The Department of Transportation is not sure when the bridge was last inspected.” http://t.co/Ayk8qvDXA9—208760201.html -@_wirepair one does not simply optimize X -So I have a pirate skull stamp and some fresh soot http://t.co/CKcqA9IJXm -@Zavie testing if one can "disable" it with wax and remove the wax and it will still work -@rob_rix (really though I got it off Ali Express, search netbook and sort by price) -@rob_rix a) China b) your corner store, and also China -@malbolgia it's sealing wax; it's supposed to melt and drip. Didn't go quite like in the video. -Hello new followers. I'm actually a professional researcher. I swear. Stop looking at me like that. You set ONE pink toy laptop on fire--- -So when I called it the ultimate "burner" laptop... -@thegrugq @dakami the ocean, I usually see good sunsets at the ocean. -@Souley Classy. -Let's get an instant replay to see where exactly 0xabad1dea went wrong tonight. http://t.co/EGYRMjdEsc -.@_wirepair @IPvFletch I wasn't sure if the wax would hurt it or not. Which is why I victimized the Terrible Laptop -@dipidoo I did buy actual sealing wax. -. @IPvFletch testing an idea of filling a port with wax to temporarily prohibit it with tamper evidence -And yes, I stopped to take a picture of the USB port on fire before I put it out. http://t.co/5OR7lnlSxg -I lit the candle too well and fire dripped down with the wax and caught the plastic on fire. So, hypothesis remains untested -Hypothesis: it is safe to fill a USB port with hot wax. Result: I can't be trusted with anything ever. http://t.co/cs3YlIHTLm -I lit my USB port on fire -.@kyhwana in that case it's working -Bad news: either I don't know how lighters work, or it's dead. -@nikitab sort of... Google "smart book arch" -Good news: I *found* the lighter. He can't impede science. -Going to go ask my husband for a lighter for Science; bet you $5 he won't let me use one without adult supervision. -@_wirepair @jesster_king that reminds me, I was going to experiment with pouring hot wax into its ethernet port tonight -@essobi @jesster_king I think I misread it. Oh well, what's four dollars. -Correction- LIKE my $50 laptop, but with half the ram- $35 - http://t.co/TdjHGL1g7I - screenshots are fake- via @jesster_king - expires soon -Effectively irrevocable SSL certificates http://t.co/vXxpCFVLxe -@m1sp well with five drones I can now literally instantly destroy the weakest ships -@Kufat maybe you’re transethnic Irish -@ioerror you? Cynical? I can’t see it :) -@Kufat I suspect it’s because you’re tall. -I suspect there’s a strong correlation between not liking Luigi and being the oldest sibling -Bonus smash art: Luigis gonna creep http://t.co/Qt1tx84eyt -Tonight's smash art: slaying the dragon http://t.co/m4rUGPqmTH -# 337714438746558464 -@HyShai … if he’s not a pedophile then sure ? Especially okay if he’s not the only adult. -The message sent by “we’ll allow gay teens, but not gay adults” is “we’re hoping we can straighten you out before it’s too late!” -@herodfel I’m afraid this is an untested area subject to case law. Because Nintendo 64 ain’t have system updates. -@nickdepetrillo @dakami because it’s a) duplicating work so everyone loses b) frankly dangerous to not share ? -If I were a kid on a “turn timer” for the Wii-U, 75% of my hour turn would have just been used on that update and my brother would cackle -@nickdepetrillo @dakami and they should be… sharing… that… data…? Why WOULDN’T you -@blowdart that’s the legendary Microsoft efficiency -@blowdart also “another office move” is the most Microsoft tweet ever -@blowdart maybe I have a small frame geez -Wii-U has a serious case of Microsoft Time: “14 seconds remaining … … … <five minutes later> under one minute remaining” -Let’s play Wii-U: Do you want to firmware update? <yes> Close current software? <yes> Do you want to firmware update? <yes> -@jdiezlopez … I can’t even tell if you’re trolling :p -@SheriefAlaa_ see @NedGilmore : “it’s not Always On! Except your games won’t work anyway, so…” -I look forward to a datacenter outage causing my game to go literally dark because the light physics were being calculated server side -Why put a stronger video card on the Xbone when you can just back it with a thirty thousand node computing cloud? http://t.co/Zoyi7UC7y5 -@oh_rodr oh, I’m not disputing their utility; I owned their manuals when I was younger. -@nickdepetrillo @dakami that’s the sort of thing that it shouldn’t matter what “country” you’re in. -And yes, Boy Scouts have been expelled for being atheists before. To my understanding, it’s not universally enforced. -@oh_rodr @JimJam1394 anyway google “boy scouts expel atheist” for a bunch of individual examples -@oh_rodr @JimJam1394 … yes. -Boy Scouts of America: “Okay. You can be gay. If you’re a minor. And you had better be a GODLY gay.” -@dakami @sneakin I buy spaceship insurance… in Eve Online… -@kivikakk @m1sp and, it feels so much softer than ice, it’s hard to explain. -@kivikakk @m1sp I consider this genuinely unfortunate! There’s nothing quite so entrancing as falling snow -@dakami http://t.co/dH6infxZCF insight into our minds… -@Kufat I’m just going by https://t.co/ZWUSl52wFC -@dakami here’s a super quick approximation of what I see http://t.co/p5MFnJCCUI -@dakami IDK; I think the sun looks bigger at sunset but I haven’t seen many unobstructed sunsets in my life -@dakami I see it. My dad sees it so strongly he swears it cannot be in his brain but in optics no matter what scientists say :p -Little things that drive me nuts: fake equalizers in music players that mean “it’s playing” but they have no relation to the sound #uirage -@dakami the leading theory is that the illusion is due to the mind modeling the sky as a shallow bowl -@grayj_ @miuaf this thread was originally sparked by a job posting. It’s one of those faddish words startups use -@grayj_ @miuaf few people sit there and say “I’m going to use gendered terms today, because BOY am I sexist!” -@grayj_ @miuaf but that’s precisely the point. People don’t THINK about it because it’s never been pointed out what they’re doing. -@grayj_ @miuaf as a craftswoman: thanks for not wasting any effort on my trivial concerns. -@dakami most people perceive the moon to be dramatically larger on the horizon than at its zenith; you don’t ? -@Schabse no, that’s definitely an abuse of their terms :p -We blow up people in other countries because they pose an imminent threat, being only thousands of miles away and sipping tea at the time ! -@0x17h anything and everything. It's always there, especially when you're in an office with hundreds of machines... -@0x17h I'm not transmitting anything? -@DrPizza it's a scientific image of highly non-compressible data. YouTube would just make it blurry -@zeroday that maximum size is actually quite low, like, 15mb I think -Apparently if you have enough viewers on Google Drive, you'll eventually get an "anonymous nyan cat" -@DrPizza in my opinion it's not very interesting when small and blurry. -Here, you can download it, but apparently not view inline https://t.co/aTTySZFwbP let's see if y'all break my Google Drive too -@grp it's like eight colors to begin with -@grp too blurry -@Schabse well that was fast -@landley yup. -Huge (112MB) gif of the cheap netbook booting and blasting an FM music station at ~100.5mhz off the air https://t.co/wpJrCWwpgU -I just made the most amazing gif of the netbook's boot sequence in EM. Unfortunately it's 112MB and even @imgur gold won't take that -I have been informed that children these days refer to life "back in the nineteens" -@VolumetricSteve heheh I love it, but only because I don't actually have to use it for anything ;) -@bobpoekert ... that stretches the definition of 'netbook' :p -@mof18202 all the tutorials say to copy a restore image to an SD card and boot from that to fix Windows -@VolumetricSteve you now know as much as I do: http://t.co/cgIyc56bbi -@mof18202 it has flash; I suspect it's literally an SD card glued down. -@VeronicaDire there's no interface to even change those to begin with as far as I can tell -Just noticed the Terrible Netbook has a reset pinhole on the bottom. What does it reset exactly? -Just had to refresh Twitter for Windows 8's Connect tab twenty-seven times for one day's worth. PLEASE test your UI with real accounts! -@locks @glyph @roguelynn “They have a bug in their code. Do you know how to contact them?” <— conjugated exactly as plural they -@grsecurity hey, my ex found vulns in X! -Change his wallpaper to a koala, change his wallpaper to a koala, change his wallpaper to a koala early in the mornin’ -What shall we do with an unlocked desktop, what shall we do with an unlocked desktop, what shall we do with an unlocked desktop early in— 🎶 -@eqe already have some in Sweden, it’s working out well -@bertjwregeer nope. There exist computers with different banks of ram that are fundamentally different. Went out of fashion though -Realize that implementing the system of a European country will be roughly 50x as difficult. America is consistency Hard Mode. -I think the American public school system as we know it is absolutely horrible. The problem is what can we do that isn’t even more classist -@DrPizza and normally that’s fine, not everything is international news. But it adds a counter-perspective to shocking international news. -@DrPizza well, from an *international* perspective, we didn’t hear of it right after it happened. -@Packetknife well, the free sample cuts off before he explains what to replace them with that won’t further disenfranchise the poor -It’s that time of year where my arms are pockmarked by dozens of tiny bug bites that don’t hurt but I can see the scabs -@m1sp wrapping in braces isn’t particularly hard :) -@b3ll @comex an astonishing portion of electronics on sale in China rip Apple icons directly :( -@m1sp “break can be used with any labeled statement” sounds like you can implement goto if you really want to -Wait. JavaScript has labels. But not goto. But you can break or continue to a label. Which is goto. What -@H0lyPuma get on Ali Express and sort by price :) -@DrPizza really I love it, it is perfect SSH device -I can’t get another $50 Netbook because I’d have to pay shipping too! -So the question is: what should I spend my anonymous $50 debit card on? -@philpraxis @thegrugq I see a bow and arrow, but other than that I can’t make it out -@ra6bit I didn’t learn this from eve because storage in space stations is inexplicably free and unlimited -@ra6bit things I didn’t learn from eve: also consider the costs of storing them safely for 20 years vs. what else you could do -@ra6bit except each one’s existence would drive down the price a little more! I learned this from eve. -@Packetknife well that’s a tragedy. But I try not to source my tragedies from sites with marquee gif banners… -@BomuBoi oh my gods you just filled me with so much retro programmer rage -(Yes I realize there are $60 games on Steam, of which I paid $60 for exactly one, Skyrim.) -@dakami wish I had as much money as such a “toy problem” generates :p -Everyone. Here is the difference between Xbone account lock-in and Steam account lock-in: fifty five dollars. Sometimes fifty-nine. -@dmca @kivikakk but there is some bogus kivikakk: @kivikakk_ebooks -Whoa they gave me a $50 prepaid card for a blog post. Everyone who said blogging isn’t a viable career is wrong ! -@m1sp and @WhiteMageSlave and I did the same with snowball items in an mmo XD -@m1sp it’s from a Calvin and Hobbes comic where he stores snowballs in the freezer so he can save them for when least expected -@m1sp where’s my cookie for being hemisphere-inclusive -@m1sp should keep stockpiling them so they're like snowballs in July :p wait, down under, like snowballs in January...? -@L0sPengu1n0s nexus 7 -@LowestCommonDen several, but in this case, my job’s corporate blog -@securitygen @McSkeets it is, but the actual tools are only available internally, without them I just bust out the disassembler :p -@ScaleItRon it makes sense when you have more than one kind of memory -@bertjwregeer different banks of ram. -@dakami … i* -@pat_wilson @DrPizza @travisgoodspeed as implementations of C :) -@pat_wilson @DrPizza well @travisgoodspeed is dropping the chip models so you can dispute it with him ;) -@pat_wilson yes, but that is not what I asked ;) -Okay are there any real world implementations of C where pointers to different types are different sizes -@Netbus yeah, it’s less black -Thank you Android, I get the idea http://t.co/abe8nSAWdH -@m1sp I feel far too much like I actually accomplished something for having my “Gallente special forces” certificate -@The1TrueSean just keep in mind your Bandwidth Privilege. -@bobpoekert … so that’s what that little critter is from… -@bobpoekert I think that was for the best… -@The1TrueSean Dude. I was on dialup until I left for college in 2006. -Long review (with bar charts!) of asm.js http://t.co/hPPMRFatry -And of course my iPad is worth, like, over three hundred vaxen. -I like how the Dhrystone benchmark returns results in units of vaxen -@ch1gg1ns to me it’s just a tacky heavy-handed sci fi with rubber suits about young ladies getting themselves killed for some immortal guy -@nrr those dirty homophones, always sounding the same -@ch1gg1ns hate it. So better I exclude it. -@sergeybratus I try not to let Rikki Tikki Tavi inform my international policy too much -.@Twirrim “Being a woman. Being a man. Middle class. Poverty.” -@TechJournalist absolutely not, tis a silly show -Actually my entire conception of British culture is the superset containing Charles Dickens and Harry Potter -@Twirrim it was The Sun I was just looking at -I always assumed the journalism style in Harry Potter was deliberately absurd, but you know, real British newspapers do sound like that… -I just went from over three thousand unread mails in my gmail to under two hundred in a few minutes. Because it turns out only bots email me -@CyberiAccela that's pretty much what just happened I think -Apparently I won some sort of award at work because you people click my blogs so uh thanks -@dakami I suspect it actually would, since the example they gave was "you there in the blue sweatshirt" -@C0deH4cker @H2CO3_iOS you are a bad person -That's one oooold svn repo. https://t.co/drrQhgC6g9 -# 337356244278976515 -@zygen but aren't I logging in directly through twitter itself when I log in through the mobile web interface? -In fact I'm nominated the completely undocumented "snlflg" as the most C-ish variable of all time -@DrPizza I am interested in make browser go more fast, don't worry :p -I shouldn't be surprised that the source of the first self-hosting C compiler is so... cryptic. https://t.co/3tVv8L3Z9H -.@nemof @jordan_newfield plot twist: next sign just out of view: “If we were not so well-educated, we’d write like this:” -@mof18202 also, logout on the mobile website is inexplicably hidden on your profile page -@mof18202 this doesn’t describe the workflow I had at all… -@rhcp011235 it’s been completely unplugged for most of that. -Mildly disconcerted that my Mobile Twitter login cookie is still valid on the Wii-U after… months -@DrPizza ooh, gimme a hint -Also I can’t get a Sunspider score for the Wii-U because several of the tests fail entirely -The Wii-U browser just said to me “hi there, haven’t seen you in a while.” Passive-aggressive electronics: EXACTLY what my life was missing -@tojarrett @MarkKriegsman 🏆 -@Hyder_Khan actually my nickname in school was Misty… -@Hyder_Khan haha wat -@WhiteMageSlave the computer gave me Hat Jigglypuff, apparently my subconscious assumes it’s you -@0xcharlie I just award myself pwnies whenever I’m down, don’t you ? -@WeldPond of course it was… -@nullset2 assuming it can export jpeg to real services and not just proprietary format to Nintendo Magical Portal To Nowhere -Conga Line of Pain (I main Zelda, can you tell?) http://t.co/pDTq0lZVS5 -@optshiftk @VTPG that's my middle name, don't wear it out 😜 -See photographic avatar. “He looks like he’d work at Apple.” View profile. Yup, he works at Apple. #acertaintype -Smash Bros gives me THREE Snakes as opponents? That’s random like stop and frisk is random -@Ask_WellsFargo I realize this is a generic response but really the text on that page is in general quite poor -“According to Nintendo, it’s the Year of Luigi.” “Wow, glad that’s not MY zodiac year.” -Oh wow you guys! @WellsFargo uses a firewall *so advanced*, only browsers that know the HTTPS protocol can pass! https://t.co/ef0HHszERN -@wookiee “tarnation” -@wookiee dagnabbit don’t laugh at me boy -@Dykam my bank has a fourteen character password limit and no support for other security features -@Dykam right. Because you’re European. We don’t do that in America. My husband can’t even check his balance online. -@0xcharlie this is what we’ll put on the projector while awarding you your next pwnie -@Dykam oh, you Europeans and your “modern banking” -Adding my Twitter to the list of accounts that are more secure than my bank -@zooko @hypatiadotca your mom’s a genetic fallacy, therefore so are you ! -@glyph @CISOinaBox @xkeepah amen, sibling -@arw Satan’s own corner case -@elad3 Twitter over SMS really doesn’t work in (I’m guessing) Israel? I thought it worked everywhere but, like, small island nations -@elad3 SMS and it works wherever Twitter over SMS already works -The verification codes aren’t very long, and digits only -It works! Also a maintenance worker just walked onto my patio and plucked a weed! I liked that weed! Also you scared me half to death dude -Whoops got it. If I suddenly stop tweeting, the 0xabad1dea Effect struck again. -@notch you sell out hater! Sater. Satyr? -@mof18202 it should work across the board (otherwise there’d be literally no point) -Apparently the news went out mid-rollout. -@harper for a whole five minutes now, try and keep up -I can’t actually find two factor on my account settings… -@mof18202 yeah I can’t find it either -@mof18202 have a confirmed email and phone number ? -@8bitstatic yes -Calling all media organizations who employ people who click things in email: You. Twitter. Two Factor. Now. -@kaepora you’ve probably been asked a billion times but is there an iOS bluenote in the future -@ElderScrolls Dovacat, Savior of Elsweyr -@MarkKriegsman 👏 -@CISOinaBox @xkeepah because you consider “woman” a trait but not “man” ;) -A common misconception is that bools are always packed bits. They CAN be, but that’s not as efficient as you might be thinking. -@CISOinaBox @xkeepah but generic programmers are women. Everyone knows that. -@CISOinaBox @xkeepah he? ;) -@CISOinaBox @xkeepah how much is unambiguous developer intent worth to you? -@CISOinaBox @xkeepah except, generally, bools aren’t actually bit packed :) -@xkeepah dear gods what’s a three -@SteveSyfuhs or possibly 16 or 64 -“IMO bool is an overhyped type, just use int” Ahh, I see we have a fan of truthiness in the house tonight -@MrToph several. http://t.co/HYMqOGudTF -@donicer @KimZetter #strawman I don’t see anyone denying scada is terribly insecure. Of course hackers “could” do a lot of things. -@JohnK___ this… is the pointer book. -This coder is using the variable “pi” to mean “pointer to integer” and I’m really confused because it’s not a float -When you accidentally reply all, should you immediately follow up with an apology or silently abide in your shame? -@Kym_Possible I did wonder, actually. -@rhcp011235 @KimZetter “They didn’t try to break in, they just knocked on the door.” -@innismir @sergeybratus @OrinKerr there’s a point at which you’re not a victim and just grossly negligent. -@rhcp011235 @KimZetter no, I think journalists have a responsibility to explain. -@zooko @hypatiadotca and yes, tap water with fluoride makes me feel ill if I drink more than a sip or two, but I still support it -@zooko @hypatiadotca anecdote: I’m allergic to fluoride. I use old-fashioned toothpaste. My teeth are a dentist’s nightmare. -@DrPizza the menu foretold by prophecy ! -@Taiki__San http://t.co/O2OLuOighZ :) -@therulerofchina @JoelEsler why? The point is to look up the hash, not to be resistant to brute forcing :p -@kebesays nope. It’s a \ which is a valid token in a comment if it’s the last character. -@Taiki__San no; we’re not considering aggressive optimizations here :) -For @kaepora who seems to think I am too pink and cuddly to be evil ;) http://t.co/D17xbH8xsO -@cdf123x no, the slash is what makes it a single byte zero; the escape does not go into the literal string. -@00_ach that's not "actually". The whole point is that it's in the spec but actual behavior is compiler-dependent. -Who's on xbox first? http://t.co/0MiPfAuahr -"<@kufat> oh wow, you are an evil creature" <-- Every morning I wake up and think "how can I be more evil today" -@asadr yes, it does. But the point is that's entirely compiler-dependent and gcc technically has part of the spec turned off! -@Balgan no flags. Actually just compile it with no flags on gcc and it will straight up tell you :) -@HyShai 15 printable characters + 1 null terminator == 16, but that doesn't matter. -Hello, fellow C programmers. Spot the bug. https://t.co/M4MiShpNtr #trollgramming -gcc, stop mitigating my deliberately vulnerable code!!! -If following @StateDept has taught me anything, it’s that Kerry is way taller than every official he meets and it looks awkward -@SimonZerafa @jdiezlopez to stick it to the man, allegedly -.@jdiezlopez I’m sure the police could have done a better job so it’s “their fault” to some extent, but anons are forgetting their mission -@jdiezlopez it’s not *terribly* surprising sensitive emails from the public could be found on an email server, really… -“We’re mad at the police, so let’s jeopardize the lives of thousands of whistle-blowers” GOOD JOB, ANONS OF SOUTH AFRICA -@mikko I’m a fan of how they risked every operation on none of the others being discovered with lazy cert reuse :p -@MarkKriegsman @JastrzebskiJ I didn’t know you were moving, where to? -Analysis of nginx bug: signed integers get someone owned again http://t.co/K0XfiLilZ5 -@xa329 of course it is. But you don’t need the keyword. Because it’s auto. -@washiiko … I have the dakimakura tag bookmarked -@antifuchs trigraphs also exist, I just prefer digraphs visually -.@antifuchs I once turned in a C++ homework assignment using digraphs. Troll level: how does this parse -@mike_acton Access granted, engage -@partytimeHXLNT err, this is a parody, right? >_> -@mike_acton @comex good recovery ;) -@mike_acton @comex err, isn’t that the register keyword ? -@Sidhpurwala it’s only been half an hour! I don’t know yet ;) -@comex we don’t acknowledge weird GNU extensions in Fort Bad Idea -@comex nope -@zygen \o/ -@zygen just had a bunch of mentions from the past 15 minutes show up as a burst; did you unkink the hose :p -Is there anything with an existence so sad and pointless as the “auto” keyword in C? -I actually bought the book. Will let you know how I find it, for your reference. I stole that joke http://t.co/jpwIBwLsiS -@zygen API client is not loading things… I’m going to cry -@Schabse wasn’t linked. Source was paper author on reddit -Aw yeah my order of ebooks qualifies for free shipping! Wait. -Allegedly the Indian APT asked for help on Stack Overflow. With sample code that contained URLs of their real C&C. Thumbs up 👍 -Gentle suggestion, @OReillyMedia : if I “successfully reset my password”, please reset my login attempt count too so I can actually log in -@LJonhny this being… -I wonder if I can pick up any pointers from this 200+ page book on nothing but pointers http://t.co/teRRLv0bwq -@comex @m1sp @pinkiepieebooks … #subtle -WKCPRG <-- 50% off ebooks on C at O'Reilly -@_larry0 that actually works? -@m1sp lol Wat -@benadida @marshray it’s a redirect now. There is actually an underlying security reason you can ask @homakov about… -@puellavulnerata taste the rainbow -@DarthNull @marshray @ralphholz when I was 6, my father set the Windows error ding to the entire themesong of his favorite cartoon. -@marshray @ErrataRob @drbearsec @DrPizza I’m pretty sure when you’re ordering RAM by the thousand you’re not getting express air shipping. -@m1sp I think @comex wants to be ebooked -@comex I don’t maintain them! The source is on @m1sp’s github -@comex there are many. @m1sp_ebooks @kivikakk_ebooks @etcetera_ebooks etc. -@comex @abby_ebooks I think it might have bugged, because its brother account did this tonight too -@m1sp the ebooks are posting whole tweets verbatim… -# 336994585945456640 -@ErrataRob @drbearsec @DrPizza found someone in Shenzhen who will sell me 8GB DDR3 for $9 to $13 each. Allegedly passes QC :p -Apparently I’ve made more animated GIFs than the inventor thereof has, so I feel emotionally justified in saying his opinion is wrong. -@kivikakk … lol -I’m not sure why suddenly we’re all arguing about GIF again but I’m game -@kivikakk at least they don’t do it in high contrast mode -@lifehacker all it’s ever managed to do is confuse me and obfuscate things -Tornado victims reunited on camera after all hope lost http://t.co/HxbZJa97cn -I think I’m over my First World Problems limit for the day. Or week. But really the next iPad better have 2GB+ of RAM -@attritionorg @cji well you’re on there twice so -@USSJoin and that has an actual firmware setting so they can’t just slide it up -@USSJoin I donno, I play with it off and it’s clearly labeled on the box to turn off the 3D for particularly young children -@thegrugq @USSJoin I do realize I have Adult Privilege here, but Nintendo 3DS is the best option for the “please mom please” crowd :) -@cji @attritionorg it’s my Wall of Respect -@jb33z according to my brother’s track record, an Xbox 360 lasts anywhere from two weeks to just under a year :) -@thegrugq @botnet_hunter 8GB; fair but that’s not on the five-year plan -@botnet_hunter @thegrugq they say keep costs down; I say I’m totally okay with a few extra dollars to double or more the ram. -@botnet_hunter @thegrugq yeah but I’m in a nerd war over he much ram is in the Xbox Dumb :p -@thegrugq “it’s not free therefore it costs too much” :p -@ioerror @carlbildt not when actual justice is being dealt fairly, at least -@ioerror @carlbildt funny. You can’t “know” what will happen with an accusation that hasn’t even gone to trial yet. -And suddenly thunder :D -@nelhage the biggest game I’ve ever installed was 18GB uncompressed; that’s Guild Wars 2 and it’s HUGE and highly detailed -.@matt_merkle or $500/$600 or whatever the difference would be between “enough ram, enough HDD” and “wow definitely enough” -I guess it just comes down to I’d rather pay (hypothetical) $500 for a GREAT console than $400 for a decent one. But I’m not 12 either. -@ioerror … sigh -@ErrataRob @DrPizza I’ll keep that myth in mind next time I’m saving money buying in bulk -@washiiko 16GB would be enough for most games I am pretty sure. -@hackedy not sure if trolling or literal -@ErrataRob @DrPizza (I’m assuming bulk rates; I can’t quite get a single stick of 8GB ram delivered for $20 yet) -@ErrataRob @DrPizza I don’t think their target market is gonna say “look if it was $410 maybe but $430? Deal’s off” -@itsdapoleece assuming an intelligent paging mechanism, it doesn’t have to be all loaded for the game to start, can keep going in bg -@torvos @tapbot_paul I don’t think very many games even come remotely close to the hypothetical size limit -@tapbot_paul well I didn’t watch the announcement but apparently it’s coming with half a terabyte standard? I think that’s reasonable -@niallgdonaghy nope -@tenfootfangs I reckon. Who would spend the time to pick up a $3 game used? -You all have some very strong opinions on RAM -@itsdapoleece no different from now -@CastIrony they CAN, but the biggest games I own are 18GB on disc; throw in some room for growth -@DrPizza I doubt RAM is the make or break cost factor -@vogon I have, get on my level -A pricey “next gen console” should have enough RAM to just load the whole game image as it boots and eliminate loading screens in-game -@Wxcafe @washiiko you know what they DO do? Stall every time you cross a zone boundary to load more data -@wireghoul @eevee @Rdio note that they’d have to be *inconsistently* stripping to cause this problem… -Why do I feel like I’m being trolled https://t.co/PLIW4OZL08 -@scanlime @qDot is this… reproducible? -@rgov you know about opting out right bro -@xa329 those last two are indisputably out of the question :) -@elad3 none, none, and not practical -@elad3 nope, first thing I checked -@stylewar most likely, as they say something specific to the situation like "you there in the blue sweatshirt" -Fascinating: the netbook doesn't start blasting EM like no tomorrow *until Windows CE is finished booting* -just heard a radio ad for a security service who will get on loudspeakers when they see someone on your camera and yell at them to go away -@demize95 hah my disguise is working -@_larry0 it appears to have NO shielding whatsoever; I've been scrolling through hundreds of megahertz of noise it generates -@_larry0 I am however profiling what the Terrible Netbook emits, and the answer is "yes" -@_larry0 in theory I could boot an outdated Arch and maybe get it working -@_larry0 no, the USB you see is a keyboard. The drivers would need to be ported to WinCE -Antenna stealth 101. They'll never know http://t.co/e16kWyIRJH -Score!!! ... Whose computer is this even http://t.co/26WHWjR5Cc -In fact I have no idea why or how this PS/2 keyboard is in my cube -I have this PS/2 keyboard I want to test for EM, but I can't find anything to plug it into -Adobe has released a decent freemium photo crop-filter-post app for Windows 8. Inexplicably, it's called Photoshop. -I super love it when OSX tells me to "back up my data to external storage" before installing an update. -@grp I wouldn’t call bliss’s work exactly trivial… -@grp “for every person who takes the time to complain, there are a thousand more who are thinking it” -@marshray @bobpoekert it’s 2013, they can put it on their website -@DrPizza IMO refusing to share code freely should be an automatic un-academicing. -.@bobpoekert I genuinely cannot fathom why CS journals DON’T require source for anything that claims to have implemented anything -@miuaf also someone once told me that character strings are implemented as linked lists of integers and my face was like 😱 -@miuaf so that’s what Haskell is tainted by to me :p -@miuaf according to my sample size of one, Haskell programmers are dysfunctional stalkers who are clearly thinking about raping me -I don’t think professional programmers are “anti-academic” as much as they are “anti-implementing-is-not-my-problem” -@miuaf @raichoo @darinmorrison that last one was openly hostile to teaching any OS/language used anywhere in the modern world -@miuaf @raichoo @darinmorrison my CS professors were: young and practical; old, theoretical, and wise; or old and living in 1982 fantasy -@41414141 I’m pretty sure there are polished VM-detection routines that can be cut and pasted -@vogon personally I’m baffled at anyone giving Sony any benefit of any doubt, I haven’t been impressed with them in a decade -@miuaf @raichoo @darinmorrison that or academics have a PR problem: I’m inclined towards the latter. -@jlwfnord you sound... bitter -1) web interface breaks 2) type up long and elaborate ticket 3) web interface unbreaks just as you finish -@Nash076 @Tomi_Tapio perfect avatar/tweet synergy -@DrPizza @RHY3756547 http://t.co/LU02KPHcYA -@blowdart you’re inside the Reality Distortion Field, sorry :p -@sciencecomic oh no, mushrooms are plants, you see. Because the Bible has “everything that has breath” and “everything that grows”!!!! -Oh, they’re not calling it Xbox Infinity, they’re calling it — What HEY MICROSOFT MARKETING THAT IS REALLY DUMB I take check or deposit -@marsroverdriver my current job is doing what my professors said to give up on. -@sciencecomic but I can tell you some other things about my religious science education - ie all living things are plant or animal. -@sciencecomic for the record I did encounter the “glass flows down in windows” thing as a child, but I don’t recall where. -If a user ever says “why is the—” not immediately followed by “oh I see” as soon as they interact with it: #UIRage -Tales of Bad UI: the reaction of 100% of first-time Visual Studio 2012 users: “WHY IS THE MENU YELLING?” -Every now and then I think of how there's a thing in the sky that blinds you and I freak out -@dangoodin001 the only thing you can see in broad daylight :) with a filter of course -Telescope + George http://t.co/9siVqBnq6R -Everyone: I am aware it's mostly in stars and we're not a star :p -Hydrogen: 73% of universe. Helium: 25%. All other elements combined: 2%. And yet we're running out of helium here on earth. We're special -Calling all Veracoders - there is a solar telescope in the front yard right now -@fredowsley @_wirepair D: D: D: -@apiary time to move I think -I’ve been assigned some PHP research, so expect some new entries on my hate blog soon -Signs you’re attending a technical meeting: you’re running late and arrive to an empty room. -And then the new model comes out six weeks later https://t.co/rtLCFHfYwm -@bedit you’ve linked me twice, that’s spam. -The news tonight is full of sadness and I can’t bring myself to comment on it -@eevee I assume they mean you can still connect with pidgin etc. -@MrToph you need to get out of that house more -@whyallthenoise SDR# plus generic radio dongle -Beginning to think that the Terrible Laptop is actually an Amazing Signal Jammer -Who needs FM radio anyway https://t.co/85ygT3jhml -It completely blows FM radio stations out of the water, which no other device I own does. (Only quite close to the device, at least) -@Xecantur well, all electronics are, to greater or lesser extents. -To the point that I doubt it meets American regulations about shielding! -@rjsalts or an HDD! -To the surprise of exactly no-one, the Terrible Netbook is leakier than a punctured kiddie pool in EM -Hey look I found a place to keep my magnetic antenna http://t.co/tZDhck5nry -@eevee yes. -@abby_ebooks ouch -I have to go do other stuff, so here's what I have so far for Paper Mario vs. Touhou https://t.co/CoHXbzxTRb -Who's up for a Paper Mario/Touhou remix jam?!?! Because that is totally what I am making right now -# 336617528208011265 -Geez, what did I do? http://t.co/ZTX8f1jY7c -@miuaf it’s like salt. You need some of it. But too much is just a headache -Dell kills cloud offering you didn’t know you had; is implicitly called not a big vendor. http://t.co/BJBHNvA59H -“I don’t care about anyone else but me,” chorused the emo rockers in harmony together. #reallyrics #realstupidlyrics -@claudijd @spacerog based on my impression of Fry’s gleaned from the internet, we don’t, unless you count Best Buy. -@tpw_rules that’s the jpeg itself. Solid red objects are its worse case -I think someone's excited http://t.co/N4r7cavhGR -@BomuBoi @Bopogamel … I’m scared -@WhiteMageSlave is there anything more that they can do for your foot at this point ? -I want to get home so I can implement what I just read in a paper. -@nelhage @matthew_d_green instead of just FIXING THEM aauuuugh -@nelhage @matthew_d_green but with the government “secret 0day” thing, there is no public exploit -@ra6bit hopefully this will be a good object lesson about windows then! -@IndigoShinx fact: everyone had a Pokemon username when they were younger. Mine was…. …. …. Well it involved Vulpix. -@ra6bit D: how old is he? -@matthew_d_green @WeldPond I’m already of the opinion that this government 0day protection scheme is mad, bad, and dangerous to deploy -@matthew_d_green @WeldPond guesswork dipped in unicorn tears -@ra6bit There’s lots of end to end stuff, they seem to more care that they can pull the plug entirely when they feel like it -@dhicynic my terminals are translucent, so basically always -@puellavulnerata or stretch a thumbnail of their grandchildren to grisly proportions -@puellavulnerata nope, still counts. I just care that they don’t leave the default Windows/OSX wallpaper up :p -@puellavulnerata faster time to custom wallpaper == better. Actually wallpaper-sized image == better. -I judge new employees based on how quickly they set a custom wallpaper on their machine. And whether they stretch a too-small photo -Basically every single thing we suggest necessitates code change, review, and test on their end, so they all want to pare it down -Today's agenda: playing the game of "what the customer wants" vs "what is actually good for the customer" -@SurprisingEdge yeah, I noted that too. Pretty sure they're using a definition of "enterprise" that only they do. -Gods why is this page taking so long to lo-- oh it's trac. Seriously what is trac's deal -@stillchip @thegrugq @schrotthaufen this is 100% on Oracle -DH: "I'm going to buy you glitter body wash so I can say I have a holofoil edition wife" #geekromance -"Common law marriage was out when gay marriage was in, to avoid thousands of surprise roommate marriages" -@Xecantur unfortunately pre-html5 software doesn't magically rewrite itself -@swb1192 @antifuchs I'm on 256-color mode on Windows 7 (and I can't read "cleartext", so it'd be disabled anyway) -@Jonimus yes, quite. I'm in 256-color mode over RDP to a powerful computer because it improves the framerate :) -SO MUCH FOR THAT PLAN http://t.co/CwC98WOmog -@Jonimus it's Windows CE; however a third party makes a full office suite for CE http://t.co/hcrlasUoD6 -"A new update for Java is available" Oh!!! Thank you for reminding me -- I forgot to uninstall Java! -@blowdart it improves framerate over RDP!!! -@blowdart I am she who uses features Microsoft would like to just let die -@cfloydtweets like "this icon is explicitly for low-color mode, but this next one is a dithered gradient" on the same toolbar -@cfloydtweets if you use Windows 7 in 256-color mode, there is an amusing hodgepodge of "supported" and "not supported" even in the same app -Office ribbon interface in 256 color mode: glorious http://t.co/Dk1gsTeYL5 -@tapbot_paul it's a laptop in this case, so there's no separate power button for the monitor :) -@tapbot_paul now you're just stretching it; that's what actual, like, logs and IDS and stuff are for :p -@tapbot_paul except it's not "emulation"; the screen is, in principle, Just Another Rendering Surface. -@tapbot_paul why? If I'm using RDP I'm dollars to donuts *not sitting in front of that computer* so it's just burning electricity -Just gonna mercy-reboot this poor machine before People for the Ethical Treatment of Computers find out -@OtaK_ Actually our main engine which can consume hundreds of gigabytes of ram in production really does run on windows :) -@docsmooth Windows 7 -@OtaK_ nope, I guess I ran through all that too. We do Real Computer Science(tm) here, sir. -@kcarmical out of memory -Apparently I managed to OOM my Windows machine over the weekend. I haven't done that since Windows 2000 -I like how logging into a machine over RDP wakes up the monitor on it. As if the entire point wasn't to decouple the two. -@DrPizza yes, I suspect that is precisely their definition. Because all enterprises use IBM mainframes right -By the by, I suspect IBM's claim that 15% of new enterprise app functionality is written in COBOL is using a rather narrow definition -Everyone from the "other" side of the office (ie not research and engineering) is giving me the evil eye for complaining about talking -I can hear three distinct conversations from my cube, it's fine they have a right to communicate but sdasfdagadsfcdx fffff -@ra6bit yes that would be the other one hundred four and a half notches :( -Granted that’s out of like a hundred and six notches -The fact that the verified yahoo account “promises to not screw up” tumblr takes my worries down approx. one and a half notches -@surfnorcal @ioerror have you *met* the @torproject people? If they had to cooperate with the FBI there’d be violence in three hours tops -@marliesanna @0x17h over a seven… what, exactly? Said I about thirty seconds ago. But I think I get it. What. -I’m glad malware authors are making dumb moves like signing two different projects with the same “burner” cert // @ioerror -@m1sp oddly, blood is like, the one thing in biology that doesn’t freak me out -@thegrugq don't worry I saved you one -@new299 I'd like to think I tuned into a radio play, but I doubt it contains minutes straight of "Three hundred three hundred do I hear-" -@HyShai one might think so: "she has fine genetics and is very feminine!" Fortunately there was a lot of bleating -Someone is now commenting that the sad state of America is reflected in the low price these goats (apparently not sheep) are going for -I... I just tuned into a radio broadcast of a sheep auction. A. Sheep. Auction. -I could go to sleep. Or I could read this paper on radio observation of USB and PS/2 keyboards -@TheDaveCA oh gods, that prior one is embarrassing (for them) -@TheDaveCA oh, not professional communication from *my* organization, I just found it on the internet -I get being called a “grammar nazi” when I pick on a reddit comment. I don’t get it when I get called that picking on official communication -@KasumiCR I super like your Pokemon fusion renders :) May I suggest electrode + chansey it’s terrifying -@ShadowTodd your career is gonna go in a tail spin if you don’t recognize the gold in ideas like that -@redtwitdown a computer ! I have many. -@blowdart it has lava... you do the math (You can play with respawn on or off) -@blowdart well they're funny, and mostly just play minecraft and screw up and get killed on camera :D -@blowdart you have the same accent as the guys on the yogscast. I can't tell any of you apart. -@spy604 http://t.co/GhhaQEg95x -@WeldPond just don't tell me we have to support it now -@jjarmoc I look forward to seeing the recording and being like "oh gods. I look so dumb. Ugh. Why can't I look as cool as I am in my head" -It's sent! *collapses* -@Xaosopher @caeliat so I guess there are businesses out there that sell USB radio dongles and baby blankets -@Xaosopher @caeliat ali express doesn't collect demo information and I doubt they have a sophisticated gender guesser. They sell to business -I think I've become the radio engineering equivalent of a script kiddie. Physics smysics, watch this!! -@demize95 this page has a list of the part numbers and their ranges http://t.co/N7U5Q7DHlA -@nullwhale Yup. However, "virgin" means "not chemically treated"; I googled it. Growing hair for wigs is an industry in Brazil -@demize95 assuming it's labeled right, 50mhz to 1.7ghz. If it's labeled wrong, probably 30mhz to ~800mhz. -@nullwhale they have a pastel-colored backpack that unfolds into a baby bed. I don't even HAVE a baby and I want one. -@hckhckhck @botnet_hunter it's working for me... -@sneakin well then that's what the algorithm is on; overgeneralizing instead of correlating on the actual item. -@demize95 http://t.co/GhhaQEg95x cruise around the site for best shipping deal to wherever you live -@narayananh http://t.co/GhhaQEg95x -@sneakin I doubt that many people are buying the Final Solution to radios to monitor their baby instead of, like, a baby monitor -"IBM brings COBOL to cloud and mobile" aaaauuuuuuugh http://t.co/P5YIglTcxH -People who purchased <radio dongle> also purchased <pages and pages of baby room decorations> what is ali express's algorithm on -@botnet_hunter http://t.co/GhhaQEg95x -@zorm I need to make sure I have at least one spare if I'm gonna be presenting, and I'll give away a few to people I think deserve one :) -@innismir ten to twelve dollars each depending on supplier. Some go down to eight if you order, like, by the hundred. -I just ordered *ten* more USB radios straight from China. Turns out it's a lot cheaper that way if you can get free shipping... -@dshaw_ r-r-r-RADIO! namely, spying on unintentional radio emissions (tempest-related) -@attrc more of what I have, but I can't find the exact model, so I'm settling on http://t.co/GhhaQEg95x -It seems if I want to order a box of SDRs straight from China, they replaced them all with ones that take mini antenna connectors -@jjarmoc whoosh goes the google docs link to your DM :D -Okay, my defcon CFP is all typed up, who *among people I already follow* would like to look at it real quick? ^-^; -@pzmyers @ReverendBull yeah, you have to respond directly to their actual beliefs or they’ll ignore you no matter how right you are. -Seriously - the first news org SEA popped is understandable. Second should compel attention. The Onion should have been the big tip-off -If there remain any media organizations that haven’t called a meeting about phishing, they deserve what’s inevitably in their near future. -# 336268094911684608 -@inversephase @armcannon just say that Taco Bell is fine but you prefer tacos with actual meat; should get the point across. -@spacerog I’mma DM you my Defcon CFP in a bit when it’s finished mmkay? -@spacerog so what you’re saying is I still have time to one-up you -@spacerog you look so young in that last one… -I just found a phone number written on paper from the Source Boston hotel tucked in my iPad case. I have no recollection of this event -@iShark5060 Clarion Maenad. Don’t blow me up :p -“Popular Tsundoku books” #blessthisalgorithm http://t.co/AHHxXK4o7s -@kivikakk please have this consolation emoji 💦🚌😢 -I have tsundoku except for video games -@ErrataRob it would probably be “huh” at first sight, and require some explanation to how money can be social rules -@ErrataRob evacuation protocol, military protocol -Nothing says “legit service” like an inability to spell basic words in communication with the press http://t.co/EjkDalToPn -@apiary that’s part of the exhibit, I think. -@GreatFireChina please be aware that western criminals have been caught while using this particular VPN service; it’s not foolproof. -(For everyone not from my childhood bracket: the main character of the Pokemon cartoon, Ash, is called Satoshi in the original Japanese) -I found Satoshi http://t.co/XHcni27rTk bitcoin is solved (cc @dakami ) -@alexstapleton @matthew_d_green yes, but… the “Shire” is not exactly what comes to mind when I think of the Us intelligence community -@matthew_d_green their marketing t-shirts say “Save the Shire”. My irony module blew out -@pbromide …. But they can ! I don’t know anyone who denies we’re all from the American continents -@pbromide yes, I know, which is kind of my point; that no one goes around spouting full legal names of countries all the time :) -@panther_modern @hemantmehta I was referring to billions (combined) Indians and Chinese :) and few hundred million Americans -@panther_modern @hemantmehta … except this is exactly the opposite? -@eevee “someday I’ll be as internet famous as eevee” <— a real thought I had after I followed you because of @m1sp -@eevee hey what’s that supposed to mean It’s because I’m very bitter about infosec while being totes adorbs -@eevee guess they missed that I follow you. Did they even check klout #yesMostlySarcastic -@panther_modern @hemantmehta even if not, that’s what we get for there being billions of them but millions of us :p -@Dokugogagoji — because other kids made a lot of fun of me for how I ran and I thought it was just my fault somehow -@Dokugogagoji I wish my parents had made it clear to me when I was about ten that I had been born with a foot defect — -@Dokugogagoji I never was a good runner, I run a little lopsided. But I can walk fine. -@Dokugogagoji I have no recollection of it; I didn’t even know it had happened until I was an adult and my dad mentioned it. -Mood swing to tears when I run into the charity group who funded my corrective foot surgery when I was three #takemymoney -@demize95 he was clearly from a place known for sexism so now I'm wondering if he was being generic rude or sexist rude -DH said I was grumpy today. I denied it. Then some guy just cut me in line and I wanted to shank him -Signs your existence is internet-centric: you start typing into twitter "have any of you seen my shoes" "wait" -I think my landlady needs to discover a cheaper source of RFID cards. One shouldn’t be so anxious about replacing one of hundreds -@chort0 my alma mater has 1800 students and 65535 IP addresses. They got in on this “internet” thing early -Why does my mouth taste like… *hears a bzzt on the window* oh hello stinkbug -O tumblr, my tumblr, the delightful romp is done The board approved e'ry point, your future has been won Gods dammit #poem -@apiary proof that our country doesn’t care about looks -@pzmyers almost everyone I love and cherish I met on the internet, some I have yet to meet irl. Give whoever said that a good hard glare :) -@Dykam oops, sorry about that, we seem to have sprung a leak -@WhiteMageSlave @m1sp http://t.co/R2tkxsF94Y -Slowlithe http://t.co/hBfvOErii4 #aftermidnighthumor -@m1sp_ebooks @m1sp … game is over, mispy’s most mispy-ish tweet has been produced -@m1sp_ebooks @m1sp :D -News to me, Twitter. http://t.co/BLBxQzMYBG -@comex @delroth_ the most important kind -@PuercoPop I went out to Iquitos, and not as a tourist really. It was certainly... vivid. -@ScaleItRon actually I was "randomly" chosen on my way out of the country, I believe because my father had visited with the US govt before -@donsalcedo eve -@c1tr1c @yaakov_h my dear friend just solved this. We are all Pangaeans. -@c1tr1c @yaakov_h it turns out the definition of continent depends entirely on who you're asking. Europe and Asia are not separate places... -@c1tr1c @yaakov_h in fact you call it Mexico in your profile. So I can call my country America for the exact same reason. -@c1tr1c @yaakov_h I really don't get it. I really don't. I doubt you refer to Mexico always as United Mexican States 100% of the time. -@c1tr1c @yaakov_h would you also jump down the throat of someone in the Republic of China calling their country Taiwan or China -@c1tr1c @yaakov_h I don't get what's so hard to understand of "people in (United States of) America refer to their country as America" -@c1tr1c @yaakov_h it's both, why can't it be both -@Phobos_11 @yaakov_h ....... *sigh* we. DO. share. Disclaimer: not speaking for the underbelly of American ignorance. -@Phobos_11 @yaakov_h ... .... .... wat -@Phobos_11 @yaakov_h ......?!?!?! It's our demonym! It is objectively our demonym. It's your... whatever you call a demonym for a continent -@Phobos_11 @yaakov_h sure, great, I don't dispute that. -Programmers always want names to be GUIDs because that's easier to deal with ;) -@cyclerunner it's our historical name. Names are messy, culturally rooted, and not GUIDs. -@vikphatak I think of America's "nicknames" as being like "Land of the Free" or "Droneland" or "Obamatown" -This rant brought to you by the one aspect on earth in which America doesn't get to play Chief Cultural Imperialist ;) -@0XiDi it's kind of like saying "Mister" is an integral part of "Mister John Smith" and incorrect to say "John Smith" -I've been to South America (Peru specifically). I love and embrace The Americas as in this together. Don't take my rant the wrong way <3 -@delroth_ it's exactly the same situation! Two places can have the same name. It's totally valid. Geographical names are not GUIDs -@delroth_ hahahahahahahahahaha http://t.co/py8zRTNxiq WRONG -"The United States of America" : "America" :: "People's Republic of China" : "China" <-- stop being obtuse -@delroth_ which usually it's America being accused of but not this time -@delroth_ it doesn't matter. Fussing about what other countries call themselves is cultural imperialism -You all DO know that "the United States" just as well refers to Mexico, right? No, really. Look it up. Estados Unidos Mexicanos. -@vikphatak it's not a "nickname." No-one goes around saying United States of Mexico all the time. It's Mexico except in formal contexts -@delroth_ incidentally no-one in America (the country) calls the continent America. It is called NORTH America here. -@delroth_ I'm sure the FormerYugoslavRepublicOfMacedonians totally get your point. -@delroth_ what about it? All countries' legal documents use the fancy title like "Republic" or "Confederation" -@delroth_ WE. CALL. OUR. COUNTRY. AMERICA. "United States" is a description also used by Mexico for similar reasons. -@delroth_ Wow this is EXACTLY what I'm talking about Who do you think knows what America's name is: Americans or not Americans -@TheEtherDotNet is it historically accurate within the cultural context? then yes || no. -@delroth_ Do you also call Mexico the United States? If not then the point falls flat. -@yaakov_h some people from Central/South American countries feel we don't have a right to use the word for our country -The fact that our country is called "America" does not invalidate the fact that your country is in The Americas. Both can be true. -Pet peeve: being told we can't call our country America because <reason>. Americans may be arrogant people but don't deny us our actual name -@m1sp you should get on a chat of some sort!! -@Ricky4fun North America and South America are continents. America is a country in North America. Its citizens are called Americans. -If my defcon talk gets accepted I will dedicate it to @i0n1c for all his encouragement -Nerves. Nerves. Gotta fill out this CFP. -@CharlieEriksen it's working out well so far - I sit far back and let the drones do the dirty work. Unfortunately I spawned close that time -@OptiMizPrime I was repeatedly pressured to attend one. All my girl cousins did and I'm... not impressed with the results. -# 335907422138933248 -@amanicdroid turns out no-one north of Mason-Dixon line has heard of it. And everyone south of it assumes I meant "Liberty" anyway. -Hint: I went to the one that is not specifically designed to make a bad situation worse for women and generally expel them at drop of a hat -@amanicdroid yup. -One of these is my university, the other is our rival university six miles away http://t.co/qHKGP3NYdD -@gsuberland for about two weeks now - genuinely surprised you missed all my other "SPACE AAAHHH" tweets :p -Me for about ten minutes straight: "AAAAHHHHH LASERS AAAAHHHH" (I didn't die) http://t.co/HrQk7lkL5J -Oh my gods my husband and housemate are having an argument about how to best calculate DPS in dota -@patrickwonders I still feel too noobish / prone to slightly botching implementation - if you need teh chiptunes I recommend @inversephase -@slow17motion blocky times ! -Nintendo: we're so bad at UI, we can't even get a yes/no question right http://t.co/xmWd61X625 -@comex it’s for breaking syntax highlighting -@jennifurret @slow17motion does this person seriously have the equality avatar Seriously -@apiary don’t eat it. -@codedit —> @Koning_NL -My entire understanding of Eurovision is based on a Dutch-language parody account of their king getting pretty critical -So I figured out why Yahoo still exists. It’s actually more popular than google in Japan. What. http://t.co/FkWn4Bdh1J -The foundation of a geek marriage is the mutual understanding that “but I’m in an online match” > * -@braket my husband actually asked me to close this video, thank you -Good deed for the day: suggesting to google translate that "hapibasude" in katakana is maybe probably most likely "happy birthday" -@m1sp 4 u http://t.co/ccvpUIxMHH -@misuzulive you probably have this one already but http://t.co/rlkXTAwTts -Looking at the bugfix history of Nethack. "The plural of nazgul is nazgul" -@SudoRossy fortunately I neither drink NOR drive so being accused of the intersection thereof is vanishingly unlikely -I can't say the alphabet backwards. I guess my programmer only implemented singly linked lists -@thegrugq @no_structure when you let HR do the selecting, the definition of “competent” they wield isn’t very… useful. -@TheDaveCA yes, this person was acting as though Linux cannot run programs that didn’t come from the repo. -@no_structure notice the “brilliant” qualifier — “no one would turn down someone from the top 1% of women programmers!” -@puellavulnerata no, because creationist argument hinges on being “wonderfully” made :p -@matthew_d_green yikes… -@sakjur I’m kind of accumulating these for my own projects, so… -@bearassentials @vogon O_o .... ...... cool story bro -Another new chiptune https://t.co/QxOwN1eofN this one is simple but has an actual beat -@psobot though I can’t imagine why html5 sound would fail -@psobot it’s not that it uses flash that’s the problem, it’s that I can’t right click -> enable the flash object. -@spacerog didn’t know you’re in town, old timer -@me_irl there's no joke. He's just not interesting and neither is his girlfriend. -You know what? I don't like Superman. He's a boring character. More like Superbland am I right -In this RT: no, the other Georgia. -Trying to get my nerves together to do a defcon CFP before it closes... really... soon. -@psobot why is forever.fm flashblock-hostile? :( the flash objects are beneath some foreground object -Save our tumblrs!! No acquisitions means good dispositions! -@jjarmoc plenty of boys wear panties ! -@m1sp_ebooks @m1sp excellent -# 335539796615233536 -@innismir I have a super power over all children -@WillMcAvoyACN @SarahPalinUSA @eevee http://t.co/l2WRkTVQfb -My face when: the computer Zelda beats my Zelda http://t.co/EG6qsGKA5A -@ScaleItRon I’ve got a mouth like a Gerudo pirate ! -The computer is not very good at playing Pit. I can tell because that was a whole match with no “Hi ya ya ya! Hi ya ya ya!” -@m1sp are you on voice chats tonight ? (I am downstairs playing Wii u ATM, I’d have to go all the way over there to check!) -@m1sp I need an ally hug, I rage blocked someone again -@ivanca I’m blocking you, because that was so unbelievably stupid I can’t bear to interact with you anymore -@ivanca oh my gods First sentence: Gender Is A R A N G E -@xa329 it is here too. Well in some places alcohol must be in certain places or certain times. -The controller doesn’t vibrate. What is even the point of winning if my controller doesn’t vibrate to congratulate me -@ivanca because your argument makes absolutely no sense and has no correlation or connection to mine. -@ivanca I… what? I suspect the problem is literally we do not speak the same language because … what ? -@ivanca gender is… not a Boolean. You’re thinking of sexual role in reproduction. -Wow the Classic Controller is so objectively inferior to a real GameCube controller -Holy triforce, I had to “swap screens” with the nonexistent second screen to turn on just this channel in particular?! Ht @RichardR -It won't let me activate the Wii Menu. And I can't go into system settings because the touch screen is dead http://t.co/hqUEO6gIZR -Why in the name of Princess Zelda won’t this Wii-u just LET ME BOOT THE WII GAME it won’t take me to the Wii menu -Okay found the controller now I just need to The Wii-U tablet thing is completely dead. Where is the… sigh -@akopa no, putty is compatible with some mouse over terminal thing -Apparently my husband packed Guild Wars 2 with the Wii games because it has a white case. I think he’s racist. -@ivanca homoPHOBIA is being upset that two people who APPEAR to share a gender are engaging in sexual attraction. -On my quest to find the game controller, so far I’ve found: a hitachi hard drive dated 2006 lying loose with Wii game disc boxes -@katzmandu I don’t know. I have only ever used a GameCube controller. But now we have a Wii-U sans GameCube ports :( -DH and Roommate are at the movies. I’m hunting for our classic controller for Wii so I can play Super Smash Bros… got a new disc. -@Killermari @RHY3756547 wait do they even have fed-ex in Canada -@Killermari @RHY3756547 “sorry, I can’t go swimming today - just got a delivery from red-x.” -@USSJoin @BsidesBoston unlikely, sorry! -@tangenteroja what happened afterwards in any given case is completely outside the scope of the original snark :p -@tangenteroja not having an Independence Day sounds so… British! -@tangenteroja https://t.co/776ZQGYwVS -@ErrataRob but in any case, https://t.co/776ZQGYwVS looks like most of the world sans China celebrates Independence Day. -@ErrataRob how joke-uncentric of you -@RageKit @puellavulnerata because mocking cavemen for willfully being cavemen is good sport -@uppfinnarn and I quote, because “this code was not written by <corporation> of Indiana” -@uppfinnarn in one case they literally filed a complaint that our report had false positives, as in, “mistakenly marked vulnerable”, because -@uppfinnarn it’s clear that they’re being forced to do it by someone higher in the company, usually. -I feel sorry for countries who were liberated from oppression during a cold or rainy month; how do they picnic? -@ShadowTodd I was going to say it’s an honor to star in someone’s fan fiction, no matter how bad it is, but Then I read it -@tenfootfangs deluxe snake (* extra charges may apply) -@sakjur to echo @eevee : I’m notorious for tweeting things people can’t believe I’d say out loud. But I’m a diehard privacy RIGHTS advocate. -@tapbot_paul because a westerner drew this font. Also that’s racist 👲 -@rezeusor actually the first word that came to mind was “strangle” but I prefer to not leave room for being mistaken for real violent intent -@puellavulnerata I suspect that’s due to likely legal problems for bitcoin in America in the very near future. -“I have to type in my root password to install software!” No, no, no, stop confusing your repo with all programs in existence -I’d like to slap the Linux cultist on Ars who a) calls OSX users “weenies” and b) insists that Linux users aren’t susceptible to malware?!? -@wookiee I was given a bunch of free accounts to hand out, so I imagine some of that is follower overlap running the twitter importer -The sad truth is we have customers who want us to ignore flaws in their shipping code if it's "by another team" -@brian_sniffen @joshcorman @veracode in my opinion, crashier == more exploitable -@eevee so I opened a twitter tab and noticed you were on fire and I was very concerned until I remembered what you were doing today -@isharacomix I use pp-mck which is a textual macro language that compiles to asm source -@vogon but zero is null! -“If you are sitting exactly on the equator or prime meridian, make sure you use a float 0.0 rather than an integer 0” -@LJonhny oh, it is the prior… so I guess that will actually return zero rather than crash -@LJonhny strlen() can return zero in getKey but it’d take some work to actually put yourself in that situation -@LJonhny there’s technically a divide by zero possibility but w/e. other than it leaving behind forensic evidence, it looks fine. -@chead not particularly -@dinodaizovi <3 -@_larry0 I'm a firm believer in the idea you CAN get Windows as performant as Linux- first thing, we kill all the printer drivers. -Great now did I cause redraw errors in elinks and why is it persisting after a terminal reset -The mouse works over putty for clicking links in elinks?? mind == blown -High-fidelity browsing on the $50 Laptop -- but really how do I put cacaview in 256-color mode http://t.co/CfIstMYyLV -@LJonhny only if you don’t make me type in the URL myself ;) -I want you to know I am excessively proud of https://t.co/z6KEnxhFES writing “traditional” music on chip is kind of my thing -@DarrenPMeyer actually it weighs almost nothing -@chead @AppDotNet though I don’t post enough over there because I can’t auto-post from my *twitter* client to both… -@chead @AppDotNet I funded it because I want there to be a legitimate competitor to Twitter, and so far it seems to be succeeding at that -So @AppDotNet gave me 75 free-tier account invites —> https://t.co/cRINYRIIPW will autofollow me, won’t be offended if you unfollow. -Company-wide email asking for photos for a directory. Included footnote: real photo only, not avatar. Well fine I see how it is -Here at Incredibly Inefficient Designs, we strive to make sure a simple 9V wall wart covers FOUR plugs on your power strip. -@rantyben homophobia == disgust at two people of *same gender* being too touchy. So on and so forth. -@quine did it have the control code that sets the high bit on ASCII and turns text into table art hieroglyphics? That’s my favorite -How on earth did my sandals get white paint … down the *side* but not the bottom?! -@thegrugq @WeldPond @Squelchtone I firmly believe that “Weld Pond”, “Space Rogue” etc are their real names and “Wysopal” etc is just a cover -@DarthNull about half my contact list is XMPP outsiders… not that I claim to be particularly representative -Today is a day to celebrate the decrease in homophobia, transphobia, and all other forms of gender-based prejudice. We’re winning. -@DarthNull it’s not the ability to use XMPP clients they removed, it’s the ability to talk to XMPP accounts that are not google accounts -@psobot if people can’t tell it’s automated, it’s a good automation -@rantyben @stevelord is looking fabulous -In my notoriously humble opinion, the government playing savior with private 0day protections is misguided, wrong, and frankly dangerous. -@rantyben @osxreverser around here it’s for snobby people and apparently the CEO would rather burn extras than give them to poor people -This anti-Google ad has at its core a valid point but then Microsoft owns Skype. http://t.co/3SdTxrb5nc -@fransla unfortunately in this case it was likely state-sponsored meaning they can just print new ID cards… -@fransla code signing certs are a bit of a different beast — much easier to actually enforce. -@pod2g should have figured @osxreverser would wear Abercrombie and Fitch… -@ra6bit @abby_ebooks the code is of the mind of dear @m1sp plus some patches from other friends -@Beryllium9 and it may not be some profound amount of money, but it's probably more than the ads/datascraping bring in for me per month -@Beryllium9 as I've said before, I'm actually a paying customer of Google -@ryanmr like I care, I'm not doing it. -@ivanca quite the contrary, she is a horrible human being -@TechieRuss a fake victim to lure in malicious hackers -@TechieRuss watering hole is reverse honey pot. Genuine malware waiting for legit user to fall in. -@matt_merkle sure, it's a simple and easy way to do that, that doesn't mean I'm okay with it -@m1sp can I hand this person over to your loving twitter care -@ivanca oh my gods. Recursive facepalm. One woman who's an awful person DIDN'T win the vice presidency! Sexism is over! -Google already knows my real phone number through other means, but it's the principle of the thing: exchange phone number for longer videos? -@landley ... I was complaining about OSX this time. -Youtube won't let me post this video unless I confirm my phone number. Well that's a shame -@ivanca you hear that everyone! someone called BS on patriarchy! It's not true that most power figures in the world are men! -New chiptune https://t.co/z6KEnxhFES to a melody I thought of one day in 10th grade -@ivanca ie shocker patriarchy is bad for ALL HUMANS. -@ivanca so I don't see how that's a "point" in your "favor" of being "oppressed", unless you think women are what cause wars. -@ivanca going to the war is the most horrible thing in the universe and no human being of any sort should ever be subjected to that -@Forkk13 I spent the better part of ten minutes trying to get it to stop appending .txt to my "duplicate" (ie "Save as, but weird") -@ivanca *facepalm* you are. totally. not getting. it. -@janiczek yes it does? there's a dropdown for NOT appending .txt. -@Forkk13 save as -> any type -# 335174534267289600 -@JordicusMaximus not 8-bit "style". It's an actual chiptune! -ffs TextEdit.app there are extensions other than .txt stop appending .txt even Notepad.exe understands this concept -@The1TrueSean I mean the photoshops, if that wasn't clear. -Decided I absolutely hated how I did https://t.co/y9jHJ5CyrY so I tweaked it a bit and replaced it... -Now paypal is telling me that as a German citizen I have certain rights. I swear this is a bare connection straight through an American ISP -@drwilco aan de slag! I realize that last word has many meanings. -@m1sp good morning <3 -@xa329 actually it's because I was trying to find a video in Dutch once, I think, and went to the Dutch youtube. -Also, I like that the "get started" button in the Dutch interface can be literally translated as "to the battle!" #excitableidioms -Of course, now Youtube thinks I'm British and I assume recommendations will start learning Dr. Who-ish. -@RvMouche ik spreek een beetje, maar ik wil mijn Engels :) -Huh. Going to the British (not USA/generic) youtube domain fixed it back on the generic domain. Hello again, English! h/t @therulerofchina -@therulerofchina wow that worked -So my youtube interface is in Dutch on ONE particular computer for no particular reason and no apparent way to switch it back. -@Mega_Turd the worst! (It was malware) -I got someone’s code signing certificate revoked today! I’m super dangerous, don’t mess with me! -@jdiezlopez uh, I’m not really sure. I classify chiptunes only by what chip they are a program for. -@_wirepair generic assets, not artwork and stuff, I won’t begrudge them that -@_wirepair I know he has turned down many benefits of pope which will save a fortune; hopefully he can find some assets to sell off -I never go to the @DunkinDonuts right next to my house — because they were rude to me for not being familiar with the menu already. No line. -@_wirepair did he really say so? Good on him. While obviously I don’t have strong agreement with anyone who qualifies as pope, he’s > most -@robertcromwell @vogon fractions: the fatal weakness of computers that almost no one knows about -@eevee I remember when my classmates found that out in freshman English… it wasn’t pretty. -@tomchop_ I need to change the file -@The1TrueSean are you… making these at work -@MrToph all my teenage websites were written entirely in notepad -@theROPfather can I save it back out ? -@jeremiahfelt can I save it back out that way ? -@Neostrategos cyborg privilege -What tool would you recommend for OSX to increase the base volume of a quicktime movie -I’ve obtained a copy of my NES talk, but I’m told the audio is Maybe Not So Good. -Why does Preview.app even register as a handler for XLSX if it's just going to hang or crash every time I try to open one? -@henmob it largely comes down to a) have a healthy skepticism of free programs found online b) keep your OS and browser up to date -@ivanca if you really don't get it, we don't have much to discuss. Ten. thousand. years. of recorded history of patriarchy. -And I use the word "several" because even security-wise people catch something occasionally. It happens. It just shouldn't happen a lot. -Consider "knows how to NOT catch malware on work computers several times a year" a basic requirement for any desk job. For serious. -And of course it's one of the "usual suspects" for catching malware. Don't let your organization *have* usual suspects. Teach them something -Someone at my mother's workplace actually caught ransomware. Actually. caught. ransomware. A for Amazing Fail -Signs my existence is electronic: "Wait! The serial number on that dollar bill is clearly visible! Someone will steal it!... ... wait" -Esteemed coworker George Washington got a custom sign plate for his desk for only a dollar http://t.co/zJ6mrOqNzo -@ioerror my OTR jabber should be logged in if you have a link you can drop (I'm out at lunch ATM) -@kennywyland @darkuncle @GSElevator @vogon ever see a Washington DC license plate? They ain't forgotten. They're a trite bitter even... -@GSElevator @vogon in all fairness to the (original) Tea Party, it *is* one of the most celebrated and revered events in American history. -@ioerror where might I find a copy of the Mac malware ? I want to appraise the competency level of the code -Re: the Mac malware @ioerror found: reprehensible abuse of signing certs. Hilarious inability to use a hidden folder. -@NGalbreath @rantyben is there a particular reason they thought we needed to know the exact processor model etc? -@kherge it’s… a real mailing list, that I subscribed to :p my filter to put it in a folder broke -@tsdNull it is better to rule in Scotland than… -@acfrazier_open I will read the fine print but I suspect I don’t really mind as long as they’re not cloning me for my genius ;) -I think I will order a genetics testing so I can prove once and for all I am in fact the rightful queen of Scotland, as I always suspected -@garlimidon http://t.co/TqsWrzdroK -@kdmurray only have the one actually (not counting internal mailing lists which just dump straight to my inbox anyway) -.@garlimidon tweeting is a free action -Dilemma: do I take the time to fix my email filter or do I take the time to just unsubscribe from this mailing list -@ArakinUK @Tomi_Tapio tell those kids to stop talking in the theatre !!! -@captcarl13 … seriously? I can’t recognize you at all -Does @0xcharlie even count as a hexadecimal handle? I say he’s out of the club -@thegrugq @justdionysus @0xcharlie I prefer the reading “Naughts and Crosses,” but that would also be a good name for a hacker gang -@mikko apparently the feds didn’t give their credit card for auto-renewal -@ivanca though I presume you live in a different country than me, and perhaps there it’s not routine to call boys “girls” to insult them. -@ivanca it’s not “ironic”, it hurts less because you’re already in the position of power. -@Raspberry_Pi thank you for actually warning of this… -@hypatiadotca @kreativedge \o/ -@marsroverdriver but but… the book is about the last two Mohicans. -@rhcp011235 @m_kopas please unfollow me -@Phoul @thegrugq @m1sp they did, but no fatalities. Then they said "you're alright." XD -@thegrugq @m1sp the context is we joined a faction and asked where their hangout was. Apparently they don't like that... -@thegrugq you'd like this guy @m1sp and I just met in eve. "I gave you the wrong system to meet up in because OPSEC" -And no, I wasn't in nullsec, I was in 0.4, nor at the gate either. -@ameaijou 0.4-sec -Baby's first podding in eve, nipped downstairs to put water on the stove while in a system with zero other players... -@BandeausStuff @chriseng hahaha don't worry about it! It's just a plain black case so whatever. -# 334785515284992003 -@ra6bit Blackhat has, funny enough, always been a white hat conference; it was Defcon that was truly weird. -"10.00 cargo units would be required to complete this operation. Destination container only has 14.53 units available." What #eve -@vathpela @no_structure I'm pretty sure he meant clients other than web. -Guess who’s keynoting Blackhat? He worked his way up from merely presenting at Defcon — General Alexander! -@dguido hey now!… but we don’t scan kernel mode code, which is what I presume they mean by “Linux.” -Playing an exciting game of screen shot forensics; someone in Ukraine is going to be amused by their ssh logs. -@eevee I enjoy seeing you rant https://t.co/Y6Vq8z120K -Hey @arstechnica I can consistently cause an internal error by submitting a comment with an emoji in it 👾 -@Xecantur the exact design of the casing was a little different from the box; I think it looks okay -@DaKnObCS you really go all out… -@bortzmeyer @endrazine completely lacking context, I assume that’s a Harry Potter spell. -@kittygetwet and nothing really caught my interest or blew me away; only thing that stuck is YouTube will load faster soon. -@kittygetwet I don’t know what I expected but all the quotes from Larry Page are weirding me out -@Kufat I only own one Chromebook ! -It seems that whether or not you can currently load Mt. Gox is largely continent on whether you’re on landline or cellular -I’m not too pleased with Google’s show today; and hold the “you’re the product” snark, my bank account is billed by Google monthly. -Someone in Luxembourg says Mt. Gox is loading but for everyone else it’s 502? -Something dark and evil has come out of Google this day https://t.co/Y6Vq8z120K -@cataspanglish @Penenberg really ??? You’re the only person so far for whom it loaded ! -@lukegb gack -Hey everyone at the keynote! I followed along for a while, got bored, went to lunch, got coffee, came back, checked my mail…, is it done yet -@DarrenPMeyer @dinodaizovi that was clearly a Cyrillic code page. To evoke evil. -@tapbot_paul but you have at least one friend ! -@_higg @DrPizza it’s my Technologist Privilege to do so, but that’s not an answer for the general public -@lukegb I want text chat. Over XMPP. Which is apparently going away. Lots of my contacts use non-google XMPP accounts -“Hangouts (replaces Talk)” is pretty much the exact opposite of anything I would ever want to happen to my android device -I’m pretty sure a kid in the next apartment over grabs his mom’s keychain and just locks and unlocks the car through the window #beep #beep -@DrPizza I’m sure this page will offer a perfectly sensible explanation as soon as it stops crashing my browser -@DrPizza wait what What -I’m my own team. http://t.co/IwUqg1MMCP -As a merchant of code review: don’t tell users they’re wrong about there being an RCE bug because you already had it reviewed. -@tapbot_paul my standards are low : you and I were in the same irc channel once and neither of us kick banned the other. Ergo, friends. -@mansaxel @runasand I admit my definition of "major media outlet" is a bit English-centric -@Ammoniak google io -@Xecantur I had an Aspire One, the keyboard is the same kind but a little more cheaply manufactured -@grp they’re extremely good at some things and good enough at the rest. -“Even Google’s own services have been fragmented at times.” Oh I get it, humor through extreme understatement -Nooooo stop with the “flip the card over” UI paradigm. That’s excess mental state spent on tracking geometry of flat things -@niteshad @essobi in 2011; I was trying to express wonderment at how quickly prices come down. -@xkeepah error: already on a retina screen, that’s like, eight pixels -@niteshad @essobi honestly, the Windows CE is probably pirated. But it’s not the current version so I doubt it’s a priority to MS -If anyone doesn’t want their Pixel, I can provide it with a good home -@Kufat one can readily install full Linux on it, without stupid tricks, to the best of my knowledge -They’re… giving away Pixels. Not the $600 phone, but the $zillion Pixel. -@tenfootfangs wow that’s a lot of dinosaurs -@tapbot_paul someone’s been spoiled by Apple secrecy ;) -@tapbot_paul I am Interested(tm) in my YouTube loading 50% faster (I already use Chrome, so no changes on my end) -@vogon “goal was to get it into hands of devs” => “this is a concept device no normal person would or could buy” -I’m pretty sure “why doesn’t Pandora do x” is “to qualify as a true radio station and keep prices down.” Re: Google All Access, $10/month -Not a fan of the Linux “silent fix” thing. Goal was to train sysadmins to always patch without delay. It has the opposite effect -@DirtySocks85 that’s unusual though. And who would fill in their mother’s age in a radio app?! -Google: we have the most bandwidth of anyone on earth. But we didn’t bring enough of it to our keynote demo. -@vogon honestly, I only spell it terr’rist to avoid the Suspicious Tweeting filters (which appear to actually be that naive) -@Mordicant they didn’t mark on the form that they’re a currency exchange! But… they’re not a real currency? -It’s official: the Department of Homeland Security (you know, created in response to Sept 11th?) is trying to take down Mt. Gox. -@morphcat :p -@chpwn did you repaste the URL from the deleted tweet? Because it broke -@jakx_ which is one advantage bitcoin has - you can’t have a mismatch between actual money and money you believe you have. -@jakx_ just a number in a field… it turns out that electronic banking is pretty much 100% dependent on accurate and honest bankers. -@garlimidon that was the idea yes :p -OH: pandora should use your age to calculate the probability you only think you like a song because your parents played it a lot -Connection between bank teller and bank database not encrypted. Sniff password, create account, make free money. http://t.co/VJrBLc0hRy -Props to @newyorker for being the first major media outlet to take serious steps to protect whistleblowers online http://t.co/7glokZDdPO -facial recognition surveillance tech still falls down in uncontrolled scenarios http://t.co/PGD0jC5h0o (and probably always will) -@m1sp btw I’m working from home today if you want to voice chat :D -@mdowd @pod2g listen, I can get you the number of a battered hacker’s shelter, they’ll protect you… -. @_FloridaMan shoots himself while bowling — now that takes talent http://t.co/kiBY3oD5ZO -@nonstampNSC as original as an Angry Birds knockoff -@jenniferbn2 you know, I thought a main trance sounded occultic, but I was gonna not say anything ;) -@m1sp diagonal movement?! I quit. Not playing. -@m1sp yeah, that’s actually the only post of his I’ve ever seen be widely mistaken for factual -@bpblack oh hi! -Based on the state of my inbox, it seems Exchange suddenly decided to disregard my filter rules after “planned maintenance” last night -@m1sp Mispy dear… google the name of the author -@Neostrategos I’m WFH on account of DH’s knee and one can’t access the blog login over VPN #acronyms -@ivanca and for the record, I did not point out on reddit that I (the redditor) was she (the author). -@ivanca misgendering people when all the information is there is freaking offensive. I’ve written extensively on the issue. -@nate_smith it has no brand. ali baba -> search netbook -> sort by price -> the WinCE one in five colors w/ ethernet that they all carry -@LJonhny her hostname is MiniSanguine, in homage to the pink computer I owned when I was 16 -Playing Dwarf Fortress over SSH again, but this time, on the $50 Laptop http://t.co/Ke302Vh6as -@m1sp probably every person whose data is specifically included, as a gesture of thanks -Time to make a sweep of reddit, hn, etc and comment "pronoun check" to everyone who referred to me as "he" with my real name displayed -@anthonicaldwell ali express -> search "netbook" -> sort by price -@L0sPengu1n0s I’ve heard of “Don’t Starve” but I’ve never played it -@L0sPengu1n0s that is a very very very vague question :p -This is totally inaccurate. I keep my iPad in a case http://t.co/5RBe7avWZk -@chriseng !!! Yaaaaay -@kufat oh noes I got an airline phishing email haha it thinks my name is Adam wait oh. -@chriseng :( -@kyhwana @DefDist probably nobody’s. -Amazing how every controversial video on YouTube is in violation of someone’s copyright and must go away -Ali Express is now trying to sell me a Muslim prayer tally counter that would make an "ideal Christmas gift" #cultureishard -@drwilco I think I can spare the seven minutes to get it to level one -@collettiquette @m1sp I mean "thank you for more money", not "I demand more money" :p -@collettiquette @m1sp more money!!! \o/ -Oh hey, WinCE comes with regedit! Oh hey, I can turn on file extensions this way! -@collettiquette @m1sp my character's name is Clarion Maenad -@m1sp kay <3 -@gbuzogany eve online -@m1sp give me a ring if you log on <3 -Got a long night of studying ahead! (cc @m1sp) http://t.co/FqdKMOsLNe -@davidjayharris https://t.co/ejH0GYfYuP my friends maintain it -@innismir nah my friend does -Uncanny ebooks is at it again https://t.co/WghUJjEQmy -@abby_ebooks of course it is -# 334456881542230016 -If the Mt. Gox/Dwolla thing was about specific money launderers, a total shutdown would be counterproductive to actually catching them -@ra6bit I think most people don’t apply skepticism to things they observe casually and just take them at face value -The American government believes in capitalism, but competing currency is economic terrorism! http://t.co/Uc95TO9W4l -@drwilco in this case there’s nothing wrong per se - everything is SSL’d with an appropriate cert, just not single server -@landley don’t forget the 4GB flash and wifi -@drwilco the html is served from the site proper and the images from generic dot CDN dot com -Does Microsoft still do tech support for their BASIC interpreter ? -@eevee I’m sorry. Had a series of dreams about my grandfather where I suddenly remember he’s dead and wake up. It’s extremely upsetting. -@sebasmonia *customers* keep things alive forever :) -So far as I know, the only product Microsoft has ever successfully put to rest is BOB, and even that took years, until they killed Clippy. -@sebasmonia hahahahahahaha Nothing Microsoft ships ever dies. Except Clippy… we hope. -@SGgrc @solak there’s no “snap” in comparing Linux of today to Windows of 2001. Their fault for not upgrading in a timely fashion! -@jennifurret you and @JackLScanlan are a surreal interruption in my constant stream of information security tweets -IE for Windows CE is actually TOO paranoid about SSL. I have to manually approve every single image loaded from a CDN -@nipungupta @essobi @niteshad everyone not in the first world, which to a first approximation is everyone. -@malwarejake ali express -> search "netbook" -> sort by price. Many vendors have them, compare shipping options -@chadwik66 @jastrzebskij I'm busy <s>working</s> playing with my pink computer -@landley could stand to use a few more comments -@niteshad @essobi or in $50 netbooks. -My marketing team would appreciate it if y'all's social network/newsreader apps would send referrer strings with jucier metadata -I’m not installing Linux, everyone. Shocking, I know. -@vogon with how often I have to cut the power, it’s a short matter of time until I corrupt the fat32 filesystem -Hey everyone I am really good at hanging Windows CE -@kufat but... it's already been announced. (for both.) -Currently browsing Linux sites like @lwnnet from Windows CE just to screw with their browser statistics -@briankrebs that's prejudiced against gay boys and straight girls who are also skiddies! ... not that I've ever met one. -@grp don't "duh" me. It isn't, in general, intuitively obvious behavior. -Blackberry has an identity crisis, gets black-out drunk, awakes to find it put its core feature on iOS App Store -Protip: if you use { gtalk, skype, aim, facebook chat, etc } assume that any url you paste WILL be acccessed and maybe cached. -@niallgdonaghy this keyboard only goes to F10! -I got Opera Mobile working, but it has this annoying simulated mouse I can’t make go away. -I’m extremely competitive regarding our corporate blog stats. I’m currently “winning” highest traffic day again. -@Xecantur it’s okay for the size, but the spacebar seems to have only one thing under it rather than the usual two -@blowdart XP is five years younger than the copyright on this build of CE, not hard to import features ;) -@blowdart it’s CE -@donicer @whitequark most native Windows programs should be recompileable for wince with a few macros / tweaks -@blowdart it has the Windows XP classic skin set - Marine, Spruce, Rose, etc -I made it more pink http://t.co/sLN6wEcX34 -@info_dox it has no brand, no name. It’s just “7 inch netbook - Windows CE or Android 2.2” -@info_dox there is no link to the exact product. There is only Ali Express -> search netbook -> sort by price -@ra6bit you got an ARM driver? -I love Windows CE! More accurately, I will once I can get Opera Mini or Fennec working. -@craptard @egyp7 it confuses me that people assume I’m using ie out of ignorance rather than a specific reason to which snark does not apply -You know, if someone wanted to penetrate our network, a watering hole that sells small, cheap, pastel colored computers would be ideal -@egyp7 as soon as I figure out how to fix the fact that I’ve hung IE ;) -@egyp7 then down in Navigator it says CPU class ARM, platform WinCE -@egyp7 pastebin is crashing. But it’s picking up as OS name Windows, OS flavor 7, browser IE 8 -@eyd go on a site like Ali express, search for netbook, and sort by price. -@CyborgCode she is by a certain artist on pixiv, the character outdates my account :) her name is Kasane Teto -@duckinator China ! And yes this is adorably retro! It’s like I’m using a laptop from the year 2000 but with today’s internet -Tweeting from the $50 netbook! If my account starts posting Chinese spam, you know what happened. -IE for Windows CE 6 doesn’t have Verisign in the certificate store -@whitequark there is an x86 windows ce but this is arm. -@sawaba the most generic one possible. No brand. No name. Just $50 and a probably pirated Windows CE 6. -@tapbot_paul it’s basically exactly like Windows 2000 but you need to compile for arm. </over simplified> -Step Two: Boot It Step Three: I can't believe that actually worked http://t.co/Cm9O7S1H4M -Step 1: Bling It http://t.co/oQomReIxKd -It came with a user manual! In ENGLISH! -It's here!!! There is literally no info on the box except "keep dry" http://t.co/vnpMF5gwgc -@gsuberland #AfterMidnightKickstarting -@WeldPond @thegrugq I’m not sure who that guy on the left is but @0xcharlie has good taste -@WeldPond @thegrugq look Mr. The Grugq, no matter how many journalists you pay to describe your boyish good looks…, -@MrToph “Payday 2? I better tell T — oh.” -And I’m not blaming/shaming her for being rich; our health care problem can’t be solved by celebrity charity. -Re: the Angelina Jolie story: shame we live in a country that doesn’t subsidize an ounce of prevention to keep pounds of cure on the shelf -My manager points out that “MEMS” is an acronym for a specific type of accelerometer, as I ought to have guessed. -@Twirrim nothing works with express anyway -@cab105 muahaha my plan to dethrone @MarkKriegsman with single most popular blog article is coming along nicely -I'm sure the youtuber I got the hard drive restore image from is totally legit because he has a British accent -My Terrible Netbook may be here as soon as tomorrow. I found a hard drive restore image (on... youtube) for when I inevitably break it ;) -@dipidoo I'm just screwing around with emulators for the fun of it :) -All I wanted to see was how truly terrible IE on Windows Mobile is. -Find option for putting emulated phone on network -> it wants a non-bundled driver -> MS has removed driver from its site -@H_kyber Chrome -Did you know you can just, like, download standalone Windows Mobile emulators? Can't figure out how to get this pretend phone on wifi though -@kyhwana it was something of a rush situation. “Honey I need the password” -He even installed Firefox and made it the default. We need to have a talk. -Hmm haven’t used this computer since I let my husband AUGH THE WALLPAPER what did he AUGH MY MOUSE SETTINGS -“We better censor what these articles in two major newspapers were about! Someone might go and READ them!” -The most adorably futile redacting ever [ @ioerror @normative ] http://t.co/6IKCpQvpCn -“Freedom of the press”: phone records of AP seized. With no particular justification. http://t.co/gwcpS8g9KK -@NamTaf \o/ -# 334044605270093825 -@JastrzebskiJ no need, I was referring to literal doors -@chort0 @chadwik66 the very fact that they call it “cyber security” would ward off about half the people worth pursuing -@c1tr1c I haven’t been able to clearly see what its number is yet -@m1sp @fncombo I mean they can’t photoshop a realistic looking artist’s conception to “show” the final product -@WeldPond hahaha HAHAHA *cough* I mean oh what a surprise -@m1sp lemme know if you want to go work on our space spreadsheets -@m1sp @fncombo Kickstarter has tightened rules on “concept art” to avoid misrepresenting what stage the r&d is at -@admung I really don’t approve of hiding lazily posting cool pictures behind the veil of parodying a real photographer; there’s no parody -Apparently this photo has been fooling people since at least 2009 https://t.co/lqPSeP3u6b you can’t tell that’s not a rabbit? REALLY? -@NatGeopix I suppose it’s too late to complain this is incredibly fake -@pa28 yeah but like - I’ve seen helicopters thousands of times - these are the lowest ones I’ve ever seen not in takeoff / landing -@C0deH4cker it’s Sun Microsystems’ campus near Boston. They are gone, but sometimes, under the full moon, you can hear the beards rustle… -Us Southerners are confused by your quaint Massachusetts notion of paying taxes directly to the nearest town -An, there is a helicopter school not too far from here, that’s probably the most sensible explanation. -@Beryllium9 fortunately I don’t think the office park has dehumanized us THAT much yet. -@amanicdroid I have a photograph! -It’s not traffic reports, wrong time and place; it’s not a news copter afaict, no news; circles low repeatedly; navy blue and yellow. -I saw that colorful helicopter again today; once is odd but twice is concerning, IMO. What *are* they doing so low to the ground? -@onekade @puellavulnerata unfortunately I haven’t been able to get a clear view of the tail number to look it up; could be normal stuff. -@onekade @puellavulnerata I keep seeing a yellow and blue helicopter circling around the Burlington Mall near Boston the last few weeks. -@puellavulnerata let’s take two things we don’t like And draw an “implies” sign between them Brilliant -@mikko the last color you see as something cools before its warmth becomes unseen to you -@0xcharlie @dakami cold, man -The special effects studio here always leaves their door open - who wants a copy of the Transformers movie pre-CGI? http://t.co/tcsVe1HEDs -@dakami making sure you see this http://t.co/4c9o7b2gcn :D -@AnthonyBlore yeah to me that’s a kind of spider. Freaky kind of spider. -@Se3ek which explains why my dad’s Dutch friends were in disbelief that deer wrecking cars is a serious problem around here. -@Se3ek northeastern USA has an almost identical ecology to western Europe. Except our deer are bigger. -.@michaelminella but folk etymology never lies!! -Business card for scale http://t.co/MfnCCkY5il -They’re not mosquitos, they’re three inches across. They’re “mosquito hawks” that eat mosquitos, so one shouldn’t kill them. -@elad3 ain’t no mosquito three inches across. They’re “mosquito hawks” — they eat mosquitos. -Oh hello hi please go away http://t.co/POMqOACcXI -@Saturn500Jared @scATX so what they mean is “it looks like the criminals are unambiguously American, so there’s no issue here!” -@Saturn500Jared @scATX except randomly shooting up a crowd of innocent strangers is pretty terroristy -(And if you genuinely don’t know where a picture came from, disclaim so clearly!) -Dear journalists and bloggers: “Twitter” is not ever the source of a photograph. Link. The. ACCOUNT. @pinknews -@DarrenPMeyer @skimbrel a bit rude they didn’t actually link to the twitter account they sourced the image from -@tapbot_paul you know, I can’t even be mad about the tax thing, as I was always surprised someone hadn’t found a way to legislate it yet. -@_larry0 woo -@thwartedefforts the “university” part was just meant to convey that learning to program takes years of dedication. -My blog about reverse engineering the program that consumed more ram when I shook my tablet http://t.co/4c9o7b2gcn -@grp I can't even tell when you're trolling anymore -@artkiver no one is contesting a paying customer’s right to complain, only a not directly paying because it’s open source one. -@furicle no, but we all know those evil bakers are in on it somehow. -Another pet peeve of mine is “it’s open source so it’s your fault if you didn’t go to university to learn programming to patch it yourself” -@mescyn #OpenSourceBeingUserHostile -There is literally no point to “points” for buying stuff except the “hot dogs and buns” racket http://t.co/5O2IZzsj62 -@hypatiadotca oh my gods I’ve gotten like a hundred -@realnudel I love translucent terminals. I’d only not use one on a machine too weak to actually render that. Like, seventeen megahertz. -@mescyn then link to wherever the hell the rationale is. No rationale? Oh look I found the problem !! -@mescyn “it was removed because <sensible reason> and won’t come back because <sensible reason> sorry, <suggested workaround>” <— good -@mescyn no rationale. User hostile. -@artkiver … that is the most “and this is what’s wrong with open source” comment imaginable ;) -@mescyn um, it’s like no one read the actual ticket and the actual response ! It’s the most straightforward non trolling ticket imaginable -@dhicynic @dylanmccall it isn’t ? -@elad3 open source has a social problem; success is contingent on not brewing community upsets like these -@elad3 yes, step 1. There’s an ordering dependency. -@elad3 I didn’t say they’re evil, just that no wonder folks say “my feature disappeared and GNOME is less useful to me now” -@elad3 Look at the actual ticket. Look at the actual response. All ranting came after that response. -Also, don’t miss the fact that GNOME is an actual foundation, with finances, not a hobby developer github account ;) -@elad3 but gnome is not a hobby project. They are a *foundation*. They have *money* and everything. -@elad3 valid argument for hobby side projects with a few thousand users or less! -@furicle that ticket is from a few weeks ago. Then someone posted it to HN and the fuss started. But it’s a righteous fussing IMO. -@elad3 @dotstdy what the feature is or how useless it was is completely tangential from the actual problem -I don’t care if it’s the stupidest feature in the history of the universe, that’s not professional behavior. End open source rant -@elad3 yes, I already read it -From the G+ thread: user is “irrationally attached” to feature that disappeared without explanation and devs wouldn’t give explanation. -@dotstdy @elad3 and… why not just like… say so? -Now, offering an actual rationale for why a feature was removed when someone opens a ticket (or linking to one) would be… better. -I don’t care that they’re “open source”, if they want to be a real project then they gotta not close “where did my feature go” with “no” -@elad3 strongly disagree. They are a *community* project. “No. *wontfix*” is completely anti-community -@dylanmccall … and sure it’s freeware, but it’s positioned as a serious product, ergo the users are customers. -@dylanmccall “where did my existing feature go?” “Wontfix” nope, that’s the most rude-to-customers thing a programmer can possibly do -@Motoma more likely you lost power while it was being written to or something ? -See, this is why no one likes GNOME anymore https://t.co/Gc81ZfzUCP someone got banned from the bugtraq for posting it to hacker news -@quine @m0nk_dot I had a dream you died stopping a car thief. I assume my dreams work on rand( people I follow on twitter ) for content -@banasidhe @attritionorg @carsteneiram I’m Dutch-born and I’ll allow being conflated with the Danish - just not the Deutsch. -@aidenconri just something San disk makes -@quine @m0nk_dot guessing I’m blocked, huh. -$85 *was* a bulk price, I don't think one could buy these individually if they tried -@kuripyon that was the quoted price per unit for "Android manufacturers" so I assume that was bulk. -I googled the model of processor (VIA 8650) in these $50 netbooks. In 2011, the processors cost $85 each. -@m0nk_dot @sergeybratus art is android… but document template is OSX… does not compute -@joshua613 I'm a bit of an asm education advocate :) -Ever stop and think that we successfully got the entire world to treat “MP3” as a real and proper word to be said with a straight face -@matthew_d_green who loves OSI and doesn’t realize it’s unrealistic? Everyone in my undergrad gave the prof a look of disbelief ! -All the cute cases are for iPad Mini! This sends a negative body image to all 10” tablets -@mirell it should become encrypted when the device is locked. -@m1sp_ebooks who are we talking about, little robot? @sciencecomic ? -# 333732938095140865 -@Kufat yes -Today on “odd phrases to put on an iPad case” http://t.co/Vd6ByytGkY -@chriseng oh where is everyone going to sit ?! -@tanonev not for lack of trying! It turns out most homicidal maniacs went to storm trooper academy -17 injured in parade mass shooting http://t.co/PWhHhK8eXk <— and this barely registers as news if there’s no bomb. -@jvanegue no one, not one person, prefers OpenSSL for anything -@_f_a_t_ donno yet -@blowdart you take that back YOU TAKE THAT BAokay. -@H0lyPuma Either my bank is lazy or their algorithm knows that I buy electronics every time I get two pennies in my pocket -Whoa hey they have pink Android watches on aliexpress... .... ..... -@RichardBarrell trust me there will be like six billion pictures of it when it arrives -@brentrubell why not? Never owned a Windows CE device before! -on aliexpress: "People who bought <cheap netbook> also bought <five pages of novelty correction tape dispensers>" -@akopa the solitaire one is win -@yaakov_h It's kind of like a pond that's only three inches deep and every square inch has reeds growing in it -@nicklockwood yup. dear @m1sp is, irrefutably, my personally allocated Australian. -Talking to my Australian, they are amazed that there is functioning marshland literally about ten feet from my door :) -Have you ever had a dream someone you know died and then you internalize it and spend the day being sad they're dead? (It was @quine) -@HanakoGames now use all of them in one tweet (that one doesn’t count) -The “mommy and daddy still love each other” bit in this Boston police vs FBI spat is adorable http://t.co/M3REIkQbom -@WhiteMageSlave success is being permanently associated with smug grins -@m1sp meep -@puellavulnerata wow, she and I actually agree on something! -@WhiteMageSlave awww! Thank you! -@m1sp eeeeeee! I’m awake! I’m on! -@dan_crowley not a video, but I think it has rudimentary anti screenshot of some sort (obvs another device can always record the screen) -Drunk @MrToph ad drunk @apiary cannot collectively clear World 1-1 in Super Mario 3. -@fncombo do they not have mothers in your country? -@comex having finally determined the Brawl disc is not in my possession, I have ordered another that shall come by post. -My drunk friends have discovered Skullgirls on the Xbox. Their drunk logic is defeated by characters with detachable heads -# 333367635116949504 -Geek house party problems: “whose iPhone is this? Who has an iPhone with a cherry blossom wallpaper” -@jennifurret @NomentionofKev … wow. I always knew those random photos were stolen from some random person, but when it’s someone you know…! -Eve tales: giving a cargo container progressively more passive-aggressive labels as another player drifts closer and closer to it -@justintroutman @kaepora @kivikakk except that's kind of the whole point of the app -@Geesu @cgiffard http://t.co/O4JpPZdOhl "SanDisk Cruzer Fit CZ33" -This is my gaming hard drive. Bless technology http://t.co/u4Mntizafq -@JayMassey @howtogeek whence the “jot and tittle” line in the KJV! -@chibitech Dirty Digital sounds like a band -@edcetera @schoolofprivacy it'd be the same as good Windows 7 tools. If you mean Metro apps, there's just toy encrypters. -@apiary we're going to the store so don't show up in the next few minutes or you will be very lonely -I'm counting former employees as part of the company. You can get off the payroll but you can't escape, @MrToph -Apparently half of Veracode is coming over to our house to play a drinking card game -@cybergibbons it's DHS or whatever the bright yellow one is called -Gettin’ dressed, goin’ to the store on this lovely Saturday *puts on work badge* wait -@leighhollowell I think it’s starting at three-ish -@BullshitCastles @0x17h I promise we are not all like this :( -@leighhollowell just bring some more beer, and oh, I should make DH go get snacks, what would you and Jolly like -@savagejen my teenage self is saying “well duh” -@apiary George and his brother in law can’t drink this weekend, clearance received! Address incoming -@jeremiahfelt a $50 windows ce netbook from China -@kaepora I suspect that Canada is the last stop on a Pacific delivery route that begins in California… -@dan_crowley Snapchat’s key selling point is that the recipient “can’t” keep a permanent copy of the transmission. Fails its threat model… -It’s been 24 hours since my Terrible Laptop shipped and the tracking number still returns a not-found error. My confidence is wavering ! -@wookiee you madman! -@apiary I actually don’t know; it might be too many people already! Let me get a count of who is actually playing -@m1sp I cleared out an entire pirate refuge all by myself!! Drones are my friends!! *crashes into bed* -@CliffsEsport eve online -@CliffsEsport ... the context is a video game ^-^;; -@_larry0 @snipeyhead I’m a fan of “Fiona” -Oh gods I’ve reached the “spreadsheets in space” stage — tallying up expenditures and income on a calculator like it’s a job -@inversephase we use the online order form. There's a delivery address field for apartment number... -@bmirvine lol yes -@Pepyri_ I'm inside a station in 1.0 space! -Eve report: I'm a lot better at this game than I thought I would be! I found a wormhole! It went to a bad place! I came back. -My friend @kivikakk has a go at breaking snapchat encryption from scratch http://t.co/1dVXzUUgd8 <-- good learning exercise -@DarthNull @mattblaze if you had a car you weren't poor enough! -@superMTW why would I want a computer that doesn't have a battery and doesn't fit in my purse??? -# 333002885442977794 -The Windows App Store's standards are so low that there's an app that's literally just someone's resume -@landley Ali Express? -@Kufat I eat at local Italian places all the time. -@Kufat and you know what? It makes me happy. -@mattblaze I eat at real Italian places all the time. Sometimes I just want Poor College Student food! -@landley China! -@mattblaze DH and I come from a lower class background. Real pizza is too fancy for our blood. -Literally every time we get a new Dominos delivery person they call to ask what our apt number is. Does the order form drop this field??? -@p0rksy China! Rest assured it is terrible -@SurprisingEdge opera mini, apparently -@m1sp proddle -@eebrah it's from China and it runs Windows CE -My $50 Laptop will be here in three to seven days. If this thing works out, I’ll have to figure out how to get a case with low shipping cost -@ShadowTodd also, no longer had a human inside her -@eevee I ended up writing posts in a markdown editor and copy/pasting. -I had a dream that I found a fistful of bitcoin on the ground. They were small golden triangles. -@miah_ @spacerog well, the fewer parts made from plastic, the less of a “3D printed” gun it is… it’s just a gun -@spacerog I kind of don’t see how you can make a gun barrel out of meltable-for-printing plastic that isn’t single shot. -@eevee I am acutely aware of the inside of my right ear. Just the right one. -@securityhulk @dakami there’s an autopsy coming out on the corporate blog next week about this silliness ;) -@WhiteMageSlave at least Lippa said something sensible -@WhiteMageSlave I imagine most of them had no idea that was even there until now -I have no idea how things like this just pop up in our kitchen http://t.co/CTJ1t3I86P -Also didn't expect to find out Tony Lippa is *still* sheriff of Caroline after all these years by reading the Boston news -The elder Tsarnaev brother has been buried near my old house in Virginia. Predictably the locals act like this somehow unsanctifies the soil -It seems I always write my corporate blog posts on Friday, and they have to wait for Monday -@The1TrueSean http://t.co/GfpD1s7h2r -I find it interesting that on iOS, the “gun” emoji is unambiguously a real handgun, but on Windows 8, it’s a scifi ray gun. 🔫 -@attritionorg no, I just didn’t cc: the brony because that’d be cheating. -@attritionorg aww where’s *my* troll -@Casiusss well uh the immediate prior RT was the context The one about their coolant leaking -@m_cars my friend did! I wouldn't have the patience -@Jonimus my friend made it! -Newest installment in the series "Hats Eating My Head" http://t.co/Q1CzScYW4f -It's okay everyone I read about Cantor in a comic book once -Year 2018: Microsoft keeps trying to design the Xbox Infinity’s successor, but the result is always still Xbox Infinity. -Next Xbox is named Infinity. Marketing high-fives, then slowly begins to question the wisdom of this decision. -@Gadgetoid @shmoosr people aren’t bothered by what was “always so.” The trick is to not let icky things become always so. -@qu1j0t3 @strlen I really doubt the quality is acceptable for that *yet* but probably in five years -@grayj_ integrating computer vision into this would completely, utterly change the question -In principle they can re-identify the same person across visits, but it doesn’t give them any PII like your phone number. -Mixed feelings on Nordstrom tracking how long customers stay by phone wifi beacons. Be aware that your phone broadcasts its presence! -@MrToph on that note, you and @leighhollowell are invited to play Drunk Quest at our house tonight -@m1sp and on that note, be sure to install eve! So we can fly ! -@jgeorge though if you go ahead and install those to your device, in theory Walgreens can mitm you ;) -@jgeorge you need the private half to produce new certs signed by these ones -@m1sp that is… eerily similar to my own experience. -@BomuBoi when I was much younger I was working on fiction about that - the NPCs were self-aware. -@jgeorge these aren’t the private keys, so in theory this is safe, but putting these on the public internet is still rather… odd. -@seanhn @cBekrar bah humbug -Jarring reminder that space stations are real and there are people who live in space -@spacerog @kjhealy I use nano. And my car is a Civic. -@BobbiJ0609 @LifeInNeon …. And the firing pin. Minor detail. -@xa329 yeah I wouldn't be volunteering -@DarrenPMeyer @Veracode @chriseng b-b-baka -@CipherLaw I'm a fan of neither the concept of export status of information nor "censor until we say you can uncensor" -@CliffsEsport but I feel there are quite enough ways to die without hanging around machines engineered to orchestrate it -@CliffsEsport it would be nice if bullets didn't actually penetrate bodies in real life -@CliffsEsport I don't let what the law says dictate what I consider ethical or reasonable - fix stupid laws! -@jesster_king that's the whole point of this debacle. Foreigners might find out about hand guns! -@CliffsEsport the sound of a chunk of metal rending flesh and bone and vividly red drops of life spraying into the night -@landley I am of the opinion that it's the *production* of that first one that is the problem; the file is the evidence, not the crime. -@CliffsEsport because they are mechanisms designed to go bang bang splorch? -@CliffsEsport @davidjayharris the things that grow in my sink definitely count as biological warfare -Amazingly, the actual link to half a gigabyte of files is still live on their site. But some of you are evil foreigners, so I can't share. -@alizardx @puellavulnerata nope. Something far more awful than that. It's a debugging utility which got shipped as a background service!!! -@theprez98 @innismir I think it’s trying to tell you not to screenshot or copy/paste the results for your own protection. -@davidjayharris and you can find instructions for biological warfare by checking the “don’t” section on bottles under your sink. -@davidjayharris deploying biological weapons is wrong. Knowing how it’s done is not. -@vogon wouldn’t this count as “legitimately in the public domain”? -@Xecantur you think something I ordered from Hong Kong two days ago is within two thousand miles of me yet? ;) -And I say all this as someone who hates guns, fears guns, does not want to be in the general vicinity of guns. -A file describing the geometry of a gun is not a gun. @StateDept can there be anything more antithetical to America than seizing knowledge? -So lemme get this straight: the US government is trying to suppress a file containing a 3D model of most of a gun? Both scary and pathetic 🔫 -@puellavulnerata @0xdeadbabe does the kitten have an SSD? -@rosyna @geekable wut The… register? -@jesster_king @helloerinmarie I believe elected positions do not count as “employees” -@dakami bonus: the app is written in .net -@DarrenPMeyer @Veracode @chriseng but but I thought I was the anime head… -@0x17h augh -@eevee I’ve got almost eight thousand now and I don’t think I’ve ever gotten one; not sure what their algorithm is. -@mweissbacher @523 The Glorious JavaScript Typing System strikes again -@solak @The1TrueSean absent parents provide a narrative framework for both purpose and opportunity for a youth to do something dangerous. -1800s astronomy book contains photographs of painstakingly sculpted clay models of the moon as seen by telescope http://t.co/MzkAQaFqRA -Definitely gonna do a blog post tomorrow about decompiling this vendor trash eating my ram (but marketing won't post it until next week...) -@Xaosopher when DH told me to take out the trash, I said I couldn't because of statis webifier and warp scrambler -@dipidoo no. It's mallocing on every shake event the accelerometer reports. -This is amazing, I can make the app's ram usage spike by shaking the tablet violently -@kaepora it must be leaking somehow, by keeping things referenced. It relies on a huge amount of third party code for that tiny functionalit -That's literally ALL it does, as I don't see it actually do anything with that timer, just faithfully track it. -280MB was being used by an Acer utility in .net that does nothing but track how long since last keypress/mouse/accelerometer triggered. -@m3hr a lot of people who actually work at Twitter follow me so I use their client and complain so maybe they'll fix it (or hate me) -Not amused with Acer utilities that think they're special enough to re-enable themselves after I turn them off in autoruns -@Storifyhelp @kivikakk I need to start keeping a kill board of sites my username has exposed bugs in ;) -@TheDaveCA the NES! 2KB of ram tucked at the beginning of the address space (not counting the picture processor's separate ram) -@Netbus You should consider not making sexist comments regardless of the coolness factor! It's not fair to others that I hog all the cool. -@TheDaveCA dude my target system has 2KB of ram don't get self-righteous with me ;) -# 332636650658213890 -@The1TrueSean looks legit - what kind of computer would know about our human clock system ? -@pmjordan cheap chocolate, because they add so much filler it starts to look gray -I like touchscreens https://t.co/K1tzgeK0OX -@The1TrueSean not Swiss Miss... -Being allergic to brown food dye means that Swiss chocolate counts as a medical expense -@hynek with *free* products that's the inevitable outcome, but not always so with paid ones -Basically I've come to the opinion that small shops make the best software. Clear vision + sensitive to customer needs -@Ammoniak because it costs more, is bloated, and they're herding people to an annual subscription model. And I don't like openoffice much -@katzmandu I somehow suspect this has rather more features. -Oh, and the word processor is using eight megabytes of ram. Eight! -I should warn you that I can't stand Open Office as every time I tried it it's a little too slow and a little too ugly and slightly "off" -I downloaded the trial of this commercial alternative to MS Office that costs $80 and so far it's actually great? http://t.co/yMWEpB5i9I -@tenfootfangs it was incredibly difficult to get both my face and the octocat in the picture while holding the camera -@vogon I don't think I know how to not do that -@HackerHuntress amazingly tangly and hurty! But when it cooperates, it has a nice Hermione effect -Gratuitous Selfie 2: The Other Github Shirt. Unfortunately my public commits are not so numerous as this suggests http://t.co/DfDX2bqHDI -@CyberiAccela I've been running Linux on expensive small touchscreens since 2007! https://t.co/gDz6TX1q00 -@CyberiAccela I now assume Linux is your primary desktop operating system -@RichardBarrell touch screen, you typing racist -@CyberiAccela You know when is the last time I plugged a personal device into Ethernet? I have no idea. Five years ago? -Help my glasses are tsnglef in my hair I can't see what I am typing oh gods it'd all blurry -@CyberiAccela this thought was prompted specifically by warning someone to remember to check the model for ethernet -@sugnaturi that's the "lazy" part of "lazytweet" ;) -Remember when you didn't have to ask if a computer was thick enough to contain a USB port? -@pmjordan thanks! -@vogon the translation itself is obviously server side, so I figure the guestimate could be client side and it'd still count as a webservice -lazytweet: when Chrome detects a foreign language based on text (not metadata), does it do that locally or is it submitting samples? -@davidbelanger78 my office workstation over vpn, yeah. I keep complaining about the state of our internal lan certs... -@m1sp it was more about... us going to the same school, and you giving me a piggy back ride, which probably wouldn't work too well irl -@ochsff it’s kind of funny how we’ve conditioned people to assume recommendations are finely tuned by an intelligent algorithm! -@ochsff the first is the one you’re looking at and the other two are a random sample of their celebrity accounts. -@trufae well, what did you *think* it would do? -@33mhz @0x17h their value for analogy is that they actually get in the news; though I draw analogy to hatred rather than action. -@nonstampNSC the excuse for why their individual writing styles show through is one is like God’s clarinet and the other God’s flute, etc -@nonstampNSC were you raised in the “plenary inspiration” school of theology? I was taught that God literally mind controlled them -@kivikakk @Storify JavaScript casting bug ahoy! Probably another case of http://t.co/NYSkkumjym -@kivikakk young enough that they might not even know what the word really means ? -@_wirepair D: -Diablo 3 pushes patch with trivially obvious integer overflow bug that allows gold duping http://t.co/Z6dSilEIqf -@m1sp I had a totally adorbs dream about you -@qole that's a boot to the head http://t.co/BBhUrAo7uX -Thunder! Lightning! I should give my iHeatgenerator a break before it sets something on fire anyway -@chriseng what are you trying to say about @codeferret_ -@landr0id apologies for the autocorrect that snuck in there -@landr0id like ARM, and a rudimentary decompiler. And you can tweak and re-disassemble stuff and save it out as executable. -@landr0id yes, while it’s not and never will be as featured as Ida, it’s still very useful and contains features the base USA does not, — -@landr0id the video is aging a bit! Hopper has gotten several new features and improvements since then -I’m feeling another fit of Voynich obsession coming on. -Maybe @TheOnion assumed they wouldn’t be targeted because they aren’t a “real” newspaper - I know I sure was surprised… -SEA used the exact same phishing email in multiple widely publicized campaigns and still more newspaper employees fall for it -Five point three billion hashes per second. With a “b” http://t.co/EdsaEtj8aH -@TheDaveCA Chromebook’s target market is schools in less wealthy countries. -# 332276412486656001 -@chriseng my iPad is far and away the most secure device I own! -@chriseng what’s the point of a personal device if you can’t store your personal data on it ? -@evilbluechicken nope! The scariest thing that’s happened is I flew to a faction contested zone to pick up a ship for cheaper -@chriseng @SecurityPenguin @csoandy where’s my security penguin huh -Real selfie this time - my @github shirts came! Whoa how do my eyes get so big http://t.co/5VTsf4wiBZ -@TheDaveCA it was an older lady who appeared to be researching something over dinner -Holy search terms! A chromebook in the wild! -To hide my embarrassment about not knowing the top bar is transparent at the lock screen in ios, I'll just complain about it crashing -Ha you're right the triangle is part of the wallpaper - but I never noticed it's transparent on the lock screen as I've never stared at it -@inversephase I have a 1.2ghz/512mb one that runs XP, but the power is currently out of order -@ae_g_i_s there are a few cat breeds like this too, like the Persian in that article. -@ae_g_i_s — certain bloodlines reached critical mass of certain genes ie fixation, but the species itself isn’t changing. -@ae_g_i_s evolve isn’t quite the right word, it’s just that their mating has been closely regulated by humans for a few thousand years and — -Why is it we can celebrate the uniqueness of minor deformities in cats ( http://t.co/QXbtxsGMuo ) but treat it as a tragedy in humans? -@jennifurret congrats! I’m sure that’s a load off your shoulders -In response to concerns that the pink one looks lonely http://t.co/C7XWwxfpIM -selfie.jpg http://t.co/o6o423rJha -It just now occurs to me to try mobile web. Hello! Twitter for iPhone and Tweetbot went totally dark on me. Panic began setting in -Is it my imagination or is twitter down -@pajp there’s no skip button, only cancel… -Can we please have an easier-to-pronounce name for the slowly spreading apache apocalypse than “cdorked”? http://t.co/xDLbDuDyoh -This song is dedicated to, among others, @m1sp http://t.co/NBnHlVHspP -This book I grabbed calls Windows CE the most interesting Windows - I’m inclined to agree; I find tight resource constraints fascinating -@puellavulnerata unfollow bug struck sorry D: -@wimremes so did he… what a funny religion, always looking for things to feel guilty about. -@xa329 well, newer versions of windows CE do in fact support .net, it’s a light .net that doesn’t have everything though -# 332010608536989696 -“Windows CE .NET 4.0 does not support the .NET framework.” Oh, turn-of-the-millennium Microsoft. -@nickm_tor my joke made more sense when I read your tweet as “I need the name of an RNG that…” -@nickm_tor I recommend this one I wrote just now named DefinitelyDoesn’tReturn256 -.@github is raining 500s -The “poker hacker” case has had hacking charges thrown out. Only a wire fraud case now. -@zeroday @_larry0 not really enough ram - the netbooks with a gig start at about $100 -@comex 🇨🇳 -@daiconrad no, arm. I’m sure a celeron could defeat it soundly. -@vogon super h sounds like a video game -@JackLScanlan @profoundlypaige actually most victims of gun violence are killed by a family member or other acquaintance so … -@blowdart yup. Opera Mini here I come ! -@JackLScanlan @profoundlypaige and a much lower density of killer animals -It’s http://t.co/tettnV51MI several people there sell it so check the shipping options if you’re as willing as I am to get terrible hw :) -@miaubiz don’t think so, but there are ones that cost slightly more that run android that have HDMI out -@Soulmech http://t.co/tettnV51MI -@vogon does CE come for flavors other than arm ? -I’m ordering a $50 pink computer that runs Windows CE, has an 800mhz processor, and 256mb ram. Best burner laptop ever? -@0xcharlie @nudehaberdasher scared to go onstage without him? -@ZoeQuinnzel @vogon smiley faces wander across a screen of punctuation. Then you get a message that the smiley faces are horrifically dead -@_larry0 @ra6bit I’m short on tools and long on clumsiness -“OS: Android 2.2 Browser: IE” looks legit -@_larry0 @ra6bit I’ve got an extremely tiny pink Korean netbook but the power pin is bent and I need someone to fix it… -@_larry0 I saw one that was about $70 in there that has USB, ethernet and HDMI. Yes it’s in the description and in the photo, HDMI! -@MarkKriegsman @focalintent there are so many to choose from http://t.co/peOZhQvTq4 -@MarkKriegsman @QuantumG I know exactly why people need more than a gigabyte of ram. To run the engine. -@demize95 I’ll let you in on a secret: I have a compulsion to acquire tech every few months. Far better that I spend $60 than $600 :D -@zeroday not necessarily this one in particular but http://t.co/927khBoPo0 -@_larry0 no wifi, almost certainly, but a lot of them actually fit ethernet in there! -@iRonNCSU well, the screen itself, plus wifi -I am seriously considering getting one of these ~$60 netbooks in the interest of science and brightly colored plastic casing -It’d be a lot of fun to get a stack of these and give them out as prizes at a con and see if anyone can do something with them -@McGrewSecurity that one is a speed demon compared to the 300mhz one I just found -Where do these incredibly terrible netbooks even come from? http://t.co/927khBoPo0 -@bobpoekert keyboards are kind of noted for being easy to enumerate all states for working as expected! -@superMTW no, it's for the generic bluetooth keyboard -@JZdziarski @cschweitz I'm just saying I don't see how the response was in any way related to racist prejudice on a personal level -OSX wants me to install a... firmware update... for... my... keyboard?? -@JZdziarski @cschweitz you know how some people have a “pet issue” they connect to totally unrelated subjects? I think I know yours :) -@innismir I thought the logic was that the site was information for workers who may have been exposed to radiation. -@jgeorge @PaulM it’s “national change your password day” -@SurprisingEdge PvE. I assumed I had to defeat all the pirates to clear the mission and kept at it… -@blowdart @hypatiadotca @natashenka the nintendo was my dad’s first gaming system. >:) -@focalintent amazon… and with all respect, I don’t think this model would fit you… -@Kufat you asked that as a reply to a statement on *underwear* dude -@Kufat … I’ll think of something! -@natashenka @hypatiadotca it’s been known to happen! -Fact: if you mail-order “assorted prints” underwear, they will send you pink leopard print -@EntroX today’s adventure: not realizing my new guns fit way less ammo than the old ones. Oops -#eve the illegal narcotics factory literally has a neon sign reading “NARCOTICS” on the roof -.@CloudFlare film of Syria retracting routes again http://t.co/CUpoXL05Ia ht @Hackintech_ -I’ll pretend my Windows tablet is a Windows tablet… In Space. “The GPU is overheating, captain!” “She’ll hold… until I beat my high score!!” -@marginoferror I like it so far, but people gave me money so I don’t have to fret about noob grinding -@vogon if the first ship I lost was a battleship, either I’m really good at this game or not spending the money given to me wisely! -And there goes my first lost ship #eve -Hey @cloudflare looks like Syria broke again- can we get another route withdrawal video like http://t.co/HqvA7hFxno before they lie about it -@Achifaifa yeah several months ago. They lied about it too -If you don't have Flash Player, this just happened (look at extreme right), gfdi Syria http://t.co/Xqo77VijZq -@vogon look, I’m just confused, first you told me you were a duck, then a seal, now a human?? -I train people well - I glance their way and they assume I have a bug in their product. -@vogon your face -@vogon *squint* -Amazon Attention Deficient Disorder: I should order some pants. *click* zomg a box?? zomg PANTS?? -@ColinTheMathmo amusingly, I don’t even need the thing to run, I’m putting it through static analysis to repro an issue with our system -@noxander007 huh, never seen that kind before. Around here (I grew up near "Rochester, the Lilac City") they're a particular light purple -I am completely, utterly, 100% positive this will work. With no consequences at all. http://t.co/L2YdUaDsru -@ColinTheMathmo it *does* have memmove. What doesn't have memmove? An SDK from 30 years ago? -Oh, of *course* whether or not it thinks memmove exists depends on whether I'm trying to generate a debug build! Screw you apache -@virgiltexas @miuaf bless your heart. -"error: memmove does not exist on this platform" I'm sorry, what -That awkward moment when you have no idea what the password of your build VM is -@jephjacques hey hitting random in the archives, every few pages I get the chrome malware warning, bad advert alert -@noxander007 neither! I have no idea what it is. But lilacs are lilac, not pink! -fios problems: verifying this DMG is taking longer than it did to download it, wahh -@chriseng but that'd be a good idea if it wasn't "pull lever, receive felony" -@chriseng on my sacred hacker's honor I'm working from home today -@mxgijsen you just hate us for our freedom -The view from my window is a tree of pink flowers. I should try harder to appreciate this while it lasts. -That's right, I'm... I'm... gingerkin -@matt_merkle eve -The real reason I play video games is to live out my fantasy of being a natural-born redhead with freckles http://t.co/21wTLDyHR6 -@grp @41414141 ringing the alarm and saying "exploit! exploit! (you already need root privs)" is our version of crying wolf -@ra6bit it’s the density of their data; just delete a few gigabytes that look useless -@txs ouch dude #unfollower -@MrToph @leighhollowell about time geez ! :) -@grp @41414141 err, it’s super weird to drop a full disclosure on it like a big kid -@zygen those look… delicious -@whyallthenoise eve -@eevee … my gods. -@artkiver err, are we talking about the same thing? I’m talking about a video game… -@Casiusss eve -The game lets me buy insurance on ships it gave me for free? Space fraud ahoy -@ohunt in eve -@jackyalcine none that are finished! -Oh goodness I've reached the hacking tutorial. Apparently space crypto isn't very good -"You don't own anything worth insuring" is probably the harshest thing a video game has ever said to me -@halvarflake @halvarfake it's game money in eve -@tylerbindon (I'm just leaving it while my load is running, not for so long it seems abandoned) -@tylerbindon it's pretty expensive ! I wouldn't mind if a stranger "borrowed" a pinch in an emergency but it's not like taking a bic pen -@rezeusor a couple episodes of the Mega Man cartoon. I was devastated. -A teenage boy from down the street stole the VCR. I still remember his name. He wrote a letter of apology to my dad. Never got the tape back -Laundry detergent is the only thing that’s ever been stolen from me, aside from our VCR with a Mega Man tape in it when I was like, seven -My detergent is getting low, so I’m deliberately leaving it out in the laundry room to test for thieves in this building. -@halvarfake (it’s Clarion Maenad. I assume sooner or later someone from twitter is going to blow me up for the lulz) -@halvarfake who are you and what have you done with @halvarflake -@swiftfoxfire I didn’t until about two hours ago -@RandomStep as presented it's three of three, four of four or five of five wouldn't be much better; PIN is four of ten -@RandomStep it'd be resistant to shoulder surfing but if an adversary gets the phone they could probably crack it quickly. -@grp it's a product, not a service! -@EntroX \o/ -@EntroX it's Clarion Maenad. I hope there's not a way to send painful death :p -@elliottcable he did once like years ago and didn't like it -@IanAKemp @elliottcable I knew my husband was wrong ! -@elliottcable I guess what I mean is if my pod blows up does my money go away or does it persist -@elliottcable is there a bank I have to put excess funds in or something -So @elliottcable just sent me a hundred million monies. I knew socializing on Google Wave would pay off one day... <3 -@IanAKemp yes. I am in wiki absorption mode. -@sneakin Intel Inside -I was told this game is Spreadsheets in Space but so far it's Posing For Character Portraits In Space -@elliottcable I just finished my character, her name is Clarion Maenad -It's like 16 color mode where it's my 16 favorite colors. How do I keep it? -I accidentally launched Eve twice. This was the result. http://t.co/BnmcmXuylD -@katsniffen so maybe the company just hasn't actually gotten around to shipping it yet but they sure fleeced me for shipping then! -@katsniffen yes it's something coming to me. The company sent me "your order has shipped" on Thursday -Twin sisters whose lives never diverged http://t.co/SZClOWTmPQ -It appears that SEA is in fact taking credit for it. But they don’t seem to get The Onion’s response. -Okay. I give up. Was @TheOnion really hacked or not? -The Onion’s tips for keeping news sites from being hacked- with kind words to say about twitter @support. http://t.co/C3kjPo4qzS -@Wikisteff @flipzagging @headhntr @ioerror @maradydd speech to text is very computationally expensive and even google does a poor job. -@JZdziarski @flipzagging @headhntr @ioerror @maradydd you don’t have to keep paying for hard drives if you just buy them outright… -@torvos I still use a copy of Photoshop purchased in 2001. But that’s the problem from their pov, I’m sure -@OFFtheDOT time to get a new car! -@lojikil while my needs can be met with these tools, I suspect a professional video editor may feel differently. -Is Adobe seriously going to a per-month subscription model only? That’s disgusting. I hope the light version of Photoshop is excluded ! -@oh_rodr the prior? It comes off. -Enjoying how the USPS has listed my priority mail as "shipping info received" (ie in stasis) since Thursday #priorities -@m1sp *prod* -(The dispute is about how long we were in a certain situation. To her it was 3 years of 30; to me it was 3 of 9; centerpiece of childhood.) -"Melissa is crazy. Said she <snip> on twitter." I have a feeling my mother did not intend this text for me. -@raudelmil it doesn’t matter much, because no matter how you define it, IPs, domains, or servers, they have no idea what the number is :D -Listening to someone explain to the new guy that yes, many of our large customers literally don't know how many websites they own. -My job basically comes down to hacking around the halting problem. -What’s the etiquette of plugging in your iPad to someone else’s charger when he’s not in his cube -@landley lolol -@ivanca oh trust me you are preaching to the choir here -@ivanca that too, though it’s a bit apples and oranges -@vogon @icculus I’d assume it was video game distribution, as those generally ship as binary and bitness can actually matter. -@DrPizza I read that phrase as “well APPARENTLY you dweebs are all on dialup, so we’ll wait for the Xbox 4 to enforce the way we want” -@landley cannot reproduce -@landley test http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 http://t.co/lgLnjr12x7 -In particular I find the phrase that the xbox will be “tolerant of today’s internet” very telling. -@furicle on some models at least, or they have a setup like a “smart” GPS that’s integrated a little too closely -@furicle of course they’re integrated. With everything. -Microsoft’s damage control statement on offline play reads as if they only just now decided for sure it will definitely have offline play. -This trend of cars shipping onboard computers running full traditional operating systems (with web servers?!) is terrifying me -@rantyben @osxreverser it's called contemporary worship mister -@rantyben @osxreverser arise my love, arise my love, the grave no longer has a hold on thee! No more death’s sting, no more suffering, arise -@Tomi_Tapio I can play a cute redhead with freckled in Dragon’s Dogma! :p -@osxreverser kill -SIGSTOP $pid kill -SIGCONT $pid -@jnordine I’d buy it with the 128gb SSD instead of cheaping out on the 64gb SSD -@tenfootfangs Word is constructed well. -@DrPizza we got a whole shelf of Tor fantasy books downstairs. Big hardcover ones. -@jnordine Acer w700 -Oh, iOS apps. I love it when I stroke you and nothing happens, I know a segfault is imminent. -@rgov however, it seems it’s good at shoulder surfing resistance -@rgov well, I’m assuming the exact setup in the pictures is a PoC and a real world implementation would throw in a few more. -@0x17h D: -@MarkKriegsman what are your symptoms? I’m feeling a little flushed. -@vogon those are just the poc, but you’re limited in information density if you want to make sure every possible trait appears at least once -Interesting new take on lock screens - but doesn’t look very crack-resistant http://t.co/ToeEd7tFSm -@0x17h I’m not aware of any - and FTR I’ve only gotten it working on Windows, haven’t touched gnu radio -@0x17h … hrm. Start poking at it with netcat or something… -@0x17h I have no idea, but cute numbers like that are just as likely some custom service. Er, I assume this ain’t *your* computer. -BBC interviews white men about Google Glass. One calls people who like smart phones not normal like you and me. http://t.co/nLcYLPWZUC -Cruel coder baiting, part 2 [pdf] http://t.co/3S2Fvl3FZL -@Tadlette of course there were some perfectly fine future teachers in the lot too. But not enough. -@Tadlette I really can’t emphasize strongly enough the degree to which I would not trust anyone’s child with some of those students. -Old but good: cruel rent-a-coder baiting. http://t.co/2A16DweBga -@RigelMD “less intelligent ones” is a way of saying people I wouldn’t trust with a gerbil, never mind twenty children. -As best as I can figure, they ended up majoring in childhood education because they figured you only need a 5th grade knowledge to pass… -Most of the “less intelligent ones” at my uni were studying childhood education. It’s not attracting enough competent future educators. -@grp a little less issue, but I’d still be right here saying that it’s a nearly useless platform on its own into the foreseeable future -@th3j35t3r young Mr. Tsarnaev is accused of some wicked things - but don’t you think being angry about his human rights is also quite wicked -@th3j35t3r young Mr. Tsarnaev is accused of some wicked things - but don’t you think being angry about his human rights is also quite wicked -@grp which is what Windows has been literally our entire lives. If they can solve the app problem, WinRT won’t be a waste of a tablet anymor -@grp fundamentally the issue is that it *currently* fails to be a Windows- a general purpose home office and school platform w/ apps galore -@grp here, try this ice cream RT! It’s just ice. No cream. But it’s cold, so that’s still ice cream. -This is what American-brand extremism looks like- lashing out against fundamental human rights of “the enemy” https://t.co/7Jt0sWBmD5 -@grp it’s just like Windows 8, except without the “Windows” part! And a ghost town app store; RT should not YET exist on its own. -@vogon Windows doesn’t even have x86/x64 fat binaries afaik. That’s so embarrassing -@vogon well, yes. “Shooting your future self in the foot: a biography of Microsoft” -@grp the iPad isn’t a continuation of a product line on which my business’s applications were based? -@vogon I just very strongly feel that there should have been an intermediate step - that WinRT shouldn’t even exist yet. -@vogon that’s an “if” larger than the moon, and it’s panning out exactly as it was foretold -“DH isn’t here to cook for me” has progressed to the “eating peanut butter with a spoon” stage. -I like the well-done, polished metro apps. I really do! But that’s in *addition* to the x86 software I need to do my job and hobbies. -Many months in, I still can’t fathom why anyone at MS ever approved WinRT. There’s only one reason you’d get a Windows tablet: for *Windows* -@ternus I'm going to get a scout ship, scan for stuff, run into pirates, and die. I have no misconceptions about this -@elliottcable \o/ -@ternus @ScaleItRon dwarf fortress... -@elliottcable huh, okay- I was figuring I'd have to sell a plex if I wanted big iskbucks because I don't have time to grind :) -I caved and got a month of eve because the "exploration" part interests me - but I won't play until tomorrow. Wiki absorption time. -Concerned Users Against Volume-Up Buttons Directly Beneath Power Buttons -@jesster_king I don't! But it's cute :( -@letoams https://t.co/FnNtf4JH1b -@jesster_king no, that's the 11" one... -To my amusement, I can’t access the site which is serving up the root CA that Iranian public workers are supposed to install -@CDA @kaepora gee, only valid for ten years? -@sergeybratus @dildog others have told me they’re okay in news where Russia isn’t concerned, but, Russia is concerned here… -@OptiMizPrime already have one. Two. -@CaptainSaicin where can I get a $400 motorcycle -@chvest :| -@elad3 I also have a Linux laptop and an external touchscreen monitor for it… works okay if you can think like a Linux. -@elad3 I own all three. I… like tablets -@elad3 I love my Windows 8 tablet aside from occasional frustrations with Windows 8 itself but Blue should patch most of them -@tangenteroja yes I do and I have one ;) but I don’t need a second, smaller one! Even if I can aff— *slaps self* -@ErrataRob @kaepora strictly speaking no, but that’s usually what is meant, unless @kaepora happened to have a server on port 80 handy. -Speaking of expensive hobbies, though: YOU *grabs random follower* tell me I DON’T need an 8” Windows tablet no matter how cute it is -@eqe except it’s a “former” employee so the “we’ll fire you” limitation doesn’t apply… -@moxie @mattblaze perhaps the real question should be: why did he say it? -@kaepora they’re probably blocking all ports not used in typical web browsing -@kaepora the first one is true of all libraries afaik. The bathroom one, not so much. -I watched the tutorial on scanning for anomalies in Eve and thought: why are pilots repositioning these probes by hand? Automate, geez! -@A38441 there are some nice things about Lynchburg, but all of them can be found in other places that are better. Moved to Mass :) -@A38441 yes, I went to school there, no not at Liberty. -Back in Lynchburg there was a guy who used his sports car to cruise around his four giant dogs and one tiny one. Was actually adorable. -(I’m sure antique cars are fun, it just grinds my gears when someone whose hobby is antique cars calls my computer hobby too expensive) -@cyclerunner we must not be talking to the same racists - where I come from it’s all about appearance as everyone has the same culture. -Ah, Sunday in the spring, when people of historically advantaged categories drive around in antique cars for no particular reason -@cyclerunner you don’t think it’s inconsistent to rail against “brown folk” and then try to be browner? -@Kufat can you try sounding a little needier? :P And I haven’t been at my computer yet all day. -Modern social problems: is he just not responding to me or did he actually block me? -@artkiver twitter explicitly bans unicode in handles. The question is how the Arabic-speaking kid bugged it out. -@bleidl @kaepora if he had really legitimately won an election with 98% of the vote, how could there possibly now be a civil war? -@kaepora @bleidl well I’ll be a legitimate monkey’s uncle if legitimate and legal are precisely equivalent… -@artkiver um, no one denies that *real names* have always supported unicode. Your twitter handle is @artkiver . -@artkiver your name looks like ASCII to me and letter-by-letter autocomplete agrees -@Se3ek nope. -@artkiver err, example? -Am I the only one who is supremely confused by white supremacists who work on their tan every summer -Time for the annual ritual of being exposed to sunlight and not changing color to the frustration of parents who think this means I’m sick -@CDA @mikko where might I find this certificate installer? -@elad3 @0x3a @mikko it does a soft check client side but lets me submit, then the server either returns an error or silently rejects it -As best as I can figure, twitter has/had a bug with normalizing a unicode percent sign to ASCII and not escaping it, lulz ensued -@elad3 @mikko @0x3a I’m betting there is/was a bug where that was normalized to an ASCII % and not escaped -@mikko @elad3 @0x3a I bet it has something to do with that fancy unicode percent, ٪ , but I still can’t repro. -@JZdziarski @CDA Chrome allows arbitrary sites to register for pinning, especially google. And Twitter official apps definitely use it -Seems the unicode girl’s profile is no accessible on web. Not sure if they fixed bug or I just can’t repro @mikko http://t.co/hSXCsYecMV -@JZdziarski @CDA and pinning has been widely implemented as a direct response to Iran’s abuse in the past -@JZdziarski @CDA of course, but the cert would still be *different* than it was before, and that can’t defeat pinning -@mattblaze I just quoted the guy and let it stand- but my gut tells me it’s either true or they want us to think it’s true and “behave”. -@kivikakk @m1sp good noon <3 -@marginoferror @mikko she used to have an ASCII username so I am betting the validation bug is in username *change* code somewhere -@elad3 @mikko no I tried that too. Perhaps relevant is that it keeps giving me the mobile site in English after I set profile to Arabic? -@JZdziarski @CDA you can’t “not know” about being asked to install a new root CA. It’s not a silent operation on any OS. -.@mikko I can’t figure out how she(?) did it- I registered an account, set it to Arabic, and tried to change my username, no repro -@NaveedHamid @mikko that’s just about UI translation. Can’t figure out what this girl(?) did- I can’t register a handle with Arabic chars -@Packetknife @wimremes surely even the most warmongering sorts agree that defending what you have is a prerequisite to aggressing? -@LowestCommonDen it’s not very consistent with the OO thing -@m1sp I derive amusement from how they deride people with in-game ethics as terrible worthless people who ruin everything -@comex oh geez I forgot! Where is that disc… -@qole @migueldeicaza … I never realized he was the author ! -Eerily specific advertising: ad on a video game site to pick up a hobby that isn’t virtual. Posted by a karate school in my town. -@abby_ebooks sweetie that’s sexist -@LowestCommonDen not.... really? you're probably thinking of perl... -@QuantumG yeah but like... why. -Good job, Visual Studio, embedding strings in my program referencing an F:\ drive I don't even have. -@kragen .... others are telling me I'm off-base to consider a language with classes "object oriented" -@kragen stuff like len(list) instead of list.count or similarly named member variable. Like, you call that object oriented? -@bobpoekert it's... not as object-orienty as I was led to believe? -Language defenders stand down! I don't hate python. I just keep having to look stuff up because it doesn't work as I assume. -@zephyrfalcon I'd expect "no. of elements in list" to be something like list.count or list.size. Apparently it's len(list) -My programming project could be named "Someone who knows C and Ruby finds Python to be... perplexing" -@drgfragkos I'm an obsessive tabber. But that can't cure outright mixing up argument order or whatnot. -I am unreasonably paranoid of someone breaking into my server and laughing at the typos in my command history -I've been using a metro SSH client called "Remote Terminal" which is actually quite nice (aside from no way to change font that I can see) -@QuantumG @focalintent no, Ragnarok Online 2 -@focalintent good news, the game failed to hold my interest! -@sakjur I've played PS3 at a friend's house but the disc was already in the machine! :p -@ErrataRob now my husband and I are top few % for household income. Neither of us think it's because we worked harder than all others. -@ErrataRob and what got us *out* of being poor wasn't hard work - my parents always worked hard. It was rich grandparents -@craftstudiodev @valentinogag @ErrataRob ewwwwww!! -@ErrataRob FYI, I grew up on welfare. -@ErrataRob complex reasons that can't be summarized in a witty tweet? -@valentinogag @ErrataRob the folk at @craftstudiodev got the same email! Someone’s looking for an easy hole. -Made the mistake of reading Eve Online discussions, “liberals are lazy and poor people are almost all poor because they’re lazy” -@sakjur I have no idea, I have never seen a blu ray disc in my life. -@sakjur yes I just never looked at the cable -I am genuinely surprised to notice that the Wii-U has a completely standard HDMI port. I assumed it’d have a funny shape. -@focalintent I think I will give the game a whirl until it gets dark and my high focus state kicks in -Yes my homework assignment for the weekend while he’s gone is to get a character up to a level to party with him -Now the question is: do I work on my program or do I play a Ragnarok 2 character to level 16 like my husband asked me to -It looks like the kind of game you have to give your all to get much out of… -Eve looks like the kind of game I’d give a whirl if the culture wasn’t already so entrenched and insider-ish -@ivanca ah, but that’s why we invented books! Which is why I can have insights on a story from 2500 years ago to begin with. -Gaming an “average worth” algorithm which doesn’t exclude significant outliers http://t.co/Rb401euz25 -@antifuchs well, I couldn't fit it in one tweet but he WAS specifically warned by a prophet this would happen -Yeah I'm two and a half thousand years late to that insight -Dear Oedipus: knowing you were adopted, why did you kill an older man and sleep with an older woman, like, duh they were your parents, duh -@craftstudiodev small businesses frequently run custom scripts with these basic mistakes - see them all the time on the job D: good on you -@craftstudiodev it looks like a basic attempt to exploit custom mail handlers that people threw together and didn't test -I realize you can see "bleed" in those images which some think is photoshopped but I'm ~reasonably sure that would really happen. -@The1TrueSean especially when you’re at a school which has an actual scepter one of them uses -Convert LCD monitor + glasses to invisible monitor you can only see with the glasses on http://t.co/paN2lMQffV -@spacerog … -Amazon, why would anyone want to tweet the exact kind and size of underwear they just bought? Well, apparently I’m okay going meta with it… -@snare 👞🐞 -Hmm… I can’t help but notice my back patio is big enough for a tent. A tent in wifi range. -@_losh err, Python is a bit more likely ;) -def foo(): pass — I can’t help but read this as “meh, I’ll pass on calculating things today, thanks.” -“No, welcome to America. All of that stuff is being captured as we speak whether we know it or like it or not.” - former FBI agent -@skynetbnet @thegrugq actually bit9 already makes that, and my work computer is running it right now :( -@kivikakk SPIRITUAL PEOPLE USE TELEGRAPHS STOP. WHAT IS PUNCTUATION STOP. -@m1sp yeah I already decided they’re just video game villains -@stillchip @mikerigsby I… uh… critical culture fail. -@kherge yes I will wake up at 2pm tomorrow -I am in fact playing #dwarffortress but I don't have high hopes for this fort. #tantrumspiral -@_larry0 correction: I am causing horribly formatted disassembly to be generated -@_larry0 "worse"? Implying my Friday night is not starting in a good position? -@mcclure111 you're looking at a text dump of python lists -@mcclure111 distorm3 library -Friday night is consistently the most productive night of my week http://t.co/z54iv8RDCj -@TheDaveCA well technically it's to get a toy gun - starter pistols are those things they shoot at horse races. -I just noticed my nifty keen Veracode peon cup isn't microwave-safe. What good is it then?! -Whoever wrote the .nanorc I cribbed is really incredibly racist against the tab character. Highlighted bright red for EVERY language? -@nonstampNSC you would not believe the tortured justifications they can come up with for this stuff… -I’m not even sure I know what an x86 chip *is* anymore. http://t.co/G2or2gMtyj -I’m not sure if Housemate locked the door when he left for two minutes because he doesn’t know I’m here or he knows something I don't. -@SurprisingEdge nope it’s in good old fashioned x87 -@SurprisingEdge may your cat knock over your soda all over your laptop when you look away for two seconds -I’ve been sitting on a killer little game idea that should be fairly easy to make; what’s stopping me?! -@AdmiralA so most people today are feminists but they only apply the word to people who are more feminist than they are! -@AdmiralA err well by definition if you support women being free agents with human rights you are in fact a feminist :) -@spacerog @malc0de umm - the point is they installed the patch for what they thought it was and were still vuln? -Israel calls Google having a “Palestine” search site a political statement - as if taking Israel’s stance is not a political statement. -@_yossi_ I don’t even have a license! But I’m a fiend at Mario Kart -Astonishingly, mirroring tilt-to-steer games to the TV makes me not nauseous! I’m still terrible at them though. -Looks like hacking obscure government websites, so that the victims of the hosted malware are almost all govt employees, is now a Thing -@Nfinit @vogon I think the threshold for slang is generally not very high ;) -@vogon @Nfinit it’s mostly a tumblr thing, and tumblr is very teen, but it leaked into bronies etc. -@miketheitguy @wimremes that’s a completely different matter ! -@Nfinit @vogon gods forbid the next generation develop their own slang. -@wimremes not enough to speak it coherently ! -@wimremes and every Dutch-speaker in the world makes this mistake in English :D it’s a dead giveaway -@wimremes no, the way you wrote “video’s”, correct in Dutch but very wrong in English ;) -@wimremes their vowel’s :) -@wimremes do you know the fastest way to ID a Dutch-speaker in English text? :) -@jjarmoc yeah it’s not an infinite pi in the sky generator ;) -Justice: @fredowsley finally getting called out on removing the divider between cubes and having a little kingdom over there -@Johenius @stillchip oh it’s fully functional with a real world use to this very day - if you’re managing your own stack -@scottmarkwell I will time travel to the year 2000 and suggest this to him -@jjarmoc four as far as I can figure -ms-paint art at its finest http://t.co/Qw7KJRJnaO -@iPlop https://t.co/Iyoq5kDwmC -@stillchip yeah, everything dealing with floating point is separate -@lojikil “CRC32Accumulate CRC32C value using the polynomial 0x11EDC6F41 (or, without the high order bit, 0x1EDC6F41).” #closeenough -@Ansjh fldpi -I… did not know that x86 chips have an instruction to load pi onto stack. -@JastrzebskiJ I’m pretty sure the latter counts as biological warfare. I just wrapped stuff in printed-out gay cartoon porn last time -@JastrzebskiJ I’m pretty sure the latter counts as biological warfare. I just wrapped stuff in printed-out gay cartoon porn last time -TSA and baggage theft: it’s bad. Incredibly bad. https://t.co/hpclhWmwpZ -@WarOnPrivacy well since the book itself is PD whoever found it could also put it in free archives as it should be if OED is quoting it! -The Oxford English Dictionary is looking for a book called “Meanderings of Memory” written by a Mr./Ms. Nightlark in 1852. -“May your dual monitors never have quite the same color profile” #geekcurses “May your headphone connectors always fray” -“May there be a dead pixel near the center of your screen” #geekcurses -@daviottenheimer somehow, contracts written on paper to subsidize device costs work regardless of operating system -“I hope your phone is handled by a toddler who just ate pancakes with syrup” #geekcurses -Actually, I think “I hope you get stuck in a two-year contract with a particularly cheap Android phone” shall be my new parting curse -@jdiezlopez when you say something (generally negative) about someone who has a twitter handle but don’t @ them. -I want to subtweet @grsecurity so hard right now, I’m going to explode -@Dan2552 I actually didn't know that, but still, I can't drag around an Apple TV everywhere I go to give presos :< -@Dan2552 my use case has little overlap with playing movies -@sevanjaniyan they’re post failures from bad connections, they accumulate -I am so tempted to play a game on this public office TV right now. -Huh this looks okay I guess http://t.co/c6DmRYTZM1 -@lastres0rt well this thing contains a real processor with an operating system so it certainly could! -Granted I would not wish a $50 android phone on anyone. -@matt_merkle @myfreeweb and mirroring is specifically what I need! -@lastres0rt pretty sure I’ve seen them that cheap on sites like Ali Baba, admittedly they’ll probably break after a week :) -@lastres0rt you know apple prices are fixed right -Hey look everyone I bought a lightning to HDMI cable which costs more than an entire android phone with HDMI ... :( -The only weird thing in the event viewer is a write to disk took 91 minutes which is how long it was in the bag. So it suspended but didn't? -@jb33z I do however have a work charger for the MacBook Air because that thing drains (and refills) very fast -@Alamae Not sure honestly. Guess I should dig up the system logs -@Alamae surprise suspend failure! Trololol -@jb33z it’s a windows 8 tablet, definitely no other chargers around, oh well, going home early anyway -@jb33z except I didn’t bring my charger because 100% was enough to get me through the day but now I’m starting at 70% :( -Why is my Backpack of Laptops warm to the touch Ohsh—— -Cracking a password by measuring execution time with pintools http://t.co/TICELYp746 -@puellavulnerata I guess I’ve always been one of those “at peace with the animal kingdom” types. -@puellavulnerata don’t recommend trying that on armed humans though -@puellavulnerata there is a way to getting along with dogs, mostly in reacting like you’re so happy to finally meet them -@thegrugq @WeldPond @chriseng they have to walk all the way to the fridge. Except for the ones with mini fridges -@dinodaizovi @joshcorman @wimremes you’re such an analogist! -@SurprisingEdge we don’t speak of the… non-octets. -@OxbloodRuffin only if you’re opposed to fabulous male saris -@puellavulnerata take some comfort in that white girls aren’t suspicious unless they’re standing on a corner looking too pretty. -@shawnmer @thegrugq @41414141 @0x6D6172696F I apologize for my racist friend. He thinks all Germans look like @i0n1c -@chort0 @GreatFireChina so uh you’ve changed password / revoked app access right -@jesster_king no. They’re not dumb. Just literal. -ESEA claims the bitcoin thing was a rogue employee now (as opposed to previous claims) http://t.co/1T3sDu6hp8 -Did you see that @weldpond totally stole my little farewell salute thing I’m suing for brand infringement -@garlimidon no, that completely and unfairly characterizes it. Such people are usually deeply intelligent. -Is there an actual medical/scientific term for people who just never get jokes and take rhetorical questions literally all the time -@_booto I don’t remember except it was a first page smiley -@Dykam @Koning_NL -@CyberiAccela oh right you changed your username -@CyberiAccela ask @m1sp ! -@CyberiAccela you're the second account in a day that Twitter has suddenly decided I am following (meaning no offense!) -@ScaleItRon the ssh session, as screen was fine once I reconnected. I'm using a metro client so it's in .net -@meangrape not in Metro it isn't! -@thegrugq I already took my sleeping pill so I'm going to drop connection to IRL before I drop connection to IRC #zzz -@thegrugq the real question is if I can paste emoji into irc and disconnect everyone else like it's 1999 ;) -@thegrugq how dare you imply my 0day are not worth hundreds of thousands 😒 -@thegrugq are you kidding this is prime 0day -Guess who just hung an ssh session by sending an emoji -@Kurausukun I frequently complain about everything I use. Also, I like touchscreens. -Since I just blindly installed a nanorc off github, I 100% deserve that it changed basic keybindings without warning. -Are nanorc files turing-complete no reason just wondering -There’s just something fundamentally beautiful about a tablet computer with a full screen Midnight Commander in vibrant BSOD Blue -@vogon you're probably not wrong because Real!Remote Desktop does give me a certificate prompt -@vogon why does it lie to me and say the machine isn't answering -WHY can the metro Remote Desktop not connect to a machine that the conventional Remote Desktop can #UIRage #Windows8Rage -DH borrowed my tiny USB drive and now I can't find it on the back of his computer because it's too tiny -@focalintent @MarkKriegsman yes *shudder* -Not sure what it says about y’all that all the snark about 8 and 16 bits has been made but none about 64 -This book on *source* analysis assumes pointers to be four bytes… 😤 -@vogon that’s a sure sign of someone who was raised outside of it entirely… -@zygen also you're confirming my stereotype that no one at twitter is a heavy tweeter -@zygen you should spend it replying to me -@dangoodin001 I don’t know but the Apple app evaluation process is pretty much useless for subtle malware… -@ra6bit @banasidhe @drbearsec most people don’t sit around quantifying themselves as 2.31% the other gender :) -@nickdepetrillo did you get a good look at its rear as that looks like a beaver but cool also be a large woodchuck. -@uptownmaker incidentally I am more or less poly. And bi. But conventionally married to the other gender, so I have straight privilege -@zygen you know I’m only so hard on twitter because it constitutes my blood and breath right -@zygen now I know who to DM at 2 in the morning !!!! -@zygen wait do you work there -@uptownmaker really? Wow that’s messed up -@uptownmaker this must be a definition of kinky of which I am unaware, as I’ve never heard anyone face civil discrimination for that -The masses demand Pokemon liveblogging. http://t.co/XLfxQ5oRLV -@DrPizza I associate that game with nothing but my husband swearing angrily -Husband and Housemate went to the movies! Do I a) play Pokemon Blue on the TV b) continue Dwarf Fortress liveblog c) something educational -@eevee it was worth it imo as an animal lover. Sometimes you don’t know but you have to try. -Actually looking at my mention stream in two different clients Twitter may have fixed or mostly fixed the dropped streaming bug today -I draw the line at O for Otherkin ;) -Working my pet issue: don’t forget the T in LGBT -@imrel0ad there is now -(That’s Washington and then Washington, DC separately. Hooray for overusing the same name!) -Connecticut, Iowa, Maine, Maryland, Massachusetts, New Hampshire, New York, Rhode Island, Vermont, Washington, DC, Native Tribes #gayrights -@samkottler also helps if you have a font installed with the sparkle heart emoji ;) -@vogon 🌟🌟🌟🌟🌟 -@Pentanubis the latter would be Fabulous with a capital F -@samkottler look it up on google news :D -Welcome to fabulous, Rhode Island ✨💖✨ -@Kufat https://t.co/AUqkojJIFr -Day seven billion of the “new API is randomly dropping like 5% of tweets” bug. I’ll be over here being bitter towards twitter -(The idea being to teach student programmers that their cute, efficient algorithms will fall down on real world input) -@tapbot_paul not to *use* anyway! The spirit of the comment was to teach the taste of abject failure. -Example of *good* comment from DailyWTF: all young programmers should implement a date/time library. Under adult supervision. -@mirell they will eventually, but not the “explorer” model, unwise considering the target audience. -@inversephase a lot cheaper than mainframe massagers -@cubewatermelon @sciencecomic forgive them for they are young -Glistening example of DailyWTF comments: “no business should use Windows because it’s a PERSONAL computer” #genius -Why do I punish myself by reading TheDailyWTF comments? It’s this little microcosm of 1999 slashdot comments that just won’t die -The mojibake is leaking http://t.co/8q20V4UGqt (order form filled in with Cyrillic) -I feel all hip and European when I read a political parody account in Dutch and get the joke -@Rhythmreactor also high five for being from Gelderland, stranger. Not that you can tell from my bad Dutch, but that’s where I was born :) -Apparently I just passed forty thousand tweets. I suspect I may literally tweet more than I talk. It’s 60% replies, too. -@Rhythmreactor at this point, no, but it may have been a “suicide by cop” ie planning on getting shot at if he didn’t die right away -@MichaelSkolnik were you there or is this via someone? Condolences for witnessing tragedy if you were there :( -@ternus well, yeah, cuz it is -It’s 3pm and I am just now starting to feel awake and coherent -Instagram oauth does naive domain name partial matching, ownage ensues http://t.co/nKWPPml2uR -@nicolasbrulez also it would C&C to the public domain of my least favorite person ;) -@EightTons actually it’s a huge portion of our codebase and not even the original author is sure how it works -If I were inflicting malware on people I would make sure the PE header had a 2008 timestamp so they’d think they’ve been owned for years -@konjak hello stranger I like this picture -@mikko I guess I have faith in everyone screwing it up and storing it anyway ;) -@NM_Jeff I don’t “read gawker”, it came to me through the twitter filter. -@_wirepair what that is personally offensive -@NM_Jeff Jezebel is kind of hit and miss. I judge articles by their contents, not the ephemeral state of surrounding news media. -This is an amazing commentary on the perception of misandry http://t.co/PYIDBmFABW -@mikko does it really help prevent fraud? How often does one have all other needed details but not that one? -@washiiko what? I wore a $60 dress and $5 shoes. I still have the shoes. -@uppfinnarn sounds like a good idea I guess? -@uppfinnarn it’s… a collection of letters? -@chort0 down voted to invisibility? Or you’re you’re using sort by best/hot? -@m1sp the werepanther reverted to human form literally seconds after arriving and bolted without so much as killing a yak -@chort0 did you know I’m officially not allowed to make fun of him :( -@Viss cheers -@innismir invalid link and I am curious D: -@JackLScanlan except I don’t drink. -I… don’t remember following @LaughingSquid . -@DrPizza the strange truth is that any good-looking criminal is going to have fans. Also, his friends seem to be very loyal to him. -@thegrugq you just don't know how to interpret the ascii -Let's try this again http://t.co/8KztUwik78 -This kid in this sandwich shop is acting like he swallowed cocaine or something he's climbing shelves and slamming soda buttons -Today's discovery: children begging for junk food sound the same in every language -Python documentation life advice: use communicate() to avoid deadlock. -@grayj_ sure but does it magnetically clasp to my soft-cover iPad case -@arstechnica @dangoodin001 404'ing -... and that's the second cheap bluetooth keyboard I owned that only worked until the first time the battery died! (not the cool little one) -@NM_Jeff "copyright and trademark claims attributed to “Firefox and Mozilla Developers."" -Of all the stupid comments on that ars thread, the one that gets me is the call to just give up being angry about surveillance because w/e -Go Go Mozilla - using a copyright dispute for good http://t.co/zozQYO18ue -@cammywrites ^_^ -First @MolnIsCloud raised eyebrow: why is my Linux server running bluetoothd by default o_O -Pixel art movie... made with atoms http://t.co/I5dRHCGcmB -@tomslominski I always thought so too but it turned out everyone I knew but me was a boy -@tylerbindon @github how did you get to this page? I couldn't find it on the t-shirt listing or the faq -@dijama but my waist is pretty typical for someone this tall so nothing fits right!!! -@dijama it varies vastly by brand. My top end is a bit heavy if you know what I mean so I have to buy clothes cut for heavyset people -I notice @github shop doesn't have shirt sizing info... gonna take a risk that "ladies xl" actually fits tall women -I love it when the dynamic web scan team shows me one of the "special" websites. It's like playing Classic Web Vuln Bingo. -@Paucis__Verbis they’re on a boat, they’re on a boat -@greg311 I’m not gung ho ban all the guns, I’m gung ho “don’t enable small children to murder each other”, parental responsibility -@greg311 okay then I’m not sure what we’re disagreeing on -@dfranke the prior is kind of too likely to lead to the other. Don’t teach small kids to use death machines. Small kids are dumb. -@greg311 my cousin-kid doesn’t get to use real guns yet but there are real guns in his general vicinity and they’re glamorized to him -@greg311 I’m just saying that in some families teaching small children to use guns is seen as dead normal -@SurprisingEdge I’m fairly sure that’s where the actual cart makes contact (the cartridge housing has been removed) -@sciencecomic not to be That Person, but don’t you think that song is just gender essentialism (I understand they’re not dead serious) -@greg311 my 4yo cousin-kid is a startlingly good mark with nerf guns. It’s not that fringe in certain places. -@Jedi_Amara 🇺🇸America🇺🇸 -Accidents happen. It’s not fair to blame parents for every accident. But I think it’s fair to blame parents for giving a 5yo a real rifle. -@RSWestmoreland accidents happen, but it’s repulsive they were teaching a 5yo that handling a gun is okay for a 5yo to do -Via protected: to the surprise of no responsible parent ever, 5yo given a rifle kills his sister. http://t.co/5FVs3SvYBD -Why does software have to be so complicated? I go in to talk to engineers assuming a problem is one bug and it’s really another entirely -@matthew_d_green in this particular case it was a game client so that would be expected anyway -@thegrugq sir, please, I do *static* analysis -@MarkKriegsman …. New Hampshire? -@vomitHatSteve shortens hardware life and runs up electricity bill. Punishes the user. -@Demonic_BLITZ http://t.co/jOyhKoqpc3 -@nixonnixoff except that’s exactly what miners do, especially silently installed ones! -@nixonnixoff if by interesting you mean destroying people’s personal computers. GPU mining is not healthy for machine or electric bill -@nixonnixoff if by interesting you mean destroying people’s personal computers. GPU mining is not healthy for machine or electric bill -@mister_borogove kind of too late at that point! -@glassresistor binary, solutions that only work with source are toys IMO. -@marshray that many/most/all commercial flights lace their fuel with mind control agents to dampen free will of the populace -Has anyone researched telltale signs to determine if an application contains mining code? Cryptographic constants etc? -@marshray that was an absolutely horrible, disgusting thing to do, but that isn’t quite what the chemtrailers are claiming -Computer gaming company accused of silently pushing out bitcoin mining software to gamers’ GPUs http://t.co/W0AFn2fNWJ -@McGrewSecurity @chort0 I use actual calculator apps, but that’s mostly because I enjoy flipping the little bits in programmer mode -Last night my VPS had a 2.0ghz processor and today it has a 2.6ghz one, at this rate of growth I will soon have the fastest processor ever -@grp @tapbot_paul my experience is the *dead* opposite - that signed math with logically unsigned values is a failed conditional timebomb -Watching an airplane out the window, it blows my mind that people *actually believe* they’re secretly spraying mind control chemicals -@dinodaizovi you’re sounding really passive-aggressive ! -@tapbot_paul Augh! A count should never ever be signed! -@voltagex https://t.co/VJ3t99c85D -Hacking github’s contribution graph ;) https://t.co/YtyREpQAoT by @kivikakk -If you have a firmware bug in a slot machine, try not to exploit it five times in one hour in the *same casino* -@raudelmil I know them and their work. Heck I kinda maybe know one of them biblically. That’s how NDA goes but they’re legit. -@netcrusher88 one would assume! -IOActive: “I’m not saying there’s serious bugs in Huawei, but, there’s serious bugs in Huawei” http://t.co/oAlIetPaBY -This ninety-nine cent Danish pastry tastes like laundry detergent -@sergeybratus @marshray the math thing is generally American, but Mass schools are not as stupidly run as Floridan ones for sure. -@solekiller the thing what underpins the Veracode static analysis (we really do just call it the engine) -@pajp no, Linux is just awful with error messages -@marczak http://t.co/jOyhKoqpc3 -@WesleyFlake @thegrugq if you have high privacy requirements, *always* encrypt locally, then store. -I guess it comes down to I can put up with *sincere* beliefs I don’t like but not beliefs only adhered to when it’s convenient. -@yoz @raaahbin @comex I just can’t understand how that religious belief could still hold actual significance at that point. -@yoz @raaahbin @comex I just can’t reconcile the idea “don’t work today, God commands it” w/ “use this gimmick to get what you want anyway” -@yoz @raaahbin @comex meaning no offense but how else could it reasonably be interpreted except an attempt to rules-lawyer a belief -.@comex I was criticizing the people who make/distribute it specifically, a really messed up sort of charlatan… -@sergeybratus I thought it was the other way around- he made them admit hiring non-practitioners to do the work was inconsistent w/ belief? -@panther_modern I know; I was one; but not this particular variety. -ffs if you teach using light switches on holy days is offensive to your god don’t make cute gimmicks to get around it. You think he’s dumb? -@xabean just remember: Losing Is Fun -So it's a few minutes after midnight in the first of the month and our internet suddenly broke. It's not a payment error it just lost its IP -... Fort over. -@blowdart Dwarven women do not have beards in this realm. However as she is now quite dead I can't go back and check. -@blowdart not only do I know she's a her, but I know everything about her down to her favorite color and how she feels about crowds. -So uh six of my seven dwarves are (un)dead and the last one is holed up underground running the whole fort herself http://t.co/5PN7k5J46y -Does anyone have a guess why Dwarf Fortress over SSH is not receiving/respecting shift-arrowkey commands -@thegrugq eighteen euros one, one core / 1 gig ram / 1 terabyte bw -http://t.co/XLfxQ5oRLV get your liveblogging free liveblogging get it while it’s hot #dwarffortress -@ErrataRob they start at ten euros I bumped up the ram and it’s eighteen euros. Comes with a terabyte of bandwidth https://t.co/zbVCG9pAOO -This is happening #dwarffortress http://t.co/HnetxUEyv5 -@thegrugq I only go to [redacted] to flirt -Thanks those who suggested it was 64-bit DLL hell. apt-get ia32-libs fixed it. Also wow my Sweden machine has FAST internet. -@thegrugq #thatsthejoke #sortof #itsactuallythatimtooparanoid -@miuaf couldn’t it uh maybe mention what it thinks is missing -I’m trying to execute dwarf fortress on Linux and it’s telling me there’s no such file or directory for a file other commands agree exists -I installed elinks on my Swedish server and browsed to google and welp my unicode is working over ssh! #sökpågoogle -@chadwik66 it’ll pick up once it learns your preferred insults. -@dakami I’m not sure how you define super low but I’ve been very satisfied with my Acer w700 -@sciencecomic … … … what -If you want to stress test your C/C++ static analysis, it turns out a natural language parser is a good choice… -@jruderman @johnregehr well uh… nothing really! I guess technically C’s soundness is measured against “the ideal machine” -@akopa also I like to have a general purpose Linux server just laying around not subject to my home ISP getting annoyed :) -@akopa I want my irssi to stay up 24/7 without interruption :p -@akopa yes? -@locks also unlike amazon they do not charge extra for static ip -@locks it just debuted and I got mine a few hours ago, however the deployment was all very automatic and smooth and it works as expected -@MolnIsCloud do you have a high-res image of your little cloud buddy? I think it’s adorable -I… may be renting a VPS from the Pirate Bay people purely because their logo is Cloud Kirby. https://t.co/a9eEhnGsuB I’m easily won over. -@meangrape oh no I dropped my travel floppy disk the one I keep 64px gifs of my family on -@meangrape https://t.co/i53JbbbnzM they’re new, but Kirby wouldn’t agree to be their mascot if they weren’t totally good for it right ? -@matthew_d_green well, yeah. But it’s not taught that way, usually. Whence much sorrow. -@ptolts dark secret places and #nesdev -@matthew_d_green until suddenly it bites you for opaque reasons. -@matthew_d_green *I* think it’s interesting - because you can become completely competent at C and never even know the stack exists -@gangstahugs I actually don’t keep logs. I’m being sarcastic :) -It’s in Sweden so the feds have to fill out *two* pages of paperwork if they want my irc logs of public channels #overkill -I got a virtual Linux server in Sweden with huge bandwidth and lots of ram. For my irssi. #overkill -@matthew_d_green orly -@ternus @csoandy @theladykathryn what?! I don’t get cake, no fair ! -@Dianora_1 reading the details, it still needs mowing, just not as often -@jack_daniel @maradydd \o/ -Why have bio-engineers not invented a grass that grows to the ideal length and then stops? What are you people doing -I just bought a fancy RaspPi magazine simply because it makes me happy to see Linux hobbyism rejuvenated. Will probably give it to a kid -And yes of course the certified sticker is a joke. It’d be cruel to make someone wear that unironically -This is taking a really long time can you tell http://t.co/9LvEhTs9DL -@The1TrueSean @WeldPond @Veracode I've only been here for a year and change! -@sneakin signal? what luxury -This is my build buddy, she waits with me patiently http://t.co/Fmk4Asf2BI -@solekiller our product! -@solekiller my local instance wasn't feeling very cooperative -@uppfinnarn @gsuberland heheh that may be slight overkill for what he meant :) -@uppfinnarn @gsuberland in general you shouldn't do recursion if it's gonna go really deep unless you have like, no local variables -@uppfinnarn you'll probably have to look it up in your OS documentation -@uppfinnarn in this case I was talking to someone targetting Wii and it turns out the stack is measured in tens of kilobytes haha -@uppfinnarn and modern compilers may try to warn you when they can detect that you're unambiguously going to blow it -@uppfinnarn it can cause bizarre memory corruption but if you're compiling against a modern x86/x64 the stack is fairly large -Q: How can I know when my C program is going to exhaust the stack? A: It's platform-dependent and arbitrary! Have fun. -@Manawyrm donno, but I have found a project that suits my ideal for the moment, if I need another I will check if audacity is native enough -@Manawyrm well, Firefox is a little too big for what I have in mind, but I assumed that it has a Unixy layer in there somewhere -Anyone who thinks the underlying stack implementation of C "doesn't matter" has never caused memory corruption with a huge local array :) -Let's see if the online instance or my local instance completes the scan faster! ... Assert failed: foo > bar #storyofmylife -The other half of my life is waiting for a mysterious cloud server to agree that my uploaded executable is valid -@whitequark that's about half the company :p -@whitequark the point/joke is that I have Visual Studio and I need the exes it produces to work to do my job so it's exempted. -Don't tell the APT, but there's a backdoor for running unsigned code on our machines: bring your own source and compile it on the spot -@deathtolamo thanks this actually looks like a good fit for the sort of program I was looking for -@WyattEpp ........ KDE? -@bhelyer I... doubt that. -@comex I'm not contesting that ! I'm just asking for some names. Chrome is no good though, too big for my purpose -Hey you - name me an open source C/C++ project that comes with Visual Studio build support out of box (no Cygwin, no mingw) -@comex also people are always like "offer solutions that aren't absolutist impositions of your will!" -@comex for definitions of "little fallout" that include every corporate network in the world pushing the settings to re-enable -@comex trying to go for a solution that might be at least hypothetically doable in under five years! -Disagree with this post: solution is not to stop signing stuff but to get Java to stop conflating stuff https://t.co/Kijq8D8cco -"Customers who bought items in your recent history also bought: US Flag Tactical Patch, Black" well that's embarrassing -@lakofsth man little endian can diaf -My lucky number other than my entire name. The IPv4 version of my handle is off in corporate-allocated space, tragically. -Woo! I got a dinky VPS with a static IP and one of the octets is my lucky number! #superstitiouscomputing -The fact that glitches are inevitable is itself reason that software should never auto-text more than one number per event, @path … -@gsuberland there is a notable difference, I just felt like the way I said it would make more sense to the average modern gamer -That’s two people who objected to me casually calling SRAM flash so I am required by the twitter cabal to inform you I was too casual -There’s an old CRT in this office with a suspiciously Tetris-shaped burn in. -@chriseng mine still worked last time I plugged it in. So does my Pokemon cart which isn’t too much younger. -@0x17h then later ones got fancy with added registers, clocks that raise interrupts… -@0x17h basically they’re just microcontrollers that switch out what ROM on the cartridge is mapped into the console’s address space -@21lettere well, we stripped off the metal casing, but other than that… -@kherge http://t.co/YfQo6SBI8x -My Nintendo actually looks pretty different as I have the late top-loading model that looks like a Super Nintendo. -A non-blurry view of the whole board - you can absolutely see it was assembled by hand, especially in upper left http://t.co/67YRcae1E7 -The first home video game with a permanent save file - The Legend of Zelda. MMC1 with battery-powered flash storage http://t.co/Q26CWcVmQB -A more serious picture http://t.co/DrWPbqYkbH -NES photo op! http://t.co/9NVbJMN9Jn -@n4j value range analysis in c by axel Simon -Last week I covered the software of Nintendo carts, this week @CaucusRacer does the hardware -@kragen … and I’m one of the only people who’s looking at older entries on a frequent basis. -@kragen many gigabytes per day. We’re not a storage company, we don’t buy terabyte drives in bulk… -@kragen in practice it doesn’t take more than a few minutes when I need one regenerated, it’s just a task flow interruption… -@kragen we generate many gigabytes of character search data and delete ones that haven’t been accessed in a while for basic cost reasons -@Neostrategos @chadwik66 as long as “I hate it!” counts as constructive criticism ;) -@arcticf0x thank you, every now and then I get in the mood to redesign it :) -@chadwik66 I am both ! -@chadwik66 where’s mine?! :( -Production servers “should be” running tripwire-like tools, but there’s no point in being surprised that most don’t. (Re: Apache hacks) -A significant portion of my life is waiting for databases to regenerate discarded character indexes for text search -@tufts_cs_mchow @chriseng nope, I lack the manual dexterity to be a motherboard junky. It’s @CaucusRacer -@chriseng I have an incredibly vague memory of my father’s original Nintendo but “my” Nintendo was a top loader #young -To my astonishment that wolfram alpha image isn’t fake. Life is now much better -@chpwn @comex whaaaaat no one informed me 🎂 -@ternus \o/ let’s have a radio disco party -@Theremina @ioerror out of curiosity y’all realized this is dated 2011 right -@DarrenPMeyer huh… they didn’t have that when I needed them! -@DarrenPMeyer afaik there is no amazon basics lightning cable? That one is fraying too. -Oh look another super overpriced apple cable fraying at the base of the connector which I’ve never seen any other USB cable do -@eevee I’m crying IRL for Styx. Your enthusiasm for him made me totally reconsider my opinion of hairless cats. -@kaepora always knew those Geniuses were useless -Neuroscientists: binaural brainwave players: vaguely scientific or pure placebo effect? -@gsuberland it’s an :o face -@gsuberland 😮 -@landley well, I’m not about to spend the next month of my life hex editing the app to save to local storage -@smeerp I wish one could flag a tweet as “question answered thanks” -@fuzztester that’s not how you twitter ;) -@thorsheim I work with highly sensitive customer 0days on a daily basis, I can’t be dumping my notes to cloud servers -There are a lot of cool little note apps and whatnot that I would totally use if *they didn’t have cloud storage you can’t turn off* -@bpblack I was being slightly sarcastic ;) -@ternus oops, hang on, thought I turned that off -@csoandy @ternus be a pal and help me fill in some words in this recording where it didn’t come through clearly -@ternus @csoandy is it a wireless mic by any chance? :3 -@colinmeloy @JennyMcCarthy @hypatiadotca I’m fluoride free for non-crazy medical reasons - but I get cavities like crazy. Go team fluoride! -My avatar apparently polls very highly with the “twelve and under” constituency -@AtheistLoki for the record I’m not in the habit of attending events which are targeted specifically at my gender though -@AtheistLoki yes but sometimes it’s “a problem caused by a few jerks” and sometimes it’s “institutionalized prejudice” -@AtheistLoki the bitterness may occasionally leak. -@AtheistLoki my entire life story has been that of being pressured to “tone down” or outright conceal my gender if I want to be “accepted” -@AtheistLoki my entire life story has been that of being pressured to “tone down” or outright conceal my gender if I want to be “accepted” -@AtheistLoki ever been a woman at a predominantly male conference? Ever been told to stop dressing/talking like a girl because it’s weird -@AtheistLoki that there’s no such thing as predominantly male conferences? Sarcasm Town. -@nickm_tor @addelindh @csoandy http://t.co/Qr0or7Hxv0 -@attritionorg @joshcorman he has a bit of a badger cut to his jib -@addelindh @csoandy anonymous remailer server. They want the logs so of course they just seize the machine. -@ternus situational irony, get with the times -@csoandy I’m referring to email servers being seized because of a bomb threat sent to a university -@ternus @timapril why would you do that -Sounds like it’s a generational thing re: calling in bombs. Modern terrorists have no manners. -I’m being flooded with answers that the IRA does this. I’m clearly Irish by blood only. -@PwnieExpress you know… posting bitly links with no context makes you look owned. -Has there ever been a “bomb threat” which was followed up with an actual bomb? -@comex America is definitely not the worst country on the internet but don’t fall into complacency 😤 -@comex they’ve granted retroactive immunity to companies that facilitated illegal wiretapping, etc -@comex yeah except they’re just going to try and try and try again with slightly different bills broken into smaller pieces -@mescyn Iran ****** -@mescyn especially since Google started pushing the concept of pinning after Iraq tried something like this -@mescyn they probably do, but you can’t just arbitrarily replace Verisign and Thawte certs of major sites and expect to not get caught -@comex we don’t drop or alter packets but crossing boundaries is considered fair game for spying -@comex I count the US as a censorship country, just not nearly as far gone as obvious candidates like China and Iran -@vogon I’m talking about ways to arrest an unpopular-with-government person on a technicality -@vogon you’ve seen the proposals to start taxing it right? But I’m bit talking about caring about bitcoin itself -The fact that arbitrary stuff can be encoded into blockchain is just begging for a censoring gov to arrest bitcoin users for distributing CP -@techbytom it’s a (non-scientific) poll, not a statistic :) -@pzmyers @AtheistLoki gosh, a conference where most attendees are men or pressured to act more mannish to fit in? Unheard of! -@maradydd @travisgoodspeed in the mean time it’s a glaring attack vector to enable governments to nab people on a technicality -@techbytom but that’s what’s on the table - possibility of legal repercussions/fines for failure to facilitate wiretap. -We’re not as collectively trusting as it may seem sometimes http://t.co/XraCBULdo2 -@travisgoodspeed did I not forecast this a couple days ago? Could there be ANY other outcome… -In this RT of @angealbertini: arbitrary code execution in Super Mario by causing jump to controller input ram. Spell shellcode on controller -@benmmurphy @qnrq if it’s true I’m assuming they obtained the key by meta means (camera, rubber hose) -Does the FBI want to a) de-SSL everything and enable fraud/identity theft or b) everyone surrender their SSL cert to them, to Fight Evil! -.@textfiles I talked to a young lady yesterday who didn’t know about <blink>. Time heals all wounds -Waiting for the “citation needed” info on how it was allegedly decrypted // @qnrq -@thegrugq @jvanegue assuming you had the honor to do it yourself, I think I could take you -Something seemed a bit… off over in the research cubes. I finally realized someone had opened the blinds. -(See http://t.co/3C6Io4VD83 for long form example) -Reminder that most devices will auto-join mystery wifis if they have the same name as an open wifi you’ve joined before, like “Apple Demo” -For the record whoever called me my irl name on reddit did go back and edit it so I guess they weren’t trying to be creepy on purpose -Perhaps dl-all should be renamed z-dl-all to prevent autocomplete disasters -What’s the polite way to tell @The1TrueSean he spammed the company-wide mailing list instead of his team -@egyp7 we need to find a “Deejay MZ” -@matthew_d_green @csoghoian but I can only weep sarcastically -Dell driver download infected with non-working malware http://t.co/zN3p7iorHH -@csoghoian @matthew_d_green how I weep for them -@thegrugq @jvanegue don’t act like you wouldn't -Forgot my bag with my RFID badge, my RSA token, and my lactose tablets #monday -@pod2g nope it was about a psycho hobo lady holding me captive as her "daughter" -@sneakin everyone should play Skyrim! Just don't say "I looked up a borderline exploit to get perfect gear and this game is too easy" -Nothing like an incredibly vivid nightmare to start the day -@no_structure I’d like to think this is a current screenshot, and it thinks you want those guys so bad you’ll buy a 2008 calendar to get em. -A lot of people say Skyrim is too easy but then it usually turns out they metagamed it to hell and looked stuff up -@no_structure ever see that Onion on how a woman has a better relationship with amazon than her husband -@0x17h I am professionally restrained from commenting -@_wirepair my gods they could not have implemented this any worse. If(operating system agrees this parses as a path) it’s a valid log file; -@_wirepair nope it’s totally Java -Yes, HTML-escape that request parameter - it’s now safe to use as a filename! #latenightauditing -@m1sp humans! Send distraction -@m1sp halp -@quephird there's no off switch for cool 😎 -My apartment building has bricks that stick out at regular intervals, apparently so thieves can climb up to windows. -@MarioVilas so I just noticed your name in this code... -.@glyph ah, I found the problem: # by 0xabad1dea 2013 -@glyph gremlins. Gremlins everywhere. -@ColinTheMathmo a parser called pefile... first I wasted a lot of time trying to 2to3ify it.. gave up... random errors... now it works. -@ColinTheMathmo well for the record, my program is literally *one line long* at the moment - all these problems have been peripheral. -@ColinTheMathmo also why do you assume I'm not trying to learn python -@ColinTheMathmo my problem isn't python. It's modules causing frustrating error messages when I try to import them. -.@MarioVilas oh, NOW it works. So you know what? I have no earthly idea what was causing the error. *headdesk* -@rantyben I'd be writing this in Ruby if I thought it were more practical... -.@MarioVilas "exe = pefile.PE("file.exe")" does not work, "pe = pefile.PE("file.exe")" does... it is beyond my mortal ken why. -@chriseng libraries... -omfg python why does the success of finding the class hinge on what I name the variable I assign it to this is terrible -Looks like I may have to give up on Python 3 entirely and use Python 2. Come *on*. -@Brian_Sniffen nope, uninteresting to me :p -@yacCz however it wants? Any internally consistent behavior is fine... I just don't want a hard error for a pedantic warning. -TabError: inconsistent use of tabs and spaces in indentation - Python it's really astounding you think igaf -I'm so glad 2to3.py doesn't rewrite string.lowercase to string.ascii_lowercase, it really improves my day to do it by hand. -@cirdan12 false analogy -Did... did http://t.co/LlsbqQGXEE remove the ability to star a project? In favor of +1'ing I assume? -@Brian_Sniffen one run would be one correct answer! This is the difference between programmers and mathematicians ;) -From the same blog, I’m amused at how different my method to get the same answer would be (just run the simulation) http://t.co/QIyxbkqGyS -(I’m not asking for a comparison of different voting methodologies, I’m complaining I don’t like our methodology) -I really like this quote on pure vs applied math http://t.co/JEI2EJ3GoY -@dildog I tried but SOMEONE @chriseng wouldn’t let me go with him -@fuzztester the name really doesn’t match the features -So how come a little place like Iceland can elect senators from all sorts of parties but in the US it’s almost impossible -@Neostrategos @veracode are you aware that the twitter account is reposting old blogs -@ores pretty sure that’s the weather and fresh food… not the censorship -It frightens me to see places like Cuba be completely black on an internet population map. So many people, so close to here. -Cinderella: getting skinnier, blonder, and kind of creepy http://t.co/zkWADVPA2r -@snare well then why would I err she consider you! -@fuzztester you need marking up of the sort that Preview doesn’t support? -@jeb_ where can I get that NES shirt -@snare just offer her some 0day -@silvexis ask Python! -from __future__ import hindsight -@savagejen it failed, I am so the opposite of attracted to him -@comex @justinschuh you have a big fan in @a_greenberg -@nickm_tor I like them, but I no longer have the time / social energy -@blowdart if you classify “the encryption premise of this app is freaking stupid” as a vuln, I can hand you several right now… -@Kufat also, perfect score on the linguistic side of the SATs made my score very high despite so-so math scored -@Kufat by graduating high school? -.@Kufat I was constantly on the verge of failing math from 2nd grade on. It was never presented in a way that made sense to me. -@kebesays not my fault you’re old! But it was a third-hand pentium 2 :p -@SarahPalinUSA you’re right I can respect the hard work of being a governor OH WAIT -@bobpoekert ha! As if we had fancy calculators. -@PresidentHoodie … you’re too old for me to follow D: -9th grade me, it’s me from the future! Here is a copy of SymPy and the documentation. It’ll run slow on that laptop but you’ll pass algebra. -@ternus ah, sometimes I forget I have an exploit in their manners parser; they would never hit a lady, which I can successfully front as. -@ternus tell ‘em to go back to the ‘federacy because we don’t want their kind here and watch their cognances dissonate -@ternus uhh what state was this in again? -@dguido favor to their most frequent customer - me -@ternus grats -@savagejen now that would be quite the plot twist -@DrPizza my cat (who now lives with my mother) generally hates being touched. -@lukegb that's the point! -@geekable You can even play fort mode, retire your fort, start adventure mode and go plunder it -@Saturn500Jared I play far too slowly to livestream. I'm often doing other things at the same time. -@geekable there's adventure mode which plays like nethack except across a world with towns and npcs who might come with you as meat shields -Hmm... next time I play DF, I should make a tumblr for liveblogging it, to avoid generating ten thousand tweets about wooden artifacts -@theROPfather nope -There outta be a law against "shuffle mode" in music players that doesn't remember what nodes it's already visited -@garlimidon I suspect you're biased ;) actually I like Fire Emblem, but I'm not very good at it. -@sergeybratus haven't heard of it actually -And I love games like Dwarf Fortress because the complex simulation interacts with imagination to create rich narrative on the fly -@sergeybratus however, the puzzles themselves did not really hold my attention, though I recall trying to brute force a few. -@sergeybratus Myst has a narrative - I was 7yo the last time I played it but I remember the letter to Catherine clearly. -I've never enjoyed puzzle games, board games, and card games, as they generally lack narrative/character with motivation -@DanielFairchild that's the joke ;) this thing is terrible. -@LowestCommonDen and the 10s. -@themarkcaudill alternatively, look at a block of text and partially cross your eyes, letters that stand out need work. -@themarkcaudill did you try adjusting the spacing (don't be afraid to put the edges of letters over the left baseline) -"Stop looking at platonic solids and order our food!" -Trying to order Japanese food devolved into looking up proofs concerning n-sided dice #geekhouse -@hypatiadotca without looking, I think they're inserting bytes between ascii-range ones to bump up to the Chinese UTF8 range. -public const string ApplicationPassword = "SecurePasswordManager_MDiTullio_800706"; no-one will ever guess it, don't worry. -"Encrypt is an application for encrypting an unicode string to Chinese, in which others can seldom get the correct meaning" sigh -@sakjur let me know if any of them look bad -"MD5 Encoder is an application wich encode the text you need to encrypt with the MD5 algorithm." We have a winner, everyone go home -I've heard "gonna forge your signature" from several people but my "real" handwriting is not very font-friendly. -@Strongdave depends on the definition of "precious" you suppose me to be using :) -@lukegb I have genuinely never once seen a font that exhibits the procedural characteristics of my handwriting -@CafieroCarlo http://t.co/C51mR8ljMj but the joke was malicious TTF files -@lukegb good luck, as I can't possibly express my actual handwriting in TTF -Oh these apps in the security section of the Windows 8 store are just precious -So how many of you installed my handwriting TTF? No reason just wondering. 😇 -Apparently Norton has a free app that will scan my twitter timeline for malicious links. Joke's on them I distribute these on purpose! -I'm installing a free Windows 8 password manager that uses unspecified "best encryption techniques". We shall see... -@verticalblank my brother and husband are perplexed why I refuse to play it anymore frankly a decade of losing is sour... -@verticalblank it's balanced towards something I don't have because I have never once in my life won Mario Party -@_booto ... why? You're just trying to drag an analogy too far... -@_booto three strikes does not end the game, it ends the turn -@_booto but my point is that a lot of early games were designed for maximum quarter expenditure not maximum enjoyment -@_booto I can't think of any outside of permadeath a la D&D which is "gritty realism" -(Or used to cover up the fact that the game itself was about an hour long.) -Games are "too easy" these days because they give you infinite lives? Finite lives was an invention for pay-per-play arcade games, you know. -@rantyben @cyclerunner @ErrataRob I'm glad this resolved itself while I was busy watching Mario Party videos. -@_larry0 @spacerog as long as it’s one of those camps with electrical hookups! Magfest did this and it was a lot of fun -@da_667 if so, only to avoid having to write correct AI for so many different games… -Watching more “Luigi Does Nothing” videos, my negative feelings towards Mario Party are confirmed. Too many minigames not enough playtesting -@ternus jay-z just how far did you go -@justinschuh you be good to him! -@wimremes wasn’t me! -@_____C oh, you misunderstand - there’s no such thing as a minimum wage programmer afaik. I’m talking threat model. -@_____C on the whole they’re not familiar with words like “misgendering” so I wouldn’t interpret that as a literal quote ;) -@_____C anyway it’s 2am and I’ve reached my burnout point :) -@_____C they’re people who went out of their way to tell me to be quiet and take being misgendered like a man. I don’t owe politeness -@_____C they’re not my friends, I don’t have to handle their feelings delicately -@pokemon_ebooks does Johto have no laws on tampering with historical artifacts? -@_____C this whole thing was in *response* to people so I didn’t have to address them all individually. -@_____C I did try to mention repeatedly that it's subconscious / unintentional most of the time. But that doesn't make it okay. -@grp just as long as you don't species-deny any craftsquid. -@grey_area those are quirks rather than underlying grammar. It's not a parse error to call a boat an it. -Have you ever got into a flamewar & thought "I am glad so-and-so is asleep and I hope they have the good sense not to revive this tomorrow" -Have you ever got into a flamewar & thought "I am glad so-and-so is asleep and I hope they have the good sense not to revive this tomorrow" -@bobpoekert @bhelyer now there is a tweet I can get behind, regardless of context. -@comex of course it's silly, I'm just trying to drive the point home -@comex if I ever need a cool lady to hire as an iOS hackette, I'll let you know, ma'am. -@comex way to be an ally -@comex it's your convenience to feel that way... as it doesn't really affect you. -@comex because it feels like they couldn't waste the nanoseconds it would take to use inclusive language because who cares right -@comex what do you say to the idea that I really am personally offended when I look at a job opening I'm interested in and I see "he"? -@tanonev officer? idk I have mixed feelings on them to begin with -@comex I'm not sure if you're using "that" to mean "I think that" "tumblr is stupid" or "I think this particular tumblr" "is stupid" -- ah -@segfault314 the "radical" may or may not be dripping with sarcasm -@bhelyer Sense of "adult male" is late (c.1000); <-- over a thousand years ago is a definition of "late *early* English" :) -Dumped my radical feminism output to tumblr. http://t.co/mByfOV81cZ -@Netbus @comex he's younger than me! D: -@mc_skifter way to be a total craftsjerk. What? It's not an insult. Disassociate "jerk" from insult. -@mc_skifter please show me the craftscats and the craftsgiraffes -@jesster_king dude! An interjection is when you just randomly, like, use a word for emphasis! Whoa! -@jesster_king dude, sometimes it's like, an interjection, man! -"Welcome to the Space Jam, thus saith the LORD. Hey you whacha gonna do I sent the sword I sent the horde" http://t.co/8JWGEERsCT -@benwmaddox other people have asked me the same question and it seems to come down to "not really". -@tufts_cs_mchow @523 yup -@ErrataRob it's a) a huge portion of repliers b) making fun of someone without attribution does not imply making fun of EVERYONE. -@longobord @maradydd @sergeybratus then you use it as an adjective, a fellow person, and, more subjectively, "engineering fellows" or w/e -@ErrataRob I'm just repeating the mansplainers :) -@longobord @maradydd @sergeybratus "guy" is kind of like "fellow" in that respect -So, "craftsman" is gender-neutral because a) historically all-male academic organizations say so b) it's shorter. Good to know. -Where's my radical feminist badge huh -@miuaf I just figured you were a meowth with a lisp. -@TomSellers @csoandy I weep for the loss of manly concision. How I long for the days when men were men and women were men 'cuz it's shorter! -@whyallthenoise --> @PwnieExpress -@sergeybratus I'm exempting non-native speakers from rigorous Not Offending Me, don't worry. -@ternus I'm definitely a downvote on "chick" but only because I usually only hear it used as "So some chick <something annoying>" -@ternus I also accept "girl" as I look/act/think quite young :p -@ternus I prefer to be referred to with terms such as seneschal and harbinger -Brilliant analogy via @miuaf whose handle I someday hope to learn to pronounce http://t.co/AJ2cJ4sUz2 -@miuaf @thegrugq oh bloody brilliant I was just trying to think of how to fit in an analogy like that into a tweet... -If you think man/guy/dude is not a gendered word, there's about a 99.95% chance it's your gender. -@thegrugq @Dan2552 what consensus? There's only consensus if you just ignore all the people complaining about being misgendered -@thegrugq um, okay, so? It isn't a word because of historical oppression of women seeking alternative employment to housewifery -@Dan2552 @thegrugq I mean would you be okay with just calling everyone a craftswoman and telling guys that's not gendered -@Dan2552 @thegrugq No offense but that's because craftsmen used to be all men and men often don't stop and think about the implications -.@thegrugq the point is people carelessly use gendered terms without considering how absurd it'd be to use the inversion. -@theROPfather my schools had men as teachers? But that's still misogyny if a man is shamed for acting womanly. -@send9 I prefer "they" but some people believe that English is in some kind of stasis and that's Bad Grammar. -http://t.co/fHcpOObDnX What it says on the tin -@vimdat ... there was ever a question it ran Android? -@Tomi_Tapio @BenLaurie except that’s so stunningly ineffective that you are just wasting everyone’s time and money -@grp it runs Android. It’s an Android product. And Android, like all operating systems, adds features, patches bugs, and improves snags. -@grp well, Google is pushing it as a flagship product so it’s embarrassing it’s two major releases behind -Why in the name of basic self-respect does Google Glass run 4.0.4? Do you see Microsoft shipping Surfaces running Vista? -@armcannon ahh, I knew a girl who had randomly found the actual record of that, and bought a record player for her dorm just for it… -@amanicdroid @0x17h that too. -@horse_js @eevee NSFW that stuff! -@amanicdroid @0x17h of course it’s horrible - he died. And he was framed. But most likely in that order. -@0x17h so almost certainly “reddit frames kid who is already dead” -@0x17h you know that when missing people are found dead they almost always died the first day they were missing right -The Adventures of Florida Man, @attritionorg edition http://t.co/4R67laCaXH -@savagejen that sounds more likely. But I suspect they’d still say you have to name some names… -@savagejen almost certainly rejected for being too broad. -Looks like Team Veracode's prize PwnPad has arrived http://t.co/cwUER9NDEk -@0x17h yup! -There are children dying of completely preventable diseases because their parents believe fake science http://t.co/Ibz75SxpRx -There are tinsel stars hanging from the ceiling in the kitchen #JavaIsDead -Spring.avi https://t.co/3GXPZMTzQr -@focalintent we… will… *educate* them. 😈 -@dildog actually yes, but for different reasons that will not fit in this margin -@dildog call graphs with more than a hundred distinct nodes in a linear chain, Mr. Pedantic -Sir put the single-line functions down and keep your deployment scripts where we can see them -I support mandatory counseling for any Java programmer who ships software with call stacks that can exceed 100 deep on the hot path -@indrora I was thinking more corporate spies. Can you lift a box? Have no felonies? Welcome aboard -@innismir I was more thinking "SQLi of internal database is one unskilled employment application and a felony check away" -@whitequark you're right... another fix coming XD -Working here I've learned: major corps that employ thousands of minimum wage workers have trivially SQL-injectable internal apps. -@GregStaskowski that's remarkably close actually... -I really wish I could tell you the silly codenames of programs submitted to us by major companies. -@dildog no way - I always want to know when I'm running something unsigned. -This "news" of a school that teaches ridiculous ideas about dinosaurs isn't news - I attended two of them http://t.co/xG3tYwx3LC -@k3v1n830 Touchscreen. Can't open snipping tool when UAC is up. -I ended up deleting the folders and leaving registry cruft rather than run an unsigned executable that claims to be from Oracle -So I tried to uninstall Java http://t.co/4nYVmnh6Cp -My handwriting font - kerning improved http://t.co/C51mR8ljMj -@amazingant yes actually! Thanks <3 -gtalk / google+: super unstable for everyone or just me (hold the snark please) -Of course, being able to use the platform on iPad would be more useful if the iPad didn’t need to unload webpages every time I switch apps -@rezeusor http://t.co/M45OCjmNyG -Ouch. Listening to the thotcon tweet stream, it sounds like Schneier has been sucked in to the “talks to govt weenies too often” zone -If you hear any figures about the average DDoS or DDoS trends, check how it’s counting the Spamhaus one. http://t.co/SSj8UcUTfl -@techbytom oh I assume it’s someone who follows me on Twitter. And a lot of people on /r/netsec know who each other are. But still. -Yeah you think you’re being cute calling me “Melissa” on /r/netsec but that’s just kind of creepy. Respect nyms. -@nickm_tor maybe, but I sure wouldn’t try! -@m1sp @fncombo getting a $10 external fan can be a lot cheaper and easier than trying to replace an ailing internal one, speaking from exp -@spacerog @attritionorg he doesn’t bring spare fur suits, does he? -@RSWestmoreland @Veracode HTML5 -Ding dong the witch is dead 🔔 The @Veracode platform is now completely Java-free and works on devices such as iPad. Rejoice! -The fact that it’s so hard to explain how to “use Twitter” that I say “buy Tweetbot, then it will be better” should shame Twitter UI team -@_wirepair I plan to wake up to Infosec Christmas -The “a” in my font is too wide, I will fix and re-upload tomorrow… -Is there a hair stylist shop named Dyer Straights? There had better be -@apblake @puellavulnerata I’m stealing this one -Remind me to read these slides on static analysis by @halvarflake in the morning https://t.co/AAvdlJ4Cz6 -In this RT: Tamerlan Tsarnaev referred to himself as a white guy, so can we please bury the “he’s not white bc he’s bad!” racism with him -@cji technically it stands for “regarding” -@jackjsnow @eevee it kills me when I see silent tweet appropriation... -@mikemackintosh surely there are ones with better kerning! But I don't care if someone uses it on their website if no money changes hands... -@dancapper yeah this is the first build, testing it now... and no, but I know I was taught "precursive" style when I was little -@_yossi_ that's my real handwriting! -I made a font of my handwriting, I think it came out pretty good. http://t.co/C51mR8ljMj -@vogon the system restore point was two days ago. Nothing was installed but Windows Defender definitions -@vogon um... if a metro app can completely break the Windows interface persistent across reboots, we have a bigger problem -Well my menus work again. And my stock trading game was blown away and my music player can't open -I'm doing a system restore. This is stupid. -@vogon err rather, yes the win key does what it usually does -@vogon everything else works. What is a winkey -- oh a win key. What am I supposed to do with it? -@vogon ... both? Everything you summon by swiping from an edge does not appear, persistent across reboot -tonight on Windows 8 Adventures: swiping to get system menu no longer works. -@stevecominski doesn't meet my security requirements (for when I do lock it 😉) -@stevecominski I refuse to use those actually! -I leave my Windows 8 tablet unlocked because no-one else knows how to use it -@chort0 I guess you can get use-after-free by wrapping to 1 and it deletes something with 257 references... -@Dan2552 a good virtual keyboard would let me set it to 75% width -@Dan2552 it's the travel, I believe they call it, that is the problem; I instinctively aim closer to the center than the outer keys are. -@waruikoohii yeah same here. It just started doing this ten minutes ago. -@Dan2552 the virtual keyboard on the tablet is too large for my hands and I mistype practically every other letter. -Windowshandwitingrecognitionhasdecideditdoesntbelieveinspacesanymore seriously come on -@glassresistor @evilbluechicken you don't "log in" with Twitter integration on iOS -@_printf I got mine from http://t.co/QxC49FMDg5 they're currently out of stock of the exact one I got though. -.@evilbluechicken the joke is I've seen several accounts "compromised" by their children posting achievements from tablet games recently -@chort0 the count++ wrap is real, there's also a matching count-- wrap afaict, which looks weird, like, they log it then let it wrap? -@feoh your geolocation on twitter is probably a little off then :) -Evidence is mounting that the greatest risk to infosec Twitter accounts is Angry Birds Threat. Chroot your children -@matthew_d_green do you… have… kids? -@chort0 hang on gonna go grab the source and just look at it... -@chort0 usually a scam would come with, like, a fake exploit? -@oh_rodr futurama-squint.jpg Not sure if they’re completely misunderstanding how this works… or I am -@chort0 I uh, did see a random nginx site that had apparently crashed a few minutes ago, but probably just chance… -@oh_rodr err… can’t log, or shouldn’t? -@chort0 what did I miss -@dildog @focalintent false: @focalintent has a stripe of red dye in his hair -@ternus confusing cause and effect! -@Jonimus WWDC tickets -Checking my twitter stream since lunch… and… wow there is every iOS developer I know rage quitting at the same time -Someone on Ars says Mt. Gox is faking the DDoS attacks… we’ve reached a new tier of conspiracy theory -@gozes value range analysis of c programs -@feoh I’m in (well technically very near) Boston too, I’m just upset that according to your metadata you’re on an island and I’m not D: -@dhicynic @_peterdn value range analysis of c programs by Axel Simon -@feoh you’re tweeting from one of those little islands? No fair. -I solved analysis! http://t.co/zvgr4gTCfU -@mister_borogove as in, I have played against humans who lost all 5 lives to getting caught under the stage as in the last clip. Stage wins. -@mister_borogove they did patch that up quite a bit in the sequel; but players do that a lot too on the stages they chose for the demo. -@mister_borogove and clearly, the AI is reactive, so the player is not giving it input and it just does whatever -@mister_borogove this game has been poked and prodded for a decade. They carefully aligned matches with specific variables to cause this -How on earth did "human resources" become the unironic, accepted term -@jesster_king you assume OP is a good man! -Hmm, I guess the "anonymous" complaints are routed through a third party who transcribes them - I guess that's close enough. -@invalidname @mojinations California? Never heard of it. -@mojinations this is about fraud etc. not harassment, actually - not that there's any incidents of such so far that I'm aware of -@Neostrategos consider if a man with a swoon-worthy Polish accent filed a tip... -@mojinations guess I'm a stickler for "anonymous" in the cryptographically secure sense -Anyone see a problem with an "anonymous concern phone number" for a company with <= 200 employees? -The only winning move is not to play, because the AI gets really confused when you stand still. http://t.co/Cv8ZXEp4i7 -Awesome honeypotting: skiddies enter their real details if you reject the first few attempts at account registration http://t.co/zx4kyOQxEV -Ropasaurus Rex https://t.co/vul1sxU84N -Dancing on the ethical line, re-hacking a compromised server to change the phisher’s password… http://t.co/35P5JOzmZf -@boblord you’re on the lam, that’s my story and I’m sticking to it -Well @boblord favorited my tweet so I guess he’s on the lam -@wookiee \o/ -everyone hack twitter while @boblord is in jail -I like how the TSA decorates every mention of their pre check thing with (TM) - because making people beg to keep shoes on is a trade? -@savagejen ahh a fellow infosexual -@puellavulnerata if there’s anything it doesn’t make sense to regulate it’s water that fell from the sky… -@mike_br @trap0xf hey!!! -@DarrenPMeyer I always use avatars showing cartoon girls. Widely assumed to be portraying my waifu -@DarrenPMeyer I always use avatars showing cartoon girls. Widely assumed to be portraying my waifu -@TheDaveCA nope he's gay -@raudelmil six bitcoins! -@blowdart I don't say it THAT much! -@deepthoughts10 @netbus @mikko the whole system is actually a complete train wreck that's massively insecure -@ternus no he's gay -I'm kind of freaked out by Windows 8's auto suggest. I type "he is" it pops up "bisexual" -@deepthoughts10 @netbus @mikko one's a company that needs customers to trust them, the other is a government... bit different -@puellavulnerata oh oh pwn Java harder -@corpsefilth ... yes -@jesster_king I don't think me throwing around a couple hundred dollars would have a noticeable impact -I'm coming out of the networking closet. I'm infosec-sexual. Infosexual? -Who puts coconut in a carrot cake this is an outrage I will take this all the way to the Supreme Court -@ternus tell @nelhage we were joking about opsec so I sound less creepy -@Netbus yes that, they could ie pretend to be Google or a bank. Not that they would do that as people would find out and be furious -@ternus thanks for info leak -@Netbus @mikko no it means they can issue certificates for any website and the phone will accept it -@BadAstronomer it’s the new tweetbot, check from web interface -@Paucis__Verbis how did you get a photo of my room -@spacerog well if iMessage was selling decrypted messages and we didn’t know, I don’t think local bars would be on that list :) -@jesster_king one wandered across the book I was highlighting. I didn’t actually touch it though. -@xa329 that’s not a particularly large portion of my demographic. But they called me “this guy” in this case… -@spacerog did you 4square check in or anything? -@twatterspam the good news is that the HTML5 rewrite goes live... tomorrow night. -@twatterspam I'm a user of the app, not a producer. The app predates HTML5 as a real platform significantly. -@savagejen @Neostrategos Activision -@akopa yeah - my favorite color is orange but I end up painting everything pink -@savagejen @Neostrategos it's basically Pokemon but you need actual figurines. What a scam huh -@savagejen @Neostrategos they're called Skylanders, you put them on a base and they communicate with a video game -@savagejen @Neostrategos but they're more sophisticated than just being rfid -@savagejen @Neostrategos actually, if there was an easy way to forge the little chips in their base, he totally would -@secmoose figured I better mess around with pretend money first as I have no idea what I'm doing -There is a child I don't recognize on my patio. He just gave me the "shush" sign. Hiding in other people's yards is cheating, kid! -Thinking about playing a stock market simulator - who wants to bet I'll make a pretend million dollars that could have been real :p -"Isn't the entire German language about pleasure in the suffering of others?" - @codeferret_ -@thegrugq 😐 -@alethenorio keep reading - but that's not the name of my twitter account! -@blaufish_ actually I asked because I had a compulsion to paint the ant on my desk pink but I didn't want to put it in the ant hospital -Are pink highlighter pens toxic to ants? I ask because reasons -@kilophoton it has a section near the beginning which lists a bunch of terms it will be using and you can google them if you need more info -@kilophoton I read it when I was 17 and mostly got it - it covers probability from scratch. -I need to reread "Modern Cryptography Theory and Practice" by Wenbo Mao which actually taught me all the college math I know. -@d0tslash <3 -@waruikoohii for certain values of 'prevents'! -@blowdart http://t.co/hUIPzoqzwf -@codeferret_ I never implied any such thing! -@d0tslash weird - http://t.co/hUIPzoqzwf -It wants me to install Firefox 3.5 because it thinks IE10 can't render static HTML4. Is this TCP over time travel? -I'd like to thank the self-righteous webpage admin who thought I shouldn't be allowed to see plain HTML if I'm using IE. IE10, mind. -@d0tslash can someone tell them their browser detection is broken please? It won't show me the site -@Neostrategos I tried to warn my husband this is like buying crack when pixie stix would do, but did he listen… :p -@sleepydashie they’re my husband’s and our housemate’s :) -Guess how many children live in this house http://t.co/CDOU09eDYS -What's the CWE number for "you employed a computer-illiterate programmer" category of bugs -On days like this, I wish I had a button to demand the customer do a full review of whatever programmer wrote the line I'm gawking at -@whitequark so when I hear “I don’t know any girls who are good at computers” followed by being called a boy, you see why I’m upset -@whitequark (the literal meaning is to paint a naturally brown fence white, we use it idiomatically a lot) -@whitequark in this context I meant ignoring non-white contributors to history or portraying them as white (ie Jesus) -@mescyn @Neostrategos not a lot of comments on those; it was my Nexus 7 video -@nelhage I decided I don’t like being called a boy more than I don’t like being called a slut or whatever. -@whitequark especially since I’m a minority in my field, it feels like the gendered version of white washing. -@whitequark imagine if people constantly addressed you as ma’am and lady and little girl. I’m assuming you’re not gender fluid. -I need to get the NES video from @Neostrategos so I can have something on my YouTube where not one single person will call me a guy -@silentbicycle demoing a nexus 7 booting straight to Ubuntu desktop -@DrewFitz hmm, well, that's trans-denying, but I am in fact cis. -Five months later I am still getting comments on my Nexus 7 video... referring to me as a guy. WHAT DOES IT TAKE, PEOPLE -@GeeckoDev @nrr oh gods I had to explain so many times when Vista came out concerning essentially the same thing -@chriseng good thing too because Java <--> our app is currently COMPLETELY BROKEN -I actually like Windows 8's monotone vector emoji better than iOS's bitmap color fest 😎 -@iJamieH you're missing Unicode emoticons -Some little birdies have told me that I won't need Java to do my job anymore as soon as tomorrow night. The gods are real 🎊🎉🎈🎆 -You know what's a weird word? Free. Freeeeeeee. I'm checking several hundred calls to free() and it will never look right again -If we’ve learned anything it’s that ad hoc blacklisting for important security purposes is a really really bad idea -Apparently wp-super-cache has NOT actually fixed the RCE vuln but has just slapped some string blacklisting on. Good job, that’ll hold. -@ternus implying that if I google-stalk long enough I can find pics of you with a ponytail? -@ternus collars. Short hair. Polite manner. Pretty weird, dude -@ternus also did you know you look like a government kid -@ternus I am super sketchy. I am defined by many short overlapping lines -@ternus yes there is nothing typical about that childhood btw did I tell you about the time the Foreign Service didn’t hire me -@ternus rural children have much more free reign. Suburban parents are typically disproportionately paranoid, using urban as their model. -@ternus I think you’ll find a strong correlation with urban, suburban, rural. -@WeldPond @spacerog @dildog @dotMudge way to kill the joke, boss -@ternus I wasn’t allowed to play outside all alone until I was 14… -Hooray tweets are showing up on my phone that aren’t showing up on my iPad. Ffffff. -I have been acknowledged as new leader of l0pht by @spacerog, just so you know @WeldPond @dildog @dotMudge -@spacerog @tmichaels1 motion seconded. Everyone knows I staged a takeover of the l0pht already. -Don’t call the person arrested in Australia “the lulzsec leader” as no one has ever heard of him. Just a pretension of his. -@0x8badfl00d not much ;( -@octal @hypatiadotca @thegrugq the human race depends on women weighing their chances with this… -@thegrugq it’s not my fault you’re the only one awake -Don’t after-midnight DM @thegrugq for advice on boys as he apparently doesn’t know -@Cocoanetics well I don’t do the swirly thing then. But it was the stylus - grabbed its buddy and it started working again. -@Cocoanetics http://t.co/Hjvcai06Bo -@thegrugq @DogeMocenigo the grugq is just trying to deflect rumors that I broke up with ionic for him -@grp … eww -@thegrugq I don’t get it. I really don’t. It’s a toss up between being thankful they’re so stupid and wondering if stupid is a prerequisite -@Hyder_Khan @RichardBarrell I don’t have “issues” with being a woman and I think you’re reading a little much into it :) -@egeektronic @mrkoot this is glorious -@Hyder_Khan @RichardBarrell … you’re kind of getting on my nerves a little bit… -@CyborgCode there is not that much math in most CS programs - mostly set theory which I thought isn’t that hard -@xabean @Forensication Find a cake place closer to Boston and we’ll talk ;) -@FatherMcGruder @matthew_d_green if you have a 100% accurate and automatic means to detect porn, you’re a millionaire -@CyborgCode I have a computer science degree. The field is far too young to have such specialized degrees -You might be a static analysis researcher if you consider the word “valgrind” an insult -Capture the flag: submitting malicious pcaps to Virus Total edition -@no_structure @strmpnk oh, I forgot, you’re in undergrad so you don’t count. -@strmpnk @no_structure the joke is we’re static analysts and “running” programs is for babies :p -@thegrugq 🇺🇸 I love America -Have the Homeland Security club updated their twitter keywords to include the bomb emoji? 💣 Can’t let that under the radar -@thegrugq I think you’re reading too much into my tweets 💣 -@thegrugq I never said that. I said no jury would convict me of something unspecified. 🔪 -@no_structure @strmpnk valgrind? VALGRIND? Sir what kind of researchers do you take us for -The willingness of people to make threats of bodily harm online never ceases to amaze me. As if it “doesn’t count” somehow. -@comex you should indeed do it now ! -@comex whaaaaat -I drew a comic about the internet http://t.co/VAW3S0Vtj3 -… I say, considering whether bleeding out in a boat counted as a day off. Well, he wasn’t in class… -Don’t reward homophobic jerks with a day off! http://t.co/XfAqJ52cIA -@WyattEpp I don’t think anyone’s ever suggested ATI as a low-power graphics solution… -@savagejen well I missed entire eras and kids learning programming now missed some more by simple time physics :) -With computer people even an age difference of five years has a profound impact on formative experiences. Compare, say, pianists -@ternus @ra6bit *ahem* Lady Melizabeth. -Do other industries and arts constantly discuss among themselves how old practitioners are or just computer people -@ra6bit @ternus hang on I need to check if I’m even nine yet -@matthew_d_green even if, say, CP isn’t illegal per se, do we really want it inserted in stuff… -@chronic https://t.co/NyN8kZhzoG -@ra6bit @ternus 1992?! Jay-z you’re old. -@no_structure I um… hmm. -@ra6bit it ended up confusing people I do know… -@Walshman23 my name is a bad idea! -Did twitter seriously just filter my beautiful emoji hearts out of my new bio -@thegrugq no jury would convict me 👊 -The main reason I give my IRL name on twitter is that I hate being misgendered even more than I hate being called that name online. -Just read a good point I hadn’t thought of - it’d be cheaper for Intel to prop up AMD than to deal with monopoly regulation hell. -@themarkcaudill hahaha -@themarkcaudill it’s very rare that someone calls me by the given IRL name and I don’t know them - often in an insulting context. -@themarkcaudill well consider this, Mark. Didn’t I already lead this tweet with your name o_O -@dave_newton I think I hate you, Charlotte. -@snare American. Try and keep up. -@snare sir this is America and you just confessed to terrorism. Or invading a country for their oil -@maradydd @matthew_d_green @travisgoodspeed @dakami I may have missed where this originated, just heard block chain wiki bla bla -@matthew_d_green — is a vulnerability in a world where some types of data is illegal -@matthew_d_green am I the only one who thinks the ability to incorporate arbitrary data into something everyone must download — -@ternus I love people taking pictures of me that don’t catch my chin at a bad angle. -@QuantumG @bpblack @focalintent you know the original context was people dying in a factory explosion right >_> -@johnrobb @puellavulnerata actually do you have a link for this -@johnrobb @puellavulnerata until someone starts inserting hundreds of megabytes of CP… -@thegrugq thanks, you were a big help -@RichardBarrell it’s just that people have a habit of busting out “Melissa” when they are talking down to me because I am Small And Fragile -@RichardBarrell on the contrary I hear that more than my real name these days :p -@chriseng @thegrugq I think I’ll take it easy tomorrow morning in your honor, roll in around 11… -@vogon I only even consciously saw a few digits lol -@vogon yes but not on paperwork -If you address a tweet to me, what to call me is already covered ;) -@iRonNCSU what did you just call me in that tweet? :) -So I’ve kind of got this thing about being called “Melissa” online by people I haven’t met. Just so everyone knows. It sounds patronizing. -@attritionorg please. Wookiee** -@MrToph because they couldn’t find it? You’re not a coworker -@ChuckBaggett @puellavulnerata but are the gun-toting pot farmers gay married -@DarrenPMeyer @manicode I’m confused that everyone assumes the multiple versions was on purpose on my friend’s part… it wasn’t. -.@ioerror is this the same Senator Graham who wanted an American citizen tried as an enemy combatant like just yesterday? -@ternus @abby_ebooks I'd like to think I sound slightly more coherent than that -I think my handwriting recognition is broken http://t.co/OR0f0nJk0E -Reporter ditches her own wedding to cover the Chinese earthquake http://t.co/4Wvw40iEKv -@bhelyer pretty much. Separate browser, only visit that site. Use VM/sandbox for bonus points -Scratch that, it works until I have the audacity to try and interact with it. -Java takes months to QA patches and we get owned; they patch in a timely fashion and apps break; we just can't win. Rotten foundations... -By some dark miracle I currently have said webapp working with an old Java... with IE. Countdown to disaster -@solak please tell me there's an instance I can access right now -@marshray @codeferret_ what where -@manicode 6502 assembly. -@UbikMan this isn't about cultural things I find stupid, math transcends that a bit :p -@manicode gods deliver us from being Java developers. -@hackedy corporate. Corporate customers. Requiring bleeding-edge Chrome doesn't really work. -@hackedy because it's more than a year old #html5isverynew -So guess what? The newest Java update breaks our webapp silently. "Oh yeah, found that out this morning" says my husband #thanks -So uh my coworker's computer is reporting different versions of Java in different places -@thomasbeagle I have no idea what that means so I'll just have to invade you now </american> -@miuaf @codeferret_ heheh well in this case it's proof that our "use after free" detection works ;) -@miuaf @codeferret_ heheh well in this case it's proof that our "use after free" detection works ;) -@thomasbeagle NZ has a population no bigger than a large city so I can totally see well-meaning legislators writing down ridiculous laws -@thomasbeagle still need to get ahold of the gov before they try to legislate something that can't work because they're naive about it -@polemic @TelecomNZ @yakmoose I'm betting whoever is discussing such possibilities is a nontechnical policy pencil-pusher -@polemic @TelecomNZ @yakmoose and mandating that every device in NZ accept some cert to MITM all comms would be... astounding. -@polemic @TelecomNZ @yakmoose yeah except you can't magically fake a valid cert without victim co-operation or corrupt registrar. -Hey govt of New Zealand: if you're short on subject matter experts, I'm available for the cost of plane + hotel to tell you why that's dumb -@DylanReeve @dancapper it can only work by consent (granted, the opt-out means you may not have internet at all, but still) -Um, does the government of New Zealand/@TelecomNZ have any idea how encryption works? You can’t legislate away math http://t.co/wZtjyW6poN -@dancapper um… what, exactly, is their plan for carrying this out? -@codeferret_ you don’t get how being Hermione works do you -@codeferret_ also that’s technically a method </CS Professor> -@codeferret_ I’m trying to imagine what would happen. Would probably work in a single-threaded app. Most of the time -@Tatoroh she sent me a text that she liked my post on tumblr :p -Code red code red my mother knows what tumblr is siren dot gif -@puellavulnerata the three letter agencies are full of people who dissent, they just can’t say so publicly until they cycle out to civilians -@onekade @puellavulnerata I’m kind of astounded there’s such a thing as a native Armenian convert to Islam, knowing their history. -@ShadowTodd well they both treat women as objects but the prior is more catchy :p -@vogon geez I’m not even sure anymore, her first name is Katie though, allegedly there were incidents with her and Tamerlan’s previous gf -@vogon I’m more sad that he beat his wife and she exhibits classic Stockholm symptoms, and that the kid seems dragged into it by big ideals -I’ve been reading all the “we knew them before they were terrorists” gossip and the picture it paints is so… sad. -Whoops I accidentally looked at the comments section apparently being able to afford to travel to Russia is inherently terroristy -@chunter16 Spotify could have registered itself to run next boot for whatever reason. -@chunter16 implying you didn’t already have spotify installed? -@profoundlypaige must be nice, all of mine dropped out to marry their youth pastor sweethearts or w/e -@eqe @ioerror I’m fainting. -@The1TrueSean for you? No. -@tapbot_paul it wiggled around to the next tweet up when I tried to tap away. That’s what you get for letting me use your software. -I have my own miniature booth babe right on my desk apparently http://t.co/8akugYJHhZ -@ternus well, they don’t sell plug and play seatbelts in various sizes at a Store Near You, so that’s a bit more severe. -@tapbot_paul just got the new version - what is this dot and why won’t it let me tap links? :( http://t.co/qucHMnXq1b -@ioerror do you intend for these to require signin? -Hey @cnn if @ap was compromised by phishing then there isn’t very much twitter could have realistically done to prevent that. -“My brother wanted to defend his religion from attack, that’s why he attacked peaceful civilians with no warning!” -.@wgragido because of the fake bombing news or…? -@panther_modern some Syrian gang is taking credit but just as likely they’re just skiddies trying to get free attention -@panther_modern I doubt it, as average time to detection of silent compromises is, like, months to over a year. -*sniffle* Why did @rantyben call me a thought leader? I thought we were friends! -Say, what’s your procedure for reacting to phishes sent to your people? Probably a good time to double-check. -@ra6bit @donicer wouldn’t walkie talkies work better anyway though? -@quine @rantyben @osxreverser yeah I like you too Zach. -@getwired @marshray someone from AP says there was a phishing incident one hour before the breach… -If it’s true that AP was targeted by a competent phishing attack, then that tweet probably had more intent behind it than lulz. -@rantyben @SamHananelAP ouch, now that was uncalled for! -@rantyben @SamHananelAP on that timescale that’s significant - extrapolate if news that it was a hack hadn’t gotten out quickly… -According to HuffPo, Texas has 10% of the dangerous chemical facilities and 50% of the evacuations and property damage resulting. Hmm. -@puellavulnerata well like I couldn’t remember the “C” in “MMC” and kept calling it whatever came to mind… -There’s apparently a video but I may just end up re-filming it myself for a more general audience… and because of embarrassing stutters XD -Successfully filled an hour with me explaining the Nintendo as I played it - here’s my lovely pirate cart art. http://t.co/JI2c5EoRdG -Veracode: come to Einstein room now for the lowdown on the greatest 8-bit computer of all time -Progress: “a country just legalized same-sex marriage” is not a jaw-dropping event but a casual high-five. Welcome to fabulous, France -@vogon — @DrPizza was also experiencing problems. Donno what your common factor is. -I’m surprised at the differences in how the nature of compromises varies depending on geographic region http://t.co/Qv5xGMGlZj -@dan_crowley @savagejen @integrisec — terrorism because it was an attack on the general public with no apparent connection to attackers. -@dan_crowley @savagejen @integrisec with ie school shootings the intent is usually revenge- even if they’re “crazy” I think this was still — -So is this pizza app for Xbox going after the demographic of people w/ debit cards who own video games but neither laptops nor smart phones -I’m kind of pleasantly surprised that a tumblr post about the lockdown not being as scary as the news made it seem got so much attention… -@RandomStep I’m assuming one of those is meant to be https -.@Neostrategos I just find the idea that the security industry grew more paranoid because of supposed ancient prophecy kind of insulting -@ID_AA_Carmack please do not take my monospace. But I review code in an editor that can set bold, italic, etc on syntax coloring -Apparently the full data breach incident report is out http://t.co/NacvYKaTpF but what’s with the Mayans reference first paragraph… -Some ideas for preventing crime other than throwing more cops at the problem http://t.co/xDOzNVr2on -@m1sp or stealing my trademarked squeal, that will be five cents per reference -@snare I’m pretty sure I can get your missile coordinates from somebody. -Got mentioned by a news blog so I’m expecting to hear from random people who may or may not have something to contribute all day -@maradydd @nickm_tor I have a twitter list of people I personally care about to read to completion when I’m short on time. -@skyeyemachine to the background color. And Zelda, to answer your other question -@DylanPaulMathis @pzmyers wow I have literally no idea where that topic came from or why you felt the need to tell me that okay bye bye now -@spacerog … I actually only know your first initial. -@DylanPaulMathis @pzmyers do you… what do… oh never mind, you’re in a bit too deep here to rescue with a tweet. -@dildog you would not believe how long I looked for the keyboard shortcut I believed must exist but I couldn’t find it -@thegrugq 8-Bit Terrorist is the name of my Team Rocket tribute band -@xabean No. Yes. Not that. -I don't know what I did but a bush just exploded like a block in Mario Bros 3 and left a hole -Made a super awesome surprise for tomorrow ;) I have a hex editor and I know how to use it -@lexikon1 my last name is Elliott -@attritionorg I never would have used txtspeak like that. Stop libeling me. -@attritionorg I'll slander u ! -@Mordicant Zelda -How am I supposed to be passive-aggressive if I can't add people who have blocked me to public lists with slanderous names -@redline6561 Zelda -@esacteksab bit late for that. -Apparently Dear Husband thought I was delusional about claiming to be good at video games until I destroyed him at Smash Bros -@thegmanehack I've been playing since I was three years old... -@0x00string okay now without the flute ;) -My shameful secret is that I am actually incredibly bad at Mario -@apiary the internet demands it's recorded -@artkiver @apiary our office -The Abadidea Effect strikes http://t.co/sIZu62A5nN -Since this is a security company I'll be sure to cover @nelhage's groundbreaking research into patching Mario vulns -That's right I'm going to be teaching the system architecture of the Nintendo while running head-first into goombas LIVE -@lexikon1 sure ~ -I'm practicing Super Mario for giving my lecture tomorrow noooooo my mushroom come back -@lexikon1 You can link to it if you want but I think I am all burned out on this... -@zeroday looks like this is just the ones that can tune somewhere into the 700s? -@apiary I just thought it was next week for some reason! Don't worry I can give this talk cold ~ -Allegedly I am giving a lecture for programming the Nintendo *tomorrow.* @apiary is this true -@JastrzebskiJ clearly not all of them! :( -A boy turned down a copy of my waveforms are they not sinusoid enough I thought my waveforms were the prettiest :( -@RichardBarrell yeah. TTF has always been done in the kernel. A surprising number of people never realize that... -... To the best of my knowledge, that PDF is safe :p I hope q: -@Neostrategos @iJamieH hahaha it should be fine :p maybe :p -Check out this PDF on malicious fonts :3 http://t.co/KDWmwr3289 -@AutismIsakiller I think, since it's a federal case, they can have the trial in the middle of nowhere if they want (and block cameras) -@AutismIsakiller sorry for the fox http://t.co/uVOlefpkKp -@AutismIsakiller don't get me wrong there MUST be a fair trial. Just our confidence is reasonably high... -@AutismIsakiller and that they flat-out told the driver they abducted that they did it, I mean, technically allegedly flat-out told. -@AutismIsakiller you heard about the guy in the hospital who woke up and wanted to see footage to point out who did it right -@AutismIsakiller but the evidence at this point is so overwhelming the only way out would be to demonstrate coercion by the big brother -@AutismIsakiller well, the last paragraph does remind all readers of innocent until proven guilty -@thegrugq you non-Americans are so bad at suburban American geography it's embarrassing -But the important question is, who is taking care of @J_tsar’s beautiful cat Peep -@zenrandom me too, but it's apparently hard enough for our senators to grasp the protections we have -@innismir there are three radio towers in a marsh tucked between the mall and Network Drive -I can't shake the feeling that someone, somewhere, is trying to use @J_tsar's twitter data as a basis for account profiling -@WeismanBen I wasn't able to figure out why they're there, it might just be filming. -"Ortiz has faced criticism for coming down too hard on some defendants, but that approach may become an asset..." Oh buzz off -Well at least it's confirmed they're trying him as a citizen and not an "enemy combatant" so those senators can suck on a yucky lollipop -@JastrzebskiJ all I know is the bottom is yellow and I think the top was dark blue. They're repeatedly circling the area very VERY low. -They buzzed our office but I can't find anything wrt the police looking for someone. Maybe they're just filming the majestic suburban wilds -@ternus Built before everyone and their uncle carried laptops and phones. Can't be bothered to change. -@rockhopper that was the best I could do from the car -This helicopter is circling outside the Burlington Mall http://t.co/3SZeiOJKHP -Should I be concerned about the helicopter practically buzzing the grass I just saw down the street -.@puellavulnerata can you imagine: "we're picking up the signature of a Nintendo 3DS! This plane is grounded until it's secured!" -@puellavulnerata I would never enable the TSA to be more annoying, but they totally would buy this ... -The winky face is key to interpreting that tweet, y'all -Namely he wants me to patent my technique for identifying suspicious consumer devices like Kindles and sell it to the TSA for zillions ;) -My husband just told me not to tweet something because I should patent it first. I think he's evil -@giovannibajo lol that wasn't what I meant at all :p I meant the typing -Peace is when a temple invites members of another religion to hold ceremonies inside because their church building is unavailable... -@Jonimus well that's what all this Science(tm) is about :) -@ra6bit that OSX Lion supports? :p -They run at the same mhz, but the ram in my macbook and my work laptop have completely different noise profiles :) -@jesster_king she got engaged and she's dropping out of college to get married sooner -@aquavitaecoll yeah but you can just change the strings from "intel" and "intel 64-bit" to "32-bit" and "64-bit" much cleaner -Am I allowed to be bitterly judgmental if my cousin just fell right into the MRS Degree hole? I'm self-righteous I know but come on -@davidwees @ezchili anyway I think you will find this interesting - my 10th grade history book http://t.co/XqDYtlr3OX -My grandmother just sent me a text longer than the iPhone screen how does she manage that she doesn't even have a smartphone -@yyr_ haha I can tell you're not a Mac person ;) -Everyone: I am aware of the difference between 32-bit and 64-bit processes. The "Intel" part is completely superfluous :p -@davidwees @ezchili But if I had to condense what "saved my soul" to one tweet: Astronomy. Not just books, telescopes. -@davidwees @ezchili turns out my core beliefs were actually incredibly stupid when compared to unfiltered reality! but that's the problem... -I'm confused why Activity Monitor in OSX still notates that every single process is of Intel type when the PPC emulation is gone -@davidwees @ezchili oh, I knew from age 6 that Satan's agents said so ;) that is a very long and painful story actually. -THE NINJAS FOUND ME TELL MY BEST FRIEND I --- oh hello third-floor window cleaners -@Abzol you know we agree right? :p -@Abzol that’s the point - people try to deny terror suspects (even the most tenuous maybe-suspects) basic human rights -When human rights don’t apply to someone because they’re bad, remember, someone out there thinks you’re bad. -Hit video game from Veracode: Where in the world is @chriseng San Diego? -@41414141 they’re installing tor, obviously -@davidwees @ezchili there are private schools that teach this. I went to one. -@_larry0 @ternus I think my TSA lady was upset I wanted to do it in full view of the line. Told her three times, nope, here's good, thanks. -@ternus except last time I went through they were so not wanting to touch me that I could have fit a whole soda can (dangerous stuff, soda) -@Abzol passing a raw get or post variable to the system shell -Reviewing the stuff I recorded at Source and I have no idea what talk could have been talking about a model trainset -@nullwhale well for starters, I can't overwrite all 4GB with a new value sixty times a second like you can a screen :) -I can track the exact moment the machine goes into hibernation well after the screen is off -@grayj_ 800mhz because the reported speed of the ram is 1600mhz. My other devices have 1333/665-ish -@grayj_ tuning my radio on AM to 800 MHz and holding the antenna in the same plane as the RAM over it -Got a recording of the MacBook's RAM #AdventuresInTempest https://t.co/9H5wkrOvX8 -@fredowsley welcome back. You missed the fireworks. -@skyeyemachine there's a pretty pattern centered on the mhz of my tablet's RAM that appears on my radio when I lay the antenna on the screen -@send9 I went to radio shack and picked up a generic bunny ears plus the PAL adapter for it (they had it in a baggie on the wall) -@rjsalts kinda sorta! -@send9 yes. If it’s staticky it’s because of your location / antenna. -Hit the deck! It’s TEMPEST! http://t.co/sPHkvHa5Tv -Hmm... do you suppose it's a coincidence I can pick up a faint beautiful pattern centered exactly on the speed of my RAM? :) -All these frequency analysis graphs are giving me the finger -Hamming window hanning window is this a cruel joke -@demize95 you should be thankful it wasn’t tvtropes -@unixronin presuming the limerent object is also limerent I see… :p -@dakami casual * curse you autocorrect -@dakami whereas with DH it was a causal friendship that grew over several years -@dakami I’m extremely prone to intense crushes on a certain kind of smart, nerdy person pretty much the moment I see them -@fncombo http://t.co/oUGOCJFPmK -@fncombo http://t.co/oUGOCJFPmK -@fncombo the tumblr is leaking!!! -And now I have the technical term for how I feel about my husband vs. how I feel about my wide assortment of crushes -Ever read an article on some aspect of psychology and realize they’re reading your mind http://t.co/GKLmPDcDjC This is embarrassing -Re: the guy who thought he was a government bank security tester- incredibly naive. Incredibly lucky to have gotten out of that mess okay. -@VZDBIR you need an anime character avatar -@PatrickAK maybe, but I feel like I probably shouldn’t be trusted with a transmitter :) -@puellavulnerata I’m just relieved the cops actually kept their heads screwed on. It’s practically a miracle. -@puellavulnerata and I haven’t been able to determine why they did so at this house in particular -@puellavulnerata I’m aware of one shady looking thing - one house where they demanded everyone come out with their hands up -@puellavulnerata and some people said “no” when the cops knocked on their door and they didn’t dispute it -@puellavulnerata I’m just not aware of any cases of people being harassed for being outside except when gunfire was in the immediate area -@savagejen @dan_crowley @puellavulnerata so did I! We could all hear on the radio where he was by that point :) -@puellavulnerata I’m just saying that the “lockdown” was almost entirely voluntary in who participated and I broke it multiple times -@puellavulnerata @savagejen no, it’s impossible to get four million people to totally agree on literally anything -@puellavulnerata @savagejen this is what happened: “please stay inside” “sure” said most people “nah” said a few and nothing happened -@puellavulnerata @savagejen the trains were closed but there were people outside everywhere -@puellavulnerata @savagejen you know that’s not what I’m saying, and that didn’t happen anyway -@puellavulnerata @savagejen it’s difficult to describe, but to us locals this terror attack was intensely personal, not “just” violence -@puellavulnerata @savagejen — but on the whole, Boston wanted them there and they did what Boston wanted them to do -@puellavulnerata @savagejen I’m not going to assert they did everything 100% right as thousands of people were involved — -@puellavulnerata the search actually wasn’t nearly as invasive as twitter thought. On the whole they actually remembered to knock and ask. -@puellavulnerata the entire city never shut down. I was there. It didn’t happen. -@0x17h chiptune ain’t midi yo -@savagejen Trying to decide if this is a pun or you haven’t noticed all the boys I’ve been hitting on over twitter :p -@0x17h chiptune privilege: watching this and thinking “well duh” -@savagejen what does that make a dry atheist -@m1sp @JackLScanlan I’m struggling to imagine why they care, but who am I kidding -@_larry0 today in “images that make no sense in thumbnail view” -@spacerog “hmm, I could totally copy paste that 140 times. No, I won’t, I won’t be that obnoxious” -Leave it to the FBI to screw up good intentions -@m1sp incidentally I’ve been feeling really limerent -@m1sp I think you are the only person who has caused me to look things up in the dictionary in the past year -@m1sp are you breaking Microsoft’s heart -@gsuberland geez he went right back to eating his pizza they’re not 100% overreactive 100% of the time :p -Achievement unlocked: got a funny look from a cop re: my touchscreen radio -Not getting criticism on BBC that Suspect 2 is "only" 19yo and hence not dangerous. That's an adult. And near his physical prime. -Awesome if I unplug the antenna and touch my finger to the connector I can pick up FM music with my body -@themarkcaudill not yet but I will. -@dildog I'm not talking about overpopulation due to completely open doors, I mean being fearful of foreigners on principle -@ErrataRob and I think it's easy to forget how RECENT these events which changed the city's demographics are -@ErrataRob ie I have photographs of my Irish-Bostonian ancestors. My father grew up speaking Italian to his friends in a Boston suburb. -@ErrataRob what do you think the dot dot dot is for I was focusing on Boston's relatively recent waves of profound effect -If there is anyone in Boston who is now anti-immigrant ask them if their last name is Irish, Italian, Greek, .... -Taking my radio to the big city taught me a lot about what various signals I can pick up are actually for as they go live more often -@GabrielGumbs I'm genuinely unsure and want to know more. But I do know the title on the YouTube vid is misleading ... -@GabrielGumbs I'm not going to assert not one single act of disrespect by the cops happened, however. -@GabrielGumbs and almost all of them, it was show up, nope not him, leave -@GabrielGumbs I was listening to the police radio - lots of valid reasons for checking specific places due to the emergency popped up. -"One time our web scanner found a button to send faxes and hammered it. Then there are the FUN customers..." -@themarkcaudill yes, yes, and yes, but as if they got in trouble... -@themarkcaudill it's happened several times. They gave some hick rednecks a fake bomb and arrested them when they planted it -@themarkcaudill just that she claims this is another case of the FBI enabling a wannabe. Ofc just as likely she’s desperate for an excuse -@chort0 I’ve been to the Chinese embassy - to my surprise they totally owned up to some stuff when political science students asked -@matthew_d_green I’m trying to decide if this is a subdivision of bitcoins joke or… http://t.co/IUIwdPwhmW -@secmoose @0x17h @skry @radleybalko I’m not sure why that house got searched, unless it’s because it’s several adults no kids -@secmoose @0x17h @skry @radleybalko everyone I’ve found a quote from said that, in context, they didn’t feel violated; -@garywhitta @vogon oh look another children’s movie starring a young man, several assorted male characters, and exactly one woman. Yaaaaay. -At least one case of SWAT team frisking everyone in a house in Watertown- not sure if they had a specific reason. http://t.co/ElRsp1anyN -@0x17h @soycamo I have no idea what’s going on here but not having her hair up is against regulation -@ra6bit presumably gotten out of hand if true. Or she could just be desperate for an excuse -@ra6bit she says it’s another case of the FBI shepherding wannabes until there’s enough to make an arrest -@m1sp you are my ally angel -Time to close the tab: “Dope-smoker Dzhokhar” Yeah I’m sure that’s relevant -@Jedi_Amara that’s sexist. Also all but one of the divine messengers in the Bible are explicitly male or ungendered. -@HyShai I doubt they would have wanted an actual explosion if this was their game. But it’s too soon to know either way -@puellavulnerata @HyShai oh yeah bingo. The one where the feds gave them a dud bomb so they could be arrested for trying to use it -Can someone with a better memory than me remind me and @HyShai of times the govt has aided a potential terrorist so they can make an arrest -@HyShai there’s a chance it’s true as they’ve done something like that before. Or she may be desperate for a reason her sons aren’t evil -@HyShai she says this is another case of the FBI enabling a potential terrorist so they have someone they can arrest -The mother is naturally an emotional wreck right now, but if her allegations against the FBI are true, there best be hell to pay -@puellavulnerata @jeremiahfelt @Asher_Wolf okay, just finding the news articles on her claims now… interesting… -@puellavulnerata @jeremiahfelt @Asher_Wolf we’ll have to wait that one out then since obviously she’s probably not at her emotional best -@jeremiahfelt @Asher_Wolf @puellavulnerata the alternative is Keeping Lists based solely on immigration status and we do not want that. -@jeremiahfelt @Asher_Wolf @puellavulnerata also does not seem to be the case? They checked the elder in 2011 I think and found nothing -@Asher_Wolf @puellavulnerata rather someone at the hospital ID’d who had left the bag on the ground from footage -@Asher_Wolf @puellavulnerata there’s no evidence the FBI knew who they were looking for “the entire time” that I’ve seen -@themarkcaudill I expected a quite ordinary looking person. I’m just bothered by the cognitive dissonance of “he’s… he looks like my type” -@m1sp good noon <3 -@themarkcaudill that’s not quite what I mean no… -@Hyder_Khan yup I’m Dutch-born. Nah don’t worry, “they” know where my loyalties lie :) -@Twirrim just scared, and decided to kidnap someone for their car and tell them they were the bombers? Come on :p -@Twirrim at this point there’s simply no plausible doubt. He wasn’t bleeding to death in a stranger’s boat for fun -I can’t help but be astounded at all the basic, obvious steps they could have taken to avoid being caught. Hooray for catching The Dumb. -@geekable you’re trying so hard -@WhiteMageSlave maybe if Timmy put on a hundred pounds -http://t.co/RGaUEqRSUM I’m bothered by what a beautiful boy he is -Gods dammit America this is why we can’t have nice things http://t.co/puNuHIVvKo could you just STOP SHOOTING PEOPLE -@ternus but where is the silly pic of you inside? Bor-RING -@CyborgCode http://t.co/TnIcgPJZ5p -@Hyder_Khan but it may be a cultural thing that we consider gun violence and bomb violence to be totally different and the latter far worse. -@Hyder_Khan no charges have been brought yet, something can be “investigated as” a terror incident and changed later because of evidence -@FrederickGeek8 like I have a pebble! I was Poor(tm) during the Kickstarter -.@edropple yes, I just wanted to acknowledge that some people near the gunfire were, in fact, temporarily restrained by the police -@rjsalts @thegrugq because we take everything personally -@rjsalts @thegrugq just wrote a ridiculously long musing on this http://t.co/sP0FRN9rhZ it will *never* be common in Boston -Counterpoint, accounts of ppl who were particularly close to the gunfire and told more firmly to stay put http://t.co/f7EfYjWRXO via @ternus -@dfranke so, I think the call to shelter in place was the correct decision even if theoretically he may have been found sooner otherwise -@dfranke and if he had come out sooner, the kid might have been conscious enough to shoot him. It’s all if, maybe, perhaps, probably -@CyborgCode it’s a standard github feature. They have templates you can use -@jesster_king I’m short on twitter -@CyborgCode make a repo named username dot github dot com (or dot io) and put an index.html in it -@jcran never let @quine … ? I can think of so many ways to end this statement -@comex that’s on the Feds - and the lady who effectively killed Aaron Swartz, apparently. -@inversephase in this case they suddenly showed up like half an hour later. -My long-form explanation of why we, the greater Boston area, did what we did. http://t.co/sP0FRN9rhZ -@stevelord @thegrugq everyone knows my final move is the MERSENNE TWISTER -@SamusAranX no they insert random popular ones -Ported one of my orchestra pieces to chiptune https://t.co/y9jHJ5CyrY -@deathtolamo @profoundlypaige I know it doesn't fit the narrative but cops aren't all 100% total screwups 100% of the time. -@deathtolamo @profoundlypaige and the article ends with the person *emphasizing* he thought they did a good job. -@deathtolamo @profoundlypaige I don't see anywhere in here it says they broke into his house without consent -@deathtolamo @profoundlypaige can you read? he was outside and there were gunshots, of course someone yelled "get down" -@deathtolamo @profoundlypaige stop projecting your narrative. They knocked. -@deathtolamo @profoundlypaige he consented... -@JohnnyCocaine @thegrugq that was the ONE smart thing about this - zillions of tourists lining the streets on this one particular day -@JohnnyCocaine @thegrugq it closed briefly; there were far, far too many tourists who needed to go home to keep it on lockdown long -@thegrugq all of this was stupid from top to bottom - they didn’t even leave the city in the huge time window they had -@profoundlypaige it wasn’t too bad unless you were in Watertown proper - my manager’s house was barricaded to keep him from becoming hostage -@profoundlypaige yes I live a few miles north of Boston and I was in the city proper during the manhunt -@profoundlypaige a mix of having been on the radio, following a lot of other locals on twitter, and major press summaries after the fact -@profoundlypaige so they probably have friends but all evidence points to them being the ones on the scene -@profoundlypaige at least three other people have been taken in for questioning so far -@focalintent apparently it was just the driver’s own cellphone. They kidnapped him then kicked him out. -@profoundlypaige from our POV in Boston there was suddenly a shooting and we had no idea it was the bombers for a good while -@profoundlypaige that kind of all went out the window the instant they started shooting, that’s not “innocent” in any circumstance -@profoundlypaige oh and they told the driver they kidnapped that they were. -@profoundlypaige technically no, but they match the photos, started shooting cops, and risked bleeding to death rather than surrender -@michealc no, see immediately previous RT - marathon bombers stole car with cell phone inside. We all know the outcome :) -I’m glad violent criminals are notoriously stupid and don’t think to check for cell phones in cars they just jacked -@MarkKriegsman google is commanding me to do the wishing -@sakjur lol nope. Found it though. It was... tucked behind my husband's gaming computer downstairs -Somewhere in this pile of books and assorted sundry is my missing MacBook Air. I think. #geekproblems -@iain_mk2 @DrPizza @gudkopy okay I’ve been ignoring this but as if this didn’t start with a cherry picked single person’s incident -@amazingant yeah that’s the thing - I need at least one gap in the perimeter for my experiments, sometimes a big one -@MrToph sir why are you sending me panty shots -@amazingant it turns out it’s quite hard to block a signal broadcasted from a giant tower one and a half blocks away -@amazingant it’s sitting in the corner waiting for me to work on it some more, but preliminary evidence is that it will never be very good -@MrToph cyan underpants huh -@Dr_Review … why am I reading too much into a rated-E video game plot? -@Dr_Review seeing as the Rockets have access to the exact same resources and are much older and in greater number,… -@LBontempoNunes baseball bats would probably be more effective than zubats -Pokemon: a major corporation is under siege from a terrorist organization and the only person who bothers to show up to stop them is a 10yo -@iain_mk2 @gudkopy @DrPizza and this is worse than the American situation how…? -@kaepora http://t.co/jaK3pnfDI4 -@markrendle it’s almost as if we’re two variations of the same basic culture ;) C&C @DrPizza -@jack_daniel stuttered and stalled -@gudkopy @DrPizza the British are obnoxious and pretentious, but I think they’re onto something with the “not letting people suffer” thing -For the record I don’t advocate for any subculture of feminism which denies transgenderism, that’s just recycling the prejudice -@bugbrennan excuse me ma’am but are you aware of the idea that if you don’t want to have sex with someone, simply refrain from doing so -@pzmyers @bugbrennan um parson me you do know being a lesbian does not mean you must have sex with every woman you meet right -@pzmyers @bugbrennan …… what? -Now to sit back and play Pokemon Blue like the gods intended. Sorry, BeaCon… -@leighhollowell fffffff-!!! -@pokemon_ebooks but… but… eggs! -@WhiteMageSlave ohhhhh riiiiiiight THOSE GUYS Hahaha losers -@DarthNull thatsthejoke.jpg ;) -Terrorism all over the place, exploding factories, massive earthquakes, the only thing left is a Black Plague outbreak -@panther_modern @kaepora the part where they’re “thought to” have “unprobed” links to “hellbent” clerics -Fox News is thought to have as-yet unprobed ties to a radical editor hellbent on destroying journalism -Check out how carefully Fox words things so they can make accusations w/o evidence http://t.co/M4risIG78J ht @kaepora -@ternus decided to stay home this time, in case the entire city catches fire and floods with molasses -@mikko @mrHithron huh, this got lost in a mention flood earlier… … no, except some people think that’s what a DDoS is, but they’re wrong. -@mdowd that doesn’t look nearly lethal enough to be Australian -@ameaijou you’re a cat -@Hyder_Khan @Omgitstamz the average Bostonian is quite the opposite of a redneck, but there’s no denying there’s some racists in the bunch -I’m suddenly really sad that the time I larped as a zombie was before poor college students carried smartphones -@rantyben well, everything in context -@ternus do you play an elf? I bet you play an elf -@ternus never underestimate my willingness to troll people I like, or to beat them with foam and duct tape weapons -@hackedy only if it has a soft foam tip -@donicer @GreatDismal duh @jack_daniel -4) subtweet and see if they defend themselves ;) -1) meet someone cute 2) scope out their github 3) there’s totally a larp app in here -It’s suddenly pouring rain. Considerate of it to hold off this long really -@0x17h people did, nothing happened -@ggreenwald @marshray just because the govt will let him get away with it doesn’t mean we shouldn’t deride it as barbaric -@Dictum anyway there’s a nearly 100% correlation with strangers calling me “Melissa” instead of my twitter handle being obnoxious, so bye -@Dictum anyway there’s a nearly 100% correlation with strangers calling me “Melissa” instead of my twitter handle being obnoxious, so bye -@Dictum or burning down cabins or any of this other wretched nonsense. Next step: make sure suspect’s rights are respected -@Dictum I’m a fan of the fact that we can apprehend terror suspects without shooting up old ladies delivering newspapers -@ioerror the only people I can find “cheering” that are professional politicians. -@Dictum there are so SO many recent examples of cops totally screwing up but we have a massive operation where they, like, apparently didn’t -@Dictum there are people on twitter who posted they said no and nothing happened as is the law amazing I know sometimes it works -@Dictum martial law is when you get shot at, or at best arrested, for the crime of leaving your house -@Dictum see my previous tweet - house searches were by consent - “seek shelter” was not some kind of ultimatum -Today was a day of very heavy police presence and you have every right to not be cool with that but it fell way short of actual martial law -@thegrugq it won’t “keep up.” We’ve been in the “War on Terror” for twelve years and it hardly shows up to a single battle -@deathtolamo I haven’t heard of such an incident, but if it can be evidenced then that’s at least one case of the police acting wrongly -@marcusjcarey I saw someone on twitter who says she said no and that was that -Please keep in mind that no homes were searched without consent and no one was arrested for going outside, this actually *isn’t* martial law -.@GrahamBlog would you kindly sod off? WHAT war? Is there a civil war on I didn’t know about? -People worried about the financial cost to Boston: Boston wants to know if “Zero Tolerance For Terrorism, Inc” prefers cash or debit -@thegrugq who’s tried to hijack an airplane around here recently? Terrorists have *always* known about Very Obvious Targets -@thegrugq and IMO taking this Extremely Personally(tm) is a deterrent to anyone who isn’t planning on being suicidal in the process -@thegrugq that’s true of pretty much any violent crime. If I throw a brick through a window, police will respond -@dani0xE tweetbot -@thegrugq we spend more on storm cleanup a dozen times a winter. -@thegrugq I can assure you Boston considers it worth every penny as we took it personally -@ternus where’s my licensing fee -Crashed for four hours. 700 new tweets. Oh… dear. -@0x6D6172696F is it the bug you and I share where it’s too easy to cast our names to int? -Our government is filled with festering peat bogs like @GrahamBlog who want to get rid of pesky human rights -@GrahamBlog how dare you claim to uphold our Constitution -@GrahamBlog enemy combatant working for which army exactly? -@miuaf I don’t know much about military hardware but they’re the kind that are small as tanks go -The tanks are a show of force… you’re not gonna shoot at one skinny dude with a tank in a residential area -@DrPizza no except in a part of Watertown I think. That’s where the tanks are, as if you can use a tank to target one person lol -@DrPizza the trains are down and we are *asked* to stay inside. -We even crossed through part of Watertown and it was alive and well. The crazy stuff is in a fairly small area -Let me repeat because I’m still seeing it: the entire city of #boston is NOT shut down. People in parks people on corners cars on roads -I hope I am never so glad to have made it home again. If I see this guy I’m kicking him down seventeen flights of stairs -How to tell the Boston police are busy: parked in two hour parking > 24 hours. No ticket. -This end of town is pretty much out and about, the reports that the whole city is "cowering" are false mmkay -Taxi obtained and persuaded -There are a lot of people just now accepting that white Muslims are totally a thing. Now accept most of them are more like the uncle -Why do we even have a street named Laurel? No one in Boston can pronounce that -@kaepora @spacerog many as he is accused of carjacking -@ternus sir are you implying my antenna is not proper -@spacerog it finally did on like the sixth try -Fine, I will see if I can get it on my actual radio, but last night it was too fuzzy -@nemof no luck -Ustream killed. -I may have heard wrong but it sounds like they said the suspect wants to talk to them on cell phone -One thing I’ve learned: accidentally leaving mics open is a major problem for cops -Cancel search for green Honda: they have it -@Jolly I’d like to think Boston is better than that… … especially since the suspect is literally more Caucasian than me -1999 Honda civic, green, POSSIBLY the suspect #boston -@Ammoniak @savagejen yeah I think it’s overloaded -(I’m super ultra for citizen journalism, but don’t try to pass yourself off as ‘the press’) -@kaepora it’s okay, he’s clearly whiter than… hrm… -@zeightyfiv @m1sp it’d be disproportionate if it was a generic police shooting, but these are bombing suspects, not gangsters -#radiotweeting Don’t walk into a manhunt and say “I’m with the press” if you don’t have any sort of press credentials handy -@ternus where are you going anyway -Well-meaning housekeeping asked if I “know what time that will be” when I said we’re staying till transport is open -Okay I give up if @j_tsar is the right guy or not, way too many conflicting reports of “confirmed true/false” :p -@therulerofchina I’m alive -@perel42 hoping to stave off being blacklisted as a tracking server as long as possible I imagine -Quiet but not abandoned #boston https://t.co/YDQaLusZkB -I love how @vineapp will silently fail to post and discard the video #FirstWorldTerrorAttackProblems -@JZdziarski @i0n1c @thegrugq girls are anti-conference she-devils, of course! -@i0n1c @thegrugq I’m sorry you must confront your worst fear -@stevegibson @metropolitanrep it shows 5 am for me. Since it’s right under “Boston” I figured it was eastern time but not necessarily. -@stevegibson @metropolitanrep time stamp on last logged in -@HiveLibrary @puellavulnerata and the city is not / was not on total lockdown. Woke up, looked outside, people. -@HiveLibrary @puellavulnerata just chilling inside because someone nearby is violent with nothing to lose is not stupid or cowardly -@ternus the news says taxis are allowed out again so general traffic movement except for Watertown should be soon -@ternus we cleared it with the hotel that we can chill until the all clear is given, which I assume will happen within a few hours -@evejou @marcusjcarey well that’s kind of the correct response when your nephews shoot up completely innocent people -@ternus we’re still camped out at the hotel, as we were effectively trapped when this started to go down -Their uncle is vehemently not supporting them. None of this “I can’t believe my boys would do this” he’s demanding they take responsibility -I think I just literally heard the suspects’ uncle say they did it because they’re losers. -The hotel kindly agreed to let us blow off the checkout time, and they’re keeping their continental breakfast open indefinitely -@cirdan12 regardless of how one feels about guns, the gun one actually wasn’t total theatre for once -FYI there are both pedestrians and cars around here, it’s not like the city is in total shutdown -Apparently I’m on lockdown. -Awake. Sirens everywhere, unsurprisingly. What is the sitch -@SimonZerafa good morning from a high rise in Boston -I’m not kidding. My manager lives in Watertown. He texted DH that the police blocked the doors to his house. -@jlwfnord @fredowsley with luck we might actually get there by 404 tomorrow. Camping out in the hotel. -The police have barricaded my manager’s house shut to prevent the terrorists from taking him hostage. -In any case the adrenaline rush has crashed hard and I am once again too exhausted to process this. May the morning dawn in peace -So let me fill you in on a secret. The initial guessing based on developing details? That’s actually what the news *is*. -Male coworkers I’ve shared a hotel room with: four (okay, three, if my husband doesn’t count) -@jlwfnord (it’s not the frilly lace up kind) -@jlwfnord back support. -Step 1. Get this corset off Step 2. Don’t cut the sleeping pill in half Step 3. ??? -@0x17h some of us live here you know. -Our room number is 911. On the plus side the clerk told us not to worry about checkout time. -I admire that pizza delivery car. #boston -Looks like we’re getting terrorist-proof hotel rooms on corporate dime -@_larry0 in the lobby, but I hear hotels frown on that sort of thing -@vathpela not quite. I can see several intersections but none anywhere near the crisis -I am considerably more awake now… if you’re wondering I am still at the Source hotel, up several floors, quite safe here. -Personal acquaintances are telling me they heard small explosions so I consider this verified #boston -@_larry0 so I’m huddled on the floor in the CTF room exhausted to the point of tears -@_yossi_ who freaking knows it could be any ol’ crazy pants whackjob who wants to commit suicide by cop -@_larry0 yeah except he decided at the last minute we’re not and he’d just take us home whenever -Oh my gods I can’t even process this Another stupid little bomb Is this real? Not just crazy speculation getting out of hand? Tell me -I am too exhausted to listen to the radio and process what’s going on. Sorry. -@maxtch I mostly use OSX which transparently replaces gcc with llvm -@skyeyemachine this is not the face of poverty this is the face of not bothering to get a room -Techno hobo camp, by request http://t.co/aXicQUDIJ7 -@Jedi_Amara glad you noticed -@maxtch yes, sometimes and not really. -Doing the techno hobo thing, sleeping on a pile of con t-shirts, hugging my bag of computers, in the corner of the CTF room -@DrPizza windowing… apps… I feel you could base an interface on that… but what to call it -Watching the city sidewalk from the fifth floor, some guy is just pacing and kicking poles. Oh now he's dancing #exciting -@blowdart you and I are on a different plane of concern, the big picture, the corner cases, legal stuff -@blowdart but I feel quite sure that one day soon, logging-into-their-Facebook pranks will be as uncouth as sneaking into their house -@blowdart it’s in a state of flux. Technology is changing faster than culture. Kids are making new etiquette faster than parents can teach -@ternus oh yes :3 -So I just noticed Defcon’s CFP is still open for a good while and I must be crazy because… … -@codeferret_ then I have no idea why you need my twitter -DH is trying to steal my phone to post questions to twitter so he can “obtain the answer via hacking” -Source Boston CTF - @quine presides over his domain http://t.co/OHgvIHnEu4 -Source Boston CTF - @djrbliss smiles awkwardly for the camera http://t.co/nXcyh5V5Ij -@demize95 find me when I have my backpack with me :p -Guess whose laptop @codeferret_ had to borrow for the ctf http://t.co/pFegagfhC8 -@binnightbot hi! I try. It breaks a lot of JavaScript interfaces :) -@WeldPond if they were HTML filtering server side *anyway*… -@savagejen what What -@hermanos @vogon because we all know 4chan is racist and it’s embarrassing -@triple5adam well, I’d hope they’re mutual, but one is Old(tm) and they both did the girlfriend namedrop :p -I love how our three letter agencies are so drone-happy but flip out when a civilian helicopter does a flyby -My key Source Boston takeaway: two new infosec crushes -@ternus pro -@McGrewSecurity @mikko @spacerog @dotMudge @WeldPond @dildog @joegrand I can confirm this works -@s_bridges @BernardGaynor @0x17h eww, he has more than two children? What a sham marriage. Everyone knows that. -Remember when sites and services not targeted at children had swear filtering? Oh nineties internet -@VoluntaryMan aliens are not currently in my threat model -@ReinH is that a mod? I've always played vanilla (haven't started a new fort in a while actually) -@cybergibbons I think at this point it would be perceived as increasing police secrecy which wouldn't go over well (I hope) -@jonelf of course I'm simply receiving it better, that's how radio works :p -You know what's cool? Knowing there's going to be police coming down the street before you hear the sirens is cool -@cybergibbons @zeroday yes \o/ -@mikk0j it's free software called SDR# (sharp) -@thoward37 @zeroday Don't give me a transmitter whatever you do. -Especially cool/funny is that one of them was like "I can't hear you it's breaking up" but I could hear both sides // @zeroday -I think I found a walkie-talkie, someone is asking their buddy where the blueprints to some air conditioning thing are // @zeroday -@blowdart uh, yeah, that's kind of the point. You let your friends into your house too. -@blowdart walk up to a teenage girl and ask to see her SMS to her best friend and her boyfriend. Observe. -@blowdart it's very much their concern. Don't confuse being totally open about some things as totally open on everything -Now we're waiting for that moment when culture changes and invading digital privacy is seen as utterly unacceptable whether it's easy or not -History of security: we gave up on perfect locks over a hundred years ago. The lock-and-key is now primarily symbolic. -@zeroday @ra6bit anywhere in the 500mhz range -@0x17h this hotel has a wireless mic in each meeting room that shows up somewhere in the 500mhz range -History of security: the British thought they had an unpickable lock for 40 years until they handed one to an American. Isolation is bad -@0x17h http://t.co/w48I67n9Qa -History of Physical Security: arguably the first "open source" was publicly funded and released lock research in the 1700s -@isa56k @torvos oh I'm sure it is - it's just not something people really think about -@isa56k @torvos oh I'm sure it is - it's just not something people really think about -@JZdziarski I don't really consider "it needs to be jailbroken and you need to know the root password" to be a general iOS vuln... -@judsontwit this only related to on-device stuff, not backups -I like how someone just referred to USB sideloading as "shoving the app in sideways" -@RSWestmoreland @Kufat I think I am listening to some people setting up a stage for a special event, struggling with bulky props -.@torvos ah, sorry - context is iOS -iOS: your contacts stay unencrypted when you lock the device: required for incoming call info -MDM server messages aren't signed? For serious? -@Kufat I can just get up and walk -I have no idea whose microphone I am tapping but it sounds like there's something awkwardly BDSM-like going on in a room near here -@RussMichaels @ternus yes, yes, use gender-based comparisons, implying female organs are associated with inferiority, that'll change my mind -"I think I follow this stuffed animal on twitter" http://t.co/VptMi4PeRR -@niteshad @savagejen @dan_crowley it's just leaky -@ternus they kicked me out of the room because I'm not invited so now I'm charging my doom radio at the badge desk ;( -@ternus you coming to the conf now? Going to the Akamai private lunch? ;( -@savagejen @dan_crowley http://t.co/LkS9KRN5Q3 -@savagejen @dan_crowley it's passive, my radio can't broadcast -@savagejen @dan_crowley I'm in your microphone intercepting your signal -@savagejen @dan_crowley boop da ba doop http://t.co/qjkTAz6uo6 -@ra6bit I found the FM output of the mic in here about halfway between the two frequencies listed on the LCD :) -Never mind, @dan_crowley is wearing a clip-on mic set very very quiet, and I found it :D -I came prepared to intercept @dan_crowley's microphone and he's going bare-voiced -@panther_modern they're here with the president, they're not street cops -@jb33z http://t.co/qaKc0kylUH -@akopa roughly 30mhz to 1.7ghz -"free as in beer and free as in speech - awesome as in kittens and awesome as in missiles" -This radio setup was worth every penny for sheer "freaking people out" value -@sakjur it's because the president is here for the memorial -Boston is chock full of guards with assault rifles - not a good day for the gun-phobic -@KirilsSolovjovs fan fiction writers -Oh! I get it. Congress is a social experiment to measure cognitive dissonance -@akopa we have Pennsylvania for that -@rbf_ no, I’m not advocating that the president is temporary king. I’m saying our congress does the absolute worst job possible. -@rbf_ hahahahahahaha once upon a dream -At this point I wonder why we even have a congress, stupid question I know -@JastrzebskiJ if fifty shades had stayed on the fanfic boards where it was birthed there wouldn’t have been a problem :p -Someone writing fanfic means they liked your story SO MUCH it took over their creative output; it’s probably terrible writing but that’s ok -How to kill all my desire to read your stuff: finding out you’re a jerk to fanficcers. Looking at you Anne Rice -@amanicdroid what I’m saying is: “my dad died in an accident” vs “my dad was murdered”: completely different psychologically -But the human heart accepts accidents. Malice, we know, is always deliberate, we measure it accordingly -How strange that accidents can so readily kill and maim far more people than the most bitter acts of malice -@TheDaveCA \>_</ reasonable policies are hard, let’s go shopping -@TheDaveCA block groups of 255 IPs at a time, I guess. -@chriseng bailed already. -@Nial he blew up their website with DDoS -@Nial lol I take it you are unfamiliar with “tango down” -Not that I advocate DDoS in any circumstance, but… https://t.co/ENceewdjAL -@sixtycastle amazing! A fine specimen of “completely missed the point” in the wild! -@osxreverser what’s wrong with kindle edition? -@m1sp and he’s not gay!!!… I know because he has a girlfriend orz -@m1sp oh my gosh I have a new crush /(^o^)\ -@xa329 yeah that's what I meant - it's not a fan crowd, too many old people and suits -@jb33z yes, and I bought a nylon costume of it, a gray sailor fuku with strawberry pink trim -@jb33z my avatar -@ra6bit @_larry0 @csoandy bingo -Someone told me I should wear my Kasane Teto dress to this con but I think it'd be wasted on most of this crowd -@Brian_Sniffen @erluko everyone at the table already expressed regrets he's not here -@chriseng he saw me doing my happy dance at beansec and thinks it means I can't be a real infoseccer... -Someone at this table is wearing a Casio calculator watch and the person next to him is wearing a pebble -Having dinner with half of Akamai apparently. And @joshcorman. Who still isn't over the dancing thing -@eevee your cat is very lucky to have a human able to seek advanced medical care - good luck -@Saturn500Jared the joke is I’m being literal - he’s coming. -Traffic and security is going to be a nightmare in the immediate vicinity of this Boston hotel tomorrow. THANKS OBAMA -@TheDaveCA that's what the tool was though, name the account and away it goes -@m1sp I really like him and I'm not sure if he can tell I'm hitting on oh gods wait he follows me -@whyallthenoise that's what I'm working on; finding weird noise :) -@focalintent the FM music station range is completely saturated on my display here - a red and yellow blotch -@focalintent both I suppose but I was thinking of radio -@whyallthenoise that's my old house back in Virginia -The noise floor in the heart of the city is so much higher than out by my house -@captcarl13 it is a plastic sword -@waruikoohii wakizashi. -Rare photo of an alpha con-goer in the wild http://t.co/Z0FzmYlfmn -@jb33z which does happen - they got slapped down over GPSs without warrants -@jb33z unfortunately where the FBI etc. is concerned they just assume everything's legal until a judge flips out on them -Is hacking back legal?: the answer is "try it and find out," basically. -@Computermaster ... I actually don't remember. I somehow hit upon it as a magic hex value, and was apparently delighted with it -@greenrd I bet a dollar you're not American ;) -@VoluntaryMan I ride the official clients' case hard because I am disappointed in them but I still love them #toughlove -"Hacking Back is a Bad Idea" by @ITSecurity I assume this is named after me -@ra6bit exactly the sort of thing I wanted to find - I got am sdr specifically to see what I can spy on that people forget about -@ra6bit I recorded it as FM and it is clearly audible -@ra6bit the range looks like this - so much stuff http://t.co/qBJWIevq8K -@ra6bit you repeat yourself! -@ra6bit incidentally that range is crammed full here but I don't see anything resembling his voice pattern -@ra6bit if I can pick it up and identify it, it counts. -@USSJoin SDR Sharp/Windows 8/Acer W700 -@WhiteMageSlave he got over it (he keeps getting lost) -Spying on poor @ternus who is gonna find a mention flood soon https://t.co/NRaAm38eFj -I found @ternus's microphone http://t.co/4cjFr8W4UF -@Beryllium9 @ternus (if you're not your company's security department, don't attack your company) -.@ternus: Attack your org from the outside to get better buyin for fixing the problems you find -.@ternus: think and ACT like the adversary. Be evil to yourself -.@ternus talk: culture of resilience. Ingrain it in the developers that they must overengineer. -.@ternus talk: Akamai has an absolutely staggering attack surface and if they go down, the internet is effectively down. No pressure. -for the love of pizza, I can't select the text of a tweet in Twitter for Windows 8 #uirage -Great, we've reached the stage where idiots call in threats to random public places. There's always someone -@chriseng so I think DH is refusing to pick me up tonight... -@bobpoekert well if you're on the outside of twitter you will hit api limits if you do anything more than proof of concept anyway. -(Note that the thing about computing relationship graphs being too expensive is from the far side of the twitter API - easier on the inside) -A year or two ago there was someone who tried to do avatar analysis on twitter accounts and gave up because of Justin Bieber :p -Twitter talk: finding bots via relationship graphs is too expensive, especially if you don't already know for sure one is a bot -Twitter talk: machine learning is ~80% effective on simple measurements like how many accounts a potential bot tweets to -Twitter talk: Omniture, owned by Adobe, registered http://t.co/MxS9P295th (that's a letter) to fill your logs with ie 192.168.1.2O7 .net -Twitter talk: half of all bots last under forty five minutes. Most go silent of their own accord very quickly -.@secmoose I'd prefer if someone I don't like locks out their account :) -Twitter talk: there are account brute force tools. Implying twitter doesn't implement password lockout? Anyone know? -Twitter talk: the history of spam on twitter is giant spikes being fought back down, baseline steadily rising, for the first few years -Don't answer that -is EVERYONE who works for Kaspersky very attractive or only people they send to do talks? Or do I just have a thing for foreign geeks -IMO asking people not to obsessively speculate over photos of intense interest is asking a waterfall to hold on for a sec -.@jcran shuts off his pwnpad and suddenly my Nexus 7 floods with pending notifications -lol @jcran is attacking one of the open wifis right in front of us, on projector “you all have disconnected right” -The only supernatural phenomenon I believe in is demo demons -I really hate that the http://t.co/bSGrh0jukq manual doesn’t list the last time a page’s actual content was edited. -@nelhage but that’s already what PHP is Good glory -@nelhage holy guacamole you found my next manual masterpiece why does this exist -.@jcran showing pics of retail stores filled with tablet displays - and you know they’re not properly locked down -@AsherLangton @flipzagging 4chan is a racist site. No denying that. But I don’t think they look particularly “brown” anyway -@flipzagging @blaufish_ it’s plausible. You don’t want all cops at a major event to be blatantly cops. -@flipzagging it’s all “maybe.” At this point posting their real names, if 4chan found that somehow, would be irresponsible -Having a backpack isn’t suspicious. Taking it off isn’t suspicious. But when a bomb in a backpack has ALREADY triggered, you check for that. -@flipzagging it wouldn’t be suspicious if a bomb in a backpack hadn’t already gone off. We’re post-suspicion. *Someone* left a bomb in a bag -@blaufish_ @blowdart really it comes down to: they appear to be carrying the right kind of backpack and appear to put it down -@blowdart @blaufish_ they don’t even look “brown” to me. From the photos I thought they were white. -@blaufish_ you can just buy clothes like that here, and order a custom badge or nick one. -.@blaufish_ they could be cops who happened to be right there and soon identified as such. Or looking like cops to avert suspicion. -@hackerfantastic (and our law enforcement specifically asked for crowd sourced photos and videos, so they’re looking at the same data) -@hackerfantastic doodling on public photos is not interfering with an investigation -@EternalTodo yes, but that one was called out as specifically what malware checks for, presumably it’s the most popular -@grp I don’t think anyone ever questioned if he did what the court said he did - only a question of how wrong it was. Public said “not very” -@grp their standards are higher than casual internet discourse, at least… -No, of course the photos aren’t “proof.” Nothing is proof before it even goes to court. Don’t attack people in black jackets :p -@blowdart wrong about what? There’s no personally identifying information. Just circles on photographs -“Greater or equal than” is probably not how to grammar, I admit, but that is how I pronounce the >= operator -@amanicdroid well yes, but I’d expect that most defenders of any language would work primarily in that language -I found everyone on twitter who would advocate for ColdFusion as greater or equal than PHP as a platform. There are two of them -Nothing is as powerful as an angry internet http://t.co/RTavnuTtHc -@meta_alex you’ve probably written more cold fusion than me - I’ve probably audited more code bases for 0day than you :) -@blaufish_ @chriseng both! SE has a nearly 100% success rate and google archiving is forever. -@thegrugq like was discussed in the talk - for a typical business your primary concern is monetary fraud, not stolen intel -.@ra6bit and @dildog just observed neither of them have ever seen me use a physical keyboard. #touchscreenmania -@blaufish_ @chriseng you can unintentionally leak directly to a real outside attacker, that’s often how they do it. -@thegrugq the threat model for Joe’s Business is a little different though. -@m1sp dude you are objectively adorable -I appreciate that @NintendoAmerica memed their own announcement. Hey, at least you’re not making Half-Life… -@nickdepetrillo you. Change your icon. RIGHT NOW -Effective marketing: “everyone who attends our talk gets a FREE light-up ninja sword that makes noise” -Convention convection, n: the means by which trinkets, lost jackets, and checks for second-hand electronics propagate via full-time congoers -This just came to me from Austin by means of convention convection http://t.co/rBjseTwThg -@jenniferbn2 source Boston - the American Boston :) -@jenniferbn2 I’m at a talk ^_^ -Insider threat: tracking geolocation and login time is too noisy in most orgs. Accessing unusual hosts happens. Only worry if ALL are weird -Insider threat: did you know removing an account from Active Directory doesn’t kill open sessions? Oops. -Insider threat: leading indication of fraud is multiple valid employee accounts logging in from the same single-person computer -Insider threat: usually fraud for personal profit, followed by spiteful damage of systems, “spy stuff” is a distant third -Insider threat: The more data you log, however, the more likely you’re going to cause privacy problems. Who has access, what are the limits -Insider threat: though of course log retention is critical -Insider threat: use “soft” investigative methods first. Don’t just start going through computer logs. Keep legal dept involved. -I agree that basic user education is a must even if it can never be 100% effective. Enable people to know what’s always a mistake -@chriseng thinking in general overall terms - there aren’t very many professional moles in the world -Negligent insiders are the most common threat - completely unintentional data leaks far more likely than being betrayed… -@stevelord time to first worlder seeking asylum -Talk on insider threat. Time to Assange: one slide -Re: the @1Password cracker - they’re being pro about it. It’s an interesting insight into how crypto can be weaker than theoretically stated -Trying to figure out if this room has a fake fireplace or this building is just that old -It's important to have good taste in friends - it's more important to have good taste in enemies -@mdowd @nickdepetrillo ;-; when is the funeral, you evil spider -@nickdepetrillo @mdowd noooooooo -*My* gmail is working — google just doesn’t love you. Or maybe you caught the APT -@bl4sty @rantyben the correct term for what’s going on is the Double Dominatrix -@thegrugq @i0n1c you’ve always got me, but I think he blocked me -@rantyben @comex @i0n1c I may not be involved with either but there’s a key difference: I’d kiss comex -@MrBuzzy Stockholm syndrome is a tragic thing ;) -@i0n1c @thegrugq @_frego_ @0xcharlie @dinodaizovi @comex I’m secretly involved with comex to the same extent I’m secretly involved with you -@WesleyFlake ruby python .net even java -@fncombo oh. Then *home* takes you to the top of the page. Tab takes you to the first input box -@leethax0r that’s a discovery of the hackers, not the vuln, afaik -So the Linode hack is blamed on ColdFusion - for love’s sake why do people keep using it, it makes php look professional -@jjarmoc @chriseng @quine seconded -@hypatiadotca @kylemaxwell they’re children - children constructing their fantasy society with other children. They do stuff like this. -@hypatiadotca @kylemaxwell they’re children - children constructing their fantasy society with other children. They do stuff like this. -@hypatiadotca you’re not being very supportive of my decision to come out of the closet as Linux otherkin -@The1TrueSean the first one is deleted. I somehow the wrong word -Efficient 1password cracking https://t.co/d9RQUTpjdM -@hypatiadotca I am a bridge between Teenage Social Activist Tumblr and Passively Privilege-Unaware Twitter -@marshray because you’re too microsoft -@akopa only if spoken in sincerity and accord with our mole brothers and sisters -I’m tricking you into normalizing words like microaggression -Saying “lives in a basement” as an insult is a racist microaggression against the noble mole people -I love it when major corporations post 404s to their own announcements -@MicrosoftIP @MSFTnews 404 -It’s actually kind of remarkable that it’s been a day and a half and no clear idea who’s guilty- extremists and whackjobs alike love to brag -@chadwik66 dare I even ask -Good glory some @arstechnica readers need to figure out not all headlines are 100% literal -@fncombo in what? -@bradplumer @focalintent Africa is a great what -@trevortimm @RepMikeRogers @mattblaze contrary to rumor I am not, in fact, fourteen. The basement part is debatable -@Kufat I’m more of a kicker -said abadidea immediately before receiving a letter that she is banned from Apple campus -So I think I volunteered to beat up an Apple engineer and steal the iOS signing key today -@tapbot_paul was that headline cutoff generated or curated? ;) -@grsecurity what's the point of going back to an older tweet and telling me to get over it? I've been over it -@chriseng think I left my book in your room -@bsdaemon @grsecurity ... But since he doesn't follow anyone it appears to be the project's twitter and I got nothin' against the project. -@bsdaemon @grsecurity he already replied, we've already had our spat ... -@dinodaizovi ... But he was at the wrong Marriott anyway. -@dinodaizovi thank you very much, I'm sorry I had to run off so suddenly -Spot the typo ... at least I hope it's a typo http://t.co/1dZ5UuERYG -@dinodaizovi you seem nice will you be my dinner buddy -Let the record show I am sitting in front of Dear Teammate Brandon’s unlocked Linux machine and NOT breaking anything -#srcbos13 so who is my dinner date -@Beryllium9 contains vulns -An oddly enough, java and .net web apps are much more likely to contain directory traversal than php -Veracode brings the data: ColdFusion leads the pack for XSS and SQLi per capita. PHP is the den of OS command injection -@WeldPond don't call large groups of programmers "guys". I'm calling you out in front of the room next time ;) -Next: bothering Boss http://t.co/EiVecqNfXX -@comex I think @dinodaizovi is officially my rival now he's crazy about you -Best line I've heard all day: "and then this OTHER virtual machine in the font renderer..." -@kherge meh I guess -@0xcharlie @dinodaizovi @comex no -. @dinodaizovi is waxing poetic about the skills of @comex ;) -Next up: I sit in the front row and demand @dinodaizovi smile for the camera http://t.co/6kLl4BNeSF -Holding up the “10 minutes, 5 minutes, 1 minute left” signs and hearing the Sonic drowning song in my head the entire time -Hmmm http://t.co/Q6mljSZuez -Sirens. More sirens. Too many freaking sirens. -Also you really shouldn’t be using FTP for uploading in the first place. Use WinSCP or even bare SCP if you’re cool. Change hosts if needed -Next up: @quine the incredible talking koala on Android appsec (He was blocking me on twitter before @i0n1c made it cool) -@marginoferror yes it's just careless and easily targeted -@brentrubell unencrypted -@xa329 it is, that doesn't matter -@thegrugq but their announcements are so cute -@brentrubell no, CuteFTP isn't malware - it's targeted by malware because it's too easy to recover the stored password -I get such a kick out of how "professional" the Blackhole people are. Malice as a service ! -Don't use CuteFTP - malware scrapes hard drives for your unencrypted credentials to your personal website to host Blackhole #srcbos13 -@comex speaking of conference you should be at Source Boston! :o -@innismir sitting in the second row, one to the left… -@attritionorg @zenrandom that sounds suspiciously like not Massachusetts -@DrPizza … idgi? -@kragen private security, private building, we could have not consented and left. -@sakjur because he missed his flight and can’t make it in time. The *con* isn’t cancelled -This had better be the last time in my life an infosec talk is cancelled because of a terrorist attack. -I saw a tophat in the lobby. I know who that is... -#sourceboston hey could whoever keeps knocking me off the wifi cut it out ! Trying to look at cat pictures here -@DarthNull my connection is really bad but it comes from a site called nooelec -@stoicbird Asus W700 - windows 8 -A cute boy asked to take a picture of my hardware! ... no, literally, I mean the radio -@waruikoohii yup -@ra6bit are you here btw ? -Not suspicious, I'm not suspicious, it's totally normal to have big weird cables sticking out of your tablet http://t.co/WyOmjuKOSq -I wonder if Twitter for Windows 8 correctly insists on certificates. We'll find out #openwifiatacon -@zenrandom @attritionorg speaking of: I don't see him here! LAAAAAAAME -My admission to this con is free but I forgot to officially register. However noone will question these credentials http://t.co/SgoXttgn0r -@MarkKriegsman hyperthreading runs in hyperspace and is measured in hypertime -Oh no I accidentally loaded amazon on this shady wifi oh no there's an order in my cart they got me - game figurine? Nevermind it's just DH -I opened google on my phone and when it noticed I was in Boston it offered me directions to the evacuation hotels -#boston My Verizon cell phone lost data… -@JastrzebskiJ man why you gotta harsh my blogging mellow -@burukuru not directly; all the injured got help and the runners and tourists back to their hotels -@DarthNull 7th floor, street side, I probably have an ear for this -@burukuru well I was thinking a little more specifically as that was yesterday... -@DarthNull going on an hour and a half nonstop. -@NinRac but that wouldn’t be internally consistent with my behavior :) -@waruikoohii also an apartment in your town was searched with consent apparently… -#boston okay I’ve heard sirens nonstop for an hour from the Marriott Tremont. Hashtag is flooded with well-wishes, can’t find why… -@wimremes meh, turns out subtweeting them is easier -@locks I don’t, but I like zenburn and desert -@waruikoohii unmarked buses, couldn’t see if they’re occupied, I assume they’re the buses used to rescue from the lockdown zone yesterday -What’s the etiquette for “dude I know you have a crush on me, spit it out, you’ll feel better” -@m1sp <3 -@vogon —> @eevee -Why am I awake WOW that is a lot of sirens why are police motorcycles escorting those buses #boston -@DeeLove92 I’m not “knocking” anything, I’ve merely spent years of my life studying the history of the church. -@WhiteMageSlave being this awesome isn’t illegal -Case in point wow I totally forgot I had all this weird SDR stuff in my backpack :p -@CastIrony last year before Blackhat/Defcon I actually wrote the hashes of the certs of sites like twitter down on paper XD -@rone iPad ; but it explicitly redirects me so I’m pretty sure that wouldn’t work anyway -@hackedy @homakov I think tumblr gets off easy because there isn’t really any secret data to plunder -I’m so glad https :// http://t.co/FfcweLybVE redirects to plaintext automatically I’m not on hotel wifi at a security con or anything -@SimonZerafa it’s a running joke at V-code that I don’t look old enough to be there -@varmapano @savagejen well yes. But I was marveling at and speculating over 3 fatalities vs 130 to 150 injuries earlier. -@savagejen the acoustics of a narrow city street amplify explosions. Source: I was in Amsterdam on New Year’s Eve once -They’ve already said on the news you can expect public transport to be swarmed with cops tomorrow. -Bostonians: I hate being submissive to the surveillance state but tomorrow would be a good day to double check your bag before you go out -@eevee but looking again, I realize that “they” is a smaller error space -@eevee that -#boston I keep hearing sirens - but of course there’s going to be some any night. #confirmationbias -@_wirepair in any case, we are in the city now, and everything is okay, but the hotel searched us -@_wirepair uh yeah where were you (oh right Japan) (carry on) -I can't imagine having hair that short like what keeps your head weighed down so it doesn't float away -That awkward moment when there's not enough shampoo in the hotel room oh wait I'm sharing it with someone with a shaved head shampoo party ! -@aksansai I suspect it would trigger a specific unit conversion card she doesn't have -Accidentally bumped Siri. Well that's a new one (device is running iOS5 because reasons) http://t.co/faypWVsWA2 -@blaufish_ that's pretty much all Christian groups to varying extents ;) their theological pedigree is not particularly pure -Abadidea's Source Boston "Don't You Tweet This" Count: 2 and the conference doesn't start for 12 hours -@bond_alexander I turned 25 two weeks ago so you're good at this -@watAtwist yup but I went with WBC because they're literally praising their god for the bombings -@WhiteMageSlave they were talking about pushing middle age and the guy says to me "but what are you, 19?" "she's 17" -@bond_alexander how old do you think I am? :D -Boss just told someone I was 17 and they didn't question it. -@blaufish_ llet me know if he says Nazis don't count as Christian so I can double block him :) -@blaufish_ lol I blocked him like two hours ago -@ra6bit I took a class on terrorism in college ;) #TweetsThatGetMeOnLists -Hearing twitter say the type of bomb, detonated on the ground, is designed to take out everyone's legs and incapacitate them - which it did -@panther_modern the reports are accurate - I was listening to the radio - one was triggered deliberately and two recovered for evidence -@ra6bit guess it comes to "did the malicious actor actually know what they were doing" -Me watching TV: "I know this is America but why is *everyone* fat? Oh... 4:3 stretched to widescreen" -@lil_lost it correlated very closely with the most crowded finishing time last year -Am I crazy if I speculate someone specifically designed those bombs to hurt but not to kill people? Or is our luck just good with 130 to 3 -The hotel bar is packed, probably because most places closed early. #Boston -Here I am doing Source Boston setup late at night again. In some ways it feels like it's been years. In others, a week. -@WhiteMageSlave we're fine, I promise! Emergency response has done an A+ job -. @SOURCEConf Boston: they will ask your name / look in your bag at the hotel because of today's events. -@kaepora yeah - at Source -@kragen I live here! :) -We're being searched at the hotel but they're being polite about it -I have the most exquisite knack for unintentional implications in my tweets, mainly concerning my quest for pants -@SabrinaPennello #thats #the #point -@Steve31278 it’s not a scorecard But if you want it to be, look up civilian and “unknown” casualties in our warzones… -@Steve31278 ha, also not true. But I’m not a Christian, so I’m not particularly fond of them. -@Steve31278 and probably forgetting all the American terror incidents perpetrated by white or Asian guys with guns. -@Steve31278 again, you’re extrapolating based on a BILLION people, -Btw I am apparently going to Source Boston tonight, as soon as I find my pants. Will crash with boss, unless I get a better offer :p -@Steve31278 the west -@Steve31278 overgeneralizing large groups by the worst actions of any member is how we got into this mess -@Steve31278 I wish I lived in a world where that was true! But women are punished for being victims here, and there are feminists there. -@Steve31278 “Muslim” is a vague category that covers well over a billion human beings. Of course there are some bad people in there. -@Steve31278 right, because noone who describes themself as a Christian has ever hurt anyone for hateful reasons! -@LJonhny #thatsthepoint -Oh, Westboro doesn’t represent your religion? Well of course they don’t, that’s the point -If you’re going to cite one Muslim as proof that Muslims are happy when we’re bombed, remember Westboro Baptist Church is a Christian group. -.@Robbie some people were still on the one I was listening to; it gently tapered off to really minor stuff. -Emergency radio has gone very quiet. Hopefully that’s that! -@pmocek @ioerror check the time stamps. That was the controlled detonation of the third device. https://t.co/iAzahOnqHU -@PatDollard police say this is a fake story. -@thegrugq re: the bridge it was apparently a footbridge, which makes more sense -@IanAKemp "yeah I'm standing by a blue... a blue... um... !$%&" -@IanAKemp I heard it once - ironically, simply because he couldn't remember the word for the type of thing he was standing near XD -Impressed with the good job responders have done helping everyone get back to their hotels or find the people coming to pick them up -@landley the professional radio stations don’t have so much static though - this emergency radio is a mess ! -@paisleyboxers looks like he’s harping on the fact he’s not technically employed by anyone as a columnist -Is @erikrush really a non-parody account? What a wretchedly hateful person. -@CyborgCode but in general, being good at context switching -@CyborgCode well today is a little higher volume than usual because I’m in Boston! -@savagejen emergency response is on the ball. After the initial explosion, everything has been about protecting and helping civilians. -I don’t unconditionally agree with anyone I defend. I don’t even unconditionally agree with myself -@grsecurity good thing I don’t know very many people like that! -@thegrugq @grsecurity you never let me get in any fights by myself :( -@grsecurity okay, sure. I think you’re a jerk. I think you’re rude, arrogant, and trust to technical accomplishments to cover for you. -@grsecurity wasn’t involved in? It was on reddit, that’s not really how that works :p -@michaeldinn radio -Okay, now one of the packages they’re investigating is smoking for an unknown reason. #exciting -@thoward37 not really a camping out in the public infrastructure kind of place - it was sleeting here like two days ago -@Hyder_Khan because I’ve spent the last three hours trying to understand people on the emergency radio and some have poor radio voices -@chronic I’m not Canadian or French but that just looks weird -Now they’re going to investigate a backpack stashed under a bridge - I think they said Waltham? Probably a false positive -All in favor of banning people with deep voices from operating radios say "aye" in a clear, high-pitched voice ;) -@grsecurity Actually I was of the opinion you were reading too much into it - upset over points I simply can't find in the text. -@grsecurity (and I didn't feel like drawing out your trademark condescending remarks, that's why I subtweeted. Oh, look!) -@grsecurity you know reddit doesn't send a new orangered when someone edits a reply, right? That's not exactly a reading comprehension thing -@hemantmehta @WBCSays if it turns out there is a hell, it’s just barely large enough to hold their building. -@miuaf I really can’t figure out why he’s flipping out at @no_structure and my attempt to ask was completely discarded -@fredowsley everyone from work and our infosec friends are accounted for. Don’t use the cell network, use iMessage etc. -@fredowsley everyone from work and our infosec friends are accounted for. Don’t use the cell network, use iMessage etc. -@ralpost @Codepope the context was spender of grsec, but it applies pretty generally :p -There are a lot of conflicting reports about the cell network outage being deliberate and just being overwhelmed. #boston -@akopa I enjoy /r/netsec as mostly being a good news source/discussion center. Get in some good scraps though ;) -@xa329 … “spender” is someone’s name in this case ;) -Like is there some rule that you can’t be a major open source contributor without being incredibly hostile to anyone who has different goals -Back to infosec drama: spender will quietly move goalposts if you call him out on being a jerk. And signs his reddit posts for some reason -@ra6bit I suspect it’s that nothing you’d consider a “burner phone” works on LTE so they didn’t bother. -Based on people saying they DO have service, they apparently think no one would buy an LTE phone for their bomb ;) -@rgov @1DScoop they’re clearly excitable, but they are not the OP of the image, it went viral, can’t find the source for sure. -@rgov so I'm all for having a high level of taking-stuff-seriously until we know for sure we have a solid lead -@rgov usually there's a rash of false positive bombs after a bombing, but this one has had a rash of actual true positives; -@rgov there is of course every chance in the world it’s a photographer or spectator, but still interesting enough to check out. -@rgov it’d only be paranoia if nothing had happened and one was worried abstractly about someone on the roof being suspicious. -(The person on the roof could of course just be a photographer, that's a reasonable thing to do. But still a good lead...) -Sounds like they can't get the people coming from New York patched into their comms systems? -@dridus http://t.co/Y3NooCLtJV I could get out my SDR, but this is handling the load quite well -@dridus (a bystander reported this to them afaict) -@dridus police radio -@PwnieExpress @SOURCEConf just stay off the roads right now! Hunker down and have some local brews :) -#boston #marathon looking for suspicious black male with black hoodie, black backpack, turned away by security 5 mins before explosion -@ataraxia_status @eevee they’re looking to ID the driver to determine if it was legitimate charity or a bomb smuggling attempt -@ataraxia_status @eevee they showed up at the delivery gate at the hospital and were turned away because they weren’t expected -They are looking for a yellow Penske truck that attempted to gain access to hospital and was turned away: may or may not be legit #boston -@eevee the prior is strongly supported by the first responder radio, at least. -@_larry0 @chriseng we’re a town and a half outside the city proper. I doubt it’d be practical to get in for many hours yet. -I just literally heard an officer say “pics plz” (of before and after I think, I’m not positive) -@chriseng (I assume everything will be all clear by tomorrow morning) -@chriseng I was thinking about hitching in a ride to the conference tonight but that doesn’t seem practical at the moment -@DarthNull so even if a route is open now it might not be in twenty minutes. -@DarthNull stay at the airport for a while. They’re still looking for more devices. Multiple ones have been found -@aaqian are you in the city w/o cell access? Just stay inside a private building. All the risk is in public places -@WhiteMageSlave I'm a very unintentionally successful tumblrite http://t.co/Hrh225WW4Y -(Kind of surreal seeing my tweet of warning get copy-pasted to other social networks - true viral messaging in progress) -@ra6bit that’s where I’m at - some of these people I simply can’t make out -One officer is flipping out about the signal problems - it’s strong enough but it’s not decoding properly -@gsuberland at this point it could be for any reason, as there’s no evidence or groups claiming responsibility -@waruikoohii all I made out was JFK -Sounds like they found *another* incendiary device (I'm having trouble understanding the feed, it's very fuzzy) -@Nial those processes are largely automated -Sobering reminder that this sort of thing occurs in some countries all the time. -@jack_daniel I’m still catching up to the very newest tweets, but I’ve seen surprisingly little of that -@jack_daniel well in the 40 minutes since you posted this, it’s unambiguously a bomb now :( -Sounds like there is about to be a controlled explosion of a discovered device #boston #marathon -@AmberBaldet volunteer here - I was outside the city proper - will be there tomorrow assuming this doesn't all go to hell :) -@SimonHoneydew We are a brave city, emergency services is on the ball and all victims have been rescued -All victims rescued. Witnesses being evacuated to Copley(?) Hotel #boston -@okoeroo the first one wasn't :( -Probably a bad time to make a joke about Boston police overreacting to things that look vaguely like bombs so uh keep your backpacks on -Whatever you do, do NOT drive through Boston or take the subway right now. The emergency radio is buzzing with more possible bombs -@chadwik66 I meant wait minutes -Do you ever by coincidence refresh reddit two seconds after someone replies to you and you wait so you don’t seem over-invested -Check it out, the face of medical patent evil: @myriadgenetics -@BadAstronomer the real purpose of metric is just to make snow depth sound more dramatic, isn’t it! -@PwnieExpress is this in Boston? See you tomorrow :) -(I realize they were trying to fit all their hot issues into one tweet, but the result sounds just a wee touch over-violent) -@willjohansson @AsherLangton again, they were just trying to cram too much in one tweet and the result just sounds surreally violent. -@willjohansson @AsherLangton shooting someone who means to shoot you is a completely different question from shooting someone picking plants -@AsherLangton @willjohansson (and IMO gunning down plant thieves with assault rifles is way more immoral than thieving some stupid plants) -@AsherLangton @willjohansson I imagine that’d go down to the levels of generic robbery if it was fully properly legal to grow -@willjohansson … I realize they’re just trying to fit as many issues as possible into one tweet, but the result is absurd :p -@willjohansson since they’re implying marijuana being legal, which is fine, in what reality would you need to gun down pesky garden gnomes -Um… is this political party casually advocating lethal force to protect your freaking garden patch? https://t.co/JdNdjE9FQD -@lindseybieda @puellavulnerata why would you assume male when most western cultures have more distinct female names anyway? :p -@wimremes but the question is, are you in love or in hate? http://t.co/HT2MGIdB0h -Especially confusing is that I land on the tumblr *signup* page and get the error that the account exists when I try to log in :p -@vogon I’m not sure if that’s an ironic ask, but simply reloading tends to work :) -Chrome iOS is doing this thing where it keeps temporarily losing my login cookies for sites like reddit and tumblr -@theproweb and Windows 8 in the bag -@maradydd @attritionorg @wimremes the infosec industry should buy a mansion in a country with no network regulations and all move there -@DarthNull actually I don’t think we’ve met in person yet! -This java patch announcement is so casually glorious http://t.co/UBbKVcq3VI -@m3hr :D -@Twirrim and turn to stone every morning?! -@ReinH he doesn’t really need ranged weapon skills because he can withstand a barrage while he closes distance -Since I am a non-intimidating person with a penchant for carrying electronics, my primary life partner guideline was brute strength :p -@waruikoohii glorious -@JavaKrypt see next tweet :p -Why yes indeed I do make a good target for robbery thank you for noticing -So my plan is to wear Google Glass, a smart watch on each wrist and an iPhone in my pocket and three laptops/tablets in my bag #cybernetic -@focalintent allegedly the alpha of the SDK *is* out. And they haven’t sent this to the SDK mailing list. -@blowdart the date I saw was 2004, so not quite literally ;) -@blowdart the fact that I had never heard of it until about an hour ago suggests it was maybe not a success :) -Funny how Apple, Samsung and MS all seem to be chasing after smart watches because of a Kickstarter for a simple device. -@chriseng #schadenfreude http://t.co/3ECwrR2MBA -@grsecurity @no_structure http://t.co/DWcaDp8SxS -@marcusjcarey that would be the most consistent way, you’re right. -@marcusjcarey another really good question, actually -@marcusjcarey obviously this is actually pretty complicated. But that’s why we need some better legal protections than we have now… -@marcusjcarey oh, that’s *from* the outside to the inside; I was thinking from the inside. -@yourserversdown @marcusjcarey you don’t need a “digital postal service.” Just a legal acknowledgement that it’s private communications. -@marcusjcarey work email is slightly different in that it’s the communications of the company itself, so the company can look at it -@grp well what else would you expect to find when breaking into a lawyer’s email? -@marcusjcarey of course! Just because it’s technologically easy to sneak a peek doesn’t mean it’s ethical. -If the American APT didn’t “see any privileged communications,” that’s primarily because they casually redefine email to be non-private. -@jsjohnst value range analysis -@whereits value range analysis -"Chapter 5: Overlapping Memory Accesses" finally made it to the exciting part ! -@joelknighton ding ding ding 🔔 -"Implementing the model is mere engineering." Well if that isn't the most mathematician thing I've ever heard -@davidjayharris it was a temporary protection against @VUPEN which was unintentionally too broad and hit normal users :) -@davidjayharris Ha, I knew what it'd be without clicking, long story short it's not my fault ;) -@vogon @focalintent no but same genre ! -Kill... me... tell @focalintent I tried. http://t.co/J0AD1LMRi0 -Anti-protesters say protesters should be “grateful” they’re not attacked. Oh England, you think you’re a funny bloke! http://t.co/XibADlIY7J -@joelknighton it’s about static analysis of c -If they introduce a variable that’s a treble clef I’m (╯°□°)╯︵ ┻━┻ -This math book has progressed to using sharp and flat musical symbols in equations. I have no idea what’s going on -@WhiteMageSlave “my”? “Our” :p -@maradydd @kragen *shrug* I felt I would be remiss if I did not say something -@maradydd @kragen … it’s a personal degradation that doesn’t really have anything to do with the argument except hurt feelings. -@maradydd @kragen IMO deliberately using the wrong name is the same thing as deliberately using the wrong pronoun with transgender people… -@pod2g 😈 -@maradydd it’s perfectly reasonable to dislike her but she had her last name legally changed and for a good reason, :( -Said someone who doesn’t like Bloomberg’s proposals: “he should just shut his mouth & run NYC” Welcome to Contradiction Town, hate your stay -This simple post on the early days of bitcoin sudden takes a hard right turn at Whammysville https://t.co/KipTuyv2Bz -@donicer except the ban was blocked by the courts -@kaepora Windows 95 logo is best logo -@nelhage D: -@savagejen \o/ eeeeee -@ra6bit #itscomplicated -Whoa wait Source Boston is Tuesday? Aren’t I working that show? I should probably tell @codeferret_ -@Kufat lol it’s a knife in the iOS font. Explicitly a kitchen knife though. -@ra6bit in general, to greater or lesser degrees, depending :p -@ra6bit rather you just happen to be mostly on the default settings so it’s never an issue? ;) -.@Computermaster actually I rarely encounter people who think “girls can’t computer” anymore, rather, “girls are weird wahh go away” -@IanAKemp I donno, I guess I’m a gentle sleeper. -@ohunt yes. “Well if a few people are mean to you specifically because you’re a girl, have you tried being gender-neutral” -And I swear to the gods of the internet I will cyber-shank the next person who suggests I should simply conceal my gender 🔪 -@ra6bit when you engage with one, you’re not engaging with an abstract intelligence but a set of beliefs about who that person is. -@ra6bit example: on reddit, “anonymous” comments are written by young, reasonably well-educated western men by default. -@ra6bit humans are humans, we maintain an awareness of each other’s perceived physical existence and fill in blanks with stereotypes -@NM_Jeff no, they’re players in an MMO -@wimremes non-player character (in a video game) -Illustrated my dream of a boy telling me about my future http://t.co/GpWg60Cdhd -@pod2g if you can get him to look you in the eyes - he seemed too shy to talk to me at Blackhat :) -@pzmyers @EuropeanAtheist @secupp (which only drives home the point that someone can only truly “represent” you by consent) -@pzmyers @EuropeanAtheist @secupp that’s definitely the first time I’ve seen Myers and Cupp in the same sentence… I hope it’s the last :p -@rantyben @evad3rs and I’m the retro hipster who keeps on insisting @comex was better -@donicer statement retracted, replaced with “bro I think you like Mewtwo too much” -@donicer this sounds like the tweet of someone too old to have played Pokemon first hand ;) -(He said “you’re a ‘girl’ not a ‘woman’ in infosec. If you were older and no longer cute, many things would be different, many worse”) -An NPC in a dream actually said something profound to me about gender relations that still makes sense after I woke up. Hmm. -@0pcode no higher honor -Lol @ people who think “nerd” is an insult -"Keep this quiet - I heard this casino is run by Team Rocket" The sign on the door says Rocket Game Corner #storiesforkids -@Kufat yeah -@m1sp Mispy just because that's your origin story doesn't mean it's everyone's -@Kufat my stepsister's kid, I assume. Though as far as I know my mom hasn't murdered her -Pokemon trainer regrets the Bitcoin crash https://t.co/4v0ZARVEa4 -My mother texted asking if I wanted to adopt an unspecified 6yo. That's not suspicious at all -No YOUR after-midnight tweets sound high -Who was the first person who thought “you know, selling bread with sauce and cheese on it isn’t enough. I’m going to bring it to their door” -The song I made earlier ( https://t.co/z5jCYw0sV6 ) goes with this cutie (yes I think highly of my own characters) http://t.co/K71kPuiLTY -@profoundlypaige the internet *is* my friends -@kaepora *tilts head* -@paniq @0x17h where can I get some privilege filter glasses like he’s wearing -@The1TrueSean that's kind of beside the point at this point -@m1sp are you around? I really need to vent XD -@tsdNull ppmck (I hate trackers) -@mentalguy I mean “learned by making that mistake.” -Listening to everyone’s stories: am I the only one who’s never drank who nonetheless knows not to drink on an empty stomach -@dancapper also he’s naive and drank without having eaten yet today (we didn’t know this) -@dancapper lol uh as opposed to the carpet -Achievement unlocked: someone got wasted for the first time in our house. Made it to the sink. Get this kid a medal -His wife just showed up and dragged him away screaming (her, not him). I’d ask how she knows our address, but we moved into their old apt. -Let the record show that @GWakaMurray is not allowed to ever drink half this much in my house again. -@porsupah cards against humanity -@xEAxEA are you going to make me decode this -@xEAxEA are you going to make me decode this -@Wxcafe cards against humanity -There are currently five (5) young drunk men in my living room. They seem to think CAH is more interesting than my Pokemon game -@kevinlange same thing; most C syntax is just sugar on pointers :) -Understanding pointers to pointers in C: my husband’s best friend’s wife’s brother is cute. -@RouteLastResort lol um if you want to I guess :D, just don’t make millions ;) -@NaNoWriMo #nanothon when I owned more notebooks than books -@misuzulive … okay, I have to ask what’s the story there. -@no_structure science is science ! And Nintendo science is best science. -@Ionustron (and when I do soundfonts, it's the Cello and Oboe Extraordinaire Orchestra) -@Ionustron I like cellos and oboes. Like, a lot. So all my envelopes approximate those XD -My chiptune was just compared to Dragon Warrior, I'm a happy badidea :') -Cute facebook bug http://t.co/YPAOcUgRxP -I woke up and wrote another chiptune https://t.co/CYxUQpuNam -@misuzulive so you haven't seen this picture then? :p http://t.co/QhxIVXN2Ug -@misuzulive I do have it you know, but it's packed in the closet at the moment -@misuzulive kinda creepy that you have a picture of me in your car ;) -@misuzulive ... yes? -@misuzulive matches better that way -@JackLScanlan 😑 -So Psy (the Gangnam Guy) has a new song - reasonably catchy ! http://t.co/4LORxJWlg4 -@ioerror uh, why? If anyone is using that in a real world environment … -@m1sp @WhiteMageSlave so last thing before I fell asleep I thought of a melody and I still remember it and I'm gonna chip it \o/ -@Ordog23 thanks - I went to a party store and they had a huge Mario wall sticker kit really cheap. -@comex so true story I woke up and figured I had dreamed this -@comex I hope @ElderScrolls / Jeremy Soule got their cut ! -@puellavulnerata @GreatFireChina they tweet errors encountered in China. -@kherge not really, as Pokemon is hand-written assembly, so that would take massive restructuring -Suddenly I am drawing a pokemon-style RPG tileset (a black and white world with color accents) -Your husband might be drunk if he complains about the internet for an hour and then is surprised you reboot the router on him -@jesster_king um, you don't need pics, just look up Lt. Surge -@jonelf hang on while we grab the wii, wii-u, xbox, two different 3DS's, ... -There are fourteen devices attached to our home router right now and we're not even trying. #threegeeksonehouse -I don't remember some of these lines... http://t.co/ONHCQfAfab -@nullwhale I figured it’d be in the home button. -@nullwhale if anyone can make it work, they can, and if they can make it work, it makes perfect sense. -There’s a rumor the 5S will have a fingerprint reader - no more annoying PINs, but what’s more fun than security with analog fuzziness? -@notch I think you deserve it; video games can and do affect culture, and yours has a positive creative effect. -Controller… won’t reach… beanbag… let console hang off TV stand by its cables! -@cgiffard and he’s hiding out of paranoia and the first thing he does is flip out and say you wouldn’t make it on the battlefield. -@cgiffard “Lt. Surge! They call him the Lightning American!” -Like, that is the Japanese cartoon character stereotype of Americans. Gun-toting maniacs who saw horrible things in the war. … :( -Funny how in Pokemon Red/Blue, there is someone explicitly referred to as American - and he’s a veteran suffering from PTSD. -Abadidea Plays Pokemon Blue: Delete an older move to make room for TAIL WHIP? [Yes, No, Oh Heck No] -@robertszkutak well even if you don’t formally “win” getting ranked like that already is winning -@OxbloodRuffin well, it isn’t, but I wouldn’t expect the PLA to start using Google Docs :) -@CrappyCodingGuy yes, and blasphemy. It's a replacement for *photoshop.* -@blaufish_ @dildog they are the names of common logical fallacies https://t.co/XS0yGzANdP -Pop quiz: what do these colors have in common? http://t.co/zXmU1UWt7K That's right: nothing! except being hideous! And in Windows 8. -@mikk0j @wimremes you know, there *are* gradients of emotion between love and hate :) -Note: to my mild astonishment, it actually recovered the image automatically, so I'm not out my two minutes of hard scribbling work. -mspaint.exe has crashed. I have been using this program for TWENTY YEARS what do you MEAN IT HAS CRASHED -@mikk0j I uh, do use a touchscreen or seven :) -@focalintent oh I can think of five or six softies who follow me, but they’re not really in User Experience Land. -@mikk0j with some polish, metro *can* be a wonderful touch interface. Metro IE10 is fluid and lovely - but lacks corner case features -There really are things I genuinely like about Windows 8, but there are so, so many little annoying things -@diffkid and implies that straight and poly are inherently at odds. Ha, sure. -@vogon if it was you, please step into my office 💣 -@vogon I mean specifically whoever decided on that hideous shade of green used for Store tile. I need that human’s attention. -I feel like doing a long-form critique of Windows 8, but is there a snowball’s chance anyone with any influence at MS would ever read it? -@dildog http://t.co/F8vJd9IfwB point 9 -I’m 100% for flexible, relaxed notions of marriage, but @salon is falling into disappointing stereotypes of bi http://t.co/PtM7er38ze -@spacerog either it was a transient error or not Verizon’s doing -@The1TrueSean @codeferret_ lying isn't trolling -@The1TrueSean @codeferret_ umm well he's wrong we've never been to the Lemon Tree. Ever. We went to Lanna Thai. -@The1TrueSean um, okay? ..... you know there's more than one Thai place within an hour of here, right? :) -@The1TrueSean you apparently haven't been there I promise it is literally a wagon. -Look it's rainy and no-one can stay awake can we just all concede defeat and go home -@The1TrueSean um... yes it is ? -OH: "I never spoil any of my grandchildren" surrender your grandmother license -Rainy day at the Thai wagon. Yes it's a literal wagon grafted onto the chef's house, it's packed wall to wall http://t.co/PJu8lERRbQ -Someone tell @codeferret_ we’re inviting people over this weekend to play video games and eat pizza and that’s that -@rantyben definitely slightly stabby 🔪 -@thorsheim they all do, it’s just a question of how hard -Current status http://t.co/9Bobou3Fyk -@snare yes I suppose *physical contact to metaphorically indicate emotional support* -@snare hang on I need to find a coin to determine if I give a sincerely empathic response or a trolling one to conceal my social anxiety -@snare whoa there emo pony I think someone needs a hug -If you downvote a purely technical comment and don’t explain why it’s wrong, you’re wrong -@rantyben @thegrugq http://t.co/WOxmHxCQyN -@rantyben @thegrugq sir are you calling me fat Because by local cultural norms I am most definitely not -@thegrugq @rantyben that’s the OTHER Burlington in the tiny northeast corner of the country! Gods learn some geography -@rantyben @thegrugq just checking: you don’t know my address, right? More specifically than America anyway -@pod2g @evad3rs I think he is not very good at just saying he likes somebody :D -@beist don’t think I’ve seen it in any binaries I’ve cracked open - for x64 that would mostly be llvm -My hobby: doing an Unattended Monitor Photo Tour of the office -@bSr43 <3 <3 <3 literally features while I sleep -@JackLScanlan @dresdencodak my gods never before have I wanted a Nintendo plot to be handed over to an outsider -@bSr43 while you’re there, may I have an option to export the asm without the address columns etc. so it’s “valid”? Pretty please <3 -@jyrow5 it can handle four color mode used in dual GB/GBC mode but not full color -@jyrow5 it contains in it all the Gameboy hardware (except the screen) and plugs into a Super Nintendo -I cannot tell you how much it pleases me that the Zapper still makes the exact same sproing sound after a lifetime. -@grayj_ that’s what he — sorry. -It's a Gameboy... with no batteries... and TV-out... and SNES controllers... http://t.co/WRhpsKpO3S -@entityreborn that's covered under smartphone ;) -@RSWestmoreland what did you do to yours, throw it off a bridge? -@TechJournalist in the closet. I don't have a power supply for it actually ! -@MalwareJake yes and not tonight Do you know how hard it is to render a 6502 machine with no disc nonbooting :) -Technology changes, hearts do not https://t.co/lHgjiAiwXp -Welcome to my house. http://t.co/qANPBN2tHF -@m1sp @jesster_king you misunderstand me: a *correct* touch interface uses the pixels it has to scale to intended size clearly as possible -@jesster_king resolution only affects how *clear* the image is on a mobile interface. Physical size of elements matters. -@bSr43 *nudge* hai! On Windows it is segfaulting when I try to export the .asm :( -@jesster_king the tweet about ahh the shampoo is arranged neatly ahh -No-one eight-bits like Gaston http://t.co/k80Lbfecke -@The1TrueSean @apiary @codeferret_ also you forgot to do the math of how long it takes to paint thousands of pixels vs. playing video games -@The1TrueSean @apiary @codeferret_ I don’t think he can distinguish between colors -@The1TrueSean @apiary >steady hand > steady > *trip* -Ooh a Nintendo controller bed set — it’s *painted*? Sorry I am not responsible enough to take care of painted pillows -@apiary I found someone on etsy who will paint pixel art on the face of furniture for $300 I think that would be really neato -Another example of our markov bots being a little too sentient https://t.co/1YoWV70FFU -The answer is, of course, Etsy and the Land of Deep Wallets. http://t.co/qEr0xKqhiK -So I was thinking: we should just do the whole house Nintendo-themed. Where can I get NES furniture? -@SurprisingEdge huh… I’ll have to check. -@thegrugq @ra6bit well that’s not weird and suspicious at all -@thegrugq @ra6bit your problem is probably the Department of Defense root cert. -@rhysmorgan @JackLScanlan @dannolan (remember, otherkin is just a form of Middle School Disease. Don’t stress about it :) -@rhysmorgan @JackLScanlan @dannolan yeah I’m calling Poe on this one. An entire major otherkin blog turned out to be a stealth parody. -@focalintent I don’t know how I am chord, but my keys are all over the place (and apparently very “foreign”) -@rlehmann @thegrugq or America. -@hemantmehta I wouldn’t take the advice of a man whose life decisions were so poor he ended up appointed to a position in Detroit. -@chriseng @The1TrueSean hacking security quiz is the most indisputably valid way to pass security quiz. -@0x17h my uni got over that phase. Their new buildings combine proper Roman architecture with glass fronts. -@lastres0rt yeah it's concave for some reason -Came home to this. http://t.co/ZKEdf2QlXm -@RSWestmoreland @savagejen there are literally ranches in Texas bigger than Rhode Island -DH used Firebug and Burp to make sure he got a perfect score in a security training quiz. I'm... I'm so proud -@savagejen I refuse to be associated with Rhode Island! -@eevee I'm actually bad at distinguishing individual people. I don't know why my brain tracks facial data this way. -@The1TrueSean http://t.co/aFjUUTQ9Fl -@eevee I can tell the Irish from the Italians in Boston, who are both different from Germans further south, etc. All in the nose! -@savagejen that’s a New Hampsha thing! -@traskjd it’s not so secret when it’s the stated reason :) -@trufae http://t.co/DgW9LRU2mN -@vogon I feel like this is by design. Public schools seem to meticulously avoid history that happened within living memory. -Wait, Borowitz is one of those parody things, right? Darn. I’d like to see that that Windows 8 support call. -Look I don’t know a lot about economics but Mt. Gox simply suspending trading because they feel like it seems ridiculous. -@marshray it’s sad, she looks like a nice young lady, who probably doesn’t know that it was stolen from a home. -@RSWestmoreland actually the hardware win key + power key is mapped to that on this tablet. -@jack_daniel I update this thing multiple times per week! -Bonus points: it works fine at the login screen implying there’s a soft keyboard per login session but I still can’t kill the process -… the Windows 8 soft keyboard is stuck unresponsive on the screen. I can’t End Task. I have to reboot because my keyboard crashed. -@WyattEpp @dkdsgn almost as many, but for touch interfaces, you scale to desired real world size. -@echristo how do I git pull from the future :( -Wasn't there some project that converted x86 to llvm IR? I can't find it now. -@wickux I don’t understand why Samsung has so many different models within *one* company. They need to cut it down to 5 or 6. -I know that previous RT was obnoxiously newlinish, but it really drives the point home: android is *hard* to do good UX for -Still reading that math book. Maybe this unsatisfiable polyhedron needs more realistic expectations in life -(That link came from me googling “AT&T microchip” to find out if there ever even was such a thing) -Intel syntax for Intel chips, AT&T syntax for AT&T chips! http://t.co/aIltBAOfkp -@sarahnadav geometrical patterns -There’s a wall here that suddenly populated with blank postit notes recently. They keep rearranging. I’m kind of freaked out. -@inversephase technically correct even though it sounds funny... -@codeferret_ @GWakaMurray I can't get texts to go through. Where's my lunch ride -@rone well, it *is* technically illegal, and carries the risk of accidentally DoS'ing or otherwise making it worse -@CaucusRacer google is doing that thing it does where it knows too much. Happy birthday -So it turns out that New Housemate a) does have a twitter b) follows me c) thinks I need to seek counseling about the shampoo thing. -We're up to *35* counts of code signing certificates stolen from game companies. Mostly those cute Korean ones... http://t.co/Siq99cp3jS -Someone went around exploiting the postgresql bugs to leave kindly notes on the filesystem to patch. http://t.co/hVCbYtfoN9 -I like this guy's definition of winning a video game: more bytes going more up!! http://t.co/Fu9C8Kh0fD -@Davey_Hu well I was working from iPad ;) -I didn't notice the timestamp on this bug until the comment where they question if cellphones can do the 64-bit math https://t.co/3HPlDXyPb3 -@Davey_Hu ...? -Everyone’s talking about the evaders’ slide deck but I can’t get the darn thing to load. -@_wirepair I contend I definitely saw a picture of you with your wife in a yukata -@_wirepair @fredowsley look stop trying to dazzle me with all your different words for ways to make a tall skinny guy look ridiculous -@fredowsley (I’ve seen @_wirepair in one, I know you can manage it) -@fredowsley yukata, Fred. I mean the yukata. -@fredowsley yukata, Fred. I mean the yukata. -@fredowsley please to be posting full photo of you in dress for my Embarrass On Demand folder -Good morning! Abadidea's Guide to Internet Arguing. http://t.co/F8vJd9IfwB Intent matters. Behavior matters. Context matters. -@DarthNull idk but Google did officially attempt to purge Android of them. -Another Windows app store gem: YouTube video downloader. I would avoid hosting a paid TOS Violator Kit of my competitor's product -@amanicdroid it's an app called "World of Warcraft" I think it literally displays a twitter search for "wow" -Like does Microsoft not realize that filling the store with transparently fake brand name apps doesn't do them any favors -Oh look, the Windows 8 store approved an app called "World of Warcraft" which uses the official logo. And has GPS permissions. -.@silentbicycle I think I'll start putting Schadenfreude down as my corporate sponsor -... as long as it's not in software *I* run, of course. #PoweredBySchadenfreude -#ThreeWordsSheWantsToHear unpatched RCE nday -@whitemageslave #nationalsiblingday -Why do the timestamps in Twitter for Windows 8 think I am in Europe? I've filed jira tickets at 2am before but give me credit it's 10:20pm -@iDark_Link No it won't. You see aliens because iOS simply lacks the Unicode symbols. It says "you are on a desktop" -@L0sPengu1n0s only in metro -@iDark_Link really? Because no-one else does... What does it say? -Windows 8's autocorrect is incredibly dumb. Like someone has a patent on stupid obvious techniques they didn't want to license :/ -@L0sPengu1n0s it says "you are on a desktop" in weird Unicode letters -http://t.co/h8PFyIzCNs very long guide to ARM chips currently or soon to be in consumer electronics -@chriseng @focalintent Darnit not the database I was hoping for -@ShadowTodd all I want to know is if he ever published this opinion before Mr. Ebert’s death? -@JackLScanlan @dannolan and time and time again we’ve seen that to dethrone a standard you must be *way* better -@JackLScanlan @dannolan traditional notation is not particularly optimal I’d imagine, but that doesn’t look any simpler -Being a crazy woods hobo is fine and good as long as you don’t steal from disabled children to enable it… http://t.co/wC8h6yxInf -Apparently someone on reddit gave away large amounts of bitcoin immediately before the crash http://t.co/GJg1KIgkCl -@hidgw it’s working! ;) -@nickm_tor well that’s oddly Wiccan. -@jeremywsherman well too bad because I’m a computer scientist who bought a book on computer science and this is *extremely* user-hostile -@jeremywsherman or… like … *words*? -@jeremywsherman it’s a book. It uses three different A’s and an ‘a’ on one page -@jeremywsherman I don’t see how that illuminates slightly different fonts for the same letter meaning different variables at all :( -@jeremywsherman well I was reading "A bla bla Cursive A bla bla bla Bold A" -Also apparently anti-Windows Chrome because it just has to be special -@DrPizza casualty of war -Check it out, anti-smartphone DRM: 𝖸𝗈𝗎 𝖺𝗋𝖾 𝗈𝗇 𝖺 𝖽𝖾𝗌𝗄𝗍𝗈𝗉 I'm patenting this -@thegrugq @WeldPond yes, but apparently it’s not good PR to say that too often. -@chriseng gods FINALLY ! (I hope you mean the database I am constantly complaining takes too long to query) -@albert_kim not C++!! Actually I recommend Lua for total beginners… -@Kurausukun you can’t possibly screw up ASCII no matter what you do or don’t do because it’s natively supported down to bios level… -@quephird it says 'monospace' in funky Unicode letters. -Mildly astonished those don't show up on iOS... get on the Unicode ball! -𝙼𝚘𝚗𝚘𝓈𝓅𝒶𝒸ℯ 😜 -If I can't read the equation aloud without annotating whether the symbol is sans, serif, or extra fancy serif, reconsider life choices -@focalintent at least programmers have discovered the concept of names with more than one letter -@wickux too upset for grammar -Why would you use the same letter in two similar fonts to mean two different things in the same equation mathematicians are horrible people -@angelXwind @yarmn so long as there are techies who remember being teens, there will be filter systems that are easily bypassed :) -@angelXwind ... T_T -@judsontwit well - there are countries where the middle class can afford one decent device but not two. So tablet/phone hybrid is attractive -@jlwfnord you sit with those people I blame for things, so I blame you -Jira has decided it's occupying a quarter of the browser window today. Okay. -@thegrugq … why did they even buy apple hardware then -@thegrugq not any more so than being an all-Microsoft shop, IMO. -@lukegb @thegrugq yes, UK, you’re important too. I’m sure you’ll have an empire again someday *pat pat* -@pokemon_ebooks I bought it at a casino. Because Pokemon have no rights -@thegrugq yes, but that’s kind of my point, bulk purchases is where it’s at with this thing. -@thegrugq how is Malaysia getting them shipped then? :) -@focalintent — and it sells like hotcakes in countries where the middle class can afford one device but not two. -@focalintent it reminds me how the Galaxy Note was “bad” because it’s like a phone or tablet but not quite either — -@judsontwit I don’t know about BB but Galaxy Note is another thing Americans called a failure that sells well abroad -I feel like those who projected the Chromebook’s failure weren’t thinking globally http://t.co/RZWUMZSAeu -@profoundlypaige they can keep it -@JastrzebskiJ I’m pretty sure that’s literally impossible. The blocks are 4KB. Something is up -@futurecat @fabpot off-handedly I’m pretty sure that will still work but at this point I play the “I’m just the C/C++ person!” card ;) -@futurecat @fabpot so we find specific technical errors but usually not errors of high-level design (“click here for free admin account”) -@futurecat @fabpot generally it’s completely automated but certain things will trip the system for manual review to double check -@futurecat @fabpot @Veracode we do actually! We can automatically find SQLi, XSS, and most other PHP vulns in the source code. -I see blurry monitors. They don't even know they're not at their native resolution -Consistently above-freezing weather! Free from the tyranny of having to remember to wash socks! -@MarkKriegsman @meangrape so for the second time in my life my “job” was to get good grades for someone else’s reputation, lol. -@MarkKriegsman @meangrape I actually went to an expensive uni for rich kids who didn’t make straight A’s in college, on scholarship… -.@meangrape @MarkKriegsman Welp I guess I’ll be one of the last lower-middle class children to have ever gotten a degree! -@micromaxi did you know your grammar gives you away as Dutch? :) -@psobot gods don’t encourage them -@mdowd well in this industry 27 is middle age so I’m pretty sure you don’t have that many years on me… :p -@mdowd well mine ran Windows 2000 so what’s more extreme than late starter :D -@pzmyers may I question if shibboleth is the best word for what you mean? -@mdowd didn’t have my own computer yet… -@hackedy the way of the new programmer is “I’ll do it the first way that comes to mind.” That’s how php happened -@hackedy @eevee it applies to everyone: a vast compendium of mistakes to not commit elsewhere. http://t.co/GHsl4VRgjz -@bobpoekert http://t.co/FYcDx8fpyF -@thegmanehack actually, I wish I had time to know… -When I was in middle school, every time I wrote < and > I drew alligator teeth and eyes on them. -@attritionorg I’m winning the dedication lottery with heap spray! -Why can I understand buffer algebra but I couldn’t pass seventh grade math like what gives -@schelljw for the VPN, get the generic Shrew VPN client and follow the configuration for a Cisco client on their wiki -@maradydd I imagine it’s a function of how old they are :) -@maradydd he’s a physicist… -@xa329 … but he put all the shampoos conditioners soaps in one row rather than willy nilly -@xa329 there better be no alcoholic cough syrup in this house. I’ll get violently ill if I accidentally take any… -Oh my gods, housemate (henceforth HM) arranged all the bottles in the bathroom, I don’t think I can handle this much structure in my life -@dan_crowley I think it just came down to: it’s like Pinterest -> but it’s not explicitly feminine -> therefore it’s masculine… -@akopa we solved many of these problems from a different angle, by starting from binary rather than source and working backwards -@dan_crowley it wasn’t (official) marketing it was just some guy’s explanation -@null_ptr Value Range Analysis: Towards Proving The Absence of Buffer Overflows in C -Yes it is my book, not a library's. It is complicated and needs doodles to demystify it. -Tonight's book vandalism is dedicated to @chriseng http://t.co/c9N8Tav3ue -@mister_borogove @m1sp obviously a weather forecasting program isn’t conscious, but I consider that a human decision making tool -@mister_borogove @m1sp the implication that some political parties are less conscious was not intentional. -@killerswan @mammothhq perhaps in the mind of whoever called it Pinterest for men - it wasn’t corporate marketing, just some guy. -@mister_borogove @m1sp I’m a fish, I’ll eat this -> I’m a squirrel, I’ll stockpile this -> I’m a human, let’s talk sustainability -@mister_borogove @m1sp I define consciousness as a gradient proportionate to the ability to make decisions without immediate results -@jpgoldberg ethics is hard :( -@m1sp @eevee … and it turns out that’s fairly common but people are terrified to admit it. -@m1sp @eevee … I may have told six thousand followers about my mechanical difficulties consummating my marriage, recently… -@eevee @m1sp I’ve found success freely intermixing personal and technical tweets, few mind and many enjoy if you’re sincere. -@m1sp @mister_borogove just run it in Dwarf Fortress -@m1sp but it means we all learn by conditioning to never look straight up because it hurts. Strange existence. -@m1sp though I find it strange to think that our eyes are incapable of directly examining something that’s in the sky *every day* -@m1sp imagine if we didn’t have long periods of darkness at regular intervals that caused us to go into suspended animation all the time -@eevee not to inflate your ego twice in one night but I practically have that thing hotkeyed to send to young programmers -@m1sp this is going to sound really sappy but you getting on twitter late in the evening is the second sunrise of my day -So I initially heard @mammothhq described as “Pinterest for men”. Because generic, neutral pinboard sites are for men? idgi -@no_structure @trailofbits I hate you -@eevee … I apologize for mis-speciesing you. Wise unevolved Pokémon -@MarkKriegsman wow that is actually quite a drop -@a_greenberg … wow. Was it at least their own name? -@C0deH4cker in the context of “film” specifically, that doesn’t matter much. Actors always do weird things to get it filmed right. -@_wirepair yeah except 640x480 secondhand recordings w/ background noise are like, a hobo’s version of a pirated film, who does that -@osxreverser I find it amusing all the… ugh, I shouldn’t do this, I don’t want to encourage you anymore. -“Google Glass is going to revolutionize film!” Do these people not know that strapping cameras to your head has *always worked* -@AndreaJessup I can’t know for *sure*, I don’t know him well. But his behavior is indistinguishable from any happy, naive 6yo. -@AndreaJessup like I said — I don’t have a problem with him smoking, I have a problem that he seems to be killing himself and might not know -@AndreaJessup the fact that there exist people who never reach mental and emotional adulthood is a sad reality of our fragile flesh. -“My philosophy is more complex than you just described!” “So is Pokémon, but you don’t need a degree in it to know it’s pretend” ht @pzmyers -.@eevee is a wise man and I won’t RT his entire commentary on making jokes at others’ expense and being surprised they’re upset. -@ErrataRob cash out, quick… -@seabre that sounds less … reasonable … -@seabre makes sense; forcing a mentally disabled person to go cold turkey and face withdrawal, in the hospital, sounds like a terrible idea -@williampietri … and children’s TV stations, who are in it to make a killing, won’t even depict cigarettes. So that’s pretty low. -@williampietri preying on the mentally incapacitated is one of the few things more wicked than preying on the ignorance of children imo… -@JastrzebskiJ like, when you see an obese child- not overweight, but *obese*- either it’s a medical condition or their parents need slapping -@JastrzebskiJ as disabled as he appears to be? Yes… because it’s someone else failing to responsible wrt him. -@puellavulnerata @PalantirTech … that’s some misleading marketing if I ever heard it. -… like, he’s an adult, he can smoke, but if he’s 8yo on the inside, isn’t the right thing to do to keep an eye on his consumption? -There’s a very mentally disabled man who lives here who smokes too much. I wonder if he understands the risk, and if not, who enables it… -Random shot of DH and his BFF http://t.co/5kPWMfzdpU -@Ryan_Jarv link to what? iMessage is or was down :p -@The1TrueSean "do you have his number" "no just his twitter" "ask if he's still coming" -@jinkee good thing I'm not a man -@raudelmil ... Yes -@vooood @allixsenos I meant bad press for the Feds that it was implied it was difficult for them. -@chriseng @focalintent @markkriegsman it's a textbook not a novel it's here for my needs -@focalintent @MarkKriegsman http://t.co/EPj1p85o4H -Why do books gotta use all these fancy unicode math symbols? Why can't everyone standardize on C notation like civilized people -@focalintent globally trending :) -@Xaosopher (and even Team Android resents being Team Android ;) -@Xaosopher if it was your primary means of contacting your best friend/girlfriend you'd be annoyed too :) it's like private twitter -And if you think that's no big deal, there's a teenage armageddon going down if you search twitter :D #limitedtextplan -iMessage is down! They're installing that interceptor the feds asked for after the bad press. -@davidjayharris pretty sure that's the right cert. Chrome doesn't have it in its store because it's a private MS cert. -@jonelf the "somehow" is by being unashamed of price. -@RSWestmoreland that's a nonsensical definition of real. -@focalintent http://t.co/SGo8XObsI8 -I may or may not have just raided the office supply cabinets and took all the pink things. -@letoams I don't think my connections to the 10.0.0.* space are bypassing the vpn, at least ;) -@focalintent ps spamming you with more tickets :p -@RenatoFontes like I said! 😄 -@focalintent so it's Stranger's Fetish Roulette? 😩 -@RenatoFontes don't call Google ugly! -(I'm technically not logged in, but all these tracking cookies amount to the same thing.) -Deleted tweet to correct to: when it thinks it knows who I am, Bing dramatically over-emphasizes result freshness. No login == good results. -@blowdart and I have a 100% success rate crashing these things by generating too many random touch events in one gesture -@blowdart all of them! Well, most of the metro apps I actually use are third party. This time it was a Google music player -@dhicynic yeah I already filed a ticket with IT and you can guess how much of priority it is since all provisioned machines are Win 7 -Oh, this Windows 8 metro app is acting funny. I could control alt delete, or just scribble on the touchscreen until it crashes. -@marczak we seem to have this instinct to propagate interesting experiences. -@focalintent look I've seen our customers' code too but that's just mean... -Why do good hardware companies usually have bad software departments? You'd think it'd be easier to find good programmers -@MalwareJake the more attention I pay to why MS does what it does, the more I see short-term hacks cause long-term pain. -@WarOnPrivacy (though they have super sloppy marketing, so no one knows the difference between Windows 8 and RT) -@WarOnPrivacy You know Windows 8 runs everything Windows 7 runs right? It just also has this gaudy other thing. -@MalwareJake in the case of the VPN client it's clearly Cisco's fault. "Disable driver signing" -@MalwareJake I'm reasonably sure it's Cisco's bug. MS has taken a harder line on not breaking their implementation for others' ease. -It just now occurs to me that *both* Cisco VPN and Cisco corporate WiFi routers do not work with Windows 8. For goodness sake! -That's why humans rock - we are compelled to share things that our brain liked. -I find it fascinating how, when a person encounters something they think is neat or clever, they feel compelled to share it - with anyone. -@djrbliss @matthew_d_green @tomrittervg huh I never knew that either. Makes more sense. -@djrbliss @matthew_d_green @tomrittervg huh I never knew that either. Makes more sense. -So @directv_sales is trying to solicit me for a purchase on twitter without prior contact. Hey geniuses that's spam -@m1sp @WhiteMageSlave http://t.co/uHRxwTPs8f -@vogon it’d be wasted on all the old folk here… -@TomRittervg @djrbliss @matthew_d_green if I had to guess: to save bytes? (I’m assuming md4 has at least a slightly simpler implementation) -The difficulty I’m having pronouncing words right now makes me sound dumb. Which shows that sounding dumb != being dumb. (Hold your snark) -@jinkee it’s actually my tooth! My toof. -Ha, the DDoS against Westboro is not being prosecuted…! But neither is the one against Bethesda :’( -@thegrugq it’s April, so surely at least some colleges are having their spring break right now. They stagger to prolong the effect. -I wonder if the lawyers of prenda even realize that @arstechnica has been covering their clown show with increasing glee. -@thegrugq not sure if in US, or judging us based on spring break tourists. -@thegrugq but… but… how did you get a picture of your camera -@i0n1c blocked from following? 😱 But how am I going to keep up with one of the keenest minds on the cutting edge of the industry… -I somehow hurt my mouth on one side. It hurts to clearly enunciate certain letters. So now I have dish affectashion… -@The_Evan @DrPizza obviously bio-evil is objectively worse than crummy games. It just lacks that feeling of kicking a puppy while it’s down! -@stevelord seriously? D: -@The_Evan @DrPizza games like the sims are massively popular with non-nerds, and there’s nothing *personally* spiteful about bio-evil. -@sakjur I don’t think Apple breaks a particular many iPads -@osxreverser I just felt like showing it to you. Hawkeye enjoys being salacious for you. -@stevelord why on earth would you do that when OSX has built in support -@_____C I don’t even remember where I got it, just some stats on teens and phones -EA keeps beating out all the other scumbags in “worst company in America” because it’s uniquely personal: here’s a toy! I broke your toy. -@osxreverser this tag is dedicated to you. http://t.co/RHcZK3dLQ5 -@DrPizza uninstalling and reinstalling did fix it for me… after it was reinstated in the store -I got the VPN working on Windows 8 using Shrew... and I can access stuff in Chrome but not IE! -You know maybe if Cisco VPNs "just worked" on Windows 8 I wouldn't have this problem. "Just disable driver signing enforcement" -Apparently I can share the VPN *or* the general internet connection but not both. -If my Mac is connected to a VPN, and my tablet is internetting over the Mac by Bluetooth, why can't the tablet reach hosts through the VPN -@flyhachi no it always does this. They changed behavior a few weeks ago and if you're a high-volume user it's unmanageable -#UIRage I just had to refresh Twitter's connect tab in the official client 23 times after not using it for one day. That's absurd. -@L0sPengu1n0s look, I know there are cities somewhere in Florida… but it’s a big place, and mostly swamp… -Point and laugh. http://t.co/w88QnMBUYu / @WeTakeYourClass -@HyShai schooling == exposure to more information and ideas (on the whole our schools are bad, but not evenly bad) -Isn’t it amazing how whether being gay is wrong depends on whether you’re in a rural state with less school funding? -@eevee probably, but that wouldn’t bother me as long as their site is legitimate -@jesster_king @hypatiadotca @todoist lots of things have free tiers that don’t come with data disrespect. I’ll complain if I want ;) -@jduck @justdionysus … ie, I doubt there will be a free and open source one worth its weight anytime soon. -@dildog Facebook and Microsoft aren’t enemies; wouldn’t be surprised if they license Skype… -@jduck @justdionysus I’m aware; just saying, these things do exist, but they’re corporate funded… -@comex I’m on an iPad keyboard fail roll today -@comex … this weekend! Do you want a copy of the first hundred-odd pages of my other project p -@jduck @justdionysus I’m on a roll cackling about internal tools. But Dionysus declined my offer to drop everything & work here! -@Furyhunter @Chispshot command and control! -@RSWestmoreland hopefully he won’t consciously remember it but yeah… -@jduck @justdionysus *cackles madly* -@hckhckhck yeah -Aaaaand my iPad now autocorrects cc to C&C -Does anyone know how similar the http://t.co/1FWc4yJFp0 Authenticators are to on-brand RSA tokens on the inside? C&C @cgiffard -@cgiffard I doubt they’d care very much; recovering the seed from hardware isn’t in their threat model, they only care for remote logins -@cgiffard Actually buy some of the world of Warcraft ones, they’re very cheap. Good starting point. -@RSWestmoreland (I think it’s reasonable to let your 4yo walk off with a family friend at a picnic… you don’t expect adults to be so stupid) -@RSWestmoreland … and there’s not really any point in dragging the kid’s parents into the spotlight if they weren’t in the room. -@cgiffard a really good question! I have no idea. My work wouldn’t be too amused if I went through a few dozen. -@RSWestmoreland 4yo not related to the sheriff. It was a picnic at someone’s house. Could be anyone’s kid I guess -@cgiffard Recovering the seed from the token would be big news. They’re designed to wipe themselves if you break the seal. -@cgiffard you start by emailing an attachment to RSA… -@rantyben I don’t always get foreign words off the internet, but when I do, I get them from hateful wicked trolls -@tenfootfangs is this a trick to get my question mark ratio even higher? -@tenfootfangs are we using the Socratic Method? -Are as many of my tweets questions as @abby_ebooks would imply? -@chriseng @abby_ebooks now the question is if whoever scours Twitter for veracode mentions will think I'm off my rocker -@torvos I'm sure that's mentioned at some point, and possibly by a cop because cops are "cool" to 7yos, but it's not a necessity. -@torvos school resource officer is a polite way of saying a cop whose beat is the local schools. Not really a fan... -@torvos ... I know we have a reputation for liking guns, but we don't teach shooting in schools... -@leethax0r one of them was a cop. That’s both reason to have a loaded weapon and reason to have way better common safety sense -You wanna own a gun? Okay sure. First question: are you responsible enough to keep a 4yo from picking up a loaded gun right in front of you -Adults pull out their big-kid bang bang toys to show off. In the same room as a small child. Someone dies. http://t.co/TTYAwEPtYb -@janl well that’s good because the concept sounds interesting but I am so not buying another Mac to serve JavaScript ;) -I’m glad the article on Shodan ( http://t.co/rYA1j07sec) doesn’t paint it as a terr’rist commie hacker thing -@nullwhale apparently you can manually browse to the gold server and use the SSL without gold. They just don’t advertise the fact. -Charging extra for SSL is like charging extra for food that meets health and safety requirements. @BoxHQ also does this I think… -@spacerog that’s more of a movie plot than something they’d ever do in this political climate don’t you think -@leastfixedpoint @zooko … this is the first time I’ve ever seen a web framework that “only runs on OSX.” Like really. -@miniBill thank you for the link, but this happened a while ago and I already laughed at them hahaha :) -@_yossi_ it’s a joke. I’m “twelve”, but I just had a birthday! -@hackerfantastic I didn’t mean to imply it’s totally okay. Just that China is not going to demand your extradition… -@hackerfantastic there are way more malware operations going on in shady countries than there is law enforcement prepared to deal with it… -@TehOhJay I’m not particularly worried about FEMA and USPS :) -Oh hello, three letter agency social media surveillance crews. I haven’t messed with any C&C servers in any country. Since I turned 18. -@TimBiden not me *personally*… -Messing with C&C servers in China is at the top of the list of fun things that are technically crimes that you’ll never get in trouble for -@selenamarie nah. DRM. It’s a real racket. -@apeiros until there was *money* in it, at which point it was taken away… -@apeiros Essentially, the principles of equality have won, but we have decades of mop-up ahead of us to clean millennia of grime! -@apeiros it is, at least, a lot better than it used to be, and getting better; as ever there are always a few who need to be dragged along -@wimremes @andreasdotorg we have really cute internal tools I wish I could show off :( -@andreasdotorg not me personally but it seems @weldpond is every time I turn around -@andreasdotorg it’s very automated. But you get a report of vulns, not the decomp itself, no one external gets those -@fearthecowboy @Future_Garrett @hypatiadotca +1 for actually registering the account first! -@andreasdotorg nah… we really do essentially have “decompiliation as a service” -@andreasdotorg @justdionysus we offer Better Dataflow Analysis Than Yours… In The Cloud -@justdionysus … or you can come work for us and use our toys -@justdionysus I used computer crayons http://t.co/l6DOzKvYIi -@justdionysus dude didn’t you see my chart? Get out some crayons and start coloring registers -@docsmooth @0xcharlie I’m just saying, the original context was teens -@0xcharlie aren’t your kids like, five years old though -@0xcharlie elite haxorz tend not to obsessively stifle their children. I hope. -@cji did your shoes just tweet at me -“70% of teens actively seek to hide their online behavior from their parents.” The other 30% are victims of forced Facebook friending -@Worthless_Bums @Tomi_Tapio you like music, he likes music, it’s meant to be :p -@Packetknife I’m just sitting over here like: I’m an American and what is this 🇺🇸 -@Viss if your huge spike lasts more than four hours, consult with your doctor -If your reaction to a foreigner getting pulled over for speeding is “he should be thankful the cops didn’t <ridiculous overreaction>”… -@alongland @i0n1c I would not wish a confrontation with American cops on anyone :( -“Artistry in every sip” I may be the kind of person who buys Starbucks, but this marketing needs to tone it down a notch -@apeiros @whitequark 'twas in fact the very man who presumes to claim he is my husband ! -@jesster_king it's still noodles and rice but like, different recipes. Tastes healthier -The Thai food stand made fun of me for changing up my usual order... so I guess you could say things are getting pretty serious -@chriseng nope! DH is screwed. -@m1sp that would be a twist ending... -@Unwitnessed I'm married to T; his best friend is G; T just called me G->Wife -Guess who just called me by his best friend's wife's name, in front of his best friend -@hypatiadotca in the car, I just now realize I suddenly departed -@unixronin she doesn’t have one lol -@maradydd I can’t stand him but I support his human right to share his writings so I wouldn’t “blame” you. -@ra6bit meta-irony is what I will be remembered for -@unixronin that’s not how twitter works… -Which is more dignified: to text my mother “stop reading my twitter” or just not answer -@blowdart good, because it was tongue-in-cheek -Two datapoints: Ida Pro and (Grace) Hopper.app. That's a trend: disassemblers are ladies. -[pdf] @malwarelu's take on APT1 analysis http://t.co/VQc8pe6pDi -@ebcube no, an alias for "google it FOR ME and insert the url FOR ME" -.@ebcube notice whether I criticize being barbaric or civilized depends totally on whichever lets me be lazier -@ebcube or I could just automate it like a civilized person! -@JastrzebskiJ yes, like so -Needed: for my browser to detect me typing, eg, !xkcd:theoneaboutstandardsproliferation and fill in the URL as appropriate -@mof18202 yup. -"An email was automatically moved to junk folder. I'm going to tell you this but not provide a button to see the specific email." #UIrage -@Sektor9 they sound *exactly the same.* -I found a gif of me on tumblr http://t.co/tyucdfByo1 -@zooko just saying, the internet isn’t as full of stupid, ignorant people as it first appears. Many participants are still in beta. -Dear newscaster: you say: “we’ve lost a great Briton” I hear: you lost an entire island and change. How did you manage that -@thegrugq I’m thirteen now! -@m1sp and it certainly does not sound unmistakably feminine to my ears! -@m1sp “Margaret” is a name that has almost vanished from America. They’re probably 11yos who have never heard the word. -Internet discussions strip most of the context of who is participating, which is both amazing and confusing. -Super awesome android boot loader hacking by @djrbliss http://t.co/Ae6IplGLPn -@rubbsdecvik I’m just saying, if you get into an argument with an 11yo and are baffled by how “stupid” they are, you’re being foolish ;) -@blowdart 13. -@ereslibre not that they’re usually eleven but that they usually COULD be eleven; they’re well-mixed and often inconspicuous. -@rubbsdecvik there’s a big difference between correcting an 11yo and treating them like a particularly ignorant 30yo. -Anytime you’re upset with someone on the internet, stop and ask yourself: could this person be eleven years old? The answer is usually yes. -Now to brace for the wave of old people angry that eleven-year-olds on the internet haven’t heard of a famous old person who passed away. -@rantyben *backs away slowly* -@JoelEsler @iseezeroday … I feel like putting this on the internet isn’t fair to this kid in the long term… -@The1TrueSean @codeferret_ ask him 8) -Artificial shadows in user interfaces are fine... as long as they don't lead to some sort of non-Euclidean nightmare #UIRage ! -This PDF reader shows a thicker shadow on the bottom edge of the page, implying each lies on a lower plane yet appears the same size #UIRage -@m1sp :D :D :D->-< -"I may be selling my soul to DnD" "As long as it's not 4.0" -Whoa, I hadn't seen New Housemate in about two years, and he... grew into his facial features I guess? -@rubbingalcohol @matthew_d_green it's been fixed I guess. A javascript injection vector. -@locks just making fun of megatokyo :) -@flyhachi THEY CALL ME... HEIR OF THE MAYFLOWER -@flyhachi then you were born about 0 miles from where my dad was born probably :p -@joshrossi because coins can be permanently lost and there's a finite amount; I'm not an economist though. -@joshrossi I think I wish I had generated some when it was really easy, but long term it will fall apart -@K_DAN_Jr thank you, trying to catch up after neglecting developing my abilities for a while... -@locks #sadgirlinthunderstorm -@ra6bit or milk and eggs gathered in a humane way -#sketch this is probably the best thing I have ever drawn... in pen, because I ran out of pencils http://t.co/fH5dDC1r2f -@elwoz sure, I guess, if you swear not to leak or that villainess shall claim your soul with a giggle. -@elwoz yup... more than half done, finally... -@Abablabab http://t.co/MKUjr1a2pn -@Raxphiel redheads or sword-wielding maniacs? -@m1sp also if you get on chat I will share some really creepy Plot with you -@m1sp I ended up incorporating it as a gag into the script. -@Tomi_Tapio I do a lot of sketches with more dynamic stuff, but I never have the patience to make them polished. http://t.co/NnULRWTa8F -I bet him and New Housemate pulled over and are having cuddles! Manly straight cuddles -He left Virginia ten hours ago and I haven’t heard a peep since… not answering his phone… I know it’s on, he can’t get anywhere without GPS! -@elwoz (she is a Dastardly Villain in my novel) -@elwoz well what kind of girl goes out without her sword -@codinghorror I have like a 30% on a link I posted last night, I suspect you have a very high ratio of dead account followers. -I can art! I can draw cute redheaded freckled girls http://t.co/oBGzCbeS0w -I can art! I can draw cute redheaded freckled girls http://t.co/oBGzCbeS0w -@m1sp I just accidentally drew some lovely feminine geographic features on young!Rashk because I drew him too pretty -@eqe their god invented refrigeration specifically so banning things due to ease of food poisoning was no longer necessary ! -@tapbot_paul noscript, I guess... -@RSWestmoreland oh, um. I find it kind of odd everyone else is casually suggesting I not wear clothes in front of a man I'm not atrracted to -What about zooplankton? They're animals... (I don't actually dislike vegans, just definition trolling) -@bmirvine everything that's ever been exposed to air can contain insect parts! -@KrakensDen honestly I don't know but all soil kind of has decomposed animal matter in it somewhere don't you think! -@homologygroup without having triggered it myself, it appears to be getting malicious javascript onto the oauth page. -Apparently figs aren't vegan to some because they tend to contain insect parts. Pretty sure at that point nothing can ever be vegan -@tapbot_paul (where "just worked" == it auto-propels you through oauth and adds the app) -@tapbot_paul I'm not sure, but one of my followers reported that, with javascript on, they went to the site and it just worked -@thequux ... you're CFG-sexual? -@TinyPirate @Tomi_Tapio I generally don't play online games that only have (clearly) male avatars; I get misgendered enough with *this* av! -Twitter has deleted the tweets known to contain the malicious link, but is the underlying vuln fixed yet? /cc @mikko -@RSWestmoreland there's a third signature line on the paperwork waiting for him -@sakjur yeah; start with 32-bit. -@Voulnet check @mikko's feed. -@snrson well, he's a straight male, so....., -The long-promised housemate is arriving today. Dangit, I have to start wearing pants in my own house like some kind of civilized person -@inversephase I’m not sure what else you could have possibly expected! -I’m going to commit a minor sin and timezone-repost my color coded disasm data flow chart because I think it’s cute http://t.co/l6DOzKvYIi -How internet fighting works ;) http://t.co/VHow16f9qd -@davidjayharris I would definitely avoid ones that are double-wrapped in shorteners so you can’t see where they really go -@NoMoreCloset @panther_modern they can add an arbitrary app to your account and start tweeting as you. -@panther_modern I RT’d some things of @mikko -@miaubiz no it’s not -@nullwhale also anyone can reimplement the exploit on a new domain -@nullwhale I’m pretty sure it didn’t start out with that. -Apparently it *is* true, there’s an exploit for sending you through Twitter’s oauth automatically, and it still works, be paranoid. -@nullwhale oh, well, obviously noscript doesn’t count. -@snare I hesitate to even ask what prompted that remark -@nullwhale implying your first tweet was mistaken? -@mirell start with 32-bit for sure and honestly at this point I don’t even remember how I got started -I just woke up. There’s an actual twitter worm? As in you click the link and it just adds the app? -@TinyPirate @Tomi_Tapio — then I saw female avatars but by that time I just had kind of a slightly icky feeling about the community -@TinyPirate @Tomi_Tapio first time I saw Day Z I decided not to play bc it appeared there was only male avatars (1/2) -@oh_rodr I assume you mean weev who I blocked something like a year ago. But you know he mails his tweets to a friend right? -@mirell it’s largely a matter of knowing how to write assembly first. Then write some C and look at the disassembly. -@sakjur at EntryPoint!…. Or is that not what you’re asking -@jesster_king lol I think you might have missed the dripping sarcasm :p -Why does this site default to birthyear 1995? Children shouldn't -- -- -- -- oh my gods -@geekable I knew what that was without even hovering the URL... -@therulerofchina (in general, KJV is an outright irresponsible translation, including politically motivated decisions) -@therulerofchina that's a translation quirk. -@edropple actually you can see their definition of India here on this map, waaaay on the edge :) http://t.co/7T5OV6NaN8 -@edropple (granted their definition of India probably does not match the modern boundary) -@edropple it is mentioned explicitly in the first sentence as the far boundary of the Persian empire. -Another little-known fact is that India is mentioned in the Bible - in the book of Esther. Geographically speaking it's pretty inclusive -It's said there are no "white" people in the Bible but that's actually not true. Aside from the Greeks and Romans, the Galatians are Celtic. -@tylerbindon I suspect it's more of a covering thing if someone gets sick after undercooking it. -This microwave chicken pie box wants me to check with a thermometer for 163 degrees throughout. Chicken pie, you're just not that special -@McGrewSecurity I enjoy scribbling on things in general but the graph doesn't have enough annotations (ie it doesn't show the format string) -@DarkestKale I'm just sick and tired of being told I should take everything with a sweet smile because no-one likes an assertive woman \ No newline at end of file diff --git a/test/keywords.rb b/test/keywords.rb deleted file mode 100644 index ebb9f68..0000000 --- a/test/keywords.rb +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env ruby -# encoding: utf-8 - -require 'twitter_ebooks' -require 'minitest/autorun' -require 'benchmark' - -module Ebooks - class TestKeywords < Minitest::Test - corpus = NLP.normalize(File.read(ARGV[0])) - puts "Finding and ranking keywords" - puts Benchmark.measure { - NLP.keywords(corpus).top(50).each do |keyword| - puts "#{keyword.text} #{keyword.weight}" - end - } - end -end diff --git a/test/tokenize.rb b/test/tokenize.rb deleted file mode 100644 index a63250a..0000000 --- a/test/tokenize.rb +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env ruby -# encoding: utf-8 - -require 'twitter_ebooks' -require 'minitest/autorun' - -module Ebooks - class TestTokenize < Minitest::Test - corpus = NLP.normalize(File.read(TEST_CORPUS_PATH)) - sents = NLP.sentences(corpus).sample(10) - - NLP.sentences(corpus).sample(10).each do |sent| - p sent - p NLP.tokenize(sent) - puts - end - end -end From dd505d7dc9d445b4782adeaf08f9de4505e45522 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 22:58:45 +1100 Subject: [PATCH 100/168] bundle exec --- skeleton/Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeleton/Procfile b/skeleton/Procfile index 84f6f23..444e15e 100644 --- a/skeleton/Procfile +++ b/skeleton/Procfile @@ -1 +1 @@ -worker: ebooks start +worker: bundle exec ebooks start From 215ab4dc6d11340636e0b9bec646a40a6b16013d Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:08:18 +1100 Subject: [PATCH 101/168] fix tests --- spec/bot_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 6b224ad..3a470f7 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -13,11 +13,11 @@ class TestBot < Ebooks::Bot reply dm, "echo: #{dm.text}" end - def on_mention(tweet, meta) - reply tweet, "echo: #{meta.mentionless}" + def on_mention(tweet) + reply tweet, "echo: #{meta(tweet).mentionless}" end - def on_timeline(tweet, meta) + def on_timeline(tweet) reply tweet, "fine tweet good sir" end end From f718ec4f859fb97c4639083de18266853d232ec5 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:20:34 +1100 Subject: [PATCH 102/168] Link to API documentation in README --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 22f3959..8a598d5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Build Status](https://travis-ci.org/mispy/twitter_ebooks.svg)](https://travis-ci.org/mispy/twitter_ebooks) [![Dependency Status](https://gemnasium.com/mispy/twitter_ebooks.svg)](https://gemnasium.com/mispy/twitter_ebooks) -A framework for building interactive twitterbots which respond to mentions/DMs. twitter_ebooks tries to be a good friendly bot citizen by avoiding infinite conversations and spamming people, so you only have to write the interesting parts. +A framework for building interactive twitterbots which respond to mentions/DMs. See [ebooks_example](https://github.com/mispy/ebooks_example) for a fully-fledged bot definition. ## New in 3.0 @@ -14,6 +14,9 @@ A framework for building interactive twitterbots which respond to mentions/DMs. - `ebooks console` starts a ruby interpreter with bots loaded (see Ebooks::Bot.all) - Replies are slightly rate-limited to prevent infinite bot convos - Non-participating users in a mention chain will be dropped after a few tweets +- [API documentation](http://rdoc.info/github/mispy/twitter_ebooks) + +Note that 3.0 is not backwards compatible with 2.x, so upgrade carefully! ## Installation @@ -140,8 +143,4 @@ end ## Bot niceness - - -## Other notes - -If you're using Heroku, which has no persistent filesystem, automating the process of archiving, consuming and updating can be tricky. My current solution is just a daily cron job which commits and pushes for me, which is pretty hacky. +twitter_ebooks will drop bystanders from mentions for you and avoid infinite bot conversations, but it won't prevent you from doing a lot of other spammy things. Make sure your bot is a good and polite citizen! From 171dbea38297b564deca05cf7d28286c2146da34 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:37:07 +1100 Subject: [PATCH 103/168] note memory use improvement --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a598d5..d5f1802 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,14 @@ A framework for building interactive twitterbots which respond to mentions/DMs. ## New in 3.0 +- About 80% less memory and storage use for models - Bots run in their own threads (no eventmachine), and startup is parallelized - Bots start with `ebooks start`, and no longer die on unhandled exceptions - `ebooks auth` command will create new access tokens, for running multiple bots - `ebooks console` starts a ruby interpreter with bots loaded (see Ebooks::Bot.all) - Replies are slightly rate-limited to prevent infinite bot convos - Non-participating users in a mention chain will be dropped after a few tweets -- [API documentation](http://rdoc.info/github/mispy/twitter_ebooks) +- [API documentation](http://rdoc.info/github/mispy/twitter_ebooks) and tests Note that 3.0 is not backwards compatible with 2.x, so upgrade carefully! From 5617544a30d333277092d5cf44c9c50f8fa41796 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:50:07 +1100 Subject: [PATCH 104/168] Make sure we really have the right username --- lib/twitter_ebooks/bot.rb | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index c25e2e7..ad55f0e 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -26,7 +26,7 @@ module Ebooks # Make an informed guess as to whether a user is a bot based # on their behavior in this conversation def is_bot?(username) - usertweets = @tweets.select { |t| t.user.screen_name == username } + usertweets = @tweets.select { |t| t.user.screen_name.downcase == username.downcase } if usertweets.length > 2 if (usertweets[-1].created_at - usertweets[-3].created_at) < 30 @@ -41,7 +41,7 @@ module Ebooks # We want to avoid spamming non-participating users def can_include?(username) @tweets.length <= 4 || - !@tweets[-4..-1].select { |t| t.user.screen_name == username }.empty? + !@tweets[-4..-1].select { |t| t.user.screen_name.downcase == username.downcase }.empty? end end @@ -220,18 +220,18 @@ module Ebooks end if ev.is_a? Twitter::DirectMessage - return if ev.sender.screen_name == @username # Don't reply to self + return if ev.sender.screen_name.downcase == @username.downcase # Don't reply to self log "DM from @#{ev.sender.screen_name}: #{ev.text}" fire(:direct_message, ev) elsif ev.respond_to?(:name) && ev.name == :follow - return if ev.source.screen_name == @username + return if ev.source.screen_name.downcase == @username.downcase log "Followed by #{ev.source.screen_name}" fire(:follow, ev.source) elsif ev.is_a? Twitter::Tweet return unless ev.text # If it's not a text-containing tweet, ignore it - return if ev.user.screen_name == @username # Ignore our own tweets + return if ev.user.screen_name.downcase == @username.downcase # Ignore our own tweets meta = meta(ev) @@ -283,7 +283,13 @@ module Ebooks exit 1 end - twitter + real_name = twitter.user.screen_name + + if real_name != @username + log "connected to @#{real_name}-- please update config to match Twitter account name" + @username = real_name + end + fire(:startup) end @@ -318,7 +324,7 @@ module Ebooks # @param username [String] # @return [Boolean] def blacklisted?(username) - if @blacklist.include?(username) + if @blacklist.map(&:downcase).include?(username.downcase) true else false From b738f1fe3aeba8c24b3beeeea4558e7f67b48314 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:50:59 +1100 Subject: [PATCH 105/168] 3.0.1 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 37ab8f8..725c057 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.0" + VERSION = "3.0.1" end From 458b94a4c30ede62ae995a381e0689c072eddadc Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 6 Dec 2014 00:07:31 +1100 Subject: [PATCH 106/168] 3.0.2 - Handle rate limitation in archiver --- lib/twitter_ebooks/archive.rb | 10 ++++++++-- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 3582fcc..4f8417d 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -73,10 +73,16 @@ module Ebooks loop do opts[:max_id] = max_id unless max_id.nil? - new = @client.user_timeline(@username, opts) + begin + new = @client.user_timeline(@username, opts) + rescue Twitter::Error::TooManyRequests + log "Rate limit exceeded. Waiting for 5 mins before retry." + sleep 60*5 + retry + end break if new.length <= 1 tweets += new - puts "Received #{tweets.length} new tweets" + log "Received #{tweets.length} new tweets" max_id = new.last.id end diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 725c057..46b44d9 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.1" + VERSION = "3.0.2" end From be0fee67e266ef8a641bb327a3db9492ed8d8485 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 6 Dec 2014 00:16:55 +1100 Subject: [PATCH 107/168] remove bot. references in README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d5f1802..29ea4bf 100644 --- a/README.md +++ b/README.md @@ -54,29 +54,29 @@ class MyBot < Ebooks::Bot scheduler.every '24h' do # Tweet something every 24 hours # See https://github.com/jmettraux/rufus-scheduler - # bot.tweet("hi") - # bot.pictweet("hi", "cuteselfie.jpg") + # tweet("hi") + # pictweet("hi", "cuteselfie.jpg") end end def on_message(dm) # Reply to a DM - # bot.reply(dm, "secret secrets") + # reply(dm, "secret secrets") end def on_follow(user) # Follow a user back - # bot.follow(user[:screen_name]) + # follow(user[:screen_name]) end def on_mention(tweet) # Reply to a mention - # bot.reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") + # reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") end def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # bot.reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") + # reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") end end From 141e43719a5e4da2f778fbb255dafabb2b24a5ee Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 6 Dec 2014 00:17:54 +1100 Subject: [PATCH 108/168] and the skeleton --- skeleton/bots.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/skeleton/bots.rb b/skeleton/bots.rb index 969f072..78fc597 100644 --- a/skeleton/bots.rb +++ b/skeleton/bots.rb @@ -22,29 +22,29 @@ class MyBot < Ebooks::Bot scheduler.every '24h' do # Tweet something every 24 hours # See https://github.com/jmettraux/rufus-scheduler - # bot.tweet("hi") - # bot.pictweet("hi", "cuteselfie.jpg") + # tweet("hi") + # pictweet("hi", "cuteselfie.jpg") end end def on_message(dm) # Reply to a DM - # bot.reply(dm, "secret secrets") + # reply(dm, "secret secrets") end def on_follow(user) # Follow a user back - # bot.follow(user[:screen_name]) + # follow(user.screen_name) end def on_mention(tweet) # Reply to a mention - # bot.reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") + # reply(tweet, meta(tweet).reply_prefix + "oh hullo") end def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # bot.reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") + # reply(tweet, meta(tweet).reply_prefix + "nice tweet") end end From 92d3c53b79efae0f8b724b008ceaecfa9e638fbb Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 6 Dec 2014 00:24:32 +1100 Subject: [PATCH 109/168] Don't need BOT_NAME in there --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29ea4bf..1627f3a 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ class MyBot < Ebooks::Bot end # Make a MyBot and attach it to an account -MyBot.new("{{BOT_NAME}}") do |bot| +MyBot.new("abby_ebooks") do |bot| bot.access_token = "" # Token connecting the app to this account bot.access_token_secret = "" # Secret connecting the app to this account end From fe34c94e0444e3bb867695b179963100436f6156 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:43:58 +1000 Subject: [PATCH 110/168] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1627f3a..f8a05f0 100644 --- a/README.md +++ b/README.md @@ -66,17 +66,17 @@ class MyBot < Ebooks::Bot def on_follow(user) # Follow a user back - # follow(user[:screen_name]) + # follow(user.screen_name) end def on_mention(tweet) # Reply to a mention - # reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") + # reply(tweet, meta(tweet).reply_prefix + "oh hullo") end def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") + # reply(tweet, meta(tweet).reply_prefix + "nice tweet") end end From c4ba9e139f968b1e5a25c70c7338e80ec60c50d4 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sat, 6 Dec 2014 01:38:38 -0800 Subject: [PATCH 111/168] Regex soft-retweet detection I added a regex to detect 'RT @' anywhere in the content of a tweet, in case someone hides a RT in the middle of a tweet! As a bonus, it also detects a bunch of different types of quotes as well as other things people might use, like 'via,' 'by,' and 'from'! --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index ad55f0e..efec8bf 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -70,7 +70,7 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') + @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') && !@tweet.text =~ /([`'‘’"“”]|RT|via|by|from)\s*@/i end # @param bot [Ebooks::Bot] From 0f735bc105b77ee203e73ec0eaff48b38456c78c Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 6 Dec 2014 22:25:14 +1100 Subject: [PATCH 112/168] Add missing oauth dependency (fixes #40) --- twitter_ebooks.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 2e68482..b5c97ed 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -23,7 +23,6 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'yard' gem.add_runtime_dependency 'twitter', '~> 5.0' - gem.add_runtime_dependency 'simple_oauth' gem.add_runtime_dependency 'eventmachine', '~> 1.0.3' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' @@ -32,4 +31,5 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency 'fast-stemmer' gem.add_runtime_dependency 'highscore' gem.add_runtime_dependency 'pry' + gem.add_runtime_dependency 'oauth' end From 6bc89cd4fbe879185c56a168590bf370b7eeddf0 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sat, 6 Dec 2014 03:29:29 -0800 Subject: [PATCH 113/168] Switched to .match for matching Mispy taught me something about ruby precedence today! --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index efec8bf..5efdc46 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -70,7 +70,7 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') && !@tweet.text =~ /([`'‘’"“”]|RT|via|by|from)\s*@/i + @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') && !@tweet.text.match(/([`'‘’"“”]|RT|via|by|from)\s*@/i) end # @param bot [Ebooks::Bot] From a2ca0da9674eef380562340007e46e076a578f59 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 6 Dec 2014 22:37:10 +1100 Subject: [PATCH 114/168] 3.0.3 --- lib/twitter_ebooks/bot.rb | 2 +- lib/twitter_ebooks/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 5efdc46..b92938a 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -70,7 +70,7 @@ module Ebooks # - The tweet mentions list contains our username # - The tweet is not being retweeted by somebody else # - Or soft-retweeted by somebody else - @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.start_with?('RT ') && !@tweet.text.match(/([`'‘’"“”]|RT|via|by|from)\s*@/i) + @mentions.map(&:downcase).include?(@bot.username.downcase) && !@tweet.retweeted_status? && !@tweet.text.match(/([`'‘’"“”]|RT|via|by|from)\s*@/i) end # @param bot [Ebooks::Bot] diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 46b44d9..c1a9e1c 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.2" + VERSION = "3.0.3" end From 3c54c9a017a8daee508a90ac1234958ceca5c71e Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sat, 6 Dec 2014 21:57:51 -0800 Subject: [PATCH 115/168] meta.media_uris Adds media_uris to tweet meta, which returns an array of strings containing the URIs of media inside your tweet. --- lib/twitter_ebooks/bot.rb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index b92938a..1455d5e 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -105,6 +105,38 @@ module Ebooks end @mentionless = mless end + + # Get an array of media uris in tweet. + # @param size [String] A twitter image size to return. Supported sizes are thumb, small, medium (default), large + # @return [Array] image URIs included in tweet + def media_uris(*args) + # When there's no size given, the default is medium. + size = '' + # Was one given? + unless args.empty? + case args[0] + when 'thumb' + size = ':thumb' + when 'small' + size = ':small' + when 'medium' + size = ':medium' + when 'large' + size = ':large' + end + end + + # Start collecting uris. + uris = [] + if @tweet.media? + @tweet.media.each do |each_media| + uris << each_media.media_url.to_s + size + end + end + + # and that's pretty much it! + uris + end end class Bot From d94ff3d36be32f7fa386d4578fe43cca088c7b3d Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sat, 6 Dec 2014 23:31:58 -0800 Subject: [PATCH 116/168] Better optional parameter integration Apparently I'm dumb and didn't know about equal signs in parameters. --- lib/twitter_ebooks/bot.rb | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 1455d5e..24a7ce0 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -109,21 +109,18 @@ module Ebooks # Get an array of media uris in tweet. # @param size [String] A twitter image size to return. Supported sizes are thumb, small, medium (default), large # @return [Array] image URIs included in tweet - def media_uris(*args) - # When there's no size given, the default is medium. - size = '' - # Was one given? - unless args.empty? - case args[0] - when 'thumb' - size = ':thumb' - when 'small' - size = ':small' - when 'medium' - size = ':medium' - when 'large' - size = ':large' - end + def media_uris(size_input = '') + case size_input + when 'thumb' + size = ':thumb' + when 'small' + size = ':small' + when 'medium' + size = ':medium' + when 'large' + size = ':large' + else + size = '' end # Start collecting uris. From 83e1bb1aef8257e91684ec26b90d6ae5949d4754 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sun, 7 Dec 2014 21:43:59 -0800 Subject: [PATCH 117/168] Remove * in default .gitignore corpus/* matches all files in the first level directory inside corpus, so it would match corpus/lala.txt but not corpus/secret/lala.txt. corpus/ matches the directory corpus itself, meaning that corpus/ and everything inside of it shouldn't be uploaded. corpus/** matches everything inside corpus, including contents of subdirectories, while still allowing corpus/ itself to be uploaded. This solves the initial problem I posed (with corpus/secret/lala.txt), but it just feels tidier to just remove the entire folder. --- skeleton/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeleton/.gitignore b/skeleton/.gitignore index a1a0c1c..1ab5c7f 100755 --- a/skeleton/.gitignore +++ b/skeleton/.gitignore @@ -1 +1 @@ -corpus/* +corpus/ From db903e2e2b3454208abeacda3bd786e360184c57 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Mon, 8 Dec 2014 23:16:47 +1100 Subject: [PATCH 118/168] Add start/console commands to help --- bin/ebooks | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/ebooks b/bin/ebooks index da54991..9a9c8e1 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -19,6 +19,8 @@ Usage: ebooks help ebooks new + ebooks s[tart] + ebooks c[onsole] ebooks auth ebooks consume [corpus_path2] [...] ebooks consume-all [corpus_path2] [...] From 9d610a6d58c06e57f2ea8cd7d29b7c205a22c281 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Mon, 8 Dec 2014 23:16:55 +1100 Subject: [PATCH 119/168] on_message => on_direct_message in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8a05f0..41b35bd 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ class MyBot < Ebooks::Bot end end - def on_message(dm) + def on_direct_message(dm) # Reply to a DM # reply(dm, "secret secrets") end From 0e9f7d688149703cbb3c34abf978a784ad1ae031 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Mon, 8 Dec 2014 04:21:55 -0800 Subject: [PATCH 120/168] Fix reply options Whoever wrote Bot.reply forgot to pass on options it received for replies! --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 24a7ce0..f7a88a3 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -379,7 +379,7 @@ module Ebooks end log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" - tweet = twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id) + tweet = twitter.update(meta.reply_prefix + text, opts.merge({in_reply_to_status_id: ev.id})) conversation(tweet).add(tweet) tweet else From 56ddb45b61db3bed79e77c2702307ea28a54f123 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Mon, 8 Dec 2014 04:27:41 -0800 Subject: [PATCH 121/168] Fix direct messages Someone renamed on_message to on_direct_message in bot.rb, but forgot to update it in the template. It used to be on_message in the template, so for less confusion, I think it's preferable to just rename on_direct_message back. :o --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 24a7ce0..37ad8ed 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -251,7 +251,7 @@ module Ebooks if ev.is_a? Twitter::DirectMessage return if ev.sender.screen_name.downcase == @username.downcase # Don't reply to self log "DM from @#{ev.sender.screen_name}: #{ev.text}" - fire(:direct_message, ev) + fire(:message, ev) elsif ev.respond_to?(:name) && ev.name == :follow return if ev.source.screen_name.downcase == @username.downcase From 504297bf73a889fcde2a932b6292f7cd24a9dc94 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Mon, 8 Dec 2014 23:28:50 +1100 Subject: [PATCH 122/168] On second thought, that's probably better --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41b35bd..f8a05f0 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ class MyBot < Ebooks::Bot end end - def on_direct_message(dm) + def on_message(dm) # Reply to a DM # reply(dm, "secret secrets") end From 548260f9dd66f277a9bf1d7e7eea67f5a63c6961 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Mon, 8 Dec 2014 23:29:42 +1100 Subject: [PATCH 123/168] Spec test too --- spec/bot_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 3a470f7..b0ca427 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -9,7 +9,7 @@ class TestBot < Ebooks::Bot def configure end - def on_direct_message(dm) + def on_message(dm) reply dm, "echo: #{dm.text}" end From cb4c09b74402afe5d349ea61679ea91235d756f0 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Mon, 8 Dec 2014 23:31:44 +1100 Subject: [PATCH 124/168] 3.0.4 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index c1a9e1c..bf4c80b 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.3" + VERSION = "3.0.4" end From de73f4778baf61d5732c910d141ccddf6c784c33 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Mon, 8 Dec 2014 21:46:27 -0800 Subject: [PATCH 125/168] Renamed skeleton/.gitignore to gitignore Did you know? The .gitignore inside skeleton/ was actually affecting twitter_ebooks's repo. This fixes that by moving it for twitter_ebooks, and moving it back when people make their repositories! --- bin/ebooks | 1 + skeleton/{.gitignore => gitignore} | 0 2 files changed, 1 insertion(+) rename skeleton/{.gitignore => gitignore} (100%) mode change 100755 => 100644 diff --git a/bin/ebooks b/bin/ebooks index 9a9c8e1..d35b74f 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -58,6 +58,7 @@ STR end FileUtils.cp_r(Ebooks::SKELETON_PATH, path) + FileUtils.mv(File.join(path, 'gitignore'), File.join(path, '.gitignore')) File.open(File.join(path, 'bots.rb'), 'w') do |f| template = File.read(File.join(Ebooks::SKELETON_PATH, 'bots.rb')) diff --git a/skeleton/.gitignore b/skeleton/gitignore old mode 100755 new mode 100644 similarity index 100% rename from skeleton/.gitignore rename to skeleton/gitignore From 6e97383fff15e2bab38a51f1b4009861c27e1e29 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Tue, 9 Dec 2014 14:25:13 -0800 Subject: [PATCH 126/168] load previous archive with utf-8 encoding Copied from model.rb's File.read --- lib/twitter_ebooks/archive.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/archive.rb b/lib/twitter_ebooks/archive.rb index 4f8417d..29829e2 100644 --- a/lib/twitter_ebooks/archive.rb +++ b/lib/twitter_ebooks/archive.rb @@ -50,7 +50,7 @@ module Ebooks @client = client || make_client if File.exists?(@path) - @tweets = JSON.parse(File.read(@path), symbolize_names: true) + @tweets = JSON.parse(File.read(@path, :encoding => 'utf-8'), symbolize_names: true) log "Currently #{@tweets.length} tweets for #{@username}" else @tweets.nil? From 47c418340de7cd2da68448561f2c959e3a83a2c5 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Thu, 11 Dec 2014 22:16:29 +1100 Subject: [PATCH 127/168] add note to readme about regenning models --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8a05f0..9a4789c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A framework for building interactive twitterbots which respond to mentions/DMs. - Non-participating users in a mention chain will be dropped after a few tweets - [API documentation](http://rdoc.info/github/mispy/twitter_ebooks) and tests -Note that 3.0 is not backwards compatible with 2.x, so upgrade carefully! +Note that 3.0 is not backwards compatible with 2.x, so upgrade carefully! In particular, **make sure to regenerate your models** since the storage format changed. ## Installation From 0441f1b9f744a7192cd815baf4f8861c00318ebf Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Thu, 11 Dec 2014 22:19:46 +1100 Subject: [PATCH 128/168] README tweaks --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a4789c..6b3aebd 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ MyBot.new("abby_ebooks") do |bot| end ``` -'ebooks start' will run all defined bots in their own threads. The easiest way to run bots in a semi-permanent fashion is with [Heroku](https://www.heroku.com); just make an app, push the bot repository to it, enable a worker process in the web interface and it ought to chug along merrily forever. +`ebooks start` will run all defined bots in their own threads. The easiest way to run bots in a semi-permanent fashion is with [Heroku](https://www.heroku.com); just make an app, push the bot repository to it, enable a worker process in the web interface and it ought to chug along merrily forever. The underlying streaming and REST clients from the [twitter gem](https://github.com/sferik/twitter) can be accessed at `bot.stream` and `bot.twitter` respectively. From 3a350526b4b6c9a47f4a9aca7b3d82152b6be00c Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 11 Dec 2014 20:01:57 -0800 Subject: [PATCH 129/168] Removed reply_prefix from examples These methods now automatically add in reply_prefix in v3. --- skeleton/bots.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skeleton/bots.rb b/skeleton/bots.rb index 78fc597..3cf895c 100644 --- a/skeleton/bots.rb +++ b/skeleton/bots.rb @@ -39,12 +39,12 @@ class MyBot < Ebooks::Bot def on_mention(tweet) # Reply to a mention - # reply(tweet, meta(tweet).reply_prefix + "oh hullo") + # reply(tweet, "oh hullo") end def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # reply(tweet, meta(tweet).reply_prefix + "nice tweet") + # reply(tweet, "nice tweet") end end From e6cefa08908e2349824f70a8c1c1206639cfb3cb Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 11 Dec 2014 20:13:53 -0800 Subject: [PATCH 130/168] conditional reply_prefix for replies Reply prefix is now only added if the recipient's screen_name isn't already in the tweet text. --- lib/twitter_ebooks/bot.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index c1af639..ff39d83 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -379,7 +379,8 @@ module Ebooks end log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" - tweet = twitter.update(meta.reply_prefix + text, opts.merge({in_reply_to_status_id: ev.id})) + text = meta.reply_prefix + text unless text.match /@#{Regexp.escape ev.user.screen_name}/i + tweet = twitter.update(text, opts.merge(in_reply_to_status_id: ev.id)) conversation(tweet).add(tweet) tweet else From 730f833d6df26978f1d7d790d1396d9852971c5e Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 12 Dec 2014 21:39:30 +1100 Subject: [PATCH 131/168] fix README quote inconsistency --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b3aebd..139f4f9 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ class MyBot < Ebooks::Bot def configure # Consumer details come from registering an app at https://dev.twitter.com/ # Once you have consumer details, use "ebooks auth" for new access tokens - self.consumer_key = '' # Your app consumer key - self.consumer_secret = '' # Your app consumer secret + self.consumer_key = "" # Your app consumer key + self.consumer_secret = "" # Your app consumer secret # Users to block instead of interacting with self.blacklist = ['tnietzschequote'] From 64c1aa411c38a3f08cd4f33f198b36c6badb7067 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 12 Dec 2014 22:53:19 +1100 Subject: [PATCH 132/168] Add default delay range, configure check --- lib/twitter_ebooks/bot.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index ff39d83..7b63c06 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -180,12 +180,17 @@ module Ebooks @seen_tweets ||= {} @username = username + @delay_range ||= 1..6 configure b.call(self) unless b.nil? Bot.all << self end + def configure + raise ConfigurationError, "Please override the 'configure' method for subclasses of Ebooks::Bot." + end + # Find or create the conversation context for this tweet # @param tweet [Twitter::Tweet] # @return [Ebooks::Conversation] From 4d4131e1858f911f9ec3b19ef434e5e83dae5a48 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 13 Dec 2014 00:10:57 +1100 Subject: [PATCH 133/168] 3.0.5 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index bf4c80b..83c1907 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.4" + VERSION = "3.0.5" end From 03c8491d57b04b9c65d0611867d74c6356816dcc Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 13 Dec 2014 00:44:26 +1100 Subject: [PATCH 134/168] Less sensitive bot detection --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 7b63c06..77a91e6 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -29,7 +29,7 @@ module Ebooks usertweets = @tweets.select { |t| t.user.screen_name.downcase == username.downcase } if usertweets.length > 2 - if (usertweets[-1].created_at - usertweets[-3].created_at) < 30 + if (usertweets[-1].created_at - usertweets[-3].created_at) < 10 return true end end From b460b733923e8710375839d0882fede4ae16167a Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 13 Dec 2014 00:51:22 +1100 Subject: [PATCH 135/168] Update tests to account for bot detection --- spec/bot_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index b0ca427..57a0ce7 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -158,11 +158,11 @@ describe Ebooks::Bot do bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 7")) expect_tweet(bot, "@spammer @m1sp echo: 7") - Timecop.travel(Time.now + 10) + Timecop.travel(Time.now + 2) bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 8")) expect_tweet(bot, "@spammer @m1sp echo: 8") - Timecop.travel(Time.now + 10) + Timecop.travel(Time.now + 2) bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 9")) expect(bot.twitter).to_not have_received(:update) end From f49aea4a520fcadc9077589d5ecb8a0435d75fed Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sun, 14 Dec 2014 02:48:45 -0800 Subject: [PATCH 136/168] Fixed log entries for replies I didn't notice that log entries were also manually adding meta.reply_prefix on. --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 77a91e6..782458e 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -383,8 +383,8 @@ module Ebooks return false end - log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}" text = meta.reply_prefix + text unless text.match /@#{Regexp.escape ev.user.screen_name}/i + log "Replying to @#{ev.user.screen_name} with: #{text}" tweet = twitter.update(text, opts.merge(in_reply_to_status_id: ev.id)) conversation(tweet).add(tweet) tweet From b67b8dabb5dcae466b8444f6a9321b3d06e8a65e Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Mon, 15 Dec 2014 08:55:20 +1100 Subject: [PATCH 137/168] Sleep longer before reconnect --- bin/ebooks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ebooks b/bin/ebooks index d35b74f..d334c5b 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -264,7 +264,7 @@ STR puts e.backtrace.map { |s| "\t"+s }.join("\n") end bot.log "Sleeping before reconnect" - sleep 5 + sleep 60 end end end From f0c440b8844778808b190360fa484d7e527bb746 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 16 Dec 2014 08:28:52 +1100 Subject: [PATCH 138/168] Test for and fix username case inconsistencies --- lib/twitter_ebooks/bot.rb | 3 +-- spec/bot_spec.rb | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 782458e..568f06c 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -84,8 +84,7 @@ module Ebooks # Process mentions to figure out who to reply to # i.e. not self and nobody who has seen too many secondary mentions reply_mentions = @mentions.reject do |m| - username = m.downcase - username == @bot.username || !@bot.conversation(ev).can_include?(username) + m.downcase == @bot.username.downcase || !@bot.conversation(ev).can_include?(m) end @reply_mentions = ([ev.user.screen_name] + reply_mentions).uniq diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 57a0ce7..ba07a4d 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -83,7 +83,7 @@ end describe Ebooks::Bot do include Ebooks::Test - let(:bot) { TestBot.new('test_ebooks') } + let(:bot) { TestBot.new('Test_Ebooks') } before { Timecop.freeze } after { Timecop.return } From 15f893d597f8f6c35b570e3cb17b2321d7fded35 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 16 Dec 2014 08:29:35 +1100 Subject: [PATCH 139/168] 3.0.6 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 83c1907..f526508 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.5" + VERSION = "3.0.6" end From 0292264613d8f2e12108c7f18ed6d88f8da6e17c Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 16 Dec 2014 10:59:58 +1100 Subject: [PATCH 140/168] slightly less paranoid about including people --- lib/twitter_ebooks/bot.rb | 4 ++-- lib/twitter_ebooks/model.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 568f06c..ed03229 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -40,8 +40,8 @@ module Ebooks # Figure out whether to keep this user in the reply prefix # We want to avoid spamming non-participating users def can_include?(username) - @tweets.length <= 4 || - !@tweets[-4..-1].select { |t| t.user.screen_name.downcase == username.downcase }.empty? + @tweets.length <= 6 || + !@tweets[-6..-1].select { |t| t.user.screen_name.downcase == username.downcase }.empty? end end diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 666f78c..7213d79 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -208,7 +208,7 @@ module Ebooks # Generate some text # @param limit [Integer] available characters # @param generator [SuffixGenerator, nil] - # @param retry_limit [Integer] how many times to retry on duplicates + # @param retry_limit [Integer] how many times to retry on invalid tweet # @return [String] def make_statement(limit=140, generator=nil, retry_limit=10) responding = !generator.nil? From 52d82c99ae17da92f0338edf2e8317e16ff71b1a Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Tue, 16 Dec 2014 15:28:05 +1100 Subject: [PATCH 141/168] fix test --- spec/bot_spec.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index ba07a4d..6468524 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -134,7 +134,11 @@ describe Ebooks::Bot do Timecop.travel(Time.now + 60) bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 3")) - expect_tweet(bot, "@spammer echo: 3") + expect_tweet(bot, "@spammer @m1sp echo: 3") + + Timecop.travel(Time.now + 60) + bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 4")) + expect_tweet(bot, "@spammer echo: 4") end end From 596f41f15f1acc4951162ccaacde27d6ce8db911 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 20 Dec 2014 07:24:40 +1100 Subject: [PATCH 142/168] Keep people in convo as long as they replied once --- lib/twitter_ebooks/bot.rb | 4 ++-- spec/bot_spec.rb | 6 +----- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index ed03229..f76c1d8 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -40,8 +40,8 @@ module Ebooks # Figure out whether to keep this user in the reply prefix # We want to avoid spamming non-participating users def can_include?(username) - @tweets.length <= 6 || - !@tweets[-6..-1].select { |t| t.user.screen_name.downcase == username.downcase }.empty? + @tweets.length <= 4 || + !@tweets.select { |t| t.user.screen_name.downcase == username.downcase }.empty? end end diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index 6468524..ba07a4d 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -134,11 +134,7 @@ describe Ebooks::Bot do Timecop.travel(Time.now + 60) bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 3")) - expect_tweet(bot, "@spammer @m1sp echo: 3") - - Timecop.travel(Time.now + 60) - bot.receive_event(mock_tweet("spammer", "@test_ebooks @m1sp 4")) - expect_tweet(bot, "@spammer echo: 4") + expect_tweet(bot, "@spammer echo: 3") end end From 6e41bdb37355db68c7c4af26ff76f42fda655272 Mon Sep 17 00:00:00 2001 From: Joel McCoy Date: Fri, 2 Jan 2015 17:22:39 -0500 Subject: [PATCH 143/168] Fix typo in Bot#unfollow --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index f76c1d8..b85bc01 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -427,7 +427,7 @@ module Ebooks # @param user [String] username or user id def unfollow(user, *args) log "Unfollowing #{user}" - twiter.unfollow(user, *args) + twitter.unfollow(user, *args) end # Tweet something From 3cea0c83e21f92390d21182d0f0de0f8a072c2e2 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Tue, 6 Jan 2015 21:40:17 -0800 Subject: [PATCH 144/168] Bot can now respond to favorite events. I wrote this for myself, but I thought I would share! --- lib/twitter_ebooks/bot.rb | 15 +++++++++++---- skeleton/bots.rb | 5 +++++ 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index b85bc01..69cd12e 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -257,10 +257,17 @@ module Ebooks log "DM from @#{ev.sender.screen_name}: #{ev.text}" fire(:message, ev) - elsif ev.respond_to?(:name) && ev.name == :follow - return if ev.source.screen_name.downcase == @username.downcase - log "Followed by #{ev.source.screen_name}" - fire(:follow, ev.source) + elsif ev.respond_to?(:name) + if ev.name == :follow + return if ev.source.screen_name.downcase == @username.downcase + log "Followed by #{ev.source.screen_name}" + fire(:follow, ev.source) + + elsif ev.name == :favorite || ev.name == :unfavorite + return if ev.source.screen_name.downcase == @username.downcase # Ignore our own favorites + log "@#{ev.source.screen_name} #{ev.name.to_s}d: #{ev.target_object.text}" + fire(ev.name, ev.source, ev.target_object) + end elsif ev.is_a? Twitter::Tweet return unless ev.text # If it's not a text-containing tweet, ignore it diff --git a/skeleton/bots.rb b/skeleton/bots.rb index 3cf895c..1d1f313 100644 --- a/skeleton/bots.rb +++ b/skeleton/bots.rb @@ -46,6 +46,11 @@ class MyBot < Ebooks::Bot # Reply to a tweet in the bot's timeline # reply(tweet, "nice tweet") end + + def on_favorite(user, tweet) + # Follow user who just favorited bot's tweet + # follow(user.screen_name) + end end # Make a MyBot and attach it to an account From d657f25be494c0b17f3d9503f65f40a62e9795b2 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 02:34:45 -0800 Subject: [PATCH 145/168] Create @user variable Since #prepare already calls twitter.user, it'd be best to just save it! --- lib/twitter_ebooks/bot.rb | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 69cd12e..88177b6 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -144,6 +144,8 @@ module Ebooks attr_accessor :access_token # @return [String] OAuth access secret from `ebooks auth` attr_accessor :access_token_secret + # @return [Twitter::User] Twitter user object of bot + attr_accessor :user # @return [String] Twitter username of bot attr_accessor :username # @return [Array] list of usernames to block on contact @@ -304,6 +306,16 @@ module Ebooks end end + # Updates @user and calls on_user_update. Make sure it's the right person before you call it. + def update_user_object(new_me = twitter.user) + new_me = twitter.user unless new_me.is_a? Twitter::User + + @user = new_me + @username = user.name + + fire(:user_update) + end + # Configures client and fires startup event def prepare # Sanity check @@ -323,12 +335,12 @@ module Ebooks exit 1 end - real_name = twitter.user.screen_name - - if real_name != @username - log "connected to @#{real_name}-- please update config to match Twitter account name" - @username = real_name - end + # Save old name + old_name = username + # Load user object and actual username + update_user_object + # Warn about mismatches unless it was clearly intensional + log "warning: bot expected to be @#{old_name} but connected to @#{username}" unless username == old_name || old_name.empty? fire(:startup) end From 0f56a1a6ebf78f6593141c48e13704a9a76a3c7d Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 02:39:01 -0800 Subject: [PATCH 146/168] Update @user when receiving a user_update event. --- lib/twitter_ebooks/bot.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 88177b6..9ba1d08 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -260,15 +260,17 @@ module Ebooks fire(:message, ev) elsif ev.respond_to?(:name) - if ev.name == :follow + case ev.name + when :follow return if ev.source.screen_name.downcase == @username.downcase log "Followed by #{ev.source.screen_name}" fire(:follow, ev.source) - - elsif ev.name == :favorite || ev.name == :unfavorite + when :favorite, :unfavorite return if ev.source.screen_name.downcase == @username.downcase # Ignore our own favorites log "@#{ev.source.screen_name} #{ev.name.to_s}d: #{ev.target_object.text}" fire(ev.name, ev.source, ev.target_object) + when :user_update + update_user_object ev.source end elsif ev.is_a? Twitter::Tweet From 023cbb31832ec829d71e70c45b4a822387ec1e6f Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 02:46:09 -0800 Subject: [PATCH 147/168] Restructure receive_event to use case This is much more readable! --- lib/twitter_ebooks/bot.rb | 43 +++++++++++++++++---------------------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 9ba1d08..4b78a13 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -249,31 +249,15 @@ module Ebooks # Receive an event from the twitter stream # @param ev [Object] Twitter streaming event def receive_event(ev) - if ev.is_a? Array # Initial array sent on first connection + case ev + when Array # Initial array sent on first connection log "Online!" return - end - - if ev.is_a? Twitter::DirectMessage + when Twitter::DirectMessage return if ev.sender.screen_name.downcase == @username.downcase # Don't reply to self log "DM from @#{ev.sender.screen_name}: #{ev.text}" fire(:message, ev) - - elsif ev.respond_to?(:name) - case ev.name - when :follow - return if ev.source.screen_name.downcase == @username.downcase - log "Followed by #{ev.source.screen_name}" - fire(:follow, ev.source) - when :favorite, :unfavorite - return if ev.source.screen_name.downcase == @username.downcase # Ignore our own favorites - log "@#{ev.source.screen_name} #{ev.name.to_s}d: #{ev.target_object.text}" - fire(ev.name, ev.source, ev.target_object) - when :user_update - update_user_object ev.source - end - - elsif ev.is_a? Twitter::Tweet + when Twitter::Tweet return unless ev.text # If it's not a text-containing tweet, ignore it return if ev.user.screen_name.downcase == @username.downcase # Ignore our own tweets @@ -299,10 +283,21 @@ module Ebooks else fire(:timeline, ev) end - - elsif ev.is_a?(Twitter::Streaming::DeletedTweet) || - ev.is_a?(Twitter::Streaming::Event) - # pass + when Twitter::Streaming::Event + case ev.name + when :follow + return if ev.source.screen_name.downcase == @username.downcase + log "Followed by #{ev.source.screen_name}" + fire(:follow, ev.source) + when :favorite, :unfavorite + return if ev.source.screen_name.downcase == @username.downcase # Ignore our own favorites + log "@#{ev.source.screen_name} #{ev.name.to_s}d: #{ev.target_object.text}" + fire(ev.name, ev.source, ev.target_object) + when :user_update + update_user_object ev.source + end + when Twitter::Streaming::DeletedTweet + # Pass else log ev end From 5c6746cc46f5532b3e1c8854b92da699747ca1f4 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 02:49:16 -0800 Subject: [PATCH 148/168] Renamed update_user_object Just to reduce confusion, to make sure people don't accidentally set @user to someone else in the future. --- lib/twitter_ebooks/bot.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 4b78a13..646079a 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -294,7 +294,7 @@ module Ebooks log "@#{ev.source.screen_name} #{ev.name.to_s}d: #{ev.target_object.text}" fire(ev.name, ev.source, ev.target_object) when :user_update - update_user_object ev.source + update_myself ev.source end when Twitter::Streaming::DeletedTweet # Pass @@ -304,7 +304,7 @@ module Ebooks end # Updates @user and calls on_user_update. Make sure it's the right person before you call it. - def update_user_object(new_me = twitter.user) + def update_myself(new_me = twitter.user) new_me = twitter.user unless new_me.is_a? Twitter::User @user = new_me @@ -335,7 +335,7 @@ module Ebooks # Save old name old_name = username # Load user object and actual username - update_user_object + update_myself # Warn about mismatches unless it was clearly intensional log "warning: bot expected to be @#{old_name} but connected to @#{username}" unless username == old_name || old_name.empty? From 442dcb3370d8e8bdfb38e3de08388fdb1d31a8bd Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 03:07:42 -0800 Subject: [PATCH 149/168] Compare ids instead of usernames Non user-editable values are less prone to strange errors, right? --- lib/twitter_ebooks/bot.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 646079a..d951d40 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -254,12 +254,12 @@ module Ebooks log "Online!" return when Twitter::DirectMessage - return if ev.sender.screen_name.downcase == @username.downcase # Don't reply to self + return if ev.sender.id == @user.id # Don't reply to self log "DM from @#{ev.sender.screen_name}: #{ev.text}" fire(:message, ev) when Twitter::Tweet return unless ev.text # If it's not a text-containing tweet, ignore it - return if ev.user.screen_name.downcase == @username.downcase # Ignore our own tweets + return if ev.user.id == @user.id # Ignore our own tweets meta = meta(ev) @@ -286,11 +286,11 @@ module Ebooks when Twitter::Streaming::Event case ev.name when :follow - return if ev.source.screen_name.downcase == @username.downcase + return if ev.source.id == @user.id log "Followed by #{ev.source.screen_name}" fire(:follow, ev.source) when :favorite, :unfavorite - return if ev.source.screen_name.downcase == @username.downcase # Ignore our own favorites + return if ev.source.id == @user.id # Ignore our own favorites log "@#{ev.source.screen_name} #{ev.name.to_s}d: #{ev.target_object.text}" fire(ev.name, ev.source, ev.target_object) when :user_update From 56f5bc3028fc330387c8d960c77b15698e6a87b4 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 03:10:15 -0800 Subject: [PATCH 150/168] Fixed a warning message It was bugging me whenever I syntax checked. :< --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 69cd12e..b124953 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -389,7 +389,7 @@ module Ebooks return false end - text = meta.reply_prefix + text unless text.match /@#{Regexp.escape ev.user.screen_name}/i + text = meta.reply_prefix + text unless text.match(/@#{Regexp.escape ev.user.screen_name}/i) log "Replying to @#{ev.user.screen_name} with: #{text}" tweet = twitter.update(text, opts.merge(in_reply_to_status_id: ev.id)) conversation(tweet).add(tweet) From c88aefece8087d78d21e7cc6e45d139a26ab5fcf Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 15 Jan 2015 15:51:13 -0800 Subject: [PATCH 151/168] New on_connect event when stream is connected. --- lib/twitter_ebooks/bot.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index d951d40..eb5cf51 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -252,6 +252,7 @@ module Ebooks case ev when Array # Initial array sent on first connection log "Online!" + fire(:connect) return when Twitter::DirectMessage return if ev.sender.id == @user.id # Don't reply to self From ed166e2694c99186d345d8dc4eba200177b45525 Mon Sep 17 00:00:00 2001 From: Mispy <^_^@mispy.me> Date: Fri, 16 Jan 2015 21:18:02 +0000 Subject: [PATCH 152/168] 3.0.7 - remove eventmachine dependency --- lib/twitter_ebooks/version.rb | 2 +- twitter_ebooks.gemspec | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index f526508..b7df6ae 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.6" + VERSION = "3.0.7" end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index b5c97ed..9e2550a 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -23,7 +23,6 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'yard' gem.add_runtime_dependency 'twitter', '~> 5.0' - gem.add_runtime_dependency 'eventmachine', '~> 1.0.3' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' gem.add_runtime_dependency 'htmlentities' From 19f670ed424abfeb30f9568d49d36782c38a2ba3 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Fri, 16 Jan 2015 21:36:26 -0800 Subject: [PATCH 153/168] Redundant line removal I can't spell. --- lib/twitter_ebooks/bot.rb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index eb5cf51..5c2bc54 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -304,13 +304,10 @@ module Ebooks end end - # Updates @user and calls on_user_update. Make sure it's the right person before you call it. + # Updates @user and calls on_user_update. def update_myself(new_me = twitter.user) - new_me = twitter.user unless new_me.is_a? Twitter::User - @user = new_me @username = user.name - fire(:user_update) end @@ -337,7 +334,7 @@ module Ebooks old_name = username # Load user object and actual username update_myself - # Warn about mismatches unless it was clearly intensional + # Warn about mismatches unless it was clearly intentional log "warning: bot expected to be @#{old_name} but connected to @#{username}" unless username == old_name || old_name.empty? fire(:startup) From 770739d922fe94f8d0b800715bf52ba0a5ab7163 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Fri, 16 Jan 2015 22:13:20 -0800 Subject: [PATCH 154/168] Check ID before updating user --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 5c2bc54..e5924fc 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -306,7 +306,7 @@ module Ebooks # Updates @user and calls on_user_update. def update_myself(new_me = twitter.user) - @user = new_me + @user = new_me if @user.nil? || new_me.id == @user.id @username = user.name fire(:user_update) end From b541b2145603639ef1b271b268f958c26ed99cc8 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Fri, 16 Jan 2015 22:49:26 -0800 Subject: [PATCH 155/168] Spec tests updates Also added some new anti-responding-to-self tests. --- spec/bot_spec.rb | 46 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 4 deletions(-) diff --git a/spec/bot_spec.rb b/spec/bot_spec.rb index ba07a4d..f3ff393 100644 --- a/spec/bot_spec.rb +++ b/spec/bot_spec.rb @@ -24,8 +24,17 @@ end module Ebooks::Test # Generates a random twitter id - def twitter_id - (rand*10**18).to_i + # Or a non-random one, given a string. + def twitter_id(seed = nil) + if seed.nil? + (rand*10**18).to_i + else + id = 1 + seed.downcase.each_byte do |byte| + id *= byte/10 + end + id + end end # Creates a mock direct message @@ -33,7 +42,7 @@ module Ebooks::Test # @param text DM content def mock_dm(username, text) Twitter::DirectMessage.new(id: twitter_id, - sender: { id: twitter_id, screen_name: username}, + sender: { id: twitter_id(username), screen_name: username}, text: text) end @@ -45,7 +54,7 @@ module Ebooks::Test tweet = Twitter::Tweet.new({ id: twitter_id, in_reply_to_status_id: 'mock-link', - user: { id: twitter_id, screen_name: username }, + user: { id: twitter_id(username), screen_name: username }, text: text, created_at: Time.now.to_s, entities: { @@ -58,14 +67,21 @@ module Ebooks::Test tweet end + # Creates a mock user + def mock_user(username) + Twitter::User.new(id: twitter_id(username), screen_name: username) + end + def twitter_spy(bot) twitter = spy("twitter") allow(twitter).to receive(:update).and_return(mock_tweet(bot.username, "test tweet")) + allow(twitter).to receive(:user).with(no_args).and_return(mock_user(bot.username)) twitter end def simulate(bot, &b) bot.twitter = twitter_spy(bot) + bot.update_myself # Usually called in prepare b.call end @@ -95,6 +111,13 @@ describe Ebooks::Bot do end end + it "ignores its own dms" do + simulate(bot) do + expect(bot).to_not receive(:on_message) + bot.receive_event(mock_dm("Test_Ebooks", "why am I talking to myself")) + end + end + it "responds to mentions" do simulate(bot) do bot.receive_event(mock_tweet("m1sp", "@test_ebooks this is a mention")) @@ -102,6 +125,14 @@ describe Ebooks::Bot do end end + it "ignores its own mentions" do + simulate(bot) do + expect(bot).to_not receive(:on_mention) + expect(bot).to_not receive(:on_timeline) + bot.receive_event(mock_tweet("Test_Ebooks", "@m1sp i think that @test_ebooks is best bot")) + end + end + it "responds to timeline tweets" do simulate(bot) do bot.receive_event(mock_tweet("m1sp", "some excellent tweet")) @@ -109,6 +140,13 @@ describe Ebooks::Bot do end end + it "ignores its own timeline tweets" do + simulate(bot) do + expect(bot).to_not receive(:on_timeline) + bot.receive_event(mock_tweet("Test_Ebooks", "pudding is cute")) + end + end + it "links tweets to conversations correctly" do tweet1 = mock_tweet("m1sp", "tweet 1", id: 1, in_reply_to_status_id: nil) From fd0529021a33a5f98834e945078d4c209e7d78c9 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Fri, 16 Jan 2015 22:58:46 -0800 Subject: [PATCH 156/168] Fixed a variable name Well, that's embarrassing. --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index e5924fc..8e32bda 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -307,7 +307,7 @@ module Ebooks # Updates @user and calls on_user_update. def update_myself(new_me = twitter.user) @user = new_me if @user.nil? || new_me.id == @user.id - @username = user.name + @username = user.screen_name fire(:user_update) end From 499056e2e34d8ef1fa0bfac921376af0a45dbeea Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sat, 17 Jan 2015 21:16:57 -0800 Subject: [PATCH 157/168] Send user ID array with on_connect. This would be useful for people who might want to do some follow list processing without using an extra requests (i.e. to compare with a list of followers) --- lib/twitter_ebooks/bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index 8e32bda..d8f7098 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -252,7 +252,7 @@ module Ebooks case ev when Array # Initial array sent on first connection log "Online!" - fire(:connect) + fire(:connect, ev) return when Twitter::DirectMessage return if ev.sender.id == @user.id # Don't reply to self From 13e12922da4020207903ff75ff0086cfe8055b49 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sun, 18 Jan 2015 14:59:13 -0800 Subject: [PATCH 158/168] Log message Now shows a log message when user information is updated --- lib/twitter_ebooks/bot.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index d8f7098..e724d72 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -308,6 +308,7 @@ module Ebooks def update_myself(new_me = twitter.user) @user = new_me if @user.nil? || new_me.id == @user.id @username = user.screen_name + log 'User information updated' fire(:user_update) end From 7aeb9024bd25bdfa076f1fcab6511cd512a936b0 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 7 Feb 2015 21:12:50 -0800 Subject: [PATCH 159/168] Fix consume-all help text --- bin/ebooks | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/ebooks b/bin/ebooks index d334c5b..dac81bc 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -23,7 +23,7 @@ Usage: ebooks c[onsole] ebooks auth ebooks consume [corpus_path2] [...] - ebooks consume-all [corpus_path2] [...] + ebooks consume-all [corpus_path2] [...] ebooks gen [input] ebooks archive [path] ebooks tweet @@ -77,7 +77,7 @@ STR Usage: ebooks consume [corpus_path2] [...] Processes some number of text files or json tweet corpuses - into usable models. These will be output at model/.model + into usable models. These will be output at model/.model STR def self.consume(pathes) @@ -97,10 +97,10 @@ STR end HELP.consume_all = <<-STR - Usage: ebooks consume-all [corpus_path2] [...] + Usage: ebooks consume-all [corpus_path2] [...] Processes some number of text files or json tweet corpuses - into one usable model. It will be output at model/.model + into one usable model. It will be output at model/.model STR def self.consume_all(name, paths) From 2c7246c30ec831f651546fe91c00ab1c6df0c95f Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Sat, 7 Feb 2015 22:15:45 -0800 Subject: [PATCH 160/168] 3.0.8 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index b7df6ae..5cc6f0e 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.7" + VERSION = "3.0.8" end From 9f9dfc9b0c66ad34d0416ba26a784db9d413ed9f Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Wed, 11 Mar 2015 02:41:18 -0700 Subject: [PATCH 161/168] Add warning when consuming a plaintext corpus --- lib/twitter_ebooks/model.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index 7213d79..b3bbb13 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -118,7 +118,7 @@ module Ebooks tweet[text_col] end else - log "Reading plaintext corpus from #{path}" + log "Reading plaintext corpus from #{path} (if this is a json or csv file, please rename the file with an extension and reconsume)" lines = content.split("\n") end From 4280d8c58920a014962b99aa24f774ce7993bd40 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Wed, 11 Mar 2015 12:05:10 -0700 Subject: [PATCH 162/168] add clarifying note to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 139f4f9..c8f135c 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ The underlying streaming and REST clients from the [twitter gem](https://github. ## Archiving accounts -twitter\_ebooks comes with a syncing tool to download and then incrementally update a local json archive of a user's tweets. +twitter\_ebooks comes with a syncing tool to download and then incrementally update a local json archive of a user's tweets (in this case, my good friend @0xabad1dea): ``` zsh ➜ ebooks archive 0xabad1dea corpus/0xabad1dea.json From d2f0dc7c18c7863fe01160245bf32b7cf58deedb Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Thu, 12 Mar 2015 09:40:28 -0700 Subject: [PATCH 163/168] Restore jsonify command for converting csv to json --- bin/ebooks | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/bin/ebooks b/bin/ebooks index dac81bc..fc52310 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -114,6 +114,52 @@ STR log "Corpuses consumed to #{outpath}" end + HELP.jsonify = <<-STR + Usage: ebooks jsonify [tweets.csv2] [...] + + Takes a csv twitter archive and converts it to json. + STR + + def self.jsonify(paths) + if paths.empty? + log usage + exit + end + + paths.each do |path| + name = File.basename(path).split('.')[0] + new_path = name + ".json" + + tweets = [] + id = nil + if path.split('.')[-1] == "csv" #from twitter archive + csv_archive = CSV.read(path, :headers=>:first_row) + tweets = csv_archive.map do |tweet| + { text: tweet['text'], id: tweet['tweet_id'] } + end + else + File.read(path).split("\n").each do |l| + if l.start_with?('# ') + id = l.split('# ')[-1] + else + tweet = { text: l } + if id + tweet[:id] = id + id = nil + end + tweets << tweet + end + end + end + + File.open(new_path, 'w') do |f| + log "Writing #{tweets.length} tweets to #{new_path}" + f.write(JSON.pretty_generate(tweets)) + end + end + end + + HELP.gen = <<-STR Usage: ebooks gen [input] From 1d1b1930d88f08726a3bd6c84608ff311dc8201a Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Thu, 12 Mar 2015 09:40:50 -0700 Subject: [PATCH 164/168] 3.0.9 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index 5cc6f0e..c098e7c 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.8" + VERSION = "3.0.9" end From 3003d5a0141714169d16f46a6ec7930d009a9a6a Mon Sep 17 00:00:00 2001 From: Peter Lawler Date: Mon, 23 Mar 2015 19:48:51 +1100 Subject: [PATCH 165/168] Require fileutils It's the little things that count on some systems. A whole bunch of twitter_ebooks things just wouldn't under Fedora unless I force fileutils as a requirement. --- bin/ebooks | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/ebooks b/bin/ebooks index fc52310..24a5120 100755 --- a/bin/ebooks +++ b/bin/ebooks @@ -3,6 +3,7 @@ require 'twitter_ebooks' require 'ostruct' +require 'fileutils' module Ebooks::Util def pretty_exception(e) From 2f3f117b39c03cdb593e264beffc05ebaf5fbe7c Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Fri, 22 May 2015 11:17:05 -0700 Subject: [PATCH 166/168] Remove extraneous sample --- lib/twitter_ebooks/suffix.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/twitter_ebooks/suffix.rb b/lib/twitter_ebooks/suffix.rb index 83c6f88..ff57f97 100644 --- a/lib/twitter_ebooks/suffix.rb +++ b/lib/twitter_ebooks/suffix.rb @@ -71,7 +71,6 @@ module Ebooks start = site[0] site[1].shuffle.each do |alt| - start, alt = site[0], site[1].sample verbatim << @sentences[alt[0]] suffix = @sentences[alt[0]][alt[1]..-1] potential = tikis[0..start+1] + suffix From 13e5c4730155a39a4745f85a2b6bd6c2c8a277c6 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Sun, 24 May 2015 01:30:31 -0700 Subject: [PATCH 167/168] Fix issue in user self-update --- lib/twitter_ebooks/bot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter_ebooks/bot.rb b/lib/twitter_ebooks/bot.rb index c1b5041..29e6814 100644 --- a/lib/twitter_ebooks/bot.rb +++ b/lib/twitter_ebooks/bot.rb @@ -305,9 +305,9 @@ module Ebooks end # Updates @user and calls on_user_update. - def update_myself(new_me = twitter.user) + def update_myself(new_me=twitter.user) @user = new_me if @user.nil? || new_me.id == @user.id - @username = user.screen_name + @username = @user.screen_name log 'User information updated' fire(:user_update) end From 854f4351ee6d050c050d1f5feb700d9376b2e631 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy Date: Sun, 24 May 2015 01:30:51 -0700 Subject: [PATCH 168/168] 3.1.0 --- lib/twitter_ebooks/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twitter_ebooks/version.rb b/lib/twitter_ebooks/version.rb index c098e7c..fe65e50 100644 --- a/lib/twitter_ebooks/version.rb +++ b/lib/twitter_ebooks/version.rb @@ -1,3 +1,3 @@ module Ebooks - VERSION = "3.0.9" + VERSION = "3.1.0" end

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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 z 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