statuses.followers.xml 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <users type="array">
  3. <user>
  4. <id>26839591</id>
  5. <name>Likely.To</name>
  6. <screen_name>likelyto</screen_name>
  7. <location>Everywhere and nowhere.</location>
  8. <description>Having fun with lots of cool friends.</description>
  9. <profile_image_url>http://a1.twimg.com/profile_images/114614118/sss5_normal.png</profile_image_url>
  10. <url>http://Likely.To/</url>
  11. <protected>false</protected>
  12. <followers_count>12063</followers_count>
  13. <profile_background_color>FF6699</profile_background_color>
  14. <profile_text_color>362720</profile_text_color>
  15. <profile_link_color>B40B43</profile_link_color>
  16. <profile_sidebar_fill_color>E5507E</profile_sidebar_fill_color>
  17. <profile_sidebar_border_color>CC3366</profile_sidebar_border_color>
  18. <friends_count>10941</friends_count>
  19. <created_at>Thu Mar 26 20:20:13 +0000 2009</created_at>
  20. <favourites_count>0</favourites_count>
  21. <utc_offset>-28800</utc_offset>
  22. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  23. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme11/bg.gif</profile_background_image_url>
  24. <profile_background_tile>true</profile_background_tile>
  25. <notifications>false</notifications>
  26. <geo_enabled>false</geo_enabled>
  27. <verified>false</verified>
  28. <following>false</following>
  29. <statuses_count>61</statuses_count>
  30. <lang>en</lang>
  31. <contributors_enabled>false</contributors_enabled>
  32. <status>
  33. <created_at>Fri Apr 09 00:44:56 +0000 2010</created_at>
  34. <id>11853071898</id>
  35. <text>could use some help testing my site. I added more features finally. http://likely.to/ thx all. *waves*</text>
  36. <source>web</source>
  37. <truncated>false</truncated>
  38. <in_reply_to_status_id/>
  39. <in_reply_to_user_id/>
  40. <favorited>false</favorited>
  41. <in_reply_to_screen_name/>
  42. <geo/>
  43. <coordinates/>
  44. <place/>
  45. <contributors/>
  46. </status>
  47. </user>
  48. <user>
  49. <id>137929178</id>
  50. <name>Matthew Hellinger</name>
  51. <screen_name>webspaceinc</screen_name>
  52. <location>Birmingham, AL</location>
  53. <description>CEO of Webspace Enterprises, Inc.</description>
  54. <profile_image_url>http://a3.twimg.com/profile_images/858215349/ProfilePhoto_normal.jpg</profile_image_url>
  55. <url>http://www.webspaceinc.com</url>
  56. <protected>false</protected>
  57. <followers_count>244</followers_count>
  58. <profile_background_color>022330</profile_background_color>
  59. <profile_text_color>333333</profile_text_color>
  60. <profile_link_color>0084B4</profile_link_color>
  61. <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
  62. <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
  63. <friends_count>878</friends_count>
  64. <created_at>Wed Apr 28 04:40:31 +0000 2010</created_at>
  65. <favourites_count>0</favourites_count>
  66. <utc_offset/>
  67. <time_zone/>
  68. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
  69. <profile_background_tile>false</profile_background_tile>
  70. <notifications>false</notifications>
  71. <geo_enabled>false</geo_enabled>
  72. <verified>false</verified>
  73. <following>false</following>
  74. <statuses_count>11</statuses_count>
  75. <lang>en</lang>
  76. <contributors_enabled>false</contributors_enabled>
  77. <status>
  78. <created_at>Mon May 24 15:41:10 +0000 2010</created_at>
  79. <id>14630801221</id>
  80. <text>Toyota partnering with Tesla for Model S. Cool!</text>
  81. <source>web</source>
  82. <truncated>false</truncated>
  83. <in_reply_to_status_id/>
  84. <in_reply_to_user_id/>
  85. <favorited>false</favorited>
  86. <in_reply_to_screen_name/>
  87. <geo/>
  88. <coordinates/>
  89. <place/>
  90. <contributors/>
  91. </status>
  92. </user>
  93. <user>
  94. <id>14310904</id>
  95. <name>Bernd Matzner</name>
  96. <screen_name>bmatzner</screen_name>
  97. <location>Berlin</location>
  98. <description/>
  99. <profile_image_url>http://a1.twimg.com/profile_images/54353746/berndmatzner-twitter_normal.jpg</profile_image_url>
  100. <url>http://berndmatzner.de</url>
  101. <protected>false</protected>
  102. <followers_count>50</followers_count>
  103. <profile_background_color>1A2D30</profile_background_color>
  104. <profile_text_color>1A2D30</profile_text_color>
  105. <profile_link_color>621A1A</profile_link_color>
  106. <profile_sidebar_fill_color>CFD6D7</profile_sidebar_fill_color>
  107. <profile_sidebar_border_color>CFD6D7</profile_sidebar_border_color>
  108. <friends_count>81</friends_count>
  109. <created_at>Sat Apr 05 15:58:00 +0000 2008</created_at>
  110. <favourites_count>0</favourites_count>
  111. <utc_offset>3600</utc_offset>
  112. <time_zone>Berlin</time_zone>
  113. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  114. <profile_background_tile>false</profile_background_tile>
  115. <notifications>false</notifications>
  116. <geo_enabled>true</geo_enabled>
  117. <verified>false</verified>
  118. <following>false</following>
  119. <statuses_count>65</statuses_count>
  120. <lang>de</lang>
  121. <contributors_enabled>false</contributors_enabled>
  122. <status>
  123. <created_at>Wed May 26 19:17:35 +0000 2010</created_at>
  124. <id>14782919693</id>
  125. <text>just installed the Google Analytics Opt-Out add-on for browser. Feels good. http://tools.google.com/dlpage/gaoptout</text>
  126. <source>web</source>
  127. <truncated>false</truncated>
  128. <in_reply_to_status_id/>
  129. <in_reply_to_user_id/>
  130. <favorited>false</favorited>
  131. <in_reply_to_screen_name/>
  132. <geo/>
  133. <coordinates/>
  134. <place/>
  135. <contributors/>
  136. </status>
  137. </user>
  138. <user>
  139. <id>87470812</id>
  140. <name>Christian Albrecht</name>
  141. <screen_name>c_alb</screen_name>
  142. <location>Munich, Germany</location>
  143. <description>self-taught coder applying Zend Framework php &amp; jQuery,
  144. Zend_Form Lead Maintainer</description>
  145. <profile_image_url>http://a1.twimg.com/profile_images/802030278/twitter3_normal.png</profile_image_url>
  146. <url>http://christian-albrecht.info</url>
  147. <protected>false</protected>
  148. <followers_count>42</followers_count>
  149. <profile_background_color>022330</profile_background_color>
  150. <profile_text_color>333333</profile_text_color>
  151. <profile_link_color>0084B4</profile_link_color>
  152. <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
  153. <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
  154. <friends_count>70</friends_count>
  155. <created_at>Wed Nov 04 16:08:43 +0000 2009</created_at>
  156. <favourites_count>4</favourites_count>
  157. <utc_offset>3600</utc_offset>
  158. <time_zone>Berlin</time_zone>
  159. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
  160. <profile_background_tile>false</profile_background_tile>
  161. <notifications>false</notifications>
  162. <geo_enabled>false</geo_enabled>
  163. <verified>false</verified>
  164. <following>false</following>
  165. <statuses_count>160</statuses_count>
  166. <lang>en</lang>
  167. <contributors_enabled>false</contributors_enabled>
  168. <status>
  169. <created_at>Sat May 29 18:20:58 +0000 2010</created_at>
  170. <id>14990769746</id>
  171. <text>Out of Rosenheim in tv now :D</text>
  172. <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
  173. <truncated>false</truncated>
  174. <in_reply_to_status_id/>
  175. <in_reply_to_user_id/>
  176. <favorited>false</favorited>
  177. <in_reply_to_screen_name/>
  178. <geo/>
  179. <coordinates/>
  180. <place/>
  181. <contributors/>
  182. </status>
  183. </user>
  184. <user>
  185. <id>89178844</id>
  186. <name>Andrey Shevchenko</name>
  187. <screen_name>distdev</screen_name>
  188. <location/>
  189. <description>PHP developer / Zend Certified Engineer :)</description>
  190. <profile_image_url>http://a1.twimg.com/profile_images/598948962/dd_normal.gif</profile_image_url>
  191. <url/>
  192. <protected>false</protected>
  193. <followers_count>30</followers_count>
  194. <profile_background_color>9ae4e8</profile_background_color>
  195. <profile_text_color>000000</profile_text_color>
  196. <profile_link_color>0000ff</profile_link_color>
  197. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  198. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  199. <friends_count>54</friends_count>
  200. <created_at>Wed Nov 11 12:58:21 +0000 2009</created_at>
  201. <favourites_count>4</favourites_count>
  202. <utc_offset>7200</utc_offset>
  203. <time_zone>Kyiv</time_zone>
  204. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  205. <profile_background_tile>false</profile_background_tile>
  206. <notifications>false</notifications>
  207. <geo_enabled>false</geo_enabled>
  208. <verified>false</verified>
  209. <following>false</following>
  210. <statuses_count>229</statuses_count>
  211. <lang>en</lang>
  212. <contributors_enabled>false</contributors_enabled>
  213. <status>
  214. <created_at>Sun May 30 10:03:31 +0000 2010</created_at>
  215. <id>15032621202</id>
  216. <text>Харьковский Интернет вошел в десятку самых высокоскоростных в мире O.o http://bit.ly/bwEqpJ #Kharkov</text>
  217. <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
  218. <truncated>false</truncated>
  219. <in_reply_to_status_id/>
  220. <in_reply_to_user_id/>
  221. <favorited>false</favorited>
  222. <in_reply_to_screen_name/>
  223. <geo/>
  224. <coordinates/>
  225. <place/>
  226. <contributors/>
  227. </status>
  228. </user>
  229. <user>
  230. <id>7501222</id>
  231. <name>bpizzi</name>
  232. <screen_name>bpizzi</screen_name>
  233. <location>France / Lyon</location>
  234. <description>Un évangélisateur des ntic perdu dans le monde professionnel préhistorique français, ébahis par le travail qu'il lui reste à accomplir.</description>
  235. <profile_image_url>http://a1.twimg.com/profile_images/23343532/moi7_normal.jpg</profile_image_url>
  236. <url/>
  237. <protected>false</protected>
  238. <followers_count>35</followers_count>
  239. <profile_background_color>673300</profile_background_color>
  240. <profile_text_color>B26418</profile_text_color>
  241. <profile_link_color>C12D06</profile_link_color>
  242. <profile_sidebar_fill_color>FACA9A</profile_sidebar_fill_color>
  243. <profile_sidebar_border_color>B45B04</profile_sidebar_border_color>
  244. <friends_count>44</friends_count>
  245. <created_at>Mon Jul 16 08:35:24 +0000 2007</created_at>
  246. <favourites_count>0</favourites_count>
  247. <utc_offset>3600</utc_offset>
  248. <time_zone>Paris</time_zone>
  249. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  250. <profile_background_tile>false</profile_background_tile>
  251. <notifications>false</notifications>
  252. <geo_enabled>false</geo_enabled>
  253. <verified>false</verified>
  254. <following>false</following>
  255. <statuses_count>56</statuses_count>
  256. <lang>fr</lang>
  257. <contributors_enabled>false</contributors_enabled>
  258. <status>
  259. <created_at>Fri May 28 16:38:55 +0000 2010</created_at>
  260. <id>14917930178</id>
  261. <text>I've been Tweeting since July 16, 2007 (1047 days). How about you? - http://HowLongOnTwitter.com</text>
  262. <source>web</source>
  263. <truncated>false</truncated>
  264. <in_reply_to_status_id/>
  265. <in_reply_to_user_id/>
  266. <favorited>false</favorited>
  267. <in_reply_to_screen_name/>
  268. <geo/>
  269. <coordinates/>
  270. <place/>
  271. <contributors/>
  272. </status>
  273. </user>
  274. <user>
  275. <id>138227780</id>
  276. <name>BringBackSeeker</name>
  277. <screen_name>BringBackSeeker</screen_name>
  278. <location>Gate City, VA</location>
  279. <description>Dedicated to bringing back Legend of the Seeker to TV.</description>
  280. <profile_image_url>http://a3.twimg.com/profile_images/858837071/lots_normal.JPG</profile_image_url>
  281. <url>http://bringbacktheseeker.com/</url>
  282. <protected>false</protected>
  283. <followers_count>584</followers_count>
  284. <profile_background_color>9ae4e8</profile_background_color>
  285. <profile_text_color>000000</profile_text_color>
  286. <profile_link_color>0000ff</profile_link_color>
  287. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  288. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  289. <friends_count>1458</friends_count>
  290. <created_at>Thu Apr 29 00:09:21 +0000 2010</created_at>
  291. <favourites_count>2</favourites_count>
  292. <utc_offset>-18000</utc_offset>
  293. <time_zone>Quito</time_zone>
  294. <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
  295. <profile_background_tile>false</profile_background_tile>
  296. <notifications>false</notifications>
  297. <geo_enabled>true</geo_enabled>
  298. <verified>false</verified>
  299. <following>false</following>
  300. <statuses_count>506</statuses_count>
  301. <lang>en</lang>
  302. <contributors_enabled>false</contributors_enabled>
  303. <status>
  304. <created_at>Sat May 29 16:26:15 +0000 2010</created_at>
  305. <id>14984621714</id>
  306. <text>RT @SilentWatchman: vote Legend of the Seeker for "TV Show of the Month" http://faxo.com/t</text>
  307. <source>web</source>
  308. <truncated>false</truncated>
  309. <in_reply_to_status_id/>
  310. <in_reply_to_user_id/>
  311. <favorited>false</favorited>
  312. <in_reply_to_screen_name/>
  313. <retweeted_status>
  314. <created_at>Sat May 29 16:22:05 +0000 2010</created_at>
  315. <id>14984381408</id>
  316. <text>vote Legend of the Seeker for "TV Show of the Month" http://faxo.com/t</text>
  317. <source>&lt;a href="http://faxo.com/" rel="nofollow"&gt;Faxo.com&lt;/a&gt;</source>
  318. <truncated>false</truncated>
  319. <in_reply_to_status_id/>
  320. <in_reply_to_user_id/>
  321. <favorited>false</favorited>
  322. <in_reply_to_screen_name/>
  323. <geo/>
  324. <coordinates/>
  325. <place/>
  326. <contributors/>
  327. </retweeted_status>
  328. <geo/>
  329. <coordinates/>
  330. <place/>
  331. <contributors/>
  332. </status>
  333. </user>
  334. <user>
  335. <id>41372905</id>
  336. <name>Kornienko Alex</name>
  337. <screen_name>Skorney</screen_name>
  338. <location>Kiev</location>
  339. <description/>
  340. <profile_image_url>http://a3.twimg.com/profile_images/837956805/24747_normal.jpg</profile_image_url>
  341. <url/>
  342. <protected>false</protected>
  343. <followers_count>18</followers_count>
  344. <profile_background_color>9ae4e8</profile_background_color>
  345. <profile_text_color>000000</profile_text_color>
  346. <profile_link_color>0000ff</profile_link_color>
  347. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  348. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  349. <friends_count>29</friends_count>
  350. <created_at>Wed May 20 14:51:11 +0000 2009</created_at>
  351. <favourites_count>0</favourites_count>
  352. <utc_offset/>
  353. <time_zone/>
  354. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  355. <profile_background_tile>false</profile_background_tile>
  356. <notifications>false</notifications>
  357. <geo_enabled>false</geo_enabled>
  358. <verified>false</verified>
  359. <following>false</following>
  360. <statuses_count>12</statuses_count>
  361. <lang>en</lang>
  362. <contributors_enabled>false</contributors_enabled>
  363. <status>
  364. <created_at>Fri May 28 08:51:13 +0000 2010</created_at>
  365. <id>14894030650</id>
  366. <text>RT @fabpot: just pushed the #symfony 2 #propel bundle to my repo (still alpha but works) http://github.com/fabpot/symfony</text>
  367. <source>web</source>
  368. <truncated>false</truncated>
  369. <in_reply_to_status_id/>
  370. <in_reply_to_user_id/>
  371. <favorited>false</favorited>
  372. <in_reply_to_screen_name/>
  373. <retweeted_status>
  374. <created_at>Thu May 27 15:33:01 +0000 2010</created_at>
  375. <id>14841757090</id>
  376. <text>just pushed the #symfony 2 #propel bundle to my repo (still alpha but works) http://github.com/fabpot/symfony</text>
  377. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  378. <truncated>false</truncated>
  379. <in_reply_to_status_id/>
  380. <in_reply_to_user_id/>
  381. <favorited>false</favorited>
  382. <in_reply_to_screen_name/>
  383. <geo/>
  384. <coordinates/>
  385. <place/>
  386. <contributors/>
  387. </retweeted_status>
  388. <geo/>
  389. <coordinates/>
  390. <place/>
  391. <contributors/>
  392. </status>
  393. </user>
  394. <user>
  395. <id>8723432</id>
  396. <name>Szabolcs Sulik</name>
  397. <screen_name>blerou</screen_name>
  398. <location>Budapest</location>
  399. <description/>
  400. <profile_image_url>http://a1.twimg.com/profile_images/717349044/45bd4ecd13d1638348596e7eb749070b_normal.jpeg</profile_image_url>
  401. <url>http://bleroutoolkit.wordpress.com</url>
  402. <protected>false</protected>
  403. <followers_count>8</followers_count>
  404. <profile_background_color>022330</profile_background_color>
  405. <profile_text_color>333333</profile_text_color>
  406. <profile_link_color>0084B4</profile_link_color>
  407. <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
  408. <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
  409. <friends_count>15</friends_count>
  410. <created_at>Fri Sep 07 13:12:34 +0000 2007</created_at>
  411. <favourites_count>2</favourites_count>
  412. <utc_offset>3600</utc_offset>
  413. <time_zone>Budapest</time_zone>
  414. <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme15/bg.png</profile_background_image_url>
  415. <profile_background_tile>false</profile_background_tile>
  416. <notifications>false</notifications>
  417. <geo_enabled>false</geo_enabled>
  418. <verified>false</verified>
  419. <following>false</following>
  420. <statuses_count>8</statuses_count>
  421. <lang>en</lang>
  422. <contributors_enabled>false</contributors_enabled>
  423. <status>
  424. <created_at>Mon Apr 19 09:29:06 +0000 2010</created_at>
  425. <id>12446898577</id>
  426. <text>RT @vsbmeza: Cola-pop :) (2 coke exploded due to the freezing temperature in our fridge) http://twitpic.com/1grsvd</text>
  427. <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
  428. <truncated>false</truncated>
  429. <in_reply_to_status_id/>
  430. <in_reply_to_user_id/>
  431. <favorited>false</favorited>
  432. <in_reply_to_screen_name/>
  433. <retweeted_status>
  434. <created_at>Mon Apr 19 08:01:36 +0000 2010</created_at>
  435. <id>12444503300</id>
  436. <text>Cola-pop :) (2 coke exploded due to the freezing temperature in our fridge) http://twitpic.com/1grsvd</text>
  437. <source>&lt;a href="http://www.tweetings.net/iphone/" rel="nofollow"&gt;Tweetings&lt;/a&gt;</source>
  438. <truncated>false</truncated>
  439. <in_reply_to_status_id/>
  440. <in_reply_to_user_id/>
  441. <favorited>false</favorited>
  442. <in_reply_to_screen_name/>
  443. <geo xmlns:georss="http://www.georss.org/georss">
  444. <georss:point>47.562670 19.052829</georss:point>
  445. </geo>
  446. <coordinates xmlns:georss="http://www.georss.org/georss">
  447. <georss:point>47.562670 19.052829</georss:point>
  448. </coordinates>
  449. <place xmlns:georss="http://www.georss.org/georss">
  450. <id>e52e231315b975c1</id>
  451. <name>Budapest</name>
  452. <full_name>Budapest, Közép-Magyarország</full_name>
  453. <place_type>city</place_type>
  454. <url>http://api.twitter.com/1/geo/id/e52e231315b975c1.json</url>
  455. <bounding_box/>
  456. <country code="HU">Magyarország</country>
  457. <street_address/>
  458. </place>
  459. <contributors/>
  460. </retweeted_status>
  461. <geo/>
  462. <coordinates/>
  463. <place/>
  464. <contributors/>
  465. </status>
  466. </user>
  467. <user>
  468. <id>3840</id>
  469. <name>Jason Calacanis</name>
  470. <screen_name>Jason</screen_name>
  471. <location>Los Angeles, CA</location>
  472. <description>Cereal entrepreneur: Founder Weblogs Inc., TechCrunch50, Frosted Flakes, Silicon Alley Reporter, Open Angel Forum,Engadget,This Week in Startups &amp; Mahalo.com. </description>
  473. <profile_image_url>http://a1.twimg.com/profile_images/761165212/Screen_shot_2010-03-18_at_6.30.41_PM_normal.png</profile_image_url>
  474. <url>http://thisweekin.com/thisweekin-startups/</url>
  475. <protected>false</protected>
  476. <followers_count>99910</followers_count>
  477. <profile_background_color>9ae4e8</profile_background_color>
  478. <profile_text_color>000000</profile_text_color>
  479. <profile_link_color>0000ff</profile_link_color>
  480. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  481. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  482. <friends_count>32604</friends_count>
  483. <created_at>Sat Aug 05 23:31:27 +0000 2006</created_at>
  484. <favourites_count>52</favourites_count>
  485. <utc_offset>-28800</utc_offset>
  486. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  487. <profile_background_image_url>http://a3.twimg.com/profile_background_images/84262475/t_and_f.jpg</profile_background_image_url>
  488. <profile_background_tile>true</profile_background_tile>
  489. <notifications>false</notifications>
  490. <geo_enabled>false</geo_enabled>
  491. <verified>false</verified>
  492. <following>false</following>
  493. <statuses_count>17617</statuses_count>
  494. <lang>en</lang>
  495. <contributors_enabled>false</contributors_enabled>
  496. <status>
  497. <created_at>Sun May 30 02:14:11 +0000 2010</created_at>
  498. <id>15012821779</id>
  499. <text>@seanjs word</text>
  500. <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
  501. <truncated>false</truncated>
  502. <in_reply_to_status_id/>
  503. <in_reply_to_user_id>14750822</in_reply_to_user_id>
  504. <favorited>false</favorited>
  505. <in_reply_to_screen_name>seanjs</in_reply_to_screen_name>
  506. <geo/>
  507. <coordinates/>
  508. <place/>
  509. <contributors/>
  510. </status>
  511. </user>
  512. <user>
  513. <id>19543646</id>
  514. <name>Bulat Shakirzyanov</name>
  515. <screen_name>avalanche123</screen_name>
  516. <location>New York, NY</location>
  517. <description>Senior Hacker, OpenSky</description>
  518. <profile_image_url>http://a1.twimg.com/profile_images/74768776/shakir_normal.jpg</profile_image_url>
  519. <url>http://www.theopenskyproject.com/</url>
  520. <protected>false</protected>
  521. <followers_count>31</followers_count>
  522. <profile_background_color>9ae4e8</profile_background_color>
  523. <profile_text_color>000000</profile_text_color>
  524. <profile_link_color>0000ff</profile_link_color>
  525. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  526. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  527. <friends_count>39</friends_count>
  528. <created_at>Mon Jan 26 16:53:14 +0000 2009</created_at>
  529. <favourites_count>0</favourites_count>
  530. <utc_offset/>
  531. <time_zone/>
  532. <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
  533. <profile_background_tile>false</profile_background_tile>
  534. <notifications>false</notifications>
  535. <geo_enabled>false</geo_enabled>
  536. <verified>false</verified>
  537. <following>false</following>
  538. <statuses_count>63</statuses_count>
  539. <lang>en</lang>
  540. <contributors_enabled>false</contributors_enabled>
  541. <status>
  542. <created_at>Sat May 29 18:06:24 +0000 2010</created_at>
  543. <id>14990055724</id>
  544. <text>RT @s_bergmann: RIP Dennis Hopper</text>
  545. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  546. <truncated>false</truncated>
  547. <in_reply_to_status_id/>
  548. <in_reply_to_user_id/>
  549. <favorited>false</favorited>
  550. <in_reply_to_screen_name/>
  551. <retweeted_status>
  552. <created_at>Sat May 29 18:00:53 +0000 2010</created_at>
  553. <id>14989777058</id>
  554. <text>RIP Dennis Hopper</text>
  555. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  556. <truncated>false</truncated>
  557. <in_reply_to_status_id/>
  558. <in_reply_to_user_id/>
  559. <favorited>false</favorited>
  560. <in_reply_to_screen_name/>
  561. <geo/>
  562. <coordinates/>
  563. <place/>
  564. <contributors/>
  565. </retweeted_status>
  566. <geo/>
  567. <coordinates/>
  568. <place/>
  569. <contributors/>
  570. </status>
  571. </user>
  572. <user>
  573. <id>30000984</id>
  574. <name>Craig Willis</name>
  575. <screen_name>craig_willis</screen_name>
  576. <location>Leeds</location>
  577. <description>Web Developer.</description>
  578. <profile_image_url>http://a3.twimg.com/profile_images/353248121/wiggles_normal.jpg</profile_image_url>
  579. <url>http://www.craig-willis.co.uk</url>
  580. <protected>false</protected>
  581. <followers_count>132</followers_count>
  582. <profile_background_color>62afd6</profile_background_color>
  583. <profile_text_color>333333</profile_text_color>
  584. <profile_link_color>0084B4</profile_link_color>
  585. <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
  586. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  587. <friends_count>541</friends_count>
  588. <created_at>Thu Apr 09 15:07:47 +0000 2009</created_at>
  589. <favourites_count>4</favourites_count>
  590. <utc_offset>0</utc_offset>
  591. <time_zone>London</time_zone>
  592. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  593. <profile_background_tile>false</profile_background_tile>
  594. <notifications>false</notifications>
  595. <geo_enabled>true</geo_enabled>
  596. <verified>false</verified>
  597. <following>false</following>
  598. <statuses_count>739</statuses_count>
  599. <lang>en</lang>
  600. <contributors_enabled>false</contributors_enabled>
  601. <status>
  602. <created_at>Sun May 30 12:04:56 +0000 2010</created_at>
  603. <id>15037043483</id>
  604. <text>Today I shall me mostly.....getting wasted and rocking out!</text>
  605. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  606. <truncated>false</truncated>
  607. <in_reply_to_status_id/>
  608. <in_reply_to_user_id/>
  609. <favorited>false</favorited>
  610. <in_reply_to_screen_name/>
  611. <geo/>
  612. <coordinates/>
  613. <place/>
  614. <contributors/>
  615. </status>
  616. </user>
  617. <user>
  618. <id>14287005</id>
  619. <name>Paul Anthony</name>
  620. <screen_name>webireland</screen_name>
  621. <location>Belfast</location>
  622. <description>.NET code monkey extraordinare.</description>
  623. <profile_image_url>http://a1.twimg.com/profile_images/425853164/paul_normal.jpg</profile_image_url>
  624. <url>http://blog.webdistortion.com/?utm_source=twitter&amp;utm_medium=social_media&amp;utm_campaign=ProfileURL</url>
  625. <protected>false</protected>
  626. <followers_count>1422</followers_count>
  627. <profile_background_color>ffffff</profile_background_color>
  628. <profile_text_color>666666</profile_text_color>
  629. <profile_link_color>2FC2EF</profile_link_color>
  630. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  631. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  632. <friends_count>1057</friends_count>
  633. <created_at>Wed Apr 02 20:08:29 +0000 2008</created_at>
  634. <favourites_count>22</favourites_count>
  635. <utc_offset>0</utc_offset>
  636. <time_zone>Dublin</time_zone>
  637. <profile_background_image_url>http://a3.twimg.com/profile_background_images/77619351/n19040221057_2014.jpg</profile_background_image_url>
  638. <profile_background_tile>false</profile_background_tile>
  639. <notifications>false</notifications>
  640. <geo_enabled>true</geo_enabled>
  641. <verified>false</verified>
  642. <following>true</following>
  643. <statuses_count>5782</statuses_count>
  644. <lang>en</lang>
  645. <contributors_enabled>false</contributors_enabled>
  646. <status>
  647. <created_at>Sat May 29 15:18:56 +0000 2010</created_at>
  648. <id>14980630732</id>
  649. <text>If you are using #CCCCCC as body text colour (or lighter) - I aint straining my eyes for you.</text>
  650. <source>web</source>
  651. <truncated>false</truncated>
  652. <in_reply_to_status_id/>
  653. <in_reply_to_user_id/>
  654. <favorited>false</favorited>
  655. <in_reply_to_screen_name/>
  656. <geo/>
  657. <coordinates/>
  658. <place/>
  659. <contributors/>
  660. </status>
  661. </user>
  662. <user>
  663. <id>87594768</id>
  664. <name>Kevin Schroeder</name>
  665. <screen_name>kpschrade</screen_name>
  666. <location/>
  667. <description>Technology Evangelist for Zend Technologies. Co-author of the IBM i Programmer's Guide to PHP</description>
  668. <profile_image_url>http://a3.twimg.com/profile_images/790382249/Little_Schrade_normal.gif</profile_image_url>
  669. <url>http://www.eschrade.com</url>
  670. <protected>false</protected>
  671. <followers_count>172</followers_count>
  672. <profile_background_color>9ae4e8</profile_background_color>
  673. <profile_text_color>000000</profile_text_color>
  674. <profile_link_color>0000ff</profile_link_color>
  675. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  676. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  677. <friends_count>137</friends_count>
  678. <created_at>Thu Nov 05 02:17:15 +0000 2009</created_at>
  679. <favourites_count>1</favourites_count>
  680. <utc_offset/>
  681. <time_zone/>
  682. <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
  683. <profile_background_tile>false</profile_background_tile>
  684. <notifications>false</notifications>
  685. <geo_enabled>false</geo_enabled>
  686. <verified>false</verified>
  687. <following>true</following>
  688. <statuses_count>546</statuses_count>
  689. <lang>en</lang>
  690. <contributors_enabled>false</contributors_enabled>
  691. <status>
  692. <created_at>Wed May 26 23:40:11 +0000 2010</created_at>
  693. <id>14796133356</id>
  694. <text>2012 is when #f1 returns to the US. Austin, TX to be exact. I'll take a race I can drive to http://bit.ly/cNiUBz</text>
  695. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  696. <truncated>false</truncated>
  697. <in_reply_to_status_id/>
  698. <in_reply_to_user_id/>
  699. <favorited>false</favorited>
  700. <in_reply_to_screen_name/>
  701. <geo/>
  702. <coordinates/>
  703. <place/>
  704. <contributors/>
  705. </status>
  706. </user>
  707. <user>
  708. <id>15883336</id>
  709. <name>Rudger Gravestein</name>
  710. <screen_name>Rud5G</screen_name>
  711. <location>Rotterdam, NL</location>
  712. <description>Волшебный кролик</description>
  713. <profile_image_url>http://a1.twimg.com/profile_images/764073210/rud_normal.jpg</profile_image_url>
  714. <url>http://rudgergravestein.com/</url>
  715. <protected>false</protected>
  716. <followers_count>24</followers_count>
  717. <profile_background_color>1A1B1F</profile_background_color>
  718. <profile_text_color>666666</profile_text_color>
  719. <profile_link_color>2FC2EF</profile_link_color>
  720. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  721. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  722. <friends_count>86</friends_count>
  723. <created_at>Sun Aug 17 17:14:36 +0000 2008</created_at>
  724. <favourites_count>13</favourites_count>
  725. <utc_offset>3600</utc_offset>
  726. <time_zone>Amsterdam</time_zone>
  727. <profile_background_image_url>http://a3.twimg.com/profile_background_images/57819525/LunaPark2.jpg</profile_background_image_url>
  728. <profile_background_tile>false</profile_background_tile>
  729. <notifications>false</notifications>
  730. <geo_enabled>true</geo_enabled>
  731. <verified>false</verified>
  732. <following>false</following>
  733. <statuses_count>91</statuses_count>
  734. <lang>en</lang>
  735. <contributors_enabled>false</contributors_enabled>
  736. <status>
  737. <created_at>Sun May 30 12:20:03 +0000 2010</created_at>
  738. <id>15037699311</id>
  739. <text>@TBeijen ik hoor t al, alcohol doet weinig goeds met je grappen :) http://youtu.be/A_sY2rjxq6M</text>
  740. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  741. <truncated>false</truncated>
  742. <in_reply_to_status_id>15032331781</in_reply_to_status_id>
  743. <in_reply_to_user_id>37911273</in_reply_to_user_id>
  744. <favorited>false</favorited>
  745. <in_reply_to_screen_name>TBeijen</in_reply_to_screen_name>
  746. <geo/>
  747. <coordinates/>
  748. <place/>
  749. <contributors/>
  750. </status>
  751. </user>
  752. <user>
  753. <id>20179801</id>
  754. <name>Melody Morgan</name>
  755. <screen_name>doremelody</screen_name>
  756. <location>Los Angeles</location>
  757. <description>plant enthusiast and web developer</description>
  758. <profile_image_url>http://a3.twimg.com/profile_images/860564925/mm_profile_normal.jpg</profile_image_url>
  759. <url/>
  760. <protected>false</protected>
  761. <followers_count>19</followers_count>
  762. <profile_background_color>ffffff</profile_background_color>
  763. <profile_text_color>663B12</profile_text_color>
  764. <profile_link_color>1F98C7</profile_link_color>
  765. <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
  766. <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
  767. <friends_count>19</friends_count>
  768. <created_at>Thu Feb 05 19:49:58 +0000 2009</created_at>
  769. <favourites_count>0</favourites_count>
  770. <utc_offset>-28800</utc_offset>
  771. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  772. <profile_background_image_url>http://a3.twimg.com/profile_background_images/96885905/ideas004.jpg</profile_background_image_url>
  773. <profile_background_tile>true</profile_background_tile>
  774. <notifications>false</notifications>
  775. <geo_enabled>false</geo_enabled>
  776. <verified>false</verified>
  777. <following>false</following>
  778. <statuses_count>12</statuses_count>
  779. <lang>en</lang>
  780. <contributors_enabled>false</contributors_enabled>
  781. <status>
  782. <created_at>Fri May 21 23:48:58 +0000 2010</created_at>
  783. <id>14460074775</id>
  784. <text>@LucreciaRoa ha jk ... 24 is mildly entertaining! Did i ever tell you about the time i saw kiefer sutherland tabledancing at ye old rustic?</text>
  785. <source>web</source>
  786. <truncated>false</truncated>
  787. <in_reply_to_status_id/>
  788. <in_reply_to_user_id>20176213</in_reply_to_user_id>
  789. <favorited>false</favorited>
  790. <in_reply_to_screen_name>LucreciaRoa</in_reply_to_screen_name>
  791. <geo/>
  792. <coordinates/>
  793. <place/>
  794. <contributors/>
  795. </status>
  796. </user>
  797. <user>
  798. <id>15154429</id>
  799. <name>Abhinav Lal</name>
  800. <screen_name>abhinavlal</screen_name>
  801. <location>India</location>
  802. <description>Entrepreneur, Web developer</description>
  803. <profile_image_url>http://a3.twimg.com/profile_images/935987039/f3195180-af41-4be3-879d-ca6a6c67abbc_normal.png</profile_image_url>
  804. <url>http://abhinavlal.wordpress.com</url>
  805. <protected>false</protected>
  806. <followers_count>180</followers_count>
  807. <profile_background_color>99B2B7</profile_background_color>
  808. <profile_text_color>7A6A53</profile_text_color>
  809. <profile_link_color>0E3E4A</profile_link_color>
  810. <profile_sidebar_fill_color>D9CEB2</profile_sidebar_fill_color>
  811. <profile_sidebar_border_color>948C75</profile_sidebar_border_color>
  812. <friends_count>140</friends_count>
  813. <created_at>Wed Jun 18 05:19:03 +0000 2008</created_at>
  814. <favourites_count>19</favourites_count>
  815. <utc_offset>19800</utc_offset>
  816. <time_zone>New Delhi</time_zone>
  817. <profile_background_image_url>http://a1.twimg.com/profile_background_images/103696624/x11f5531572c242115797eb5538a58a4.png</profile_background_image_url>
  818. <profile_background_tile>true</profile_background_tile>
  819. <notifications>false</notifications>
  820. <geo_enabled>true</geo_enabled>
  821. <verified>false</verified>
  822. <following>false</following>
  823. <statuses_count>491</statuses_count>
  824. <lang>en</lang>
  825. <contributors_enabled>false</contributors_enabled>
  826. <status>
  827. <created_at>Sat May 29 05:59:26 +0000 2010</created_at>
  828. <id>14958547119</id>
  829. <text>Awesome presentation n discussion on memcache #blrphp</text>
  830. <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
  831. <truncated>false</truncated>
  832. <in_reply_to_status_id/>
  833. <in_reply_to_user_id/>
  834. <favorited>false</favorited>
  835. <in_reply_to_screen_name/>
  836. <geo/>
  837. <coordinates/>
  838. <place/>
  839. <contributors/>
  840. </status>
  841. </user>
  842. <user>
  843. <id>47087041</id>
  844. <name>Tamer Solieman</name>
  845. <screen_name>tamersolieman</screen_name>
  846. <location/>
  847. <description/>
  848. <profile_image_url>http://a1.twimg.com/profile_images/262440546/tamrbinsolimancopy34_normal.jpg</profile_image_url>
  849. <url/>
  850. <protected>false</protected>
  851. <followers_count>7</followers_count>
  852. <profile_background_color>9ae4e8</profile_background_color>
  853. <profile_text_color>000000</profile_text_color>
  854. <profile_link_color>0000ff</profile_link_color>
  855. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  856. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  857. <friends_count>14</friends_count>
  858. <created_at>Sun Jun 14 12:57:44 +0000 2009</created_at>
  859. <favourites_count>0</favourites_count>
  860. <utc_offset>7200</utc_offset>
  861. <time_zone>Cairo</time_zone>
  862. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  863. <profile_background_tile>false</profile_background_tile>
  864. <notifications>false</notifications>
  865. <geo_enabled>false</geo_enabled>
  866. <verified>false</verified>
  867. <following>false</following>
  868. <statuses_count>3</statuses_count>
  869. <lang>en</lang>
  870. <contributors_enabled>false</contributors_enabled>
  871. <status>
  872. <created_at>Thu May 13 09:14:20 +0000 2010</created_at>
  873. <id>13903917510</id>
  874. <text>نفسي اخلص رسالتي و اقدم استقالتي</text>
  875. <source>&lt;a href="http://choqok.gnufolks.org" rel="nofollow"&gt;choqoK&lt;/a&gt;</source>
  876. <truncated>false</truncated>
  877. <in_reply_to_status_id/>
  878. <in_reply_to_user_id/>
  879. <favorited>false</favorited>
  880. <in_reply_to_screen_name/>
  881. <geo/>
  882. <coordinates/>
  883. <place/>
  884. <contributors/>
  885. </status>
  886. </user>
  887. <user>
  888. <id>117894195</id>
  889. <name>Assar Evans</name>
  890. <screen_name>assar1234</screen_name>
  891. <location/>
  892. <description/>
  893. <profile_image_url>http://a3.twimg.com/profile_images/720472445/imagesCA32Q2B5_normal.jpg</profile_image_url>
  894. <url>http://bit.ly/aXkEaz</url>
  895. <protected>false</protected>
  896. <followers_count>406</followers_count>
  897. <profile_background_color>9ae4e8</profile_background_color>
  898. <profile_text_color>000000</profile_text_color>
  899. <profile_link_color>0000ff</profile_link_color>
  900. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  901. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  902. <friends_count>705</friends_count>
  903. <created_at>Fri Feb 26 23:48:31 +0000 2010</created_at>
  904. <favourites_count>0</favourites_count>
  905. <utc_offset/>
  906. <time_zone/>
  907. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  908. <profile_background_tile>false</profile_background_tile>
  909. <notifications>false</notifications>
  910. <geo_enabled>false</geo_enabled>
  911. <verified>false</verified>
  912. <following>false</following>
  913. <statuses_count>906</statuses_count>
  914. <lang>en</lang>
  915. <contributors_enabled>false</contributors_enabled>
  916. <status>
  917. <created_at>Fri May 21 16:35:08 +0000 2010</created_at>
  918. <id>14439103608</id>
  919. <text>Essential iPad apps: 10 great &amp;lt;b&amp;gt;games&amp;lt;/b&amp;gt; http://bit.ly/dvgKgJ</text>
  920. <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
  921. <truncated>false</truncated>
  922. <in_reply_to_status_id/>
  923. <in_reply_to_user_id/>
  924. <favorited>false</favorited>
  925. <in_reply_to_screen_name/>
  926. <geo/>
  927. <coordinates/>
  928. <place/>
  929. <contributors/>
  930. </status>
  931. </user>
  932. <user>
  933. <id>14921902</id>
  934. <name>Christof Damian</name>
  935. <screen_name>cdamian</screen_name>
  936. <location>Barcelona</location>
  937. <description>Web Developer in Barcelona</description>
  938. <profile_image_url>http://a3.twimg.com/profile_images/460884471/Christof_Damian_200_normal.png</profile_image_url>
  939. <url>http://christof.damian.net/</url>
  940. <protected>false</protected>
  941. <followers_count>95</followers_count>
  942. <profile_background_color>000000</profile_background_color>
  943. <profile_text_color>666666</profile_text_color>
  944. <profile_link_color>808080</profile_link_color>
  945. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  946. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  947. <friends_count>100</friends_count>
  948. <created_at>Tue May 27 15:24:05 +0000 2008</created_at>
  949. <favourites_count>15</favourites_count>
  950. <utc_offset>3600</utc_offset>
  951. <time_zone>Madrid</time_zone>
  952. <profile_background_image_url>http://a3.twimg.com/profile_background_images/3827557/a.gif</profile_background_image_url>
  953. <profile_background_tile>true</profile_background_tile>
  954. <notifications>false</notifications>
  955. <geo_enabled>true</geo_enabled>
  956. <verified>false</verified>
  957. <following>false</following>
  958. <statuses_count>1138</statuses_count>
  959. <lang>en</lang>
  960. <contributors_enabled>false</contributors_enabled>
  961. <status>
  962. <created_at>Sun May 30 14:01:29 +0000 2010</created_at>
  963. <id>15042915623</id>
  964. <text>Sunday Mix: Maurizio ‘ deepmitch ‘ Miceli Presents 6ONE6 – Live Exclusive Mix (2008) http://ping.fm/HnFr2</text>
  965. <source>&lt;a href="http://www.ping.fm/" rel="nofollow"&gt;Ping.fm&lt;/a&gt;</source>
  966. <truncated>false</truncated>
  967. <in_reply_to_status_id/>
  968. <in_reply_to_user_id/>
  969. <favorited>false</favorited>
  970. <in_reply_to_screen_name/>
  971. <geo/>
  972. <coordinates/>
  973. <place/>
  974. <contributors/>
  975. </status>
  976. </user>
  977. <user>
  978. <id>16462154</id>
  979. <name>megan mcdonald</name>
  980. <screen_name>Me9anC</screen_name>
  981. <location>Saskatoon, SK, Canada</location>
  982. <description>I write fiction and code. Dig my job at zu. And one day I will rule the world.</description>
  983. <profile_image_url>http://a3.twimg.com/profile_images/536533431/4003130391_a5725fe7db_b_normal.jpg</profile_image_url>
  984. <url/>
  985. <protected>false</protected>
  986. <followers_count>209</followers_count>
  987. <profile_background_color>EDECE9</profile_background_color>
  988. <profile_text_color>634047</profile_text_color>
  989. <profile_link_color>088253</profile_link_color>
  990. <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
  991. <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
  992. <friends_count>120</friends_count>
  993. <created_at>Fri Sep 26 02:16:07 +0000 2008</created_at>
  994. <favourites_count>2</favourites_count>
  995. <utc_offset>-25200</utc_offset>
  996. <time_zone>Mountain Time (US &amp; Canada)</time_zone>
  997. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme3/bg.gif</profile_background_image_url>
  998. <profile_background_tile>false</profile_background_tile>
  999. <notifications>false</notifications>
  1000. <geo_enabled>false</geo_enabled>
  1001. <verified>false</verified>
  1002. <following>false</following>
  1003. <statuses_count>1959</statuses_count>
  1004. <lang>en</lang>
  1005. <contributors_enabled>false</contributors_enabled>
  1006. <status>
  1007. <created_at>Sat May 29 04:12:09 +0000 2010</created_at>
  1008. <id>14953810132</id>
  1009. <text>Bed-a-ma-tiiiiiime! Bed-a-ma-time.</text>
  1010. <source>web</source>
  1011. <truncated>false</truncated>
  1012. <in_reply_to_status_id/>
  1013. <in_reply_to_user_id/>
  1014. <favorited>false</favorited>
  1015. <in_reply_to_screen_name/>
  1016. <geo/>
  1017. <coordinates/>
  1018. <place/>
  1019. <contributors/>
  1020. </status>
  1021. </user>
  1022. <user>
  1023. <id>17963909</id>
  1024. <name>Jean-Michel</name>
  1025. <screen_name>jmpnadeau</screen_name>
  1026. <location>Montréal, Qc, Canada</location>
  1027. <description>Internet infrastructures architect, systems administrator &amp; entrepreneur. Interested in high performance computing, clouds &amp; grids.
  1028. Technology lead @giftiniti</description>
  1029. <profile_image_url>http://a1.twimg.com/profile_images/826076310/avatar-square_normal.png</profile_image_url>
  1030. <url>http://jmpnadeau.ca</url>
  1031. <protected>false</protected>
  1032. <followers_count>382</followers_count>
  1033. <profile_background_color>1A1B1F</profile_background_color>
  1034. <profile_text_color>666666</profile_text_color>
  1035. <profile_link_color>2FC2EF</profile_link_color>
  1036. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  1037. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  1038. <friends_count>545</friends_count>
  1039. <created_at>Mon Dec 08 14:52:36 +0000 2008</created_at>
  1040. <favourites_count>0</favourites_count>
  1041. <utc_offset>-18000</utc_offset>
  1042. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  1043. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
  1044. <profile_background_tile>false</profile_background_tile>
  1045. <notifications>false</notifications>
  1046. <geo_enabled>true</geo_enabled>
  1047. <verified>false</verified>
  1048. <following>true</following>
  1049. <statuses_count>198</statuses_count>
  1050. <lang>en</lang>
  1051. <contributors_enabled>false</contributors_enabled>
  1052. <status>
  1053. <created_at>Fri May 28 16:43:18 +0000 2010</created_at>
  1054. <id>14918204354</id>
  1055. <text>Facebook's Culture Problem May Be Fatal (from HBR) http://bit.ly/bdGY57</text>
  1056. <source>&lt;a href="http://seesmic.com/app" rel="nofollow"&gt;Seesmic Web&lt;/a&gt;</source>
  1057. <truncated>false</truncated>
  1058. <in_reply_to_status_id/>
  1059. <in_reply_to_user_id/>
  1060. <favorited>false</favorited>
  1061. <in_reply_to_screen_name/>
  1062. <geo/>
  1063. <coordinates/>
  1064. <place/>
  1065. <contributors/>
  1066. </status>
  1067. </user>
  1068. <user>
  1069. <id>141257012</id>
  1070. <name>Tom Godar</name>
  1071. <screen_name>ficusd</screen_name>
  1072. <location>St Paul, MN</location>
  1073. <description>PHP development, Costa Rica, food &amp; travel</description>
  1074. <profile_image_url>http://a1.twimg.com/profile_images/881097028/n1381922562_1767_normal.jpg</profile_image_url>
  1075. <url/>
  1076. <protected>false</protected>
  1077. <followers_count>8</followers_count>
  1078. <profile_background_color>9ae4e8</profile_background_color>
  1079. <profile_text_color>000000</profile_text_color>
  1080. <profile_link_color>0000ff</profile_link_color>
  1081. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1082. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1083. <friends_count>20</friends_count>
  1084. <created_at>Fri May 07 15:52:19 +0000 2010</created_at>
  1085. <favourites_count>0</favourites_count>
  1086. <utc_offset/>
  1087. <time_zone/>
  1088. <profile_background_image_url>http://s.twimg.com/a/1273694933/images/themes/theme1/bg.png</profile_background_image_url>
  1089. <profile_background_tile>false</profile_background_tile>
  1090. <notifications>false</notifications>
  1091. <geo_enabled>false</geo_enabled>
  1092. <verified>false</verified>
  1093. <following>false</following>
  1094. <statuses_count>7</statuses_count>
  1095. <lang>en</lang>
  1096. <contributors_enabled>false</contributors_enabled>
  1097. <status>
  1098. <created_at>Thu May 13 21:56:40 +0000 2010</created_at>
  1099. <id>13936776532</id>
  1100. <text>I have never been so pissed of at an inanimate object as I am right now with the dijit.filiteringSelect</text>
  1101. <source>web</source>
  1102. <truncated>false</truncated>
  1103. <in_reply_to_status_id/>
  1104. <in_reply_to_user_id/>
  1105. <favorited>false</favorited>
  1106. <in_reply_to_screen_name/>
  1107. <geo/>
  1108. <coordinates/>
  1109. <place/>
  1110. <contributors/>
  1111. </status>
  1112. </user>
  1113. <user>
  1114. <id>141186979</id>
  1115. <name>Shaun Steenkamp</name>
  1116. <screen_name>epsiloncrucis</screen_name>
  1117. <location>Mackay, Qld, Australia</location>
  1118. <description>PHP Programmer, Accountant, Aspiring Academic</description>
  1119. <profile_image_url>http://a3.twimg.com/profile_images/880632909/GalacticCore_normal.png</profile_image_url>
  1120. <url/>
  1121. <protected>false</protected>
  1122. <followers_count>2</followers_count>
  1123. <profile_background_color>1A1B1F</profile_background_color>
  1124. <profile_text_color>666666</profile_text_color>
  1125. <profile_link_color>2FC2EF</profile_link_color>
  1126. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  1127. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  1128. <friends_count>7</friends_count>
  1129. <created_at>Fri May 07 11:44:40 +0000 2010</created_at>
  1130. <favourites_count>0</favourites_count>
  1131. <utc_offset>36000</utc_offset>
  1132. <time_zone>Brisbane</time_zone>
  1133. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
  1134. <profile_background_tile>false</profile_background_tile>
  1135. <notifications>false</notifications>
  1136. <geo_enabled>false</geo_enabled>
  1137. <verified>false</verified>
  1138. <following>true</following>
  1139. <statuses_count>3</statuses_count>
  1140. <lang>en</lang>
  1141. <contributors_enabled>false</contributors_enabled>
  1142. <status>
  1143. <created_at>Wed May 12 08:00:46 +0000 2010</created_at>
  1144. <id>13838819266</id>
  1145. <text>Jupiter loses a stripe - space - 11 May 2010 - New Scientist: http://bit.ly/cNpI4n via @addthis</text>
  1146. <source>web</source>
  1147. <truncated>false</truncated>
  1148. <in_reply_to_status_id/>
  1149. <in_reply_to_user_id/>
  1150. <favorited>false</favorited>
  1151. <in_reply_to_screen_name/>
  1152. <geo/>
  1153. <coordinates/>
  1154. <place/>
  1155. <contributors/>
  1156. </status>
  1157. </user>
  1158. <user>
  1159. <id>140788163</id>
  1160. <name>Jenerate</name>
  1161. <screen_name>jenerateonline</screen_name>
  1162. <location>Dun laoghaire, Dublin</location>
  1163. <description>Jenerate.com provide innovative web services (Website creation, design).
  1164. focused on our clients business objectives. </description>
  1165. <profile_image_url>http://a3.twimg.com/profile_images/878026861/avatar_normal.jpg</profile_image_url>
  1166. <url>http://www.jenerate.com</url>
  1167. <protected>false</protected>
  1168. <followers_count>355</followers_count>
  1169. <profile_background_color>ffffff</profile_background_color>
  1170. <profile_text_color>000000</profile_text_color>
  1171. <profile_link_color>660000</profile_link_color>
  1172. <profile_sidebar_fill_color>b35c59</profile_sidebar_fill_color>
  1173. <profile_sidebar_border_color>bd6363</profile_sidebar_border_color>
  1174. <friends_count>1397</friends_count>
  1175. <created_at>Thu May 06 11:09:05 +0000 2010</created_at>
  1176. <favourites_count>0</favourites_count>
  1177. <utc_offset/>
  1178. <time_zone/>
  1179. <profile_background_image_url>http://a3.twimg.com/profile_background_images/98929361/background.jpg</profile_background_image_url>
  1180. <profile_background_tile>false</profile_background_tile>
  1181. <notifications>false</notifications>
  1182. <geo_enabled>false</geo_enabled>
  1183. <verified>false</verified>
  1184. <following>false</following>
  1185. <statuses_count>48</statuses_count>
  1186. <lang>en</lang>
  1187. <contributors_enabled>false</contributors_enabled>
  1188. <status>
  1189. <created_at>Fri May 28 15:59:10 +0000 2010</created_at>
  1190. <id>14915427202</id>
  1191. <text>So everyone is telling you that you should be winning business using Facebook but should I start with my own page, a Group or a Fan page....</text>
  1192. <source>&lt;a href="http://feastofcrumbs.com/blog/wordpress-plugins/auto-tweet/" rel="nofollow"&gt;Auto Tweet&lt;/a&gt;</source>
  1193. <truncated>false</truncated>
  1194. <in_reply_to_status_id/>
  1195. <in_reply_to_user_id/>
  1196. <favorited>false</favorited>
  1197. <in_reply_to_screen_name/>
  1198. <geo/>
  1199. <coordinates/>
  1200. <place/>
  1201. <contributors/>
  1202. </status>
  1203. </user>
  1204. <user>
  1205. <id>140657929</id>
  1206. <name>Casual Game Guru</name>
  1207. <screen_name>casualfunguru</screen_name>
  1208. <location>In the Mushroom Kingdom</location>
  1209. <description/>
  1210. <profile_image_url>http://a3.twimg.com/profile_images/877456829/pacman_normal.jpg</profile_image_url>
  1211. <url/>
  1212. <protected>false</protected>
  1213. <followers_count>157</followers_count>
  1214. <profile_background_color>9ae4e8</profile_background_color>
  1215. <profile_text_color>000000</profile_text_color>
  1216. <profile_link_color>0000ff</profile_link_color>
  1217. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1218. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1219. <friends_count>1516</friends_count>
  1220. <created_at>Thu May 06 02:44:55 +0000 2010</created_at>
  1221. <favourites_count>0</favourites_count>
  1222. <utc_offset/>
  1223. <time_zone/>
  1224. <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
  1225. <profile_background_tile>false</profile_background_tile>
  1226. <notifications>false</notifications>
  1227. <geo_enabled>false</geo_enabled>
  1228. <verified>false</verified>
  1229. <following>false</following>
  1230. <statuses_count>3</statuses_count>
  1231. <lang>en</lang>
  1232. <contributors_enabled>false</contributors_enabled>
  1233. <status>
  1234. <created_at>Tue May 11 08:56:41 +0000 2010</created_at>
  1235. <id>13778238550</id>
  1236. <text>Anyone has a list of cool gaming sites - any recommendations?</text>
  1237. <source>web</source>
  1238. <truncated>false</truncated>
  1239. <in_reply_to_status_id/>
  1240. <in_reply_to_user_id/>
  1241. <favorited>false</favorited>
  1242. <in_reply_to_screen_name/>
  1243. <geo/>
  1244. <coordinates/>
  1245. <place/>
  1246. <contributors/>
  1247. </status>
  1248. </user>
  1249. <user>
  1250. <id>15084351</id>
  1251. <name>sas171</name>
  1252. <screen_name>sas171</screen_name>
  1253. <location/>
  1254. <description/>
  1255. <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_2_normal.png</profile_image_url>
  1256. <url/>
  1257. <protected>false</protected>
  1258. <followers_count>16</followers_count>
  1259. <profile_background_color>9ae4e8</profile_background_color>
  1260. <profile_text_color>000000</profile_text_color>
  1261. <profile_link_color>0000ff</profile_link_color>
  1262. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1263. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1264. <friends_count>59</friends_count>
  1265. <created_at>Wed Jun 11 12:49:46 +0000 2008</created_at>
  1266. <favourites_count>0</favourites_count>
  1267. <utc_offset>-10800</utc_offset>
  1268. <time_zone>Greenland</time_zone>
  1269. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  1270. <profile_background_tile>false</profile_background_tile>
  1271. <notifications>false</notifications>
  1272. <geo_enabled>false</geo_enabled>
  1273. <verified>false</verified>
  1274. <following>false</following>
  1275. <statuses_count>194</statuses_count>
  1276. <lang>en</lang>
  1277. <contributors_enabled>false</contributors_enabled>
  1278. <status>
  1279. <created_at>Sat May 29 15:36:22 +0000 2010</created_at>
  1280. <id>14981656374</id>
  1281. <text>RT @raudssus: the new #ipad by #madtv http://bit.ly/9kOM1b - this gag is 2 years old.... who has stolen where? ;)</text>
  1282. <source>web</source>
  1283. <truncated>false</truncated>
  1284. <in_reply_to_status_id/>
  1285. <in_reply_to_user_id/>
  1286. <favorited>false</favorited>
  1287. <in_reply_to_screen_name/>
  1288. <retweeted_status>
  1289. <created_at>Sat May 29 14:51:51 +0000 2010</created_at>
  1290. <id>14978985426</id>
  1291. <text>the new #ipad by #madtv http://bit.ly/9kOM1b - this gag is 2 years old.... who has stolen where? ;)</text>
  1292. <source>web</source>
  1293. <truncated>false</truncated>
  1294. <in_reply_to_status_id/>
  1295. <in_reply_to_user_id/>
  1296. <favorited>false</favorited>
  1297. <in_reply_to_screen_name/>
  1298. <geo/>
  1299. <coordinates/>
  1300. <place/>
  1301. <contributors/>
  1302. </retweeted_status>
  1303. <geo/>
  1304. <coordinates/>
  1305. <place/>
  1306. <contributors/>
  1307. </status>
  1308. </user>
  1309. <user>
  1310. <id>139805562</id>
  1311. <name>sina miandashti</name>
  1312. <screen_name>sinamiandashti</screen_name>
  1313. <location>Iran Tehran Pasdaran</location>
  1314. <description>trance lover .... PHP developer
  1315. zend frame work developer ...
  1316. armin van buuren FAN
  1317. state of trance FAN</description>
  1318. <profile_image_url>http://a1.twimg.com/profile_images/870571600/n1662802593_8152_normal.jpg</profile_image_url>
  1319. <url>http://musicbase.ir</url>
  1320. <protected>false</protected>
  1321. <followers_count>17</followers_count>
  1322. <profile_background_color>1A1B1F</profile_background_color>
  1323. <profile_text_color>666666</profile_text_color>
  1324. <profile_link_color>2FC2EF</profile_link_color>
  1325. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  1326. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  1327. <friends_count>88</friends_count>
  1328. <created_at>Mon May 03 18:54:20 +0000 2010</created_at>
  1329. <favourites_count>4</favourites_count>
  1330. <utc_offset>12600</utc_offset>
  1331. <time_zone>Tehran</time_zone>
  1332. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
  1333. <profile_background_tile>false</profile_background_tile>
  1334. <notifications>false</notifications>
  1335. <geo_enabled>true</geo_enabled>
  1336. <verified>false</verified>
  1337. <following>false</following>
  1338. <statuses_count>46</statuses_count>
  1339. <lang>en</lang>
  1340. <contributors_enabled>false</contributors_enabled>
  1341. <status>
  1342. <created_at>Sat May 29 14:36:39 +0000 2010</created_at>
  1343. <id>14978083982</id>
  1344. <text>just used the Zend_Db_Profiler_Firebug and Zend_Log_Writer_Firebug for the first time ... with FireBug FF addon . its cool #zf #firefox #php</text>
  1345. <source>web</source>
  1346. <truncated>false</truncated>
  1347. <in_reply_to_status_id/>
  1348. <in_reply_to_user_id/>
  1349. <favorited>false</favorited>
  1350. <in_reply_to_screen_name/>
  1351. <geo/>
  1352. <coordinates/>
  1353. <place/>
  1354. <contributors/>
  1355. </status>
  1356. </user>
  1357. <user>
  1358. <id>139630685</id>
  1359. <name>Chabier Lorenzo</name>
  1360. <screen_name>zchab</screen_name>
  1361. <location>Ainsa, Huesca, Spain</location>
  1362. <description/>
  1363. <profile_image_url>http://a1.twimg.com/profile_images/934542720/empeorando_lo_presente_normal.jpg</profile_image_url>
  1364. <url>http://xtsports.tumblr.com/</url>
  1365. <protected>false</protected>
  1366. <followers_count>2</followers_count>
  1367. <profile_background_color>9ae4e8</profile_background_color>
  1368. <profile_text_color>000000</profile_text_color>
  1369. <profile_link_color>0000ff</profile_link_color>
  1370. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1371. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1372. <friends_count>88</friends_count>
  1373. <created_at>Mon May 03 06:10:23 +0000 2010</created_at>
  1374. <favourites_count>0</favourites_count>
  1375. <utc_offset>-10800</utc_offset>
  1376. <time_zone>Greenland</time_zone>
  1377. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  1378. <profile_background_tile>false</profile_background_tile>
  1379. <notifications>false</notifications>
  1380. <geo_enabled>false</geo_enabled>
  1381. <verified>false</verified>
  1382. <following>false</following>
  1383. <statuses_count>0</statuses_count>
  1384. <lang>es</lang>
  1385. <contributors_enabled>false</contributors_enabled>
  1386. </user>
  1387. <user>
  1388. <id>115095926</id>
  1389. <name>MyGeoInfo</name>
  1390. <screen_name>MyGeoInfo</screen_name>
  1391. <location>USA</location>
  1392. <description>Travelers: MyGeoInfo wants your travel and place articles. Earn residual income from submissions. Writers wanted. Unique Adsense sharing community.</description>
  1393. <profile_image_url>http://a1.twimg.com/profile_images/701510702/mygeoinfo11_normal.png</profile_image_url>
  1394. <url>http://www.mygeoinfo.com</url>
  1395. <protected>false</protected>
  1396. <followers_count>217</followers_count>
  1397. <profile_background_color>9ae4e8</profile_background_color>
  1398. <profile_text_color>000000</profile_text_color>
  1399. <profile_link_color>0000ff</profile_link_color>
  1400. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1401. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1402. <friends_count>1981</friends_count>
  1403. <created_at>Wed Feb 17 16:03:34 +0000 2010</created_at>
  1404. <favourites_count>0</favourites_count>
  1405. <utc_offset>-25200</utc_offset>
  1406. <time_zone>Mountain Time (US &amp; Canada)</time_zone>
  1407. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  1408. <profile_background_tile>false</profile_background_tile>
  1409. <notifications>false</notifications>
  1410. <geo_enabled>false</geo_enabled>
  1411. <verified>false</verified>
  1412. <following>false</following>
  1413. <statuses_count>138</statuses_count>
  1414. <lang>en</lang>
  1415. <contributors_enabled>false</contributors_enabled>
  1416. <status>
  1417. <created_at>Wed May 26 12:12:46 +0000 2010</created_at>
  1418. <id>14758935251</id>
  1419. <text>My trip to Lake Como in Northern Italy was one of the most memorable experiences I have had for a long while. The third largest of the It...</text>
  1420. <source>&lt;a href="http://feastofcrumbs.com/blog/wordpress-plugins/auto-tweet/" rel="nofollow"&gt;Auto Tweet&lt;/a&gt;</source>
  1421. <truncated>false</truncated>
  1422. <in_reply_to_status_id/>
  1423. <in_reply_to_user_id/>
  1424. <favorited>false</favorited>
  1425. <in_reply_to_screen_name/>
  1426. <geo/>
  1427. <coordinates/>
  1428. <place/>
  1429. <contributors/>
  1430. </status>
  1431. </user>
  1432. <user>
  1433. <id>19268240</id>
  1434. <name>Raphael Almeida</name>
  1435. <screen_name>jaguarnet7</screen_name>
  1436. <location>Rio de Janeiro</location>
  1437. <description/>
  1438. <profile_image_url>http://a1.twimg.com/profile_images/72212876/gse_multipart68100_normal.jpg</profile_image_url>
  1439. <url>http://raphaeldealmeida.wordpress.com/</url>
  1440. <protected>false</protected>
  1441. <followers_count>95</followers_count>
  1442. <profile_background_color>709397</profile_background_color>
  1443. <profile_text_color>333333</profile_text_color>
  1444. <profile_link_color>FF3300</profile_link_color>
  1445. <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color>
  1446. <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color>
  1447. <friends_count>94</friends_count>
  1448. <created_at>Wed Jan 21 00:55:28 +0000 2009</created_at>
  1449. <favourites_count>12</favourites_count>
  1450. <utc_offset>-10800</utc_offset>
  1451. <time_zone>Brasilia</time_zone>
  1452. <profile_background_image_url>http://a3.twimg.com/profile_background_images/86309735/l267.jpg</profile_background_image_url>
  1453. <profile_background_tile>false</profile_background_tile>
  1454. <notifications>false</notifications>
  1455. <geo_enabled>true</geo_enabled>
  1456. <verified>false</verified>
  1457. <following>true</following>
  1458. <statuses_count>472</statuses_count>
  1459. <lang>en</lang>
  1460. <contributors_enabled>false</contributors_enabled>
  1461. <status>
  1462. <created_at>Sat May 29 19:54:51 +0000 2010</created_at>
  1463. <id>14995181731</id>
  1464. <text>No #ParqueDasRuinas em #SantaTeresa 3G #fail direto</text>
  1465. <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
  1466. <truncated>false</truncated>
  1467. <in_reply_to_status_id/>
  1468. <in_reply_to_user_id/>
  1469. <favorited>false</favorited>
  1470. <in_reply_to_screen_name/>
  1471. <geo/>
  1472. <coordinates/>
  1473. <place/>
  1474. <contributors/>
  1475. </status>
  1476. </user>
  1477. <user>
  1478. <id>111701709</id>
  1479. <name>Old Noob</name>
  1480. <screen_name>Old_Noob</screen_name>
  1481. <location/>
  1482. <description>I'm a long-time RPG fan, but still a bit of a n00b with MMO video games. Check out my site for great fantasy and RPG video games!</description>
  1483. <profile_image_url>http://a3.twimg.com/profile_images/678042169/avatar_normal.jpg</profile_image_url>
  1484. <url>http://mmorpgnoob.com</url>
  1485. <protected>false</protected>
  1486. <followers_count>1127</followers_count>
  1487. <profile_background_color>131516</profile_background_color>
  1488. <profile_text_color>333333</profile_text_color>
  1489. <profile_link_color>009999</profile_link_color>
  1490. <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
  1491. <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
  1492. <friends_count>1794</friends_count>
  1493. <created_at>Fri Feb 05 21:40:49 +0000 2010</created_at>
  1494. <favourites_count>0</favourites_count>
  1495. <utc_offset>-25200</utc_offset>
  1496. <time_zone>Mountain Time (US &amp; Canada)</time_zone>
  1497. <profile_background_image_url>http://a1.twimg.com/profile_background_images/72777520/avatar.jpg</profile_background_image_url>
  1498. <profile_background_tile>true</profile_background_tile>
  1499. <notifications>false</notifications>
  1500. <geo_enabled>false</geo_enabled>
  1501. <verified>false</verified>
  1502. <following>true</following>
  1503. <statuses_count>128</statuses_count>
  1504. <lang>en</lang>
  1505. <contributors_enabled>false</contributors_enabled>
  1506. <status>
  1507. <created_at>Thu May 27 15:51:03 +0000 2010</created_at>
  1508. <id>14842843690</id>
  1509. <text>What about a list of two player cooperative games like Gauntlet. I guess FFCCEoT had cooperative mode. Too bad it sucked.</text>
  1510. <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
  1511. <truncated>false</truncated>
  1512. <in_reply_to_status_id/>
  1513. <in_reply_to_user_id/>
  1514. <favorited>false</favorited>
  1515. <in_reply_to_screen_name/>
  1516. <geo/>
  1517. <coordinates/>
  1518. <place/>
  1519. <contributors/>
  1520. </status>
  1521. </user>
  1522. <user>
  1523. <id>17131390</id>
  1524. <name>Agnès Haasser</name>
  1525. <screen_name>tut_tuuut</screen_name>
  1526. <location>Lyon, France</location>
  1527. <description>Individu geek femelle.</description>
  1528. <profile_image_url>http://a3.twimg.com/profile_images/446949005/IMG_9478_normal.jpg</profile_image_url>
  1529. <url/>
  1530. <protected>false</protected>
  1531. <followers_count>32</followers_count>
  1532. <profile_background_color>BADFCD</profile_background_color>
  1533. <profile_text_color>0C3E53</profile_text_color>
  1534. <profile_link_color>FF0000</profile_link_color>
  1535. <profile_sidebar_fill_color>FFF7CC</profile_sidebar_fill_color>
  1536. <profile_sidebar_border_color>F2E195</profile_sidebar_border_color>
  1537. <friends_count>47</friends_count>
  1538. <created_at>Mon Nov 03 14:37:38 +0000 2008</created_at>
  1539. <favourites_count>2</favourites_count>
  1540. <utc_offset>3600</utc_offset>
  1541. <time_zone>Paris</time_zone>
  1542. <profile_background_image_url>http://s.twimg.com/a/1273536095/images/themes/theme12/bg.gif</profile_background_image_url>
  1543. <profile_background_tile>false</profile_background_tile>
  1544. <notifications>false</notifications>
  1545. <geo_enabled>false</geo_enabled>
  1546. <verified>false</verified>
  1547. <following>false</following>
  1548. <statuses_count>110</statuses_count>
  1549. <lang>en</lang>
  1550. <contributors_enabled>false</contributors_enabled>
  1551. <status>
  1552. <created_at>Sun May 30 09:12:11 +0000 2010</created_at>
  1553. <id>15030893413</id>
  1554. <text>@_namass Bon bah j'installe adium et on en cause alors :D</text>
  1555. <source>&lt;a href="http://www.nambu.com/" rel="nofollow"&gt;Nambu&lt;/a&gt;</source>
  1556. <truncated>false</truncated>
  1557. <in_reply_to_status_id>15030664381</in_reply_to_status_id>
  1558. <in_reply_to_user_id>37896645</in_reply_to_user_id>
  1559. <favorited>false</favorited>
  1560. <in_reply_to_screen_name>_namass</in_reply_to_screen_name>
  1561. <geo/>
  1562. <coordinates/>
  1563. <place/>
  1564. <contributors/>
  1565. </status>
  1566. </user>
  1567. <user>
  1568. <id>28873017</id>
  1569. <name>Follow for Follow?</name>
  1570. <screen_name>KapnKrunch1337</screen_name>
  1571. <location>SoCal</location>
  1572. <description>Follow for Follow?
  1573. XBOX live gamertag: SOG KruncH</description>
  1574. <profile_image_url>http://a1.twimg.com/profile_images/854789402/twitterProfilePhoto_normal.jpg</profile_image_url>
  1575. <url/>
  1576. <protected>false</protected>
  1577. <followers_count>187</followers_count>
  1578. <profile_background_color>1A1B1F</profile_background_color>
  1579. <profile_text_color>666666</profile_text_color>
  1580. <profile_link_color>178a08</profile_link_color>
  1581. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  1582. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  1583. <friends_count>1358</friends_count>
  1584. <created_at>Sat Apr 04 21:20:41 +0000 2009</created_at>
  1585. <favourites_count>11</favourites_count>
  1586. <utc_offset>-28800</utc_offset>
  1587. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  1588. <profile_background_image_url>http://a3.twimg.com/profile_background_images/18264771/kk1337.png</profile_background_image_url>
  1589. <profile_background_tile>true</profile_background_tile>
  1590. <notifications>false</notifications>
  1591. <geo_enabled>false</geo_enabled>
  1592. <verified>false</verified>
  1593. <following>false</following>
  1594. <statuses_count>469</statuses_count>
  1595. <lang>en</lang>
  1596. <contributors_enabled>false</contributors_enabled>
  1597. <status>
  1598. <created_at>Sat May 29 02:00:22 +0000 2010</created_at>
  1599. <id>14946775101</id>
  1600. <text>I unlocked 4 Xbox achievements on Skate 3! http://raptr.com/SOG_KruncH</text>
  1601. <source>&lt;a href="http://www.raptr.com/" rel="nofollow"&gt;Raptr&lt;/a&gt;</source>
  1602. <truncated>false</truncated>
  1603. <in_reply_to_status_id/>
  1604. <in_reply_to_user_id/>
  1605. <favorited>false</favorited>
  1606. <in_reply_to_screen_name/>
  1607. <geo/>
  1608. <coordinates/>
  1609. <place/>
  1610. <contributors/>
  1611. </status>
  1612. </user>
  1613. <user>
  1614. <id>14853295</id>
  1615. <name>dakna</name>
  1616. <screen_name>dakna</screen_name>
  1617. <location>Berlin</location>
  1618. <description/>
  1619. <profile_image_url>http://a1.twimg.com/profile_images/517505178/twitter2_normal.jpg</profile_image_url>
  1620. <url/>
  1621. <protected>false</protected>
  1622. <followers_count>39</followers_count>
  1623. <profile_background_color>9ae4e8</profile_background_color>
  1624. <profile_text_color>000000</profile_text_color>
  1625. <profile_link_color>0000ff</profile_link_color>
  1626. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1627. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1628. <friends_count>99</friends_count>
  1629. <created_at>Wed May 21 06:50:36 +0000 2008</created_at>
  1630. <favourites_count>0</favourites_count>
  1631. <utc_offset>3600</utc_offset>
  1632. <time_zone>Berlin</time_zone>
  1633. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  1634. <profile_background_tile>false</profile_background_tile>
  1635. <notifications>false</notifications>
  1636. <geo_enabled>false</geo_enabled>
  1637. <verified>false</verified>
  1638. <following>false</following>
  1639. <statuses_count>88</statuses_count>
  1640. <lang>en</lang>
  1641. <contributors_enabled>false</contributors_enabled>
  1642. <status>
  1643. <created_at>Thu May 20 10:22:49 +0000 2010</created_at>
  1644. <id>14352473103</id>
  1645. <text>du weisst du arbeitest zu viel, wenn du auf dem handy die spiegel online app startest,das handy ans ohr hälst und dich über stille wunderst</text>
  1646. <source>web</source>
  1647. <truncated>false</truncated>
  1648. <in_reply_to_status_id/>
  1649. <in_reply_to_user_id/>
  1650. <favorited>false</favorited>
  1651. <in_reply_to_screen_name/>
  1652. <geo/>
  1653. <coordinates/>
  1654. <place/>
  1655. <contributors/>
  1656. </status>
  1657. </user>
  1658. <user>
  1659. <id>23950019</id>
  1660. <name>Marius Ion</name>
  1661. <screen_name>imarims</screen_name>
  1662. <location>Atlantic Beach</location>
  1663. <description/>
  1664. <profile_image_url>http://a1.twimg.com/profile_images/93870310/blogphoto_normal.png</profile_image_url>
  1665. <url>http://www.appstacks.com</url>
  1666. <protected>false</protected>
  1667. <followers_count>673</followers_count>
  1668. <profile_background_color>1A1B1F</profile_background_color>
  1669. <profile_text_color>666666</profile_text_color>
  1670. <profile_link_color>2600FF</profile_link_color>
  1671. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  1672. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  1673. <friends_count>2002</friends_count>
  1674. <created_at>Thu Mar 12 13:56:21 +0000 2009</created_at>
  1675. <favourites_count>0</favourites_count>
  1676. <utc_offset>-14400</utc_offset>
  1677. <time_zone>Atlantic Time (Canada)</time_zone>
  1678. <profile_background_image_url>http://a1.twimg.com/profile_background_images/93986124/x44f850d7ef113c9939a9f3339a0f8fa.png</profile_background_image_url>
  1679. <profile_background_tile>true</profile_background_tile>
  1680. <notifications>false</notifications>
  1681. <geo_enabled>true</geo_enabled>
  1682. <verified>false</verified>
  1683. <following>false</following>
  1684. <statuses_count>111</statuses_count>
  1685. <lang>en</lang>
  1686. <contributors_enabled>false</contributors_enabled>
  1687. <status>
  1688. <created_at>Sun May 30 00:20:49 +0000 2010</created_at>
  1689. <id>15007284365</id>
  1690. <text>BP 'top kill' still not stopping flow - BP said Saturday that its latest bid to plug the worst oil spill in U.S. hi... http://ow.ly/17y3fP</text>
  1691. <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
  1692. <truncated>false</truncated>
  1693. <in_reply_to_status_id/>
  1694. <in_reply_to_user_id/>
  1695. <favorited>false</favorited>
  1696. <in_reply_to_screen_name/>
  1697. <geo/>
  1698. <coordinates/>
  1699. <place/>
  1700. <contributors/>
  1701. </status>
  1702. </user>
  1703. <user>
  1704. <id>20019582</id>
  1705. <name>Georg Schmidl</name>
  1706. <screen_name>vicox</screen_name>
  1707. <location>Munich, Germany</location>
  1708. <description>Computer science student, enthusiastic about technology and FLOSS</description>
  1709. <profile_image_url>http://a1.twimg.com/profile_images/703922954/me_normal.jpg</profile_image_url>
  1710. <url>http://vicox.net</url>
  1711. <protected>false</protected>
  1712. <followers_count>27</followers_count>
  1713. <profile_background_color>9AE4E8</profile_background_color>
  1714. <profile_text_color>333333</profile_text_color>
  1715. <profile_link_color>0084B4</profile_link_color>
  1716. <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
  1717. <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
  1718. <friends_count>69</friends_count>
  1719. <created_at>Wed Feb 04 01:27:14 +0000 2009</created_at>
  1720. <favourites_count>2</favourites_count>
  1721. <utc_offset>3600</utc_offset>
  1722. <time_zone>Berlin</time_zone>
  1723. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  1724. <profile_background_tile>false</profile_background_tile>
  1725. <notifications>false</notifications>
  1726. <geo_enabled>false</geo_enabled>
  1727. <verified>false</verified>
  1728. <following>false</following>
  1729. <statuses_count>304</statuses_count>
  1730. <lang>en</lang>
  1731. <contributors_enabled>false</contributors_enabled>
  1732. <status>
  1733. <created_at>Thu May 27 02:48:33 +0000 2010</created_at>
  1734. <id>14807157946</id>
  1735. <text>of course it works :) do you like it? RT @leolaporte: Installing Lucid Lynx on my Dell Studio 16 - works!</text>
  1736. <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
  1737. <truncated>false</truncated>
  1738. <in_reply_to_status_id/>
  1739. <in_reply_to_user_id/>
  1740. <favorited>false</favorited>
  1741. <in_reply_to_screen_name/>
  1742. <geo/>
  1743. <coordinates/>
  1744. <place/>
  1745. <contributors/>
  1746. </status>
  1747. </user>
  1748. <user>
  1749. <id>15985121</id>
  1750. <name>Gonzalo Míguez</name>
  1751. <screen_name>MrZarD</screen_name>
  1752. <location>Barcelona, España</location>
  1753. <description>Programador de la pradera, cornerback así maloso y lector empedernido. Y ñamesito :* Y bajista maloso... Y aprediz de todo y maestro de nada :P</description>
  1754. <profile_image_url>http://a3.twimg.com/profile_images/421913307/n1448176801_1425_normal.jpg</profile_image_url>
  1755. <url>http://www.barcelonabufals.com</url>
  1756. <protected>true</protected>
  1757. <followers_count>57</followers_count>
  1758. <profile_background_color>003367</profile_background_color>
  1759. <profile_text_color>000000</profile_text_color>
  1760. <profile_link_color>6E6E6E</profile_link_color>
  1761. <profile_sidebar_fill_color>87D0FF</profile_sidebar_fill_color>
  1762. <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
  1763. <friends_count>112</friends_count>
  1764. <created_at>Mon Aug 25 18:29:54 +0000 2008</created_at>
  1765. <favourites_count>1</favourites_count>
  1766. <utc_offset>3600</utc_offset>
  1767. <time_zone>Madrid</time_zone>
  1768. <profile_background_image_url>http://a3.twimg.com/profile_background_images/2932781/bufals_bg.gif</profile_background_image_url>
  1769. <profile_background_tile>false</profile_background_tile>
  1770. <notifications>false</notifications>
  1771. <geo_enabled>false</geo_enabled>
  1772. <verified>false</verified>
  1773. <following>false</following>
  1774. <statuses_count>1914</statuses_count>
  1775. <lang>en</lang>
  1776. <contributors_enabled>false</contributors_enabled>
  1777. </user>
  1778. <user>
  1779. <id>11941022</id>
  1780. <name>Extendez</name>
  1781. <screen_name>extendez</screen_name>
  1782. <location>Extendez</location>
  1783. <description>Extendez</description>
  1784. <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_2_normal.png</profile_image_url>
  1785. <url>http://www.orderextenze.com</url>
  1786. <protected>false</protected>
  1787. <followers_count>38</followers_count>
  1788. <profile_background_color>9ae4e8</profile_background_color>
  1789. <profile_text_color>000000</profile_text_color>
  1790. <profile_link_color>0000ff</profile_link_color>
  1791. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1792. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1793. <friends_count>450</friends_count>
  1794. <created_at>Mon Jan 07 13:02:19 +0000 2008</created_at>
  1795. <favourites_count>0</favourites_count>
  1796. <utc_offset>-25200</utc_offset>
  1797. <time_zone>Arizona</time_zone>
  1798. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  1799. <profile_background_tile>false</profile_background_tile>
  1800. <notifications>false</notifications>
  1801. <geo_enabled>false</geo_enabled>
  1802. <verified>false</verified>
  1803. <following>false</following>
  1804. <statuses_count>0</statuses_count>
  1805. <lang>en</lang>
  1806. <contributors_enabled>false</contributors_enabled>
  1807. </user>
  1808. <user>
  1809. <id>11725892</id>
  1810. <name>Adam Levenson</name>
  1811. <screen_name>adamlevenson</screen_name>
  1812. <location>San Diego, CA</location>
  1813. <description>Digital Operative CTO + co-founder. Infecting digital marketing with technology. Bostonian in SoCal. Proud daddy. #dostream</description>
  1814. <profile_image_url>http://a1.twimg.com/profile_images/824063460/Photo_40_normal.jpg</profile_image_url>
  1815. <url>http://www.digitaloperative.com/</url>
  1816. <protected>false</protected>
  1817. <followers_count>1432</followers_count>
  1818. <profile_background_color>ffffff</profile_background_color>
  1819. <profile_text_color>333333</profile_text_color>
  1820. <profile_link_color>32859a</profile_link_color>
  1821. <profile_sidebar_fill_color>f0fbfe</profile_sidebar_fill_color>
  1822. <profile_sidebar_border_color>000000</profile_sidebar_border_color>
  1823. <friends_count>820</friends_count>
  1824. <created_at>Tue Jan 01 19:22:30 +0000 2008</created_at>
  1825. <favourites_count>9</favourites_count>
  1826. <utc_offset>-28800</utc_offset>
  1827. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  1828. <profile_background_image_url>http://a3.twimg.com/profile_background_images/3904125/twitter-bkg.jpg</profile_background_image_url>
  1829. <profile_background_tile>false</profile_background_tile>
  1830. <notifications>false</notifications>
  1831. <geo_enabled>false</geo_enabled>
  1832. <verified>false</verified>
  1833. <following>false</following>
  1834. <statuses_count>2948</statuses_count>
  1835. <lang>en</lang>
  1836. <contributors_enabled>false</contributors_enabled>
  1837. <status>
  1838. <created_at>Sun May 30 03:04:38 +0000 2010</created_at>
  1839. <id>15015489775</id>
  1840. <text>RT @BJ: Just uploaded photo to our Facebook Page - DO as cast from LOST www.facebook.com/digital.operative.agency #dostream</text>
  1841. <source>web</source>
  1842. <truncated>false</truncated>
  1843. <in_reply_to_status_id/>
  1844. <in_reply_to_user_id/>
  1845. <favorited>false</favorited>
  1846. <in_reply_to_screen_name/>
  1847. <retweeted_status>
  1848. <created_at>Fri May 28 23:53:53 +0000 2010</created_at>
  1849. <id>14940224699</id>
  1850. <text>Just uploaded photo to our Facebook Page - DO as cast from LOST www.facebook.com/digital.operative.agency #dostream</text>
  1851. <source>web</source>
  1852. <truncated>false</truncated>
  1853. <in_reply_to_status_id/>
  1854. <in_reply_to_user_id/>
  1855. <favorited>false</favorited>
  1856. <in_reply_to_screen_name/>
  1857. <geo/>
  1858. <coordinates/>
  1859. <place/>
  1860. <contributors/>
  1861. </retweeted_status>
  1862. <geo/>
  1863. <coordinates/>
  1864. <place/>
  1865. <contributors/>
  1866. </status>
  1867. </user>
  1868. <user>
  1869. <id>44651789</id>
  1870. <name>Deon Heunis</name>
  1871. <screen_name>deonheunis</screen_name>
  1872. <location>Cape Town</location>
  1873. <description>Dad, husband, sports fan. Senior web developer at Prezence SA</description>
  1874. <profile_image_url>http://a3.twimg.com/profile_images/793031315/PICT0800_normal.jpg</profile_image_url>
  1875. <url>http://www.heunis.com</url>
  1876. <protected>false</protected>
  1877. <followers_count>85</followers_count>
  1878. <profile_background_color>000000</profile_background_color>
  1879. <profile_text_color>332652</profile_text_color>
  1880. <profile_link_color>0070bb</profile_link_color>
  1881. <profile_sidebar_fill_color>f8f8f8</profile_sidebar_fill_color>
  1882. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  1883. <friends_count>159</friends_count>
  1884. <created_at>Thu Jun 04 16:18:51 +0000 2009</created_at>
  1885. <favourites_count>13</favourites_count>
  1886. <utc_offset>7200</utc_offset>
  1887. <time_zone>Pretoria</time_zone>
  1888. <profile_background_image_url>http://a1.twimg.com/profile_background_images/89280986/header.jpg</profile_background_image_url>
  1889. <profile_background_tile>false</profile_background_tile>
  1890. <notifications>false</notifications>
  1891. <geo_enabled>true</geo_enabled>
  1892. <verified>false</verified>
  1893. <following>false</following>
  1894. <statuses_count>273</statuses_count>
  1895. <lang>en</lang>
  1896. <contributors_enabled>false</contributors_enabled>
  1897. <status>
  1898. <created_at>Sat May 29 16:51:00 +0000 2010</created_at>
  1899. <id>14986021985</id>
  1900. <text>Well done bulls, best team won</text>
  1901. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  1902. <truncated>false</truncated>
  1903. <in_reply_to_status_id/>
  1904. <in_reply_to_user_id/>
  1905. <favorited>false</favorited>
  1906. <in_reply_to_screen_name/>
  1907. <geo/>
  1908. <coordinates/>
  1909. <place/>
  1910. <contributors/>
  1911. </status>
  1912. </user>
  1913. <user>
  1914. <id>24362989</id>
  1915. <name>redphx</name>
  1916. <screen_name>redphx</screen_name>
  1917. <location>Danang, Vietnam</location>
  1918. <description>web developer</description>
  1919. <profile_image_url>http://a3.twimg.com/profile_images/262310769/eye_normal.png</profile_image_url>
  1920. <url>http://redphx.com</url>
  1921. <protected>false</protected>
  1922. <followers_count>245</followers_count>
  1923. <profile_background_color>1A1B1F</profile_background_color>
  1924. <profile_text_color>777777</profile_text_color>
  1925. <profile_link_color>F7290C</profile_link_color>
  1926. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  1927. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  1928. <friends_count>146</friends_count>
  1929. <created_at>Sat Mar 14 12:45:09 +0000 2009</created_at>
  1930. <favourites_count>65</favourites_count>
  1931. <utc_offset>25200</utc_offset>
  1932. <time_zone>Hanoi</time_zone>
  1933. <profile_background_image_url>http://a3.twimg.com/profile_background_images/11913911/4363.jpg</profile_background_image_url>
  1934. <profile_background_tile>true</profile_background_tile>
  1935. <notifications>false</notifications>
  1936. <geo_enabled>false</geo_enabled>
  1937. <verified>false</verified>
  1938. <following>false</following>
  1939. <statuses_count>1350</statuses_count>
  1940. <lang>en</lang>
  1941. <contributors_enabled>false</contributors_enabled>
  1942. <status>
  1943. <created_at>Fri May 28 10:32:17 +0000 2010</created_at>
  1944. <id>14897613032</id>
  1945. <text>tả tơi, hix</text>
  1946. <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
  1947. <truncated>false</truncated>
  1948. <in_reply_to_status_id/>
  1949. <in_reply_to_user_id/>
  1950. <favorited>false</favorited>
  1951. <in_reply_to_screen_name/>
  1952. <geo/>
  1953. <coordinates/>
  1954. <place/>
  1955. <contributors/>
  1956. </status>
  1957. </user>
  1958. <user>
  1959. <id>125064962</id>
  1960. <name>Ute Pemm</name>
  1961. <screen_name>lovelygirl0992</screen_name>
  1962. <location/>
  1963. <description/>
  1964. <profile_image_url>http://a1.twimg.com/profile_images/766071466/Unbenannt_normal.png</profile_image_url>
  1965. <url/>
  1966. <protected>false</protected>
  1967. <followers_count>211</followers_count>
  1968. <profile_background_color>9ae4e8</profile_background_color>
  1969. <profile_text_color>000000</profile_text_color>
  1970. <profile_link_color>0000ff</profile_link_color>
  1971. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  1972. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  1973. <friends_count>546</friends_count>
  1974. <created_at>Sun Mar 21 15:21:59 +0000 2010</created_at>
  1975. <favourites_count>0</favourites_count>
  1976. <utc_offset/>
  1977. <time_zone/>
  1978. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  1979. <profile_background_tile>false</profile_background_tile>
  1980. <notifications/>
  1981. <geo_enabled>false</geo_enabled>
  1982. <verified>false</verified>
  1983. <following/>
  1984. <statuses_count>7</statuses_count>
  1985. <lang>en</lang>
  1986. <contributors_enabled>false</contributors_enabled>
  1987. <status>
  1988. <created_at>Mon Apr 12 13:11:42 +0000 2010</created_at>
  1989. <id>12045334657</id>
  1990. <text>Asiarooms.com is offering amazing specials on Hotels in Thailand, Indonesia, Malaysia, Japan and China. spon -http://tinyurl.com/y4fc6w9</text>
  1991. <source>&lt;a href="http://revtwt.com" rel="nofollow"&gt;Goldbird&lt;/a&gt;</source>
  1992. <truncated>false</truncated>
  1993. <in_reply_to_status_id/>
  1994. <in_reply_to_user_id/>
  1995. <favorited>false</favorited>
  1996. <in_reply_to_screen_name/>
  1997. <geo/>
  1998. <coordinates/>
  1999. <place/>
  2000. <contributors/>
  2001. </status>
  2002. </user>
  2003. <user>
  2004. <id>28537284</id>
  2005. <name>Tiago Paulino</name>
  2006. <screen_name>tiago_paulino</screen_name>
  2007. <location>France</location>
  2008. <description>Web Developer, PHP and Jquery addict, interested by software engineering, various open source solutions and general web technologies</description>
  2009. <profile_image_url>http://a1.twimg.com/profile_images/695909648/logo2_normal.jpg</profile_image_url>
  2010. <url>http://www.tiagop.com</url>
  2011. <protected>false</protected>
  2012. <followers_count>168</followers_count>
  2013. <profile_background_color>ACDED6</profile_background_color>
  2014. <profile_text_color>333333</profile_text_color>
  2015. <profile_link_color>038543</profile_link_color>
  2016. <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
  2017. <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
  2018. <friends_count>525</friends_count>
  2019. <created_at>Fri Apr 03 10:24:37 +0000 2009</created_at>
  2020. <favourites_count>0</favourites_count>
  2021. <utc_offset>3600</utc_offset>
  2022. <time_zone>Paris</time_zone>
  2023. <profile_background_image_url>http://a1.twimg.com/profile_background_images/76908122/Background.jpg</profile_background_image_url>
  2024. <profile_background_tile>false</profile_background_tile>
  2025. <notifications>false</notifications>
  2026. <geo_enabled>false</geo_enabled>
  2027. <verified>false</verified>
  2028. <following>false</following>
  2029. <statuses_count>234</statuses_count>
  2030. <lang>fr</lang>
  2031. <contributors_enabled>false</contributors_enabled>
  2032. <status>
  2033. <created_at>Fri May 28 13:20:00 +0000 2010</created_at>
  2034. <id>14905473459</id>
  2035. <text>Web Operating Systems: The Options You should Consider | Graphic and Web Design Blog http://bit.ly/9CFaQD</text>
  2036. <source>&lt;a href="http://tweetmeme.com" rel="nofollow"&gt;TweetMeme&lt;/a&gt;</source>
  2037. <truncated>false</truncated>
  2038. <in_reply_to_status_id/>
  2039. <in_reply_to_user_id/>
  2040. <favorited>false</favorited>
  2041. <in_reply_to_screen_name/>
  2042. <geo/>
  2043. <coordinates/>
  2044. <place/>
  2045. <contributors/>
  2046. </status>
  2047. </user>
  2048. <user>
  2049. <id>60885078</id>
  2050. <name>roy simkes</name>
  2051. <screen_name>roysimkes</screen_name>
  2052. <location/>
  2053. <description/>
  2054. <profile_image_url>http://a1.twimg.com/profile_images/576464048/Picture_4_normal.png</profile_image_url>
  2055. <url/>
  2056. <protected>false</protected>
  2057. <followers_count>14</followers_count>
  2058. <profile_background_color>9ae4e8</profile_background_color>
  2059. <profile_text_color>000000</profile_text_color>
  2060. <profile_link_color>0000ff</profile_link_color>
  2061. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2062. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2063. <friends_count>25</friends_count>
  2064. <created_at>Tue Jul 28 12:03:15 +0000 2009</created_at>
  2065. <favourites_count>0</favourites_count>
  2066. <utc_offset/>
  2067. <time_zone/>
  2068. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  2069. <profile_background_tile>false</profile_background_tile>
  2070. <notifications>false</notifications>
  2071. <geo_enabled>false</geo_enabled>
  2072. <verified>false</verified>
  2073. <following>false</following>
  2074. <statuses_count>5</statuses_count>
  2075. <lang>en</lang>
  2076. <contributors_enabled>false</contributors_enabled>
  2077. <status>
  2078. <created_at>Wed Apr 21 21:53:23 +0000 2010</created_at>
  2079. <id>12599969326</id>
  2080. <text>Use this coupon code R6REM to save $10 on Postbox! http://www.postbox-inc.com/ref.php?r=R6REM</text>
  2081. <source>web</source>
  2082. <truncated>false</truncated>
  2083. <in_reply_to_status_id/>
  2084. <in_reply_to_user_id/>
  2085. <favorited>false</favorited>
  2086. <in_reply_to_screen_name/>
  2087. <geo/>
  2088. <coordinates/>
  2089. <place/>
  2090. <contributors/>
  2091. </status>
  2092. </user>
  2093. <user>
  2094. <id>32335514</id>
  2095. <name>hans torres</name>
  2096. <screen_name>hanseh</screen_name>
  2097. <location>makati</location>
  2098. <description>your friendly neighborhood programmer</description>
  2099. <profile_image_url>http://a3.twimg.com/profile_images/539605087/screenshot1_normal.png</profile_image_url>
  2100. <url>http://hanseh.wordpress.com</url>
  2101. <protected>false</protected>
  2102. <followers_count>36</followers_count>
  2103. <profile_background_color>C0DEED</profile_background_color>
  2104. <profile_text_color>333333</profile_text_color>
  2105. <profile_link_color>0084B4</profile_link_color>
  2106. <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
  2107. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  2108. <friends_count>26</friends_count>
  2109. <created_at>Fri Apr 17 06:51:06 +0000 2009</created_at>
  2110. <favourites_count>0</favourites_count>
  2111. <utc_offset>28800</utc_offset>
  2112. <time_zone>Hong Kong</time_zone>
  2113. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  2114. <profile_background_tile>false</profile_background_tile>
  2115. <notifications>false</notifications>
  2116. <geo_enabled>false</geo_enabled>
  2117. <verified>false</verified>
  2118. <following>false</following>
  2119. <statuses_count>30</statuses_count>
  2120. <lang>en</lang>
  2121. <contributors_enabled>false</contributors_enabled>
  2122. <status>
  2123. <created_at>Tue May 25 08:44:02 +0000 2010</created_at>
  2124. <id>14680717602</id>
  2125. <text>1 year na pala. :D</text>
  2126. <source>web</source>
  2127. <truncated>false</truncated>
  2128. <in_reply_to_status_id/>
  2129. <in_reply_to_user_id/>
  2130. <favorited>false</favorited>
  2131. <in_reply_to_screen_name/>
  2132. <geo/>
  2133. <coordinates/>
  2134. <place/>
  2135. <contributors/>
  2136. </status>
  2137. </user>
  2138. <user>
  2139. <id>15698784</id>
  2140. <name>Sebastian Jaramillo</name>
  2141. <screen_name>sebastianjt</screen_name>
  2142. <location/>
  2143. <description>I am a Web Developer specializing in Front-End technologies, interested in standard-compliant, well-engineered, accessible and engaging sites.</description>
  2144. <profile_image_url>http://a3.twimg.com/profile_images/90074883/gordoteins_hotmail.com_364d353c_normal.jpg</profile_image_url>
  2145. <url>http://www.sebastianjt.com</url>
  2146. <protected>false</protected>
  2147. <followers_count>423</followers_count>
  2148. <profile_background_color>1c1c1c</profile_background_color>
  2149. <profile_text_color>7d8f96</profile_text_color>
  2150. <profile_link_color>2FC2EF</profile_link_color>
  2151. <profile_sidebar_fill_color>0f1417</profile_sidebar_fill_color>
  2152. <profile_sidebar_border_color>5e7e8c</profile_sidebar_border_color>
  2153. <friends_count>501</friends_count>
  2154. <created_at>Sat Aug 02 06:07:59 +0000 2008</created_at>
  2155. <favourites_count>1</favourites_count>
  2156. <utc_offset>-18000</utc_offset>
  2157. <time_zone>Bogota</time_zone>
  2158. <profile_background_image_url>http://a1.twimg.com/profile_background_images/3504656/BG.jpg</profile_background_image_url>
  2159. <profile_background_tile>true</profile_background_tile>
  2160. <notifications>false</notifications>
  2161. <geo_enabled>false</geo_enabled>
  2162. <verified>false</verified>
  2163. <following>false</following>
  2164. <statuses_count>1183</statuses_count>
  2165. <lang>en</lang>
  2166. <contributors_enabled>false</contributors_enabled>
  2167. <status>
  2168. <created_at>Fri May 21 16:14:40 +0000 2010</created_at>
  2169. <id>14437873790</id>
  2170. <text>RT @betancur: Fight Club - Chemical Burn - Kinetic Typography http://post.ly/gqKH</text>
  2171. <source>&lt;a href="http://mobile.twitter.com" rel="nofollow"&gt;mobile web&lt;/a&gt;</source>
  2172. <truncated>false</truncated>
  2173. <in_reply_to_status_id/>
  2174. <in_reply_to_user_id/>
  2175. <favorited>false</favorited>
  2176. <in_reply_to_screen_name/>
  2177. <retweeted_status>
  2178. <created_at>Fri May 21 11:41:23 +0000 2010</created_at>
  2179. <id>14422426737</id>
  2180. <text>Fight Club - Chemical Burn - Kinetic Typography http://post.ly/gqKH</text>
  2181. <source>&lt;a href="http://www.posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
  2182. <truncated>false</truncated>
  2183. <in_reply_to_status_id/>
  2184. <in_reply_to_user_id/>
  2185. <favorited>false</favorited>
  2186. <in_reply_to_screen_name/>
  2187. <geo/>
  2188. <coordinates/>
  2189. <place/>
  2190. <contributors/>
  2191. </retweeted_status>
  2192. <geo/>
  2193. <coordinates/>
  2194. <place/>
  2195. <contributors/>
  2196. </status>
  2197. </user>
  2198. <user>
  2199. <id>14993209</id>
  2200. <name>Brandon Savage</name>
  2201. <screen_name>brandonsavage</screen_name>
  2202. <location/>
  2203. <description/>
  2204. <profile_image_url>http://a3.twimg.com/profile_images/859024571/brandon_normal.jpg</profile_image_url>
  2205. <url/>
  2206. <protected>false</protected>
  2207. <followers_count>752</followers_count>
  2208. <profile_background_color>C0DEED</profile_background_color>
  2209. <profile_text_color>333333</profile_text_color>
  2210. <profile_link_color>0084B4</profile_link_color>
  2211. <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
  2212. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  2213. <friends_count>152</friends_count>
  2214. <created_at>Tue Jun 03 14:28:21 +0000 2008</created_at>
  2215. <favourites_count>3</favourites_count>
  2216. <utc_offset>-18000</utc_offset>
  2217. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  2218. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  2219. <profile_background_tile>false</profile_background_tile>
  2220. <notifications>false</notifications>
  2221. <geo_enabled>false</geo_enabled>
  2222. <verified>false</verified>
  2223. <following>true</following>
  2224. <statuses_count>12034</statuses_count>
  2225. <lang>en</lang>
  2226. <contributors_enabled>false</contributors_enabled>
  2227. <status>
  2228. <created_at>Sun May 30 14:16:34 +0000 2010</created_at>
  2229. <id>15043809171</id>
  2230. <text>@xwordy Glenn Beck ruined the quote, after he equated it to Barack Obama's administration.</text>
  2231. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  2232. <truncated>false</truncated>
  2233. <in_reply_to_status_id>15042796140</in_reply_to_status_id>
  2234. <in_reply_to_user_id>10786112</in_reply_to_user_id>
  2235. <favorited>false</favorited>
  2236. <in_reply_to_screen_name>xwordy</in_reply_to_screen_name>
  2237. <geo/>
  2238. <coordinates/>
  2239. <place/>
  2240. <contributors/>
  2241. </status>
  2242. </user>
  2243. <user>
  2244. <id>109229910</id>
  2245. <name>Smartphone Focus</name>
  2246. <screen_name>SmartphoneFocus</screen_name>
  2247. <location>UK</location>
  2248. <description>Q of the Day: Which products have you started using to work on the move in the past five years?</description>
  2249. <profile_image_url>http://a3.twimg.com/profile_images/660712323/PTrotterFLIP_bigger_normal.JPG</profile_image_url>
  2250. <url>http://www.pcadvisor.co.uk/smartphone-focus/</url>
  2251. <protected>false</protected>
  2252. <followers_count>900</followers_count>
  2253. <profile_background_color>C0DEED</profile_background_color>
  2254. <profile_text_color>000000</profile_text_color>
  2255. <profile_link_color>030303</profile_link_color>
  2256. <profile_sidebar_fill_color>fa120a</profile_sidebar_fill_color>
  2257. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  2258. <friends_count>1582</friends_count>
  2259. <created_at>Thu Jan 28 11:10:30 +0000 2010</created_at>
  2260. <favourites_count>0</favourites_count>
  2261. <utc_offset>0</utc_offset>
  2262. <time_zone>London</time_zone>
  2263. <profile_background_image_url>http://a1.twimg.com/profile_background_images/88092044/Twitter-Vodafone_Smartphonei-2.jpg</profile_background_image_url>
  2264. <profile_background_tile>false</profile_background_tile>
  2265. <notifications>false</notifications>
  2266. <geo_enabled>false</geo_enabled>
  2267. <verified>false</verified>
  2268. <following>false</following>
  2269. <statuses_count>1629</statuses_count>
  2270. <lang>en</lang>
  2271. <contributors_enabled>false</contributors_enabled>
  2272. <status>
  2273. <created_at>Thu Apr 01 14:27:51 +0000 2010</created_at>
  2274. <id>11426869202</id>
  2275. <text>Palm Preparing UK Launch For Pixi Plus &amp; Pre Plus http://ow.ly/1tBkO</text>
  2276. <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
  2277. <truncated>false</truncated>
  2278. <in_reply_to_status_id/>
  2279. <in_reply_to_user_id/>
  2280. <favorited>false</favorited>
  2281. <in_reply_to_screen_name/>
  2282. <geo/>
  2283. <coordinates/>
  2284. <place/>
  2285. <contributors/>
  2286. </status>
  2287. </user>
  2288. <user>
  2289. <id>54812973</id>
  2290. <name>Ferenc Kovacs</name>
  2291. <screen_name>Tyr43l</screen_name>
  2292. <location>Budapest</location>
  2293. <description>Hacker 42 Anime Nationalism</description>
  2294. <profile_image_url>http://a3.twimg.com/profile_images/620860479/490_Tyrael_4a51dbc18671c_2_normal.jpg</profile_image_url>
  2295. <url>http://tyrael.hu</url>
  2296. <protected>false</protected>
  2297. <followers_count>30</followers_count>
  2298. <profile_background_color>9ae4e8</profile_background_color>
  2299. <profile_text_color>000000</profile_text_color>
  2300. <profile_link_color>0000ff</profile_link_color>
  2301. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2302. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2303. <friends_count>85</friends_count>
  2304. <created_at>Wed Jul 08 05:46:58 +0000 2009</created_at>
  2305. <favourites_count>0</favourites_count>
  2306. <utc_offset>3600</utc_offset>
  2307. <time_zone>Budapest</time_zone>
  2308. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  2309. <profile_background_tile>false</profile_background_tile>
  2310. <notifications>false</notifications>
  2311. <geo_enabled>true</geo_enabled>
  2312. <verified>false</verified>
  2313. <following>false</following>
  2314. <statuses_count>211</statuses_count>
  2315. <lang>en</lang>
  2316. <contributors_enabled>false</contributors_enabled>
  2317. <status>
  2318. <created_at>Thu May 20 07:24:45 +0000 2010</created_at>
  2319. <id>14346510907</id>
  2320. <text>@leente "Levente Bagi is now Ruby on Rails developer at Self Employed" =&amp;gt; Na, mizu, meselj! :)</text>
  2321. <source>web</source>
  2322. <truncated>false</truncated>
  2323. <in_reply_to_status_id/>
  2324. <in_reply_to_user_id>5407342</in_reply_to_user_id>
  2325. <favorited>false</favorited>
  2326. <in_reply_to_screen_name>leente</in_reply_to_screen_name>
  2327. <geo/>
  2328. <coordinates/>
  2329. <place/>
  2330. <contributors/>
  2331. </status>
  2332. </user>
  2333. <user>
  2334. <id>14869245</id>
  2335. <name>julienPauli</name>
  2336. <screen_name>julienPauli</screen_name>
  2337. <location>Paris</location>
  2338. <description>ZCE, ZFCE. Web app architect. PHP, Apache, ZendF contributor</description>
  2339. <profile_image_url>http://a3.twimg.com/profile_images/715548091/julienP_normal.jpg</profile_image_url>
  2340. <url>http://www.alterway.fr</url>
  2341. <protected>false</protected>
  2342. <followers_count>24</followers_count>
  2343. <profile_background_color>ACDED6</profile_background_color>
  2344. <profile_text_color>333333</profile_text_color>
  2345. <profile_link_color>038543</profile_link_color>
  2346. <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
  2347. <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
  2348. <friends_count>56</friends_count>
  2349. <created_at>Thu May 22 15:05:58 +0000 2008</created_at>
  2350. <favourites_count>0</favourites_count>
  2351. <utc_offset>3600</utc_offset>
  2352. <time_zone>Paris</time_zone>
  2353. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
  2354. <profile_background_tile>false</profile_background_tile>
  2355. <notifications>false</notifications>
  2356. <geo_enabled>false</geo_enabled>
  2357. <verified>false</verified>
  2358. <following>true</following>
  2359. <statuses_count>0</statuses_count>
  2360. <lang>en</lang>
  2361. <contributors_enabled>false</contributors_enabled>
  2362. </user>
  2363. <user>
  2364. <id>92359611</id>
  2365. <name>Medal of Honor</name>
  2366. <screen_name>medalofhonor</screen_name>
  2367. <location>Los Angeles</location>
  2368. <description>There is a new enemy. There is a new war. There is a new warrior. He is Tier 1. </description>
  2369. <profile_image_url>http://a1.twimg.com/profile_images/555288054/twitter_pic_normal.jpg</profile_image_url>
  2370. <url>http://www.medalofhonor.com</url>
  2371. <protected>false</protected>
  2372. <followers_count>5957</followers_count>
  2373. <profile_background_color>000000</profile_background_color>
  2374. <profile_text_color>333333</profile_text_color>
  2375. <profile_link_color>0084B4</profile_link_color>
  2376. <profile_sidebar_fill_color>c2c2c2</profile_sidebar_fill_color>
  2377. <profile_sidebar_border_color>000000</profile_sidebar_border_color>
  2378. <friends_count>251</friends_count>
  2379. <created_at>Tue Nov 24 20:38:24 +0000 2009</created_at>
  2380. <favourites_count>2</favourites_count>
  2381. <utc_offset>-32400</utc_offset>
  2382. <time_zone>Alaska</time_zone>
  2383. <profile_background_image_url>http://a1.twimg.com/profile_background_images/103800040/moh_twitter_final_rangertrailer.jpg</profile_background_image_url>
  2384. <profile_background_tile>false</profile_background_tile>
  2385. <notifications>false</notifications>
  2386. <geo_enabled>false</geo_enabled>
  2387. <verified>false</verified>
  2388. <following>true</following>
  2389. <statuses_count>124</statuses_count>
  2390. <lang>en</lang>
  2391. <contributors_enabled>false</contributors_enabled>
  2392. <status>
  2393. <created_at>Mon May 24 21:01:10 +0000 2010</created_at>
  2394. <id>14647009445</id>
  2395. <text>It's Military Monday at MedalofHonor.com and we have a new blog up entield "The Mind of a Soldier". http://bit.ly/dDc4Qm</text>
  2396. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2397. <truncated>false</truncated>
  2398. <in_reply_to_status_id/>
  2399. <in_reply_to_user_id/>
  2400. <favorited>false</favorited>
  2401. <in_reply_to_screen_name/>
  2402. <geo/>
  2403. <coordinates/>
  2404. <place/>
  2405. <contributors/>
  2406. </status>
  2407. </user>
  2408. <user>
  2409. <id>18849313</id>
  2410. <name>Matthew Pruitt</name>
  2411. <screen_name>matthewpruitt</screen_name>
  2412. <location>Los Angeles, CA | from Detroit</location>
  2413. <description>I oversee the communities for all of the Electronic Arts first-person shooter games.</description>
  2414. <profile_image_url>http://a3.twimg.com/profile_images/769039947/twit_normal.jpg</profile_image_url>
  2415. <url>http://www.linkedin.com/in/matthewpruitt</url>
  2416. <protected>false</protected>
  2417. <followers_count>1875</followers_count>
  2418. <profile_background_color>1A1B1F</profile_background_color>
  2419. <profile_text_color>06001f</profile_text_color>
  2420. <profile_link_color>d94c17</profile_link_color>
  2421. <profile_sidebar_fill_color>ababab</profile_sidebar_fill_color>
  2422. <profile_sidebar_border_color>000000</profile_sidebar_border_color>
  2423. <friends_count>220</friends_count>
  2424. <created_at>Sat Jan 10 22:46:39 +0000 2009</created_at>
  2425. <favourites_count>2</favourites_count>
  2426. <utc_offset>-28800</utc_offset>
  2427. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  2428. <profile_background_image_url>http://a3.twimg.com/profile_background_images/3868929/twitter.jpg</profile_background_image_url>
  2429. <profile_background_tile>false</profile_background_tile>
  2430. <notifications>false</notifications>
  2431. <geo_enabled>true</geo_enabled>
  2432. <verified>false</verified>
  2433. <following>true</following>
  2434. <statuses_count>771</statuses_count>
  2435. <lang>en</lang>
  2436. <contributors_enabled>false</contributors_enabled>
  2437. <status>
  2438. <created_at>Wed May 19 22:07:13 +0000 2010</created_at>
  2439. <id>14319327820</id>
  2440. <text>@mdk2002 Tier 1 beards FTW!</text>
  2441. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2442. <truncated>false</truncated>
  2443. <in_reply_to_status_id>14311379775</in_reply_to_status_id>
  2444. <in_reply_to_user_id>14506809</in_reply_to_user_id>
  2445. <favorited>false</favorited>
  2446. <in_reply_to_screen_name>mdk2002</in_reply_to_screen_name>
  2447. <geo/>
  2448. <coordinates/>
  2449. <place/>
  2450. <contributors/>
  2451. </status>
  2452. </user>
  2453. <user>
  2454. <id>23930087</id>
  2455. <name>Qasim Shabbir</name>
  2456. <screen_name>qasimshabbir</screen_name>
  2457. <location/>
  2458. <description>Love to do programming. Expert areas are PHP, Opensource, eCommerce, CMS, Social Networking, CRM. Improving on RIA, Mobile Development, and Enterprise App</description>
  2459. <profile_image_url>http://a3.twimg.com/profile_images/267164527/qasimportrati_normal.jpg</profile_image_url>
  2460. <url>http://www.q-sols.com</url>
  2461. <protected>false</protected>
  2462. <followers_count>191</followers_count>
  2463. <profile_background_color>0099B9</profile_background_color>
  2464. <profile_text_color>3C3940</profile_text_color>
  2465. <profile_link_color>0099B9</profile_link_color>
  2466. <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
  2467. <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
  2468. <friends_count>158</friends_count>
  2469. <created_at>Thu Mar 12 10:46:49 +0000 2009</created_at>
  2470. <favourites_count>35</favourites_count>
  2471. <utc_offset>-21600</utc_offset>
  2472. <time_zone>Central Time (US &amp; Canada)</time_zone>
  2473. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
  2474. <profile_background_tile>false</profile_background_tile>
  2475. <notifications>false</notifications>
  2476. <geo_enabled>false</geo_enabled>
  2477. <verified>false</verified>
  2478. <following>false</following>
  2479. <statuses_count>746</statuses_count>
  2480. <lang>en</lang>
  2481. <contributors_enabled>false</contributors_enabled>
  2482. <status>
  2483. <created_at>Sat May 29 19:57:27 +0000 2010</created_at>
  2484. <id>14995310359</id>
  2485. <text>Icon Library for Google Map Markers #tech #coach http://bit.ly/bubT0a</text>
  2486. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2487. <truncated>false</truncated>
  2488. <in_reply_to_status_id/>
  2489. <in_reply_to_user_id/>
  2490. <favorited>false</favorited>
  2491. <in_reply_to_screen_name/>
  2492. <geo/>
  2493. <coordinates/>
  2494. <place/>
  2495. <contributors/>
  2496. </status>
  2497. </user>
  2498. <user>
  2499. <id>15201026</id>
  2500. <name>45ACP</name>
  2501. <screen_name>45ACP</screen_name>
  2502. <location>ÜT: 39.743747,-104.938906</location>
  2503. <description>libertarian, web developer, business owner IT Professional</description>
  2504. <profile_image_url>http://a3.twimg.com/profile_images/59972251/colorado_state_flag_normal.gif</profile_image_url>
  2505. <url/>
  2506. <protected>false</protected>
  2507. <followers_count>671</followers_count>
  2508. <profile_background_color>1ba35f</profile_background_color>
  2509. <profile_text_color>333333</profile_text_color>
  2510. <profile_link_color>0f2b26</profile_link_color>
  2511. <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
  2512. <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
  2513. <friends_count>1627</friends_count>
  2514. <created_at>Sun Jun 22 21:36:41 +0000 2008</created_at>
  2515. <favourites_count>1</favourites_count>
  2516. <utc_offset>-25200</utc_offset>
  2517. <time_zone>Mountain Time (US &amp; Canada)</time_zone>
  2518. <profile_background_image_url>http://a1.twimg.com/profile_background_images/88420186/twitterbg.png</profile_background_image_url>
  2519. <profile_background_tile>false</profile_background_tile>
  2520. <notifications>false</notifications>
  2521. <geo_enabled>false</geo_enabled>
  2522. <verified>false</verified>
  2523. <following>false</following>
  2524. <statuses_count>1649</statuses_count>
  2525. <lang>en</lang>
  2526. <contributors_enabled>false</contributors_enabled>
  2527. <status>
  2528. <created_at>Sun May 30 04:20:11 +0000 2010</created_at>
  2529. <id>15019517945</id>
  2530. <text>Received the tracking info for my replacement #blackberry #8900 hopefully this one will not spontaneously reboot everyday and loose wifi</text>
  2531. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2532. <truncated>false</truncated>
  2533. <in_reply_to_status_id/>
  2534. <in_reply_to_user_id/>
  2535. <favorited>false</favorited>
  2536. <in_reply_to_screen_name/>
  2537. <geo/>
  2538. <coordinates/>
  2539. <place/>
  2540. <contributors/>
  2541. </status>
  2542. </user>
  2543. <user>
  2544. <id>14213930</id>
  2545. <name>itabarau</name>
  2546. <screen_name>itabarau</screen_name>
  2547. <location/>
  2548. <description/>
  2549. <profile_image_url>http://a3.twimg.com/profile_images/52090741/good_normal.jpg</profile_image_url>
  2550. <url/>
  2551. <protected>false</protected>
  2552. <followers_count>36</followers_count>
  2553. <profile_background_color>9ae4e8</profile_background_color>
  2554. <profile_text_color>000000</profile_text_color>
  2555. <profile_link_color>0000ff</profile_link_color>
  2556. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2557. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2558. <friends_count>133</friends_count>
  2559. <created_at>Tue Mar 25 07:44:41 +0000 2008</created_at>
  2560. <favourites_count>1</favourites_count>
  2561. <utc_offset>-28800</utc_offset>
  2562. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  2563. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  2564. <profile_background_tile>false</profile_background_tile>
  2565. <notifications>false</notifications>
  2566. <geo_enabled>false</geo_enabled>
  2567. <verified>false</verified>
  2568. <following>false</following>
  2569. <statuses_count>54</statuses_count>
  2570. <lang>en</lang>
  2571. <contributors_enabled>false</contributors_enabled>
  2572. <status>
  2573. <created_at>Mon May 24 16:42:28 +0000 2010</created_at>
  2574. <id>14634256606</id>
  2575. <text>RT @phpizer: An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Treats Without A Hitch http://bit.ly/aFtNHo</text>
  2576. <source>web</source>
  2577. <truncated>false</truncated>
  2578. <in_reply_to_status_id/>
  2579. <in_reply_to_user_id/>
  2580. <favorited>false</favorited>
  2581. <in_reply_to_screen_name/>
  2582. <retweeted_status>
  2583. <created_at>Mon May 24 16:38:13 +0000 2010</created_at>
  2584. <id>14634022754</id>
  2585. <text>An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Treats Without A Hitch http://bit.ly/aFtNHo</text>
  2586. <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
  2587. <truncated>false</truncated>
  2588. <in_reply_to_status_id/>
  2589. <in_reply_to_user_id/>
  2590. <favorited>false</favorited>
  2591. <in_reply_to_screen_name/>
  2592. <geo/>
  2593. <coordinates/>
  2594. <place/>
  2595. <contributors/>
  2596. </retweeted_status>
  2597. <geo/>
  2598. <coordinates/>
  2599. <place/>
  2600. <contributors/>
  2601. </status>
  2602. </user>
  2603. <user>
  2604. <id>94172381</id>
  2605. <name>Brian Swan</name>
  2606. <screen_name>brian_swan</screen_name>
  2607. <location>Redmond, WA</location>
  2608. <description>Blogger about all things related to PHP and Microsoft. Rookie husband/dad. Amatuer Mtn. biker, runner, hiker. Experienced beer drinker.</description>
  2609. <profile_image_url>http://a1.twimg.com/profile_images/624949934/Brian_2_normal.jpg</profile_image_url>
  2610. <url>http://blogs.msdn.com/brian_swan/</url>
  2611. <protected>false</protected>
  2612. <followers_count>119</followers_count>
  2613. <profile_background_color>9ae4e8</profile_background_color>
  2614. <profile_text_color>000000</profile_text_color>
  2615. <profile_link_color>0000ff</profile_link_color>
  2616. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2617. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2618. <friends_count>159</friends_count>
  2619. <created_at>Wed Dec 02 20:47:52 +0000 2009</created_at>
  2620. <favourites_count>0</favourites_count>
  2621. <utc_offset>-28800</utc_offset>
  2622. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  2623. <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
  2624. <profile_background_tile>false</profile_background_tile>
  2625. <notifications>false</notifications>
  2626. <geo_enabled>true</geo_enabled>
  2627. <verified>false</verified>
  2628. <following>true</following>
  2629. <statuses_count>197</statuses_count>
  2630. <lang>en</lang>
  2631. <contributors_enabled>false</contributors_enabled>
  2632. <status>
  2633. <created_at>Fri May 28 18:58:15 +0000 2010</created_at>
  2634. <id>14925757554</id>
  2635. <text>@enygma Picked it up this morning? Is that breakfast?</text>
  2636. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2637. <truncated>false</truncated>
  2638. <in_reply_to_status_id>14925469046</in_reply_to_status_id>
  2639. <in_reply_to_user_id>8854032</in_reply_to_user_id>
  2640. <favorited>false</favorited>
  2641. <in_reply_to_screen_name>enygma</in_reply_to_screen_name>
  2642. <geo/>
  2643. <coordinates/>
  2644. <place/>
  2645. <contributors/>
  2646. </status>
  2647. </user>
  2648. <user>
  2649. <id>22903583</id>
  2650. <name>Lukas Kahwe Smith</name>
  2651. <screen_name>dybvandal</screen_name>
  2652. <location>Zurich</location>
  2653. <description>My twitter alter-ego is all about PHP, databases and other code related stuff.</description>
  2654. <profile_image_url>http://a3.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg</profile_image_url>
  2655. <url>http://pooteeweet.org</url>
  2656. <protected>false</protected>
  2657. <followers_count>217</followers_count>
  2658. <profile_background_color>1A1B1F</profile_background_color>
  2659. <profile_text_color>666666</profile_text_color>
  2660. <profile_link_color>2FC2EF</profile_link_color>
  2661. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  2662. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  2663. <friends_count>193</friends_count>
  2664. <created_at>Thu Mar 05 10:07:02 +0000 2009</created_at>
  2665. <favourites_count>0</favourites_count>
  2666. <utc_offset>3600</utc_offset>
  2667. <time_zone>Bern</time_zone>
  2668. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
  2669. <profile_background_tile>false</profile_background_tile>
  2670. <notifications>false</notifications>
  2671. <geo_enabled>true</geo_enabled>
  2672. <verified>false</verified>
  2673. <following>true</following>
  2674. <statuses_count>220</statuses_count>
  2675. <lang>en</lang>
  2676. <contributors_enabled>false</contributors_enabled>
  2677. <status>
  2678. <created_at>Sat May 29 20:36:18 +0000 2010</created_at>
  2679. <id>14997168565</id>
  2680. <text>Decided to break through the wall, eat that #CSS, but then again I am sure a pixel-pusher could do it better http://search.UN-informed.org</text>
  2681. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2682. <truncated>false</truncated>
  2683. <in_reply_to_status_id/>
  2684. <in_reply_to_user_id/>
  2685. <favorited>false</favorited>
  2686. <in_reply_to_screen_name/>
  2687. <geo/>
  2688. <coordinates/>
  2689. <place/>
  2690. <contributors/>
  2691. </status>
  2692. </user>
  2693. <user>
  2694. <id>36688537</id>
  2695. <name>Steve Tran</name>
  2696. <screen_name>clu3</screen_name>
  2697. <location>O-n-l-i-n-e-24-7</location>
  2698. <description>Web development. Zend Framework and Jquery, and Online Business</description>
  2699. <profile_image_url>http://a3.twimg.com/profile_images/201515571/avatar_normal.jpg</profile_image_url>
  2700. <url>http://clu3.com</url>
  2701. <protected>false</protected>
  2702. <followers_count>67</followers_count>
  2703. <profile_background_color>9ae4e8</profile_background_color>
  2704. <profile_text_color>000000</profile_text_color>
  2705. <profile_link_color>0000ff</profile_link_color>
  2706. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2707. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2708. <friends_count>66</friends_count>
  2709. <created_at>Thu Apr 30 15:27:59 +0000 2009</created_at>
  2710. <favourites_count>15</favourites_count>
  2711. <utc_offset>-28800</utc_offset>
  2712. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  2713. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  2714. <profile_background_tile>false</profile_background_tile>
  2715. <notifications>false</notifications>
  2716. <geo_enabled>false</geo_enabled>
  2717. <verified>false</verified>
  2718. <following>false</following>
  2719. <statuses_count>63</statuses_count>
  2720. <lang>en</lang>
  2721. <contributors_enabled>false</contributors_enabled>
  2722. <status>
  2723. <created_at>Sat May 22 15:27:40 +0000 2010</created_at>
  2724. <id>14499651048</id>
  2725. <text>Ryan Dahl on #node.js video http://www.yuiblog.com/blog/2010/05/20/video-dahl/</text>
  2726. <source>web</source>
  2727. <truncated>false</truncated>
  2728. <in_reply_to_status_id/>
  2729. <in_reply_to_user_id/>
  2730. <favorited>false</favorited>
  2731. <in_reply_to_screen_name/>
  2732. <geo/>
  2733. <coordinates/>
  2734. <place/>
  2735. <contributors/>
  2736. </status>
  2737. </user>
  2738. <user>
  2739. <id>8136372</id>
  2740. <name>BizHat.com</name>
  2741. <screen_name>bizhat</screen_name>
  2742. <location/>
  2743. <description/>
  2744. <profile_image_url>http://a1.twimg.com/profile_images/417144074/pookalam_normal.jpg</profile_image_url>
  2745. <url>http://bizhat.com</url>
  2746. <protected>false</protected>
  2747. <followers_count>91</followers_count>
  2748. <profile_background_color>B2DFDA</profile_background_color>
  2749. <profile_text_color>333333</profile_text_color>
  2750. <profile_link_color>93A644</profile_link_color>
  2751. <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
  2752. <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
  2753. <friends_count>107</friends_count>
  2754. <created_at>Sun Aug 12 07:33:18 +0000 2007</created_at>
  2755. <favourites_count>0</favourites_count>
  2756. <utc_offset>-36000</utc_offset>
  2757. <time_zone>Hawaii</time_zone>
  2758. <profile_background_image_url>http://a1.twimg.com/profile_background_images/37107528/P1010004.JPG</profile_background_image_url>
  2759. <profile_background_tile>false</profile_background_tile>
  2760. <notifications>false</notifications>
  2761. <geo_enabled>false</geo_enabled>
  2762. <verified>false</verified>
  2763. <following>false</following>
  2764. <statuses_count>66</statuses_count>
  2765. <lang>en</lang>
  2766. <contributors_enabled>false</contributors_enabled>
  2767. <status>
  2768. <created_at>Sat May 22 21:17:13 +0000 2010</created_at>
  2769. <id>14516850022</id>
  2770. <text>Final tweet of @netizentwo who passed away in plane crash 22 Mar 2009 #mangalore #india</text>
  2771. <source>web</source>
  2772. <truncated>false</truncated>
  2773. <in_reply_to_status_id/>
  2774. <in_reply_to_user_id/>
  2775. <favorited>false</favorited>
  2776. <in_reply_to_screen_name/>
  2777. <geo/>
  2778. <coordinates/>
  2779. <place/>
  2780. <contributors/>
  2781. </status>
  2782. </user>
  2783. <user>
  2784. <id>9826072</id>
  2785. <name>jDempster</name>
  2786. <screen_name>jDempster</screen_name>
  2787. <location>Northampton, UK</location>
  2788. <description>the one constant in life, is change</description>
  2789. <profile_image_url>http://a1.twimg.com/profile_images/82171216/jd2_normal.png</profile_image_url>
  2790. <url>http://www.jdempster.com/</url>
  2791. <protected>false</protected>
  2792. <followers_count>26</followers_count>
  2793. <profile_background_color>C6E2EE</profile_background_color>
  2794. <profile_text_color>663B12</profile_text_color>
  2795. <profile_link_color>1F98C7</profile_link_color>
  2796. <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
  2797. <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
  2798. <friends_count>44</friends_count>
  2799. <created_at>Wed Oct 31 15:08:37 +0000 2007</created_at>
  2800. <favourites_count>8</favourites_count>
  2801. <utc_offset>0</utc_offset>
  2802. <time_zone>London</time_zone>
  2803. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme2/bg.gif</profile_background_image_url>
  2804. <profile_background_tile>false</profile_background_tile>
  2805. <notifications>false</notifications>
  2806. <geo_enabled>false</geo_enabled>
  2807. <verified>false</verified>
  2808. <following>false</following>
  2809. <statuses_count>74</statuses_count>
  2810. <lang>en</lang>
  2811. <contributors_enabled>false</contributors_enabled>
  2812. <status>
  2813. <created_at>Thu Apr 22 17:14:04 +0000 2010</created_at>
  2814. <id>12650534190</id>
  2815. <text>@giorgiosironi I recommed ZFS. lol. But I don't think can do diffs.</text>
  2816. <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2817. <truncated>false</truncated>
  2818. <in_reply_to_status_id>12631604856</in_reply_to_status_id>
  2819. <in_reply_to_user_id>47998559</in_reply_to_user_id>
  2820. <favorited>false</favorited>
  2821. <in_reply_to_screen_name>giorgiosironi</in_reply_to_screen_name>
  2822. <geo/>
  2823. <coordinates/>
  2824. <place/>
  2825. <contributors/>
  2826. </status>
  2827. </user>
  2828. <user>
  2829. <id>17519155</id>
  2830. <name>macrina32</name>
  2831. <screen_name>macrina32</screen_name>
  2832. <location>Albany</location>
  2833. <description/>
  2834. <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_3_normal.png</profile_image_url>
  2835. <url/>
  2836. <protected>false</protected>
  2837. <followers_count>0</followers_count>
  2838. <profile_background_color>9ae4e8</profile_background_color>
  2839. <profile_text_color>000000</profile_text_color>
  2840. <profile_link_color>0000ff</profile_link_color>
  2841. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2842. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2843. <friends_count>12</friends_count>
  2844. <created_at>Thu Nov 20 19:20:55 +0000 2008</created_at>
  2845. <favourites_count>0</favourites_count>
  2846. <utc_offset>-18000</utc_offset>
  2847. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  2848. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  2849. <profile_background_tile>false</profile_background_tile>
  2850. <notifications>false</notifications>
  2851. <geo_enabled>false</geo_enabled>
  2852. <verified>false</verified>
  2853. <following>false</following>
  2854. <statuses_count>3</statuses_count>
  2855. <lang>en</lang>
  2856. <contributors_enabled>false</contributors_enabled>
  2857. <status>
  2858. <created_at>Thu May 13 15:04:00 +0000 2010</created_at>
  2859. <id>13918571519</id>
  2860. <text>@flyosity def worth it!</text>
  2861. <source>web</source>
  2862. <truncated>false</truncated>
  2863. <in_reply_to_status_id>13895993105</in_reply_to_status_id>
  2864. <in_reply_to_user_id>10545</in_reply_to_user_id>
  2865. <favorited>false</favorited>
  2866. <in_reply_to_screen_name>flyosity</in_reply_to_screen_name>
  2867. <geo/>
  2868. <coordinates/>
  2869. <place/>
  2870. <contributors/>
  2871. </status>
  2872. </user>
  2873. <user>
  2874. <id>21287694</id>
  2875. <name>Anthony Sterling</name>
  2876. <screen_name>AnthonySterling</screen_name>
  2877. <location>Newcastle-Upon-Tyne, UK</location>
  2878. <description>Full-time IT manager, part-time freelance PHP ninja.</description>
  2879. <profile_image_url>http://a1.twimg.com/profile_images/933539796/colour-border_normal.jpg</profile_image_url>
  2880. <url>http://www.anthonysterling.com</url>
  2881. <protected>false</protected>
  2882. <followers_count>245</followers_count>
  2883. <profile_background_color>022330</profile_background_color>
  2884. <profile_text_color>333333</profile_text_color>
  2885. <profile_link_color>0084B4</profile_link_color>
  2886. <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
  2887. <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
  2888. <friends_count>100</friends_count>
  2889. <created_at>Thu Feb 19 10:14:59 +0000 2009</created_at>
  2890. <favourites_count>0</favourites_count>
  2891. <utc_offset>0</utc_offset>
  2892. <time_zone>London</time_zone>
  2893. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
  2894. <profile_background_tile>false</profile_background_tile>
  2895. <notifications>false</notifications>
  2896. <geo_enabled>false</geo_enabled>
  2897. <verified>false</verified>
  2898. <following>false</following>
  2899. <statuses_count>2081</statuses_count>
  2900. <lang>en</lang>
  2901. <contributors_enabled>false</contributors_enabled>
  2902. <status>
  2903. <created_at>Sun May 30 14:18:07 +0000 2010</created_at>
  2904. <id>15043898545</id>
  2905. <text>I love this quote regarding #freelancing - "I am not in the fast food business. I am a chef." - http://is.gd/cvGN0 /by @drewcrawford</text>
  2906. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  2907. <truncated>false</truncated>
  2908. <in_reply_to_status_id/>
  2909. <in_reply_to_user_id/>
  2910. <favorited>false</favorited>
  2911. <in_reply_to_screen_name/>
  2912. <geo/>
  2913. <coordinates/>
  2914. <place/>
  2915. <contributors/>
  2916. </status>
  2917. </user>
  2918. <user>
  2919. <id>17366945</id>
  2920. <name>Travis Pew</name>
  2921. <screen_name>travispew</screen_name>
  2922. <location>Decatur, GA</location>
  2923. <description>Founder of www.gymgenius.com</description>
  2924. <profile_image_url>http://a3.twimg.com/profile_images/650725821/profile_normal.JPG</profile_image_url>
  2925. <url>http://www.gymgenius.com</url>
  2926. <protected>false</protected>
  2927. <followers_count>63</followers_count>
  2928. <profile_background_color>9ae4e8</profile_background_color>
  2929. <profile_text_color>000000</profile_text_color>
  2930. <profile_link_color>0000ff</profile_link_color>
  2931. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  2932. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  2933. <friends_count>102</friends_count>
  2934. <created_at>Thu Nov 13 15:37:28 +0000 2008</created_at>
  2935. <favourites_count>1</favourites_count>
  2936. <utc_offset>-18000</utc_offset>
  2937. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  2938. <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
  2939. <profile_background_tile>false</profile_background_tile>
  2940. <notifications>false</notifications>
  2941. <geo_enabled>false</geo_enabled>
  2942. <verified>false</verified>
  2943. <following>false</following>
  2944. <statuses_count>233</statuses_count>
  2945. <lang>en</lang>
  2946. <contributors_enabled>false</contributors_enabled>
  2947. <status>
  2948. <created_at>Sat May 22 17:29:56 +0000 2010</created_at>
  2949. <id>14506398878</id>
  2950. <text>@Juniper949 ok i am convinced.</text>
  2951. <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
  2952. <truncated>false</truncated>
  2953. <in_reply_to_status_id>14505975800</in_reply_to_status_id>
  2954. <in_reply_to_user_id>33581425</in_reply_to_user_id>
  2955. <favorited>false</favorited>
  2956. <in_reply_to_screen_name>Juniper949</in_reply_to_screen_name>
  2957. <geo/>
  2958. <coordinates/>
  2959. <place/>
  2960. <contributors/>
  2961. </status>
  2962. </user>
  2963. <user>
  2964. <id>14438478</id>
  2965. <name>Chris Morrell</name>
  2966. <screen_name>inxilpro</screen_name>
  2967. <location>Philadelphia, PA</location>
  2968. <description>Chris is a Web designer and developer in Philadelphia, PA.</description>
  2969. <profile_image_url>http://a3.twimg.com/profile_images/56452575/Twitter_normal.jpg</profile_image_url>
  2970. <url>http://cmorrell.com</url>
  2971. <protected>false</protected>
  2972. <followers_count>183</followers_count>
  2973. <profile_background_color>eadfca</profile_background_color>
  2974. <profile_text_color>0C3E53</profile_text_color>
  2975. <profile_link_color>FF0000</profile_link_color>
  2976. <profile_sidebar_fill_color>f9f8f3</profile_sidebar_fill_color>
  2977. <profile_sidebar_border_color>E0DAC4</profile_sidebar_border_color>
  2978. <friends_count>77</friends_count>
  2979. <created_at>Fri Apr 18 22:57:36 +0000 2008</created_at>
  2980. <favourites_count>81</favourites_count>
  2981. <utc_offset>-18000</utc_offset>
  2982. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  2983. <profile_background_image_url>http://a1.twimg.com/profile_background_images/3522136/twitter-bg.jpg</profile_background_image_url>
  2984. <profile_background_tile>false</profile_background_tile>
  2985. <notifications>false</notifications>
  2986. <geo_enabled>true</geo_enabled>
  2987. <verified>false</verified>
  2988. <following>false</following>
  2989. <statuses_count>1222</statuses_count>
  2990. <lang>en</lang>
  2991. <contributors_enabled>false</contributors_enabled>
  2992. <status>
  2993. <created_at>Fri May 28 02:38:54 +0000 2010</created_at>
  2994. <id>14877191308</id>
  2995. <text>@r38y do you have Photoshop? It's just the noise filter as far as I can tell from that picture.</text>
  2996. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  2997. <truncated>false</truncated>
  2998. <in_reply_to_status_id>14860091448</in_reply_to_status_id>
  2999. <in_reply_to_user_id>1465521</in_reply_to_user_id>
  3000. <favorited>false</favorited>
  3001. <in_reply_to_screen_name>r38y</in_reply_to_screen_name>
  3002. <geo/>
  3003. <coordinates/>
  3004. <place/>
  3005. <contributors/>
  3006. </status>
  3007. </user>
  3008. <user>
  3009. <id>12165542</id>
  3010. <name>Victor Zamfir</name>
  3011. <screen_name>victorzamfir</screen_name>
  3012. <location>Romania</location>
  3013. <description/>
  3014. <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_4_normal.png</profile_image_url>
  3015. <url/>
  3016. <protected>false</protected>
  3017. <followers_count>77</followers_count>
  3018. <profile_background_color>030303</profile_background_color>
  3019. <profile_text_color>333333</profile_text_color>
  3020. <profile_link_color>0084B4</profile_link_color>
  3021. <profile_sidebar_fill_color>e6ecee</profile_sidebar_fill_color>
  3022. <profile_sidebar_border_color>e6ecee</profile_sidebar_border_color>
  3023. <friends_count>146</friends_count>
  3024. <created_at>Sat Jan 12 22:47:55 +0000 2008</created_at>
  3025. <favourites_count>72</favourites_count>
  3026. <utc_offset>-10800</utc_offset>
  3027. <time_zone>Greenland</time_zone>
  3028. <profile_background_image_url>http://a3.twimg.com/profile_background_images/88406645/backg-metromind2.jpg</profile_background_image_url>
  3029. <profile_background_tile>false</profile_background_tile>
  3030. <notifications>false</notifications>
  3031. <geo_enabled>false</geo_enabled>
  3032. <verified>false</verified>
  3033. <following>false</following>
  3034. <statuses_count>1</statuses_count>
  3035. <lang>en</lang>
  3036. <contributors_enabled>false</contributors_enabled>
  3037. <status>
  3038. <created_at>Sat Nov 28 21:55:21 +0000 2009</created_at>
  3039. <id>6151979356</id>
  3040. <text>RT @MihaiDragan: RT @webmyc: Romani Anti PSD - f bun! http://www.romaniantipsd.ro/</text>
  3041. <source>web</source>
  3042. <truncated>false</truncated>
  3043. <in_reply_to_status_id/>
  3044. <in_reply_to_user_id/>
  3045. <favorited>false</favorited>
  3046. <in_reply_to_screen_name/>
  3047. <retweeted_status>
  3048. <created_at>Sat Nov 28 20:25:57 +0000 2009</created_at>
  3049. <id>6149928020</id>
  3050. <text>RT @webmyc: Romani Anti PSD - f bun! http://www.romaniantipsd.ro/</text>
  3051. <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
  3052. <truncated>false</truncated>
  3053. <in_reply_to_status_id/>
  3054. <in_reply_to_user_id/>
  3055. <favorited>false</favorited>
  3056. <in_reply_to_screen_name/>
  3057. <geo/>
  3058. <coordinates/>
  3059. <place/>
  3060. <contributors/>
  3061. </retweeted_status>
  3062. <geo/>
  3063. <coordinates/>
  3064. <place/>
  3065. <contributors/>
  3066. </status>
  3067. </user>
  3068. <user>
  3069. <id>23214328</id>
  3070. <name>Źmicier Hryškievič</name>
  3071. <screen_name>zmicier</screen_name>
  3072. <location/>
  3073. <description/>
  3074. <profile_image_url>http://a3.twimg.com/profile_images/697397811/me_normal.jpg</profile_image_url>
  3075. <url/>
  3076. <protected>false</protected>
  3077. <followers_count>12</followers_count>
  3078. <profile_background_color>9ae4e8</profile_background_color>
  3079. <profile_text_color>000000</profile_text_color>
  3080. <profile_link_color>0000ff</profile_link_color>
  3081. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3082. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3083. <friends_count>15</friends_count>
  3084. <created_at>Sat Mar 07 17:37:34 +0000 2009</created_at>
  3085. <favourites_count>0</favourites_count>
  3086. <utc_offset>3600</utc_offset>
  3087. <time_zone>Warsaw</time_zone>
  3088. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  3089. <profile_background_tile>false</profile_background_tile>
  3090. <notifications>false</notifications>
  3091. <geo_enabled>false</geo_enabled>
  3092. <verified>false</verified>
  3093. <following>false</following>
  3094. <statuses_count>1</statuses_count>
  3095. <lang>en</lang>
  3096. <contributors_enabled>false</contributors_enabled>
  3097. <status>
  3098. <created_at>Tue Jan 26 23:40:50 +0000 2010</created_at>
  3099. <id>8255909159</id>
  3100. <text>Trip to Cracow. 5 hours remaining</text>
  3101. <source>web</source>
  3102. <truncated>false</truncated>
  3103. <in_reply_to_status_id/>
  3104. <in_reply_to_user_id/>
  3105. <favorited>false</favorited>
  3106. <in_reply_to_screen_name/>
  3107. <geo/>
  3108. <coordinates/>
  3109. <place/>
  3110. <contributors/>
  3111. </status>
  3112. </user>
  3113. <user>
  3114. <id>70735867</id>
  3115. <name>Sebastian Krebs</name>
  3116. <screen_name>SeKrebs</screen_name>
  3117. <location>Berlin, Germany</location>
  3118. <description/>
  3119. <profile_image_url>http://a1.twimg.com/profile_images/393241806/av2_normal.jpg</profile_image_url>
  3120. <url>http://www.kingcrunch.de</url>
  3121. <protected>false</protected>
  3122. <followers_count>13</followers_count>
  3123. <profile_background_color>9ae4e8</profile_background_color>
  3124. <profile_text_color>000000</profile_text_color>
  3125. <profile_link_color>0000ff</profile_link_color>
  3126. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3127. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3128. <friends_count>29</friends_count>
  3129. <created_at>Tue Sep 01 17:33:20 +0000 2009</created_at>
  3130. <favourites_count>0</favourites_count>
  3131. <utc_offset>3600</utc_offset>
  3132. <time_zone>Berlin</time_zone>
  3133. <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme1/bg.png</profile_background_image_url>
  3134. <profile_background_tile>false</profile_background_tile>
  3135. <notifications>false</notifications>
  3136. <geo_enabled>true</geo_enabled>
  3137. <verified>false</verified>
  3138. <following>false</following>
  3139. <statuses_count>46</statuses_count>
  3140. <lang>en</lang>
  3141. <contributors_enabled>false</contributors_enabled>
  3142. <status>
  3143. <created_at>Wed May 19 17:02:35 +0000 2010</created_at>
  3144. <id>14305275370</id>
  3145. <text>RT s_bergmann: Mathematik und Logik dürfen nicht patentierbar sein: http://bit.ly/PP100519 #piraten+</text>
  3146. <source>&lt;a href="http://code.google.com/p/microblog-purple/" rel="nofollow"&gt;mbpidgin&lt;/a&gt;</source>
  3147. <truncated>false</truncated>
  3148. <in_reply_to_status_id/>
  3149. <in_reply_to_user_id/>
  3150. <favorited>false</favorited>
  3151. <in_reply_to_screen_name/>
  3152. <geo/>
  3153. <coordinates/>
  3154. <place/>
  3155. <contributors/>
  3156. </status>
  3157. </user>
  3158. <user>
  3159. <id>28200993</id>
  3160. <name>Paul Court</name>
  3161. <screen_name>IAWDev</screen_name>
  3162. <location/>
  3163. <description>PHP Developer - Drupal &amp; Zend Framework mainly</description>
  3164. <profile_image_url>http://a1.twimg.com/profile_images/144829882/teitter-logo2_normal.png</profile_image_url>
  3165. <url>http://www.itsaboutwebsites.com</url>
  3166. <protected>false</protected>
  3167. <followers_count>86</followers_count>
  3168. <profile_background_color>ffffff</profile_background_color>
  3169. <profile_text_color>333333</profile_text_color>
  3170. <profile_link_color>0084B4</profile_link_color>
  3171. <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
  3172. <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
  3173. <friends_count>63</friends_count>
  3174. <created_at>Wed Apr 01 21:29:15 +0000 2009</created_at>
  3175. <favourites_count>0</favourites_count>
  3176. <utc_offset>0</utc_offset>
  3177. <time_zone>London</time_zone>
  3178. <profile_background_image_url>http://a1.twimg.com/profile_background_images/53735060/twt-bg.jpg</profile_background_image_url>
  3179. <profile_background_tile>false</profile_background_tile>
  3180. <notifications>false</notifications>
  3181. <geo_enabled>true</geo_enabled>
  3182. <verified>false</verified>
  3183. <following>false</following>
  3184. <statuses_count>534</statuses_count>
  3185. <lang>en</lang>
  3186. <contributors_enabled>false</contributors_enabled>
  3187. <status>
  3188. <created_at>Fri May 28 08:58:23 +0000 2010</created_at>
  3189. <id>14894270501</id>
  3190. <text>@rem I know what you mean!! I'm getting things vanishing from the page when I hover over them while "inspecting element"!</text>
  3191. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  3192. <truncated>false</truncated>
  3193. <in_reply_to_status_id>14892093556</in_reply_to_status_id>
  3194. <in_reply_to_user_id>648873</in_reply_to_user_id>
  3195. <favorited>false</favorited>
  3196. <in_reply_to_screen_name>rem</in_reply_to_screen_name>
  3197. <geo xmlns:georss="http://www.georss.org/georss">
  3198. <georss:point>53.51785234 -2.93405566</georss:point>
  3199. </geo>
  3200. <coordinates xmlns:georss="http://www.georss.org/georss">
  3201. <georss:point>53.51785234 -2.93405566</georss:point>
  3202. </coordinates>
  3203. <place/>
  3204. <contributors/>
  3205. </status>
  3206. </user>
  3207. <user>
  3208. <id>21797442</id>
  3209. <name>George Miroshnikov</name>
  3210. <screen_name>LaggyLuke</screen_name>
  3211. <location>Kyiv, Ukraine</location>
  3212. <description/>
  3213. <profile_image_url>http://a1.twimg.com/profile_images/82397314/570e2341344234f5a22d40059586caff_normal.jpeg</profile_image_url>
  3214. <url/>
  3215. <protected>false</protected>
  3216. <followers_count>26</followers_count>
  3217. <profile_background_color>9ae4e8</profile_background_color>
  3218. <profile_text_color>000000</profile_text_color>
  3219. <profile_link_color>0000ff</profile_link_color>
  3220. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3221. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3222. <friends_count>21</friends_count>
  3223. <created_at>Tue Feb 24 21:04:27 +0000 2009</created_at>
  3224. <favourites_count>0</favourites_count>
  3225. <utc_offset>7200</utc_offset>
  3226. <time_zone>Kyiv</time_zone>
  3227. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  3228. <profile_background_tile>false</profile_background_tile>
  3229. <notifications>false</notifications>
  3230. <geo_enabled>false</geo_enabled>
  3231. <verified>false</verified>
  3232. <following>true</following>
  3233. <statuses_count>97</statuses_count>
  3234. <lang>en</lang>
  3235. <contributors_enabled>false</contributors_enabled>
  3236. <status>
  3237. <created_at>Wed May 26 13:33:28 +0000 2010</created_at>
  3238. <id>14763275289</id>
  3239. <text>@egorFiNE well, maybe there's a chance for me with some localized Russian or even Ukrainian version :)</text>
  3240. <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
  3241. <truncated>false</truncated>
  3242. <in_reply_to_status_id>14759313446</in_reply_to_status_id>
  3243. <in_reply_to_user_id>5957612</in_reply_to_user_id>
  3244. <favorited>false</favorited>
  3245. <in_reply_to_screen_name>egorFiNE</in_reply_to_screen_name>
  3246. <geo/>
  3247. <coordinates/>
  3248. <place/>
  3249. <contributors/>
  3250. </status>
  3251. </user>
  3252. <user>
  3253. <id>14853168</id>
  3254. <name>Christer</name>
  3255. <screen_name>cogocogo</screen_name>
  3256. <location>Fredrikstad, Norway</location>
  3257. <description>Nerd from Norway enjoying PHP, beer and climbing. Senior developer at vg.no.</description>
  3258. <profile_image_url>http://a1.twimg.com/profile_images/55660178/n624270202_478062_2727_normal.jpg</profile_image_url>
  3259. <url>http://cogo.wordpress.com/</url>
  3260. <protected>false</protected>
  3261. <followers_count>100</followers_count>
  3262. <profile_background_color>9ae4e8</profile_background_color>
  3263. <profile_text_color>000000</profile_text_color>
  3264. <profile_link_color>0000ff</profile_link_color>
  3265. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3266. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3267. <friends_count>75</friends_count>
  3268. <created_at>Wed May 21 06:32:16 +0000 2008</created_at>
  3269. <favourites_count>0</favourites_count>
  3270. <utc_offset>3600</utc_offset>
  3271. <time_zone>Stockholm</time_zone>
  3272. <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
  3273. <profile_background_tile>false</profile_background_tile>
  3274. <notifications>false</notifications>
  3275. <geo_enabled>false</geo_enabled>
  3276. <verified>false</verified>
  3277. <following>false</following>
  3278. <statuses_count>301</statuses_count>
  3279. <lang>en</lang>
  3280. <contributors_enabled>false</contributors_enabled>
  3281. <status>
  3282. <created_at>Fri May 28 08:22:37 +0000 2010</created_at>
  3283. <id>14893074549</id>
  3284. <text>Packing my bag for a weekend in Dublin!</text>
  3285. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  3286. <truncated>false</truncated>
  3287. <in_reply_to_status_id/>
  3288. <in_reply_to_user_id/>
  3289. <favorited>false</favorited>
  3290. <in_reply_to_screen_name/>
  3291. <geo/>
  3292. <coordinates/>
  3293. <place/>
  3294. <contributors/>
  3295. </status>
  3296. </user>
  3297. <user>
  3298. <id>15947185</id>
  3299. <name>Tips, Tools, Status</name>
  3300. <screen_name>Twitter_Tips</screen_name>
  3301. <location>Minneapolis, MN</location>
  3302. <description>On Twitter.Alltop.com — Twitter tips, tools, news &amp; status from @SarahJL (radio DJ, dance teacher) &amp; @QuantumGood (resident geek)</description>
  3303. <profile_image_url>http://a1.twimg.com/profile_images/58879430/Tweeple_Helpers_normal.png</profile_image_url>
  3304. <url>http://TwitterUserManual.com/</url>
  3305. <protected>false</protected>
  3306. <followers_count>186829</followers_count>
  3307. <profile_background_color>9ae4e8</profile_background_color>
  3308. <profile_text_color>1C1200</profile_text_color>
  3309. <profile_link_color>2562FD</profile_link_color>
  3310. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3311. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3312. <friends_count>127105</friends_count>
  3313. <created_at>Fri Aug 22 16:55:46 +0000 2008</created_at>
  3314. <favourites_count>12</favourites_count>
  3315. <utc_offset>-21600</utc_offset>
  3316. <time_zone>Central Time (US &amp; Canada)</time_zone>
  3317. <profile_background_image_url>http://a3.twimg.com/profile_background_images/4791709/Twitter_Tips_Awards.png</profile_background_image_url>
  3318. <profile_background_tile>true</profile_background_tile>
  3319. <notifications>false</notifications>
  3320. <geo_enabled>false</geo_enabled>
  3321. <verified>false</verified>
  3322. <following>false</following>
  3323. <statuses_count>19572</statuses_count>
  3324. <lang>en</lang>
  3325. <contributors_enabled>false</contributors_enabled>
  3326. <status>
  3327. <created_at>Sun May 30 13:59:45 +0000 2010</created_at>
  3328. <id>15042804558</id>
  3329. <text>Telcel customers/Mexico can now send tweets via SMS. Visit http://j.mp/ckgynl to get started</text>
  3330. <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
  3331. <truncated>false</truncated>
  3332. <in_reply_to_status_id/>
  3333. <in_reply_to_user_id/>
  3334. <favorited>false</favorited>
  3335. <in_reply_to_screen_name/>
  3336. <geo/>
  3337. <coordinates/>
  3338. <place/>
  3339. <contributors/>
  3340. </status>
  3341. </user>
  3342. <user>
  3343. <id>121860608</id>
  3344. <name>Andrew Smith</name>
  3345. <screen_name>di0nysys</screen_name>
  3346. <location>Toronto</location>
  3347. <description>for the real me, goto my facebook page.</description>
  3348. <profile_image_url>http://a1.twimg.com/profile_images/745044038/twitter_normal.jpg</profile_image_url>
  3349. <url/>
  3350. <protected>true</protected>
  3351. <followers_count>3</followers_count>
  3352. <profile_background_color>ECD078</profile_background_color>
  3353. <profile_text_color>D95B43</profile_text_color>
  3354. <profile_link_color>C02942</profile_link_color>
  3355. <profile_sidebar_fill_color>542437</profile_sidebar_fill_color>
  3356. <profile_sidebar_border_color>53777A</profile_sidebar_border_color>
  3357. <friends_count>676</friends_count>
  3358. <created_at>Wed Mar 10 20:54:34 +0000 2010</created_at>
  3359. <favourites_count>0</favourites_count>
  3360. <utc_offset>-18000</utc_offset>
  3361. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  3362. <profile_background_image_url>http://a1.twimg.com/profile_background_images/92176410/x85dd5d3151b4f3b888b807a9ed5b1d6.png</profile_background_image_url>
  3363. <profile_background_tile>true</profile_background_tile>
  3364. <notifications>false</notifications>
  3365. <geo_enabled>false</geo_enabled>
  3366. <verified>false</verified>
  3367. <following>false</following>
  3368. <statuses_count>184</statuses_count>
  3369. <lang>en</lang>
  3370. <contributors_enabled>false</contributors_enabled>
  3371. </user>
  3372. <user>
  3373. <id>118724553</id>
  3374. <name>Steve I</name>
  3375. <screen_name>torylaw</screen_name>
  3376. <location/>
  3377. <description>I will not be using this account</description>
  3378. <profile_image_url>http://s.twimg.com/a/1274130900/images/default_profile_3_normal.png</profile_image_url>
  3379. <url/>
  3380. <protected>true</protected>
  3381. <followers_count>2</followers_count>
  3382. <profile_background_color>352726</profile_background_color>
  3383. <profile_text_color>3E4415</profile_text_color>
  3384. <profile_link_color>D02B55</profile_link_color>
  3385. <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
  3386. <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
  3387. <friends_count>598</friends_count>
  3388. <created_at>Mon Mar 01 15:29:23 +0000 2010</created_at>
  3389. <favourites_count>2</favourites_count>
  3390. <utc_offset>-18000</utc_offset>
  3391. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  3392. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme5/bg.gif</profile_background_image_url>
  3393. <profile_background_tile>false</profile_background_tile>
  3394. <notifications>false</notifications>
  3395. <geo_enabled>false</geo_enabled>
  3396. <verified>false</verified>
  3397. <following>false</following>
  3398. <statuses_count>48</statuses_count>
  3399. <lang>en</lang>
  3400. <contributors_enabled>false</contributors_enabled>
  3401. </user>
  3402. <user>
  3403. <id>56805372</id>
  3404. <name>Worky Developer</name>
  3405. <screen_name>WorkyDev</screen_name>
  3406. <location>Dublin</location>
  3407. <description/>
  3408. <profile_image_url>http://a3.twimg.com/profile_images/630886395/workyMan-solo_normal_normal.png</profile_image_url>
  3409. <url>http://www.worky.com</url>
  3410. <protected>false</protected>
  3411. <followers_count>20</followers_count>
  3412. <profile_background_color>9ae4e8</profile_background_color>
  3413. <profile_text_color>000000</profile_text_color>
  3414. <profile_link_color>0000ff</profile_link_color>
  3415. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3416. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3417. <friends_count>18</friends_count>
  3418. <created_at>Tue Jul 14 20:25:55 +0000 2009</created_at>
  3419. <favourites_count>0</favourites_count>
  3420. <utc_offset>0</utc_offset>
  3421. <time_zone>Dublin</time_zone>
  3422. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  3423. <profile_background_tile>false</profile_background_tile>
  3424. <notifications>false</notifications>
  3425. <geo_enabled>false</geo_enabled>
  3426. <verified>false</verified>
  3427. <following>false</following>
  3428. <statuses_count>9</statuses_count>
  3429. <lang>en</lang>
  3430. <contributors_enabled>false</contributors_enabled>
  3431. <status>
  3432. <created_at>Fri May 21 15:47:19 +0000 2010</created_at>
  3433. <id>14436185662</id>
  3434. <text>hats off to the latest google homepage, mr and mrs packman ride again :)</text>
  3435. <source>web</source>
  3436. <truncated>false</truncated>
  3437. <in_reply_to_status_id/>
  3438. <in_reply_to_user_id/>
  3439. <favorited>false</favorited>
  3440. <in_reply_to_screen_name/>
  3441. <geo/>
  3442. <coordinates/>
  3443. <place/>
  3444. <contributors/>
  3445. </status>
  3446. </user>
  3447. <user>
  3448. <id>18915942</id>
  3449. <name>Mad Dog Digital</name>
  3450. <screen_name>maddog_dave</screen_name>
  3451. <location/>
  3452. <description>Mad Dog Digital, Dublin, Ireland. Web design, development, online advertising and multimedia agency. HTML/CSS, Wordpress CMS, Flash, Actionscript and Richmedia.</description>
  3453. <profile_image_url>http://a3.twimg.com/profile_images/563026373/dave_logo_normal.png</profile_image_url>
  3454. <url>http://www.maddog.ie</url>
  3455. <protected>false</protected>
  3456. <followers_count>555</followers_count>
  3457. <profile_background_color>afa394</profile_background_color>
  3458. <profile_text_color>000000</profile_text_color>
  3459. <profile_link_color>533A1A</profile_link_color>
  3460. <profile_sidebar_fill_color>ededed</profile_sidebar_fill_color>
  3461. <profile_sidebar_border_color>533A1A</profile_sidebar_border_color>
  3462. <friends_count>547</friends_count>
  3463. <created_at>Mon Jan 12 21:18:26 +0000 2009</created_at>
  3464. <favourites_count>3</favourites_count>
  3465. <utc_offset>0</utc_offset>
  3466. <time_zone>Dublin</time_zone>
  3467. <profile_background_image_url>http://a1.twimg.com/profile_background_images/5087062/bg.jpg</profile_background_image_url>
  3468. <profile_background_tile>true</profile_background_tile>
  3469. <notifications/>
  3470. <geo_enabled>false</geo_enabled>
  3471. <verified>false</verified>
  3472. <following/>
  3473. <statuses_count>1004</statuses_count>
  3474. <lang>en</lang>
  3475. <contributors_enabled>false</contributors_enabled>
  3476. <status>
  3477. <created_at>Fri May 28 21:52:49 +0000 2010</created_at>
  3478. <id>14934336352</id>
  3479. <text>Sorry watching a on Sky+ about 15 mins behind. That woman is a tosser!</text>
  3480. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  3481. <truncated>false</truncated>
  3482. <in_reply_to_status_id/>
  3483. <in_reply_to_user_id/>
  3484. <favorited>false</favorited>
  3485. <in_reply_to_screen_name/>
  3486. <geo/>
  3487. <coordinates/>
  3488. <place/>
  3489. <contributors/>
  3490. </status>
  3491. </user>
  3492. <user>
  3493. <id>118651468</id>
  3494. <name>Simon Griffiths</name>
  3495. <screen_name>simonpgriffiths</screen_name>
  3496. <location/>
  3497. <description>Web developer, sys admin, dba and generally amazing guy!</description>
  3498. <profile_image_url>http://a3.twimg.com/profile_images/729540287/smooch_profile_normal.jpg</profile_image_url>
  3499. <url/>
  3500. <protected>false</protected>
  3501. <followers_count>20</followers_count>
  3502. <profile_background_color>9ae4e8</profile_background_color>
  3503. <profile_text_color>000000</profile_text_color>
  3504. <profile_link_color>0000ff</profile_link_color>
  3505. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3506. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3507. <friends_count>34</friends_count>
  3508. <created_at>Mon Mar 01 10:25:42 +0000 2010</created_at>
  3509. <favourites_count>1</favourites_count>
  3510. <utc_offset/>
  3511. <time_zone/>
  3512. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  3513. <profile_background_tile>false</profile_background_tile>
  3514. <notifications>false</notifications>
  3515. <geo_enabled>false</geo_enabled>
  3516. <verified>false</verified>
  3517. <following>false</following>
  3518. <statuses_count>205</statuses_count>
  3519. <lang>en</lang>
  3520. <contributors_enabled>false</contributors_enabled>
  3521. <status>
  3522. <created_at>Thu May 27 20:55:31 +0000 2010</created_at>
  3523. <id>14858717547</id>
  3524. <text>@iandeveloper yea it will, prolly wont work though ;-) man these queries in the home page are mental, some will deffo struggle with zf db</text>
  3525. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  3526. <truncated>false</truncated>
  3527. <in_reply_to_status_id>14858239458</in_reply_to_status_id>
  3528. <in_reply_to_user_id>143537143</in_reply_to_user_id>
  3529. <favorited>false</favorited>
  3530. <in_reply_to_screen_name>iandeveloper</in_reply_to_screen_name>
  3531. <geo/>
  3532. <coordinates/>
  3533. <place/>
  3534. <contributors/>
  3535. </status>
  3536. </user>
  3537. <user>
  3538. <id>117471817</id>
  3539. <name>Ross Baker</name>
  3540. <screen_name>LoadedSquirrel</screen_name>
  3541. <location>NY, USA</location>
  3542. <description>I'm a regular guy just looking to live a decent life. Be a respectable American. Do good when I can. I'm a gamer and Inspirer.</description>
  3543. <profile_image_url>http://a1.twimg.com/profile_images/893101696/conker_icon_normal.jpg</profile_image_url>
  3544. <url/>
  3545. <protected>false</protected>
  3546. <followers_count>22</followers_count>
  3547. <profile_background_color>FCF8BC</profile_background_color>
  3548. <profile_text_color>051f59</profile_text_color>
  3549. <profile_link_color>ff7105</profile_link_color>
  3550. <profile_sidebar_fill_color>b1ddf2</profile_sidebar_fill_color>
  3551. <profile_sidebar_border_color>D6156C</profile_sidebar_border_color>
  3552. <friends_count>60</friends_count>
  3553. <created_at>Thu Feb 25 17:28:31 +0000 2010</created_at>
  3554. <favourites_count>4</favourites_count>
  3555. <utc_offset>-18000</utc_offset>
  3556. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  3557. <profile_background_image_url>http://a3.twimg.com/profile_background_images/81293115/x1534c55fce63377e3cefc1513204ce6.jpg</profile_background_image_url>
  3558. <profile_background_tile>true</profile_background_tile>
  3559. <notifications>false</notifications>
  3560. <geo_enabled>false</geo_enabled>
  3561. <verified>false</verified>
  3562. <following>false</following>
  3563. <statuses_count>76</statuses_count>
  3564. <lang>en</lang>
  3565. <contributors_enabled>false</contributors_enabled>
  3566. <status>
  3567. <created_at>Thu May 27 19:09:41 +0000 2010</created_at>
  3568. <id>14853624419</id>
  3569. <text>Neave Planetarium ...the sky in your web browser. *jawdropped me* http://su.pr/71bBl9 #astronomy #stars #starmap #coolstuff</text>
  3570. <source>web</source>
  3571. <truncated>false</truncated>
  3572. <in_reply_to_status_id/>
  3573. <in_reply_to_user_id/>
  3574. <favorited>false</favorited>
  3575. <in_reply_to_screen_name/>
  3576. <geo/>
  3577. <coordinates/>
  3578. <place/>
  3579. <contributors/>
  3580. </status>
  3581. </user>
  3582. <user>
  3583. <id>9913542</id>
  3584. <name>Andrei Serdeliuc</name>
  3585. <screen_name>extraordinaire</screen_name>
  3586. <location>Eastbourne</location>
  3587. <description>Code whisperer @ 3ev.com</description>
  3588. <profile_image_url>http://a1.twimg.com/profile_images/406101854/Photo_on_2009-09-09_at_13.15__2_normal.jpg</profile_image_url>
  3589. <url>http://extraordinaire.me</url>
  3590. <protected>false</protected>
  3591. <followers_count>378</followers_count>
  3592. <profile_background_color>2c211b</profile_background_color>
  3593. <profile_text_color>754746</profile_text_color>
  3594. <profile_link_color>259400</profile_link_color>
  3595. <profile_sidebar_fill_color>F3EEEB</profile_sidebar_fill_color>
  3596. <profile_sidebar_border_color>F3EEeb</profile_sidebar_border_color>
  3597. <friends_count>145</friends_count>
  3598. <created_at>Sat Nov 03 12:39:58 +0000 2007</created_at>
  3599. <favourites_count>141</favourites_count>
  3600. <utc_offset>0</utc_offset>
  3601. <time_zone>London</time_zone>
  3602. <profile_background_image_url>http://a1.twimg.com/profile_background_images/2841362/twitter.jpg</profile_background_image_url>
  3603. <profile_background_tile>true</profile_background_tile>
  3604. <notifications/>
  3605. <geo_enabled>false</geo_enabled>
  3606. <verified>false</verified>
  3607. <following/>
  3608. <statuses_count>3342</statuses_count>
  3609. <lang>en</lang>
  3610. <contributors_enabled>false</contributors_enabled>
  3611. <status>
  3612. <created_at>Mon May 24 18:53:25 +0000 2010</created_at>
  3613. <id>14640804551</id>
  3614. <text>Just went to the doctor, ointment is such a silly sounding word isn't it?</text>
  3615. <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
  3616. <truncated>false</truncated>
  3617. <in_reply_to_status_id/>
  3618. <in_reply_to_user_id/>
  3619. <favorited>false</favorited>
  3620. <in_reply_to_screen_name/>
  3621. <geo/>
  3622. <coordinates/>
  3623. <place/>
  3624. <contributors/>
  3625. </status>
  3626. </user>
  3627. <user>
  3628. <id>14996367</id>
  3629. <name>Matthias v/d Heide</name>
  3630. <screen_name>matthiasvdh</screen_name>
  3631. <location>Netherlands</location>
  3632. <description>Student, software developer, techie, Lego fan</description>
  3633. <profile_image_url>http://a1.twimg.com/profile_images/269860838/Untitled_normal.png</profile_image_url>
  3634. <url>http://vanderheide.it</url>
  3635. <protected>false</protected>
  3636. <followers_count>78</followers_count>
  3637. <profile_background_color>0099B9</profile_background_color>
  3638. <profile_text_color>3C3940</profile_text_color>
  3639. <profile_link_color>0099B9</profile_link_color>
  3640. <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
  3641. <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
  3642. <friends_count>153</friends_count>
  3643. <created_at>Tue Jun 03 19:19:52 +0000 2008</created_at>
  3644. <favourites_count>205</favourites_count>
  3645. <utc_offset>3600</utc_offset>
  3646. <time_zone>Amsterdam</time_zone>
  3647. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
  3648. <profile_background_tile>false</profile_background_tile>
  3649. <notifications>false</notifications>
  3650. <geo_enabled>false</geo_enabled>
  3651. <verified>false</verified>
  3652. <following>false</following>
  3653. <statuses_count>755</statuses_count>
  3654. <lang>en</lang>
  3655. <contributors_enabled>false</contributors_enabled>
  3656. <status>
  3657. <created_at>Sun May 30 10:30:33 +0000 2010</created_at>
  3658. <id>15033538555</id>
  3659. <text>@padraicb please add a test for using the 'cursor' parameter on Zend_Service_Twitter::userFriends(). And then make it pass. ;-)</text>
  3660. <source>&lt;a href="https://oauth.filttr.com/" rel="nofollow"&gt;Filttr&lt;/a&gt;</source>
  3661. <truncated>false</truncated>
  3662. <in_reply_to_status_id>15008737288</in_reply_to_status_id>
  3663. <in_reply_to_user_id>9075802</in_reply_to_user_id>
  3664. <favorited>false</favorited>
  3665. <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
  3666. <geo/>
  3667. <coordinates/>
  3668. <place/>
  3669. <contributors/>
  3670. </status>
  3671. </user>
  3672. <user>
  3673. <id>19656811</id>
  3674. <name>SIAAR | CEO | SG</name>
  3675. <screen_name>siaargroup</screen_name>
  3676. <location>India</location>
  3677. <description>Basically I am an IT Professional, I write Blogs based on IT Topics based on my personal Expereinces...</description>
  3678. <profile_image_url>http://a1.twimg.com/profile_images/73755566/aejaz_normal.jpg</profile_image_url>
  3679. <url>http://siaargroup.blogspot.com</url>
  3680. <protected>false</protected>
  3681. <followers_count>5500</followers_count>
  3682. <profile_background_color>000000</profile_background_color>
  3683. <profile_text_color>000000</profile_text_color>
  3684. <profile_link_color>B70001</profile_link_color>
  3685. <profile_sidebar_fill_color>adadad</profile_sidebar_fill_color>
  3686. <profile_sidebar_border_color>B70001</profile_sidebar_border_color>
  3687. <friends_count>5800</friends_count>
  3688. <created_at>Wed Jan 28 15:30:03 +0000 2009</created_at>
  3689. <favourites_count>4</favourites_count>
  3690. <utc_offset>19800</utc_offset>
  3691. <time_zone>Chennai</time_zone>
  3692. <profile_background_image_url>http://a3.twimg.com/profile_background_images/70198559/siaarlogo.jpg</profile_background_image_url>
  3693. <profile_background_tile>false</profile_background_tile>
  3694. <notifications>false</notifications>
  3695. <geo_enabled>false</geo_enabled>
  3696. <verified>false</verified>
  3697. <following>false</following>
  3698. <statuses_count>3635</statuses_count>
  3699. <lang>en</lang>
  3700. <contributors_enabled>false</contributors_enabled>
  3701. <status>
  3702. <created_at>Sun May 30 06:49:04 +0000 2010</created_at>
  3703. <id>15025903255</id>
  3704. <text>Sharing Internet Connection:... http://ff.im/-l9Pyu</text>
  3705. <source>&lt;a href="http://friendfeed.com" rel="nofollow"&gt;FriendFeed&lt;/a&gt;</source>
  3706. <truncated>false</truncated>
  3707. <in_reply_to_status_id/>
  3708. <in_reply_to_user_id/>
  3709. <favorited>false</favorited>
  3710. <in_reply_to_screen_name/>
  3711. <geo/>
  3712. <coordinates/>
  3713. <place/>
  3714. <contributors/>
  3715. </status>
  3716. </user>
  3717. <user>
  3718. <id>15593496</id>
  3719. <name>garrizaldy</name>
  3720. <screen_name>garrizaldy</screen_name>
  3721. <location>Metro Manila, Philippines</location>
  3722. <description>Build something that you want others to build for you.</description>
  3723. <profile_image_url>http://a3.twimg.com/profile_images/934985663/jinnai_normal.jpg</profile_image_url>
  3724. <url>http://flavors.me/garrizaldy</url>
  3725. <protected>true</protected>
  3726. <followers_count>33</followers_count>
  3727. <profile_background_color>1A1B1F</profile_background_color>
  3728. <profile_text_color>666666</profile_text_color>
  3729. <profile_link_color>2FC2EF</profile_link_color>
  3730. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  3731. <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
  3732. <friends_count>39</friends_count>
  3733. <created_at>Fri Jul 25 03:20:58 +0000 2008</created_at>
  3734. <favourites_count>1</favourites_count>
  3735. <utc_offset>28800</utc_offset>
  3736. <time_zone>Hong Kong</time_zone>
  3737. <profile_background_image_url>http://a3.twimg.com/profile_background_images/3095575/back.gif</profile_background_image_url>
  3738. <profile_background_tile>true</profile_background_tile>
  3739. <notifications>false</notifications>
  3740. <geo_enabled>true</geo_enabled>
  3741. <verified>false</verified>
  3742. <following>false</following>
  3743. <statuses_count>501</statuses_count>
  3744. <lang>en</lang>
  3745. <contributors_enabled>false</contributors_enabled>
  3746. </user>
  3747. <user>
  3748. <id>56225738</id>
  3749. <name>francisco echeverri</name>
  3750. <screen_name>ninjalord84</screen_name>
  3751. <location/>
  3752. <description/>
  3753. <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_2_normal.png</profile_image_url>
  3754. <url/>
  3755. <protected>false</protected>
  3756. <followers_count>68</followers_count>
  3757. <profile_background_color>9ae4e8</profile_background_color>
  3758. <profile_text_color>000000</profile_text_color>
  3759. <profile_link_color>0000ff</profile_link_color>
  3760. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3761. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3762. <friends_count>450</friends_count>
  3763. <created_at>Sun Jul 12 23:44:03 +0000 2009</created_at>
  3764. <favourites_count>0</favourites_count>
  3765. <utc_offset/>
  3766. <time_zone/>
  3767. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  3768. <profile_background_tile>false</profile_background_tile>
  3769. <notifications>false</notifications>
  3770. <geo_enabled>false</geo_enabled>
  3771. <verified>false</verified>
  3772. <following>false</following>
  3773. <statuses_count>1</statuses_count>
  3774. <lang>en</lang>
  3775. <contributors_enabled>false</contributors_enabled>
  3776. <status>
  3777. <created_at>Mon Jul 13 02:24:47 +0000 2009</created_at>
  3778. <id>2607573047</id>
  3779. <text>RT FREE Twitter Software that you can use on your website or WordPress Blog! You have to check it out at http://mytweetelite.com</text>
  3780. <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
  3781. <truncated>false</truncated>
  3782. <in_reply_to_status_id/>
  3783. <in_reply_to_user_id/>
  3784. <favorited>false</favorited>
  3785. <in_reply_to_screen_name/>
  3786. <geo/>
  3787. <coordinates/>
  3788. <place/>
  3789. <contributors/>
  3790. </status>
  3791. </user>
  3792. <user>
  3793. <id>117030265</id>
  3794. <name>Troels Knak-Nielsen</name>
  3795. <screen_name>troelskn</screen_name>
  3796. <location>Copenhagen, Denmark</location>
  3797. <description/>
  3798. <profile_image_url>http://a1.twimg.com/profile_images/715373478/troels_normal.jpg</profile_image_url>
  3799. <url/>
  3800. <protected>false</protected>
  3801. <followers_count>78</followers_count>
  3802. <profile_background_color>C0DEED</profile_background_color>
  3803. <profile_text_color>333333</profile_text_color>
  3804. <profile_link_color>0084B4</profile_link_color>
  3805. <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
  3806. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  3807. <friends_count>117</friends_count>
  3808. <created_at>Wed Feb 24 09:30:21 +0000 2010</created_at>
  3809. <favourites_count>1</favourites_count>
  3810. <utc_offset/>
  3811. <time_zone/>
  3812. <profile_background_image_url>http://a3.twimg.com/profile_background_images/78378559/pattern_111.gif</profile_background_image_url>
  3813. <profile_background_tile>true</profile_background_tile>
  3814. <notifications>false</notifications>
  3815. <geo_enabled>false</geo_enabled>
  3816. <verified>false</verified>
  3817. <following>true</following>
  3818. <statuses_count>96</statuses_count>
  3819. <lang>en</lang>
  3820. <contributors_enabled>false</contributors_enabled>
  3821. <status>
  3822. <created_at>Sun May 30 07:11:57 +0000 2010</created_at>
  3823. <id>15026757146</id>
  3824. <text>RT @sweatje: OH Come to the Dork side, we have π
  3825. #fb</text>
  3826. <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
  3827. <truncated>false</truncated>
  3828. <in_reply_to_status_id/>
  3829. <in_reply_to_user_id/>
  3830. <favorited>false</favorited>
  3831. <in_reply_to_screen_name/>
  3832. <retweeted_status>
  3833. <created_at>Sat May 29 22:02:46 +0000 2010</created_at>
  3834. <id>15001137735</id>
  3835. <text>OH Come to the Dork side, we have π
  3836. #fb</text>
  3837. <source>web</source>
  3838. <truncated>false</truncated>
  3839. <in_reply_to_status_id/>
  3840. <in_reply_to_user_id/>
  3841. <favorited>false</favorited>
  3842. <in_reply_to_screen_name/>
  3843. <geo/>
  3844. <coordinates/>
  3845. <place/>
  3846. <contributors/>
  3847. </retweeted_status>
  3848. <geo/>
  3849. <coordinates/>
  3850. <place/>
  3851. <contributors/>
  3852. </status>
  3853. </user>
  3854. <user>
  3855. <id>20759488</id>
  3856. <name>Michael Pieperhoff</name>
  3857. <screen_name>SilverCircle</screen_name>
  3858. <location/>
  3859. <description/>
  3860. <profile_image_url>http://a1.twimg.com/profile_images/78755558/mean_normal.png</profile_image_url>
  3861. <url/>
  3862. <protected>false</protected>
  3863. <followers_count>35</followers_count>
  3864. <profile_background_color>9ae4e8</profile_background_color>
  3865. <profile_text_color>000000</profile_text_color>
  3866. <profile_link_color>0000ff</profile_link_color>
  3867. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3868. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3869. <friends_count>27</friends_count>
  3870. <created_at>Fri Feb 13 09:43:38 +0000 2009</created_at>
  3871. <favourites_count>0</favourites_count>
  3872. <utc_offset/>
  3873. <time_zone/>
  3874. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  3875. <profile_background_tile>false</profile_background_tile>
  3876. <notifications>false</notifications>
  3877. <geo_enabled>false</geo_enabled>
  3878. <verified>false</verified>
  3879. <following>false</following>
  3880. <statuses_count>97</statuses_count>
  3881. <lang>de</lang>
  3882. <contributors_enabled>false</contributors_enabled>
  3883. <status>
  3884. <created_at>Thu Jan 28 08:50:54 +0000 2010</created_at>
  3885. <id>8315960718</id>
  3886. <text>RT @stadt_marketing: #Traunstein # Altstadtfest 17.07.2010</text>
  3887. <source>web</source>
  3888. <truncated>false</truncated>
  3889. <in_reply_to_status_id/>
  3890. <in_reply_to_user_id/>
  3891. <favorited>false</favorited>
  3892. <in_reply_to_screen_name/>
  3893. <retweeted_status>
  3894. <created_at>Wed Jan 27 21:18:43 +0000 2010</created_at>
  3895. <id>8294813086</id>
  3896. <text>#Traunstein # Altstadtfest 17.07.2010</text>
  3897. <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
  3898. <truncated>false</truncated>
  3899. <in_reply_to_status_id/>
  3900. <in_reply_to_user_id/>
  3901. <favorited>false</favorited>
  3902. <in_reply_to_screen_name/>
  3903. <geo/>
  3904. <coordinates/>
  3905. <place/>
  3906. <contributors/>
  3907. </retweeted_status>
  3908. <geo/>
  3909. <coordinates/>
  3910. <place/>
  3911. <contributors/>
  3912. </status>
  3913. </user>
  3914. <user>
  3915. <id>42937812</id>
  3916. <name>Bobby C</name>
  3917. <screen_name>_phineas</screen_name>
  3918. <location>Philadelphia, Pennsylvania</location>
  3919. <description>Web developer, internet marketing, php, zend framework, social media</description>
  3920. <profile_image_url>http://a3.twimg.com/profile_images/862699329/me-cropped_normal.jpg</profile_image_url>
  3921. <url/>
  3922. <protected>true</protected>
  3923. <followers_count>6</followers_count>
  3924. <profile_background_color>9ae4e8</profile_background_color>
  3925. <profile_text_color>000000</profile_text_color>
  3926. <profile_link_color>0000ff</profile_link_color>
  3927. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  3928. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  3929. <friends_count>38</friends_count>
  3930. <created_at>Wed May 27 18:00:58 +0000 2009</created_at>
  3931. <favourites_count>0</favourites_count>
  3932. <utc_offset>-18000</utc_offset>
  3933. <time_zone>Quito</time_zone>
  3934. <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
  3935. <profile_background_tile>false</profile_background_tile>
  3936. <notifications>false</notifications>
  3937. <geo_enabled>false</geo_enabled>
  3938. <verified>false</verified>
  3939. <following>false</following>
  3940. <statuses_count>33</statuses_count>
  3941. <lang>en</lang>
  3942. <contributors_enabled>false</contributors_enabled>
  3943. </user>
  3944. <user>
  3945. <id>14150898</id>
  3946. <name>rvdavid</name>
  3947. <screen_name>rvdavid</screen_name>
  3948. <location>Sydney, Australia</location>
  3949. <description>I develop mission critical web apps and sites. I work directly w/ clients and/or service providers. My Skillset: PHP, MySQL, X/HTML, CSS, JavaScript.</description>
  3950. <profile_image_url>http://a3.twimg.com/profile_images/613678319/rvdavid_normal.jpg</profile_image_url>
  3951. <url>http://www.rvdavid.net/</url>
  3952. <protected>false</protected>
  3953. <followers_count>139</followers_count>
  3954. <profile_background_color>1a1b1f</profile_background_color>
  3955. <profile_text_color>666666</profile_text_color>
  3956. <profile_link_color>2FC2EF</profile_link_color>
  3957. <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
  3958. <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
  3959. <friends_count>30</friends_count>
  3960. <created_at>Sat Mar 15 02:33:07 +0000 2008</created_at>
  3961. <favourites_count>0</favourites_count>
  3962. <utc_offset>36000</utc_offset>
  3963. <time_zone>Sydney</time_zone>
  3964. <profile_background_image_url>http://a3.twimg.com/profile_background_images/78797015/twitterback.jpg</profile_background_image_url>
  3965. <profile_background_tile>false</profile_background_tile>
  3966. <notifications>false</notifications>
  3967. <geo_enabled>false</geo_enabled>
  3968. <verified>false</verified>
  3969. <following>true</following>
  3970. <statuses_count>853</statuses_count>
  3971. <lang>en</lang>
  3972. <contributors_enabled>false</contributors_enabled>
  3973. <status>
  3974. <created_at>Sun May 30 05:11:40 +0000 2010</created_at>
  3975. <id>15021949248</id>
  3976. <text>Found an old external backup drive - what a trip through memory lane this is. It's been quite a ride, the past 10 years of my life has...</text>
  3977. <source>web</source>
  3978. <truncated>false</truncated>
  3979. <in_reply_to_status_id/>
  3980. <in_reply_to_user_id/>
  3981. <favorited>false</favorited>
  3982. <in_reply_to_screen_name/>
  3983. <geo/>
  3984. <coordinates/>
  3985. <place/>
  3986. <contributors/>
  3987. </status>
  3988. </user>
  3989. <user>
  3990. <id>13284092</id>
  3991. <name>Endijs</name>
  3992. <screen_name>Endijs</screen_name>
  3993. <location>Latvia, Jelgava</location>
  3994. <description/>
  3995. <profile_image_url>http://a1.twimg.com/profile_images/884323844/37d8da70-6322-46e5-a862-cf79b84ecd55_normal.jpg</profile_image_url>
  3996. <url>http://endijs.com</url>
  3997. <protected>false</protected>
  3998. <followers_count>433</followers_count>
  3999. <profile_background_color>9ae4e8</profile_background_color>
  4000. <profile_text_color>000000</profile_text_color>
  4001. <profile_link_color>0000ff</profile_link_color>
  4002. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  4003. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  4004. <friends_count>118</friends_count>
  4005. <created_at>Sat Feb 09 15:33:41 +0000 2008</created_at>
  4006. <favourites_count>0</favourites_count>
  4007. <utc_offset>7200</utc_offset>
  4008. <time_zone>Riga</time_zone>
  4009. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  4010. <profile_background_tile>false</profile_background_tile>
  4011. <notifications>false</notifications>
  4012. <geo_enabled>false</geo_enabled>
  4013. <verified>false</verified>
  4014. <following>false</following>
  4015. <statuses_count>2404</statuses_count>
  4016. <lang>en</lang>
  4017. <contributors_enabled>false</contributors_enabled>
  4018. <status>
  4019. <created_at>Sat May 29 19:47:57 +0000 2010</created_at>
  4020. <id>14994850660</id>
  4021. <text>Smieklīgi. Nordea krājkonta procenti Zelta klientam ir lielāki kā Zelta klienta depozītam uz 3mēn. Kur loģika?</text>
  4022. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  4023. <truncated>false</truncated>
  4024. <in_reply_to_status_id/>
  4025. <in_reply_to_user_id/>
  4026. <favorited>false</favorited>
  4027. <in_reply_to_screen_name/>
  4028. <geo/>
  4029. <coordinates/>
  4030. <place/>
  4031. <contributors/>
  4032. </status>
  4033. </user>
  4034. <user>
  4035. <id>13892042</id>
  4036. <name>Alex Barth</name>
  4037. <screen_name>lxbarth</screen_name>
  4038. <location>Washington DC</location>
  4039. <description>Open Data, News Tracking, Drupal. @developmentseed</description>
  4040. <profile_image_url>http://a1.twimg.com/profile_images/52529282/195892215_7b0faba08c_normal.jpg</profile_image_url>
  4041. <url>http://www.developmentseed.org/blog</url>
  4042. <protected>false</protected>
  4043. <followers_count>556</followers_count>
  4044. <profile_background_color>9AE4E8</profile_background_color>
  4045. <profile_text_color>333333</profile_text_color>
  4046. <profile_link_color>0084B4</profile_link_color>
  4047. <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
  4048. <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
  4049. <friends_count>366</friends_count>
  4050. <created_at>Sun Feb 24 05:46:29 +0000 2008</created_at>
  4051. <favourites_count>0</favourites_count>
  4052. <utc_offset>-18000</utc_offset>
  4053. <time_zone>Eastern Time (US &amp; Canada)</time_zone>
  4054. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  4055. <profile_background_tile>false</profile_background_tile>
  4056. <notifications>false</notifications>
  4057. <geo_enabled>true</geo_enabled>
  4058. <verified>false</verified>
  4059. <following>true</following>
  4060. <statuses_count>1709</statuses_count>
  4061. <lang>en</lang>
  4062. <contributors_enabled>false</contributors_enabled>
  4063. <status>
  4064. <created_at>Sat May 29 16:38:22 +0000 2010</created_at>
  4065. <id>14985320905</id>
  4066. <text>CNN maps fallen soldier's home location and where they died http://is.gd/cuwWo (via @elgreg)</text>
  4067. <source>web</source>
  4068. <truncated>false</truncated>
  4069. <in_reply_to_status_id/>
  4070. <in_reply_to_user_id/>
  4071. <favorited>false</favorited>
  4072. <in_reply_to_screen_name/>
  4073. <geo/>
  4074. <coordinates/>
  4075. <place/>
  4076. <contributors/>
  4077. </status>
  4078. </user>
  4079. <user>
  4080. <id>20971380</id>
  4081. <name>Ole Markus With</name>
  4082. <screen_name>olemarkus</screen_name>
  4083. <location>Trondheim, Norway</location>
  4084. <description>Master of Computer Science student with an addiction to PHP, Gentoo Linux and heavy metal</description>
  4085. <profile_image_url>http://a3.twimg.com/profile_images/632663735/twitterProfilePhoto_normal.jpg</profile_image_url>
  4086. <url>http://my.opera.com/olemarkus</url>
  4087. <protected>false</protected>
  4088. <followers_count>75</followers_count>
  4089. <profile_background_color>8B542B</profile_background_color>
  4090. <profile_text_color>333333</profile_text_color>
  4091. <profile_link_color>9D582E</profile_link_color>
  4092. <profile_sidebar_fill_color>EADEAA</profile_sidebar_fill_color>
  4093. <profile_sidebar_border_color>D9B17E</profile_sidebar_border_color>
  4094. <friends_count>42</friends_count>
  4095. <created_at>Mon Feb 16 08:44:13 +0000 2009</created_at>
  4096. <favourites_count>0</favourites_count>
  4097. <utc_offset>3600</utc_offset>
  4098. <time_zone>Stockholm</time_zone>
  4099. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme8/bg.gif</profile_background_image_url>
  4100. <profile_background_tile>false</profile_background_tile>
  4101. <notifications>false</notifications>
  4102. <geo_enabled>false</geo_enabled>
  4103. <verified>false</verified>
  4104. <following>false</following>
  4105. <statuses_count>219</statuses_count>
  4106. <lang>en</lang>
  4107. <contributors_enabled>false</contributors_enabled>
  4108. <status>
  4109. <created_at>Thu May 27 08:41:33 +0000 2010</created_at>
  4110. <id>14822015556</id>
  4111. <text>RT @tychay: I'm not embarassed for my country. #AmericaSpeakingOut http://is.gd/cqq2s</text>
  4112. <source>web</source>
  4113. <truncated>false</truncated>
  4114. <in_reply_to_status_id/>
  4115. <in_reply_to_user_id/>
  4116. <favorited>false</favorited>
  4117. <in_reply_to_screen_name/>
  4118. <retweeted_status>
  4119. <created_at>Wed May 26 20:30:33 +0000 2010</created_at>
  4120. <id>14786532308</id>
  4121. <text>I'm not embarassed for my country. #AmericaSpeakingOut http://is.gd/cqq2s</text>
  4122. <source>&lt;a href="http://www.twitlet.com" rel="nofollow"&gt;Twitlet&lt;/a&gt;</source>
  4123. <truncated>false</truncated>
  4124. <in_reply_to_status_id/>
  4125. <in_reply_to_user_id/>
  4126. <favorited>false</favorited>
  4127. <in_reply_to_screen_name/>
  4128. <geo/>
  4129. <coordinates/>
  4130. <place/>
  4131. <contributors/>
  4132. </retweeted_status>
  4133. <geo/>
  4134. <coordinates/>
  4135. <place/>
  4136. <contributors/>
  4137. </status>
  4138. </user>
  4139. <user>
  4140. <id>14208622</id>
  4141. <name>Ricky Dunlop</name>
  4142. <screen_name>rickydunlop</screen_name>
  4143. <location>Belfast, Northern Ireland</location>
  4144. <description>I'm 26 and lead PHP developer at rehabstudio, Support Chelsea FC and like to DJ now and again. Also a keen runner</description>
  4145. <profile_image_url>http://a3.twimg.com/profile_images/776545465/rd_normal.png</profile_image_url>
  4146. <url>http://www.rickydunlop.co.uk</url>
  4147. <protected>false</protected>
  4148. <followers_count>155</followers_count>
  4149. <profile_background_color>1e1a1f</profile_background_color>
  4150. <profile_text_color>12401e</profile_text_color>
  4151. <profile_link_color>403f3a</profile_link_color>
  4152. <profile_sidebar_fill_color>67f40b</profile_sidebar_fill_color>
  4153. <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
  4154. <friends_count>181</friends_count>
  4155. <created_at>Mon Mar 24 16:44:50 +0000 2008</created_at>
  4156. <favourites_count>0</favourites_count>
  4157. <utc_offset>0</utc_offset>
  4158. <time_zone>London</time_zone>
  4159. <profile_background_image_url>http://a3.twimg.com/profile_background_images/3566155/flower_vector.png</profile_background_image_url>
  4160. <profile_background_tile>true</profile_background_tile>
  4161. <notifications/>
  4162. <geo_enabled>false</geo_enabled>
  4163. <verified>false</verified>
  4164. <following/>
  4165. <statuses_count>922</statuses_count>
  4166. <lang>en</lang>
  4167. <contributors_enabled>false</contributors_enabled>
  4168. <status>
  4169. <created_at>Fri May 28 09:03:35 +0000 2010</created_at>
  4170. <id>14894455033</id>
  4171. <text>@cornercraig There's no cd drive on it, or usb or any connections really</text>
  4172. <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
  4173. <truncated>false</truncated>
  4174. <in_reply_to_status_id>14894408103</in_reply_to_status_id>
  4175. <in_reply_to_user_id>20014857</in_reply_to_user_id>
  4176. <favorited>false</favorited>
  4177. <in_reply_to_screen_name>cornercraig</in_reply_to_screen_name>
  4178. <geo/>
  4179. <coordinates/>
  4180. <place/>
  4181. <contributors/>
  4182. </status>
  4183. </user>
  4184. <user>
  4185. <id>111291721</id>
  4186. <name>Chun</name>
  4187. <screen_name>xunlee</screen_name>
  4188. <location>Europe</location>
  4189. <description>Web developing all day long...</description>
  4190. <profile_image_url>http://a1.twimg.com/profile_images/675227116/andy_guitar_normal.jpg</profile_image_url>
  4191. <url/>
  4192. <protected>false</protected>
  4193. <followers_count>24</followers_count>
  4194. <profile_background_color>352726</profile_background_color>
  4195. <profile_text_color>464d14</profile_text_color>
  4196. <profile_link_color>ad1c43</profile_link_color>
  4197. <profile_sidebar_fill_color>ebebeb</profile_sidebar_fill_color>
  4198. <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
  4199. <friends_count>66</friends_count>
  4200. <created_at>Thu Feb 04 12:21:00 +0000 2010</created_at>
  4201. <favourites_count>0</favourites_count>
  4202. <utc_offset>3600</utc_offset>
  4203. <time_zone>Paris</time_zone>
  4204. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
  4205. <profile_background_tile>false</profile_background_tile>
  4206. <notifications>false</notifications>
  4207. <geo_enabled>false</geo_enabled>
  4208. <verified>false</verified>
  4209. <following>false</following>
  4210. <statuses_count>58</statuses_count>
  4211. <lang>en</lang>
  4212. <contributors_enabled>false</contributors_enabled>
  4213. <status>
  4214. <created_at>Tue May 25 13:15:38 +0000 2010</created_at>
  4215. <id>14691935024</id>
  4216. <text>@francetvdirect formidable merci :-)</text>
  4217. <source>web</source>
  4218. <truncated>false</truncated>
  4219. <in_reply_to_status_id>14690652034</in_reply_to_status_id>
  4220. <in_reply_to_user_id>128183958</in_reply_to_user_id>
  4221. <favorited>false</favorited>
  4222. <in_reply_to_screen_name>francetvdirect</in_reply_to_screen_name>
  4223. <geo/>
  4224. <coordinates/>
  4225. <place/>
  4226. <contributors/>
  4227. </status>
  4228. </user>
  4229. <user>
  4230. <id>110975283</id>
  4231. <name>Antoine Hedgecock</name>
  4232. <screen_name>mac_nibblet</screen_name>
  4233. <location>Sweden, Uppsala</location>
  4234. <description>I have my own view of life, and i love it. Have fun and do what you love, in my case that Web development (PHP,Js,SQL) Gymnastics and windsurfing! </description>
  4235. <profile_image_url>http://a1.twimg.com/profile_images/675292520/19180_252310728549_529293549_3215945_2362829_n_normal.jpg</profile_image_url>
  4236. <url>http://www.pmg.se</url>
  4237. <protected>false</protected>
  4238. <followers_count>14</followers_count>
  4239. <profile_background_color>9ae4e8</profile_background_color>
  4240. <profile_text_color>000000</profile_text_color>
  4241. <profile_link_color>0000ff</profile_link_color>
  4242. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  4243. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  4244. <friends_count>44</friends_count>
  4245. <created_at>Wed Feb 03 11:54:49 +0000 2010</created_at>
  4246. <favourites_count>0</favourites_count>
  4247. <utc_offset>3600</utc_offset>
  4248. <time_zone>Stockholm</time_zone>
  4249. <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
  4250. <profile_background_tile>false</profile_background_tile>
  4251. <notifications>false</notifications>
  4252. <geo_enabled>true</geo_enabled>
  4253. <verified>false</verified>
  4254. <following>true</following>
  4255. <statuses_count>108</statuses_count>
  4256. <lang>en</lang>
  4257. <contributors_enabled>false</contributors_enabled>
  4258. <status>
  4259. <created_at>Sun May 30 13:05:28 +0000 2010</created_at>
  4260. <id>15039826134</id>
  4261. <text>@webide I have a problem with scrolling on mac its freaking slow and i cannot adjust it. works perfectly to scroll on firefox etc..</text>
  4262. <source>web</source>
  4263. <truncated>false</truncated>
  4264. <in_reply_to_status_id/>
  4265. <in_reply_to_user_id>115180931</in_reply_to_user_id>
  4266. <favorited>false</favorited>
  4267. <in_reply_to_screen_name>webide</in_reply_to_screen_name>
  4268. <geo/>
  4269. <coordinates/>
  4270. <place/>
  4271. <contributors/>
  4272. </status>
  4273. </user>
  4274. <user>
  4275. <id>57753613</id>
  4276. <name>Birgir Haraldsson</name>
  4277. <screen_name>bix0r</screen_name>
  4278. <location>Akureyri, Iceland</location>
  4279. <description>#programmer @stefna, #linux admin and user #gentoo</description>
  4280. <profile_image_url>http://a3.twimg.com/profile_images/341312109/biggi_stefna.is_avatar_normal.jpg</profile_image_url>
  4281. <url/>
  4282. <protected>false</protected>
  4283. <followers_count>112</followers_count>
  4284. <profile_background_color>9ae4e8</profile_background_color>
  4285. <profile_text_color>000000</profile_text_color>
  4286. <profile_link_color>0000ff</profile_link_color>
  4287. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  4288. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  4289. <friends_count>150</friends_count>
  4290. <created_at>Fri Jul 17 20:50:50 +0000 2009</created_at>
  4291. <favourites_count>14</favourites_count>
  4292. <utc_offset>0</utc_offset>
  4293. <time_zone>Casablanca</time_zone>
  4294. <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
  4295. <profile_background_tile>false</profile_background_tile>
  4296. <notifications>false</notifications>
  4297. <geo_enabled>false</geo_enabled>
  4298. <verified>false</verified>
  4299. <following>false</following>
  4300. <statuses_count>310</statuses_count>
  4301. <lang>en</lang>
  4302. <contributors_enabled>false</contributors_enabled>
  4303. <status>
  4304. <created_at>Sat May 22 15:41:16 +0000 2010</created_at>
  4305. <id>14500424205</id>
  4306. <text>@harabanar naw vinn ekki hjá Google: ( þarf víst að bíða eins og aðrir.</text>
  4307. <source>&lt;a href="http://mobile.twitter.com" rel="nofollow"&gt;Twitter for Android&lt;/a&gt;</source>
  4308. <truncated>false</truncated>
  4309. <in_reply_to_status_id>14500295004</in_reply_to_status_id>
  4310. <in_reply_to_user_id>17242117</in_reply_to_user_id>
  4311. <favorited>false</favorited>
  4312. <in_reply_to_screen_name>harabanar</in_reply_to_screen_name>
  4313. <geo/>
  4314. <coordinates/>
  4315. <place/>
  4316. <contributors/>
  4317. </status>
  4318. </user>
  4319. <user>
  4320. <id>14337070</id>
  4321. <name>ischenko</name>
  4322. <screen_name>ischenko</screen_name>
  4323. <location>Кривой Рог</location>
  4324. <description>Программист PHP, Zend Framework, JavaScript</description>
  4325. <profile_image_url>http://a3.twimg.com/profile_images/53034241/DSC00314_normal.jpg</profile_image_url>
  4326. <url>http://www.jstoolbox.com</url>
  4327. <protected>false</protected>
  4328. <followers_count>124</followers_count>
  4329. <profile_background_color>9ae4e8</profile_background_color>
  4330. <profile_text_color>000000</profile_text_color>
  4331. <profile_link_color>0000ff</profile_link_color>
  4332. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  4333. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  4334. <friends_count>74</friends_count>
  4335. <created_at>Tue Apr 08 23:08:49 +0000 2008</created_at>
  4336. <favourites_count>6</favourites_count>
  4337. <utc_offset/>
  4338. <time_zone/>
  4339. <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
  4340. <profile_background_tile>false</profile_background_tile>
  4341. <notifications>false</notifications>
  4342. <geo_enabled>false</geo_enabled>
  4343. <verified>false</verified>
  4344. <following>false</following>
  4345. <statuses_count>635</statuses_count>
  4346. <lang>en</lang>
  4347. <contributors_enabled>false</contributors_enabled>
  4348. <status>
  4349. <created_at>Thu May 27 12:32:53 +0000 2010</created_at>
  4350. <id>14831211543</id>
  4351. <text>RT @rutkovsky: ребята, ретвитните, пожалуйста, эту новость (http://ow.ly/1QyId) о том, что в райотделе милиции погиб студент. Нужно гово ...</text>
  4352. <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
  4353. <truncated>true</truncated>
  4354. <in_reply_to_status_id/>
  4355. <in_reply_to_user_id/>
  4356. <favorited>false</favorited>
  4357. <in_reply_to_screen_name/>
  4358. <retweeted_status>
  4359. <created_at>Thu May 27 11:00:34 +0000 2010</created_at>
  4360. <id>14826971388</id>
  4361. <text>ребята, ретвитните, пожалуйста, эту новость (http://ow.ly/1QyId) о том, что в райотделе милиции погиб студент. Нужно говорить об этом.</text>
  4362. <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
  4363. <truncated>false</truncated>
  4364. <in_reply_to_status_id/>
  4365. <in_reply_to_user_id/>
  4366. <favorited>false</favorited>
  4367. <in_reply_to_screen_name/>
  4368. <geo/>
  4369. <coordinates/>
  4370. <place/>
  4371. <contributors/>
  4372. </retweeted_status>
  4373. <geo/>
  4374. <coordinates/>
  4375. <place/>
  4376. <contributors/>
  4377. </status>
  4378. </user>
  4379. <user>
  4380. <id>66941572</id>
  4381. <name>IamUrban</name>
  4382. <screen_name>iamurbannet</screen_name>
  4383. <location>Netherlands / Belgium</location>
  4384. <description>ONLINE SOON....</description>
  4385. <profile_image_url>http://a1.twimg.com/profile_images/569766646/Naamloos2_normal.jpg</profile_image_url>
  4386. <url>http://COMING.SOON</url>
  4387. <protected>false</protected>
  4388. <followers_count>113</followers_count>
  4389. <profile_background_color>ffffff</profile_background_color>
  4390. <profile_text_color>333333</profile_text_color>
  4391. <profile_link_color>0084B4</profile_link_color>
  4392. <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
  4393. <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
  4394. <friends_count>534</friends_count>
  4395. <created_at>Wed Aug 19 07:41:53 +0000 2009</created_at>
  4396. <favourites_count>0</favourites_count>
  4397. <utc_offset>3600</utc_offset>
  4398. <time_zone>Amsterdam</time_zone>
  4399. <profile_background_image_url>http://a3.twimg.com/profile_background_images/59134031/aw2max2.jpg</profile_background_image_url>
  4400. <profile_background_tile>true</profile_background_tile>
  4401. <notifications>false</notifications>
  4402. <geo_enabled>false</geo_enabled>
  4403. <verified>false</verified>
  4404. <following>false</following>
  4405. <statuses_count>8</statuses_count>
  4406. <lang>en</lang>
  4407. <contributors_enabled>false</contributors_enabled>
  4408. <status>
  4409. <created_at>Fri Dec 11 16:32:29 +0000 2009</created_at>
  4410. <id>6571293832</id>
  4411. <text>RT @BWSE_Nazz RT: @LuxuryEnt: Make sure you follow @iamurbannet , more info Soon!!!</text>
  4412. <source>web</source>
  4413. <truncated>false</truncated>
  4414. <in_reply_to_status_id/>
  4415. <in_reply_to_user_id/>
  4416. <favorited>false</favorited>
  4417. <in_reply_to_screen_name/>
  4418. <geo/>
  4419. <coordinates/>
  4420. <place/>
  4421. <contributors/>
  4422. </status>
  4423. </user>
  4424. <user>
  4425. <id>98099737</id>
  4426. <name>technews</name>
  4427. <screen_name>proftechnews</screen_name>
  4428. <location/>
  4429. <description>i'm News and comment from the world technology update dan the future</description>
  4430. <profile_image_url>http://a3.twimg.com/profile_images/583574529/AAAAAAAAA_normal.jpg</profile_image_url>
  4431. <url/>
  4432. <protected>false</protected>
  4433. <followers_count>155</followers_count>
  4434. <profile_background_color>C0DEED</profile_background_color>
  4435. <profile_text_color>333333</profile_text_color>
  4436. <profile_link_color>0084B4</profile_link_color>
  4437. <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
  4438. <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
  4439. <friends_count>872</friends_count>
  4440. <created_at>Sun Dec 20 10:29:22 +0000 2009</created_at>
  4441. <favourites_count>0</favourites_count>
  4442. <utc_offset>-28800</utc_offset>
  4443. <time_zone>Pacific Time (US &amp; Canada)</time_zone>
  4444. <profile_background_image_url>http://a1.twimg.com/profile_background_images/60876532/BBBBB.jpg</profile_background_image_url>
  4445. <profile_background_tile>false</profile_background_tile>
  4446. <notifications>false</notifications>
  4447. <geo_enabled>false</geo_enabled>
  4448. <verified>false</verified>
  4449. <following>false</following>
  4450. <statuses_count>5</statuses_count>
  4451. <lang>en</lang>
  4452. <contributors_enabled>false</contributors_enabled>
  4453. <status>
  4454. <created_at>Mon Jan 04 12:36:42 +0000 2010</created_at>
  4455. <id>7365571409</id>
  4456. <text>Want to make money on twitter and have fun to http://bit.ly/6BiLk3 It Rocks</text>
  4457. <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
  4458. <truncated>false</truncated>
  4459. <in_reply_to_status_id/>
  4460. <in_reply_to_user_id/>
  4461. <favorited>false</favorited>
  4462. <in_reply_to_screen_name/>
  4463. <geo/>
  4464. <coordinates/>
  4465. <place/>
  4466. <contributors/>
  4467. </status>
  4468. </user>
  4469. <user>
  4470. <id>28810674</id>
  4471. <name>insigne Design</name>
  4472. <screen_name>insigneDesign</screen_name>
  4473. <location>Knoxville, TN</location>
  4474. <description>insigne Design is the typeface design studio of Jeremy Dooley. Tweets about the design process, typography, small business and random stuff I find on the web.</description>
  4475. <profile_image_url>http://a1.twimg.com/profile_images/312237246/Squarelogo_normal.gif</profile_image_url>
  4476. <url>http://www.insignedesign.com</url>
  4477. <protected>false</protected>
  4478. <followers_count>2760</followers_count>
  4479. <profile_background_color>ffffff</profile_background_color>
  4480. <profile_text_color>333333</profile_text_color>
  4481. <profile_link_color>72af63</profile_link_color>
  4482. <profile_sidebar_fill_color>fbcb82</profile_sidebar_fill_color>
  4483. <profile_sidebar_border_color>0b88ae</profile_sidebar_border_color>
  4484. <friends_count>3037</friends_count>
  4485. <created_at>Sat Apr 04 15:22:12 +0000 2009</created_at>
  4486. <favourites_count>1</favourites_count>
  4487. <utc_offset>-18000</utc_offset>
  4488. <time_zone>Quito</time_zone>
  4489. <profile_background_image_url>http://a3.twimg.com/profile_background_images/23101921/twitter.gif</profile_background_image_url>
  4490. <profile_background_tile>false</profile_background_tile>
  4491. <notifications>false</notifications>
  4492. <geo_enabled>false</geo_enabled>
  4493. <verified>false</verified>
  4494. <following>false</following>
  4495. <statuses_count>1134</statuses_count>
  4496. <lang>en</lang>
  4497. <contributors_enabled>false</contributors_enabled>
  4498. <status>
  4499. <created_at>Thu May 27 16:32:24 +0000 2010</created_at>
  4500. <id>14845357361</id>
  4501. <text>Carta Marina 33% off for the rest of the week: http://new.myfonts.com/fonts/insigne/carta-marina/</text>
  4502. <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
  4503. <truncated>false</truncated>
  4504. <in_reply_to_status_id/>
  4505. <in_reply_to_user_id/>
  4506. <favorited>false</favorited>
  4507. <in_reply_to_screen_name/>
  4508. <geo/>
  4509. <coordinates/>
  4510. <place/>
  4511. <contributors/>
  4512. </status>
  4513. </user>
  4514. <user>
  4515. <id>112693181</id>
  4516. <name>360Naija Forum</name>
  4517. <screen_name>360Naija_Blog</screen_name>
  4518. <location>Lagos</location>
  4519. <description>360Naija Forum</description>
  4520. <profile_image_url>http://a1.twimg.com/profile_images/687035664/site_logo2_normal.gif</profile_image_url>
  4521. <url>http://www.360naija.com</url>
  4522. <protected>false</protected>
  4523. <followers_count>283</followers_count>
  4524. <profile_background_color>000000</profile_background_color>
  4525. <profile_text_color>d67f04</profile_text_color>
  4526. <profile_link_color>ffb70f</profile_link_color>
  4527. <profile_sidebar_fill_color>383737</profile_sidebar_fill_color>
  4528. <profile_sidebar_border_color>000000</profile_sidebar_border_color>
  4529. <friends_count>2002</friends_count>
  4530. <created_at>Tue Feb 09 11:37:19 +0000 2010</created_at>
  4531. <favourites_count>0</favourites_count>
  4532. <utc_offset>3600</utc_offset>
  4533. <time_zone>Amsterdam</time_zone>
  4534. <profile_background_image_url>http://a1.twimg.com/profile_background_images/74023680/site_logo.gif</profile_background_image_url>
  4535. <profile_background_tile>true</profile_background_tile>
  4536. <notifications>false</notifications>
  4537. <geo_enabled>false</geo_enabled>
  4538. <verified>false</verified>
  4539. <following>false</following>
  4540. <statuses_count>3319</statuses_count>
  4541. <lang>en</lang>
  4542. <contributors_enabled>false</contributors_enabled>
  4543. <status>
  4544. <created_at>Sun May 30 14:03:55 +0000 2010</created_at>
  4545. <id>15043057667</id>
  4546. <text>World Cup 2010 - Report: Security threat serious http://bit.ly/a6YLGq</text>
  4547. <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
  4548. <truncated>false</truncated>
  4549. <in_reply_to_status_id/>
  4550. <in_reply_to_user_id/>
  4551. <favorited>false</favorited>
  4552. <in_reply_to_screen_name/>
  4553. <geo/>
  4554. <coordinates/>
  4555. <place/>
  4556. <contributors/>
  4557. </status>
  4558. </user>
  4559. <user>
  4560. <id>10212462</id>
  4561. <name>medvetalp</name>
  4562. <screen_name>medvetalp</screen_name>
  4563. <location/>
  4564. <description/>
  4565. <profile_image_url>http://s.twimg.com/a/1274739546/images/default_profile_1_normal.png</profile_image_url>
  4566. <url/>
  4567. <protected>false</protected>
  4568. <followers_count>59</followers_count>
  4569. <profile_background_color>9ae4e8</profile_background_color>
  4570. <profile_text_color>000000</profile_text_color>
  4571. <profile_link_color>0000ff</profile_link_color>
  4572. <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
  4573. <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
  4574. <friends_count>124</friends_count>
  4575. <created_at>Tue Nov 13 12:30:12 +0000 2007</created_at>
  4576. <favourites_count>3</favourites_count>
  4577. <utc_offset>3600</utc_offset>
  4578. <time_zone>Budapest</time_zone>
  4579. <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
  4580. <profile_background_tile>false</profile_background_tile>
  4581. <notifications>false</notifications>
  4582. <geo_enabled>false</geo_enabled>
  4583. <verified>false</verified>
  4584. <following>false</following>
  4585. <statuses_count>43</statuses_count>
  4586. <lang>en</lang>
  4587. <contributors_enabled>false</contributors_enabled>
  4588. <status>
  4589. <created_at>Thu May 13 12:50:09 +0000 2010</created_at>
  4590. <id>13912034159</id>
  4591. <text>Vajon van rajta backdoor? :) RT @syntaxerror13: cool RT @atomvillanas: a hacker hazat mindenki vagja itt a karoly koruton ugye? :)...</text>
  4592. <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
  4593. <truncated>false</truncated>
  4594. <in_reply_to_status_id/>
  4595. <in_reply_to_user_id/>
  4596. <favorited>false</favorited>
  4597. <in_reply_to_screen_name/>
  4598. <geo/>
  4599. <coordinates/>
  4600. <place/>
  4601. <contributors/>
  4602. </status>
  4603. </user>
  4604. </users>