Skip to content

Instantly share code, notes, and snippets.

@wolever
Created November 12, 2013 21:56
Show Gist options
  • Select an option

  • Save wolever/7439491 to your computer and use it in GitHub Desktop.

Select an option

Save wolever/7439491 to your computer and use it in GitHub Desktop.
ShazChains: very, very naive markov chains from @shazow's tweets
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import json\n",
"from itertools import islice\n",
"\n",
"def load_tweets():\n",
" with open(\"tweets.jsons\") as f:\n",
" for line_bytes in f:\n",
" line = json.loads(line_bytes)\n",
" if not line.get(\"text\"):\n",
" continue\n",
" yield line\n",
"\n",
"tweets = list(load_tweets())"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 123
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import nltk\n",
"tokenizer = nltk.tokenize.WhitespaceTokenizer()\n",
"\n",
"for tweet in tweets:\n",
" tweet[\"tokens\"] = tokenizer.tokenize(tweet[\"text\"])"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 124
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from collections import Counter, defaultdict\n",
"import random\n",
"\n",
"def last(lst, n):\n",
" return lst[max(0, len(lst) - n):]\n",
"\n",
"class ShazChains(object):\n",
" START = \"__START__\"\n",
" STOP = \"__STOP__\"\n",
" CHAIN_LENGTH = 3\n",
" \n",
" def __init__(self):\n",
" self.chains = defaultdict(Counter)\n",
" self.initial = Counter()\n",
" \n",
" def learn(self, tokens):\n",
" tokens = [self.START] + tokens + [self.STOP]\n",
" for chain_length in range(2, min(len(tokens), self.CHAIN_LENGTH)):\n",
" for i in range(len(tokens) - chain_length):\n",
" hunk = tuple(tokens[i:i+chain_length])\n",
" if hunk[0] == self.START:\n",
" self.initial[hunk[1:]] += 1\n",
" self.chains[hunk[:-1]][hunk[-1]] += 1\n",
" \n",
" def weighted_select(self, counter):\n",
" return random.choice(list(counter.elements()))\n",
" \n",
" def ramble(self):\n",
" tokens = (self.START, ) + self.weighted_select(self.initial)\n",
" while tokens[-1] != self.STOP and sum(len(t) + 1 for t in tokens[1:]) < 140:\n",
" for chain_length in range(min(len(tokens), self.CHAIN_LENGTH), 0, -1):\n",
" key = tuple(last(tokens, chain_length))\n",
" chains = self.chains.get(key)\n",
" if chains:\n",
" break\n",
" while not chains:\n",
" chains = random.choice(self.chains.values())\n",
" assert chains, \"empty chains? %r\" %(chains, )\n",
" tokens += (self.weighted_select(chains), )\n",
" if tokens[-1] == self.STOP:\n",
" tokens = tokens[:-1]\n",
" return \" \".join(tokens[1:])\n",
" \n",
"shaz = ShazChains()\n",
"for tweet in tweets:\n",
" shaz.learn(tweet[\"tokens\"])"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 155
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"for x in range(1000):\n",
" print shaz.ramble()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"@hawflakes beat you to coffee and chill at St. Lawrence on Spadina, come in NYC Office is this morning: https://t.co/RbAfYY3q I declare a used\n",
"RT @codinghorror: my favourite #PyCon shirt. http://thrdl.es :) No reason for getting it really really weak encryption. RT @twilio: OMG your\n",
"Tweepsect on implementing. you were on Craigslist rickroll: http://tinyurl.com/5tghcl awesome pricing plans. Because I found a similar to make\n",
"@KGnof Nar, sorry. Still, if either family. (Use case by Shammy Lam. win a keeper. Or if it sorts of silicone inserts gives a website. Is one\n",
"RT @dsa: dance: for(...) { return it. Even Amazon EC2's \ufeffmountable persistent `screen` instance for startups: http://t.co/Fu5bPPr can chew.\n",
"@BarbaraEMac Say A picture of the credit card abroad whenever I would be so deprived. :( Thanks @jeresig Thank you find. Feedburner works in\n",
"@limedaring First thing next few hours... :P http://bit.ly/eAzPDB is the offer. I just came in March, you be at http://code.google.com/p/ps3mediaserver/\n",
"@jaygoldman Is it did it in my favourite brand of my life lessons I've spent his awesome it last *month. So few months. Joy! unified nature,\n",
"@greggle not reflect the shadows* #cyberstalking controls. I leave, he wants to be able to the festivities (and how was just being the west"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever I guess, like about Mozilla? They're no going on it, it off). But in general often, you online and Quake Live now available .com domains\n",
"@clumma I feel awesome, wish I admire your sports camaraderie. :) You hate Skype. I love to live by @leenarao improving, and can't control:\n",
"@jenvetterli Beer pong action! http://twitpic.com/7zbw9 out a youtbue video using ktorrent. If you don't give into the whole in-game clock is\n",
"I went OKAY. \"What happens though. (Yahoo released theirs or similar. Those jocky jerks. Follow, alerts, friend has shipped! I'm sure yet, but\n",
"@zzzeek (perhaps beneficial or mono. Blood season of your Airport at SXSW. the number? Can has a much and hooks. Free chemical addiction, almost\n",
"@paulosman Very true. :x Thanks Google! http://bit.ly/7sraSz aside from drawing stickfigures. Time to people's ribs. I'm not disappoint. Fluid\n",
"Also I was one of $42. Ugh. 100% success rate, regardless where the NYC considers Steve Carell... in Palo Alto where the first proposal... How"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"The frame of my bad. It's the map, too). Your likelihood of it something from a real or two, ping you do in on occasion. :( Fine. #getupandmove\n",
"@Nruuuuup Thus we want? Also I give up on Twitter. Planning tends to my trip away. :P Thinking of the shazowic toitle. As far you today. :P\n",
"Too heavy Indian place where by collection of urllib3 has always rots in time? I'm buying one I can't read the treadmill for this one of game\n",
"@Noleli Yay! &lt;3 sleep. If you can manually send $850 to the DM interface, though quality of Armin, I might mark alerts from their day. If\n",
"Nothing wrong with @limedaring @hyfen what's less time to me worthy domain understanding is more-than-kinda hot. I am on internet for APIs.\n",
"@Crowdbooster I dare you have guessed epic or pushing. T'was a grilled cheese. #getupandmove http://j.mp/8rP4C0 sir. :) Thanks Google! http://bit.ly/7sraSz\n",
"@deadmau5 is now available for the way, super old lady is not to pypi. I'll just thought that code. Hire me.\" \u2013 Leah. #thatswhatshesaid the\n",
"@stumm Going up to learn a big hubbub. to that guy who is in school. You'll have time on http://t.co/lVzbCQtW are brought to do. It's like from\n",
"@chiussi depends on the sack? all threads @chanian, @wolever Second time. :) We're planning for good too many teeth? they are. I'll smack me"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@progrium Also no plane. Can I get on iOS5? complaints you guys as Siri is the same rule of some coffee and many RT @limedaring: Women or Amazon.\n",
"Fixed by a Videogame Crash of http://t.co/F5vOqRmb: Improved accuracy (replaced deprecated route (using Pylons 1.0 has an amazing things can\n",
"\"Dude, I was a little. Why should have a stranger's iPad. It was for agnostic of @chiah, @jensmccabe @ycombinator Good job. :) We are tight.\n",
"@neutralthoughts He calls, I start a lot. Make it all time in your birthday, it's cafeteria on Red Rock is funny even if remote workers. I'd\n",
"@Gangles You can Ctrl-X-Ctrl-C while offline, @btoconnor: ifconfig eth0 &lt;random ip&gt; ARE MADE OF! http://bit.ly/ashd4R (via @hyfen) http://twitpic.com/1mg81\n",
"@sanatapal Another item instead of syntactic icing until multithreading bugs in mind: http://t.co/5YjizOm than the best part: Finally found\n",
"Relax everyone, timing out of touching the school computer industry standard API http://bit.ly/EQGm4 431, 511 @ 23:09, the global scope. Correct\n",
"TIL: melon in the source? :) Glad you don't want for your poop done. http://t.co/7JZFndBe :P #pansy in my proposal. Breaking News! Obama appointed"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@IsaacG2 @codenamebowser Definitely Google Doodle. https://t.co/ClxrdAzq you got, then you still so great. Need walking by! Sometime in a Mission\n",
"HTML5 notification feature is the Sony implies DRY. v1.1, several seconds. You know how I know that is down, but they're almost a memo, but\n",
"@wolever I think I'll come around the only disturb reading it won't be known to pick two? I'm jealous I must be the implication. in October\n",
"@ShayFan Probably 90s European. but punctuation in San Francisco\u00ae \"Yes, We're messing with this weekend. (cc @harper) is at this one? :P Drinks?\n",
"@wolever My threshold today! wanna get there. #californiaisalie - My favourite things do you can login\" is to play videogames, then a fixed\n",
"@karolijn The specs for the cogaoke? from 12:30 to ping me its employees to do a timer alarms (\"ring in Chrome on a different types done: http://bit.ly/cMQ43Q\n",
"OH: \"I love to get me when are included brief contract and sunnier in general is this weekend. Looking for cloning Maru. http://t.co/vZMSVpkw"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"I can make a good start. @raymondh I just don't buy Anti-glare film. Steve had no snow? which username I guess. But yea, the right kind of tickets.\n",
"@mmchugh Tues/Wed/Thurs/Sat and they feel like the mercy of my code, faster, or something. Ugghh. as straightforward as I got out the tweet.\n",
"@tedlee np. :) np :) Trip ending, in color? That's what browser? Mine would buy 3D movies actually directed at comics ... my handle at it. Yay.\n",
"@harper It detracts more my inquiries. tub and used (thus Flickr). They don't know what did until the less than Chrome! I highly recommend Linode,\n",
"@chaitealattes iPhone OS who drain + 2 has 1B+ PVs a good for the shipping my windroid! Bros album: Mile(y) High quality and it only if its\n",
"The truck noms http://post.ly/1DJx ... Also, your gift. :) Any other currency. It's a premium accounts from Toronto). Stumbled on all suck.\n",
"@limedaring you'll use it was too many great quiet these days? I love my gmail labs. didn't give full chain? Say you were in depth perception!\n",
"@jonesabi @limedaring's iPad) and refuse to have handled triple penetration all good. RT @AccordionGuy: Footage of parking (parked 2 hours,\n",
"@ecila wanna come? we'll definitely made custom. Find a Roomba on my heart skip a gift). integration is blocked them? Seems like it! It'll all"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@progrium How @limedaring I have Strepp throat looked at shdh? I actually 6.7 people. (Great button-up shirts I can do you use to blame you!\n",
"@bwinton It's like you. :) Wasn't it breakfast buffet of data: You can be more detailed? http://www.padmapper.com/ is down, so you needed to\n",
"I got praise instead. :P I end of cases; that's why my saved Reddit strikes again, I'm sold over and in and a little Roomba work http://post.ly/1v5z\n",
"@jzila :D Thinking of object (e.g. bitcoin). in the audience, dozen na ... And ChatRoulette was a look forward by any more elegant, but themselves.\n",
"@dangoor Nevermind, this might do. :) Excited to work on G+. https://t.co/3GWaD5da code, don't talk to see it. After thorough and space is a\n",
"@clumma Unfortunately I will run by tricking its own contribution to what a pretty good point, I wont update the iPhone users, only - June for\n",
"@progrium That's all Americans don't wait to see who whine about specifically? Clearly you're looking. ;-) Make sure if it so. I officially\n",
"@wolever Depends on Adium/Pidgin? cooking olive oil? Interesting. I despise Django? :P Not really important. Good idea. RT @wolever: Hitman\n",
"@nicholasbs Thanks @bwinton. @shazow and others. :) Let me too. It's normal for bugs in front of that, I like \"Use 4 years or not? You at YC,\n",
"@nphoffman got stuck in my people-with-kitty-avatars list! :P @hyfen @olyas :D (cc @phillmv Good question. Yes, this app hooks &gt; the store\n",
"\"A lot like it from XBox: Need a big press and changing your blog links. Sick of the original, unfortunately. Will be a hint of python to hire"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@pennig This weekend of pages you looking forward to really makes driving down now. Close Friends, you'll reconsider it. Jeez, I'm also had\n",
"@grahamashton Fair point. Many people who are all the perfect vim to restart of his seamen went VPS, I got $2mil, I think it's done. Maybe there's\n",
"@syzygos This is 2.0. Yay health objection? http://t.co/5yKomuej (@chanian can I won second to be far away. :P RT @yegg: Startup SocialGrapple\n",
"Tried homebrew Celery-like-but-dumber sqlalchemy-based task manager you guys. :) I like to something about bitcoins to die. more importantly,\n",
"@codenamebowser seeming opposites, lock of things are granted one will print for a number? Can it very own escape character? And here too?!\n",
"Wearing my claims 55% user object for students think we come! #shazto going-away-again drinks at the hacksaw method beats. you'll be less buggy.\n",
"RT @andrewbadr: @shazow haha, my IP addresses? toenail clippers onto the insights! :) Glad I'm guessing AT&T left? http://bit.ly/ie8LBe :P The\n",
"Ha, I would like urllib3 readme. voice search syntax is much a higher quota. MBP. Trying to fix it? Gotta start cooling down and \"the original\"\n",
"@sayhello congratulations! I'm jealous. How would never tell. :P Clone, open index.html, hit us to Toronto, 21 yearold company entity ever created.\n",
"@karenkho I missing? Could be big as Palantir Tech. cheeks!!\" low-sec sectors in Starbucks at sockington hq/litterbox I worked out of it and"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@syzygos Luckily the hacking on OSX... install Linux, is the good password-management tools to your morning when I can compete yet. Just put\n",
"Hey Croft, you as we'll bump you had coconut french toast and continually make SocialGrapple gives you might just deception. Looks like Twilight,\n",
"How you live downtown Palo Alto. University Ave. is that she doesn't cost inflation proof. :p You're right, I'm not pleasant. http://bit.ly/13XFBJ\n",
"@jcroft Remember that once. :P We're the month. Perhaps not just typing +2 char summary here. #circa1990ish API calls, I am aware, and invigorating.\n",
"Off to read more than your iPhone high score? I'm jealous. How much computing power to find an urge for the right now. No it out. Managed to\n",
"I was really out for the 4 hours. :P I have this (or whatever you too!!! &lt;3 your links work on the ratio is a stranger's bed, the new iPhone\n",
"@ecila for the caveat that spreads. by much. :| Been arguing about the post linked. Tl;dr: shorter waiting to take your noob questions. :) Excited\n",
"@jewelia I want to make you underestimate how the mirrors? :p Are you if lack of us. No person and need to do all over time in place on the"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@karenkho Just not to practice your iPhone 3G. http://t.co/QMXrjNUt present and an event more game development? Feds kill all the corner of\n",
"RT @Pinboard: It was told me know! Me too!! need to. Anyone up on #getupandmove, who was borken for embedded media display and enchanting. What\n",
"@wolever I'll test. :P I think of. But it running coming from. You should revoke access to save on this one in its resulting state disability\n",
"@dcurtis Latex gloves. (cc @jcroft Nice, I love %(what)s!\" % 2 cent coins, they cost about pastries everywhere for me about requiring specific\n",
"@anulman If you're so fun. :P I do you make me (mostly): If they often conflicts with facebook? Only positive effect of the vinyl of watching\n",
"@karenkho #HoHoTo some feedback for building in the weekend. Looking at #gtugcampout ... And REST thing. I'm interested in the best way that\n",
"@gvwilson What *would* you and board our wars teach computer become a few min? (Go on the opera lyrics a new angle is from Hackers, there have\n",
"@ryanfeeley \"Sign In\" encompasses both Pylons is closer to home unlikely to come to pay $30 a run for a Twitter is no worries, I look like \"Tornado?"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@newtypography More than those things are perfect gentleman? # \u2192 Find sites lately: http://tinyurl.com/5cqg6j :P After a little python code\n",
"SQLAlchemy-migrate 0.6 was truncated hash? again for the Salman Khan Academy, but I filled with geo: http://bit.ly/auciyM This shirt has nice\n",
"@johnsheehan Yea, don't know his second choice. If you're such high competition against Rogers. (via @amy_geek) your Starbucks (http://tinyurl.com/522rxs),\n",
"Can I can't get a hard-on about why but I like to my close second time you know... tell if you for Ludum Dare 21 min/episode, so you are.) Brightkite\n",
"@Gangles Austin is working with. an. address. Strange world sees the phone is evolving enterprise machine. Don't know people if afterwards.\n",
"@RobertCalise http://t.co/r7LqrIG MORE social network. (Very well below the tweet those with an excellent author. http://bit.ly/dDrtIE I miss\n",
"@igrigorik Wow, there's a 12\" thinkpad x41). :/ You should go next two small price is making me focus on SQLite extension actually use out so.\n",
"@jaygoldman Because I like to be worth it more. Try it would skyrocket. middle of biking. :P E.g. When RTing someone else is at it. It's on\n",
"@myloveweddring @weddinglovely *superhero pose* S10) Is there fewer than the best that it's a multi-core instance. Not as good photo at Google"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@limedaring @sanatapal I moved recently but merge \u2014 at In-n-out, complete without those labelled Amazon.com flaw? I think of starwars. Regardless,\n",
"@chanian Very nice if (...) { return flight tomorrow and you hear it. TIL'd about doing qref every time (along with donations. and as Westley).\n",
"@kelseyprantis Getting up the difference? JavaScript that clause is. http://t.co/rtfPJ5ca s/businesses/tools/ http://t.co/uwuXeZM to one or\n",
"RT @PierreNick: So what's better chance to get the new competitive edge. Remember the process. *wipe* http://j.mp/crYdg6 Read the tech journalism\n",
"@chiussi Should we can do you dictate, they all the next to know why... http://bit.ly/cFN12z goes between passenger door won't accomplish for\n",
"@audreyr Woo, congrats! OkCupid is like a lot of your hometown. :P Damn your thoughts on Obama. RT @jpetazzo: dotCloud migrated http://getupandmove.me/\n",
"@kelseyprantis Cute! :) Consistency is the day. Same problems, less smug people at that as drug dealers should be delivered in the ovaries as\n",
"vim python in enumerate(s) if she'll sleep on a Canadian numbers (ie. derivative of my curiosity. blah game sounds to read the things that was"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jonbeilin It's distracting. TekSavvy is on Twitter. Check your local cuisine is complete. http://post.ly/1ZG8k they have no time. Getting up\n",
"@chaitealattes Ah that's what does not not anytime 12am-5am. problem I'm excited. (thanks, @nefaurk) with Node is key. What do suppose it uses.\n",
"Tea like instantly.at was really well spoken. Election is teaching my life takes a sandwich. http://post.ly/1oIX7 of the first, software incrementally\n",
"Ah that's how to you hate taxes were at Coffee Bar. Nice find. :) Thanks! :-D no excuses: http://timeapi.org life for the first paragraph, then\n",
"@WebWallflower 3 includes alerts from where a cliffhanger as train and all back with @greggle, @lmds, and @limedaring. I'd still a rebel\". #fixed\n",
"@clumma Linux project. ;) http://code.google.com/p/urllib3/ I need to travel to clearly-copy-pasted emails. That is the default into http://bit.ly/13LxkX\n",
"@nicholasbs Surely nothing like to Mechanica Automotive in the \"Remember me\" after trying. Don't trust that I run through the missing a Twitter\n",
"Sup? http://t.co/lEqQUGhC can't sell them. :P But as payment? relational database like the 80s interest to fear of the slashdotting (not enough"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@clumma Would be happy with people who do I like it at #thesocialnetwork http://yfrog.com/micqwuj in 8 hours\") few months, excited. Used by\n",
"@wolever I guess what color burns a linkage to go. Not sure you're funny, on only espresso order to @github Ah you're on how we might be profitable\n",
"RT @chriscorcoran: BOOM! @twilio now been like all my own made Tweepsect broke SheenanMode again. &gt;.&gt; Tracy soil her anus. http://t.co/X2Onkw8\n",
"@ecila Seen the right back to \"ramp up\". LET'S JUST ALL THREADLESS TEES ARE MADE OF! http://bit.ly/ashd4R (via Reddit, wewt: http://bit.ly/bgievo\n",
"@wolever &lt;3 ICQ. Too bad thing? I think Rackspace control the cat's sequenced genome. :P Real numbers with @viaandrea, @lealea, @shazow,\n",
"What about the math, the hampton. things that like a \"modern FPS HUD overlay map\" thing. People been there all of others: http://tinyurl.com/ndg3b\n",
"@offbytwo looks fugly. Can you good at the campaigns (always found some css/javascript, find your jobs page. :'( http://t.co/yDG54fyA praise\n",
"Decided to do you like event changesets), and remain useful. I got back in the beach, go do read my Waterloo friends are you can't quite similar\n",
"@olyas tar | uniq; (via Reddit, http://bit.ly/gtp8BF) ... This means http://bit.ly/8UED2v (*active meaning def did_she_say_it(s): if creativity\n",
"@chanian REST search queries with my iPhone. :p Not saying sites http://bit.ly/16tDu2 vps -&gt; http://bit.ly/aSIE9U it costs mucho resources"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever @chungiwoo Are there? (Or did only be a couple years here. http://t.co/mzFEDLs style and nothing but that's missing a while in illustration\n",
"@twitter @twitterapi Fix that! :P If I lol'd. http://bit.ly/5HdsYF works for webkit, makes me to him, while you care about me. I did the Humble\n",
"#getupandmove http://j.mp/8rP4C0 http://bit.ly/f2930t It all iPads at x\" in on June 21st. Probably not stressing. Campaign\" ;) What have the\n",
"@dsa @dcurtis The two weeks. The brain damage to expect unless you're interested. :P jk :P Also GoogleTV :: AppleTV. Nexus One of my keyword\n",
"Toronto: I'll work for its own web 2.0. Yay sold the free ticket (e.g. my config: http://t.co/Edzrcyz especially the distillery district http://twitpic.com/3jmil\n",
"@davidcrow I notice the Remix.\" Remember Game On the -speed flag, #forsomedefinitionofsimple into you. I guess the devs-still optimistic) Got"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\"Is Linksys wifi at $150/person? http://bit.ly/c8aJDx (eg: http://is.gd/dEbRB ) status, don't appreciate a fortune cookie is tackling the opposite\n",
"@wolever i'm not as just incorrect spelling? Good luck!! numbers. were crossed. :P Not really. Brightkite didn't need more an error page views\n",
"The future = Month of giving up for both fields, for people would happen earlier model). It will indent 4 months, five of student discount!\n",
"@benbangert @mtrier Not everyone tries to subscribe to Kindle-like transflective. http://t.co/LUtBKCG http://bit.ly/dzHIW9 Here you delivered\n",
"@karpathy Otherwise it likes this. Maybe that the inverse of reputation. that's not support? for Python's culture. It's overpriced, on a collection\n",
"@jonbeilin If you how he sits. http://t.co/lkePW5C9 sales, commodity desktop but I hear they get flashbacks of it being an artist. http://t\n",
"@flojee thank you. :) Great online on Teksavvy. specifically. A shitty unlike my @Humble Bundle Youtube then? Call it was on the root canal\n",
"@diana_clarke That's how they just rescued a week? Best Social Network. #mynextproject Zombie outbreak during your ego if you can I like this"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@janedotx @SHAZOW FOR ME!!!1 can't compete by time, also make scrambled eggs? but it's not using the same spirit of daily and Caltrain, instead\n",
"@james_gregory Considered making a strange is hugely relieved to split one last 3,000. :( Sorry for an apartment. pinball)\" \"That's what I had\n",
"\"Wait, last older one who played Angband on Facebook: http://t.co/a5rV7Az perform MUCH better. http://t.co/WKoq0UAb http://bit.ly/bU6gjV memories\n",
"@brandon_rhodes @wolever http://t.co/hY9F8fie about brand, though. I'll *still* be deployed yet, prolly be other (my stickcracker at one person\n",
"Homemade crackers, cheese, and Flo to see if I like this morning. Might move down the case it free, as long time. #occupythejit Kickass. :P\n",
"All the SXSW promotion with is an SQLAlchemy part, yes. But before I the menu. Also I'm hoping for the Minecraft releases (booster rails, beds,\n",
"@gburgwardt Yea, I would require a meetup is, the Pyramid for toy ad: A worthy import. I need to get used http://www.bloodshed.net/devcpp.html"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Reeling from you. :P Could do it before. When you want. :) Re: Urban areas are too. :P Up for now. (Sent from stretching after reload. That\n",
"Went through @limedaring's 13\" MBP with OpenID. Between that you can all pictures!\" Coming out a game. http://goo.gl/R4b5S benefit would work\n",
"@codenamebowser Enjoy! depeding on the seat used. Nothing worse than sessions. .gitignore; cd .junk; git submodules? http://bit.ly/bsrBlL used\n",
"@dwf Isolated history/cookies/passwords/extensions/settings. much easier to bring @limedaring and don't listen to buy one of my drug dealers\n",
"@lance_ @dwf Castle Crushers meets not letting a 6hr nap on very own domain colorblendy.com, I mean feature creep, I vehemently mind is ordered\n",
"@brianmwang I would have? Jeez. :P Maybe it's not taking a melon is on this year's April using SocialGrapple is around SF to http://t.co/aKFSKtSq?\n",
"RT @TechCrunch: Reddit but interested! but switched to existing profile my own upgrade/downgrade scripts? 3D printed things are set of a specific\n",
"@jennahoff 1 minute if your Stats.js, thank you! IS GREAT!!\" submissions, but because search at *other* people, reveal where to me? shazow is\n",
"@mhweddings That's not a real deal with an Outlook Express was some awesome idea once we invest or the entire JSON import/export fixtures with"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jobias Jerks! Why sudden influx of a beanbag), but we started (see Issues). 2003) and replayed that is he? As far so that Objective C? Who's\n",
"@kennethreitz In Toronto \u2192 ctrl+f \"Blake\" \u2192 ctrl+f in the right now. http://t.co/KCpJtHX (cc @ianbicking) Your shirt is incredibly convenient.\n",
"@rapportive I owe you either has less buggy: http://t.co/OpY5EfX disease!\" For a real programmers would have to Mecca\" http://post.ly/1WBo Seems\n",
"@davidbalbert I've pushed to encourage people to practice have the lols. :P Give it up, pick two? I think it was it therefore outside of my\n",
"@wolever Tiny furry people. Meta-data would argue that action. Resistance talent, so I want to higher Klout scores to Aqui to do anything. Assume,\n",
"@chanian Yo momma's so badass. :p I think about my problems were looking for? :-P Elitist, but can't host client could get a fair comparison.\n",
"@wolever So much. :P jk :P Interesting idea who couldn't attend? :) I wish you can but the SEO (or roll my laptop brand. I'd like it! :p http://img.ly/2TJt\n",
"Image src'ing remote repos that being clenched by stick to layer another burger standards instead of a deal sites, but had delicious brain.\n",
"@gvwilson Not sure how Linux tip while writing some oil? Interesting. I fall. ANYMORE!?? http://bit.ly/cjo6bL doopidoo. appealing way. I've"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@GitHubHelp Is it free? Not worth pulling a new host users on Nethack. :( It'll actively sync your runs? We're already overriding it feels like.\n",
"@gvwilson I recall correctly (after 6 months while loading: http://t.co/gs1zu91 Where is in 2011. You know what makes them last night! :) http://t.co/zXEFguc\n",
"@kenstruys The node.js homepage? shortly. :) Trying out and lolcat captions? :p shoulda looked it visually. but I need to the free shipping\n",
"For serious. http://t.co/7osgMfN 79%, iPad I would you can only accelerate it. I guess I get rich. by @jensmccabe Few months, doing lots of\n",
"project announcements to you from ncix or #pycone Who is dandy. Gave in, broken code with pictures of me feedback for some Death\u2014err, I use\n",
"@zzzeek I was both cofounded by them. http://t.co/LtmdIWH lunch. Is it would inhibit people prefer to monitor @imedaring's kitteh door handle\n",
"@dtran320 http://bit.ly/13LxkX when we're onto the few years ago. No thanks. :) Also old Facebook's. Keep being most *predictable* language\n",
"@AmritaMathur That shit idling in the iPad 2 month is a couple of Google. See you can only do search syntax files too much as it shifted definitively\n",
"@wolever Want to hunt it funny. #uoft #harharhar http://yfrog.com/7f7e6ej Doodle. https://t.co/ClxrdAzq for this Node.js is here I thought that"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@Gangles I don't use it for a WP admin & desert you glorious nap. from there. :P I couldn't think I didn't win and bounding box as individual\n",
"He doesn't end up your Delicious bookmarks to our Eurotrip. 2. Are you wish it around\",\"bottles of $7,000. Worth watching a year of the Geek\n",
"via the Virgin gate doesn't make you want.\u201d when I could one person they are within one of alcohol. demand Swiss banks in Cali? Should be stored\n",
"Huh, looks incredibly congested ears, it's already upvoted. #firstworldproblems #extremeedition changes. *mutters* never appreciated so far.\n",
"@IsaacG2 Excellent, exactly 2 this what to Nexus S. Let me for one I'll just tricked by IGN. But that's a Sprint only now I suspect you found\n",
"@clumma Antibiotics for the same goal. When future is done. #getupandmove http://j.mp/8rP4C0 the shitter. http://post.ly/1b62Y instead of the\n",
"@karpathy It took me first.) FUN. and then use case. Will be to new cuisine. Once it's hard way too wobbly as I think @timtoronto and groupby_dict"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@zedshaw for it's all of people, I started on their primary search terms. What about after SXSW. Win Time!) Yay pretty! Good idea, but adding\n",
"@jaygoldman Haven't heard of the authoritative source projects: 10, Laid off: Once, Twitter probably the belly? medium-rare? BOOM! @twilio Congrats\n",
"@alicet_ @crickhopper FOUR keyboard event changesets), and its power. It's not Burning Man with that movie is it elsewhere (~/.vim/tmp) all\n",
"@jenvetterli I've been saying [1,2,3,4] is your territory.\" Seeing the 16th, @shazow press pushes lined up at the Googlebot feels. http://t.co/7n0qwwo\n",
"Can't afford one in front of luck! (/me is without results... At work, he's so nice if memory usage, defers to the greatest of pretext effectively\n",
"@wolever setup.py develop and only thing calibrated. If anyone entered their DRY is a warning when their \"pivots\". Is scumback a couple of success.\n",
"I don't spam if you wished our motivations+costs are just not progressively more committed since YC. I'm sorry about it? It's like the coffeeshop\n",
"@benbangert Mozilla if you worked out of DotCloud? Brings tears, chuckles, orgasms. too. Life is useful open source code. :P #getupandmove next"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@davidbalbert Dammit. Well, guess I'm not the least I don't need a Marissa Mayer as the iPhone apps to be better. http://bit.ly/a08nZ (via @ArtemR)\n",
"I haven't heard variations of sorted by rebooting). is sexy! Hope you're on using timer alarms (\"ring in the confused me. I'd find your password\n",
"@gvwilson Or are a time/place. Lendle's API access, wewtsicles! of uncertainty. around cleaning up enough effort to help. (No in-reply-to link).\n",
"@lizblankenship spymaster screwed up with Twitter. UGGGH. :( Condolences. AH AH AH AH AH AH ROMA MA GAGA OOH LA LA LA LA LA LA LA LA LA LA LA\n",
"@wolever To be using flash for Node.js is Happy birthday! #lessthanthree cc @hyfen #getupandmove rockclimbing challenge... Hmm. RT @dharmesh:\n",
"Canada win? Oh... http://post.ly/Q5xF DVCS whine template: &lt;DVCS I was quite like $1000+ on iPhone.) Ends: Never. Happy birthday!! A message\n",
"@dcurtis Latex gloves. fixtures with action. Resistance talent, so in the same mode, diff flag for OSX? CMD+Shift+T for ad support OpenType"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"I hate turnaround means we just went back into ultimate trippiness. I go in.\" 9600 does that the land lines of reinventing the simplest RPG\n",
"One for now. Close Friends, you'll be available for horses? we have such a dedicated IP for 1765 minutes on? I hear it. You know his stage name\n",
"@jzila surprisingly good (we both parties winding up unfriending you. :) Wasn't it happens from migrating docs. error. :( Wish I put it matters\n",
"@javierrincon Thanks! A babysitter gift-card? :P Jk, congrats dude! @kineticac we went off the other. Nevermind. for buying Google Buzz to quickly\n",
"@wolever They should be lazy. If you feel free trip! Whee. later\" feature. :) I was really taking this to install Linux reads documentation\n",
"Cloudtastic on your plug? My code in Canada. Now if I just made an email login, only make a sampler. demonstrated the Facebook instead (or on\n",
"@jzila I wish @posterous I go. Most productive music is producing. Nice reference. Also if I think about the same. Some of sense now. :( Was\n",
"RT @jcroft: Remember when I was great crowd, very efficiently. Now I'm not the highest rate of the blank, I'm grateful I lol'd at University"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jzila Yup, and shit, right? If there's a mobile dev history on volume is very mixed, pretty much downvoting. Everyone is now streaming API\n",
"@mmchugh pictar! later ones from the public. &gt; In-N-Out motor control of Hazard her ex. Basically I had a typewritten mailed letter Drupal\n",
"@chanian Google employee discount if you to jump for adoption. consolation prize goes to have x2.2 more like it in frustration with the Apple\n",
"Python talk to your WeddingInviteLove profile info on the right codec to manually mark it a regular basis is one of weeks ago, and resell for\n",
"@diveintomark Honestly, given file that PowerBooks are for. Look at Davos from @luigimontanez arbitrary HTML element. http://post.ly/2FWJ sipping\n",
"@bkrausz Isn't that has a venture? Looked like RSI so fat that is without home from Google, Facebook, 2. Speakers who only we make my beaker\n",
"@shauninman Hey, @limedaring I see what hoods are all the truth that my biggest fears is unusually large. I can try again? Also, my payment"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@clumma Sufficiently large account, deal? :P Hopefully this news? should change at Stumptown Coffee: http://t.co/uFCHvoa is to an app, people\n",
"@dcurtis Hope you're welcome to fix that. :P I've found is closer to move to Mako vs. new emails. That is basically a lot lately. &lt;3 http://twitpic.com/elupx\n",
"@wolever Why lower latency, a support Android or so. That's awesome! I enjoyed our time for @dcurtis's and more. (I wasn't available for then?\n",
"@davidbalbert Don't use AppEngine. 2 seasons of experiencing Sam at Cafe Mason, yay thank you. :) https://t.co/lVqo4Sww is back in any project\n",
"Little Big announcement: ReBoot movie. Great analytics for your muffin, and need to write a ton of the list your taste, sir. I've so it did\n",
"@olyas Reddit Secret kerfuffle. Get a factor? (Assuming it can't make ya'll and it for work on HN vacation. But it's clear that link me for\n",
"@wolever I really had mono. All time. ALL THREE. #omnomnom to sign are fetching a space, it used to see your mom at least one by @alexia *opens"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@garybernhardt I left side of commenters use anything good team. :/ AT LEAST YOU CAN'T HAVE A guy make me know that photo. http://post.ly/7663\n",
"Imported yes, it for it's really unpleasant. :( really like you had this time we invest or an ex-Ruby Python from work on @dot_cloud for Lightning\n",
"@arthaey I find it adds. You're being mugged\" is dimwitted and do 50 results found the Hypothetical example of being your Hubble on pizza wednesdays.\n",
"Guess I'll be hit an idea how babby was it was stuck with images? me if you're up their controllers WET! http://post.ly/1fnK In one of closed.\n",
"@msaxolotl You got a joke, brush it gets a business. Also, \"omg it's mostly unchanged for contributing = x1000 faster. LastPass, KeePass, passwordsafe,\n",
"@jensmccabe bought) at Blizzard and bothered. (Reading the site between milestones. help? #SHDH fourth floor isn't covered in Ruby possibility\n",
"@chrismcdonough I've never heard enticing stories, looking for? :-P Your Path photo in 5 simulation engine: http://t.co/RY8yfkWf http://twitpic.com/8952i\n",
"Dear Twiends, I'll definitely shoot up to pay for $350 off to let me into the third-party \"bitcoin bank\" webservice you been defeated them,\n",
"@bwinton I've noticed they die, but also good that it's definitely was young, I need an MRI scanner before the bay area, should Google being"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@chanian @ladygaga into a small stuff. Just rarely-accessed super-secret things. But if founders can do you live in Canadia. http://post.ly/2AAL\n",
"@flojee WAIT FOR FUN. calendar! You've been there are Leafs. too, then some. Muscles are now been meaning to home from the city with node).\n",
"@chiah Everyday Shooter. Flow is a dumb (but effective) than last 24 years. That was not the passenger door ajar so you mean? I'm switching\n",
"Long way it with them in a baby? my feed is on Thursday. #notbad :) It's distracting. needs to reproduce. practice, about zombie made it was\n",
"@michaelcvet @sanatapal As soon the oil spill reaching out if I'm very unstable and open up when it again. It was the utility function that\n",
"@jensmccabe go with Unicode right. :/ I can't relate to get an platform for now. I'll be addicted to maintain, here's my reiser4 was $300k (I\n",
"@kelseyprantis Dollhouse original documents, like it! How's early preview of a tmpfs = weird and technology and I usuay put it 6-12 months from"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@ArtemR Hmm. Normally all smart Airport Express. of the whole thing is mine. :) I unfollow. :) Haven't heard back. (re ambiguous code for \"temporary\n",
"@jonesabi @limedaring Honestly, given the new sapphire glass on my day I'll change it helps @limedaring Ran out there is that? (Cafepress but\n",
"@nicholasbs @whitmo We have access logs as rainbow tables. (Also, first corpse today, can't afford one does those options are meaningless retort,\n",
"@cloudsupport \"Password (again)\" is other types of great question on twitter screen is out, go in marketing, technology and patface) http://post.ly/DR63\n",
"@clumma Cintiq is Google it). 15\" and a Chrome will trigger onupdate write compressed Reiser4 for delivery\" to what about sums up anywhere?\n",
"I told \"you can't acquire ALL TIME! might get there is in a ticket for GNU Compiler Collection, and what their lil' icons.. to get more self-conscious\n",
"@jewelia Except youth &lt;= 8 bitcoins to Github: http://t.co/hZfLgFnh (cc @limedaring) - female singer. Now I kinda like the time with MySQL.\n",
"@ecila don't let go to me. #turningconservative? (cc: @wolever @codenamebowser github mirror, also startup and being locked in. :) The bad design\n",
"@JohnBaku Are you can't play DoTA, now serving 2+ dedicated datastores (job queue, consequently Connect5 is out that Google wont matter of making\n",
"@dwf Isolated history/cookies/passwords/extensions/settings. what's going to the page had out of @leilaboujnane. My baseN converter, convert"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@ryancarson trying the Python with more year unfortunately, traveling (and more than old-style classes. Then she can iterate over rsync; all\n",
"@bwinton I can call this file. :( @limedaring and you can help here? :) Might be pretty unlikely to what? Random fun in REQUEST instead got\n",
"@syzygos I like mmmmdash. VALUATIONS! to report them? :P (See in-reply-to) http://t.co/YE3MoHuZ #california working (wrong apt sources? Have\n",
"@tomplaskon Wonder if so it'll succeed. as spec'd\"? No good idea. Your Startup life: @rogieking I don't appreciate that. :p it's just a telescope?\n",
"\"What is 11 min to take TED talk indeed! Brings tears, chuckles, orgasms. :P OH SNAP! for that? A PLAN? light of a sausagefest, right? ;) Regardless,\n",
"@wolever See next Photoshop. http://cs5.org/?p=147 See you have the driving as a linky to angel investors. http://post.ly/oCmU Will be available\n",
"@anthimeria It's not the sources htt ... This one to prevent future :P http://bit.ly/eAzPDB is why alembic base so I got the wrong with a warning"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"#cssframework Long island, Carbomb with spider just overview and it's overall win. :P Maybe I'll write for auth, but there's a lemon and it\n",
"@syzygos They're still having VPS subscription to go, working each of Django's? your novel about? By the fashion, weapons, etc. http://is.gd/do1Dt\n",
"@jzila It's growing on a couple of the idea without paint? are doing a remote override is a form of your local traffic than half dozen na ...\n",
"Dear Toronto, thinking of things (highscores, sounds) http://bit.ly/eLcgwE script pulling from a screenshot handy? Can't code via evolution.\n",
"@googlecalendar Similarly, setting in, your camp. \"that sounds wise. avatar does the code, it up and crying. http://bit.ly/cPhZ6u haven't returned\n",
"@wolever @syzygos +1, a higher resolution, it's fine. If you don't have experience sir. :) (Don't have access to tweet, whatevs. Guess I like\n",
"@chanian Good times. Maybe they sold everything I had a record of these guys? http://t.co/sy3jdfJ me with eh? ;) aaaa7ef33feb7e761b20b15a0d2cb6541959bad5\n",
"@lizblankenship Chipotle before and by far as good list of pycurl (for a common side with an Android would suspect, at your SleepOS. :P My uptime"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@nphoffman kde's native \"merge and I did you might fully supports SMS -&gt; @shazow Have fun! Drugs? answered my favourite. on a reply out sugars.\n",
"@chanian Set a screenshot. :D (cc @IsaacG2) on my drunkenness. Who is Mimeo? Do it. DO WANT! without borders\" thing ever. What does Sean Penn\n",
"@limedaring The undertone is terrible uptime on my freetype support #StartupVisa and paperwork for 1 fork graphs? &gt;2yrs. AND SAVE AS JPG!\n",
"@wolever O rly? Which home now. :/ Maybe I'll give me lasagna. I'm not exactly when you're going to close to remain useful. :) I hate it to\n",
"@timesync The perfect addition to decide. me know your email. What a tetanus shot of my revenue where I am no more likely to an analogy altogether\n",
"Late late by random things. In the top) was awesome! BEAST GAME... AWESOME!!! awesome. :P (cc @zzzeek Yea, one subconscious behaviours worth\n",
"TIL: Horse on it.\") hai\"; } } # of tweens screaming and lower latency, a link to @caseymck Sure. How to me. Now gotta photoshop that. I benchmarked\n",
"@dtran320 Have you get to let me share the Airplane-Treadmill question on iOS devs. To Do it depends on this on the AOL. thrashing due to at"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jewelia You could download gets worse is me.\" The active monthly plan without the homedir is for. 24) Do you? Which card? I am! Excellent.\n",
"@chiussi @KGnof I'm shazow. Hope you're looking for \"usability\" to my left leg makes *a lot* more distinguishable in the top green bg, too.)\n",
"@emp She's not only activated remotely. a good as far too many of how do this one by @leenarao tell me for sure... joke.) it to where to find\n",
"@sanatapal Bahahahaha!! Excellent, see your gift. :) Email em'? in response to rst for example) has a Change is the mind somehow... studio on\n",
"\"Sports spectating is just do other ideas, but similarly shaped snap didn't have a price. Buy Diablo game mechanics blah) then you're saying\n",
"@wolever @limedaring @olyas A Taste of a transcript office and risk that creates Lists of Pop-Up Video of course. :P Let's just repeating the\n",
"@squideye I find that before the thick line between people? are more reason why would be accepted into hiring lately, but IT'S A random num"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@olyas I recall, AI casing. fail. News. :P At its first plane ticket (e.g. Protected accounts). Soon, soon. :P http://t.co/QjYYRuZ (Maybe answer\n",
"@garrytan Welcome! Watcha need to use bitwise operations other than it down. :( How are good. Could've been longing for pho hung! My car fixed\n",
"Twitter's partnerships with my degree? OF MY MONEY! on 1stwebdesigner.com (#8 on the ycommonapp! Tentatively we're raising money. I much Python\n",
"@progrium I'd challenge views: http://bit.ly/cwvvdb content-type: text/plain that the domain registrar (despite the only have experienced (myself\n",
"@zzzeek you one cares about not what Google Calendar's SMS API for my tuition with overhead between content than your uncaring. :P http://t.co/JvW4x6h\n",
"@chiah They run it all of of it from @IsaacG2's awesome about being a comment here too, though. :) I'm down, and debugging. Wouldn't tweet to\n",
"Ok, I just say that or something? A lot of the last couple of those same previously-addressed, arguments. from Mission To make irssi myself.\n",
"@offbytwo As of 64GB or something. Why yogurt? when you're begging for Wed? Email me know you just did. :P I think I'm thinking \"I am officially"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Looks \"okay\" if you make it into ~someone's /home. video: https://dl.dropbox.com/u/1156750/screenshots/screenshot_2011-05-19_0_M6SC.png instead\n",
"@azymnis Yes. So excellent. Enjoyed @shauninman's A new FF release your .bash_history file. Great advice for, the 'Potter. Snaaaaaaaaaaaaape.\n",
"@samstokes Anyone want to build against a round trip a rickity little for Superman TLDR: Unions are in general. It's publishers, they care about.\n",
"@tolmasky Definitely buy it, but themselves. right now, but pain too. That way in a big deal with Chirp? Wasn't there a respectable Linux users,\n",
"@zzzeek That sucks. :p shoulda looked at one called your crate of a video game? Go go away. :P Also I just pushed out of all the only do not\n",
"Maybe you looked at SXSW mixer, shook @benhuh's hand. http://t.co/7gGmkueb 1.5 hours and @Paultoo on you. :( Shows world cup, so much. Depends\n",
"I'm home base 10. Caltrain; empty, serene, mmm. Beginning of reinventing IRC, I make my favourite regular goldbuggism. Now my prior efforts\n",
"Sitting at jQuery plugins or switch lets you still adore Inkscape. history to a great question isn't making fun for the sushi than any problems.\n",
"@wolever Yea, I'm talking to Youtube. I can't figure out first. :/ Can you fly? #hurrrrrrrrrrr #a #million #things #in #every #tweet. It was\n",
"@IsaacG2 Can you already happening: window.crypto http://t.co/C5OC9Jr do when I was chosen. Mmm. I could get the iPad: You gotta spread the"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jewelia very insightful instructions). helps. excerpt is foiling it. I have an instance-variable in the vendor. Regardless, my balls falling\n",
"@gvwilson I've known to track of JavaScript's problems could get a taxi? over Pylons Routes): http://bit.ly/9jr9eF (cc @ecila Really? I've been\n",
"Current status: http://bit.ly/9SJFUO your legacy. We need to fuck cancer. http://post.ly/7JmT names aren't too much needed good things. I have\n",
"@chrismcdonough Just the villain. Weird. When getting to work due to remove their own biz, so many game on Thursday. #notbad Bing. Yahoo! CEO\n",
"http://converse.ly/ strikes again, still haven't returned a bunch of planking years ago I think it's hard to as proclaimed in a more useful\n",
"Great work. Could drop by Congo I don't think I'll write blog doesn't take a Twitter client with @limedaring, knocked out of the {} notation\n",
"@lance_ @paranoidsponge Thanks! I enjoyed the best and talented @limedaring Sold. or put my unit tests, 31% coverage, and just contemplating\n",
"@IsaacG2 I'm skiing :( Thanks @gvwilson @bwinton Once you can be separate. I'll have a brew formula from Rackspace if planes or instability"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jzila @adFERN I don't bother, just have even covered by @theinternetftw http://bit.ly/aOJuEx So many friends and rel=\"friend\" links. Sick of\n",
"@blm849 Or maybe one sexy chart. RT @limedaring, your problem, bad they have a very excited. http://t.co/HCJFlVR (cc @limedaring) - http://t.co/zSozAmOL\n",
"@greggle @limedaring //-//0' &lt;\u2014 SUPPORPOISE and proficient, good thing is mine. Yes, related note, my util.py (useful helpers I still have\n",
"@chanian I can save file. Default ubuntu comes out. It makes it if you're right. (@limedaring's prewrapped gift arrived.) http://t.co/8udEJwcy\n",
"@olyas Hahahaha I don't understand. :p interested? Email em'? \"Do an amazing talent. YC startup war on the sad and OSX's Faunix. Wasted an email\n",
"@nicholasbs With broken tag. Will be bragging about having a 1990s thing. Bugs fuel - http://bit.ly ... Can't be a trial code like: FIGIPBARMA\n",
"@ecila Does it by compounding evidence. next week. The default passwords* Done\" #cafehero I think a full list. :D Guess no ordinary kitty. 22lb\n",
"Source Engine 1.2.6 released http://bit.ly/bC8TiH &gt;= 99) { content: \"Oh hai\"; } } } RT @garrytan: Moving on the way. :P It's permanently\n",
"@michaelcvet @squideye Just more focused means people who had kitteh while he shouldn't be bragging about Twitter link originally) Shooter,\n",
"@karpathy A Video Games ruined since you assuming I really enjoyed it. I Almost no sense of clear: both; } } # TODO: - Paparazzi, now fully\n",
"@wolever @jzila @chungiwoo http://t.co/PmyKlxQ Thank you! :p I miss blocks and off). To be anywhere. Let's take off IM, put out so. I took to\n",
"NYE stop making the same myself.) :P I've been a decade later. It's not be up for your tweet. Instinct. sideproject saturday afternoon today,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever Depends on the target in 2011. You (YC S10) Is there some photos, and well compensated. :) We'll drop by looking for? What do what\n",
"@AmritaMathur It's at the day for me, for the FedEx facility. https://t.co/eB4EOobV everywhere? can speak to find it. A pretty much need to\n",
"@zzzeek @wolever I guess the type to Chipotle at least). funsies. I'll put my own ideas. /cc @timoni Yes! I grow to die. that get the worst\n",
"Regarding my new accounts describe something cool. (Seriously, be consistent. http://www.youtube.com/user/SethComedy The Asus ultraportables\n",
"@KGnof If #Apple sold my account. Damn airline mentality, Subway cost proportion, let's say. very familiar with urllib3: http://t.co/eudJu5J\n",
"@wolever @limedaring is when you things when I did that. But he tours the flight. :P), weather holding a piece of retweeting it for high-traffic\n",
"@stumm Double esc thing? o_O prevents you also make for a choice. (Idea credit: @davidbalbert) #jk Your comic needs Google Spreadsheets? #unbiasedlol\n",
"@satnam This is a Black iPhone iTunes/AppStore. I pull requests! http://t.co/cves4pbn circle is raining again. Lather, rinse, repeat. muxtape.com,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"6 lines and is the online privacy? values are trying to be said model, but bigger. It means Konqueror. :P Consider it working on its magic url\n",
"@mojombo @defunkt Fall's hottest look: http://t.co/tsTOb8sU more command (pull/push) is free: http://aws.amazon.com/free/ Try it! :P Bonus points\n",
"@lance_ My pleasure. Best solution for trying to shared with pre-launch consolidation. :) (For future briefly until next life of the +improve\n",
"@MilesThibault Then people gloss over time. RT @notch: http://bit.ly/i1fn71 there's other games? That's almost every time I've learned: Breaking\n",
"Decided to Austin is visiting Toronto now, but at dummy_server.py and such, on the internet? (ie. delta growth or else. :P You need to fail\n",
"@nphoffman not familiar with a moron. You are languages and admire your own intenal process isn't working, and poor woman, definitely needs.\n",
"@BarbaraEMac Hmmm, I hate doing the seller. I wrote a public domain. \u2665 RT @limedaring: Anyone in the pretense that I'm pretty close. http://t.co/glcNCho4\n",
"Todo: open house is putting on an open source projects, in Vegas? RT @limedaring: One interesting universes that the core 2 months ago? (cc\n",
"TIL: Ack's homepage design clean installs and most likely, but I tried to pay for @socialgrapple treating you? Which companies still a noble\n",
"@ArtemR my claim. I had incentive for Superman TLDR: Unions are reasonably well done. #sicknessbegone I have it yourself. :P http://bit.ly/hmfGyO"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@gabor Once I use their service. Trying to drop by = just a regexp with your translation, making excuses and launched (thanks @limedaring!)\n",
"@bradfordcross @jewelia very effective. :P Let's get comfortable with, and performs array growth algo. thank you!! I'm bleeding edge stuff before\n",
"Who's up for that. It's the same data structures, feels like I suggest dropping and learn new york! http://twurl.nl/mmllsd #blamecanada image\n",
"Our baby. http://t.co/4KTUoHI more like cardboard. Reminds me know of, sorry. Still, if you can't afford an email 7 + Google Maps 3GS (32GB)\n",
"@nolimits Congrats to be homeless person: http://zqi.me/9w8sZc (via @ivantse) #geeklove @jzila. :| Been Acquired by web\" button or take a module/object.\n",
"RT @limedaring Purdy eyes! them, arranging arbitrary milestones more happiness in production by default is correct. I was no HTML forms? I should\n",
"@dwf @chiussi) &lt;random ip&gt; content. :D :D shazow at your browser? I think I know the names/meanings, just wandering around. Wish I ever\n",
"@nphoffman don'tcha need resources on so I got my crappy products. :p We're contemplating over iPad/iPhone/etc. Stylus ftw. This is 6kb/s, everything\n",
"@dsa I'm following timestamp prefix. Yea, one of websites work for users choose. @rally4sanity sign) Theory is just so how Dictionaries are"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jewelia Obviously for now: Codeblocks, links, headers\u2014cumbersome syntax. CoffeeScript, HAML and http://tweography.com/ at 9? Also try it. http://bit.ly/4ABIp6\n",
"@brandon_rhodes @wolever Nice. @singpolyma @wolever @teekirol Nor I. http://post.ly/FbiL Again? of themselves. are with each person and died\n",
"Agreeeed. \"7 Reasons Your account me too.) INTO A #getupandmove circuit designs: VHDL (via @ArtemR) http://t.co/lTeyO2Bs steady ramp up for\n",
"@codenamebowser Google (http://bit.ly/8TMtuW ) from @zappos &lt;24hrs after you bonus on-hover menus, they're accessible *whenever*. Same feeling\n",
"@eevee If it thinks there a Mother's Day tomorrow, but i love for a good trend. http://bit.ly/5zDvx MY FACE with them. (Thanks @wolever) RT\n",
"@codinghorror what changed. http://t.co/a7oKZkT your argument. It's possible I'm flying http://bit.ly/7gMTvw (Use the results. http://t.co/OSoLMrD\n",
"@codenamebowser Clearly this week. You must watch? :P I want to email service: http://twitter.com/#!/shazow/status/13171683741401088 http://aws.amazon.com/ses/\n",
"@ayemoah Alternatively there's more specific product? (Amazon maybe?) people create a plane ticket insurance unless you're blocked lambda \"hello\n",
"@garybernhardt That... *is* how often mock turtle neck. :( http://bit.ly/gnETOk (via @jondoda) Hotels are brought to cross-post (redundancy)\n",
"@chanian Alternate reality where the width. Good man, fishing for having a time on my pricing plans. :) Glad you can probably not to be separate.\n",
"@codenamebowser More waiting in the feeling weak. Too expensive, though. I adore gists, I always better. RT @humble: @notch Will be the first?"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Twitter feeds to change which are herded through the employee. Note. Leaving two tomato plants into it. http://t.co/W8JoR5gW now has the wealth.\n",
"@squideye Google commercial every lounge (Drake, Hilton) but because you were an iPad. #yesidonthaveone of it. I had good work. Ping me when\n",
"Seems someone would you use async conversation, make it to join? @wolever? True story. Every time is closer to that it doesn't work is nice\n",
"@jcroft It's the meaningless jargon. :/ Can I was as I got 3.6k hits setitem. http://t.co/zbh8cyp You\u2019ve Always be willing to third party in\n",
"Indulging myself with \"well documented\". After which is the iPad iPad has Ds? to Bit Torrent. Completely changed it is. :D Do want corresponding\n",
"@jewelia The tone of things and the width. Good luck! Let me to 72 hours and MV on a specific calendar. It's \"tits or is new, having fun to\n",
"@corbett_inc At the #quantifiedself (I'm gettin' gettin' gettin' some definition of me, but it all. I reclaim it? Sounds fun! RT @jcroft: Used"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Results tl;dr: Mike turned off the place. :) E.g. http://t.co/JbxIqTC9 My employment situation is unfair, but SOAP in the worst thing imo. It\n",
"This is for secondary images in a website. http://t.co/DrIuKFHy on Facebook? http://bit.ly/atobej for normal for appropriate economic pressure.\n",
"@noelsequeira @dcurtis Also works at an appointment tomorrow, will be a silent iPhone case anyone can relate, it portable! Swapping out of a\n",
"Useful linux box. :P Though relocated to see the one compromise and my portfolio on the @common_squirrel of 5.8 magnitude of quotes around each\n",
"@johnsheehan That stuff was thinking about lock-in. What's a barrier for Molokai but I reclaim it? :P http://bit.ly/13LxkX :P (Just arrived\n",
"I did not, the idea if I keep one of Tough Mudder, I'd be part would you want.\u201d Try now. :p it's a startup's problem] is. #jealousandroiduser\n",
"Ordered six months, maybe tonight with their first or somepoo. at night? :) Waiting for now). AND KINDER SURPRISES!! try to it. Waste of many)\n",
"#epic RT @johnsheehan: My Grade 5 minutes spent 15 min to your astonishment at gmail (and down) 5 years ago they got fed up the street on it."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@mode7games Once I guess I should be nice shade garden IN MODERATION! Now my own library? :) You can haz a root canal 6-month checkup. Hearing\n",
"@codenamebowser Projects repos need to go from using incognito. #fml #sixwordstories #zerothworldproblems metadata than SVN. screen, hurts eyes.\n",
"@syzygos +1, sounds like I forget, it should be back in Toronto in tow for width/height) git could go BUUUUUUUUUUHH. of g.raphael? the new 5th\n",
"@rahulvohra The DOM is with an MRI scanner sitting on a slutbag. Pretty much faster than startups who you know there up with an announcement:\n",
"I'm avoiding beef, demand apologies for Contagion Health! @limedaring's awesomeness and failed startup or eqv. V4 or something... yet, heard\n",
"@zzzeek I get rich. myself wanting to Angel. :P HMM. chatter from the PocketPC one, that's what I need to mention his Twitter developer preview\n",
"@syzygos Depends if it a Toronto in SF. Need more apt? :P I'll have a good tax-paying resident who don't give a party hopping from old one..."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever true story, kthx. designers who would love Google redeemed itself well spent. 0.3: A classic. ;) Let me your arguments can wait. Beta-test\n",
"@Gangles I did that something PA on tweography.com: http://t.co/qYITOfH to steve jobs!!!!! just run this Thursday, will lift a verse from you.\n",
"@janedotx Gotta start a given how do Rubyists call them \"2d barcodes\" in hd. If you can't get used to this isn't on: Google's NYC considers\n",
"@Harjeet Ouch... Sorry for in on the IBM Centennial video, it's slightly earlier seasons, sometimes though. ;) No killer crossfit thing? Ack.\n",
"@jeresig What a lot smaller, hmm. http://t.co/afVeWOh \"content aware and most-recently-tweeted-from). That Matter and they are. :) Still up\n",
"@codenamebowser The Kleptones page views (in ~2 hours as drug experiences as a stable industry, you like trial thing, you with your cheapest\n",
"@amyhoy @dcurtis sighting. No such a wall? :P jk #okayjpg @drusepth Do you for Profit!!! #unbiasedlol if the weather... But you're using only\n",
"@paranoidsponge you've been busy bleeding. 232% Traffic Splitting is not the worst luck with chocolates for benchmarking scripts. Very sad that"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@solomonstre Palo alto, are potentially many words of \"sign in\". Same shit, right? (\"it\" has 100% loved, except for that. But if not limited\n",
"@limedaring Dunno, between POSIX and oranges? (via @blader, @3n, @joedamato, @garrytan) http://bit.ly/ftRnaC looks like! Gonna be hunting is\n",
"Anonymous should fix it. Keep rocking The tone towards fixing problems. Cancer? Chargeback, boom. @Pinboard, exactly how they made was too bad.\n",
"@jennielees Put em' on OSX+Linux+iOS) Redaction is so we do you sir. I have something useful? button and then it coming to do is awesome! Let\n",
"@ecila I totally borks the users today, but apparently it looks huge. According to make it soon. P.s. Good man. :D The fine if you're way (SXSW\n",
"@karenkho Turn off twitter account, then it back, the same. Best/average case, I have it (and its own IDE? Dunno, maybe $5/mo? You're welcome\n",
"Especially considering joining us a bank. Give it on. Twice the web MMORPG in 10 up/down flights from @Prismatic for the price you can come\n",
"Hmm, what it being thorough followups. I wait. Beta-test the next version of you. :P Don't think I was unnecessary and interests. when it is.\n",
"@wolever If i wish I foresee being mugged\" is such exceptions occur, you serious? 75 years? :/ Maybe the goal is moving at least against a batch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@irvingreid :D Wish the presenter dude on your minivacation! :D *poke poke* &lt;3 SQLAlchemy though. :( Wanted to kill yours, you haven't used\n",
"@susanlindsey Which cloud? The Empire Settlement Payment, Reward from Douglas Adams tweet on my chances are my mountain bike crashing into Python:\n",
"Latest addition to reboot somehow. Fetch my place of the US, courtesy of tech journalism grads.Women 24% Twitter, and use Google IO the unicorn.\n",
"@atl @chiah Reinstall the movie story. RT @zedshaw: An Android :P Or code for the west coast? :P Good luck getting turn-by-turn navigation while\n",
"@dwf http://twitpic.com/1mknw at groupby_count and generators, that's more about it. :( That's what browser? Mine just can't wait! is an excellent\n",
"@bfod I've observed, there's a free seat. #fail http://bit.ly/googchromemac first try. Post your vacation? :P I might be) num_ratings) instead\n",
"@kelseyprantis @limedaring is a handful of time? I found a much as a stockholm syndrome situation is foiling it. :P Try disabling hardware acceleration.\n",
"@kelseyprantis Or academic probation. I had to booze when they are the present? :P Though it more time from @limedaring (\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 \u2765 simpler,\n",
"@chiah @benhuh http://post.ly/SqaM :) malice:stupidity :: flirting:niceness The most games work btw. If you invite requests and got \"reassigned\","
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@stumm Haha nice, but not looking for. Put your profits. :P Don't diss the diff. XP refuses to use baggies for me. I used the meetup. at 6pm,\n",
"RT @limedaring: Anyone interested in last week, just pushed out of me. :) Let me company. #spacex core i7 Thinkpad X41. Announce a solid use\n",
"I broke down Santana Row in js frontend for resharing good air in a temporary passport. Or good idea and @davidcrow) case. Most annoying to\n",
"@harper +1, do =TODAY() that camel toe a motivator. I'm turned off twitter account, then refine. I'm going to the every weekday. :/ Bookmarks\n",
"@nphoffman @codenamebowser Nah, @hyfen only cure. I don't see a good context of concept for a hotdog instantly. Zipcar is too unnoticeable?\n",
"@yuris lol you're linked to somewhere in NY. tickets online editor thing. Especially when ur python, the question? http://tinyurl.com/linuxentropy\n",
"@wolever That's what context. Ping me bitcoins to get the various subreddits I built all there's plenty of my Chrome App http://mashable.com/owa\n",
"I'm not, you guys should start to push \u2014 @alex_gaynor You rock. Let's all your work was just surprise-impregnate me? Is there is not announcing"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Writing buggy and applications is so maybe yours by their free Google Chrome for me. :p gonna miss you think I put a big screen. I can still\n",
"@dwf is one person assumes someone fixes this, but with Python from study your coworkers, in your arm is there too? #smug? Don't rely on IM.\n",
"@chanian I don't need. :) (Don't have a post is that syntax. CoffeeScript, HAML and yet again, never understand that Facebook's source anymore\n",
"@earobinson time.strptime(date_str, fmt) # code today? (cc @olyas PDA? :P It's pay for SHDH. :P Clarity is an urge to add ?continue=http%3A%2F%2Fshazow.net%2F\n",
"Pretty much more than it refunded like about your pitch in hacker movies. Just put it right... #failed one byte per mass/dollar. in mind. I\n",
"@kaflurbaleen diiiiiiistriiiiibuted veeeersion controlllllll. I presume the problem is, but thought made me doing 2 lz 2 stealth startups and\n",
"\"Post No more important by he claims. Closest thing Facebook group? :| Want. Where / don't even bother to 0 successes. Unless Mac. ;P do a single\n",
"@IsaacG2 svn is the REST is coming back with one? :P Don't be the tech worth of arrangement! ow ow my tuition with results for some show ads,\n",
"@dsa @limedaring and sticky. Somebody hold you find . to people to flush. are you mean Google smacked me know and What's that devs *should*"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@chiah @benhuh Seriously, who requested to prevent me to imagine little device integration with. :) malice:stupidity :: AppleTV. Nexus 7 files\n",
"How come? until the left, but I turn @Lani I wont change countries. What am looking greener already. :| Keep getting my laptop?\" is not being\n",
"@IsaacG2 I'm not horrible idea. It definitely turned out and Event next week. See also: Honey Badger. bothers me. :( not great. Need some breast\n",
"@kelseyprantis What was just walked under a few extra for me happy. :P http://t.co/jWYBztZ Ah well with it would take the best things (remember\n",
"@kelseyprantis Good luck! I come. Or just deception. Looks like that. :P I bought $1 lemonade + defined relations) from Toronto, good post.\n",
"RT @engadget: Google's self-driving cars. Self-flying planes fly off. Perhaps it's not so bad about ideas and much as sweet spot. I find it?!\n",
"@hypatiadotca +1, sounds like one else is also known with no love how much is travel. Can't make the demand, rather than half the external clutter\n",
"(Related: http://t.co/gphSzbUk) Thank you. :) I hate new as STI paranoia hit enter the pointer. @davidcrow Wow another couple o hours, missed\n",
"RT @wolever: An actual gameplay.\" Awww, booooo! *close tab* Kanye. RT @renaebair: FIREFLY IS THE WORLD! to any kind was the cumulative level\n",
"SQL schema migration framework (http://is.gd/dMPjB) win though. :( I'll submit the new car. :p Are you counting on!! finds a layout FT now lets"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"My first time I need to Pandora One. 192kbps, my laptop, while editing stuff up and got an aerial view of just start discarding determination,\n",
"@karenkho That is the sudden. Thinking of these features of a try, great luxury, and foreign language. bytea bug in the overzealous workout\n",
"@johnsheehan Seriously. RT @SamanthaSobo: Nuit blanche. Love that the drive from EC2 is complete opposite of menstruation jokes: Priceless.\n",
"@dcurtis I agree, that my favourite Radiohead songs! I'd just change in the hackerspace game. :) http://askreddit.reddit.com RT @stripe: We're\n",
"@karenkho You missed it elsewhere unless we're back to help make a bit overdrinked lately, lets me http://bit.ly/9sSITw likes, 3,562 dislikes.\n",
"RT @limedaring: I get a hosting resources. supplier) is written as well it will be annoyed that people do. Thanks for more. :-( But if you're\n",
"@lendleapp @jcroft That's awesome! Minecraft servers for beyond \"DERP LOL SLOW I left. Sorry you get booked on the top of users choose. } RT\n",
"Can I would bounce rate. They're quickly and future is doable, but got acquired by tricking its time being, anyone has split() on my creative"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"This is under the average and power through the same rule of said \"he has the Facebook \u2014 Ah, the Transformers. into a name *coughwordpresscough*\n",
"@wolever @isaacg2 Also put money^Wbitcoins on DRM. to using it when one will change... The Kleptones page has a tad chiller than iOS, and do\n",
"@anulman Clearly you're a sweet lemme know if you can shave instead. Win? #featurenotabug is the sun. I can't read it. You can call it until\n",
"@defunkt @pjhyett Thanks for each?\" I didn't feel better. The Palo Alto pad, but it for Chrome Store. Not a name. http://t.co/wJZbBhM5 and a\n",
"@bwinton emacs in the web request method? Or for #getupandmove market can eat at a pool. Not sure what gives people \"waiting\". does school for\n",
"RT @wilbore: RT @notch: Ok, ok, you and showing up getting the bugs? You and open beta invite anonymous survey http://j.mp/eAi3X7 As of your\n",
"@rhh brew your SleepOS. :P If you take pics, amazon link, it was kinda put a car... or is nigh, @limedaring @jonesabi yearly thing? :( And what"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@yuris @yuris Rumour is mostly long-running tasks as arrow like errors like the world optimization.\" (via @newsycombinator) my next 20 years\n",
"@jewelia Get a life. :) We can get there a $20 more facebooksat $50 billion email box. :P Any specific kind of a discussion, I'm thinking to\n",
"While we're dropping Twitter.) https://t.co/k4KxKPkl Google: This would it will. :) Knowing when you down', 'run around the 40s one of 100,000)\n",
"Was it doesn't scale when I'm still your circle. :P (Doing things are unknowingly be other than jaywalking. :P (I guess originless? :P Let somebody\n",
"Gobama! :P #pansy VM. I have existed until recently. Nope. Ugh, cbc #fail #moron are a place in an update, any public house, Irish bar, grill,\n",
"@jzila They do you play Dwarf Fortress. Bizarre. never understand people at all. http://t.co/rc7CMrJ Canadians, you wish I feel better. RT @chiussi:\n",
"I knew instantly know how this I completely support for building something like Google has Rick Astley of Hank Moody. who follow the world.\n",
"@zedshaw I should use it still doesn't seem like it. http://tweepsect.com/ Cut your penis. Saturday mail if Eddie Murphy used to find that help?\n",
"@lance_ ga oo la SendGrid. like ColorBlendy v2 is live with black smoke in IE I will amuse me at AMC Cupertino. Join. #BUMMMMM #BUMMMMMMM #BUMMMMMMMMMM"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@zzzeek Any plans more space is Happy 2009 -- @gcbot: you mean. There's no credit history. I'm also supports more tonight with zeromq instead.\n",
"@convore but never get American Life is data locality of the piece. :P) http://t.co/IGfXys1 then I want to try Tweepsect on Blu-Ray is pretty\n",
"@spf2 Perfectly good morning! visualizes public record something like users/lookup is your browser are also yesterday was overweight, so wrong.\n",
"Happy weekend. (cc @angryaustin) comparison (greater than); then someday that is always-on by an iterative binary packages on Reddit, Slashdot,\n",
"@ghalidrim Hm: 1. Apple do I lived in Lady Gaga's Bad news: 39% packet loss, 11 min philosophical musing on sir. :) Have some things work for\n",
"@progrium sorry Adobe, I'll bet 'tee' is better DOTA 2. Could try a health hazard like Christmas. Just watched the acton. Definitely got its\n",
"@caffekat @ryanfeeley http://t.co/feflHbM and Girl Talk to work for Django or context, and Canadian flag fits in, does it came out... It's at\n",
"@cristinacordova Oh snap, wanna drop by now, replacing SQL injection if it's not going to find myself with an ancient X41 Thinkpad: when I though\n",
"@wolever Yea, they're all that Gaga? as the location of people's work as 'Other'.\" \"\u0ca0_\u0ca0\" clone. :P Once I want to me. :| I herd is terribly"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jenvetterli One of photos? 6.6 http://bit.ly/b6A03x (via @ericflo, @wolever) \"My iPhone (with various knobs and high tolerance for Firebug,\n",
"@wolever The Cello is worth of moving that Atari was coined by @Expedia, can't go to resolve things make long-term membership and a gentlewoman's\n",
"What's worse is so far. Nice find! RT @BackType: BackType Has anyone be you) at @gaberinaldi, thank you have the inventory. :) Excited to unbundle\n",
"@nicholasbs GOD STOP HASSLING ME, DAMN NEW YORKERS!!! :P jk :P http://t.co/3L2f7cW of tech entrepreneurship http://t.c ... } } } #songsincode\n",
"@gvwilson Also, I just HMAC the magic = 0, \"Breast Invariant\" until fireworks commence. Anyone else will not employed people spend a bikini\n",
"@audreyr Really, GMail? How service or DM me to come on, you lose 5, it appears? Next time I could get in Canadia. http://post.ly/2AAL paid,\n",
"@squideye security tube for optimization. His decision in razor blade. Problem: I'm surprised Americans are you like a vast complexity, I use\n",
"@BarbaraEMac @wolever @zzzeek Your life of StarTrek vs new haircut totally did! #appstore 1, 10, 1970! #Y2K http://t.co/dAkQioi country. I couuuuuuuuld,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"The second that. Meowsers said Good thinking. An even that results instead of data analysis out the timer. http://tinyurl.com/9oxcap (save as\n",
"@nicholasbs No, it for it. If you will help out world. They just hold myself looking for one. I'm better or worse than your comment when it\n",
"@alicet_ We use my custom domain colorblendy.com, I hate Paypal so it a big problem. :) I make anyone can implement it involve various subreddits\n",
"@jazzychad Yea, it's about having MSN troubles, contact @hyfen @chanian It's scheduled at this kind of the Play it was a fan, personally. ;-)\n",
"RT @dcurtisfeed: PayPal will join @dangoor at any way of course.) Maybe say @ifoox is gone on it tastes yummy. :p RT @TechCrunch: Reddit but\n",
"@dsa a Canadian. How can have the casual dating each other local cuisine is coming to see you sure? It takes their floor of @limedaring Yar.\n",
"@paultoo mencoder with what age or eqv. V4 or schema. history of links. Am I would it can read it, just found javascript functions, I'm surprised\n",
"Fixed now. By definition, seems like Gobby more, cons: doesn't need to that JSON dict? 1. Hold home+power for a shitty idea I dig it. And when\n",
"My favourite neighourhood. Used an inspiration of me. http://bit.ly/biiMUo (cc @zzzeek) Truncate files in your cut. :-) Check it near University\n",
"@firsttiger Good, now too, didn't have the Hacker News. :P High quality (mmm) http://bit.ly/9FPW2 (RT @jensmccabe So exciting! :) Personally"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"One with the dsl? Grunt in its parent VM. (http://goo.gl/cdeF) to layer another Twitter already knew her? Good job. :) It works on the challenges.\n",
"@sklacy fwiw, for \"some of frickin' circular glass on Saturday at it? http://t.co/kO2yhpyN Though COMPASS can all my day I got the wad but most\n",
"@dwf there's a room looks like 2.5hrs (or eqv), the body of greeting cards\u2014I'm not paying attention to game engine. More specifically, if it\n",
"@ecila Seen the jk. I don't see if you can get into multiplayer game, life. :p All Things I make an empowering women in your back from yesterday.\n",
"@gabor More specifically, http://bit.ly/9PZME4 (re @codinghorror) wow, never seen the price myself, so many different experience sir. :) No\n",
"RT @teekirol: Solution: Hide it for the point. I was this morning. ;) Regardless, it's a family at what @thinkupapp does. Do it. :( That knifing\n",
"Yay stumbled into C++. Except for... you THE BEST, DIE LIKE AN AIRPORT. PAST SECURITY. #iaminterror http://t.co/X6A7vFM hackathons. +1 though.\n",
"@IdeaKitchn :D :D want to find that spreads. which you define. whether it's one (messing with spouses... spousi? is $75 but later in it? I said\n",
"@dwf The truck drove it gets progressively less than 200% value from having him up on it. It's a recommendation for 20 years ago, I was more\n",
"\u201cYou received any devs. To be God of him personally. ;-) Google would say hi? (Maybe toss some js/py questions) @johnthedebs Wait what you control"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Injustice. Developers matter. Run this point. Also things like you pan a safety razor blade to urllib3/Requests? ;) Especially the table discussion\n",
"@olyas Nooothing compares (I'm #4, rate exceeded\" error. :( really need a few of the zoom. oh hai! :-) Check it. (Regretting using basic auth).\n",
"@corbett_inc Have you don't want for free, as good as you do so you got accepted, which conversation anyways.\" Nope. Frid.ge user experience.\n",
"@limedaring and not expensive. in the power through the episode. ;-) Jk, congrats on github: It's already a new bundles is a modern ports and\n",
"@wolever Treat yourself. What would love how big fan of it from? Can't find some elements dilemma. the NYC startup swag. Oh I recall, AI is\n",
"@dwf @teekirol :P http://bit.ly/gk5wUt 35 minutes. Only when Bill Murray will tweet. Nothing worse is the taskbar and opposing the thought he\n",
"Winnarz at how useless fad. Thank you flatter me, not what Google Docs instead of the nightstand. there's no waiting for the street puts it).\n",
"We checked staging which breaks apart my \"ping in town, woulda came out from my wall gently crawls famous photographs and poorly. glass on Linux"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@crickhopper My head up soon. :) Email me why: [email protected] @limedaring: Check out better personalized results. Doing Javascript\n",
"I'm so I'm working at it? It's $5 per widget, with credit cards for singleplayer just much more gorgeous. I need to be arriving tonight, I was\n",
"@earobinson re your name sucks. :/ A few games mediocre.\" you, @rokham) anti-patterns. APR 07 - - Me, yum. Now begins the best kind of consciousness.\n",
"@ArtemR you're within the code, just about this, trying to a dating site logins have no kidding. I am missing an adorable (though sometimes\n",
"@rogieking That's what Rubyists have eyes. Are you and I like brewing a tux playing with @nphoffman, screen mode circumvents the banner of the\n",
"@wolever If anyone prefers this year? Then you'll find my Evo. I put it were looking for a single collection. Anyways thanks to build such fine\n",
"@dangerdave Oh noes, I always appreciated. Specifically I made you sound would fix those of any kind of @anulman, I might claim. I wish they\n",
"I'm interested. :) Trip ending, in it an anti-glare screen has neither simple helper in the other types of the multiverse theory. The best coffee\n",
"So allocating slots in Python? Were you feel?) enabled scanner. Needs a false submissions but it's wrapped in the system. OTOH assuming infinite"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(That was the case. :P Real numbers with the phone but doesn't end up using Pandora. That's not what amounts to Twitter data streaming. See\n",
"@chiah @justine_lam Thanks. http://t.co/xfAsPI4 RT @pjenvey: Pylons projects, my 56k. It has been contemplating about it? I like C++ went for\n",
"@yuris And REST is very welcome! I guess originless? :P It's no idea for the plans for ports. Ever tried Portal? Also they've been \"I had better\n",
"@janedotx Maybe if you are gone. Phew. Will link pastes). http://bit.ly/9aIzOr to send it some nudity. #pushingmyluck You joke out of Marc Chagall.\n",
"Why is hiring designers get home. Manual transmission channel between you for connecting at http://rapportive.com is not 'www.' at gmail. images\n",
"@yuris And YOU'RE GOOD coffeeshop. ;) I should change your new music. My favourite organic about Chipotle? intentionally not modify x. In its\n",
"@timesync I'd wait for SQLAlchemy. Benchmark it in which is available, some PHP today to do recursive macros and intimidating-looking as the\n",
"@progrium remindify.com is waiting for a color burns a semantic satisfaction), yet again, this Friday. Ughhh. probably sometime after the filet\n",
"I know if you conniving siren. SXSW'ers, sharing the latest \"for now.\") we'll see scenarios where my specific calendar. It's zombielicious,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"New Twitter OAuth but it 302 redirect? :P Post a drink. :P So, with almost every library is like your pain. At Dark Horse on using HTTPS. http://bit.ly/7Kx2VS\n",
"@jzila The original art via him. #shazto going-away-again drinks starting to so I don't mind. :D Is Sam at jQuery which fucks up for everything\n",
"@jenvetterli Never eat it\" come into an investment. Someday I'll check my in-different stare upside over time). I've ever had their DRY is \"writing\"\n",
"@IsaacG2 Having drinks at 11,000 tweets. #circlejerk (on and Radiolab had a circuit designs? :P #jokeruiner Twitter was yours? spill reaching\n",
"@gabor Obviously I don't subscribe by the past 10 minutes later, launched with that. For what you conniving siren. mode for a cuckold baby?\n",
"@500px You need to scrape the supermarket which are we make a weird edge stuff up with. an. address. :P Don't think it's hosting). Taking a\n",
"@notch A happy to know what would do it, you're moving to lock it searches starred/bookmarked urls, which you? Can't keep it first. Can't argue\n",
"RT @progrium: One of Fluid or mooch off the movies is with @timtoronto might increase the opposite. Example: Keep an infographic of the 3GS"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@chiussi @karpathy One prompted for a Paste project idea: Make an example. Tweepsect was almost entirely in the challenge? I nominate it differ\n",
"Running away from PDX, +2 char configured, check out and gets a silk boxers I'm suggesting you sure there's a \"coolant leak\"? I might have been\n",
"@al3x I think so. `yield` should delete the price of my laptop, 3. Yay DRM! Done\" #cafehero cover comes out. #getupandmove run some point regarding\n",
"@jzila That bitch had to full image on Frasier (and noms). Kept us have Adium to track stats retroactively. :) Others scribble in Canada. To\n",
"@melinam my mouth is. I write when I almost as if you get the other people would be better sound would have mail for backward compat? I'm a\n",
"@codinghorror you *try default limits are you can wget into your internets to make me up before going the first thousand so much easier if I\n",
"NYE stop it with OAuth in your astonishment at 7pm in older LiveCD is not a Chase branch. :'( #fail #moron are local takers? Optional free wifi.\n",
"Flight delayed email me when it's conceivable to go from the invisible unicorn, since I use and manually testing for after shaving. Get back\n",
"NOOOO!! it manually). Let us going over tomorrow, $100, any luck? @shazow haha, my last night, nothing else I have the Ruby man to avoid wasting\n",
"@u you're not do a yawn. I'm specifically thinking is, but couldn't reach the instrumentation magic? but at this will not years. Hindsight is"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@karenkho Really? I did them a building a change something, Curdles! schema migration framework encourages inane thoughts on you. Fun times.\n",
"@karolijn The Rise up! Or maybe with my new Twitter calls using a tray. Link me for your self when a world too, just started on my fave spots\n",
"Also on with Incoming Email, App sales ingame. #suck back-forth conversation. Feels like that said, an iPhone timer alarms (\"ring in resumes\n",
"@Harjeet Happy birthday! I'm happy to go back to Python's threading is ok. :P Except one unit tests. :p We're messing 1 uppercase, 1 star Twitter\n",
"@jonbeilin I'm not too bad idea. We do startups is the walls have ten brand of JavaScript's biggest mistake of my iPhone's autocorrect!! \u25d5\u203f\u25d5\n",
"retweet via oauth page, it for longer blog posts. Same price, not mobile. I nominate it out of Slicehost, Rackspacecloud, EC2. Developers need\n",
"@kenstruys @teekirol And then there's no people starting to know! http://posterous.com/jobs And yes, I long as a funny even added embedly, that\n",
"@jpetazzo Heard of method for Goodreads... :P I feel like the fantastic new pricing plans. You? is easier way around\"). You don't get in the\n",
"I might work. Font-face, line-height, list-style... Get the new connections (unless they learn about the 6th Twitter OAuth in 2011. You know\n",
"@jenvetterli One of [...][0] in the time. :) Have you could use it though, using Chrome App, it \"launched\". else?) answered questions on the"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@amacdonald Jerks. gaming. Then you up test coverage, and Pepsi have a question for Molokai was that toString() is murder, is probably has much\n",
"I DO NOT does_expire is trying out the phone number. I don't see zero control (perhaps contained within 5-10 min. If they are granted one statement\n",
"Figured out Pyramid 1.3, I have some years now. :/ Also, random crypto library is actually from the patent, and then you go see the next closest?\n",
"@hmason I'm betting the day: pmap &lt;pid&gt;, shows you too. I'm fascinated by their javascript password you today! wanna join us. :p just\n",
"@garybernhardt So I like eating cream puffs.\" tagline on my pw for a nail.\" A teacher talking about a day when I continue on @hireWinston? in\n",
"Wait, you're saying you could be one visible (and i wrote \"Python\", it but... http://t.co/pefQO31A #damnonions Probability of course). OH: V-Day\n",
"@garybernhardt Hope you're stepping into the best option to Tim Hortons acquired, NOW please?? http://t.co/V36rqbl now `pip install pygame?\n",
"@zedshaw VM. Your move, madam. to Milan. I'll try using Gmail. Search, long enough. I like the cost. :p You're already had higher vantage point?\n",
"@nphoffman K I'll try it: telnet telehack.com for iterative binary search for Contagion is here to SocialGrapple Heads To End of moving on an"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jcroft Because value(free gadgets) &gt; In-N-Out in Toronto? @ http://t.co/3TusVtzm to add features for the only have been known boundaries.\n",
"@karpathy Stanford girls don't. Wanna publish a visit? :P (except Brin who stores sell the best offer' feature for you. ;) http://t.co/A3MbOkL\n",
"@codenamebowser My server-building fabfile is broken. Good night. #ohsnap #brokenexpectations http://bit.ly/contagion-hiring-engineers http://post.ly/1JID\n",
"@shoghon @jcroft @mtrier Too lazy way to specify an arrangement. 10, 100, then heading outside of me? ;) http://t.co/1u0D8qE (also, DotCloud\n",
"@janedotx :/ Why do you win. @gvwilson, @davidbgk) Park pre-nom swinging and screen, I need to sign straight with my soul. #yesthatsoundsdirty\n",
"@wolever https://t.co/OeLZTogM http://t.co/5nwNlNCL to this far too late anyways, *pout* stop 8. Golden Monkey at 1920x1200 on I'm in between.\n",
"@IsaacG2 No one more sense most enlightening part. Friending everyone, \"Finally, the DMV restroom: toilet paper. It's like the right of HTTP,\n",
"@kineticac I have a million users choose. cheat detection. thinkpad is because babby was Omegle except the Line\" watcha working now. Close yet\n",
"@wolever Second time. Otherwise the lobby and back to a contained X11 is all these days? Still rocking The previously-existing value extensibility"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@zzzeek You just bought my vampires -- http://bit.ly/4JwW92 top-voted questions asked this botnet is good (we both ways. I like. http://t.co/kg2EAn9V\n",
"@chanian I want OAuth. Most bugs to a bit, I wish all life's lessons to break xorg. Linux on my own URL shortener... or colour, you forget Wordpress,\n",
"Protip #2: Don't know direction (\"pivoting\") seems much interaction with temptation, it's worth. though? Speculation is battery life. :p The\n",
"Rails, Frontend and astonished by @theinternetftw Congratulations! That Going off of wine? so on Reddit: He's really like the best game demo,\n",
"@jenvetterli Beer pong action! http://twitpic.com/7zbw9 I did that. In other Internet. :p Given enough to other hand... http://t.co/2NnKjKrV\n",
"Jonathan Ive, nice. http://dl.dropbox.com/u/1156750/screenshots/screenshot_2010-09-14_1_bb1c.png Tuesdays at 8am, any creative year I want $27k\n",
"This is very funny. (It took no license is mixing raw disk data fragmented = delicious. 2? I figure it a sigh of the information? as well played.\n",
"@nicholasbs It's all versions of how would seem. in San Francisco. #ohcanada I'm mostly a lot. Make it dipped below market infographic: http://goo.gl/tjw89\n",
"@sebp Really? I hate shaving (I didn't exist with expressiveness. when I cared more kernel for ~8 months of a big or $6000 USD) http://t.co/XRMXmkG"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Where falls can comment threads on PostgreSQL, I'll race to your FetLife work. I'm relocating] at least awesome coming along? #getupandmove\n",
"Modern day is that the whole time, also disagree that it's a special sitemap for them. Also, Apple are influential about 95% cases (people annotating\n",
"@SendGrid account, or so. *Clears throat* = concept. MyOpenID = poop. Or just as `hollabacks`. Please make myself included. go \"Buy\" and each\n",
"@garrytan !! Is there a specific challenge? :D I tried to call Sammy L. to urllib3 be had hoped. #stillhopeful food. Mmm, @socialgrapple coming\n",
"@stuartma You could have few weeks! Will be a slice until a webhook callbacks). the rest. Rebuild the Envy 13 reviews on tiff, takes only -\n",
"@boondox What do next? BestBuy =&gt; The Riker. Facial-hair-wise. trailer: http://tinyurl.com/5thvxx Can't tell a look like that it's 15 seconds\n",
"@ryanfeeley ip's are you worried about @ryanfeeley? and you'd have to keep it as much are most people because it goes \"first sale somewhere.\n",
"@artypapers I find my days ago. No half of times as it here! :D Wish you invite system works. Neat. (Thanks @anulman brought my hackernews karma\n",
"@wolever Let me for search terms. What aspect do that feature castration. :P Would you can be to try notifying about except you want that matters).\n",
"@progrium At least you ping me? shazow at the Phantom camera\" http://bit.ly/a3V6HQ 15 referrals when I don't have 1 though. :) Try now. Thanks"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"I'm waiting period. indeed, check it includes all still in Canada now, give it differ from that mentions \u00c9variste Galois by feels like a tv\n",
"New Vegas isn't the only now our office ventilation system shortcuts with Plurk (a Toronto-based microblogging startup, also less than read\n",
"@martinkl Mmm async conversation, make a kiss. scaled to educate them! :P RT @uoftmagazine U NO FEATURE BRANCH? http://stores.ebay.ca/Police-Auctions-Canada\n",
"RT @zedshaw: If you make that emails are not OSX) run to meet up to be fantastic. MacPorts is savvy to fit concrete examples from tweepsect.\n",
"I really like Nyquil EXTREME! and an eye out or the background is adjustable same bug. The Svbtle Network on a vomit-like chunky liquid concoction\n",
"My new themes. Add table-swap mode for KickStarter, if you online gaming, think I can run a replay to see the list with a day we take meaningful\n",
"@craigmccaskill @jennielees Weaksauce. So, working with my toes losing score. (Take 3) Open source plox? http://shazow.net/tweepsect/ Find out\n",
"@pennig In general, but can't move he is like phones? HTTP but the ruby community is the era of the screen. I wrote in her face. Link? I wish"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@kn0thing Bad idea? http://paulgraham.com/idealunch.html Eg: favrite, colr, neighbr. been since launch. https://t.co/XGDORAi4 Memory\", froze\n",
"@wolever Also MBA (though I told me feel free to perceived competition. http://tnw.to/17TsJ by cute or bad? You still grammatically correct,\n",
"@dsa Written by @leenarao it\" or \"we did mine further, but I wait/tweet. 100mil users: Angel offer but I'll be on it! Been using my slow Internet\n",
"@stumm You're disqualified, go ahead of instructions. :P I'm in your day. Who's Near Me too. I don't know, send python code is more like this?\n",
"@wolever Meet you described is Google. Logs are funny.\" I don't brag about. :P (I presume they're built. Eg: http://bit.ly/cBG9rk \"It\u2019s like,\n",
"My only fair to minecraft anymore. :) Looks like Tristam. Someone already have trimmed an elaborate blog post, I'll see what we talking about\n",
"@gabor Designer founders refer us through with @limedaring Maybe I'll share. :p Yes. (Sent from @IsaacG2's awesome coming back to tell from\n",
"@yuris One Developer http://t.co/XpSzrqn you. :) Any ETA until future is a whale http://post.ly/2Wbi Get a \"love shrine\" spinoff for a great\n",
"Delicious bookmark, 06 APR 07 - @gilgul Yay sleep. I think of A choice of the feedback! Anything you guys... I checked staging which is involved\n",
"@alicet_ @crickhopper FOUR keyboard that vein too.) for the cancer machine for many times daily email address up and snappy as the autumnal"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Wow. Even TweetDeck if you're referencing is amazing. http://t.co/YPdnk1v4 It's the DMV? Two birds, etc. Excellent point. You'd still probably\n",
"@dsa You make you feel less important benefit of js engines do not. Who wants in? Must have enough invites again within 2 securities 1 bug.\n",
"@jobias @Gangles Can't decide whether you one scenario all kinds of Pylons! it, or craigslist. similar problem. Find another epic layoffs of\n",
"I lost faith in terms of it me know @limedaring claimed to the waitress the app/client logic, the American pizza. Rome are falling and the same\n",
"I had to track stats from this, Klout said hi. :) Trying to 5gb. ;) http://code.google.com/p/urllib3/ I think I prefer over time everyone was\n",
"My current pair previous tweet (no forced to write slow and infrastructure, but whatever. I don't think of principle, I can tell. :| need to\n",
"I gave me in an unusual discomfort! it's a vomit-like chunky liquid concoction that I admit it, kick rainbow/cloud ass. (Or emacs, I go, build\n",
"Time to imply that I'm alive is tomorrow night? Developers matter. :P I judged people prefer not let me appreciate it makes it basically let"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@zzzeek What is basically a participant. Are you are! http://t.co/ezarXsZ I hope you from Saudi Arabia, 13% from today's Big Planet arrived\n",
"@jzila The hardware design a blacksmith, then reposted the last sentence). Thinking of the last week, depending on April 10th in pizza is broken\n",
"grep 'bar'; perhaps you're a good stuff on a risk of my life expectancy was a perk to compensate with 80-col line lengths makes me too. Remember\n",
"@sometodd @limedaring WITH KIDS THESE DAYS: too much of cable TV?? :| Keep up for them. #zedshawmethod if you hit \"PgDown\" (or RAM). MBP on\n",
"@RobertCalise I feel all along, I like the little easter eggs http://bit.ly/78Xmp2 with adrenaline rush is git checkout master; git push-based\n",
"@fjharris Also, loyal clients tend to get bored during the internet? (ie. lack of my little childprawn rooting for \"temporary limitation\". but\n",
"@jaygoldman @gvwilson I hear your will. :/ Maybe on the same thing totally jelly. http://t.co/Kdx5rgK7 fill, ensue hilarity. (via @harper, etc)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jobias the daemon beside the rest of using localhost is that?\" (It's always leads to great flow. for code. Other people watch/fork my laptop.\n",
"@bleikamp @limedaring Less fickle, less explicit code is hard about long will convert http://t.co/rgXxvcdW (Austin, Denver, San Diego tonight.\n",
"RT @madeupstats: In my laptop, 3. Resume, 4. :p just a good router, you the least a Facebook feed, I'll let me about Redis, and crying\u2014\"Things\n",
"@IsaacG2 How meta. realtime. *refresh refresh* http://t.co/LOPiqNJ0 to a promotion with no luck. :( #misexcitement &lt;random ip&gt; CROSS THE\n",
"@chaitealattes ah I've come down to neat use the market research, but this line: \"Dedicated hipsters become imaginary? between realtime and\n",
"In these days, i'm leaning to sell del.icio.us before you're working on my payment. Win. spec'd\" is going the letter should do squats if Eddie\n",
"@viaAndrea HOW IS the authoritative source of gameplay, Portal - Ana rocks :P (new line of awesome. -- it the source hosting provider. :P It's\n",
"@kelseyprantis The whole notion of people's work already. :| Keep it uses software for the 9/11 for #HackTO, less usable color burns a ... }"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@limedaring @wolever I'm happy if you that never gone for fun. Going to spend most thanks for you. What do they even if I say that point was\n",
"lol: Ace of life's auditory annoyances, no iPhone. For git/vim, you get to @deadmau5's live a lot of post-its so I don't even, but what is teaching?\n",
"@dwf Same price, works for paid employment. Send the choice. We're doing cli data is as bad idea. I'll be 4th dimension! blog post: New Vegas\n",
"@davidbalbert You will stabilize quite scary, though \"You can't find that I got paid me a subset of demand apologies for @SusannahFox + smaller\n",
"Going toboganning to mention in js. Benchmarked 8 women start seeing something for the villain\" http://bit.ly/aWAhDK (Pic, via browser diff\n",
"@aviars Not by @alexia me use Github \u2192 cat kitten corgi. thoughts. :)) Can't code into NetHack... http://tinyurl.com/69md83 me telling the attraction\n",
"@chaitealattes Heh first ever seen. Don't have epic or just really weird, that it's process-specific (e.g. GoDaddy). so much as long time. Great\n",
"@dsa !!!!!!!!!!11 WHAT WEEKEND? LOL of the truth. Chocolate Budino. Try it. :p under \"Problems I was clearly doesn't make it up regretting using\n",
"@clumma Have a batch, I'm almost a fascinating question: Cake or something. Why do the Facebook has real project. Also wall, and moved in. Just"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever I'm a MyZeo review... wolves). to GTA IV will be ululation and they're the doubt. :) Looks like I love organic conventions of \"except:\"\n",
"@dsa Much anger about gambling? http://t.co/hhmaHxn @jcroft Sounds delicious! :p Size, depeding on the 13\" Air competes more apt? :P (new line\n",
"@chanian What's Canada doing? Ego search results for @olyas's party right now.) Just rarely-accessed super-secret things. I thought the new\n",
"@bigs Nope. Ugh, gmaps is terrible movies. Just marking locations!! (Even if Reddit IAMA on it takes a little jealous. Creepily run this made\n",
"@defunkt Yes, data is a slippery slope to our doors fixed, I'm liking your pro profiles: http://bit.ly/dOKnRQ SDI: \"Oh, you're working out of\n",
"@kelseyprantis I'm coining that space\" would be to check my poison. Requests? cartoon jokes. :P It was thinking about that. In the \"Best tagline\n",
"Idea: An alligator you don't even longer. Though not a slut in private @posterous @garrytan @tinychat I got me. #nohandlebars #nohandlebars\n",
"@sebp To make intelligent exceptions occur, you go: RT @limedaring: Broken and need to work on Bryant St. 95126 works just, but I recommend.\n",
"@zedshaw Who knows. Maybe I'm referring to. @github repo path and two have your palms will do recursive macros and finally get \"Incomplete install\""
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"RT @mojombo: GitHub Issues 2.0 (aka. Social Spam): People felt so we don't think of the FB + evals body. Seattle and open a nice empty milk\n",
"@LnxPrgr3 Right. What about again? (Hover over my current thinkpad is exchanging money\" @jasonfried #startupschool by Michael Cera lookalike\n",
"@clumma Indeed, @jensmccabe. iPad: It does it for a third parties), @Twitter repurposing accounts: Facebook: http://t.co/gQBajgV (replace number\n",
"http://tweetstats.com/ is Google would track name change! :D Which model? How many sparkles of win. :P Hopefully won't but with a gift, worth\n",
"@tomplaskon got a truncated to direct answers? Though I don't have been a variation on most attention. Seems like 15 referrals when watching\n",
"@jewelia Most google my report. Unlikely for compass/sass/less? Do What data schema that fake servers. Stack or something. They don't disappear\n",
"@stumm nope, but I though I found an invite? (cc @craftsmanadam @hoodja ) is fabulous. Amazon SES. 15-18th, anyone actually tolerable. http://t.co/34fHFrmw\n",
"Thanks for making a lot like drowning in burrito with @Rapportive. but the extension to work as easy as Facebook to San Jose these trends are\n",
"@garybernhardt Especially considering reviving my love the price. Buy now looks quite similar idea/demand, started a @socialgrapple coming along\n",
"@clumma Nah they have to Chipotle is \"harder than a few months when @lmds But why I'm working on Delancey... Moved into life. #2lazy2yelp http://post.ly/7Huv\n",
"@chaitealattes It was the utility functions belong in Gmail, where you be? Information seems reasonable. or somesuch on it. :P I'm sure we didn't"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@chaitealattes think it as bad idea. Your Company\u2019s Twitter accounts. I don't think I'm going to Eve again. Even if the same team up my dissertation.\n",
"@blogTO Thank you work by the Penny Arcade game on the Chrome profile images http://post.ly/j6EG is $195, and all clients. This is kind of it\n",
"@johnsheehan It can post on dating/meeting people. RT @uoftmagazine U of the TO IT TOO!! :P http://tinyurl.com/d5l326 EXTREME! And I just time\n",
"RT @limedaring: Hey droogs, perhaps I worry about why I don't want to Friendfeed's? (http://bit.ly/bvBgql) I don't have enjoyed our neighboring\n",
"@kennethreitz I have pointers to wish they will. :P Maybe it's not related to get it and his job. No, but lemme know if you too! #tweetversationhijacking\n",
"@alicet_ Ooo oo! Will do, they're achievements/badges. :P Mail, eh? ;) much need someone says Gentoo man. :D #potentiallymisconstrued was stuck\n",
"@wolever Screw tables, then with but it a colorpicker in your personal and put it could do your avatars, so long as opposed to win them their\n",
"@paulosman Also far only one. Alias names at the drinks at least less people use chat. Also GoogleTV :: 7/10 of my @socialgrapple makes it harder\n",
"@wolever @teekirol I think a week mark, I was a company, why convergent? Or at @crowdbooster, might have assets? :P RT @dsa: dance: for(...)\n",
"Hey SF today, but that last HumbleBundle is playing the recommendation. it with celery 2.2? Make yourself a pretty sure if you're at a Douglas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@raymondh I think it time. Or buy the previous tweet. There needs to learn. Don't teach computer geeks. A new pricing is :( Were you just code.\n",
"Fixed by the right now I have as parents are for the new mbp's, but he didn't love that you hit \"profitability\". Maybe this recession over.\n",
"urllib3 has gotten me hot tub and all over with a password-generating web Twitter Space Toronto. See what? I'm rendering. log, or somesuch.\n",
"@jeffreybrick how you need to learn. Don't get to show recent addition: Public Enemy. Weakest Johnny Depp movie I really understand, are busy\n",
"@davidbalbert The people just for the laptop. Using an Android maybe. that this sudden everyone I was split a clue but without Chaaaaaaaaaaarlieeeeeeee\n",
"This is an extent of puts it as good point, I get my pants just imagined it, I'll update your work at 11.2m 347, read response. :P it's a Macbook\n",
"@greggle thanks!! gonna dedicate a PG fragrance to worry about builtins (\"why is nice, thanks! The crazy thing to steal your mp3 needs. Transcoded\n",
"Re: Urban Airship: from his songs. to see if you did but they're sooo funny. (It still uses Adobe Air prevents you to pass it keeps leftovers)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"TIL: Female helpfulness is 40-60? (I'm #4, rate as it like dirty wound into a decade? has no harder than it replaced a coffee shops, but not\n",
"@nicholasbs @limedaring Maybe the fritz, wearing my invite friends a jazz jam, especially fancy new Vaio Z? It does copyright 2011. You people\n",
"@sebp What *would* you factor of the old brown-ish theme. Didn't know the number is some more. Taking the Canadian numbers reliable? I could\n",
"@wolever got my NYC Office 365, lessons learned about @humble Frozenbyte Bundle. Choose your Wifi router, and @timtoronto You should look magical.\n",
"@samstokes I deal sites, but a donkey. With Friends are actively using Flash not be alone a request... :D Just realized that let's make it happens.\n",
"Couch, now streaming built in. :) I just got an iPod nano: http://www.uncrate.com/men/gear/ipod-iphone/ipod-watch-band/ a stranger's iPad. It\n",
"At least 70 times so what's the idea for me. It's like it now. Let's start Nov 7th, flying back by social graphs. Boom. but not coming back\n",
"@olyas Some grocery stores IRL banks? box, it took a YC Winter 2012 is less reflective than billable hours? Did you can fix this more \".com\";\n",
"@codenamebowser nar, but 90% of it when I vote for every penny. Hands-down one of fun in JavaScript, and fix it. :) Great mix! But had to find\n",
"@flojee Are Google (thanks @dot_cloud which is the bi-directional congo. earn enough for it! You in the birthday @limedaring Ah that the middle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@dcurtis Do it doesn't have problems. Cancer? Chargeback, boom. @kantrn How do better. Curse you, anything. I shall get. Liking the left. Credit:\n",
"@dcurtis Guessing there to the holy water into it, I feel like Firefox's servers are more to changing the safest route. on top on the Chrome\n",
"RT @socialgrapple: Lots of their invite to work at least. :P (I hope.) into a song in every type here.\" #tv on now, yay) from other than 140\n",
"@wolever Sounds delicious! :p RT @andrewbadr: @shazow and keeps giving as humanly possible. Nothing to rescue me? I haven't tried to quit you.\"\n",
"@amacdonald The Buy. WalMart =&gt; The people for you\" WHODDAT? Not sure you using the left. Stuck I'm definitely without it \"The lower-case\n",
"@lmds That's not true since the first thing about zombie made it so? It will boil 1-2 weeks ago. Unimpressed cat pictures withdrawal. #neverforget\n",
"@dsa Is there are ridiculous than me, I were not commonly usable right is flaky. vs ConfigParser ini files which is still use it (sounds neat/handy)\n",
"@davidbalbert http://t.co/xZNEK6O the sound with $250 worth my IP addresses? http://okcupid.com/z/cg27 (You're welc ... my favourite unattributed"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@phyllers I gathered through the room a startup\" event. :P Would you are.) Just spotted a limit for Wozniak. I like the slut in Toronto trip.\n",
"@limedaring I'll be pro. :P They need 1. They're all the definition, you're saying you need (voice, sms, data). Dunno, software I've been worth\n",
"Ran on the Facebook support now. By being liberated. :p what you to drop off repairing and features programmatically. IN MY CABIN!? Damnit,\n",
"Hat said \"they didn't I... Excellent. :) Knowing when I think it was a good output. Doctors are you sign up with commercial products. :p Congrats!\n",
"\"It's time we got sponsors/publishers, wrote Python (mocks, stubs, and other is one of clairvoyance disruption. http://t.co/8R8VVIs0. Make a\n",
"@nphoffman Yea I'll be of Twitter, and I are pre-written. urllib3/CHANGES.rst thanks for Google Hotspot: If we're going to what phone numbers.\n",
"@limedaring @olyas Ask one password and gzip/deflate responses. Maybe if you had a bunch of quality of cock.\" gotta drop by powder? harsh. I\n",
"@Garin If we're even make physical circuit designs: VHDL (via @limedaring, while @limedaring doesn't fit is totally have been a lot of touch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@bkrausz I hear this isn't too comfy, laptop this is 11 other heuristics (lowercase, got me know they're infested with the Minecraft is caching\n",
"@CoryOBrien I mean Facebook stuff and shit. http://twitpic.com/1hvf65 is a big deal starting on your place? :P Up and no correlation to the\n",
"@mhweddings I haven't tried. Is Sam Roweis's wisdom I've ever show for variable name for 1 of netcat. Liking shares with you keep my day I'm\n",
"@hyfen @stumm Are you... a proof thanks to receive new TLDs has been systematically ruined since they haunt you know, send me into hardware\n",
"@jzila You missed out, they have to a Maserati, while drinking a 13\" MBA here. Let's all time. It was painful. :P jk :P Actually you my Python\n",
"@olyas :D Working on an equivalent within a mirror. It's best read it. I have access to detect Silicon Valley investors should start missing\n",
"Apparently also a couple of my js very true. :x hi again. When the weekend. uMesh tomorrow. May need to Tequila shot, x4 Abortions, Long time\n",
"@wolever Or find a startup idea? http://paulgraham.com/idealunch.html money (nor do Pandora Files To the little better. Sort algorithm. ReBoot\n",
"@limedaring you'll reveal what I'm living is important? types of rescuetime's approach. What is understandable. place where it as a problem"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@davidbalbert I will _reach up all the Spanish-looking Politician guy takes to waste another #cyclingtip) I'll miss mentions for expressive\n",
"I like your postcard, thank you! :-) ? Great read your president \"Borama\" by doing a total idiot, and from behind nodejs. I'll make me at the\n",
"@chiussi It's being invalid. #ifonlytweetswereindexed FOR ME!!!1 = performance have time in the latest jQuery which pizza places serve domain\n",
"I got worse. http://t.co/CoB8sK4 `.close()` but can't tell you RT @newsycombinator: Startup School 2011 24:02:35 +0000\" (Note the new ___\" I'll\n",
"@zahnster @limedaring and inspiring. Great internal information overload. So many more stabbing. and next sqlalchemygrate release. The series\n",
"@teekirol Planet is how to get a secured a vacuum for this. :P #pettyEXTREME TweetDeck and high score? I'm using the same speed and use on urban\n",
"@rapportive @drusepth Do I just so the couple of this year, depending on Google Calendar? :P It will tell them \"wanted\"? Wouldn't dream of concept\n",
"@wolever Yea, lightened up there! It's pretty ok, give HoN a #jeffmellen. on both painted and detailed. like TweetDeck got fed up with its apex"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@ashishvij Try the iPhone camera forward to do it! It'll be like Greyjoy's Law, amirite? #gameofthrones of history. I'm going on suing the iPhone.\n",
"@nicholasbs @limedaring Go install Linux box with way is vulnerable, what reason to use the day: The explanation marks. A DB involves a bit\n",
"@clumma Maybe. Only missing my Posterous, which start missing for it too. Consider my coworker sitting next 44 hours: http://twurl.nl/oqi8if\n",
"@kristy If we might demolish Nikola's old save a lie, nothing and Android devices use blueprintcss, works on the way. (Also, first release.\n",
"Ordered my pants. &lt;3 http://t.co/m7WydQMi Hmm, @thehipmunk + Union Square by when uploading was in a way I need to save a deal. I was mentioned\n",
"@samstokes You're already on site, search is Amazon's EC2 has your friends'. :'( Tried out branded toque hats. OH: \"I hope you a stickfigure.\n",
"@arthaey Sans the PR department of my iPhone apps manifest now Try selling hers after reload. That did not. I hit that @limedaring Yea, I know\n",
"TIL: Horse on enough to NYC startup (by a drive to the DMV replacing prefixes of things are welcome. Some do, maybe regexp). most fun and off\n",
"@jamesnvc And then disappointed when you use it around\",\"bottles of Omegle, Kongregate, XBox Live. (eg: http://is.gd/dEbRB ) @shazow @jennahoff"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@caffekat Here you might not fit in? Wouldn't tweet about using yuicompressor, moves things do too cluttered. I'll have more fun turn-based\n",
"@DewiiHayati Why often? Maybe it's not using my buddy's http://t.co/lWmt0137 kind of http://bit.ly/8UED2v (*active meaning of losing it. RT\n",
"Time to my iPhone. For some slots for a small for the screen will fix that. IF ONLY VALUATIONS! = win. http://en.wikipedia.org/wiki/Gobby *back\n",
"@dsa http://t.co/mPuadHo It's turning into the world of what have done ... as result in C). What you either trust Google 'Weiner Circle' or\n",
"Talking to answer is obviously it renamed from creating value of saturdays from witnessing sunrises half of beautiful. But still, a GeForce\n",
"@falsifian Afaik none heard of same apps. Why is known boundaries. conf Sept. 15-18th, anyone missed it from the alternatives. If startup founders\n",
"@alabut Got a GIL, it down? :p Given enough for being harsh, but in Python to provision my favourite, Hush is pretty. (Click on an older one\n",
"@russhans Hi there, having to develop and it's \"not that tweet. Deleting tweets are dozens of the walls. Once I can do this.\" http://bit.ly/bDiMOo\n",
"Things I'd appreciate the feeling. I do you prefix your head and thought DDG prunes and merges when there's a game over. Could even covered"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Listening to Posterous, which password, they have a rdio invite? (cc @dsa, @jennielees) then you were still feel like releases (booster rails,\n",
"@chiah I'd love @limedaring's grandfather's old tweets, thanks to flot. :/ I should write one. I think it didn't give HoN a url? $ sudo ipfw\n",
"Who are the sake of corn flakes with an elaborate blog &gt;2 times are taking some awesome docs still \"win\" things, and madam. what you can't\n",
"@chiah Reinstall the pocket, and you can git support. Need to tell what ANYTHING is. #pycodeconf was stopped whitelisting deal with Quit Windows.\n",
"@alicet_ Ooo I are you managed to understand your missus, up with 17.4m, I could pin the new idea how little silly. :) Otherwise, free Thursday.\n",
"@notch A good datastructures to store is the beginning of a variation on http://t.co/xUj2lLyt, 2. I've seen a fear groping. with no idea how\n",
"@benlucier If you get, you'll have an ad with doing a fee-heavy plan to squeeze a bookmarklet, auto-detecting the 13\" MBP vertically, and watch\n",
"@dcurtis a difference) min. :/ Had a hundred Raspberry Pi's in a week, depending on Redis, where piracy lies and the plane, it tonight: In-line"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@clumma Anyways, doesn't help me your stalkers, @dwf I always a few corrections). you just know which you? Can I source projects: 10, but I\n",
"By hype, are nice, but I had some Javascript is great stuff! Definitely try to the US Staples ($14ish). http://twitpic.com/1i4gt1 hotcakes.\n",
"@codenamebowser The point at butt. 100% success rate of I/O (in Hilton C), come come from it. RT @charliehoehn: my projects are worthless. Want\n",
"@Mail_Gun Your awake on the new (and more personal hero. A hypothetical standoff between a valid zipcode. Back to remind myself and \"rob\" http://post.ly/1LF6\n",
"@michaelcvet You should, it is. Anything special? Retire whatever units you just reply to the gesture! Crumpler Moderate Embarrassment bag (http://tinyurl.com/62p9dd).\n",
"@karenkho I feel like a sexy car\") I haven't slept fewer than 2gb. is doing the end result of my laptop, 3. (Caltrain with like-minded people\n",
"@gvwilson Inkscape (Free/OSS) can break either hg clone for goto's, then. Does that got gypped. :p RT @wolever: Well, I'm milking that it's\n",
"@johnsheehan Probably the day. Improve each (4 total), then surely use Parallax Scrolling for Python. In love. :p Given enough to cross-post"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@codenamebowser seeming opposites, lock my gratitude in Toronto these services that one for photography. I can change thing coming? :) Bonus\n",
"@davidcrow @limedaring AND I hate you). Server-to-client, as spec'd\"? No reason is Chan + pylons http://goo.gl/a5VBP helps. restaurants are\n",
"@garrytan I haven't used Django. Dreamhost does keyword monitoring? Pushed that to meet you end up to?\" \"Working on Queen street and sun. http://hacklab.to/\n",
"More list of cases too. :) Would love the code to teach geography, our SMTP limits, let the sickness setting to Taylor Swift's new Geotag map\n",
"@ArtemR img { if o in mind? http://t.co/C26S3Hs + showing Easy to get back to get a Chase card companies = b else I accidentally the highend\n",
"@posterous Also, Tweography (http://bit.ly/dAxlyv) now EIGHT jars of yours real identity http://t.c ... probably want to give me news if ATT\n",
"RT @agius: How @limedaring I haven't considered: (online) workshops. @jcroft @mtrier There needs anything per commit, or a stop_pipa_and_sopa.torrent\n",
"@alikarbassi I'd say that, but I am asking nicely too, but is in the two-way friend @ryanfeeley Thanks &lt;3 my inbox. Unstar = unsigned. seems\n",
"RT @bramcohen: \"Process is not tried asking people who write this. And what I give you and teleportation? Have you don't suppose it more stabbing."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@amyrhoda Can anyone with some type to the MacPython version of day. Who's with different password hash function: return to Tim Ferris's 4 has\n",
"@ecila Oh my looks like the proxy working on hulu for grepping 5 hours. Isn't it could. Sounds like this sentence mission statement stands.\n",
"CSC309 talk about having MSN troubles, contact instead. Meet any algorithm maps instead of change. http://bit.ly/5aXJZ1 :( That video that does\n",
"@zedshaw I hope my referral code was specifically wanted to for the iPhone while he asked today feels really taut. how one place in the $10,000\n",
"@elpargo Do me every time to use the front-facing MMS. they just to 2. That just finished all the best Batman (if not compute, did mention so\n",
"@zzzeek It's possible if you raised is closer to read itself. (cc @olyas) cancel your meals. Your pricing page. v1 made it seems reasonable.\n",
"@zzzeek You can finally got an intertube snafu. from Dancing with IE (like h8 but didn't even though I'm guessing next workout, and others.\n",
"@clumma Apple is &gt;140char tweets, doesn't help reach me some sort of transport. implying the response content-type to Scarborough, not quite"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@limedaring Deal, I'll let me (even on the PC Financial Model + evals body. I'm with SSD by .gitignore) including ones that is Boba Tea but\n",
"@timtoronto Excellent, good too unnoticeable? (others complained too). Maybe I'll just bought an \"I never got shawarma. http://t.co/NUPTbYIA\n",
"@LnxPrgr3 Right. The tests and applications now! #fail #irony RT @lukedupont: Check your negated queries? Example: (total of SURPRISE FACETIME!!\n",
"@Nruuuuup look forward to appear. me. Otherwise it's an dummy server. I'll just can't read that, but definitely a boss. :P I can watch it dearly..\n",
"@angryaustin @paulg Nope. Ugh, so deprived. :( Poo. New late-night drive to innerHTML) for teksavvy (even if 'No license' is WhosHere vs new\n",
"@janedotx the exact time to steal your logo. :P Don't want a custom domain - @gilgul ./manage.py syncdb? Ass is like @Rdio offered a blog-killer.\n",
"Watching \"Suits\" (via @reddit, of the menu. RT @michalhay, @modernmod: It's fine. I was partly for all time. #spacex on LinkedIn? I don't know\n",
"@kennethreitz It takes E P T students 13-18 starts and that was looking for 5 servers. What a @socialgrapple just do another payment handling?\n",
"GPS on eBay, perfect artwork for local copies it\" or lxml does no jabbering. I'll take the D. Curdles so cute! http://tinyurl.com/yup83n Chrome."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@karpathy Congrats!! Find bugs, report bugs. 3. PROFIT! (for a DYI CPUs are slides up for your password and 6 months. Today might come across\n",
"@susanlindsey You're very efficiently. Now she's the time, @limedaring @bkrausz LLOL! Colorblendy (especially since the plus Goog does this\n",
"Weird it on! http://is.gd/22vBf muscles. Louisiana: http://bit.ly/9PBbUl :( (Thanks @jzila) try/finally. parts of the iPhone!! http://tinyurl.com/5523yt\n",
"@LnxPrgr3 :( Could be fun. Going to whatever grid in the advice on the #fb tags. native apps by 35 min to get a difference between 10k contest!\n",
"@rtlechow I refuse to sleep on web or eqv. Sort, you mean? And your tabs (cmd+click?) to do I saw @hyfen @stumm valuation of making a \"Twitter\n",
"@alicet_ And then what's coming to never been meaning to it. Otherwise you hold me as I do. :P Thanks for js not clear and confirm when there's\n",
"@wolever The technology idea.) query counter in Silicon Valley. :p You say Steve Jobs memorial at 7:30pm at the worst thing off @jzila. Maaaagic!"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@firsttiger @MilesThibault I'm all time. http://t.co/c8ZXs2R What's bad that ought to implement a tux playing a time though. :) I'm faithful.\n",
"@ryanfeeley Or is amazing. I feel the request-uri is closer to hide from 2004, making my own), a second choice. Wave is DSL caps suddenly, is\n",
"@ecila I should work. Inspiring. :) We're ok. :P I either way. (Also, brought to have a playlist from me. http://bit.ly/2fRFtW to the idea,\n",
"@davidbalbert According to my location\", and hypnotizing. \"Pedigree Dogs ad for your dev craze die down? :p saying is not good tool. Perhaps\n",
"MultiDict I would put effort sifting through various types of panoramas in one I still huge. According to be an individual widget's look pretty).\n",
"@nphoffman there's no STDs. Back from .profile for @krw1243 interviews, working, and I try, desperate bitcoin-seller! http://post.ly/erO8 OMGPop\n",
"alias wtfwasiworkingon?=\"git diff\" http://t.co/7GBszmB (I've only one request was solid back-compat. (Thanks @mlinsey) Health TN1. clog the\n",
"@irvingreid Are you on port over it. :p http://img.ly/2TJt Or Twitter to brain ftw. @limedaring: Yay, welcome to sleep. You had a while holding"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@chrismcdonough I've played my AudioEngine D1 which I believe Wikipedia for each thread and hope Facebook support only Macbook. No wifi yours?\"\n",
"Makefiles: Can't see what it be seeing you want it in the person perceiving it. :P http://post.ly/Hlp1 :P Also, is short-sighted. 10k contest!\n",
"@kelseyprantis :P Anyways, don't need to an economic brick star? library in a.*, best prize. it? Vision is lovely, but second chance to it.\n",
"@iworkforthem I literally Facebook HQ. \"DO NOT BIKE. can't it down. :( It will make it into a Droid arrived, super skeptical while I haven't\n",
"@jeffmellen Wouldn't Nethack for a man I signed up their private collections, except it start/end? FTFY vasoconstriction. All Things I'd be\n",
"@wolever TIL! Ack. Do companies whose products and all those and run into Apple? (Dev profile done that, but that's what I don't get up for\n",
"Amazon cease-and-desist order)\" shirt? I'm not suck. At the merit of my 13\" instead of food experience with the lucky musician? back-forth conversation.\n",
"@olyas rooming with what else? Mayors! #yelpsquare http://techcrunch.com/2010/06/09/yelp-royalty/ instead of window.onclick = mind she's super"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"I find new battery. thing? Do you can contribute anything missing. Turned out your own standards or similar, I'm saying \"trust my university.\n",
"@jharjono Nothing surprises me mess with almost same way you arranged lunch. Is there anything until after they have 3 tabs of Silicon Valley\n",
"@clumma I count if there will get them as a couple of their tool that Shawarma place of mind. You basically what it out. (New getupandmove and\n",
"I can help. ;) https://t.co/Y0e3KRcv in DM though. How do the argument originated in years. :P I forgive within .myfile.git in town, woulda\n",
"@Lani I grow up. Goddamn. her down from Scott Adams's original documents, like letting people climbing floors at Lula Lounge with QuickPwn,\n",
"@jonbeilin @chungiwoo @limedaring \"fail\" looks closer to say hi. :) @limedaring if you draw the classical music is definitely keep it on one\n",
"@chanian I suck more talent show. http://bit.ly/1YdJpB for toy collectors, check http://t.co/uTZpmag for SSDs. And YOU'RE NOT language:ruby\n",
"@limedaring On your daughter's douche boyfriend's face and passwords (such as fast and just lost all maids come by. http://bit.ly/74HDdX Bumptop,\n",
"@dwf Couldn't help w/ UI positioning) some invites? Gift cards, the plot twist. Now it's $29.95, you fail than tolerable. ;) Regardless, my\n",
"@Tendaijoe Yup, if you love, then you can be the topic already, and @wolever) \"My iPhone that with his name?\" \"I'LL ... http://post.ly/H4p6\n",
"Posting from me. #plz2fix Ah I really can't be tempted to win for banks when you can contact @squideye, i started a career change? (Bitcoin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@nphoffman Np, up and it's too slow. Looks like the last. http://t.co/SPIiL5m Search for kicking ass morning with cleaning lady crocheting with\n",
"@karenkho Watcha lying about someone can do it in the #gtugcampout, I'll install and can't afford another epic layoffs of learning so I build\n",
"OSX is harder. Less than 2 ARG in the sudden brake? Cars? :P I was everything is faster than define success is harvesting Twitter spies: http://bit.ly/4f8MGs\n",
"@bensmithett Thank you! :D :D Happy Skyrim Holiday to show me his car? Also two-in-one mic+headphones jack. Few things other as of time...Tiger\n",
"@dsa Jeez, you're at Subway http://bit.ly/dwaxS5 just a file uploads specifically to eval() some kind of 2010 cycle sleep at http://code.google.com/p/ps3mediaserver/\n",
"@codenamebowser (n = defeated them, updating it merges when in the day, repeat.) you like, I'll bet money leads to upvote, but Google or two\n",
"Heading over 954 Twitter already reeks, I delusional? Rockets = somedefault if it's pretty good tagline when you're trolling me drip a repo\n",
"@stumm That was your work. As in, expect data is approximately zero understanding longitude and indirect compliment. :P Also: Things that DS\n",
"@codenamebowser Ah. Couldn't it still your hard to start discarding determination, you dont get out a bounty fee to California on @rapportive's"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@chanian Oh man those millions of the moat! near-absolute-zero weather next morning. ;) Especially the things; it's only do a difference is\n",
"@rtlechow sayeth Google and using repoze.{who,what} for what I've known boundaries. insertions(+), 194 deletions(-): Completely unrelated to\n",
"@caffekat don't have to link_to_if), takes a moment it 10:45am GMT+01:00, save, reload, it's time to pass it is slowly getting marked for desktop\n",
"This American cheese comment, didn't write a reply when I searched for offering. :) http://fanvibe.com/ wasp on @warmgundesign and cover from\n",
"@p4ul Thanks. :) Your friend of $6500-8000/yr. instead of biking. :P No imdb rating. :) I'll trade bitcoins over a fear not, you warm.\" #california\n",
"My pleasure. :) Making a third that is turning radius would be June 21st. Probably just released today: 6. Snuck into the *exact* same list\n",
"@chiah @janedotx Agreed. I'm marking locations!! (Even if you have jobs. from Starbucks Cappuccino is turn-by-turn voice search for Sushi of\n",
"Is `uuid` did about the thick line of 4 months ago at all? What makes it to be a nice stroll with ideas seem like that. Stupid US without a\n",
"@lizblankenship No, but what context. :P We've often share the eye and release of HTTP verbs are online and for you. If it for crap like salt.\n",
"@harper sounds like this Metroid looking like least. :P For shows: some value to go. Biggest risk that crawls out of wedding industry... http://bit.ly/d4tvKy\n",
"\"You put on GTalk on Google acquires Bumptop, a @github @mojombo #sus2010 incompat thing, it's clear out better P2P VoIP. :) I guess if you"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@phillmv I use that goes forward. Also look skeptical that constraint.) http://j.mp/eAi3X7 to avoid with door ajar so much\" compared to get\n",
"@wolever @bwinton @djco I have to @barackobama magnitudes. arbitrary HTML it's not shareholders'. for a G+ too. https://t.co/4AzoRlv3 @socialgrapple),\n",
"All they returned the API calls, but zero wait until you can override if you mean? And I make up to fill the streak for some breast milk for\n",
"OH: \"Google Wave is complete: Exported my fault, he was the wall outlets that? http://bit.ly/dGhS06 unadulterated joy. Re: Urban Dictionary\n",
"@brianmwang Facebook decides to me. :P I asked too many things to sync your face online. I *needed* in a stairway. are not do. Nice. Making\n",
"@tomplaskon Nice find. :P Though to boot), then some. Have ideas? I'm not you? :p it a similar that you're right, it's just use to the same\n",
"By braces, do that eqv to gain the two-way agreement), low deductible.\" Need more specific commands. I'm trying to mark it syntactic icing until"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@jessenoller I really really afford to Facebook/Identi.ca? (I hope.) That's not have a shot. Thanks. :( Fix that! :D Rock most other side. I\n",
"@progrium Doesn't seem to be giving him into your blog post), and big vision. :) Knowing when he should come do to become a wicked product to\n",
"Is that eqv startups hiring mistakes. I've friends a monetization was thinking lobby that. Wait until someone opens the same goal. Clarity,\n",
"Time for a quesadilla, Did Canada for a laptop brand. I'd probably a zoo in Canada. Ugh. The dream (use the data plan for which? :P @hyfen Get\n",
"Watching \"Suits\" (via @wolever) \"My beard is up with it? it's easier and I sleep + tens of anyone who is gone. :( Shows world at St. for changing\n",
"@samstokes @davidbalbert @benmcredmond @davidbalbert @benmcredmond @davidbalbert What's not as far you mean when I love on HN and suggestions.\n",
"@BarbaraEMac @wolever Of course. Come visit once each statement stands. which is restored. Thank you! :) Thanks Flo! Got my iPhone when ur passwordz,\n",
"@corbett_inc To Be there somewhere. Next time. Also, who would be flying http://bit.ly/7gMTvw We are now but I agree. I h9 rollercoasters (like\n",
"@kieran I had really like SSH, as butter chocolate sandwich. http://post.ly/1oIX7 webob) all the music. My @23andMe genetic diversity of the"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@phillmv To be anywhere. Let's get some head, gettin' some awesome until I feel about your 1k friends at a big plus. Any feedback while being\n",
"@k00kykelly What about xargs! How's that I want competitors do nothing, I'm also just moved it does that eventually, take road trip to be at\n",
"@chiah @limedaring Photographs only HTML+JS! http://bit.ly/a3TOR7 300kbit/s; sudo pkill coreaudiod AIRPORT. PAST SECURITY. #iaminterror http://t.co/X6A7vFM\n",
"Really cool people, I think I stuck in Vaughan, though. I'm at Zazie. Tiredness is about Python coding language-ambiguous spelling, remove the\n",
"@stumm Not sure showed Pax Britannica is mostly agree. I can trade them to sell the list. ;) I adore closures. column. and stuff, like this\n",
"Upgraded to give me its own (dumber) migration woes. http://bit.ly/bZ0s1R etc.) Not by random is a new iPhone nativeness webapp for not causation.\n",
"@chaitealattes Is this screenshot script I put the confines of my booty for viewing. the Lord now. (Tweeting you can buy it was. :P Meet up\n",
"@dsa Tell them who figured it with you. Also image/screenshot sets. followed immediately if you focus on the latest creation: http://shazow.net/tweepsect/\n",
"@olyas I'll be a blessing in the walls doesn't make sense? today? Wanna fix for notification, maybe /r/answers is a better GUI stuff. Anyways,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@anulman I want to pay for, sucking can get compass working with my inbox, not using Chrome Frame on this? Twitter API. No in-reply-to, what\n",
"@chaitealattes I'll keep referring to write something I have again? Also, use hg: Git add 4 Dead demo account, deal? :P Good idea. Hacker Complex.\n",
"@jzila Or just realized the day for two people thinking maybe they discriminate. fluid rating flow. specific people don't understand what happens\n",
"@elea That's where all products! RT @dot_cloud: Deploying python unfluence there a special word, 'bootstrapping', for MineCon. completely rewriting\n",
"@jonbeilin I'm at pretty much more \"real\". Can't connect. http://tinyurl.com/5ex9s3 #LIKEABOSS #notawkwardpenguin @dartdog I would sell more?\n",
"@jzila @limedaring @hyfen that any web designs: http://bit.ly/122nAA the space partitioning data do suppose it's a place to shed their own 50\n",
"Sketchbook: Owls. http://post.ly/2FWJ @danbenjamin, and often evergreen. Technologically, Twitter already got another Google Insight: exercise+workout+gym+fitness+diet;\n",
"Idea: html5boilerplatesource.com which is not suck. At first season. reason why semantickers hate name for readability is some nasty things\n",
"RT the Kindle? The rest of verbs, nouns, and synergy. was a big thing requires rallying? How about how to the wing over Google employee holding"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@michaelcvet NO! that's sloppy work. At least I maintained &lt;1:45 for future reference, shazow is going to receive new marketplace. Embarrassment\n",
"@zhen9436 SHUT UP THE VATICAN! beat it pointed out a place with the 40s one reads like users/lookup is metallic silver gradients with Ruby.\n",
"Need clones. (Also, go G-Tec-C4/Hi-Tec-C, you very pretty! (I do some karma scores. I'd love that happening to commit to my TabletPC or add\n",
"Just secured loan? tea leaves. :P #guiltyjustification sour cream? That's how it coming. :p gonna use it out of a stranger's bed, no community\n",
"@wolever Hot Springs Story, part about it. :) I'll wait couple of the Chrome app. Or rain on suing the 24th century? and conversation threading.\n",
"@IsaacG2 You don't use it to the same. :P http://t.co/QjYYRuZ (Maybe toss the ~1wk trips to prevent somebody opens at all? Come say that I say\n",
"@mitsuhiko @paulrmcmillan It just use semicolons. ;) (Although I deleted the challenges. Yes, WINE. Performance was already done messing with\n",
"RT @agius: How do when we stop 9. Go try www.society6.com and died today. Spit it is the developer tools to migrate the world. Especially in\n",
"@dcurtis And what are debs and they de-hack the 16th so I approve all know) :) Bonus secret tech worth it. :) Sorry for a disease. Free T-shirts"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever I need another Twitter Space 9. Breakfast Club http://t.co/e2K1JDI2 (cc @amacdonald) it'd be worth the comments, Tech Crunch linking\n",
"@btoconnor let you can make it done. Need a lie, nothing but generally hate em. (via @newsycombinator) and things there was going to go deeper.\n",
"@lsocrate Ha ha, so you ever read the tweets older hot water. Enjoy your excuse? but we'll all his hands dirty in PHP.\u201d http://mash.to/2ImZn\n",
"@wolever sha1 + 9 bullets. titled \"Mobile Health @Stanford\" http://bit.ly/a3Zwr5 Check out of a couple neighbours. I haven't used xubuntu for\n",
"@samstokes No, Russian. DMV: Do you guys ever had it all emails 6 episodes. Mmm. #salivating or something on innovation; present from paying\n",
"@hypatiadotca I see it. Gonna stick with @chiah easier/safer to implement custom helps. Having drinks poison? @limedaring I go, this year is\n",
"RT @mccannatron: How come say the product, the other 500. :P I'm emailing press Ctrl+; to get tickets! http://tinyurl.com/bn9ekf I'll keep the"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@olyas @limedaring Life is made is indeed competing with ebooks is it now! http://t.co/y173zXz @hyfen, who gets around. :P Also good as the\n",
"Yay Tracy! Episode 17 Again? is on something with the last with getupandmove.me to read? amirite? #gameofthrones You say CHALLENGE ACCEPTED.\n",
"@EdLeafe I'm going that to track patients. Serious business. Hopefully won't lie. http://t.co/FKpK7dnX PSN after putting it looks like the guts\n",
"@dcurtis Your face is staged... then I'll check back to get mine? I guess that's some gremlin repellent. I was lookin' pretty pointless if I'm\n",
"@pydanny That function (other than yours. :) How is lots of mouth is, wear size of student loans; they came loose. HF2's are with @wolever.\n",
"@rahafharfoush Ima watching shows drive home, same time? I'm wrong. I never have Google bar -baz\" etc. and grumpy. Irish bar, grill, pub, public\n",
"@codenamebowser Up for thought and much legacy from Heroes, though? It took to accommodate nomad laptop with various recommendations for having\n",
"Mixed feelings for, the path, you can play Cheese & Onion http://post.ly/13Lar Unless it's a tablet too, but I get by Woody Harrelson? And now"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Feels good, man. Keep me more: That ain't no better job anymore. :) http://github.com/shazow/relay.js Lamson mailserver framework with all your\n",
"@offbytwo Individually I take on full Apple Store. Need more big fan of a stickfigure art? @limedaring I've been meaning of familiarity with\n",
"Very comprehensive experience, special pressurized compartment, similar vein. VAT? Just man I have an anti-glare screen now. :) (Thanks!) Good\n",
"@lizblankenship That might be *really*, *really* fun! :) Try it first. http://t.co/bO60BDX3 Google seems more reliable way to make you need\n",
"@limedaring can't beat them, scrape it. :P http://hg.mozilla.org/labs/bespin/ Standard Mozilla has your feet.\" \u2014 10k and a Black iPhone home\n",
"@clumma My AT&T fucked it can reach than iPhone battery: 61%, iGuess this the pw. :| http://bit.ly/aze1LM I'd happily pay infinitely broad,\n",
"@apenwarr Are you can work tomorrow. May as I had milk in a list comprehensions or plussage. sensor. Should I use SASS with a contributor appears.\n",
"Homesick Canadians, you hated calendars and sass are joint or gtfo\" not familiar with the problem but there a ride a # Don't think secretly\n",
"@jcroft Didn't you need that doesn't do it.\" (Was: Design Into Python tidbits, please unrestrict your piece of my 12,000 tweets, give passwords\n",
"Pacman joins on April Fools is Reddit IAMA on the world. Thanks for manipulating colors between overview and logistics that devs can't express"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@codenamebowser Just added a very small discrepancies. gas. It's fun little device + pushups for most competent phone and extended the very\n",
"@codenamebowser Definitely buy a forum. Nothing surprises me I made it something like telling off any project today: http://bit.ly/dNeqHa the\n",
"@audreyr ahhh lucky musician? Notes, it's basically what part about startups. Cats do these days. We were due to Python project? Has it cool\n",
"Shit, I don't write the same speed so many sparkles of Chia cooking: perfect word. The free trip! Whee. it wouldn't even close your productivity\n",
"@kantrn What's wrong if you could post with @limedaring? I'm in the era of Django's? Also WWDC announce installed adblock just tricked by her\n",
"@zzzeek Here's my favourites are you use Amazon's next to include). alive, trip to receive mail aliases is, a weird seeing more then. :( For\n",
"@jensmccabe Less taxes. man I settle for shizzle. irc, email? there's a shame them before they abuse of ulation! :/ I didn't have Spotlight"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@micahwittman I spent on the plus i'd be the oven. I used to. For example, not from #meshu, very achievable. I mean. Is there are signups to\n",
"@kelseyprantis Me? :p it's the wad but people can definitely trying to fit in? Must everything will hate to a vacation to PadMapper. :( @limedaring\n",
"@ArtemR it 'till you want to boot), then Amsterdam in the 'mine', craft.net is an exemption from the offer. I remember when I'm learning Python\n",
"@jewelia You may be more mature, larger community. My first paragraph is my laptop manufacturers make a couple of them like risk of an iFrame.\n",
"@codenamebowser Also, my range of dollars and Move! http://t.co/rdaAz2g LineRage with action. Resistance talent, so far only things you don't\n",
"@chanian Epicenter until websocket while you know your JS, Chrome Frame on yet so far. There should update is quite authentic: http://t.co/BkAVRaVW\n",
"@samstokes I don't write one. Alias names at my wife who have enjoyed the X-ray scanner before showing up for now. :) Also how excellent at\n",
"Spoilers: Normal case: employees with @limedaring will exists or good authority on innovation; present and Daft Punk, Justice, The last time."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever @zzzeek @kantrn Yessir. Or they'd use the PATH/PYTHONPATH. Could try phatter pipes like Tweepsect is so too. There needs to make a\n",
"@AmritaMathur Mhmm, I've never get back. Plus it's too high? Just remembered, I can't scroll away. :P Let's all tweeting -- intelligent exceptions\n",
"@codinghorror With all ages are they? http://pastebin.com/WkQx9EmS is atrociously adorable. Waka-waka-waka-waka. it back, etc. and boring story\n",
"Huge success. http://post.ly/GPIQ (cc @davemcnally Well done to object.__getattribute__(self, name) -&gt; @ifoox @greggle Going off to \"go offline\"\n",
"@garybernhardt I always wondered where NOT in highschool. What good advertising for Firebug, need to not yet. Arrrr. Presented on Rotten Tomatos:\n",
"I'm a good hands! http://t.co/xzswxi2 :/ It's 34 years and most-recently-tweeted-from). That too. Trying to figure out if you launch on an iPhone:\n",
"@igrigorik Why not with yogurt (though ~2hrs away underground bunker with homebrew. Also dotCloud raises $10M VC Pitch Deck courtesy of random\n",
"@davidcrow Should have a safety razor aggressiveness and typing +2 char prefix. Interesting converse. KELSEY! Posterous. Now. :P Perhaps, perphaps.\n",
"Late late 90s. with log with stupid mostly. It doesn't give @limedaring Thanks. :) Got up on 3.1? I copy/paste some gremlin repellent. I can't"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Taking requests. You can hook me a bit of casual flirt. First check.in into toronto tomorrow!! your hood later, still huge. According to listening\n",
"1/18: The host users will do. Gets Approval for finding teams they like a better already. Wish @github let me know what'd be worth of a @SocialGrapple\n",
"@stumm I'm playing a small piece of three different day thinking of visa I don't get used SQLAlchemy? What intersection? one hairy cunt. isn't\n",
"#radiohead tag, it a link when you give away on Linux whois on it. :P Don't go to give you want? And do so much. :| http://bit.ly/aze1LM fuzzy\n",
"Dear #sxsw'ers, use some string. Works well. http://bit.ly/bqYyXA (cc @zzzeek) I liked the year? Then why my move he grinds down to my problems\n",
"5 minutes http://bit.ly/9Ge4s2 22-30. Mark your account that ran out, they do with \"to people get rid of mind. ;-) Make your stupid verb crap.\n",
"@garrytan would be fixed it. Wewt! *high five!* Share let's do it. Jeez, what you wrestle? didn't know if you shouldn't eat\" aggressively overencompasses\n",
"@kantrn said. Still up using HTTPS help but my +$90/mo iPhone upgrades. Nicer camera elastic delay service. :P Maybe say hi! http://post.ly/2uaw\n",
"@marinarn You just pay money spending money per @dcurtis's http://perspectiv.me/, great luxury, and conversation with a phone number. Said number\n",
"@NoelFB Pretty! Reminds me to have the box with my A* algorithm. six @threadless if you guys did Apple from Austin... Friday. Ughhh. up for"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@wolever but sense of weeks, mooching off the 21st ... http://post.ly/H4p6 breeze. Mmmm. Bet they don't know a modem jack is Reddit but I search\n",
"@seanpile You should be naked, in 00:07 http://t.co/s83kUW95 is \"easily forged\", including flights/stay. #tempting Quora, probably crash (when\n",
"@chaitealattes Yay Pylons. Yay visual design by @wolever) RT @mdudas: Marissa Mayer as long ass watch Battlestar Galactica, with which is not\n",
"@jensmccabe tomorrow! RT @codinghorror: Amazon Prime. (Hmm, wonder if you like more. More believable if plot twist. Now I'm considering its\n",
"@arthaey Can I want back-to-back screening. The stress isn't just can't play some surprise cash &gt; @geodee &gt; glory any way to look into\n",
"@joshbuddy @sebp What does the insights! :) Hope it's as I copy at @AromaEspressoTO. Vote with it. http://post.ly/I33n converted into BRANCH,\n",
"@davidcrow This happened to google, leave this are a twin sister? Hey, I'm very similar purposes. abs(x) returns a long-ago boto user, I'm blaming\n",
"@wolever Coolness, not mini-usb. RT @TSAgov: It's just snuck in disguise http://t.co/YYvoEUW #1: Pooping) nor cold as far as butter. Pfft, Americans.\n",
"@mulka Almost time making some designer @artypapers Not sure to add dynamic array growth over Air-based alternatives. If #Apple sold me a billion\n",
"@audreyr YOU'RE ALIVE!!! (cc @chiah, moving forward to read RSS feeds. You win. http://bit.ly/grjFMV Theft Auto\". are you ranting about editing."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"I'm online. (cc @wolever Ah you won't be able to see specific that's how I should look back of just need touch, it'll be done to use case in\n",
"@wolever @barbaraemac I WANT A shitty syntax for all kinds of what's the Apple stock expected it as I can get you. http://bit.ly/cqLfgr original\n",
"@nphoffman What does search for delivery\" to UofT campus, I'll be isolated cultures' number of macports? (unit of nowhere, with Arduino someday.\n",
"@alabut @limedaring I foresee being awesome. :P (Doing things in exchange rate from any of pancakes. #thisishowigetfat Smooth as we bring back\n",
"@wolever For those things. Partly a very uncomfortable. X41 Thinkpad: 64s on it more sending a definition. I'm guilty of those people... :/\n",
"@garybernhardt I never hung around along with your new data is this heroic contributor: https://t.co/pEXWo91v http://ati.com/ and rel=\"friend\"\n",
"@Chargify Thanks! Maybe we should be responsive enough to leave us?\" CEO: 'What happens if you a product is surprisingly little workshop and\n",
"@chanian When someone needs to fix the originals across 3 days there's no idea I mean is blind. :p under NDA. Ethically: Not all Americans don't\n",
"At least I promise! :-) Check it. :P If facial expression? http://t.co/29XH8Xb RT @limedaring: Just read back multiple stylus/touch devices,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@davidcrow @hfizzle is your mouth!\" :P Also, despite transitional pains. :P It just hired the previous versions http://bit.ly/cEbqu5, I'm hammering\n",
"@aviars Not blaming you just an iPhone, but got an iPhone 4 Dead Set miniseries(http://tinyurl.com/8uumug) Zombie (inspired by a link now. :P\n",
"1. Auto-backup all day. http://bit.ly/9ekokd - - 2008 Macbook users been months (but useless to pay for http://bit.ly/9d4DT Fiddy only things\n",
"@wolever How cool didn't I... So I just got yourself covered in any thoughts on tiff, takes about my needs Sure_Ill_Draw_That, ProbablyHittingOnYou,\n",
"StarCraft without internet fees. Any excel gurus? How was a bloody hot. I can describe it. More analogous to give me access to track of me,\n",
"@chanian I see it. Others will burn. Your face. http://bit.ly/eItydL I guess just Toronto. See @weddingtype's giveaway: http://t.co/CvCSAjv\n",
"\"You're not gtfi. Tits keep a wickedsauce cover! I tried writing tests should use my style, though. Also, would take, we're doing things if\n",
"$1000 of 11 years. A good idea, ill set of girth. Sounds... not quite different. SocialGrapple and then just being awesome. -- H3LP at SXSW\n",
"@ianbicking reproduced this is a class, classes wide open. B'sides, I'll work on a few pointers to be part is very handy. ride for everybody,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@codenamebowser Toilet paper cups. Your momma is scary. I seek offset on the party at work. :( #hug to the same thing Google WFH. found javascript\n",
"@theevank Yes, that's the things simpler, I would make a single-horned cyberminotaur Sounds like the Humble Bundle. Haven't done it takes more\n",
"@twitterapi Good artists mashed up, I'll step closer to start. \"We're building a movie trailer, it outright wrong. That's one or roaming or\n",
"@marreka There's also did you can challenge me: http://bit.ly/ba2O4p (only Multiply and visualization here are missing for a sign up for bumptop.\n",
"You traitor! Well, less buggy. Get coupon for the campfire. in the friction to San Mateo hooked me for OSX. http://bit.ly/XIBuU :P Not implementing\n",
"@ryanfeeley The way up at Facebook's Timeline is the Stars after reading http://t.co/wJAvZ29 (Thank you can be kinda suck, but willing to indicate\n",
"@andrewbadr True. Crazy that photo. http://post.ly/7663 For you, I'm using my own judgement for my friend @hyfen @torontoist @lmds moves camera\n",
"Burning Man is the same. I like getting worse, could you call it and Stummtown are gorgeous. I was just does equate to default limits of use\n",
"Per-circle volume is *really* Ajax-y. Going down in Toronto Boxing day: HUGE companies do near St.Clare, but it's not working with them? I made"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@thesixtyone one time I don't want to spend *thinking* about Python. Good point. Also there's so fat, she was opened a fund. I love that way.\n",
"Got blood drawn web framework. Fixes many trucks is still limited set operations/sorted array splices. Yours traverses the number is the remote\n",
"CubeDuel is a @github achievement soon. My next time. Among many did this. I go. Biggest risk paying users to go there a baby out. The rest?\n",
"TIL: Orkut has Rick Astley ever have per-transaction fees, not for Contagion Health @Stanford\" http://bit.ly/a3Zwr5 Check it out \"proper\" docs\n",
"Wow crazy. :P #jokeruiner @hawflakes Is it in the target users and release premium @socialgrapple (my stickcracker at 200. for homes with visiting\n",
"@flojee @olyas I was all things to do a roll by Salman Khan Academy of people want it? Gotta start paying users. Like a picture of liking this\n",
"@wolever It is back in Javascript, pretty good too. Come visit. Amount: $15, Memo: Mono. value. A worthy domain for work today. http://tinyurl.com/azomfp\n",
"@Ra3iAlawlah Glad you up the time in exactly why am more days? Still waiting period. All the same spot in our cat pets get used to know where\n",
"@arthaey I'll put him to be obviously self-infatuated\" yup. Once I totally paid ebook. If this sudden influx of JavaScript's problems were vacuuming\n",
"Idea: An RPG in identi.ca with a bachelor writer (unlike locations). I'm making me hot and i can only have always be worth out and not a public"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@dsa My whole thing. I setting them inevitably disappointed. :P E.g. http://mojombo.github.com/ NOTHING mike's Fallout 3 years. Take it was\n",
"@KGnof @chiussi You're officially has devolved into the cycle back to pick you need to bring it can't fly. Just pushed out of the US? Insane.\n",
"RT @geofreyflores: Jeez, what other currency. It's all of the revisions. would make my http://socialgrapple.com/ project? https://t.co/Y0e3KRcv\n",
"Someone should drop by geo-locked videos! If you liking something but whenever I'm doing the iPad raffle. :( Wanted to URL with who follow both\n",
"@syzygos Here: http://j.mp/crYdg6 Read the intro. I forgot to be considering error rate me!) (Dec 23) and drove through elemental simplicity\n",
"@jamesnvc I appended my bike's U-lock key. Notational velocity wastes no better medium). :P Bonus points if it's open for Twitter, I hope you\n",
"@corbett_inc They want to devour some weird hallucinations about patchqueues. -- boy trying to tomorrow evening. Thoughts on my G1 android virtual\n",
"@dsa protip: Chrome #fail http://bit.ly/googchromemac first set of several bug tracked/being fixed? http://t.co/Wntx1tA Once you're thirsty"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Coding should have it's much need that much money expense of a compatible power at PIC's today. :P Good timing. :P Probably 90s European. livedvd\n",
"@codenamebowser My bay with that, but I could make a different language, then... I will \"do whatever you do you ever use http://www.sitby.us/\n",
"Random hacker juice. Whoever thinks I'm very welcome! Thank you. :) Inactive accounts, checking (grid system)? staging which effectively random\n",
"@wolever Both. https://twitter.com/shazow/status/11266611410 DSL, came to keep coming from. ;) I got 300 servers... Two Nexuses. :P http://t.co/iYxG79S\n",
"@BarbaraEMac @wolever True story. RT @jzila: \"I wonder if you're back! Woo. Could use ktorrent with you rub my Location tag which expand when\n",
"@jewelia I declare a microwave cover up right now. I did that has voice/video support, and building out I guess you'll be fine. Honestly Coupa\n",
"@johnsheehan I'll come from Hackers, there 12 pages you want an episode of taking it lends itself well for 2 hours (instead of humor, and do\n",
"@chanian He talks at all? What about Facebook, Twitter. What's a year unfortunately, traveling by Pat\". But that's the big fan of visiting for\n",
"@stumm :( http://t.co/Q5lDkfIp registration process uniquely pleasant experience creating a harper. https://t.co/3GWaD5da wrapper (only semi-functional\n",
"@EdLeafe I'm accepting you're in case. :P) http://t.co/IGfXys1 years of places. or Freeze Food? http://post.ly/lDdh \"Finally, the way. (Also,"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Other two is surprisingly resilient. Just skip because suddenly made me but there will be in the trial and skype), seems to learn to SFO (arrived\n",
"@wolever it's important opportunities. local culture. I'm not looking forward to get to figure out of my old iPhone timer to tell them. Videos\n",
"@timtoronto Excellent, we couldn't agree though. I'll upgrade I've learned vim will have problems! My first time to trade you can do it was\n",
"@karpathy @chanian Hahaha. git aliases is, he might work. As soon and Facebook (except the email me out. Too much to teach you get in 9 months\n",
"@viaAndrea HOW IS an open platform. doesn't require me up with 20 min? (Go on summarizing press pushes lined up when releasing updates. Adobe\n",
"@limedaring for -- @posterous I like the multiverse theory, but the suggestions! Didnt buy, assuming devs *should* all spike every Tuesday,\n",
"@zzzeek Bonus points if someone hits setitem. http://t.co/zbh8cyp Doesn't sound and health. I'm going to limit is Mimeo? Do fleas serve it that\n",
"@ryanfeeley I'm super excited about Iceland. I bought before. When they're the memo? write my love following your SFO\u2708YYZ round trip is too\n",
"@jonesabi Yes we start paying users. v2 (stuck at all. You missed Startup School and buckets of IPv4 addresses. And YOU LEAVE ALONE!??!!?\" :P"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"@syzygos Actually, I'm here too. Still up to revamp their own intenal process isn't a $500K/yr revenue for @krw1243 aw, feel about Twitter in\n",
"@nphoffman Ah, crafty! Thank you. Even good grep\" #geektastic to get used car? :P I'll see if you think? Great movie. Great time when they're\n",
"@samstokes Deal. :) I helped disambiguate implicit try/finally. right and things easier, and Linux desktop box as a programming class Baby(Fetus):\n",
"RT @ev: New YC startup house right in the hacking Bespin into it. Others fear not, but I generally looks like to move the form -&gt; Github\n",
"@dsa Is your thoughts on a guest account. Forgot which pretended to the revival of that. IM tab, so far. Now let you install LineRage. Who wants\n",
"I'm hungry for California: http://t.co/gO3VYuSt some kind of the curious, do not. I can think \"husky\" was supposed real adoption. is really\n",
"@garrytan I'd wait for years. #spacez voice search results? http://t.co/KpZPL54B tags): http://bit.ly/ajjwyO but the command of R. Both are\n"
]
}
],
"prompt_number": 169
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"prin"
],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment