diff --git "a/processing_code/process_convo.ipynb" "b/processing_code/process_convo.ipynb" new file mode 100644--- /dev/null +++ "b/processing_code/process_convo.ipynb" @@ -0,0 +1,3348 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 40, + "id": "47b0245f", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import json\n", + "import re" + ] + }, + { + "cell_type": "markdown", + "id": "50d994c0", + "metadata": {}, + "source": [ + "# Process ConvoKit (~15k)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "id": "3766647e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "There are 15706 conversations\n" + ] + } + ], + "source": [ + "with open('convokit/conversations.json') as fp:\n", + " convos = json.load(fp)\n", + "print(f'There are {len(convos)} conversations')\n", + "\n", + "# Get scores\n", + "scores = {}\n", + "with open('convokit/utterances.jsonl') as fp:\n", + " for line in fp:\n", + " info = json.loads(line)\n", + " scores[info['id']] = info['meta']['score']" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "4dfbf358", + "metadata": {}, + "outputs": [], + "source": [ + "matcher = re.compile(r'\\s*((?:\\w|[^/])+)/+((?:\\w|[^/])+)/+((?:\\w|[^/])+)\\s*\\Z')\n", + "#matcher.match(all_posts[0]['title'])\n", + "match = matcher.match(' 2//3//4')\n", + "match.groups()\n", + "\n", + "def clean_up(tokens):\n", + " lines = [x.strip('\\n\\r\\t ') for x in tokens]\n", + " if all([l!= '' for l in lines]): \n", + " return lines\n", + " else:\n", + " return None\n", + "\n", + "def process(text):\n", + " text = text.strip('\\n\\r\\t ')\n", + " if '\\n' in text:\n", + " return None\n", + " lines = None\n", + " separators = ['//','/','\\\\','|',',']\n", + " for sep in separators:\n", + " split = text.split(sep)\n", + " if len(split) == 3:\n", + " return clean_up(split)\n", + " return None\n", + " \n", + "def process_and_join(text):\n", + " processed = process(text)\n", + " if processed is not None:\n", + " return '/'.join(processed)\n", + " \n", + "\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "c866a438", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing 0/15706\n", + "Skipped: Writing haikus instead of studying for my two tests tomorrow. Sending them to friends who are probably fast asleep. Bastards.\n", + "Skipped: A poem for a planet: Send your haiku to Mars\n", + "Skipped: Meta Haiku\n", + "Skipped: No condoms? No problems.\n", + "Skipped: Muscles coil and spring. Feline hunter's instincts wake. Moth season is here.\n", + "Skipped: My Green Curry Haiku\n", + "Skipped: Jotted down 3 before bed\n", + "Skipped: Haiku request\n", + "Skipped: There is a fine line\n", + "Skipped: Let alone\n", + "Skipped: Lunch\n", + "Skipped: some hope\n", + "Skipped: a philosopher's haiku\n", + "Skipped: Penguin Haiku I-A Series I started recently <(\")\n", + "Skipped: Steel from my heart.\n", + "Skipped: Mosquito bites\n", + "Skipped: [Haiku] Running In White Neighborhood\n", + "Skipped: Political\n", + "Skipped: ghost\n", + "Skipped: Mystic battle\n", + "Skipped: Religious\n", + "Skipped: 3rd haiku I wrote in English class today\n", + "Skipped: The Weary Hermit\n", + "Skipped: /u/SubtlePineapple on catching things with your foot\n", + "Skipped: Meditating in the Grass\n", + "Skipped: I just pissed my pants. And though it feels warm right now, the feeling won't last.\n", + "Skipped: Made a Haiku for English class, Thought I would share!\n", + "Skipped: hello r/haiku\n", + "Skipped: wakefull storm\n", + "Skipped: Light and Dark\n", + "Skipped: Radical Honest; Halve Truths Abound Agape So; Lie Dormant Within\n", + "Skipped: Bad Haiku\n", + "Skipped: Bad Haiku\n", + "Skipped: trashy racoon: illustrated haiku\n", + "Skipped: Pedantry\n", + "Skipped: Issues\n", + "Skipped: Oh FUCK YEAaa [Poetry]\n", + "Skipped: Ball play [Haiku]\n", + "Skipped: The Wolf Survives the Wild\n", + "Skipped: made of meat\n", + "Processing 100/15706\n", + "Skipped: Reddit's Auto-thumbs...\n", + "Skipped: We are urbavores. And we will eat this city. churning the pavement\n", + "Skipped: A steaming shower. A nearly frozen lager. Liquid harmony.\n", + "Skipped: Sassacre\n", + "Skipped: Hugajab\n", + "Skipped: I just want a hug. Not a kiss or a blowjob. Okay, a blowjob.\n", + "Skipped: We pray to the source of grace\n", + "In a godless Universe\n", + "No blame.\n", + "Skipped: Terrorism sucks except when it's directed at Iranians. \n", + "Skipped: Post your SOPA-haikus here\n", + "Skipped: Here\n", + "Skipped: Welcome to the Internet.\n", + "Skipped: Public Transportation As Spiritual Practice part 1\n", + "Skipped: Let me try this haiku thing\n", + "Skipped: crumpets\n", + "Skipped: Flags\n", + "Skipped: r/haiku?\n", + "Skipped: A Birthday Haiku.\n", + "Skipped: /I wish only box / to better quill poems here / sake of stanza verse\n", + "Skipped: My life\n", + "Processing 200/15706\n", + "Skipped: A conversation between a master and a student\n", + "Skipped: TheTruthHurts\n", + "Skipped: sci-Fi haiku\n", + "Skipped: Recovery\n", + "Skipped: Bare Bones School of Haiku\n", + "Processing 300/15706\n", + "Skipped: A traiku on lethargy\n", + "Skipped: My first haiku\n", + "Skipped: Haiku for Donald\n", + "Skipped: I wonder how many times computer techs have found mother loads of porn on a customers computer.\n", + "Processing 400/15706\n", + "Skipped: Crystallization\n", + "Skipped: (3/5/3) - bright sunshine / bees bumble among / dogwood blooms\n", + "Skipped: Troll\n", + "Skipped: Letting Go of Harshness\n", + "Skipped: passing fancy\n", + "Skipped: よく見れば・花があります・うつくしい\n", + "Skipped: Interrupted Journey\n", + "Skipped: I'm looking for a lot of haiku by various authors for a project.\n", + "Skipped: Over oceans vast Let the wind carry my voice And with it my mind and self\n", + "Skipped: Titled: Girlfriends\n", + "Skipped: The world\n", + "Skipped: A haiku about RUM and Doctor Who (kinda)\n", + "Skipped: Describe one of your favorite movies with a haiku.\n", + "Skipped: We were talking odd length haikus, so I made this.\n", + "Skipped: huh? it's time for what?/\n", + "I'm not drinking my own piss/\n", + "i prefer bourbon\n", + "Processing 500/15706\n", + "Skipped: I think everyone has seen this but what the hell. \n", + "Skipped: Haiku Bombers: Prompt #3 « Quill Shiv\n", + "Skipped: Haiku Bombers: Prompt #3 Childhood and Seasons\n", + "Skipped: hey guys i made a site where haiku can battle each other. come write some stuff.\n", + "Skipped: My Day In Haiku!\n", + "Skipped: Life, death forever;\n", + "Intertwined with our loved ones\n", + "The pain we all share.\n", + "Skipped: another sad day: / downvotes on r/energy / pro-nuclear drones\n", + "Skipped: Three different things, all saying one thing\n", + "Skipped: Subversive Tanka\n", + "Skipped: Mara said to the Buddha:\n", + "Skipped: Haiku;Tanka;?\n", + "Skipped: I'm one of the moderators of this subreddit, and i've got a question to all of you.\n", + "Skipped: Tanka Tribute to Jiddu Krishnamurti\n", + "Skipped: Cow Haiku (sorry, reddit wouldn't let me put Kana and Kanji in the Title line...)\n", + "Skipped: A Hindu Cosmological Story - - In Tanka of 7 stanzas\n", + "Skipped: Orange Juice Outrage\n", + "Skipped: Let's get roit into the news\n", + "Skipped: The Feels on the Bus\n", + "Processing 600/15706\n", + "Skipped: Write a horror story using only a haiku\n", + "Skipped: gela of trinity\n", + "Skipped: For You\n", + "Skipped: [Haiku writing prompt] tell me of the time you found an unlikely item in your bath tub.\n", + "Skipped: Laidback.\n", + "Skipped: Edgy Suicide Haiku\n", + "Processing 700/15706\n", + "Skipped: Circle.\n", + "Skipped: Summer Nights\n", + "Skipped: To err (with comic)\n", + "Skipped: Wanderlust.\n", + "Skipped: January - Our last month together\n", + "Skipped: Melancholy.\n", + "Skipped: My kind of love.\n", + "Skipped: Reset.\n", + "Skipped: down on the pond/there are as many/fireflies/as stars in the sky\n", + "Skipped: why\n", + "Skipped: No destination.\n", + "Skipped: Paradox\n", + "Skipped: Shining River\n", + "Skipped: Change of address.\n", + "Processing 800/15706\n", + "Skipped: Never too late.\n", + "Skipped: [Working Title: Clarity] - First 'serious,' Haiku\n", + "Skipped: Identity II\n", + "Skipped: Memento\n", + "Skipped: on the road\n", + "Skipped: inside the tour van/ no one admits passing gas/ open the windows/\n", + "Skipped: If you fail math...\n", + "Skipped: Touch (w/ comic)\n", + "Skipped: Day night day, arise again to this. Looks familiar and strange\n", + "Skipped: 10 seconds.\n", + "Skipped: I was looking at someone that was on the street. It was raining and it was as if he didn't care.\n", + "Skipped: Far away.\n", + "Skipped: I don't want to close the door Take a look in The trail it continues Loose ties and ins Somewhere to break your teeth in again\n", + "Skipped: What life?\n", + "Processing 900/15706\n", + "Skipped: Sage the Gemini - Gas Pedal\n", + "Skipped: Today.\n", + "Skipped: Customer service\n", + "Skipped: Spilt Glasses\n", + "Skipped: Give all the karma, rising moon over river , hungry sun eating sky, junkie opens eyes\n", + "Skipped: Give all the karma, rising moon over river , hungry sun eating sky, junkie opens eyes\n", + "Skipped: Ageing (w/comic)\n", + "Skipped: Wasting my whole life away.\n", + "Skipped: Who are you?\n", + "Skipped: Swiss Army friend - Someone for all occasions - Kept in my pocket\n", + "Skipped: Evading people: / Running Embarcadero, / a beautiful sight. https://t.co/hGVMyHtoAT\n", + "Skipped: Why haiku?\n", + "Skipped: The beginning.\n", + "Skipped: Poetry.\n", + "Skipped: Struggle.\n", + "Skipped: i like this haiku; the use of seasonal change; with self reflection\n", + "Skipped: boom, thunderclap, slam; twirl, froth, torment, and ignore; night can be too cold\n", + "Skipped: There are Haikus I wrote my sophomore year in college for English class. Note how they are also acrostics...\n", + "Skipped: A thought on current tragedy\n", + "Skipped: ^==>Watch. 'The Hunger Games: Mockingjay - Part 2' ['Online'] ['Free'] ['Full'] ['Movie'] ['2015']\n", + "Skipped: Thought you guys might enjoy this... \"An Assortment of Haiku\". Thoughts?\n", + "Skipped: For my friend's brother struggling with depression.\n", + "Processing 1000/15706\n", + "Skipped: Earthen Vessel\n", + "Skipped: Unknown\n", + "Skipped: Had an idea to create haikus from Disney songs. Can you think of more?\n", + "Skipped: WATCH FULL new B.O.X OFFICE Movie\n", + "Skipped: Anxiety\n", + "Skipped: Nguyễn Hải Dương (KuRin) - Em của quá khứ\n", + "Skipped: Depression thoughts.\n", + "Skipped: A haiku for my near death experience where I was hit by a semi.\n", + "Skipped: Childhood\n", + "Skipped: not sure if it fits the parameters\n", + "Skipped: A collection of (Mostly depressing) Haiku I wrote a few years back.\n", + "Skipped: His facing the night window\n", + "Skipped: First Kiss\n", + "Skipped: Somewhere on the coast / The shape of your body is / Inscribed in the earth. / 12.27.15\n", + "Processing 1100/15706\n", + "Skipped: Astral\n", + "Skipped: Astral\n", + "Skipped: The World.\n", + "Skipped: Life is beautiful after you stop taking it so seriously.\n", + "Skipped: Joy: A Lunchtime Haiku\n", + "Skipped: Vagrant\n", + "Skipped: Apology bus\n", + "Skipped: Kisses, Rose and Bee\n", + "Skipped: Twelve strips of bacon. Two frothy pints of Russian\n", + "imperial ale.\n", + "Skipped: Heres one with a pun\n", + "Skipped: Waiting in shadow ~ for the heat of your body ~ to walk past my grave \n", + "Skipped: The way you sell books is you seduce Petraeus and make sure it leaks. \n", + "Skipped: Shrink\n", + "Skipped: Drought\n", + "\n", + "Skipped: new Haiku mirror just in time for Alpha 4.1\n", + "Skipped: Hip Haiku\n", + "Skipped: My Twinkie stockpile is not expected to last another drunk night.\n", + "Skipped: we've all wanted to....\n", + "Skipped: Newly-fallen snow / \n", + "obscuring your rear window - / \n", + "why not use a brush?\n", + "Skipped: I typed this one by accident in a gaming chatroom...\n", + "Skipped: Is this a Haiku?\n", + "Skipped: To Be\n", + "Skipped: The Truth\n", + "Processing 1200/15706\n", + "Skipped: To be everything and nothing concurrently person paradox\n", + "Skipped: Waves\n", + "Skipped: Cowboy Bebop\n", + "Skipped: Saved. [OC]\n", + "Skipped: Can you help turn this into a haiku?\n", + "Skipped: Hip-Hop (OC)\n", + "Skipped: \"Hello\"\n", + "Skipped: Lost\n", + "Skipped: 8AM Music Theory Dictation\n", + "Skipped: Hey ya Redditors, I'm new here and want your help I need more haiku\n", + "Skipped: HaikuGadget.com: I made a random haiku generator!\n", + "Skipped: Haiku classic\n", + "Skipped: A site that lets you write proper Haiku poems\n", + "Skipped: My coworker and I just spent most of the day texting in haikus\n", + "Skipped: \"Never let me go\"-is a novel that haunts me-Am I Kate or Ruth?\n", + "Skipped: I like your shoe\n", + "Processing 1300/15706\n", + "Skipped: Haiku Animation Project\n", + "Skipped: Haiku complaint\n", + "Skipped: A tear in my eye Now I cri every tiem 2 spooky 4 me\n", + "Skipped: Lying somewhere cold and dark, Jobs // Felt Pangu's Finger / Up his Arse.\n", + "Skipped: This is a haiku\n", + "Skipped: \"Pothead on the train\" by uber-blogger Anil Dash\n", + "Skipped: Anyone object to Tanka (5-7-5-7-7) submissions? I suspect a separate subreddit would fail miserably...\n", + "Skipped: acontorer asked: Where can I find the tankas? Patience will serve you. On the haiku subreddit, Shy tankas lurk a while.\n", + "Skipped: Oh, Psychology. Tomorrow, you will test me, My utter failure, My first ever in college, \n", + "Skipped: The Pretense\n", + "Processing 1400/15706\n", + "Skipped: 夏の風・寝させない物・吹き飛ばす\n", + "Skipped: What did Kid Cudi put in the water supply? Where's the antidote?\n", + "Skipped: putting q tips in /\n", + "the toilet gives me a sense /\n", + "of satisfaction\n", + "Skipped: Odyssey of Shocking Disappointments (life)\n", + "Skipped: Beautifully touching Godzilla Haiku\n", + "Skipped: Revelation\n", + "Skipped: To my tampon string/ I hate you so very much/ In the way always/.\n", + "Skipped: Need a personal Haiku as part of job application. Help!\n", + "Skipped: Lost my wife last month... I was going for a Haiku but I can't make it fit.\n", + "Skipped: First post\n", + "Processing 1500/15706\n", + "Skipped: First post here. Not sure if I'm doing this right.\n", + "Skipped: Does anyone know this Haiku? Help!\n", + "Skipped: (3/5/3) a warm day / in January / the sun sets\n", + "Skipped: (3/5/3) clouds blaze with / daylight's last glimmer / as night falls\n", + "Skipped: (3/5/3) clouds blaze with / daylight's last glimmer / while night falls\n", + "Skipped: (3/5/3) a spider / clings to ceiling tiles / motionless\n", + "Skipped: [4/4/8] My lips are on fire/Can you feel the heat?/I'll have to turn it up a bit.\n", + "Skipped: (3/5/3) light turns green / falling snow becomes / hyperspace\n", + "Skipped: A Valentine's Card\n", + "Skipped: A VALENTINE'S CARD // a glass of wine held lightly -- / shoulders touching / my breath near his cheek\n", + "Skipped: Few Days left to Write a Haiku and win some Cells from the Real GhostBusters cartoon (X-post from r/ghostbusters\n", + "Skipped: Steam\n", + "Processing 1600/15706\n", + "Skipped: Interested in writing Senryu?\n", + "Skipped: Timeless\n", + "Skipped: Free Collaborative Haiku Writing App: HaikuJAM\n", + "Skipped: my friend mary jane / \"frenemy\" is more like it / need a different vice :/\n", + "Skipped: Spring\n", + "Skipped: Haikublah\n", + "Skipped: Grown men who must drive Toyota Camrys\n", + "Skipped: After living in Hawaii for a year\n", + "Skipped: I tried my hand at Haikus. A Haiku about a misty Japan.\n", + "Skipped: The Center\n", + "Processing 1700/15706\n", + "Skipped: Photographic memory\n", + "Skipped: Count to one. Inevitably, you will win.\n", + "Skipped: The Day Before Moving Day\n", + "Skipped: My first haiku post on this subreddit! (interpretation is left to the reader)\n", + "Skipped: My first Haiku on this subreddit (interpretation is left to the reader)\n", + "Skipped: Haiku #22 - Quit\n", + "Skipped: Haiku #19 - Cups\n", + "Skipped: Cat walks silently/ Its wide eyes reflect the moon/ The breeze blows gently/\n", + "Skipped: The Suburbs\n", + "Skipped: airports, turbulence meeting, drinks, airports again dreaded business trip\n", + "Skipped: A friday haiku\n", + "Skipped: Ode to Friday\n", + "Skipped: A haiku about how to make a haiku\n", + "Skipped: burgousie go down/ Full comunism for ever/ Long live the premiere/\n", + "Skipped: The Blade Wrapped In White\n", + "Skipped: Dear Dad\n", + "Skipped: Trying to get out some depression and use it constructively\n", + "Processing 1800/15706\n", + "Skipped: HSD\n", + "Skipped: Haiku Hiku\n", + "Skipped: Follow the Fighters\n", + "Skipped: [META] The reddit AMA app's update log\n", + "Skipped: A Naturally Colorful Haiku\n", + "Skipped: A hashtag haiku\n", + "Skipped: A triplet of haiku...\n", + "Processing 1900/15706\n", + "Skipped: What's a haiku you would write for your SO?\n", + "Skipped: IT help Desk\n", + "Skipped: I wrote this haiku for a fundraiser. PM me if you want details.\n", + "Skipped: CONFLUENT HOMEWORK, HOW YOU PRAWN THE RESIDUE. HOW YOU COUGH THE BISQUE.\n", + "Skipped: Nothing witty to see here!!!\n", + "Skipped: Marriage\n", + "Skipped: Rain from everywhere Or A friend's hand out of reach Dampen a lone soul\n", + "Skipped: i tasted your love. it was so delicious that / i wanted some more\n", + "Skipped: The Winter\n", + "Skipped: Sunset\n", + "Skipped: Just lost my pet :/\n", + "Processing 2000/15706\n", + "Skipped: My first haiku..\n", + "Skipped: I was really bored during class so I wrote these haikus. I've never written one before so they probably suck but whatever I guess.\n", + "Skipped: I was bored in class so i tried to write these three haikus. They probably suck because I've never written any before but whatever I guess.\n", + "Skipped: I've never written haiku. I got bored and tried. Are these even haiku?\n", + "Skipped: In the reddit plains. [Funny]\n", + "Skipped: Cold\n", + "Skipped: Here are the first four I've ever written. I had fun coming up with them. Take a look!\n", + "Skipped: The cat wages war...\n", + "Skipped: Thanksgiving Haiku\n", + "Skipped: Thanksgiving\n", + "Skipped: World war 2 haiku I made\n", + "Skipped: Sympathy for the Lost and Found managers\n", + "Skipped: for Echo's love life\n", + "Skipped: for Echo's love life\n", + "Skipped: Submit to haiku. Make it past the spam filter. Why so fucking hard?\n", + "Skipped: Watch me fall below. Traitors are friendly to me. Watch me rise above.\n", + "Skipped: Daily Haiku's for your enjoyment\n", + "Skipped: Too much going on in this party..\n", + "Skipped: Ode to Mrs Carrington in formal Japanese style\n", + "Skipped: book\n", + "Processing 2100/15706\n", + "Skipped: When my insomnia kicks in I start to think in Haikus. I will share them!\n", + "Skipped: Where the world has gone\n", + "Skipped: Weeds are Beautiful\n", + "Skipped: My Stormy Weather\n", + "Skipped: Orange cloth tied to the tree's. The sun is shining. But puddles on the floor, rain\n", + "Skipped: Is popping molly mutually exclusive from rocking Tom Ford?\n", + "Skipped: Haikus from a wedding\n", + "Skipped: NASA and University of Colorado are sending a few haiku up with their new spaceship to Mars! Vote for your favorites!\n", + "Skipped: Epic turtle jump possible repost\n", + "Skipped: NASA and University of Colorado are sending a new spaceship to Mars, and they are sending a few haiku with it! You can vote on which ones get sent here!\n", + "Skipped: New Multimedia Haiku eBook About to be Published\n", + "Skipped: Submitted a naughty haiku to the NASA Mars Maven challenge... ;-)\n", + "Skipped: so a knife can kill\n", + "Skipped: I need eight inches\n", + "Skipped: Nobody reads Haiku...not even when they're hilarious\n", + "Skipped: Written on the airplane\n", + "Skipped: Penguin Haiku VI\n", + "Skipped: Memories of pigdog\n", + "Skipped: The eternal loneliness\n", + "Skipped: A haiku reddit? I just had the same idea! Nedes more subscribers...\n", + "Skipped: **** you, Windows 8\n", + "Skipped: Second day back from vacation and reality comes crashing back in\n", + "Skipped: On the Way to There\n", + "Skipped: Rejected, god-like\n", + "Skipped: A collection of haikus written within an hour.\n", + "Skipped: The roughest neighborhood around. Mascot bike gang selling drugs.\n", + "Skipped: Indecisive\n", + "Skipped: Another collection of haikus written in an hour (This is how I spend my lunch break)\n", + "Skipped: Emergency Haiku\n", + "Skipped: Suction cup ducks\n", + "Skipped: Grounded (A Haiku)\n", + "Skipped: Will work for beef jerky Though I would rather work for Free pussy galore\n", + "Skipped: Summer Skies\n", + "Skipped: Taoism haiku\n", + "Skipped: Haiku about going back to work after the vacation.\n", + "Skipped: Priorities\n", + "Skipped: Commitment\n", + "Skipped: [Bias]\n", + "Skipped: PBS broke a generation\n", + "Skipped: iPad -- the fad / whose rights to be tinkered must \r\n", + "be bought! / Who would have thought.\n", + "Skipped: On the margin / I tried to pad / my last theorem. / \r\n", + "'twas never written.\n", + "Skipped: Computers that can't / be programmed, be \r\n", + "damned. / 1 pad of paper, better!\n", + "Skipped: seven continents (the rio one is NSFW)\n", + "Skipped: A series of Haikus I would like to call Oceanside\n", + "Skipped: beer was invented by people who never knew it could be ice cold \n", + "Skipped: What is a window? without a Wall around it, a \n", + "Dreamtime Prison\n", + "Skipped: has anybody ever eaten a good meal at cracker barrel?\n", + "Skipped: I planted my seeds / When the separate flowers bloom \\ They will end your world\n", + "Skipped: it's a blacked out blur, but I'm pretty sure it ruled. damn! last friday night\n", + "Skipped: HAIKU about haiku's\n", + "Processing 2200/15706\n", + "Skipped: Five Seven Five: The winners of Weekly Alibi's 19th annual Haiku Contest\n", + "Skipped: Palidromatic Haiku (Or Senryu)\n", + "Skipped: You told me: better/to lose love than to never/\n", + "have known it. Bullshit.\n", + "Skipped: I can't understand why they don't simply report that Gaddafi's dead \n", + "Skipped: The Broken Wings Can't/Hold the Metal Casing,/while\n", + "Hiroshima weeps\n", + "Skipped: Help with converting English syllables to Japanese On.\n", + "Skipped: Haiku excuse for oversleeping\n", + "Skipped: Hammertime Haiku\n", + "Skipped: awake, shower, shave / eye drops, coffee, aspirin\n", + "regret, cheerios\n", + "Skipped: Untitled.\n", + "Skipped: /User/Haiku from voat here. \"A Clever Ruse\". Hope you guys like it.\n", + "Skipped: Haiku\n", + "Skipped: Another chance\n", + "Skipped: Star Wars\n", + "Skipped: Webs woven wide Lies told and retold again Truth lost, the beast arises.\n", + "Skipped: E-NFV is of incredible value. Brach of the future.\n", + "Skipped: Sending a collection of three resignation Haiku's to the office wide email. Would like to hear your thoughts\n", + "Processing 2300/15706\n", + "Skipped: someone in my apartment building who stole my trousers from the communal laundry, I put a haiku up\n", + "Skipped: I can feel my thoughts...\n", + "Skipped: Texas run sightings: Unidentified dead snake; two or three rabbits. #run\n", + "Skipped: Haiku: 'what will you say in the last moment with the person you love?'\n", + "Skipped: as travelers pass cherry blossoms open up near her smile\n", + "Skipped: As travelers pass cherry blossoms open near her smile\n", + "Skipped: I live in a fire. Not good. Not bad. Just different. Flux is our constant.\n", + "Skipped: Request: Haikus for the cards in a deck\n", + "Skipped: Waiting\n", + "Skipped: Pokemon Haiku\n", + "Skipped: Birthday Party\n", + "Skipped: Good advice for anyone going to Rome\n", + "Skipped: The worst thing about / writing haiku is that you / run out of room and - /\n", + "Processing 2400/15706\n", + "Skipped: when global warming rebranded to climate change I got suspicious\n", + "Skipped: sexy terrorists who hide bombs in their brassieres are as good as caught\n", + "Skipped: if you want to fly, choose between radiation and molestation\n", + "Skipped: with four loko gone I guess it's back to mixing vodka and red bull\n", + "Skipped: Economy\n", + "Skipped: Car starts happily.\n", + "Skipped: The eyes may carry important early clues to heart disease, signaling damage to tiny blood vessels long before symptoms start to show elsewhere,\n", + "Skipped: John McCain = Simon Cowell (haiku)\n", + "Skipped: Apple Watch\n", + "Skipped: So much universe, and so little time\n", + "Processing 2500/15706\n", + "Skipped: Loneliness\n", + "Skipped: Life is fleeting compilation\n", + "Skipped: Trying To Define Longing Scientifically\n", + "Skipped: morning\n", + "Skipped: $1 Haiku #18\n", + "Skipped: To: Cory\n", + "Skipped: apperception\n", + "Skipped: (Haiku traditionally aren't given titles)\n", + "Skipped: Old Man's Haiku\n", + "Skipped: Procrastination haiku\n", + "Skipped: Priority\n", + "Processing 2600/15706\n", + "Skipped: I asked Siri for a haiku.\n", + "Skipped: I had a sudden urge the other night to try my hand at comedic haikus.\n", + "Skipped: Trump\n", + "Skipped: Job searching I hate. I'd rather forage the woods. Should have been born deer!\n", + "Skipped: Sabotage\n", + "Skipped: Love is pineapple\n", + "Skipped: the telly (DE/EN, 2012)\n", + "Skipped: Envy of Autumn\n", + "Skipped: Melting\n", + "Skipped: Colder Than Ice (Haiku by Mortimer Reed)\n", + "Skipped: Gone goes the going. I am right here now, complete. Secret:Time is a joke.\n", + "Skipped: lake that gives me high\n", + "Skipped: Premonitions of my death\n", + "Processing 2700/15706\n", + "Skipped: Eventually\n", + "Skipped: [Meta] On Haiku\n", + "Skipped: My Birthday - Haiku :)\n", + "Skipped: An autumn haiku\n", + "Skipped: Office Work\n", + "Skipped: From my daughter: a shopping request\n", + "Skipped: I fear not darkness, Nor any plain earthly woe -- Mere Intimacy.\n", + "Skipped: Sunset\n", + "Skipped: Memory\n", + "Skipped: r/haiku\n", + "Skipped: First OC haiku\n", + "Skipped: Pain of loss\n", + "Skipped: kek\n", + "Skipped: The News\n", + "Skipped: Spider haiku\n", + "Skipped: Candle sputters\n", + "Skipped: The Sun rises/ over the high Mountain/ -- my work is done.// Eat leftover lentils/ and brew water for tea.\n", + "Skipped: What makes a haiku good?\n", + "Skipped: Sand\n", + "Skipped: Electrical Hands\n", + "Processing 2800/15706\n", + "Skipped: For The Better\n", + "Skipped: @CoffeeCuddler\n", + "Skipped: This haiku is a lie.\n", + "Skipped: Bird Choir (Edited)\n", + "Skipped: Fluffy Red Panda You are no longer a Bear You may be my pet\n", + "Skipped: The only thing worse / than redoing what was done: / Not getting it right / at all.\n", + "Skipped: Touchdown\n", + "Skipped: S\n", + "Skipped: Tentacle Porn [nsfw]\n", + "Skipped: 9\n", + "Skipped: Love [NSFW]\n", + "Skipped: A bird cries/ -- nothing\n", + "Skipped: Little Things\n", + "Skipped: Florida Haiku\n", + "Skipped: College student\n", + "Skipped: River of love\n", + "Skipped: Aerodynamics [nsfw]\n", + "Skipped: Hope\n", + "Skipped: Watching\n", + "Skipped: Summer almost done. Cool breezes, chilly shoulder. Sunny gaze is gone.\n", + "Skipped: Rise\n", + "Processing 2900/15706\n", + "Skipped: Political Satire Haikus\n", + "Skipped: Insert own title\n", + "Skipped: The title is like (x-post haikubot-1911)\n", + "Skipped: This Orwellian Nightmare called Life\n", + "Skipped: A\n", + "Skipped: Queue\n", + "Skipped: Is it right?\n", + "Skipped: Found this near Mount Fuji: 勢いあり氷消えては瀧津魚 (source and translation in the body)\n", + "Skipped: \"Taze the gays!\" they say./ I flip the lever. Sparks fly. I smell burnt rainbow./\n", + "Skipped: The Bully\n", + "Skipped: Mon Ami\n", + "Skipped: texas haiku\n", + "Skipped: Just wanted to share some haikus I write to help me cope with feelings of loving someone that you can't have.\n", + "Skipped: Good boy haiku\n", + "Skipped: Forbidden love part 2\n", + "Skipped: Spring and summer gone. Unbearability falls. Winter eternal.\n", + "Skipped: Silence\n", + "Skipped: very rushed poem inspired by a sight in the desert of west texas\n", + "Skipped: Pretty Bird\n", + "Skipped: My relationship with mirrors\n", + "Processing 3000/15706\n", + "Skipped: Home Invader\n", + "Skipped: Classroom Sex [nsfw]\n", + "Skipped: Forgotten\n", + "Skipped: Souvenir\n", + "Skipped: The Good Girl\n", + "Skipped: (Haiku inside, in case I want to edit)\n", + "Skipped: No longer vibrant, drooping flowers, wilted leaves, ageing southern wind.\n", + "Skipped: Haiku\n", + "Skipped: Dreams\n", + "Skipped: Her Filth\n", + "Skipped: But have you tried to love yourself..? World see you as* *you see you...* ______________________________________________________________________________ ^^^-english_haiku_bot\n", + "Skipped: Helpless to its pain--phantom needle in my skull, endlessly stabbing.\n", + "Skipped: A Summer Past\n", + "Skipped: Glistening dew drops/ shimmer in the pale moonlight /\n", + "Skipped: Role Model\n", + "Skipped: Childhood Adventures\n", + "Skipped: Thursday\n", + "Processing 3100/15706\n", + "Skipped: Hand written letter...torn in pieces on the floor...overdue tears\n", + "Skipped: Hurried is the pace Lights stop in all directions Red handed walkers\n", + "Skipped: she is shivering - without his tender embrace - she misses his face\n", + "Skipped: She's a jaded girl - Living in the world alone - Dreaming of a friend\n", + "Skipped: Interesting Haiku\n", + "Skipped: [dog-walk tanka]\n", + "Skipped: 香り, fragrance\n", + "Skipped: Kids\n", + "Skipped: She tried to escape - the sadness inside her head - before she faded\n", + "Skipped: Sunday evening\n", + "Skipped: 哀れ, helpless\n", + "Skipped: Lunch\n", + "Skipped: Back to work.\n", + "Processing 3200/15706\n", + "Skipped: サスペンス, suspenseful\n", + "Skipped: I'm lonely again - Left in the oblivion - Darkness surrounds me\n", + "Skipped: I worry about all things. It is how I am. Hope that doesn't bother you.\n", + "Skipped: Cup of tea, no cakes- Under this shabby tin roof Trimmed green tea fields.\n", + "Skipped: \"Nothing is permanent.\"\n", + "Skipped: Comfort in Routine\n", + "Skipped: cloudy days\n", + "Skipped: This is not a haiku . . .\n", + "Skipped: Tomorrow\n", + "Skipped: Bethesda E3 2018 Haiku Review!\n", + "Processing 3300/15706\n", + "Skipped: Futility\n", + "Skipped: Futility II\n", + "Skipped: Mom\n", + "Skipped: savor\n", + "Skipped: Why pennies in a stream?\n", + "Skipped: Educational wtf\n", + "Skipped: Crosspost\n", + "Skipped: traps\n", + "Skipped: Gentle lullaby--A chorus of soft rain and my husband's breathing.\n", + "Skipped: Gentle lullaby--a chorus of soft rain and my husband's breathing.\n", + "Skipped: Overcoming Anxiety\n", + "Skipped: Shots From a Gun and a Phone\n", + "Processing 3400/15706\n", + "Skipped: She'll catch you\n", + "Skipped: Hollow Heart\n", + "Skipped: Hollow Heart\n", + "Skipped: only you, my rose\n", + "Skipped: Film of summer sweat /\n", + "Skipped: Poem 43\n", + "Skipped: Fatherhood\n", + "Skipped: Hot summer, cold soup,\n", + "Skipped: Sit down with ice tea\n", + "Skipped: Katkoot\n", + "Skipped: Lovestruck\n", + "Processing 3500/15706\n", + "Skipped: Aftermath\n", + "Skipped: Favorite David Wong quote\n", + "Skipped: A child's musings\n", + "Skipped: Cosmic Plastic\n", + "Skipped: Smoking the Stress Away\n", + "Skipped: Angsty poetry\n", + "Skipped: test post ignore\n", + "Skipped: Call for submissions!!!\n", + "Skipped: TLDR;; I was challenged to create a haiku referencing the delivery of my overdue library books via dog pulled sled.\n", + "Skipped: Cat reacts to me reading my haiku \"After the Blizzard\"\n", + "Skipped: 出発, Departure\n", + "Skipped: 肌寒い, Crisp\n", + "Skipped: Destiny\n", + "Skipped: Cemetary Thoughts\n", + "Skipped: Student loan debt: a series of haikus\n", + "Skipped: Cerebellum\n", + "Skipped: Tis the season\n", + "Skipped: 5 that have been stalking me\n", + "Processing 3600/15706\n", + "Skipped: 01000011\n", + "Skipped: マルチ, Mulch\n", + "Skipped: Unintentional Marital Celebacy\n", + "Skipped: I am the struggle / how does one do a classpath / r/unixhelp\n", + "Skipped: Ring Ring, Ring Ring, Click. / / No, I understand.\n", + "Skipped: 休み, Respite\n", + "Skipped: I Will Wait For Spring\n", + "Skipped: ジャーニー, Journey\n", + "Skipped: This is our kitchen haiku\n", + "Skipped: 検索, Searching\n", + "Skipped: 奇妙, Strange\n", + "Skipped: today\n", + "Skipped: Rose-colored Memories\n", + "Skipped: 十分な, Enough\n", + "Skipped: 慰安, Comfort\n", + "Skipped: 振り返る, Turn around\n", + "Skipped: The lesson\n", + "Skipped: 声- Voice\n", + "Skipped: It seems I’m backwards\n", + "Skipped: A breeze on hot skin, the sound of waves and laughter--small joys fill the heart.\n", + "Processing 3700/15706\n", + "Skipped: 時刻, Time\n", + "Skipped: 訪問者, Visitors\n", + "Skipped: 豊富, Abundance\n", + "Skipped: i am not okay - i am lost in this world - with no one to love\n", + "Skipped: 立ち籠める, Shroud\n", + "Skipped: 行方不明, Missing\n", + "Skipped: 不屈, Fortitude\n", + "Skipped: コミットメント, Commitment\n", + "Skipped: 雪に, Snowbound\n", + "Processing 3800/15706\n", + "Skipped: 反対, Opposites\n", + "Skipped: イノセンス, Innocence\n", + "Skipped: Strange World\n", + "Skipped: Moment\n", + "Skipped: Gone\n", + "Skipped: We all thinks\n", + "Skipped: 平凡, Uninspired\n", + "Skipped: Beautiful Day.\n", + "Skipped: 労力, Labor\n", + "Skipped: 更新, Renewal\n", + "Skipped: Talking to a wall--unhearing, unresponsive--when I speak to you.\n", + "Skipped: 間伐, Thinning\n", + "Skipped: Salvation\n", + "Skipped: I did never write-a haiku in my whole life-this is my first try\n", + "Skipped: PSA about syllables ...\n", + "Skipped: 交響曲, Symphony\n", + "Skipped: A bit of haiku written by the Champion of haiku. F*ck you.\n", + "Skipped: Mon Ami\n", + "Skipped: Sorrow\n", + "Skipped: 使者, Envoy\n", + "Skipped: Can't Hold It All\n", + "Skipped: 雪片- Snowflake\n", + "Skipped: びっくりしました, Startled\n", + "Skipped: My Dad\n", + "Skipped: Nurture\n", + "Processing 3900/15706\n", + "Skipped: 最後- Ending\n", + "Skipped: Waves break rock and sand- Rain pours rivers in the sky- Be like the water\n", + "Skipped: 友交, Companionship\n", + "Skipped: This statement only refers to itself. Does it mean something at all?\n", + "Skipped: SFV Haikus\n", + "Skipped: Ceramic Waves\n", + "Skipped: リターン, Return\n", + "Skipped: ルミネッセンス, Luminescence\n", + "Skipped: Seasonal regret\n", + "Skipped: EMPATHY\n", + "Skipped: Scent\n", + "Skipped: As another chapter comes to an end\n", + "Skipped: The Fire\n", + "Skipped: Snowdrops\n", + "Skipped: DreamJournal Haiku\n", + "Skipped: Snow: A Haiku\n", + "Skipped: Studying...\n", + "Skipped: dawn resting, tacit/sun-spotted silhouette spills/\n", + "light upon eyelid\n", + "\n", + "Skipped: r/haiku now has some flair!\n", + "Skipped: early treads of spring\n", + "Skipped: Leaves\n", + "Skipped: Spring\n", + "Skipped: Most Interesting Man's Haiku\n", + "Skipped: Apples\n", + "Processing 4000/15706\n", + "Skipped: The Tree\n", + "Skipped: Reddit is a harsh mistress\n", + "Skipped: love is best expressed by a handful of flowers that wither and die \n", + "Skipped: nature makes you want a mate who possesses traits you believe you lack \n", + "Skipped: Ghostbusters Haikus Go Here\n", + "Skipped: Blossom Caress: an off the cuff haiku I wrote last night for a friend\n", + "Skipped: Cicada\n", + "Skipped: You make me horny\n", + "Skipped: We waste so much time discussing how far to kick the can down the road...\n", + "Skipped: First time trying out haikus!\n", + "Skipped: First time trying haikus\n", + "Skipped: The word cicada comes from Latin cicada which means cicada\n", + "Skipped: I sit on my throne - Raining hell on those below - My coffee gets cold\n", + "Skipped: \"Driving in the Rain\"\n", + "Skipped: Vegas!\n", + "Skipped: More « burgoynealexburgoyne\n", + "Skipped: Lifetimes Away\n", + "Skipped: how did I do with my first Haiku?\n", + "Skipped: These are some haikus I wrote, I hope you enjoy!\n", + "Skipped: Gandalf the Polite\n", + "Skipped: Parking at the mall, / \n", + "searching for a decent spot - / \n", + "move quick or miss out!\n", + "Skipped: an interview by kala ramesh on haiku at the children's literature festival - bookaroo - in delhi, india\n", + "Skipped: Woman in Crazy Hat Spits Up Chinese Food - YouTube\n", + "Skipped: Come back (A haiku)\n", + "Skipped: Story Of My Heart (2nd Attempt at Haiku)\n", + "Skipped: A month of Facebook Haikus\n", + "Skipped: Haiku in three stanzas that I hope you like\n", + "Processing 4100/15706\n", + "Skipped: Lethargic\n", + "Skipped: Because I would not/ Because I did not accept/ I shall not become/\n", + "Skipped: Friends aren't important\n", + "Skipped: The Hater's Haiku\n", + "Skipped: Bad Buskers, Bad Haiku\n", + "Skipped: I just made my first haiku\n", + "Skipped: Girlfriend in the morning\n", + "Skipped: Haiku Blog...\n", + "Skipped: I've been writing a lot of haiku lately...\n", + "Skipped: My Home Is Where My Heart Is...\n", + "Skipped: Summer sun blazing / clouds too distant for relief. Grandmother fans self\n", + "Skipped: Event lament\n", + "Skipped: Google penguin explained in haiku form...\n", + "Skipped: My fridge magnet haikus [OC]\n", + "Skipped: On discrimination\n", + "Skipped: 12 months have passed\n", + "Skipped: Type-ity, type, type; delete, delete, delete. Click.; Shit. Ten new errors.\n", + "Skipped: My folks' 18 year old jack russell passed on over the weekend. She was a good beast. For you Fi\n", + "Skipped: Haikus:\n", + "Skipped: Hai-Cthulhu\n", + "Skipped: Haiku chosen to go to Mars.\n", + "Skipped: Fickle Heart\n", + "Skipped: Reflection\n", + "Skipped: [Revelation]\n", + "Skipped: Oil\n", + "Skipped: new subreddit: r/renga\n", + "Skipped: Heavy hearts sink fast Deeper an deeper it goes Until the storm clears.\n", + "Skipped: This is for the confident woman this the burns across her back and shoulders.\n", + "Skipped: Antelope Elope\n", + "Skipped: A haiku for skateboarding.\n", + "Skipped: While drinking at a bar...\n", + "Skipped: A Haiku for summer...\n", + "Skipped: Avian angst\n", + "Skipped: Every time when we meet,\n", + "Skipped: big lake~gray sky~loud silence ~~~\n", + "Processing 4200/15706\n", + "Skipped: The Universe Forgets\n", + "Skipped: My first multi leveled Haiku This one goes out to no_offence_intended.\n", + "Skipped: Stubborn Mankind...\n", + "Skipped: Once more unto the breach\n", + "Skipped: Newton's Laws (written by my physics prof)\n", + "Skipped: A bitter sweet haiku.\n", + "Skipped: Write a Haiku for a scholarship\n", + "Skipped: So I asked my friend to come up with a small story I could write a multiple line haiku of...\n", + "Skipped: A haiku\n", + "Skipped: Led Zeppelin haikus, one for each band member.\n", + "Skipped: My getting up haiku\n", + "Skipped: Ode to my Shanus\n", + "Skipped: Beach\n", + "Skipped: Pocket full of hair / \"A lock to remember me.\" / You said it softly / One last thing, \"I still love you.\" / Pocket full of hair\n", + "Skipped: I'm Weezing\n", + "Skipped: Vitriol\n", + "Skipped: Loading times / They're not for me / So I'll treat myself / To an SSD\n", + "Skipped: Dry cereal\n", + "Processing 4300/15706\n", + "Skipped: Storm\n", + "Skipped: They voted me \"Most likely to overachieve in all that he does\"\n", + "Skipped: Yum.\n", + "Skipped: Bonfire\n", + "Skipped: are you safe now?\n", + "Skipped: Truth and true truth\n", + "Skipped: Haiku #1 the truth.\n", + "Skipped: Zomku\n", + "Skipped: Pluto haiku, from Twitter\n", + "Skipped: it was the trees at my house / where i struck my great bell\n", + "Skipped: A thought on smartphones\n", + "Skipped: We\n", + "Skipped: I like her, I do/I think about her, I do/Does she? I don't know Doe she care? Don't know/Notice me, please? No, thank you/Will you...Fuck off please\n", + "Skipped: I like her, I do/I think about her, I do/Does she? I don't know // Does she care? Don't know/Notice me, please? No, thank you/Will you...Fuck off please\n", + "Skipped: [Book] The Divine Farmer's Renga\n", + "Skipped: HELP - Create haiku about your love for PC gaming\n", + "Skipped: Please HELP me create haiku about love for PC gaming.\n", + "Processing 4400/15706\n", + "Skipped: Insomnia\n", + "Skipped: Autumn\n", + "Skipped: Haiku\n", + "Skipped: Rage\n", + "Skipped: Haiku for the Japanese Hostages\n", + "Skipped: Tru lyfe\n", + "Skipped: The Storm\n", + "Skipped: Japanese Haiku: Its Essential Nature and History - The best book on haiku I have ever read\n", + "Processing 4500/15706\n", + "Skipped: (3/5/3) - a lone tree / stands in silhouette / crimson skies\n", + "Skipped: A commuter's haiku\n", + "Skipped: Jorge Luis Borges - 17 Haiku (my translations)\n", + "Skipped: Coffee for breakfast. Feed your addiction my friend. Got to have sweets too!\n", + "Skipped: Weeks and months have passed/ Yellow light through wire glass/ Sticker - \"visitor\"/\n", + "Skipped: Learning japanese. My first haiku.\n", + "Skipped: Ashes land on me\n", + "Skipped: Alarm cat\n", + "Processing 4600/15706\n", + "Skipped: Memory\n", + "Skipped: I was challenged by a friend\n", + "Skipped: Happy New Year\n", + "Skipped: Happy New Year\n", + "Skipped: View from the front porch the blue ocean straight ahead dunes, sand, waves, blue sky\n", + "Skipped: Given the time / Given the place / Flowers bloom / Out in space\n", + "Skipped: [Meta] Do you like to write haikus? Do you like space? (Of course you do)\n", + "Processing 4700/15706\n", + "Skipped: Sleep\n", + "Skipped: Snow\n", + "Skipped: You\n", + "Skipped: dreaming of my family tree\n", + "Skipped: The Artichoke and the Soufflé\n", + "Skipped: I miss her\n", + "Skipped: Warrior\n", + "Skipped: Hunger\n", + "Skipped: a simple hug\n", + "Skipped: Remembering a Friend\n", + "Skipped: When typing an essay...\n", + "Skipped: A Haiku about ambition.\n", + "Skipped: Unspoken Words\n", + "Skipped: You, From Afar\n", + "Skipped: You've changed a lot dude\n", + "Skipped: \"The MCAT\"- A tribute to the struggle\n", + "Skipped: First try!\n", + "Skipped: Moving on.\n", + "Skipped: When it's rough be tough\n", + "Skipped: Annoying Produce\n", + "Skipped: I'll buy bananas! Home: crunchy green green green RIPE lord of the fruitflies\n", + "Skipped: Astral\n", + "Processing 4800/15706\n", + "Skipped: Mornings without You\n", + "Skipped: Painting Winter\n", + "Skipped: Illustration of \"Autumn Moonlight\" by Matsuo Basho\n", + "Skipped: Michael McClure inspired haiku\n", + "Skipped: Winter Thaw\n", + "Skipped: Satellite\n", + "Skipped: American Haiku's\n", + "Skipped: Refugees of the mind\n", + "Skipped: Long sleeves of autumn fill me with warmth and hide psoriasis\n", + "Skipped: Rain\n", + "Skipped: sasina maneewan m.5/4 no.32\n", + "Skipped: I'm not as happy with this as I thought I'd be, but I got it down.\n", + "Processing 4900/15706\n", + "Skipped: I have seemed to have lost inspiration, suggestions welcome.\n", + "Skipped: \"how to tie a noose\"/Help me, Google. How can I/be free from this hell?//The rope is secure/Standing on the wobbly chair/relief is just a—\n", + "Skipped: Have you got the time?\n", + "Skipped: Nice guys finish last./ Over looked by snobbish traits./ Chivalry ain't dead.../ ...Forgotten is charm,/ Lost in a sea of douche bags./ Forever friend zoned.\n", + "Skipped: Coffee until noon. Oh my, I'm dehydrated. Better drink water.\n", + "Skipped: My latest haiku; think it's my best one so far. Had fun writing it.\n", + "Skipped: Kingpin.\n", + "Skipped: Red Light\n", + "Skipped: I've just learned a new form called the color poem. You should try it, too!\n", + "Skipped: I'm very proud of this one... Subtle message with each first letter in the lines.\n", + "Skipped: Cuts\n", + "Skipped: Haiku Man (first post)\n", + "Skipped: What are the Three Greats in life?\n", + "Skipped: Translucent creatures... try to escape the fire. Autumn tears.\n", + "Processing 5000/15706\n", + "Skipped: Can anyone help me write a Haiku?\n", + "Skipped: Penguin Haiku IV\n", + "Skipped: I started a new haiku blog. I'd really love it if you guys checked it out. (Link inside.)\n", + "Skipped: My friend started a new haiku blog. Thought I'd help him out and spread the word. Link inside.\n", + "Skipped: can these fish drawings inspire haiku's?\n", + "Skipped: I'm not sure if this is acceptable as a Haiku\n", + "Skipped: Issues II\n", + "Skipped: a haiku for the apocalypse that never happened\n", + "Skipped: So I'm a bit hungover today\n", + "Skipped: I hate having employees\n", + "Skipped: first attempt\n", + "Skipped: The Promise Land\n", + "Skipped: Weekend angst\n", + "Skipped: A coffee haiku. Second draft\n", + "Skipped: first attempt\n", + "Skipped: Based Swag Haiku\n", + "Skipped: first post to r/haiku original work from thecaveandthevoid.com\n", + "Skipped: One for those who don't like Shakespeare.\n", + "Skipped: Where am I?\n", + "Skipped: New to this subreddit. Here goes nothing.\n", + "Skipped: I dont mean to brag, but this is what I can come up with in 17 seconds\n", + "Skipped: How to face the day....sorry about the language\n", + "Skipped: YOLO\n", + "Skipped: I really need a new job\n", + "Skipped: This one's dedicated to Flappy Bird\n", + "Skipped: zazen\n", + "Skipped: Can haiku help me cope?\n", + "Skipped: arming broken hearts\n", + "Skipped: I wrote a book of haikus - Everybody Hates Work: 5-7-5's About the 9 to 5\n", + "Processing 5100/15706\n", + "Skipped: Your wizardly ways / Are awkward in the bathroom / Summon some manners /\n", + "Skipped: Camping\n", + "Skipped: Me+you\n", + "Skipped: Influenza\n", + "Skipped: Please explain to a westerner\n", + "Skipped: my porcelain couch\n", + "Skipped: Haiku Compilation #2\n", + "Skipped: Nyan\n", + "Skipped: Haiku that describes your sex life\n", + "Skipped: My breakfast making: not all its cracked up to be: eggshell in omelet.\n", + "Skipped: my morning commute: the only roadside hazard: fresh pileup dog poop.\n", + "Skipped: Impermanence\n", + "Skipped: \"Love Hurts\" - HaikuCircus.com\n", + "Skipped: Please read my Haiku, vote for it if you like it. Thank you very much!\n", + "Skipped: Chick-fil-a is right. We need to fight gay people. Not obesity. \n", + "Processing 5200/15706\n", + "Skipped: Double Haiku \n", + "Embarrassing College Adventure\n", + "\n", + "Skipped: Short Verses and Other Curses #4\n", + "Skipped: an observation of my breakfast\n", + "Skipped: Desert in dry thought...\n", + "Skipped: London 2012 Olympic Haiku - 15 haiku\n", + "Skipped: Bleeding from the head /\n", + "the mob surrounds the broke man /\n", + "machetes in hand\n", + "Skipped: Bound to the ground /\n", + "you have finally been found /\n", + "by the scent of hound\n", + "Skipped: He has a Kill List. He has a Nobel Peace Prize. Nothing is simple. \n", + "Skipped: lost soul looks for home \\\n", + "never found, always alone \\\n", + "darkness all abound\n", + "Skipped: Made by insane men/ Grotesque nightmarish horrors/ Be gone, r/spacedicks\n", + "Skipped: A moment with the Dr. (Haiku)\n", + "Skipped: Shopping\n", + "In\n", + "The\n", + "Grocery\n", + "Store\n", + "\n", + "Pleasantly\n", + "Cool\n", + "\n", + "Listening\n", + "To\n", + "The\n", + "Music\n", + "Over\n", + "The\n", + "Intercom\n", + "Skipped: The Battle For Fairyland [Haiku]\n", + "Skipped: I wish I lived in / A place called Out of Service / \n", + "Buses everywhere.\n", + "Skipped: I wrote a haiku for a scholarship, is it any good?\n", + "Skipped: /b/ makes haikus. \n", + "Skipped: The Troubles of Moving in the Rain\n", + "Skipped: Why bother with life?\n", + "Skipped: Here is a Haiku I made for you guys today.\n", + "Skipped: Round-eye-ku # 3\n", + "Skipped: Round-eye-ku # 4\n", + "Skipped: Old aquarium\n", + "Skipped: Can you guess the anime from this haiku ?\n", + "Skipped: Round-eye-ku # 5\n", + "Skipped: chilly night! homeless child catches cold and fights\n", + "Skipped: Round-eye-ku # 6\n", + "Skipped: at first sight\n", + "Skipped: Round-eye-ku # 7\n", + "Skipped: under thick sheets\n", + "Skipped: Tell me (w/ comic)\n", + "Skipped: night scream\n", + "Processing 5300/15706\n", + "Skipped: Summer night\n", + "Skipped: Loner\n", + "Skipped: bubble bursts!\n", + "Skipped: Lives are like houses: it is the spaces that count, rather than the bricks.\n", + "Skipped: You know what babe? You're a fucking piece of shit. I want to break up\n", + "Processing 5400/15706\n", + "Skipped: How low can they go / each new bottom has trap doors / an abyss of greed /\n", + "Skipped: Oof\n", + "Skipped: Blossoms. Fragrant. Buzz. Sweet air. Fluttering. Singing. Eyes to heaven. Thanks!\n", + "Skipped: Simple\n", + "Skipped: Goodbye Haiku Collection\n", + "Skipped: Loving you\n", + "Skipped: Biological Redshift\n", + "Processing 5500/15706\n", + "Skipped: Mary\n", + "Skipped: With apologies to Ray Bradbury\n", + "Skipped: [INFO] The Haiku\n", + "Skipped: Exit Strategies\n", + "Skipped: Can someonehelp?\n", + "Skipped: Haiku OS Action - From BeOS(compatible) to Desktop: 128MB RAM/400 MHz CPU, written in C++, Hybrid kernel, Qt support, Package management, GCC. https://www.youtube.com/watch?v=R3xZVT-Yd3k\n", + "Skipped: To read the haiku you must go to the comments and copy paste link\n", + "Skipped: Teach me the ways of hakiu\n", + "Processing 5600/15706\n", + "Skipped: My collection so far\n", + "Skipped: Renga / multi-stanza haiku\n", + "Skipped: The Curse (there may be one or two)\n", + "Skipped: Cold Blooded\n", + "Skipped: Two haikus about Norway.\n", + "Processing 5700/15706\n", + "Skipped: Pillars\n", + "Skipped: Pillars\n", + "Skipped: The Apple Fell\n", + "Skipped: Dia de Muertos\n", + "Skipped: The face\n", + "Skipped: Non-traditional, free form\n", + "Skipped: Obstacles - (Renku of Haikus?)\n", + "Skipped: META: What is a Haiku?\n", + "Skipped: blank\n", + "Skipped: Song\n", + "Skipped: autumn looms sternly /'s summer bids a grand fairwell /'s \"'til next time!\" we say /'s\n", + "Skipped: I've forgotten how\n", + "Skipped: Regret (comic)\n", + "Skipped: 2016, year of the hemorrhoid\n", + "Skipped: Projection + reconciliation (with comic)\n", + "Skipped: I teased my sister and she fired back with venom\n", + "Skipped: My book so far, seeking feedback\n", + "Skipped: Autumn Ends (Haiku by Mortimer Reed)\n", + "Skipped: No single person helped our economy more than Adolph Hitler.\n", + "Processing 5800/15706\n", + "Skipped: Time (w/ comic)\n", + "Skipped: It Wasn't a Moon\n", + "Skipped: Haiku - Help, I need a title!\n", + "Skipped: Black Friday\n", + "Skipped: Rights\n", + "Skipped: haiku from vacation\n", + "Skipped: Letting my thoughts flow\n", + "Skipped: The Wu-Tang Secret\n", + "Skipped: Haiku\n", + "Skipped: Unconventionality (with comic)\n", + "Skipped: Trash\n", + "Skipped: UwU KAWAI DESU\n", + "Skipped: Judge this.\n", + "Skipped: I wish we were all dogs.\n", + "Skipped: Incarnate\n", + "Skipped: Username\n", + "Skipped: 生存者 - survivor\n", + "Processing 5900/15706\n", + "Skipped: 林檎 - apple\n", + "Skipped: 渇き - thirst\n", + "Skipped: (REQUEST) Can someone write a beautiful haiku about a girl named Bekah, and possibly about how much I love her?\n", + "Processing 6000/15706\n", + "Skipped: Coming soon...\n", + "Skipped: Little bird\n", + "Skipped: Haiku\n", + "Skipped: ダンク - dank\n", + "Skipped: Paper\n", + "Skipped: 再生 - rebirth\n", + "Skipped: Trial: Let’s write some haiku together, reddit.\n", + "Skipped: Peace is a Haiku song\n", + "Skipped: Haiku about propaganda\n", + "Skipped: Forget the World\n", + "Skipped: キャンプ - camping\n", + "Skipped: 実習 - training\n", + "Skipped: 垂準 - plummet\n", + "Skipped: You\n", + "Skipped: 影 - shadow\n", + "Skipped: 2018-09-20\n", + "Skipped: 9/11 jokes / don’t bode well for anyone / they all crash and burn\n", + "Skipped: 2018-09-21\n", + "Processing 6100/15706\n", + "Skipped: Gastropod Writes\n", + "Skipped: 湿潤 - wet\n", + "Skipped: Trapped\n", + "Skipped: I apologize, I did not mean to hurt you. I love you so much.\n", + "Skipped: An Etched Stone\n", + "Skipped: Imagine\n", + "Skipped: Loving someone hurts, missing someone is painful. Damn this heart of mine!\n", + "Skipped: E=mc squared. Energy from matter at the speed of light\n", + "Skipped: I'm done with slashes splitting my lines; it's time for some punctuation\n", + "Skipped: I'm done with slashes splitting my lines; it's time for some punctuation.\n", + "Skipped: Perhaps nsfw inside\n", + "Skipped: [NSFW]ish. It's about sex.\n", + "Processing 6200/15706\n", + "Skipped: [deleted by user]\n", + "Skipped: [deleted by user]\n", + "Skipped: 掩護, shelter\n", + "Skipped: Acoustics\n", + "Skipped: [deleted by user]\n", + "Skipped: On the Definition of a Haiku\n", + "Skipped: Crawled into the woods / Doused in pure honey, I chose / To let the bugs dine /\n", + "Skipped: Just starting off\n", + "Processing 6300/15706\n", + "Skipped: 褒美, reward\n", + "Skipped: His Mother Must Be So Proud\n", + "Skipped: A question.\n", + "Skipped: City in vibration\n", + "Skipped: Burnt leaves like raindrops / Each Fall a knife to the soul / / Orionid falls!\n", + "Skipped: History of Haiku\n", + "Skipped: The Self Exposed\n", + "Skipped: Mapakadapra\n", + "Skipped: Noodles swirl and rise. Bubbling sauce--tomatoes, beef--makes my mouth water.\n", + "Skipped: For my fallen comrades\n", + "Skipped: For My Fallen Comrades\n", + "Skipped: 吹き送る, waft\n", + "Skipped: 限界, edge\n", + "Skipped: Waiting to be (and one more)\n", + "Processing 6400/15706\n", + "Skipped: Review of The Penguin Book of Haiku\n", + "Skipped: Haiku Resources\n", + "Skipped: A Horse walks into a bar / why the long face, are you sad?/ The Horse does not speak/\n", + "Skipped: When a fan/Is the man/I'll drive a van/for my fan\n", + "Skipped: The Finisher\n", + "Skipped: I hope there’s nothing▫️once it’s all over and done▫️ life is exhausting\n", + "Skipped: Rules update\n", + "Processing 6500/15706\n", + "Skipped: Invisible slow burning flames called radiation.\n", + "Skipped: Haiku\n", + "Skipped: autumn advice for the son I never had\n", + "Skipped: Of all the reasons To keep in living this life You're my favourite\n", + "Skipped: Of all the reasons To keep in living this life You're my favourite\n", + "Skipped: Ode to a dead meme\n", + "Skipped: 下稽古, rehearsal\n", + "Processing 6600/15706\n", + "Skipped: Miss Keisha? MISS KEISHA???\n", + "Skipped: Roots\n", + "Skipped: And We Dance - Haiku\n", + "Skipped: Help i need a hiaku about the constillation, hercules\n", + "Skipped: Polish’d a haiku /From the trees to the city. Forgotten it now\n", + "Skipped: Hopping about in/ The sprouting myrtle branches/ A pair of loving finches/\n", + "Skipped: In the white birch, the/ Lone American crow/ Recognizing faces/\n", + "Skipped: tanka style\n", + "Processing 6700/15706\n", + "Skipped: It goes without words / We all love a confession / Not the confessor/\n", + "Skipped: Post and try to make your free verse Haiku\n", + "Skipped: Faces in the rain/Strugglingly squinting tensely, looks like they're shitting\n", + "Skipped: 6 haiku, not diary sentences.\n", + "Skipped: She says she need space/ She says that she needs more time/ I only need her/\n", + "Skipped: never ever leave: your sack lunch unattended: seagulls are bastards\n", + "Skipped: Misty mountain pine/ Over gleaming poppies-/ The barn door was once red./\n", + "Skipped: The scrambling frog/ In the dry leaves. Seeking to/ See the spring eclipse./\n", + "Skipped: In the parking lot/ An aerial battle ensues-/ The relentless crow/\n", + "Skipped: Through the tangle of/ Eucalyptus hulk sticks/ The blaze of this sunrise/\n", + "Skipped: /r/DrunkuHighku, Haiku written under the influence\n", + "Skipped: [Help] are there any good haiku on here (lol)? Down votes are welcomed.\n", + "Skipped: Chugging to a stop/ The rusty motorcycle/ After the spring rain/\n", + "Skipped: The scent of blooming/ Roses in the traveling/ Wind, going elsewhere/\n", + "Skipped: While urinating/ On the porch stone surrounding/ The moon and her wink/\n", + "Skipped: The creak of old wood/ Rubbing together in the/ Wind- alone with spring./\n", + "Skipped: Haiku Robot\n", + "Skipped: \"What other naked/ Moon is out tonight but you?\"/ Her eyes widened white./\n", + "Skipped: Dawn's light spread out on/ The eager highway- my mind/ Is late for work./\n", + "Skipped: Facebook removal\n", + "Processing 6800/15706\n", + "Skipped: The wind thuds and/ Whistles against my window./ The spring rain will follow./\n", + "Skipped: Lying under/ Swaying thistles, a shy bird/ Sings for me. Pine-hidden./\n", + "Skipped: Haiku the Bell Tolls\n", + "Skipped: Moths.\n", + "Skipped: Yasuda's \"Japanese Haiku\" - The most in-depth book about any one type of literature I have ever read\n", + "Skipped: *\n", + "Skipped: I hope they realize killing google video is being evil\n", + "Skipped: Heliodromus\n", + "Skipped: haiku for you\n", + "Skipped: haiku for you\n", + "Skipped: Wish\n", + "Skipped: Morning\n", + "Skipped: To the East\n", + "Skipped: orange streetlight\n", + "Skipped: Haiku#20\n", + "Skipped: Haiku #21\n", + "Skipped: I feel the McRib only goes off the menu so it can come back\n", + "Processing 6900/15706\n", + "Skipped: in school they told us democracy was the same as capitalism\n", + "Skipped: Everything's backwards. \n", + "Skipped: pizza on its way / \n", + "it was snowing earlier / \n", + "one hours plus wait time\n", + "Skipped: sixth floor is my home / \n", + "the elevator is broken / \n", + "the stairs are my friend\n", + "Skipped: it's awful crazy we still talk about torture like it might be cool \n", + "Skipped: sentence wears haiku's kimono./ pigeon dressing as peacock./ murmuration of dictionary./ \n", + "Skipped: withered legs of haiku fall- dance\n", + "Skipped: City Uses Haiku to Promote Street Safety \n", + "\n", + "Skipped: I don't know Webster / and I don't know Merriam\n", + "/ but I hate them both\n", + "Skipped: Trying Too Harf (rewritten)\n", + "Skipped: Trying Too Hard (rewritten)\n", + "Skipped: First r/haiku / That’s if the / is pronounced / Else I did it wrong\n", + "Skipped: Like it is.\n", + "Skipped: A Plumber's Lament\n", + "Skipped: Splattered canvas / an abstraction in Montauk / Meaning here with you /\n", + "Skipped: Wick\n", + "Skipped: Forbidden love part 3\n", + "Skipped: Always\n", + "Skipped: A knife in my chest / The blade beautiful ornate /\n", + "Skipped: When I reach the end\n", + "Skipped: Pretty Kitty\n", + "Skipped: One.\n", + "Processing 7000/15706\n", + "Skipped: Morning musings from the Snake River Valley.\n", + "Skipped: Eyes.\n", + "Skipped: Haiku haiku\n", + "Skipped: Colors.\n", + "Skipped: Flicker.\n", + "Skipped: Hello hi I’m a guy But I am about to die I lie in a coffin Coughing while I try To break the ground above me But I’m ‘bout to cry Cuz I am afraid That I‘d have to say goodbye Fumble bumble dumble red dye\n", + "Skipped: Clouds.\n", + "Skipped: [META] About the recommended reading list in the sidebar, and the sub as a whole\n", + "Skipped: Savior\n", + "Skipped: Alive.\n", + "Skipped: Reflection\n", + "Skipped: All liars and thieves- In their words it spells friendship- But their eyes scream schemes\n", + "Skipped: The humble cricket – Singing the song of the Earth – Brrrr-Brrr-Brrrr-Brrr-Brrr\n", + "Skipped: Young soul\n", + "Skipped: Think\n", + "Processing 7100/15706\n", + "Skipped: Beats.\n", + "Skipped: A mango haiku\n", + "Skipped: Hot tea and cold coffee\n", + "Skipped: Love\n", + "Skipped: How many fat flies will the cross-legged frog swallow, before his leaf sinks?\n", + "Skipped: Sacrificed\n", + "Skipped: demo doshits\n", + "Skipped: A Dash\n", + "Skipped: We've all been there\n", + "Skipped: sleepless (haiku sonnet)\n", + "Skipped: Paperless\n", + "Skipped: Making Strides Against Breast Cancer Hawai'i\n", + "Skipped: My 1st Haiku\n", + "Skipped: hibi\n", + "Processing 7200/15706\n", + "Skipped: Burning lake\n", + "Skipped: Haikus are weird\n", + "Skipped: bird in flight soars the sky... landscape\n", + "Skipped: Discussion: haiku structure\n", + "Skipped: Casual Knowledge\n", + "Skipped: [HAIKU] WHERE'S MY SUPER SUCC?!\n", + "Skipped: The Darkness Calls\n", + "Skipped: Worse than boogeymen, scarier than ghosts and ghouls: things I fear are real.\n", + "Skipped: How am I doing with haiku?\n", + "Skipped: carrier IQ bothers people who I thought had nothing to hide\n", + "Skipped: I am starting to get the extremely uncomfortable feeling that we are already living in the first Corporate Dictatorship in history and just haven't all realized it yet\n", + "Skipped: I wish I could write something that would inspire you to do something great \n", + "Skipped: Submit Your Haiku Here!\n", + "Skipped: 365 days\n", + "Processing 7300/15706\n", + "Skipped: Either/or\n", + "Skipped: you should be able to cash in reddit karma and veto downvotes\n", + "Skipped: She has left us now\n", + "The grave I dug was ready\n", + "Farewell my sweet girl \n", + "Skipped: all i wanted this Christmas was to drive my car straight into a wall\n", + "Skipped: On traditions of enlightenment\n", + "Skipped: Great Haiku Poets: Uejima Onitsura (1660-1738)\n", + "Skipped: What counts?\n", + "Skipped: Serendipitous. Is a five syllable word. Happy accident.\n", + "Skipped: Your truth\n", + "Skipped: Fallen cherry blossoms (w/ comic)\n", + "Skipped: Nothingness.\n", + "Skipped: Question.\n", + "Skipped: Restricted.\n", + "Skipped: Wrong number.\n", + "Processing 7400/15706\n", + "Skipped: [NSFL] A collection of haiku inspired by the words of a soldier\n", + "Skipped: Tomorrow’s tale.\n", + "Skipped: shadow legs grow tall - to horizon golden path / lies ahead sunset\n", + "Skipped: Fool\n", + "Skipped: PHYSICS\n", + "Skipped: Cherry blossoms glow. I fall in love with living. Grey darkness lies behind.\n", + "Skipped: Cherry blossoms glow. I fall in love with living. Darkness lies behind.\n", + "Skipped: Stress\n", + "Skipped: Candid.\n", + "Skipped: Haiku\n", + "Skipped: Slashes\n", + "Skipped: .GIF ?\n", + "Skipped: .GIF ?\n", + "Skipped: Pain causes tension. Relax, reduce the tension. Tension causes pain.\n", + "Skipped: cloudy day haikus 12may\n", + "Skipped: rainy may haiku\n", + "Skipped: here\n", + "Skipped: rainy may haiku\n", + "Skipped: mood swings. z\n", + "Skipped: O\n", + "Skipped: smoking\n", + "Skipped: Forgive [w/ comic]\n", + "Skipped: Existence.\n", + "Processing 7500/15706\n", + "Skipped: Step by step\n", + "Skipped: Hope, hope, hope unmet. Momentum lost, eyes unseen. Love, unrequited.\n", + "Skipped: Loss.\n", + "Skipped: What you are?\n", + "Skipped: Sleepless.\n", + "Skipped: climbing stairs alone - one misstep, rushing downhill / chill climbs up the bone\n", + "Skipped: life solution - so crammed to live / in a single drop\n", + "Skipped: Do good.\n", + "Skipped: Dependent\n", + "Skipped: Attempt # 1\n", + "Skipped: Attempt #2\n", + "Skipped: lake in the road - all clouds, they shake / under tires load\n", + "Skipped: spring has come alone/ without the birds in tow/ morose, the birch waits/\n", + "Skipped: autumn of ardour/ not a matter of ease yet/ you I want to love/\n", + "Skipped: You flirted with death - no matter what I told you - one too many times.\n", + "Skipped: -What are these haikus-and how do you make these things-explainlikeimfive-\n", + "Skipped: summer's blinding heat/ winter in a broken heart/ tepid soul fallout/\n", + "Skipped: dark sky - shimmering lights / bellow\n", + "Skipped: Our own.\n", + "Skipped: dark sky - shimmering lights / below\n", + "Skipped: Screws, knives, rusted things; / Left behind in your garage. / I am where you were. // Your tackle box, Channellocks, / Are where you left them. / Just me and the rust.\n", + "Skipped: chunk of blue sky / by the window - coffee break\n", + "Skipped: smoke, stones - homeless crackheads / fight back\n", + "Skipped: fine sunny day - coffin lies down / anyway\n", + "Skipped: Martin Place\n", + "Skipped: The 82's: Haikus - No.43\n", + "Skipped: happy hour! beer moustache / pour 2lips\n", + "Skipped: buzzes the led bug - frog's tongue loose flies / but buzzing goes fry\n", + "Skipped: Sunburned Great Wall\n", + "Processing 7600/15706\n", + "Skipped: blue sunny morning: chirping birds and wind whistling. from bed, a mourning\n", + "Skipped: True Haiku\n", + "Skipped: traffic jam - and again, down again / rain spatter ran\n", + "Skipped: May 28th 2017.\n", + "Skipped: Love is...\n", + "Skipped: An ode to Indiana\n", + "Skipped: flowing river... pebbles lie on flower bed\n", + "Skipped: The real nightmare\n", + "Skipped: A couple of my haikus\n", + "Skipped: My Family - a Haiku cycle\n", + "Skipped: Capacitive input for the pre-Gen X crowd\n", + "Skipped: True Eternity\n", + "Skipped: On teachers who no longer care.\n", + "Skipped: Life\n", + "Skipped: I have no money, Is that meth we are cooking? I am rich as fuck\n", + "Skipped: A haiku about how I feel when I'm at an FNM\n", + "Skipped: Haiku titled \"Rain\" (r/poetry told me to post here!)\n", + "Skipped: Haiku about School being back\n", + "Skipped: If you've ever had a fish...\n", + "Skipped: Classic American literature haiku\n", + "Skipped: Write a birthday haiku so your friends will think you care about them...here's a start\n", + "Skipped: A riddle I wrote. (X-post from r/riddles). Can anyone solve?\n", + "Skipped: Saw this on craigslist today.\n", + "Skipped: meta-haiku, what do you think?\n", + "Skipped: Yes (a fifth-world haiku)\n", + "Skipped: Almost\n", + "Skipped: Mitt Romney\n", + "Skipped: One's a Neocon and one's a Republican. There's no Democrat. \n", + "Skipped: While reading a book, this thought popped up\n", + "Skipped: Count carefully.\n", + "\n", + "Skipped: I have two for your consideration that hang on ambiguities in English syllabification rules\n", + "Skipped: Mother Sparrow\n", + "Skipped: Earth's New Season\n", + "Skipped: Autumnal Orchids\n", + "Skipped: Zero's Haikus From Borderlands 2\n", + "Skipped: Moving\n", + "Skipped: Time Travel\n", + "Skipped: Gone Wild\n", + "Skipped: “I wish I took you to the prom”\n", + "Skipped: Une Ballerine Pâle\n", + "Skipped: Texas Snow\n", + "Skipped: メルト, Melt\n", + "Skipped: 怠惰な, Lazy\n", + "Skipped: a soaring palm tree • an alien salience • and the love of you\n", + "Skipped: 雨, Rain\n", + "Skipped: 調和, Harmony\n", + "Skipped: スリップ, Slip\n", + "Skipped: Back To The Store\n", + "Skipped: Alcoholic on New Year’s Eve\n", + "Skipped: Sore Nius\n", + "Skipped: Sore Nuis/\n", + "Processing 7700/15706\n", + "Skipped: a face cut in stone • looms over the distant trees • a red church tower\n", + "Skipped: 女神, Goddess\n", + "Skipped: 時- Time\n", + "Skipped: Vision\n", + "Skipped: スコール, Squall\n", + "Skipped: Interesting Haiku\n", + "Skipped: 解決, Resolve\n", + "Skipped: 神社, Shrine\n", + "Skipped: Til then\n", + "Skipped: 遷移, Transition\n", + "Skipped: a night train to you • I see the Moon on my left • as per usual\n", + "Skipped: ようこそ, Welcome\n", + "Skipped: Bitter, lazy girl ◦ Behind the purple diamond ◦ Worshiping the chef\n", + "Skipped: a moist hammering • of the soft fabric of being • so continuous\n", + "Skipped: Georgia is meant to be temperate in winter\n", + "Skipped: worms struggle and fight • a crate backlit by the Sun • sudden death is here\n", + "Skipped: Sex/the power of lust/i am dead inside/rabbits\n", + "Skipped: remember we would kiss under the hot pines _the feeling_\n", + "Skipped: For my grandparents and those who have lived long lives\n", + "Skipped: 調整, Adjustment\n", + "Skipped: 救済, Relief\n", + "Skipped: 本能, Instict\n", + "Skipped: parasitic orbs • latched onto naked, warped trees • spheres of mistletoe\n", + "Skipped: 歌手, Singer\n", + "Skipped: 十字路, Crossroads\n", + "Skipped: 孤独, Solitude\n", + "Skipped: Sunrise\n", + "Skipped: Defiance (haiku comic #50 of 52)\n", + "Processing 7800/15706\n", + "Skipped: リターン, Return\n", + "Skipped: A Good Song\n", + "Skipped: ほこりっぽいです, Dusty\n", + "Skipped: 周りに, Around\n", + "Skipped: 寂しい- Lonely\n", + "Skipped: Trip to the cemetery\n", + "Skipped: レーク, Lake\n", + "Skipped: Small Sentry\n", + "Skipped: 楽観的, Optimistic\n", + "Skipped: 江戸, Edo\n", + "Skipped: our bodies are raw • carnality roars in awe • a rapture of flesh\n", + "Skipped: Maybe\n", + "Skipped: 目覚め, Waking\n", + "Skipped: your hands skin me bare • your tongue flays me to the bone • anihilation\n", + "Skipped: 伸び伸び, Carefree\n", + "Skipped: Young\n", + "Skipped: Blue.\n", + "Skipped: ボディ, Body\n", + "Skipped: 瞑想, Meditation\n", + "Skipped: 忙しい, Busy\n", + "Skipped: 危険, Danger\n", + "Skipped: シャイニ��グ, Shining\n", + "Skipped: My Nervous Pet\n", + "Skipped: フラッシュバック- Flashbacks\n", + "Skipped: Life\n", + "Skipped: Painless\n", + "Skipped: アライアンス, Alliance\n", + "Skipped: Modern Fairy Tales Part 1\n", + "Skipped: Degenerates\n", + "Skipped: Modern Fairy Tales Part 2\n", + "Skipped: 運命, Destiny\n", + "Processing 7900/15706\n", + "Skipped: Cyclic\n", + "Skipped: 暗さ- Darkness\n", + "Skipped: an overtone grown • between twin buildings - a bell • rang wrong all along\n", + "Skipped: Modern Fairy Tales Part 3\n", + "Skipped: 飢え, Hunger\n", + "Skipped: The end of the end (webcomic-haiku #51 of 52)\n", + "Skipped: out over the sea • an unkindness of ravens • leaves seagulls behind\n", + "Skipped: 楽園- Paradise\n", + "Skipped: ripples cast in ice • veil the motion of water • a cold, winter night\n", + "Skipped: Pale summer sunrise, kookaburra starts the day, please, please let me sleep\n", + "Skipped: 再生- rebirth\n", + "Skipped: Trapped inside and out - Consistent, non-existent - Which way for \"normal\"?\n", + "Skipped: Time\n", + "Skipped: Run\n", + "Skipped: 静か, Quiet\n", + "Processing 8000/15706\n", + "Skipped: 不健康, Unhealthy\n", + "Skipped: 受け入れ, Acceptance\n", + "Skipped: 不運, Unlucky\n", + "Skipped: 飛翔, Soaring\n", + "Skipped: 器械, Instrument\n", + "Skipped: グライダー, Gliding\n", + "Skipped: 振動, Vibrations\n", + "Skipped: Compassion.\n", + "Skipped: Paint the sky/northern lights have yet to see/ in your eyes they dance/ spectacular reveries\n", + "Skipped: 希望- Hope\n", + "Skipped: this is not a haiku\n", + "Skipped: i have determined\n", + "Skipped: Monday Morning\n", + "Skipped: The one haiku-coo\n", + "Skipped: Pity\n", + "Skipped: ひらめいて- Sparkling\n", + "Skipped: Time Passages\n", + "Processing 8100/15706\n", + "Skipped: Dizzyland\n", + "Skipped: Not scary farm\n", + "Skipped: Re;\n", + "Skipped: News\n", + "Skipped: A Haiku about being a parent in the Canadian Winter\n", + "Skipped: Cloud Watching\n", + "Skipped: After endless noise--muscles tense and ears buzzing--I sit in silence.\n", + "Skipped: 575 1st entry\n", + "Skipped: It's really late now\n", + "Skipped: Water Flowing Under Ice ///. They tell me you’re cold/ But you give so much to all/ Love is never cold\n", + "Skipped: Possessions. All my possessions Are now but simple words Nothing else matters\n", + "Skipped: Something I wrote during the height of last summer.\n", + "Skipped: What does it say about me, that all my inspiration is borne of pain?\n", + "Skipped: Spring day\n", + "Skipped: Air\n", + "Skipped: Home\n", + "Skipped: a tastless dour rut the bland rigmarole set deep all neon nothing\n", + "Skipped: A (slightly NSFW) haiku about my favourite Nickelodeon producer\n", + "Skipped: Shaq Fu Haiku You, Might Like This Shaq Based Haiku. Performed Shatner Style.\n", + "Processing 8200/15706\n", + "Skipped: Autumn haiku's #2\n", + "Skipped: giving up\n", + "Skipped: dry leaves hide old skin... touched by dawn, crumbles to dust\n", + "Skipped: My love\n", + "Skipped: Claudia\n", + "Skipped: Bunny\n", + "Processing 8300/15706\n", + "Skipped: I wish you were here--not just your old, frail body--but your lovely mind.\n", + "Skipped: Stray cat\n", + "Skipped: A Haiku About Net Neutrality\n", + "Skipped: Hello hi I’m a guy / But I am about to die / I lie in a coffin / Coughing while I try / To break the ground above me / But I’m ‘bout to cry / Cuz I am afraid / That I‘d have to say goodbye / Fumble bumble dumble red dye\n", + "Skipped: Net neutrality\n", + "Skipped: Thanksgiving haiku\n", + "Skipped: Twenty-four hours short (haiku sonnet)\n", + "Skipped: I Can't Write Haikus\n", + "Skipped: Marx is always right. Die capitalist scum. Comunism good.\n", + "Skipped: Beaned\n", + "Skipped: goodbye, yellow brick road(long)\n", + "Skipped: [Small Haiku]\n", + "Processing 8400/15706\n", + "Skipped: My Son\n", + "Skipped: Not made of crystal--I won't shatter beyond hope. Each break's sealed with gold.\n", + "Skipped: i had an existential crisis in pharmacy school\n", + "Skipped: Hello\n", + "Skipped: We can do it (haiku sonnet)\n", + "Skipped: I аm hарру tо sее уоu\n", + "Skipped: Frоm mу роint оf viеw\n", + "Skipped: Wait a minutе!\n", + "Skipped: To my mind\n", + "Skipped: Could you help me for a second?\n", + "Skipped: Тo mу mind\n", + "Skipped: I am рlеаsеd to sее you\n", + "Skipped: Resolve (with comic)\n", + "Skipped: Everything I feel. Everything I see. Everything I hear. White noise.\n", + "Skipped: Everything I hear. Everything I see. Everything I feel. White noise.\n", + "Skipped: [FREE JOIN] 100% Frее-Sех-Dаting-Wеbsitе. Оur girls аrе lоoking fоr just frее-sех. Меmbеrs arе from аll ovеr thе world. Dоn't wаstе any mоrе timе looking for frее-dаting-sitеs. Jоin us tоdаy.\n", + "Skipped: [FREE-JOIN] 100% Free-Sex-Dаting-Website\n", + "Skipped: [FREE-JOIN] 100% Free Sex Dаting Website\n", + "Skipped: [FREE] Free Sex Dаting Website\n", + "Skipped: I’d say that I’d suggest that\n", + "Skipped: Hey caterpillar! We'll be butterflies some day, said the happy worm.\n", + "Skipped: I am happy to see you\n", + "Skipped: Personally, I think\n", + "Processing 8500/15706\n", + "Skipped: Rastrophiliopustrocity is an impressively long word.\n", + "Skipped: ?? I need help with this part ??/kid shooting me with arrows.// Glad he has bad aim.\n", + "Skipped: Howl (with comic)\n", + "Skipped: My sexy story about free dating website\n", + "Skipped: Why not write it right? See inside for reply thanks. I hope you enjoy.\n", + "Skipped: Focus (with comic)\n", + "Skipped: The reason\n", + "Skipped: Progressive\n", + "Skipped: Meetcute\n", + "Skipped: Rebellion\n", + "Skipped: To Our Goddess\n", + "Skipped: Within Limits\n", + "Skipped: Memoir\n", + "Skipped: Vie.\n", + "Processing 8600/15706\n", + "Skipped: Hidden.\n", + "Skipped: Identity\n", + "Skipped: Flower love.\n", + "Skipped: Unravel.\n", + "Skipped: Silent street corner/\n", + "Hasty figures; clouds greet the/\n", + "Impending shower\n", + "\n", + "Skipped: 夏の風・寝させない物・吹き飛ばす\n", + "Skipped: 5 seasons\n", + "Skipped: Haiku Reading\n", + "Skipped: A bit of my haiku inventory\n", + "Skipped: Redundant\n", + "Skipped: The struggle then release\n", + "Skipped: Game of Poetry\n", + "Skipped: I made a haiku to confirm a date\n", + "Skipped: while eating dinner a drop of wine trickles down the bottle\n", + "Processing 8700/15706\n", + "Skipped: I bet Egyptians feel like Americans did when Obama won\n", + "Skipped: thank fucking Jesus that alcohol only goes to a hundred proof \n", + "Skipped: Caffeine fiend, shaking/ tick, trembling, weak, \r\n", + "fumbling, sick/ Smells of sweet black shame\n", + "Skipped: To belief in myths/ To question authority/ To fear all \r\n", + "the same\n", + "Skipped: the wind blows her hair between your lips as you kiss the tip of her nose \n", + "Skipped: Coffee @ Coffee Shops\n", + "Processing 8800/15706\n", + "Skipped: hate on Christina, then lets hear you belt high E above middle C\n", + "Skipped: happy dead flowers. happy fatty chocolate, and tooth-rotting hearts.\n", + "Skipped: A gone traveler/ where fading prints left behind/ \r\n", + "Stories growing wild\n", + "Skipped: the flag of Bahrain literally represents clothing soaked in blood\n", + "Skipped: A road left alone/growing wild and without care/ \r\n", + "Unknown potential\n", + "Skipped: A smouldering fire/Flickers of light from the ash/\n", + "All but extinguished\n", + "\n", + "Skipped: Heron and I stand. He in water, I on sand. He knows what I don't.\n", + "Skipped: Haiku #19\n", + "Skipped: Basho, Basho Man\n", + "Skipped: Arch enemy\n", + "Skipped: #5\n", + "Skipped: Haiku Challenge 1: Reddit\n", + "Skipped: #4\n", + "Skipped: Haiku\n", + "Skipped: #8\n", + "Skipped: Haiku Challenge 2: Cinco de Mayo or just something \r\n", + "about May\n", + "Skipped: Haiku Challenge 3: Silliness\n", + "Skipped: #9\n", + "Skipped: Jack Kerouac on The American Haiku\n", + "Skipped: #11\n", + "Skipped: Haiku Challenge 4: The Moon (ending 2011-05-10)\n", + "Skipped: #14\n", + "Skipped: spiderweb shimmers dewdrops entice thirsty flies\n", + "Skipped: full moon between broken blinds reaches the sill\n", + "Skipped: Obama acts like someone let him authorize Bin Laden's hit squad \n", + "Skipped: Haiku Challenge 5: strawberries or Homesickness \r\n", + "(ends 2011-05-14) \n", + "Skipped: For my friend\n", + "Skipped: spring cleaning wisp of hair on her smile\n", + "Skipped: who wants to admit Lady Gaga's new album is a piece of crap?\n", + "Skipped: [noon]\n", + "Skipped: [noon]\n", + "Skipped: #26~love songs\n", + "Skipped: I can count to 5. Want to see me count to 5? 1, 2, 3, 4, 5.\n", + "Skipped: Haiku Challange [bees]/ [bee sting] Running 14/05/11-28/05/2011.\n", + "Skipped: Lost\n", + "Skipped: the rapture took place, but all God's chosen people were already gone\n", + "Skipped: its called a love child because most normal people marry for money \n", + "Skipped: why does printer ink have to be more expensive than fucking morphine? \n", + "Skipped: Stardust\n", + "Skipped: Drops\n", + "Skipped: My palindromatic haiku (I wrote this in 2004)\n", + "Skipped: drinking in a pool is as close as you can get to being a fish\n", + "Skipped: #93 uncamouflaged\n", + "Processing 8900/15706\n", + "Skipped: Being precocious, I learned at an early age it's all about sex.\n", + "Skipped: Being precocious, I learned at an early age it's all about sex.\n", + "Skipped: which is trendier? taking pictures of planking? or hating planking?\n", + "Skipped: they don't read comics. they just love costume parties. and who can blame them? \n", + "Skipped: Midnight\n", + "Skipped: My Thoughts on My 67 Quiz Grade, a haiku:\n", + "Skipped: Faltering (with comic)\n", + "Skipped: final exam\n", + "Skipped: the fence and tree did hardly notice the cat on his morning patrol\n", + "Skipped: Skrrt\n", + "Skipped: Hospital (with comic)\n", + "Skipped: Haiku for Tampa [California-Utah-Florida transplant]\n", + "Skipped: New Year's Resolution: Haiku a Day. Day 1\n", + "Processing 9000/15706\n", + "Skipped: Haiku is not just a short poem with 17 syllables.\n", + "Skipped: If yesterday was\n", + "Skipped: Mу sеxy stоrу about sеx dаting\n", + "Skipped: Monsters (with comic)\n", + "Skipped: Tried to hit some college poon, got meatheads instead.\n", + "Skipped: \"Cancer\" [French]\n", + "Skipped: Women's March in 5-7-5\n", + "Skipped: “Haiku is not a shriek, a howl, a sigh, or a yawn; rather, it is the deep breath of life.” ~ Santoka Taneda (Zen monk, Haiku poet)\n", + "Skipped: 1 month I’m using this well trustеd seх dаting wеbsite – I’vе found girls who аgreеd for seх\n", + "Skipped: Unintentional progress.\n", + "Skipped: First Spring Songs\n", + "Skipped: city rush hour\n", + "Skipped: on losing love\n", + "Skipped: soul recycled\n", + "Skipped: My Couch\n", + "Skipped: My Couch\n", + "Skipped: Summer Bummer\n", + "Skipped: 3 timеs seх with different girls or mу man story how I found 3 girls for 1 month\n", + "Skipped: like minds\n", + "Skipped: a cold joyful day, snow falls to form a pallet/ angels are abound\n", + "Processing 9100/15706\n", + "Skipped: Fоund only seх in the Intеrnеt.Му rеal story abоut 3 times with 3 different girls fоr guуs\n", + "Skipped: Fuck with 3 girls, 3 times for 1 month. Website which found only sex relations without charge\n", + "Skipped: Laughing, smiling ones, some roses are no flowers, they bloom forever. Laughing, smiling one, that rose which is no flower, will bloom forever.\n", + "Skipped: Fuсk_with_3_girls,_3_timеs_fоr_mоnth._Dаting_Wеbsitе_whiсh_fоund_sех_rеlаtiоn_withоut_fее\n", + "Skipped: Tears (with comic)\n", + "Skipped: Xenophilia is just as misguided as xenophobia.\n", + "Skipped: I’vе fоund рrоvеn dаting wеbsitе whiсh hеlреd tо find girl оnlу fоr sех\n", + "Skipped: abandoned rail - a fresh breeze carries dandelion seed\n", + "Skipped: Dante's Divine Comedy, trans. Krinst\n", + "Skipped: Haiku's are easy, but sometimes they don't make sense. Refrigerator.\n", + "Processing 9200/15706\n", + "Skipped: Am I thinking?/ Or am I feeling?/ Is it both or neither?/I don't know\n", + "Skipped: Short-form poetry / Is banned from r/WritingPrompts / For being low-effort\n", + "Skipped: Not much annoys me / But short-form poems are banned / From r/WritingPrompts\n", + "Skipped: (3/5/3) - icy roads / the big dog waiting / patiently\n", + "Skipped: 5.7.5 Since\n", + "Skipped: Hawai'ian Influenced\n", + "Skipped: I wrote as a child/ Teenage wizards like Harry/ Dragon eggs hatching/\n", + "Skipped: Can you see them too? / Look through the hole in the wall / it's me and it's you /\n", + "Skipped: (Meta) Do a divided sentence make a haiku ?\n", + "Skipped: Summarizing my life in Haiku\n", + "Skipped: It's getting quite late / I'll come off soon / Just 5 more minutes, I swear / Fuck.\n", + "Skipped: (3/5/3) cars whizz by / high beams shining through / frosted glass\n", + "Skipped: (3/5/3) snowy trail / between leafless trees / deep hoofprints\n", + "Skipped: Smoke weed every day. Smoke weed every day, nigga. Smoke weed every day. -Snoop Dogg\n", + "Skipped: Flood\n", + "Processing 9300/15706\n", + "Skipped: One afternoon in Philadelphia I saw a gift I wanted.\n", + "Skipped: Spoonfuls of whipped cream. Spoonfuls of peanut butter. Zero fucks given.\n", + "Skipped: Haiku- for the New Year\n", + "Skipped: Way to go Congress avoiding the fiscal cliff that you created!\n", + "Skipped: your authority\n", + "Skipped: Blue skies tell great lies, For it is in their nature.\n", + "Bad weather again.\n", + "Skipped: Zombie Haiku got no love on imgur, how about here?\n", + "Skipped: Haikus are easy,\n", + "But sometimes they don't make sense,\n", + "Refrigerator\n", + "Skipped: Can you guys fix my Haiku if there's anything wrong with it? I want to make sure it's good, it's going in my performance self-review.\n", + "Skipped: [Haiku] HoverHand\n", + "Skipped: Day and Night\n", + "Skipped: To you.. and you... and you... and also you..\n", + "Skipped: Found: The dirty haiku project.\n", + "Skipped: Think rationally. Logical curious minds. Question everything\n", + "Skipped: Haiku Puns\n", + "Skipped: Ban assault weapons! says the government who ran Fast and Furious\n", + "Skipped: Smoke: A Cigarette \n", + "Skipped: Time (x-post from r/poetry)\n", + "Skipped: Time\n", + "Skipped: Asking people over via Haiku.\n", + "Skipped: I need a Haiku\n", + "Skipped: Inspired Vintage\n", + "Skipped: Haiku Haiku\n", + "Skipped: SMOG, HAIKU SPERSI E TORBIDI VERSI\n", + "Skipped: Inspired Vintage\n", + "Skipped: Up Up\n", + "Skipped: Ode to Inspired Vintage\n", + "Skipped: A thought that hit me today. I've been battling depression.\n", + "Skipped: Beauty and the Beast / Beast is great on the inside / Not on the outside / Then the ending comes / He becomes a handsome prince / What was the moral?\n", + "Skipped: First Haiku\n", + "\n", + "Skipped: In money and banking class....\n", + "Skipped: Refrigerator \n", + "Processing 9400/15706\n", + "Skipped: Occupy Wall Street is probably ten percent undercover fuzz\n", + "Skipped: Shitty Haiku a Day\n", + "Skipped: hey man you wouldn't happen to have an extra cigarette would you?\n", + "Skipped: Once I loved a girl/ she ran around and cheated/ thought I didn't know// that's why I figured/ I'd write that bitch a haiku/ just to say fuck you\n", + "Skipped: Once I loved a girl/ she ran around and cheated/ thought I didn't know that's why I figured/ I'd write that bitch a haiku/ just to say fuck you\n", + "Skipped: thank you squirrelb0 for your haikus\n", + "Skipped: On happy endings.\n", + "Skipped: God bless coffee mugs for making everyone think I'm drinking coffee.\n", + "Skipped: Only Talk in Haiku's\n", + "Skipped: easter\n", + "Skipped: My only lover / Your dark black exterior / Strong willed flavour. Wrapped in aroma / You keep me up all night long / Coffee mi amour.\n", + "Skipped: oaks volley moon: HikeOO for 10april12\n", + "Skipped: Invitation from r/Poetry!\n", + "Skipped: Palindromatic\n", + "Skipped: SELF\n", + "Skipped: Tree\n", + "Skipped: Haiku Nature Poems\n", + "Skipped: tea haiku\n", + "Skipped: Climbing haiku\n", + "Skipped: Forgiveness. A haiku. \n", + "Skipped: Starcraft Haiku (X-post with r/Starcraft)\n", + "Skipped: Is this any good?\n", + "Skipped: Haiku - The Evil Dead (movie based haiku)\n", + "Skipped: before reddit\n", + "Skipped: Haiku Battle -- You decide who wins.\n", + "Skipped: DNA\n", + "Skipped: Bursting Bubbles\n", + "Skipped: Question about Haiku format\n", + "Skipped: Haiku - Psycho - Take Two\n", + "Skipped: r/haiku\n", + "Skipped: And dying for truth\n", + "Skipped: Meta Haiku\n", + "Skipped: Bon's Haiku.\n", + "Skipped: Emotional Ventilation\n", + "Skipped: 365 Haiku Challenge\n", + "Skipped: A Haiku of Haikus\n", + "Processing 9500/15706\n", + "Skipped: BROCK MAKE HAIKUS\n", + "Skipped: made a free game with a friend that has a user-submitted haiku gallery-- Write one!\n", + "Skipped: This meme just triggered a haiku conversation between my brother and I\n", + "Skipped: Daily haiku\n", + "Skipped: The postseason\n", + "Skipped: the distant love\n", + "Skipped: Break Up Haiku\n", + "Skipped: To plump Mother Earth\n", + "Skipped: Anxiety\n", + "Processing 9600/15706\n", + "Skipped: Miriam\n", + "Skipped: Shitty Haiku, Shitty Life\n", + "Skipped: Haiku pour la victoire\n", + "Skipped: Three Poems on Winter ~ Deconstructed Haikus.\n", + "Skipped: Babbling bubbling brook/\n", + "Falls off terribly tall cliffs./ \n", + "Deep green mossy pools.\n", + "Skipped: Haikus I wrote for fun.\n", + "Skipped: A haiku challenge.\n", + "Skipped: there's more i could say\n", + "running through my muddy mind\n", + "but i won't today\n", + "Skipped: What is Trite and True\n", + "forms a foundation\n", + "for circular discussions \n", + "Skipped: Here are a few haikus I wrote in the past three months.\n", + "Skipped: don't read\n", + "Skipped: Silver Autumn Moon / Silhouette Swirling Above / \n", + "Dark Side of the Leaf\n", + "Skipped: smoke a cigarette as much out of sheer boredom as force of habit\n", + "Processing 9700/15706\n", + "Skipped: Sour.\n", + "Skipped: The master.\n", + "Skipped: scared\n", + "Skipped: Eloquent.\n", + "Skipped: Bronchitis\n", + "Skipped: Disappearance.\n", + "Skipped: Bad News Haiku\n", + "Skipped: Hold on.\n", + "Skipped: Are there any foreigners who has written a haiku book in japanese?\n", + "Skipped: Leaves turn to paper/ Clear ponds give way to mirrors/ Street lamps replace stars/\n", + "Skipped: Beside Humble creek A +5 stumping of sitting Calls to the weary\n", + "Skipped: This or that?\n", + "Skipped: Smarts (w/ comic)\n", + "Skipped: What would you do?\n", + "Skipped: Anthropose.\n", + "Skipped: Say it!\n", + "Skipped: Cure.\n", + "Skipped: Amy the Unicorn\n", + "Skipped: Easy!\n", + "Processing 9800/15706\n", + "Skipped: The void.\n", + "Skipped: A cycle.\n", + "Skipped: I might have missed it / if I'd taken the freeway -- moonrise over mountains\n", + "Skipped: Yinyang\n", + "Skipped: I may have missed it / if I'd taken the freeway — moon cresting mountains\n", + "Skipped: Deficiency.\n", + "Skipped: Free happiness hack / Remove I's and Me's from speech. / Scroll through /r/haiku\n", + "Skipped: Relationship ends/ The last Haiku about us/ Thank you /r/Haiku\n", + "Skipped: .\n", + "Skipped: Run Run!\n", + "Skipped: Not lucky. (w/comic)\n", + "Skipped: Haiku\n", + "Skipped: two birds\n", + "Skipped: a car parks for oil / black blood flooding its life back - blood back from red soil\n", + "Skipped: Pry.\n", + "Skipped: Thoughts.\n", + "Skipped: did i miss the bus? or did the bus just miss me? a failed hit and run!\n", + "Skipped: Haiku for the mods:\n", + "Skipped: I pace back and forth/Not sure where I am going/ But I keep moving/\n", + "Skipped: tires the night tread - tirelessly rolling instead / of sleeping on bed\n", + "Skipped: Punches.\n", + "Skipped: The day was lost\n", + "Skipped: The day was lost. Two planes. Two towers. The day was lost. Forever.\n", + "Processing 9900/15706\n", + "Skipped: Irrelevant.\n", + "Skipped: 春休み 大学で勉強しなきゆ かなしです\n", + "Skipped: I HAVE CREATED A FURTHER COMPOSITION WRITTEN IN METRICAL FEET FORMING RHYTHMICAL LINES.\n", + "Skipped: Keep walking!\n", + "Skipped: Of course I saw you. And your new girlfriend, she’s cute. I guessed she’d be blonde\n", + "Skipped: Colorado Moon\n", + "Skipped: Apollo\n", + "Skipped: flowers mice in grass jump about and into their holes dug beneath the fields\n", + "Skipped: Year 3000\n", + "Skipped: in the distance snowflakes fall upon rosy cheeks\n", + "Skipped: Spring by Salvanos\n", + "Skipped: Those who say 'go towards the light' were never abducted by aliens.\n", + "Processing 10000/15706\n", + "Skipped: rosy cedar logs: smoldering pile of ashes: the fire between.\n", + "Skipped: A bag of human / Ears rests on the mantlepiece? Daddy's war trophies.\n", + "Skipped: Liar\n", + "Skipped: On my music classroom wall re: restroom\n", + "Skipped: fave haiku\n", + "Skipped: untitled - feedback please?\n", + "Skipped: will the wind come now blow away leaves from the street but leave me alone\n", + "Skipped: The Cycle\n", + "Skipped: Dark clouds.\n", + "Skipped: Haiku: No Love\n", + "Skipped: 9/11\n", + "Skipped: Baseball Haiku\n", + "Processing 10100/15706\n", + "Skipped: This probably happens Only in Sunday League\n", + "Skipped: Shot on iPhone 7\n", + "Skipped: 2016\n", + "Skipped: Office Creep (haiku by Mortimer Reed)\n", + "Processing 10200/15706\n", + "Skipped: Sega fans\n", + "Skipped: Multi layered with a joke inside.\n", + "Skipped: Haikus are easy, but sometimes they don't make sense...refrigerator.\n", + "Skipped: *Shrills from cicadas* Cool, wet air wraps my body* Only one more thing*\n", + "Skipped: I thought these three went together well, but its late and it might just be self indulgent drivel\n", + "Skipped: Day 2- *Lace up my shoes tight* My feet hit the ground running* Chasing what's not there*\n", + "Skipped: My mustache hurts to push. Does yours?\n", + "Skipped: Day 3:* The sun cuts the night* The joy of life meaning* Lights and sign turn on.*\n", + "Skipped: My mustache hurts to push. Does yours?\n", + "Skipped: TMI, but it was a rotten day\n", + "Skipped: Star Wars Haiku\n", + "Skipped: Dedicated to typography fans...\n", + "Skipped: Good god I hope I'm wrong\n", + "Skipped: The problem is you! You want to get payed to work?!?! That costs me money!\n", + "Skipped: I write haikus. Primarily about my completely normal life as a 22 year old. Check it out.\n", + "Skipped: 柿主や / こずえはちかき / あらしやま (Kakineshiya / kozuewachikaki / Arashiyama)\n", + "Skipped: This broke the rhythm of my day\n", + "Skipped: The morning after Is it bad that as soon as he leaves my fav'rite thing to do is fart\n", + "Skipped: Haiku Thailand 5/8 #17\n", + "Skipped: Haiku Thailand 5/8 #35\n", + "Skipped: haikuThailand 5/8#37\n", + "Skipped: Not spending money is just as satisfying as spending money.\n", + "Skipped: People who know beer can tell a lot about you by the beer you drink.\n", + "Skipped: Haiku,2/1 No.22 Zew\n", + "Skipped: Haiku 2/1 #34 Tal\n", + "Skipped: Haiku (2/1) Suratthani school No.18\n", + "Skipped: Haiku 2/1 #30 Pheem Panditha Surakul\n", + "Skipped: Haiku 2/1# 36 Nun\n", + "Skipped: Haiku 2/1#38 Narmkow\n", + "Skipped: Haiku 2/1#16 Plearn\n", + "Skipped: Haiku Thailand 5/8#37\n", + "Skipped: ้Haiku Thailand 5/8#37\n", + "Skipped: For any delivery drivers out there.\n", + "Skipped: My Talk Like a Pirate Day Haiku\n", + "Skipped: HAIKU THAILAND 5/8 #40\n", + "Skipped: Thought this up in a sleep deprived stupor\n", + "Skipped: Araya Phawirunsiri M.5/4 No.20\n", + "Skipped: Treetip chaisongkram m.5/4 #36\n", + "Skipped: Chadaporn Choochuang M.5/4 No.21\n", + "Processing 10300/15706\n", + "Skipped: Haiku 2/2 #28 MyMind\n", + "Skipped: The guys who made SOMM need to get back together for CICERONE.\n", + "Skipped: M. 5/4 #30 , Name Pimvipa Phurungrit\n", + "Skipped: Sawaros Sae ngow #31 m.5/4\n", + "Skipped: nattamon Pissapak #23 M.5/4\n", + "Skipped: Nareerat Rattanachaya #16 M.5/4\n", + "Skipped: Party line\n", + "Skipped: Wisakul Leeyutthanon M.5/4 No.34\n", + "Skipped: Survival tactics for Monday at the office\n", + "Skipped: m5/4,Pornpawee Sombuttong #13\n", + "Skipped: m5/4,Seenum Na Rungsee #18\n", + "Skipped: Race\n", + "Skipped: Piyathida jongkajornpong m.5/4 ,#42\n", + "Skipped: Anxiety.\n", + "Skipped: Old joke turned haiku......sorry it's late\n", + "Skipped: Hot as a fire,/ Burning bright, into my eyes./ A smile so strong./ Cooled now, no effect./ Distant thoughts now seem frozen./ As I start to thaw.\n", + "Skipped: Here are some haikus I wrote on deviantART ... hope you enjoy them.\n", + "Skipped: Orange haiku\n", + "Skipped: Haiku for the now go-go dancer who was once upon a time not my ex\n", + "Skipped: 無常, Impermanence\n", + "Processing 10400/15706\n", + "Skipped: 永遠の, Eternal\n", + "Skipped: 夢想, Dream\n", + "Skipped: ​\n", + "Skipped: 同意, Consent\n", + "Skipped: 深夜, Late night\n", + "Skipped: No smoking on the plane.\n", + "Skipped: 流失- Swept Away\n", + "Skipped: 朝, Morning\n", + "Skipped: Every spring\n", + "Skipped: 熟考, Pondering\n", + "Skipped: 別れ目, Junction\n", + "Skipped: ハントレス, Huntress\n", + "Skipped: 安楽, Comfort\n", + "Skipped: Flowers\n", + "Skipped: 1st attempt\n", + "Skipped: Haiku\n", + "Skipped: エピック, Epic\n", + "Skipped: 生まれたての, Newborn\n", + "Skipped: 仮定, Assumptions\n", + "Skipped: retards puking shit / \"r/haiku\" in a nutshell / tourettes of the wrists\n", + "Skipped: 冥罰, Retribution\n", + "Skipped: Paper mache wings and origami flowers nature's craft unfolds\n", + "Skipped: R/senryu\n", + "Processing 10500/15706\n", + "Skipped: [I wrote a series of haikus that I posted to r/love!](https://www.reddit.com/r/love/comments/8be4bz/love_at_different_stages_of_life/)\n", + "Skipped: Love at Different Stages of Life\n", + "Skipped: 状態, Condition\n", + "Skipped: If these walls could talk wallpaper would get ripped down or painted over.\n", + "Skipped: 日没, Sunset\n", + "Skipped: コンパクト, Compact\n", + "Skipped: 突如, suddenly\n", + "Skipped: 喜び, rejoicing\n", + "Skipped: Glimmer of Hope\n", + "Skipped: 奇麗な, tidy\n", + "Skipped: Make a Haiku for your favorite MCU film:\n", + "Skipped: room inside my skull for us to fall off the moon into atmosphere\n", + "Skipped: 永住, abode\n", + "Skipped: スパイラル, spiral\n", + "Skipped: 急成長します, burgeoning\n", + "Skipped: No smoking\n", + "Skipped: 曇り, overcast\n", + "Skipped: 意識, mindful\n", + "Skipped: Fear of Commitment\n", + "Skipped: Chipmunk articles: / *Acorn Addicts, Leaf Linens* and *Tunnel New Doors*\n", + "Skipped: Unexpected death, is the ending we all fear. Unfinished business.\n", + "Skipped: Indisputably overenthusiastic; triverbality.\n", + "Processing 10600/15706\n", + "Skipped: 天来, heavenly\n", + "Skipped: リフィル, refill\n", + "Skipped: Headache, they used to ☠︎ set bones on fire to read poems ☠︎ fragments cracked adust\n", + "Skipped: 不快感 - Uncomfortable feeling\n", + "Skipped: ビーコン, beacon\n", + "Skipped: Seasons of Love\n", + "Skipped: The Oak Sleeps\n", + "Skipped: That Great Feeling\n", + "Skipped: Need help starting a haiku\n", + "Skipped: Thug diary\n", + "Skipped: This sub is making me better at haikus and making me love haikus!\n", + "Skipped: 双, pair\n", + "Skipped: A haiku for trump\n", + "Skipped: 自由自在- Free\n", + "Skipped: Blame, it is the cure/ cure anything, spread around, just like wildfire\n", + "Skipped: 平然, unruffled\n", + "Skipped: First Quarter\n", + "Processing 10700/15706\n", + "Skipped: Drunk as a skunk\n", + "Skipped: 幸福, bliss\n", + "Skipped: Visiting grandma in hospital; coffin, baby-sized passes by.\n", + "Skipped: Visiting grandma in hospital; baby-sized coffin passes by.\n", + "Skipped: Wrote some haiku relevant to my life situation\n", + "Skipped: 音調, harmony\n", + "Skipped: A newborn baby, Quiet, Curled up in my arms, My Beautiful girl.\n", + "Skipped: Vaccination\n", + "Processing 10800/15706\n", + "Skipped: Fangs of a reptile / settled on her shoulder in a coiling of gold\n", + "Skipped: Making it\n", + "Skipped: 花咲く, bloom\n", + "Skipped: 儕輩, colleagues\n", + "Skipped: 女家長, matriarch\n", + "Skipped: Slave no more\n", + "Skipped: NetPositive is a web browser for the BeOS operating system. It's famous for its haiku error messages.\n", + "Skipped: NetPositive is a web browser for the BeOS operating system. It's famous for its haiku error messages.\n", + "Skipped: NetPositive is a web browser for the BeOS operating system. It's famous for its haiku error messages.\n", + "Skipped: Windy City (A short story I wrote told with haiku)\n", + "Skipped: tangerine\n", + "Skipped: I do not love you\n", + "Skipped: Summer\n", + "Skipped: Deviated\n", + "Skipped: Three Quarters\n", + "Skipped: Animated\n", + "Skipped: Haiku about a winter that was not cold?\n", + "Processing 10900/15706\n", + "Skipped: haikubot-1911\n", + "Skipped: Everything ideal To make one truly happy / Attitude matters\n", + "Skipped: Appreciating the Arts\n", + "Skipped: Facing monitor /'s Browsing like a Redditor /'s Procrastination /'s\n", + "Skipped: Iced coffee morning • suns out, ice melts... watered down. • With you I don’t mind.\n", + "Processing 11000/15706\n", + "Skipped: On the teacher's apple / Small teeth marks.\n", + "Skipped: Mother\n", + "Skipped: Help\n", + "Skipped: haiku\n", + "Skipped: Tonight's Walk\n", + "Skipped: Try\n", + "Skipped: When you feel alone, on a dark road, remember, the wind is alive.\n", + "Processing 11100/15706\n", + "Skipped: Goodsir\n", + "Skipped: Once Brave\n", + "Skipped: Without You\n", + "Skipped: Zombie Love\n", + "Skipped: Embrace\n", + "Skipped: Hate Speech\n", + "Skipped: Despair\n", + "Skipped: A Haiku About Love\n", + "Skipped: I don't get Haikus. They have always confused me. Does that make me dumb?\n", + "Skipped: Bright LED lamp. A leaning paper tower. Must finish homework.\n", + "Skipped: Distraught and weary. A long road to a cottage. A warm welcoming.\n", + "Skipped: Rough night\n", + "Skipped: buyer's remorse\n", + "Skipped: Flood\n", + "Skipped: What is a Haiku?\n", + "Skipped: wow - why me - why not!\n", + "Skipped: wow - why me? - why not!\n", + "Processing 11200/15706\n", + "Skipped: My eyes red with blood* my hunger everlasting* dude, I'm high as fuck. \n", + "Skipped: Lack of passion, a symptom of moderation\n", + "Skipped: This life hack will change your daily life\n", + "Skipped: There are no strings on me\n", + "Skipped: (3/5/3) - the old dog / musters some gruffness / for new guests\n", + "Skipped: What do you recommend me a translated Basio book ?\n", + "Skipped: Simple fact\n", + "Skipped: In the smoky hills\n", + "Skipped: Came up with this while taking apart an old patio swing\n", + "Skipped: Sonic, the dog.\n", + "Skipped: Haiku 24 - Out Of Reach\n", + "Skipped: Please help us pick the best haiku! 3 to choose from inside.\n", + "Skipped: A short haiku about the rain\n", + "Skipped: Cotton colored clouds \\\\ And they follow me always \\\\ to my dirt road home\n", + "Processing 11300/15706\n", + "Skipped: tooth that followed me far beyond my wisdom set yanked away, no regret\n", + "Skipped: Heist\n", + "Skipped: makeup is painting faces of pretty people where real faces were \n", + "Skipped: Sun won't rise today/ Left before saying goodbye/ \r\n", + "Learn to live without\n", + "Skipped: they say no-fly zone. what they mean is invasion and occupation.\n", + "Skipped: Shed no tear or thought/ follow noone else nor god/ a \r\n", + "revolution\n", + "Skipped: when disaster strikes, fraudulent relief outfits\n", + "swoop into action\n", + "Skipped: when disaster strikes, fraudulent relief outfits\n", + "swoop into action\n", + "Skipped: there's a connection between how you were breastfed and what tits you like \n", + "\n", + "Skipped: i see union war sweeping American streets like Marx on mushrooms\n", + "\n", + "Skipped: A bottle of Jack; \n", + "Kills more germs than toothpaste will. \n", + "Maybe Ke$ha's right... \n", + "Skipped: Her body lies cold, \n", + "\n", + "Lips as dry as her cool touch. \n", + "\n", + "A mannequin down! \n", + "Skipped: I assume our bombs ended more Libyan life than Gaddafi's bombs\n", + "Skipped: Afghan insurgents must wonder why Libyans get to be rebels\n", + "Skipped: Americans think they have a right to record cops breaking the law \n", + "Processing 11400/15706\n", + "Skipped: guys can we talk? please my voice quavers, my hand shakes i want to tell you\n", + "Skipped: Who says there can't Be enjambement in our Favourite poems?\n", + "Skipped: I really feel like I can relate to this haiku.\n", + "Skipped: And I spoke to her She alone is my reason I survive for her\n", + "Skipped: Solders of the land/ I ask you to fight the rats/ Fascists die tonight/\n", + "Skipped: •=>•Watch•Online•Movie•Grandma!!! ['Free'] ['Full'] ['Movie'] ['2015']\n", + "Skipped: •=>•HQ-2O15•Watch•Online•Movie•\"Goosebumps\" ['Free'] ['Full'] ['Movie'] ['2015']\n", + "Skipped: •=>•HQ-2O15•Watch•\"The Martian\"•Full•Online•Movie• 1080p..\n", + "Skipped: •=>•HQ-2O15•\"Spectre\"•Watch•Full•Movie• Online.. Free.. 1080p..\n", + "Skipped: •=>•HQ-2O15•Watch•\"Victor Frankenstein\"•Full•Movie• Online.. Free.. 1080p..\n", + "Skipped: •=>•m39@~HQ2O15•Watch•\"Goosebumps\"•Full•Movie• Online• Free• 1080p•\n", + "Skipped: •=>•m39@~HQ2O15•Watch•\"Hotel Transylvania 2\"•Full•Movie• Online• Free• 1080p•\n", + "Skipped: •=>•m39@~HQ2O15•[Watch]•[\"Goosebumps\"]•[Full]•[Movie]• Online'• Free'• 1080p'\n", + "Skipped: •=>!m3g@~HQ2O15•[Watch]•[\"Casa Grande\"]•[Full]•[Movie]• Online'• Free'• 1080p'\n", + "Skipped: [2015@TV720megahd]#WATCH! [James White] Full,. Movie,. Online,. Free,. 1080p,.\n", + "Skipped: [2015@TV720megahd]#WATCH! [Spectre] Full,. Movie,. Online,. Free,. 1080p,.\n", + "Skipped: [2015@TV720megahd]#WATCH! [Spectre] Full,. Movie,. Online,. Free,. 1080p,.\n", + "Skipped: [2015@TV720megahd]#WATCH! [Entertainment] Full,. Movie,. Online,. Free,. 1080p,.\n", + "Skipped: Climate can refer To weather as well as mood It's Culture you know #Haiku #Climate #ChangeManagement\n", + "Skipped: New job, new toilet\n", + "Skipped: |•$1HD•|~WATCH Crimson Peak Full.. Movie.. Online.. Free |Stream|\n", + "Processing 11500/15706\n", + "Skipped: 右利きで(みぎききで)右脳を使う(うのうをつかう)男女達(だんしたち)\n", + "Skipped: https://youtu.be/ULSz7m167yQ\n", + "Skipped: [NSFW] OP is a massive faggot.\n", + "Skipped: Dreams pass in still sleep\n", + "Skipped: [2015]WATCH \"new\" |The Hunger Games: Mockingjay - Part 2` <Full- Movie- Free- Online- 1080>\n", + "Skipped: About my upcoming Australia trip!\n", + "Skipped: W.a.t.c.h!.! => \"The Danish Girl\". {full. Movie. Free.online. 1080p...}\n", + "Skipped: Photo Descriptions\n", + "Skipped: A Simple Haiku\n", + "Skipped: 7-11 haiku\n", + "Skipped: Grand Prize/Grand prix of Fujisan Haiku 2012: I read it in Japanese news and I liked it. I wonder how you evaluate all the awarded haiku.\n", + "Skipped: Haiku: 10\n", + "Skipped: Sparrow: Four\n", + "Skipped: For my first post ... the travel diary i made with a friend, all in Haiku form!\n", + "Skipped: Middle Age\n", + "Skipped: the never ending haiku\n", + "Skipped: Flaming sith fireballs\n", + "Skipped: Why Haiku is the purest art form... as told by a time-traveling Doctor \n", + "Skipped: Ode to Pig\n", + "Skipped: How do you feel about science fiction haiku... Scifaiku?\n", + "Skipped: My first Haiku post\n", + "Skipped: Posting my first Haiku here\n", + "Skipped: First haiku.. what do you guys think?\n", + "Skipped: My friend just posted a Haiku on Facebook about her current trip to Paris. ): \n", + "Skipped: Anyone have humor haikus?\n", + "Skipped: Thoughts of an aging samurai\n", + "Skipped: Just found this subreddit, this is about my neighbors dog in our apartment complex\n", + "Skipped: For once a nicely designed haiku website!\n", + "Skipped: Haiku about bug lights\n", + "Skipped: All day I tweet hard - making prose from frustration - Hashtag: workhaiku\n", + "Skipped: Swirling together, / A memory of what-ifs, / Reality blurred. / Waking, fading, on the cusp, / Understanding, dreaming still. \n", + "Skipped: spring\n", + "Skipped: winds\n", + "Skipped: Don't Tell The Trees: #ThreePhotoHaiku\n", + "Skipped: Inspired by Hagakure and other works of Bushido\n", + "Skipped: Ukiah Poetry - some explanation needed\n", + "Processing 11600/15706\n", + "Skipped: Phony\n", + "Skipped: whole\n", + "Skipped: I wrote a haiku about a bad acid trip.\n", + "Skipped: A haiku I wrote for school\n", + "Skipped: Movie Haiku\n", + "Skipped: \"Don't follow in the footsteps/ of those who came before,/ seek what they sought.\" -Basho (x-post from r/quotes) \n", + "Skipped: Trail of rose petals, / Whisper of sweet promises, / Guiding her along. / She blew out the candlelight, / Mischief dancing in her eyes. \n", + "Skipped: Of all the what ifs, if time stopped for an hour / I’d use it to sleep. \n", + "Skipped: 87 miles\n", + "Skipped: Trying out a tanka style of haiku poetry \n", + "Skipped: Coffee\n", + "Skipped: 4 billion\n", + "Skipped: Meh\n", + "Skipped: 20 haikus about rage\n", + "Skipped: Five Haiku for the Fourth of July \n", + "Skipped: Heavy cells...\n", + "Skipped: still rabbit:HikeOO for 6July2012\n", + "Skipped: Short Verses and Other Curses #3\n", + "Skipped: I made a Haiku checker. Could you test it?\n", + "Skipped: Summer evening stroll--smell of barbecue lingers. I am so hungry!\n", + "Skipped: is there a heaven for chia pets and snowmen and tamagotchi?\n", + "Skipped: Sitting on my porch / Rain falls before me; I'm dry /\n", + "I feel so inside\n", + "Skipped: I draw stuff then forget about it then find it years later in some buried folder. This one has a haiku. \n", + "Skipped: 12 hour Plane Ride.\n", + "Skipped: 32 D'oh's of Homer Simpson [Haiku]\n", + "Skipped: Apparition\n", + "Skipped: My last 3 haikus :) xpost from r/RandomKindness/\n", + "Skipped: An Olive Haiku\n", + "Skipped: It's been a depressing time\n", + "Skipped: A thank you note.\n", + "Skipped: Haiku\n", + "Skipped: My shortest Haiku\n", + "\n", + "Skipped: Classic - \"I like turtles.\"\n", + "Skipped: A weekend trip.\n", + "Skipped: Space Haiku of the Day: The Battle of Big Sur\n", + "Processing 11700/15706\n", + "Skipped: Stone Henge Dance Fail\n", + "Skipped: Using reddit app on phone, can't see the rules. Please let me know if I'm doing things wrong.\n", + "Skipped: Renku (the origins of haiku) Subreddit\n", + "Skipped: Craigslist Ad\n", + "Skipped: A small group of haikus.\n", + "Skipped: Popped a Molly I'm sweatin' (goat remix)\n", + "Skipped: Cristiano Ronaldo in Training\n", + "Skipped: Haiku+Comics=Haikucomics\n", + "Skipped: A Little Secret\n", + "Skipped: \"Like a mosquito, / her eyes spoke hunger, leaving /\n", + "only freezing blood.\n", + "Skipped: Let's count!\n", + "Skipped: To a family that used to care, pictures are but bitter memories. \n", + "Skipped: Amendment One passed, yet life in my house goes on as it always has. \n", + "Skipped: City of Heroes Haiku I wrote a while back:\n", + "Skipped: Basho Moon Haiku...\n", + "Skipped: It's hard to believe anybody still listens to Bristol Palin\n", + "Skipped: I wrote a couple Haiku, planning to do more (Also in comments if you don't want to click-through)\n", + "Skipped: 山猫\n", + "Skipped: A Celiac Haiku (no that's not a typo)\n", + "Skipped: EPIC HAIKU BATTLES OF HISTORY! Sokka vs. Amon (x-post from TheLastAirbender)\n", + "Skipped: Unicorn Rainbow\n", + "Skipped: So I am unemployed for a week and created a haiku validator... what do you think?\n", + "Skipped: r/tanka is dead/ so I will post my musing/ on this sub-reddit\n", + "Skipped: Back in the 1980s, when I was \"metaler than thou,\" I trashed Cinderella as \"just another hair band.\"<BR><BR>Well, a hair band they were. But now that \n", + "Skipped: White roads on a grid /\n", + "melt into blurred nothingess - /\n", + "While high on mushrooms. \n", + "Skipped: My favorite haiku that I've written thus far.\n", + "Skipped: japanese haiku\n", + "is not based on syllables\n", + "look it up you fools!\n", + "Skipped: Try your best to win/ nothing at all with haikus/ for \n", + "dust storm challenge.\n", + "Skipped: Five Haiku for Summertime\n", + "Skipped: Zen Fatherhood - Haiku for Father's Day \n", + "Processing 11800/15706\n", + "Skipped: Parkour\n", + "Skipped: LeBron and Dwayne Wade/ Are kicking ass all day /\n", + "HOLY FUCKING SHIT!\n", + "Skipped: A haiku for you. \n", + "Skipped: Always on my mind/\n", + "Perhaps,I'm going insane?/\n", + "Nope, I'm just in love. \n", + "Skipped: if it was perfect, would it be as beautiful as it is right now? \n", + "Skipped: Post your favorite dirty/funny Haiku!!! I need a pick me up!\n", + "Skipped: Wanna hear a joke? A priest walks into a bar. Ouch! HAhahaha!\n", + "Skipped: I can sing a song. Old McDonald had a farm. E I E I O!\n", + "Skipped: When the fires rose, I asked them to spare my home. They answered in ash.\n", + "Skipped: When the fires rose, I asked them to spare my home. They answered in ash.\n", + "Skipped: Inspired by Kiff from Futurama\n", + "Skipped: For those of you who frequent deviantART, I've made a contest.\n", + "Skipped: The cool thing about haikus is that you can speak in vague metaphors.\n", + "Skipped: And another one ... I just keep shelling them out. (Greek mythology)\n", + "Skipped: A new subreddit / it's r/news meets r/haiku / I hope you'll join us.\n", + "Skipped: Blinking\n", + "Skipped: 焼きそば (Yakisoba)\n", + "Skipped: My hobby haiku\n", + "Skipped: Help creating a haiku for programmers...\n", + "Skipped: Falling to breathe\n", + "Skipped: Draw Something, a collection.\n", + "Skipped: Snipped.\n", + "Skipped: Idols\n", + "Skipped: Idols\n", + "Processing 11900/15706\n", + "Skipped: You talk to much!\n", + "Skipped: Part 2\n", + "Skipped: few of mine...\n", + "Skipped: I Am Art, Therefore I Am [multi-stanzaic haiku; text in body]\n", + "Skipped: The search for knowledge... Requires great sacrifice... What's your Wi-Fi code?\n", + "Skipped: A terrible haiku, and an unanswered queastion.\n", + "Skipped: Expiration Date\n", + "Skipped: 3 word haiku with no clever title\n", + "Skipped: My way to work was wet and cold.\n", + "Skipped: DMT\n", + "Skipped: In the summer breeze a wisp of hair reaches her smile\n", + "Skipped: Pooltime Haikus\n", + "Skipped: I'm not sure if this is a haiku\n", + "Skipped: Monster Ultra Blue\n", + "Skipped: Humpday haiku\n", + "Skipped: full moon between broken blinds reaches the sill\n", + "Skipped: What happened back then? Were you there when we lost you? Are you hear right now?\n", + "Skipped: Multi Haiku poem\n", + "Skipped: different yet the same /half as much for twice as much/ /which has more to gain?\n", + "Processing 12000/15706\n", + "Skipped: my hand cradles your own/breathless adoration enduring/yearning/for renewal\n", + "Skipped: What did the clam say \\\\ at his nephew's bar mitzvah? \\\\ Mollusktov Shellhome!\n", + "Skipped: My Unicycle\n", + "Skipped: my first haiku\n", + "Skipped: A haiku for every man I ever slept with.\n", + "Skipped: Santoka learns from Seisensui 🗻🍶\n", + "Skipped: Ha\n", + "Skipped: Ha\n", + "Skipped: Haiku an old roommate of mine used to recite\n", + "Skipped: Disconnect\n", + "Skipped: Haiku of a College Student\n", + "Skipped: \"Taken\" crushes on dating sites\n", + "Processing 12100/15706\n", + "Skipped: Hi boo haiku\n", + "Skipped: Florida Summer\n", + "Skipped: Look up and away | No-where to go but uphill / Dreading future's trek\n", + "Skipped: Blanket/Orpheus/Human bodies/Paper petals/Furrowed/One brow.\n", + "Skipped: [3/3/5] evening sun / paints spring's leaves / in autumn's echo\n", + "Skipped: Mind's Direction\n", + "Skipped: I am forgiven/\n", + "Skipped: POEMS AND HAIKUS!!!!!!!\n", + "Skipped: **#\"{DULur}\"&+:>WaTcH['Star Wars: The Force Awakens'].Full.. Movie.. pUTlocker . HD...#**\n", + "Skipped: A nice long weekend: Four days out of the office; huge tasks due Tuesday\n", + "Processing 12200/15706\n", + "Skipped: sigh\n", + "Skipped: My Love\n", + "Skipped: hope\n", + "Skipped: Endless Night\n", + "Skipped: [NSFW] Pay-per-view\n", + "Skipped: The Last Shit\n", + "Skipped: I'm 78\n", + "Skipped: The future is not decided\n", + "Skipped: Need help making a haiku. Help is appreciated, money is available.\n", + "Skipped: Hayao Miyazaki: An Extended Haiku by Geitsram For visual: https://geitsrum.wordpress.com/2015/10/06/hayao-miyazaki-an-extended-haiku/\n", + "Skipped: Hayao Miyazaki: An Extended Haiku\n", + "Skipped: Airport Optimism by Geitsram\n", + "Skipped: Calling All Dreamers to the Western Deserts by Geitsram\n", + "Skipped: Haiku 28 - Feigned Thirst (A Cluster of Haikus)\n", + "Skipped: Airport Opti-mism\n", + "Skipped: Haiku cluster\n", + "Skipped: Haiku cluster, to express my feelings for my love.\n", + "Skipped: on a lonely night / a single spark fights the cold; winter snow comes home\n", + "Skipped: Next Emotion\n", + "Skipped: Hunger\n", + "Skipped: Hunger\n", + "Skipped: It takes energy-to fight against entropy-and I am so tired\n", + "Skipped: I keep every note. It is all I have of you- Your crumbled prayers.\n", + "Processing 12300/15706\n", + "Skipped: ふゆばれかきたふきませんさゆるです\n", + "Skipped: Cold skies turn leaves red/ Summer’s memory fading/ Settle in, to dark Sun’s push for six hours/ Effortless, the moon’s eighteen/ Thin, sharp, crystal air.\n", + "Skipped: Seasonal Haiku\n", + "Skipped: in light of the weather\n", + "Skipped: Egon\n", + "Skipped: Hooded Sweatshirt\n", + "Skipped: \"I think we're in trouble.\"\n", + "Skipped: My new haiku and a little bit dreams :)\n", + "Skipped: A Chink in the Armor\n", + "Skipped: Haiku #003\n", + "Skipped: Where did I go wrong? (Haiku #005)\n", + "Skipped: Rich Kid\n", + "Skipped: 0\n", + "Skipped: I thought i missed her, but my feelings went amiss. Now i feel nothing.\n", + "Skipped: Are you Sleepy Yet? / Stare deep into my sweater/ J-E-L-L-O/\n", + "Skipped: Ode to Social Security on Friday Haiku\n", + "Skipped: Wind: it jumbles up my words\n", + "Skipped: Adventures of Ninja Dog: Part 2 - a Haiku\n", + "Processing 12400/15706\n", + "Skipped: Adventures of Ninja Dog: Part 3\n", + "Skipped: Adventures of Ninja Dog: Part 6\n", + "Skipped: more money is spent advertising breast cancer than researching it\n", + "Skipped: the girl scouts should sell individual cookies for halloween treats\n", + "Skipped: you don't like yourself enough to want to let her begin to like you\n", + "Skipped: you sink into debt cause someone has to pay for the war you oppose \n", + "Skipped: haters gonna hate till a lover comes between them and their bullshit\n", + "Skipped: Daydreaming in Kyoto - Haiku Notes from a Perfect Day in Japan’s Ancient Capital\n", + "Skipped: April Chill - #NaPoWriMo\n", + "Skipped: there must be an easier way to trim those hedges.\n", + "Skipped: [poetry] Russians fucking up there own power grid\n", + "Skipped: As the breeze quickens a homeless man rummages through his black backpack\n", + "Skipped: Hai-pu\n", + "Skipped: Times Haiku\n", + "Skipped: This happens, remember yourself.\n", + "Skipped: The Curlew\n", + "Skipped: Haikus pulled from NY Times articles\n", + "Skipped: Revisited Haiku..ing?.. on a whim. Wrote two and took a picture.\n", + "Skipped: Procrastination\n", + "Skipped: Sunny Day\n", + "Skipped: Radioactive Cheese\n", + "Skipped: as I slumber a cicada's song meanders through the breeze.\n", + "Skipped: Most cans opened in 3 seconds\n", + "Skipped: My first Haiku\n", + "Skipped: Giraffe\n", + "Skipped: The Empty Child\n", + "Skipped: Free mind\n", + "Skipped: My Gfs creepy Haiku of love. Made me laugh :)\n", + "Skipped: Multimedia Haiku eBook - Kickstarter Project\n", + "Skipped: Haiku Monkey\n", + "Skipped: It was a good day.\n", + "Skipped: High Coup\n", + "Skipped: Star Wars watchin', rec room lovin' haiku\n", + "Skipped: The Half-life of Love\n", + "Skipped: Greetings to the West\n", + "Skipped: Haiku\n", + "Skipped: [REQUEST] Spartan themed haiku\n", + "Processing 12500/15706\n", + "Skipped: Kim Jong-un's fabulous photo-op, haiku style\n", + "Skipped: Lady and the Tramp\n", + "Skipped: Request time! Give me any theme, I'll make something out of it!\n", + "Skipped: Random haiku 3\n", + "Skipped: Anonymous?\n", + "Skipped: Random haiku 2\n", + "Skipped: it's always something\n", + "Skipped: First post to r/haiku. Poetry level: 0\n", + "Skipped: To Spring\n", + "Skipped: A hit or myth haiku\n", + "Skipped: We all really want-that thing we have no time for-don't know what it is\n", + "Skipped: even when it all sucks- i still have the tendency - to long for it back\n", + "Skipped: Let bygones be \"bye\", gone.\n", + "Skipped: Contemplation\n", + "Skipped: Contemplation\n", + "Skipped: An acrostic tanka about writing frustrations\n", + "Skipped: Nu Haiku\n", + "Skipped: Science fiction haiku - Haiku written by an uploaded mind\n", + "Skipped: a haiku reflecting on the 2012 election\n", + "Skipped: A haiku regarding oil\n", + "Skipped: blinded by the oil\n", + "Skipped: oil\n", + "Skipped: A peace offering\n", + "Skipped: Angst.\n", + "Skipped: Just for you.\n", + "Skipped: A haiku regarding clowns\n", + "Skipped: one day on reddit\n", + "Skipped: Vote for my Haiku?\n", + "Skipped: why lisa\n", + "Skipped: Day Off\n", + "Skipped: Haikus about Poos. Haipoos.\n", + "Skipped: Through My Window\n", + "Skipped: Ouroboros.\n", + "Skipped: Busy doing nothing.\n", + "Skipped: The woods are dry\n", + "this time of year. And cold.\n", + "And I am getting old.\n", + "Spring seems so far away.\n", + "Skipped: Viruses\n", + "Skipped: Analogous Haiku - Relationship seeking VS Fishing\n", + "Skipped: Viruses\n", + "Skipped: Haikus for all, read them\n", + "Skipped: Blues Brothers, 1989\n", + "Skipped: Haiku based on \"Einstein's Dreams\"\n", + "Skipped: The magical fruit?\n", + "Skipped: a real negro haiku\n", + "Skipped: The Internet\n", + "Skipped: Cats\n", + "Skipped: YouTube Haiku Round 3\n", + "Skipped: YouTube Haiku Round 2\n", + "Skipped: The Internet\n", + "Skipped: YouTube Haiku Round 1\n", + "Skipped: If the Eucharist was a foot long club sandwich, you would go to church. \n", + "Skipped: now some more downers... oh crap! now some more uppers! now some more downers...\n", + "Skipped: My Favorite Word\n", + "Skipped: Counting\n", + "Skipped: Just discovered haiku, how did I do?\n", + "\n", + "Skipped: One does not simply\n", + "Skipped: Garden Contemplation\n", + "Skipped: /r/Ghettohaiku / You should try it, It's awesome / You'll fit right in here.\n", + "Skipped: 1\n", + "\n", + "Gray hairs all over, I laughed at just for men ads,\n", + "\n", + "Now I might buy one\n", + "Skipped: Gray hairs all over\n", + "\n", + "I laughed at just for men ads\n", + "\n", + "Now I might buy one\n", + "Skipped: Gray hairs everywhere\n", + "I laughed at just for men ads\n", + "Now I might buy one.\n", + "Skipped: Paper Due\n", + "Processing 12600/15706\n", + "Skipped: In-fighting\n", + "Skipped: From a friend\n", + "Skipped: Pop\n", + "Skipped: maybe next week\n", + "Skipped: A haiku on hypocrisy and awareness in America\n", + "Skipped: The Optimist's Wish\n", + "Skipped: Window-shopping\n", + "Skipped: hypocrisy and awareness in America\n", + "Skipped: Bystanders' effect\n", + "Skipped: Everlasting\n", + "Skipped: A Penny\n", + "Skipped: Tenants\n", + "Skipped: Donkey Kong Haiku I animated\n", + "Skipped: New York \n", + "Skipped: Novembeard Ended\n", + "Skipped: Accounting\n", + "Skipped: weed out the knots// caught on skin split// fingers force motion// resist the friction\n", + "Skipped: /r/haiku\n", + "Skipped: 2am again. Time I ate some food. Only six more hours left.....'8)\n", + "Skipped: My Day\n", + "Skipped: It can't be overcome/And yet it forever haunts me./\n", + "How you mock me sleep.\n", + "\n", + "Skipped: When finals are done / Let's bask in the light at the / /end of the tunnel.\n", + "Skipped: in an empty field miles from home i collapse and cry with all my might\n", + "Skipped: Ceelo Green's lyric in Haiku form\n", + "Processing 12700/15706\n", + "Skipped: Here is my haiku: I thought it would be better, but \r\n", + "this is it, dude.\n", + "Skipped: Haiku by my brother-in-law: \"Something churning deep. Rumbling from inside my guts. I just pooped my pants.\"\n", + "Skipped: Haiku by my brother-in-law: \"Something churning deep. Rumbling from inside my guts. I just pooped my pants.\"\n", + "Skipped: kids want to grow up almost as much as adults wish they were children\n", + "Skipped: What provocation - Let him take my best sandwich - He was a Yeti\n", + "Skipped: antslaughter\n", + "Skipped: Some Western Haiku by Jack Kerouac\n", + "Skipped: The Northport Haiku by Jack Kerouac\n", + "Skipped: Wife's Haiku-a-day project\n", + "Skipped: predictive text Haiku ;\n", + "\n", + "I think your mum is / finding it difficult to / know what to expect. \n", + "Skipped: waffle haiku\n", + "Skipped: 6 mos.\n", + "Skipped: The ocean is sleep. Surrounds you and supports you. Nevermore awake.\n", + "Skipped: autumn rain whispers- -ochre aspens/hold their tongues\n", + "Skipped: Haiku\n", + "Skipped: My alarm clock and husband has an infliction. Rolling eyes at me\n", + "Skipped: A tanka about haiku\n", + "Skipped: Listen I’m just a simple conservative from a very small town,\n", + "Processing 12800/15706\n", + "Skipped: In The Void\n", + "Skipped: moo\n", + "Skipped: A Window Looking In\n", + "Skipped: Gem Club, musical/homesickness, evocative, hiraeth for the soul\n", + "Skipped: Summer Storm\n", + "Skipped: Depression\n", + "Skipped: Specks.\n", + "Skipped: How real do you get\\ when you have killed your own mom?/ and nobody cares\n", + "Skipped: you + me\n", + "Processing 12900/15706\n", + "Skipped: My pump is failing. Sewage starting to back up./Spewing everywhere\n", + "Skipped: My pump is failing. Sewage starting to back up./Spewing all over\n", + "Skipped: Changing Times\n", + "Skipped: Forest\n", + "Skipped: Shooting Star\n", + "Skipped: 25 year high school reunion\n", + "Skipped: X-Men - A Haiku, by me\n", + "Skipped: Thought\n", + "Skipped: test\n", + "Skipped: The Suffering\n", + "Skipped: Test\n", + "Skipped: i’m trying to sleep\n", + "Skipped: Winter\n", + "Skipped: End of Winter\n", + "Skipped: QPU Aligned / Completed in 1/2 a press / Watch for Rolling Rocks\n", + "Skipped: Ashen Vulture\n", + "Processing 13000/15706\n", + "Skipped: On a trip\n", + "Skipped: shame\n", + "Skipped: Inspired by Jay Z\n", + "Skipped: Oh, how we do choke/On the words which we wish we had never spoken\n", + "Skipped: Here ya go pals, the mini-series. The Orchesta of the Woods : Owl\n", + "Skipped: Community Haiku, Topic: Rain\n", + "Skipped: A Sight Above\n", + "Skipped: Seasonal Haiku in post\n", + "Skipped: Gutting a gourd and / scooping slime for stenciling spooky silhouettes\n", + "Processing 13100/15706\n", + "Skipped: Psychology papers\n", + "Skipped: Love song\n", + "Skipped: So for October I had a haiku for each day. Now that it's done I figured I'd share\n", + "Skipped: Bitches gettin hotter/Time moves forward/Niggas gettin taller/Titties Titties\n", + "Processing 13200/15706\n", + "Skipped: Our nation\n", + "Skipped: Pirate Haiku\n", + "Skipped: Writing on water🌿 All my laughter flows sea-ward🌿 Now it’s returning🌿\n", + "Skipped: I know this has been said before but....dividing a 17 syllable sentence into 3 pieces does not make a haiku.\n", + "Skipped: Dogs\n", + "Skipped: ghoulish wails and moans ● air-gusts play the area ● like an instrument\n", + "Skipped: We’re both unhappy Please give us a second chance You’re my one true love\n", + "Skipped: a mighty lightning ● an ordinary movement ● electricity\n", + "Skipped: a plane cuts silence ⚫ down, a train roars through the night ⚫ my ears are clean now\n", + "Skipped: ありがたいもの, Boon\n", + "Skipped: I get a lot wrong\n", + "Skipped: 亀裂, Crack\n", + "Skipped: 希望, Wish\n", + "Skipped: A cold coffee cup. Like a stale marriage. Needs heat! Add a second cup!\n", + "Skipped: in my veins I feel ● fiery chariots of blood ● the body inheres\n", + "Skipped: I toss up the ground🍃 violently, the rain pours down💧earth retakes it’s shape🍃\n", + "Skipped: ストーリーテラー, Storyteller\n", + "Skipped: 別として, Apart\n", + "Processing 13300/15706\n", + "Skipped: a great chirping rose ● and flew leftward as a loud cloud ● a train of jackdaws\n", + "Skipped: カメ, Tortoise\n", + "Skipped: Midnight\n", + "Skipped: 観音, Guan Yin\n", + "Skipped: despite nothingness • shines a thunderous silence • the central Fire\n", + "Skipped: ミューズ, Muse\n", + "Skipped: 真実, Truth\n", + "Skipped: a stillness of leaves • and a foggy quietude • a calm forest rests\n", + "Skipped: moonbeams reflected • in a hissing sea, in waves • paths of gold and salt\n", + "Skipped: Haiku\n", + "Skipped: left my hairtie at / ur place - can i come tonite? ps i had fun :)\n", + "Skipped: dots of black plummage • lines of crooked, creaking caw-caws • figures of presence\n", + "Skipped: We're not that different\n", + "Skipped: Smile for me\n", + "Skipped: high towers of neon • rise above darksome tomb lands • the car engine hums\n", + "Skipped: ○\n", + "Skipped: Merry Christmas\n", + "Skipped: a fir sways gently • iron dunes flow in the sky • an autumnal rain\n", + "Skipped: I used to \"flip 'em\" - now, I 'Peace'. They used to blare - now, \"Haircut, two bits!\"\n", + "Skipped: I used to \"flip 'em\" - now, I 'Peace'. They used to blare - now, \"Haircut, two bits!\"\n", + "Skipped: I used to \"flip 'em\" - now, I 'Peace'. They used to blare - now, \"Haircut, two bits!\"\n", + "Skipped: Holidays are here. • Winter is upon many. • Family and warmth for many.\n", + "Skipped: your blanket is green • the music is rather brown • sublime rudiments\n", + "Skipped: *wink*\n", + "Processing 13400/15706\n", + "Skipped: ● the Moon is a pair • of horns of honey and pearl • long time no see, friend! ●\n", + "Skipped: an entanglement • the net is vast, but finite • we are playing chess\n", + "Skipped: a geometry - floodlit glass and black metal - the city glows - gross\n", + "Skipped: Snow\n", + "Skipped: red light on the hilt • of an old, alien blade • impaling the world\n", + "Skipped: we are environed • by a cavernous, white frost • the Sun is beyond\n", + "Skipped: Chiickie nuggies\n", + "Skipped: white and slender birds • fly gilded by cosmic rays • a limitless blue\n", + "Skipped: Book suggestions on haiku?\n", + "Skipped: 安心, Reassurance\n", + "Skipped: 保護, Protection\n", + "Skipped: 団結, Unity\n", + "Skipped: 上記, Above\n", + "Skipped: Leaf in a River\n", + "Skipped: Haiku Proof\n", + "Skipped: smiling faces - tongues out, canines and a grumpy meow\n", + "Skipped: Number One\n", + "Skipped: Quasi-deep thoughts\n", + "Skipped: The birds of Gifu.\n", + "Skipped: flock of shadows speed up the wall - sky never touch\n", + "Processing 13500/15706\n", + "Skipped: My sister is a damn idiot\n", + "Skipped: Five\n", + "Skipped: Yes, yes, yes, no.\n", + "Skipped: flowing flower... winding path polen follows\n", + "Skipped: flowing flower... winding path pollen follows\n", + "Skipped: Varanasi\n", + "Skipped: People don't like me. I bring out the worst in them. Maybe it's their fault.\n", + "Skipped: What is up with my face. Is it filled. With blood or paste.\n", + "Skipped: Hiding in plain sight - Putting off what must be done / Procrastination\n", + "Skipped: An ode to skinned heads\n", + "Skipped: ol' gold mine - many footsteps unfold, and now mine\n", + "Skipped: ICU Haiku #17\n", + "Skipped: ICU Haiku #12\n", + "Skipped: A haiku for the ocean\n", + "Skipped: afternoon glare - windows, cars, roads, hairs / single shine bear\n", + "Skipped: Adrenaline rush, cool kicks, 90% off, the wish app is rad.\n", + "Processing 13600/15706\n", + "Skipped: Rattling bamboo stalks. Southerly wind, setting sun. Lonely bird departs.\n", + "Skipped: all colors in the world... sun sets and takes back\n", + "Skipped: Too heavy to fly / Ruffled feathers won't give lift / Do not fall from nest / Death awaits my move / Should have listened to Darwin / Adapt to survive\n", + "Skipped: blown away!\n", + "Skipped: A haiku for most men.\n", + "Skipped: grass blades metal cut! wind blows sharply...\n", + "Skipped: New form of Haiku?\n", + "Skipped: Round-eye-ku # 2\n", + "Skipped: Roses colored red Violets grow above my head On my grave garden\n", + "Skipped: These translations come from Poems to Eat. Ishikawa Takuboku.\n", + "Skipped: Cat Haiku\n", + "Skipped: Haiku! Yes! You will love this, or else!\n", + "Skipped: Difficulty composing a haiku - how many syllables does 'strengths' have?\n", + "Skipped: Nyctohylophobia\n", + "Skipped: 入場, Entrance\n", + "Skipped: Light\n", + "Processing 13700/15706\n", + "Skipped: Her fears and mine.\n", + "Skipped: The kiss, a peek into your soul\n", + "Skipped: Haiku version of the Unenforceable Rule\n", + "Skipped: Haiku version of the Unenforceable Rule\n", + "Skipped: Our haunted pasts and love\n", + "Skipped: 出口, Exit\n", + "Skipped: As the young poet / learns his craft, sometimes ego / blocks the way forward. ~ Humility is / the one remedy for this / writer's ego block.\n", + "Skipped: Progress\n", + "Skipped: Pizza\n", + "Skipped: I'm Stupid\n", + "Skipped: まやかし, Deception\n", + "Skipped: Coffee\n", + "Skipped: 新しい夜明け, New Dawn\n", + "Skipped: Words\n", + "Skipped: Offline\n", + "Skipped: Heavy Metal\n", + "Skipped: 降雪, Snowfall\n", + "Skipped: Im trying too hard\n", + "Skipped: 衛兵, Sentry\n", + "Skipped: ブラックアウト, Blackout\n", + "Processing 13800/15706\n", + "Skipped: that's how we get ants\n", + "Skipped: Fat raindrops falling, rainwater, gurgling drainpipes, rainy, rainy day.\n", + "Skipped: シュール, Surreal\n", + "Skipped: Mexican Restaurant\n", + "Skipped: 慌てる, Panic\n", + "Skipped: The steep \"Haiku Stairs\" / are not named for poetry / but for a flower. ~ https://en.wikipedia.org/wiki/Haiku_Stairs\n", + "Skipped: New Day\n", + "Skipped: Haiku\n", + "Skipped: Mustang Ride\n", + "Skipped: My First Post on Reddit\n", + "Skipped: That amazing mind. Stargazer, forever dreaming. Your legacy will be true\n", + "Skipped: A lunch haiku\n", + "Skipped: 不動, Motionless\n", + "Skipped: ひとりだけの, Solitary\n", + "Skipped: コンテキスト, Context\n", + "Processing 13900/15706\n", + "Skipped: 生きがい- Reason for Being\n", + "Skipped: 遵守, Observance\n", + "Skipped: Can you buy love?\n", + "Skipped: Calm air of morning. Birds sing songs during sunrise. Spring makes its entrance.\n", + "Skipped: The Bear and The Unicorn. A story through haikus\n", + "Skipped: アプローチ, Approach\n", + "Skipped: Bee haiku\n", + "Skipped: decide who you are where you stand and what that means before trouble comes\n", + "Skipped: A happy birthday never slipped from the lips of my closest friends\n", + "Processing 14000/15706\n", + "Skipped: Dmt inspired Haikus\n", + "Skipped: Truth in Haiku\n", + "Skipped: \"Caw, caw!\" above snow — Grievances against / Spring again delayed\n", + "Skipped: 余剰, Redundant\n", + "Skipped: Had some Bitcoin but Traded it for many litecoins Now I have low fees\n", + "Skipped: 瞬間, Moment\n", + "Skipped: 紙- Paper\n", + "Skipped: Virus infested/ Can there be any repair here/ All hope may be lost/\n", + "Skipped: a happy life is lived in perfect accordance with its own nature\n", + "Processing 14100/15706\n", + "Skipped: New to reddit\n", + "Skipped: pep talk haikus\n", + "Skipped: First Reddit Post\n", + "Skipped: Paying someone to make me a haiku\n", + "Skipped: 自分- Self\n", + "Skipped: Doggo Haiku\n", + "Skipped: プリズム, Prism\n", + "Skipped: Japanese kicks ass. English haikus really suck. Don't try to write them.\n", + "Skipped: Hair loss\n", + "Skipped: Hilarious Haikus Two\n", + "Skipped: Hilarious Haikus\n", + "Processing 14200/15706\n", + "Skipped: An beautiful set of haikus by an Irish poet from County Limerick:\n", + "Skipped: First Haiku\n", + "Skipped: Hero of the Light - A Story in Haiku Form\n", + "Skipped: A series of haiku about the end of the world\n", + "Skipped: The modern day haiku.\n", + "Skipped: Final in a few\n", + "Skipped: Two haikus that go together - In my dreams I carved/ My own statuesque angel/ Ivory, chestnut/ With a falcon's wings/ And the claws of a lion/ To fiercely love me\n", + "Skipped: A haiku fo that ass\n", + "Skipped: Umbrella\n", + "Skipped: Written for English class\n", + "Skipped: Many faces\n", + "Skipped: Off my chest...\n", + "Skipped: Requested a haiku from Pizza Hut. Not impressed.\n", + "Skipped: Alisha\n", + "Processing 14300/15706\n", + "Skipped: \"real nigga haiku's\"\n", + "Skipped: a society/'s through silence it gains voices/'s through action it screams/'s\n", + "Skipped: she sought the something and through seeking saw that space revealed no secret\n", + "Skipped: Clay soil dry in hands / Sharp bent blades blowing / away / I'll return one day\n", + "Skipped: Mario Kart Haiku\n", + "Skipped: Meme Haiku\n", + "Skipped: Mince and Cheese Pies\n", + "Skipped: It's 3 am\n", + "Skipped: Attraction\n", + "Skipped: Sleeping with my windows open\n", + "Skipped: I hope.\n", + "Skipped: Romantic Anxiety\n", + "Skipped: Searching for breakfast/ The hummingbird sips at each Phlox flower- no luck/\n", + "Skipped: Confusion\n", + "Skipped: Blue melts into black, with nuclear balls of fire. I love the night sky.\n", + "Skipped: Our lightbulbs burned out, / and when I put in new ones, / your light wasn't there. There was no dimming, / no moment of slight darkness. / You turned off and left.\n", + "Processing 14400/15706\n", + "Skipped: Beer Haiku\n", + "Skipped: Untitled\n", + "Skipped: White Girl\n", + "Skipped: Jettison\n", + "Skipped: Decisions\n", + "Skipped: delicto solo\n", + "Skipped: Love & Lust\n", + "Skipped: Tortoise\n", + "Skipped: Ethics\n", + "Skipped: [Dead of Night]\n", + "Skipped: So sleepy\n", + "Skipped: Skwabbis Fer Jutney (4 Haiku Adventure Saga)\n", + "Processing 14500/15706\n", + "Skipped: Eating disorder || not only hurts your body || but also breaks my heart.\n", + "Skipped: Eating Disorder || Not only hurts your body || but also my heart.\n", + "Skipped: She walks down the aisle With white stains on her white dress It's just a rental\n", + "Skipped: 採餌, foraging\n", + "Skipped: 黒影, silhouette\n", + "Skipped: ルーツ, roots\n", + "Skipped: Chain emails\n", + "Skipped: Conference call\n", + "Skipped: おいしい, tasty\n", + "Skipped: 発育, growth\n", + "Skipped: Tears\n", + "Skipped: 注意深い, careful\n", + "Skipped: Telepathy\n", + "Skipped: Darkness, all around Did I mention I can’t hear ? I’m helen Keller\n", + "Skipped: すじ, streaks\n", + "Skipped: well my first girlfriend; my love, turned into the moon / well that's rough buddy\n", + "Skipped: 大洪水, deluge\n", + "Skipped: 夥多, plentiful\n", + "Skipped: Mushrooms\n", + "Skipped: To Know Bliss\n", + "Processing 14600/15706\n", + "Skipped: 恐れません, unafraid\n", + "Skipped: 勝利, victory\n", + "Skipped: すばしこい, graceful\n", + "Skipped: シルク, Silk\n", + "Skipped: Winter\n", + "Skipped: Chipmunk articles: / Acorn Addicts; Leaf Linens and Tunnel New Doors\n", + "Skipped: 0b101 0b111 0b101\n", + "Skipped: Glorious mountain An energetic run stings in spite of the king\n", + "Skipped: haiku\n", + "Skipped: 匍匐, creeping\n", + "Skipped: Spring\n", + "Processing 14700/15706\n", + "Skipped: haiku\n", + "Skipped: My soul shall outlast Miseries/ And My dreams shall outlast my Soul.\n", + "Skipped: Anxiety\n", + "Skipped: #Brevity / In short, a way to say much while saying little.\n", + "Skipped: Ruaisuhr\n", + "Skipped: Spilled Ink and Overused Words\n", + "Skipped: 努力, strive\n", + "Skipped: 擦り切れました, frayed\n", + "Skipped: Let me sleep\n", + "Skipped: A haiku about going for a walk\n", + "Skipped: The memory of / Being inside of you is / [My eternal wave.](https://steamusercontent-a.akamaihd.net/ugc/854980813031981058/96DEC9ADD9FA72B0BA655A45E7728A50FADFA505/)\n", + "Skipped: The memory of / Being inside of you is / [My eternal wave.](https://steamusercontent-a.akamaihd.net/ugc/854980813031981058/96DEC9ADD9FA72B0BA655A45E7728A50FADFA505/)\n", + "Skipped: The memory of / Being inside of you is / [My eternal wave.](https://steamusercontent-a.akamaihd.net/ugc/854980813031981058/96DEC9ADD9FA72B0BA655A45E7728A50FADFA505/)\n", + "Skipped: The memory of / Being inside of you is / [My eternal wave.](https://streamable.com/3l5me)\n", + "Skipped: Love Poem\n", + "Processing 14800/15706\n", + "Skipped: A Medieval Tale [Haiku compilation story]\n", + "Skipped: Haiku from the poetrypea.com Podcast\n", + "Skipped: Low hanging clouds brush / against swaying tree tops earthworm showering\n", + "Skipped: 同期, synchronized\n", + "Skipped: Stack Aspect\n", + "Skipped: Stack Aspect\n", + "Skipped: Evening Shelter\n", + "Skipped: Why Dogo\n", + "Skipped: Catching Up\n", + "Skipped: I am a builder\n", + "Skipped: Tightwire\n", + "Skipped: [OC] – Lendemains gris – [sub ENG + JPN]\n", + "Skipped: Haiku of the haiku in 3 words\n", + "Skipped: Between Borders\n", + "Processing 14900/15706\n", + "Skipped: 交差点, crossroad\n", + "Skipped: Embrace\n", + "Skipped: Everyone thinks / it's five seven five / but in reallife / it's four five four five\n", + "Skipped: Evening\n", + "Skipped: I won my college haiku contest with this one:\n", + "Skipped: [ compatible ]\n", + "Skipped: [epic haiku of diss to an ex lover]\n", + "Skipped: Magpies/Jackdaws\n", + "Processing 15000/15706\n", + "Skipped: 朝食, breakfast\n", + "Skipped: 蒸し暑い, humid\n", + "Skipped: Words left unspoken. Repressed tears fall in silence. A voice forgotten.\n", + "Skipped: シェード, shade\n", + "Skipped: 交代, shift\n", + "Skipped: Fishing boat lights\n", + "Skipped: Old hand - front jumps into one hand slap\n", + "Skipped: Old hand - frog jump into the sound of a slap\n", + "Skipped: strawberry milkshake\n", + "Skipped: Reincarnation\n", + "Processing 15100/15706\n", + "Skipped: \"Your effect on me\"\n", + "Skipped: Today's dark haiku\n", + "Skipped: Today's dark haiku\n", + "Skipped: Feedback wanted\n", + "Skipped: one in the morning yup writing haikus is hard wait am i still writ-\n", + "Skipped: I am hopelessness, not you.\n", + "Skipped: 間近, proximity\n", + "Processing 15200/15706\n", + "Skipped: The bull is set free. He is the moon. And the moon? It is now the sea.\n", + "Skipped: Off the cuff on the way to work\n", + "Skipped: Anybody knows this page from jericho\n", + "Skipped: What is a haiku?\n", + "Skipped: Rhetorical questions\n", + "Skipped: Haiku\n", + "Processing 15300/15706\n", + "Skipped: Meow indeed\n", + "Skipped: Wife and husband\n", + "Skipped: A kiss in the lift.\n", + "Skipped: Springtime <3\n", + "Skipped: Warmth.\n", + "Skipped: The beach.\n", + "Skipped: ...\n", + "Skipped: Summer day.\n", + "Skipped: Moments of clarity - made by laughter between friends - crawls back beneath grief\n", + "Skipped: Nightmares (w/ comic)\n", + "Skipped: Ashored\n", + "Processing 15400/15706\n", + "Skipped: Smile in the Mirror\n", + "Skipped: Finally\n", + "Skipped: Sickness (with comic)\n", + "Skipped: afraid\n", + "Skipped: The sun is so hot/Fire burning and burning, From the dark comes light.\n", + "Skipped: Not afraid.\n", + "Skipped: Thinking and time\n", + "Skipped: Stoicism (with comic)\n", + "Skipped: Eternal haiku\n", + "Processing 15500/15706\n", + "Skipped: I am getting tired of the \"send nudes\" meme so I wanted to liven it up with 3 \"send nudes\" themed haikus... You are welcome to join in the hedonism.\n", + "Skipped: Sorry, not a haiku.\n", + "Skipped: Dorothy's Heels\n", + "Skipped: Search Engines\n", + "Skipped: Cherry Blossom Petals\n", + "Skipped: TIL when installing Firefox, you get a haiku\n", + "Skipped: Did something stupid, someone caught it on camera. Reddit is my life.\n", + "Skipped: The Job\n", + "Skipped: Five haikus\n", + "Skipped: Haiku response to a WordPress Daily Post challenge:\n", + "Skipped: Frustrating\n", + "Skipped: Question about haikus\n", + "Skipped: What's Dangerous?\n", + "Processing 15600/15706\n", + "Skipped: /r/movies banned me and made me apologize in haiku in order to lift the ban\n", + "Skipped: Kiss of the Narcissist\n", + "Skipped: Who is it?\n", + "Skipped: I have a plan\n", + "Skipped: walk in the woods / a moment of consciousness \\ this should clear my mind\n", + "Skipped: 2014\n", + "Skipped: The Party pt 1\n", + "Skipped: post your new years eve (2014/2015) Haikus here.\n", + "Skipped: when it snows too much, only people with real jobs have to go to work\n", + "Skipped: I've got some good news: after a bottle of wine, I think in haikus\n", + "Skipped: sluts love the excuse of snowy winter weather to wear spandex pants\n", + "Skipped: I want to think quick / Remember to remember /\n", + "Moments that stopped time.\n", + "Processing 15700/15706\n", + "Skipped 2633/15706\n" + ] + } + ], + "source": [ + "all_posts = []\n", + "skipped = 0\n", + "total = len(convos)\n", + "for i, (post_id, convo) in enumerate(convos.items()):\n", + " if i % 100 == 0:\n", + " print(f'Processing {i}/{len(convos)}')\n", + " processed_title = process(convo['title'])\n", + " if processed_title is None:\n", + " skipped += 1\n", + " print(f\"Skipped: {convo['title']}\")\n", + " continue\n", + " post_dict = {\n", + " 'id': post_id,\n", + " #'title': convo['title'],\n", + " 'processed_title': '/'.join(processed_title),\n", + " 'score':scores[post_id],\n", + " 'created_utc': convo['timestamp']\n", + " }\n", + " # Filter and postprocess\n", + " all_posts.append(post_dict)\n", + " \n", + "print(f'Skipped {skipped}/{len(convos)}')\n", + " \n", + "df = pd.DataFrame(all_posts, columns=['id', 'processed_title', 'score', 'created_utc'])\n", + " #print(convo)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "cb56ed99", + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "df = df.sort_values('score', ascending=False)\n", + "df.to_csv('convo.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "38e1abc3", + "metadata": {}, + "source": [ + "# Process My Reddit Dump (~5k)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "45c333e9", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "from glob import glob\n", + "df = {}\n", + "for file in glob('reddit-2022-10-20-dump/*.csv'):\n", + " df[file] = pd.read_csv(file)\n", + "big_df = pd.concat(df.values())" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "8e1199e6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total 3950 Unique 2376\n" + ] + } + ], + "source": [ + "print('Total', len(big_df), 'Unique', big_df.id.nunique())\n", + "big_df = big_df.groupby('id').first()" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "e2406f12", + "metadata": {}, + "outputs": [], + "source": [ + "# Clean up the data\n", + "big_df['processed_title'] = big_df['title'].apply(process_and_join)" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "f987cd44", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Unnamed: 0 628\n", + "title My sticky lover / Juices running down my chin ...\n", + "author_name Matti_Matti_Matti\n", + "author_karma 188262\n", + "ups 31\n", + "downs 0\n", + "upvote_ratio 0.95\n", + "permalink /r/haiku/comments/3s9bdd/my_sticky_lover_juice...\n", + "created_utc 1447151751.0\n", + "processed_title My sticky lover/Juices running down my chin/Oh...\n", + "Name: 3s9bdd, dtype: object" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "big_df.iloc[20]" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "95eec2a9", + "metadata": {}, + "outputs": [], + "source": [ + "big_df.sort_values(['ups','author_karma'],ascending=False)\n", + "big_df.to_csv('reddit-2022-10-20-dump.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "6d767b6d", + "metadata": {}, + "source": [ + "# Merge two datasets" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "9a97d82a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "No content? 63\n" + ] + } + ], + "source": [ + "mydump_df = pd.read_csv('reddit-2022-10-20-dump.csv')\n", + "convokit_df = pd.read_csv('convo.csv')\n", + "merged_df = pd.concat([mydump_df, convokit_df.rename(columns={'score':'ups'})])\n", + "print('No content?', merged_df.processed_title.isnull().sum())" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "e52a5a67", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total merged 15449 unique ids 15344\n", + "15281\n" + ] + } + ], + "source": [ + "# we assume convokit scores mean \"ups\"\n", + "merged_df = merged_df[['id', 'processed_title', 'ups']]\n", + "print(f'Total merged {len(merged_df)} unique ids {merged_df.id.nunique()}')\n", + "# Remove unique Ids\n", + "merged_df = merged_df.groupby('id').first()\n", + "merged_df = merged_df.dropna()\n", + "print(len(merged_df))\n", + "merged_df.to_csv('merged.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "134befa0", + "metadata": {}, + "source": [ + "# Annotate with KeyBERT" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "f9bf1e24", + "metadata": {}, + "outputs": [], + "source": [ + "from keybert import KeyBERT\n", + "from tqdm import tqdm\n", + "tqdm.pandas()\n", + "\n", + "doc = \"\"\"\n", + " Supervised learning is the machine learning task of learning a function that\n", + " maps an input to an output based on example input-output pairs. It infers a\n", + " function from labeled training data consisting of a set of training examples.\n", + " In supervised learning, each example is a pair consisting of an input object\n", + " (typically a vector) and a desired output value (also called the supervisory signal).\n", + " A supervised learning algorithm analyzes the training data and produces an inferred function,\n", + " which can be used for mapping new examples. An optimal scenario will allow for the\n", + " algorithm to correctly determine the class labels for unseen instances. This requires\n", + " the learning algorithm to generalize from the training data to unseen situations in a\n", + " 'reasonable' way (see inductive bias).\n", + " \"\"\"\n", + "kw_model = KeyBERT()\n", + "keywords = kw_model.extract_keywords(doc)\n", + "\n", + "def extract_keyword_from_haiku(processed_title):\n", + " title = ', '.join(processed_title.split('/'))\n", + " keywords = kw_model.extract_keywords(title)\n", + " return keywords # e.g. [('supervised', 0.6676),('labeled', 0.4896)]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "16fda455", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 15281/15281 [10:43<00:00, 23.74it/s]\n" + ] + } + ], + "source": [ + "df = pd.read_csv('merged.csv')\n", + "df['keywords'] = df.processed_title.progress_apply(extract_keyword_from_haiku)\n", + "df.to_csv('merged_with_keywords.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "id": "5580b815", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15281it [00:00, 261731.86it/s]\n" + ] + } + ], + "source": [ + "# Take top 5 keywords\n", + "keyword_based_json = {}\n", + "for row in tqdm(df.itertuples()):\n", + " for i, (key,val) in enumerate(row.keywords):\n", + " if i>=5:\n", + " break\n", + " keyword_based_json.setdefault(key, [])\n", + " keyword_based_json[key].append(row.processed_title)\n", + " #print(row)\n", + "final_json = {}\n", + "final_json['data'] = [{keyword:haikus} for keyword, haikus in keyword_based_json.items()]\n", + "with open('reddit_dataset.json', 'w') as fp:\n", + " json.dump(final_json, fp, indent=4)" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "id": "40834c79", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'inside': list}" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "keyword_based_json" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fc3707e5", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}