From 3a1d44841905d013b0c95ec0aa6a2bd3bb2cd041 Mon Sep 17 00:00:00 2001 From: Michael Murtaugh Date: Sun, 31 Oct 2021 17:55:21 +0000 Subject: [PATCH] Love Unknown, Angie Waller -- adapted for python3 / jupyter notebook --- .gitignore | 1 + Love Unknown.ipynb | 7409 +++++++++++++++++++++++++++++++++ dictionaries/afterthought.txt | 9 + dictionaries/description.txt | 8 + dictionaries/from.txt | 31 + dictionaries/gym.txt | 6 + dictionaries/interaction.txt | 11 + dictionaries/intro.txt | 7 + dictionaries/more.txt | 11 + dictionaries/stop.txt | 10 + dictionaries/w4m.txt | 31 + 11 files changed, 7534 insertions(+) create mode 100644 .gitignore create mode 100644 Love Unknown.ipynb create mode 100644 dictionaries/afterthought.txt create mode 100644 dictionaries/description.txt create mode 100644 dictionaries/from.txt create mode 100644 dictionaries/gym.txt create mode 100644 dictionaries/interaction.txt create mode 100644 dictionaries/intro.txt create mode 100644 dictionaries/more.txt create mode 100644 dictionaries/stop.txt create mode 100644 dictionaries/w4m.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..763513e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.ipynb_checkpoints diff --git a/Love Unknown.ipynb b/Love Unknown.ipynb new file mode 100644 index 0000000..bafdfd6 --- /dev/null +++ b/Love Unknown.ipynb @@ -0,0 +1,7409 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "99002f77-ae78-4a63-b482-4a9889b24428", + "metadata": {}, + "source": [ + "# Love Unknown (2014-) / Angie Waller\n", + "\n", + "* https://angiewaller.com/love-unknown-2014-ongoing/\n", + "* https://angiewaller.com/\n", + "\n", + "Archived project website:\n", + "\n", + "* https://web.archive.org/web/20180905063745/http://loveunknown.org/\n", + "* https://www.amazon.com/Nice-Pickup-45th-Street-CMon-ebook/dp/B00WQEOJMI/ref=sr_1_1?dchild=1&keywords=Angie+Waller+Love+Unknown&qid=1633952999&sr=8-1\n", + "\n", + "Code (python 2)\n", + "\n", + "* https://github.com/angiewaller/missedconnections\n", + "\n", + "\n", + "![](https://angiewaller.com//angiewaller.com/wp-content/uploads/2016/04/artistbookyearbook.jpg)\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "b0ecc4b2-5641-40b1-82e6-657abaaf3681", + "metadata": {}, + "source": [ + "## Installation stuff (only do once)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "af1ab3c9-1395-491c-9200-47e50e3d1202", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Defaulting to user installation because normal site-packages is not writeable\n", + "Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple\n", + "Requirement already satisfied: python-craigslist in /home/murtaugh/.local/lib/python3.7/site-packages (1.1.4)\n", + "Requirement already satisfied: urllib3>=1.26.0 in /home/murtaugh/.local/lib/python3.7/site-packages (from python-craigslist) (1.26.7)\n", + "Requirement already satisfied: beautifulsoup4>=4.9.0 in /home/murtaugh/.local/lib/python3.7/site-packages (from python-craigslist) (4.10.0)\n", + "Requirement already satisfied: requests>=2.25.0 in /home/murtaugh/.local/lib/python3.7/site-packages (from python-craigslist) (2.26.0)\n", + "Requirement already satisfied: six in /usr/lib/python3/dist-packages (from python-craigslist) (1.12.0)\n", + "Requirement already satisfied: soupsieve>1.2 in /home/murtaugh/.local/lib/python3.7/site-packages (from beautifulsoup4>=4.9.0->python-craigslist) (2.2.1)\n", + "Requirement already satisfied: charset-normalizer~=2.0.0 in /home/murtaugh/.local/lib/python3.7/site-packages (from requests>=2.25.0->python-craigslist) (2.0.6)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests>=2.25.0->python-craigslist) (2018.8.24)\n", + "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.25.0->python-craigslist) (3.2)\n" + ] + } + ], + "source": [ + "!pip3 install python-craigslist --upgrade" + ] + }, + { + "cell_type": "markdown", + "id": "1967d676-f613-433f-b7d0-9285d90ed1b0", + "metadata": {}, + "source": [ + "## Import stuff" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "3c5b6088-33f5-4474-a540-ba79e701c0e1", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import json\n", + "import csv\n", + "import datetime\n", + "import re\n", + "from random import randrange\n", + "import craigslist" + ] + }, + { + "cell_type": "markdown", + "id": "0edaa047-a659-47f7-8cfb-234d27b5c9ce", + "metadata": {}, + "source": [ + "## Collect Listings" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "e179fc8d-9dd2-4dfc-9d0c-c208085cf750", + "metadata": {}, + "outputs": [ + { + "ename": "ImportError", + "evalue": "cannot import name 'CraigsListCommunity' from 'craigslist' (/home/murtaugh/.local/lib/python3.7/site-packages/craigslist/__init__.py)", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_9106/873441944.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mcraigslist\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mCraigsListCommunity\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mImportError\u001b[0m: cannot import name 'CraigsListCommunity' from 'craigslist' (/home/murtaugh/.local/lib/python3.7/site-packages/craigslist/__init__.py)" + ] + } + ], + "source": [ + "# from craigslist import CraigsListCommunity" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d5dd5b45-2e07-4a9e-a6c3-5225eba953a6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['/home/murtaugh/.local/lib/python3.7/site-packages/craigslist']\n" + ] + } + ], + "source": [ + "print (craigslist.__path__)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "53bf2b3b-faf8-473b-9c37-2d7bcab8bfe2", + "metadata": {}, + "outputs": [], + "source": [ + "# chicago = craigslist.CraigslistCommunity(site='chicago', category='mis')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b383a1a4-4a34-460c-b383-39f0a7dc7f29", + "metadata": {}, + "outputs": [], + "source": [ + "def gather_data(city):\n", + " os.makedirs(\"sampledata\", exist_ok=True)\n", + " with open(f\"sampledata/{city}.jsons\", \"a\") as fout:\n", + " q = craigslist.CraigslistCommunity(site=city, category='mis')\n", + " print (f\"{q.get_results_approx_count()} results from {city}\")\n", + " for post in q.get_results(include_details=True):\n", + " post['city'] = city\n", + " print (f\"{post['id']}: {post['name']}\")\n", + " print (json.dumps(post), file=fout)\n", + " print (\"done\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dd1fe5e1-57ad-4e21-9248-bad5b04a125c", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# gather_data(\"chicago\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "b3d292d6-c903-4a9d-8df2-8794af437fba", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "92 results from newyork\n", + "7401675104: Danielle, 24 - Amazon Drop Shipping\n", + "7401664687: 7 train yesterday 11 am\n", + "7401631397: New Canaan, Brick House\n", + "7401664423: Barbara at afraid of the dark last night\n", + "7401660531: m4m young guy in the mall\n", + "7401635058: Apple Store at Hanson Pl\n", + "7401639685: Edge gym Sunday\n", + "7401611625: older male for younger F\n", + "7401551874: Looking to stop by along the belt\n", + "7401555082: We played cards Friday\n", + "7401548122: You said you loved chocolate\n", + "7401530057: Q Train Prospect Park Smile 2:15pm Sat\n", + "7401531159: Dude with cat ears at Judy & Punch Astoria\n", + "7401510462: Saw you on the A Train Friday night\n", + "7401466486: Eevee at CVS\n", + "7401419954: Indian\n", + "7401419686: Looking for my friend Steve\n", + "7401274016: Young guy at shop rite\n", + "7401206149: Colombian \"Mandy\" who knows a Jim\n", + "7401241404: We shared a table in Dunkin Donuts Yesterday afternoon\n", + "7401235567: latino cub here - saw you watching me on the subway\n", + "7401170527: My Special Friend in Westchester\n", + "7401155783: Katherine\n", + "7401149807: Musician Needed Paid Rehearsals\n", + "7401109325: 34th st downtown A, C, E Friday10/29\n", + "7401091920: Hey Sweetness…\n", + "7399634911: Transwoman on J train\n", + "7401082622: Riding Bike along green Belt\n", + "7401083515: R train eye contact today with pretty woman\n", + "7401073080: dear [redacted]\n", + "7401070587: Mariell from when we went to Middle School\n", + "7401067299: Caramel skin Asian woman with a lovely smile\n", + "7401025838: Looking for Serena\n", + "7400953435: Brown hair woman\n", + "7399490550: Tapas Wine Bar\n", + "7399947391: Beautiful Asian Woman Outside Whole Foods Union Square\n", + "7397929811: Running Hudson River Greenway\n", + "7400948317: Salsa Dancing Partner……\n", + "7397852459: An Open Letter to the black guy that I played cards with in Brooklyn\n", + "7400926637: Hypnotist Who Was Retiring?\n", + "7400888265: F at Bed Bath and Beyond checking me out.....\n", + "7400900059: Sheep & Wool Festival, Sunday 10/16\n", + "7400843228: OLDER GUY LOOKING FOR THE YOUNGER MAN THAT USED TO VISIT ME\n", + "7400682068: Looking for female\n", + "7397883193: WF at Skyview Center Mall\n", + "7399298285: Jane from Clarkston St. ish?\n", + "7400609228: car service\n", + "7400602947: ISO Olga ( barmaid at Speakeasy in the 90’s)\n", + "7400488925: The girl I saw in Dunkin Donuts\n", + "7400238322: Henry is the name of your Dog.\n", + "7400197731: Plaid earrings on Q to Church Ave\n", + "7400183472: Looking for that female rolling partner\n", + "7400120996: M4W - Last Friday - West Side/Little Island\n", + "7400008465: Golden Touch carwash\n", + "7398582051: Lady I use to meet\n", + "7399853821: NYSC-Amazing Glutes\n", + "7399857556: Randi from UWS\n", + "7395255935: Girl with glasses at the gas station on Glenbrook\n", + "7399845039: Anyone Know What Happened To Alana?\n", + "7399817866: Cute Boy On Uptown C This Morning\n", + "7399783108: Danielle, 24 - from Kingsborough Community College\n", + "7399767919: Asian woman in Flushing\n", + "7399701098: Black guy I used to meet in Yonkers\n", + "7399666847: Black girl at FiDi DMV with Greenlight tote\n", + "7399664820: You were wearing a Dinosaur Jr shirt at the coffee shop on 2nd Ave\n", + "7399630706: We were buds - Javier\n", + "7399583647: Looking for Jane\n", + "7399603717: Met at Richards in Greenwich\n", + "7399573694: Mackenzie in the West Village Saturday (10/23) Night\n", + "7399558701: Franklin Pierce Women's Rugby shirt\n", + "7399547982: Cute Girls Driving 10/23/21 Rye Brook S Ridge St\n", + "7399420897: Sword fight\n", + "7399382168: Plummer\n", + "7399343361: Pretty gurl in New Dorp\n", + "7396570373: Late Night Swim 8/26/21 Rye Oakland Beach\n", + "7399265929: Italo Calvino & John Darnielle in a Hot Tub\n", + "7399271734: I'm the redhaired gal at Penn on 10/23, looking for tan jacket guy.\n", + "7399229447: Q Train - Canal St - Young cute female in sweats\n", + "7399204937: Guy at Home Depot\n", + "7399163709: Guy on Sunday night Manhattan bound NJTransit train\n", + "7399101311: Jury Duty\n", + "7399037136: Looking for “Monica”\n", + "7398877696: Beautiful Young Man at AJJ Concert\n", + "7398897730: Searching for my lost cookie…$200\n", + "7398792522: Green top afro with pumps on 6 train castle hill\n", + "7398675380: Lost two employees. Nico and Jewel\n", + "7398653442: cream colored top with sweatpants girl at Atlantic Ave. 2/3 train\n", + "7398610362: All Red from head to toe (except kicks)\n", + "7398547785: Ally drinking a Stella at Brooklyn Mirage 8/29/21\n", + "7398538639: Looking for blonde colombian woman I met 2 nights ago\n", + "7396375956: dog walking partner at vanny\n", + "7393955753: Weeky Lunch with my Latina Princess\n", + "done\n" + ] + } + ], + "source": [ + "gather_data(\"newyork\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f9d33ae9-ea9d-41a9-ac49-18c45f1e96c2", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# gather_data(\"montreal\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c0bb6abe-a7c3-45e6-b068-36c30f16f702", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "#for result in chicago.get_results(sort_by='newest', geotagged=True):\n", + "# print(result)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c6790bae-58e3-4163-9a6b-98c93909c9a1", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "\n", + "def split_sentences_from_file(filename):\n", + " posts = []\n", + " for i, line in enumerate(open(filename)):\n", + " post = json.loads(line)\n", + " posts.append(post)\n", + " splitSentences(posts)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "070983ba-e721-4541-a96f-dbb42cb8e13b", + "metadata": {}, + "outputs": [], + "source": [ + "raw = \"\"\"{\"id\": \"7392485908\", \"repost_of\": null, \"name\": \"Homme pour femme ou couple\", \"url\": \"https://montreal.craigslist.org/mis/d/rivire-des-prairies-southwest-homme/7392485908.html\", \"datetime\": \"2021-10-11 08:04\", \"last_updated\": \"2021-10-11 08:04\", \"price\": null, \"where\": \"Montr\\u00e9al-Est \", \"has_image\": false, \"geotag\": null, \"deleted\": false, \"body\": \"Homme 48 ans cute. Je cherche femme ou couple...je vais chez toi, tu fais tes occupations nue ou en petite tenue.....je m'amuse en te regardant ...ensuite je reparts sans blabla.\", \"images\": [], \"attrs\": [], \"city\": \"montreal\"}\"\"\"" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a65edcc5-7cbb-46e3-ae46-cb7bf5b9c5a9", + "metadata": { + "collapsed": true, + "jupyter": { + "outputs_hidden": true + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\n", + " \"id\": \"7392495336\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Italian guy interested in a friend\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/larchmont-italian-guy-interested-in/7392495336.html\",\n", + " \"datetime\": \"2021-10-11 10:10\",\n", + " \"last_updated\": \"2021-10-11 10:10\",\n", + " \"price\": null,\n", + " \"where\": \"Memoraneck westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Would like to meet a female as friends and take it from there . I am completely drama free and not into games . If you are serious just say hi and let\\u2019s chat and get to know each other\",\n", + " \"created\": \"2021-10-11 08:35\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392507294\",\n", + " \"repost_of\": \"7384781924\",\n", + " \"name\": \"HVAC MAN\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/cortlandt-manor-hvac-man/7392507294.html\",\n", + " \"datetime\": \"2021-10-11 09:36\",\n", + " \"last_updated\": \"2021-10-11 09:36\",\n", + " \"price\": null,\n", + " \"where\": \"cortland manor mobil station westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you at the mobil station on rt 6 in cortland manor. you are an older bald man.Driving an HVAC truck. I think you are very handsome, bi white male here. Tell me the name on the door of your truck so i know its you.\",\n", + " \"created\": \"2021-10-11 09:08\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392497769\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Missing my friend\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/point-lookout-missing-my-friend/7392497769.html\",\n", + " \"datetime\": \"2021-10-11 09:15\",\n", + " \"last_updated\": \"2021-10-11 09:15\",\n", + " \"price\": null,\n", + " \"where\": \" queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I used to come over and we enjoy each others company. We had a great time in ur bed room and I miss it. Where are u? Hmu Jae/Raya?\",\n", + " \"created\": \"2021-10-11 08:43\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7387264097\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Beautiful brunette coming out of Whole Foods Columbus Circle\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/brooklyn-beautiful-brunette-coming-out/7387264097.html\",\n", + " \"datetime\": \"2021-10-11 08:56\",\n", + " \"last_updated\": \"2021-10-11 08:56\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I\\u2019m writing this in hopes of the gorgeous brunette I saw walking out of Whole Foods in Columbus Circle. I was the tall handsome white guy heading back to the office earlier today and I was wearing a black shirt and gray slacks. You had on very tight fitting black and white pants and a white top. I\\u2019m walking back to the office now and can\\u2019t get you out of my head as we made eye contact Passing each other. Every guy in the street was checking you out that\\u2019s how hot you are.\",\n", + " \"created\": \"2021-09-29 14:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"58th st near 8th ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392491391\",\n", + " \"repost_of\": null,\n", + " \"name\": \"OLDER GUY LOOKING FOR THE YOUNGER MAN THAT USED TO VISIT ME\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-older-guy-looking-for-the/7392491391.html\",\n", + " \"datetime\": \"2021-10-11 08:32\",\n", + " \"last_updated\": \"2021-10-11 08:32\",\n", + " \"price\": null,\n", + " \"where\": \"GRASMERE AREA / CLOVE RD & MOSEL AVE staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"THERE WAS SOMETHING SPECIAL ABOUT YOU. I ENJOYED YOUR VISITS. WHEN YOU RETURN PLEASE SEND ME YOUR RECENT PICTURE AND STATS SO I KNOW IT IS YOU.\",\n", + " \"created\": \"2021-10-11 08:21\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392462822\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Buddy Dresses up pretty for StrghtBuddy near Yankee Stadium\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-buddy-dresses-up-pretty-for/7392462822.html\",\n", + " \"datetime\": \"2021-10-11 05:52\",\n", + " \"last_updated\": \"2021-10-11 05:52\",\n", + " \"price\": null,\n", + " \"where\": \"161st Yankee Stadium- Supreme Court Area bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I am dscrte buddy that secrtly dresses like femle for area mannly strght guy. Im subb behind c-losed doors only. You sleep in the top bunk and i sleep in the Bttm Bunk (wink, wink) totally. You enjoy that Im one block from Yankee stadium and Bronx Supreme court. You area strght a-lpha only. DR, PR, Blk or Mixed strght only. Wknite n Wkends\",\n", + " \"created\": \"2021-10-11 04:27\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392456756\",\n", + " \"repost_of\": null,\n", + " \"name\": \"We practiced hypnosis\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-we-practiced-hypnosis/7392456756.html\",\n", + " \"datetime\": \"2021-10-11 04:04\",\n", + " \"last_updated\": \"2021-10-11 04:04\",\n", + " \"price\": null,\n", + " \"where\": \"Flatbush brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"About this time last year, we tried hypnosis together. As I recall, when it was all over, you were very relaxed and we both wanted to try it again.\\n\\nI\\u2019m back in town and would like to try again if you\\u2019re free\\u2026\",\n", + " \"created\": \"2021-10-11 02:52\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392456563\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Ilya I want to hear the rest of your south story\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-ilya-want-to-hear-the-rest-of/7392456563.html\",\n", + " \"datetime\": \"2021-10-11 03:01\",\n", + " \"last_updated\": \"2021-10-11 03:01\",\n", + " \"price\": null,\n", + " \"where\": \"Q train brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"hmu\",\n", + " \"created\": \"2021-10-11 02:49\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392447685\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Rainbow Bagel Store chat\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-rainbow-bagel-store-chat/7392447685.html\",\n", + " \"datetime\": \"2021-10-11 01:21\",\n", + " \"last_updated\": \"2021-10-11 01:21\",\n", + " \"price\": null,\n", + " \"where\": \"Park Slope brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I ran into you at the Bagel Store (home of the rainbow bagel tm) Sunday morning. We chatted about coffee spots and Noguchi-inspired playground design. I didn't even get your name. Hope you move to Brooklyn so I can run into you again!\",\n", + " \"created\": \"2021-10-11 01:17\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392435489\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Art school girl\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-art-school-girl/7392435489.html\",\n", + " \"datetime\": \"2021-10-11 00:10\",\n", + " \"last_updated\": \"2021-10-11 00:10\",\n", + " \"price\": null,\n", + " \"where\": \"Manhattan manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You said you were dropping out this semester and might head back home. I guess I\\u2019m curious if you decided to stay in the city after all. Maybe the timing is better now?\",\n", + " \"created\": \"2021-10-10 23:53\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392416992\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Guy in black jeans, in queens plaza N stop\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/long-island-city-guy-in-black-jeans-in/7392416992.html\",\n", + " \"datetime\": \"2021-10-10 22:36\",\n", + " \"last_updated\": \"2021-10-10 22:36\",\n", + " \"price\": null,\n", + " \"where\": \"West Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You sat next to me, on the N train, queens plaza stop. Our legs were touching each other, and I got hard in my jeans.\\nI was wearing a hat, and you exited on 8th St, NYU.\\nI would love to meet you.\",\n", + " \"created\": \"2021-10-10 22:22\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390555763\",\n", + " \"repost_of\": \"7366216681\",\n", + " \"name\": \"Irish gentleman seeking Asian Anthony from 83rd street\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-irish-gentleman-seeking-asian/7390555763.html\",\n", + " \"datetime\": \"2021-10-10 22:30\",\n", + " \"last_updated\": \"2021-10-10 22:30\",\n", + " \"price\": null,\n", + " \"where\": \"Upper West Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Good afternoon \\nIrish gentleman seeking Asian Anthony, we use to socialize on 83rd street by Amsterdamn ave and lost communication.,\\nDamien, 50\",\n", + " \"created\": \"2021-10-06 17:14\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"83 near Amsterdamn ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391574939\",\n", + " \"repost_of\": \"7381677457\",\n", + " \"name\": \"Running Hudson River Greenway\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-running-hudson-river-greenway/7391574939.html\",\n", + " \"datetime\": \"2021-10-10 22:30\",\n", + " \"last_updated\": \"2021-10-10 22:30\",\n", + " \"price\": null,\n", + " \"where\": \"SoHo\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Was walking along Greenway this weekend and was hard not to notice some guys who were so gifted below.\\n\\nTrying to meet an easy going St.rate guy that is kinda tired of complications that the often described fairer (s)_ex provides.\\n\\nNot looking for anyone looking to meet now, if you need now, please move on and order fast food. Looking to chat, get to know a bit and if interest handle needs that they aren't providing. Only looking for something potentially ongoing with just one g.uy.\\n\\nIf interest, reach out.\",\n", + " \"created\": \"2021-10-08 20:43\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392405518\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Cute crosswalk guy with mustache smiled at you\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-cute-crosswalk-guy-with/7392405518.html\",\n", + " \"datetime\": \"2021-10-10 21:55\",\n", + " \"last_updated\": \"2021-10-10 21:55\",\n", + " \"price\": null,\n", + " \"where\": \"Clinton Hill brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi. I passed you this evening in a crosswalk. You smiled. I smiled. \\n\\nLove, the girl with long blonde hair and too many bags who was too shy to turn around and get your number.\",\n", + " \"created\": \"2021-10-10 21:33\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392404289\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Baby Girl\\u2026\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-baby-girl/7392404289.html\",\n", + " \"datetime\": \"2021-10-10 21:33\",\n", + " \"last_updated\": \"2021-10-10 21:33\",\n", + " \"price\": null,\n", + " \"where\": \" brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Sit on my lap, play with my dreads while I suck your nipples and grab that ass. Attentive, attractive Black man here for you.\",\n", + " \"created\": \"2021-10-10 21:29\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392379499\",\n", + " \"repost_of\": null,\n", + " \"name\": \"school orchestra conductor looking for the ex-color guard on L train\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-school-orchestra-conductor/7392379499.html\",\n", + " \"datetime\": \"2021-10-10 20:08\",\n", + " \"last_updated\": \"2021-10-10 20:08\",\n", + " \"price\": null,\n", + " \"where\": \"bushwick brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"wish i got your number! it was sat oct 9 around 6:30pm. your friend the kindergarten teacher from new orleans asked\\u2014-\\u201chow does the train go under water?\\u201d\\u2014i had a vaccination stamp on my wrist that you mistook for a tattoo lol. you were funny :)\",\n", + " \"created\": \"2021-10-10 20:04\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392328256\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Comic Con\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-comic-con/7392328256.html\",\n", + " \"datetime\": \"2021-10-10 17:45\",\n", + " \"last_updated\": \"2021-10-10 17:45\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were trying a black hat and our eyes met. I gave a suggestion for a purple one but to be honest everything was looking good on you maybe it's you. Cliche I know lol\\nFor some reason we got disconnected people being around us.\\nHope miss connection help us here\",\n", + " \"created\": \"2021-10-10 17:41\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Javis center\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392306899\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Freaky friend\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-freaky-friend/7392306899.html\",\n", + " \"datetime\": \"2021-10-10 17:42\",\n", + " \"last_updated\": \"2021-10-10 17:42\",\n", + " \"price\": null,\n", + " \"where\": \"Staten Island staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Looking fir the female that answered my old ad. Black hair blue eyes big chest full lips. ( old ad was looking. For freaky female ) hit me up let get to talking and see where it goes I am a female myself\",\n", + " \"created\": \"2021-10-10 16:50\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392303337\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Riding Lime Scooter over Manhattan Bridge\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-riding-lime-scooter-over/7392303337.html\",\n", + " \"datetime\": \"2021-10-10 17:00\",\n", + " \"last_updated\": \"2021-10-10 17:00\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were riding your like scooter over the Manhattan bridge. We both got to the pedestrian pathway and you said you were nervous about riding over and I could go first.\\n\\nI remarked you were quite brave riding the scooter through red lights and over the bridge. We looked for the bike path but couldn\\u2019t find it, then we parted ways.\\n\\nEven though you were taking risks you still wore your helmet - smart. And I liked the blue dress you were wearing.\",\n", + " \"created\": \"2021-10-10 16:42\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392239379\",\n", + " \"repost_of\": null,\n", + " \"name\": \"DO YOU NEED A HJ\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-do-you-need-hj/7392239379.html\",\n", + " \"datetime\": \"2021-10-10 14:26\",\n", + " \"last_updated\": \"2021-10-10 14:26\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Do you need a HJ,I will give you one,I am 60 Italian MALE.\\nYou MUST host\",\n", + " \"created\": \"2021-10-10 14:22\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390406275\",\n", + " \"repost_of\": \"7089504551\",\n", + " \"name\": \"Searching for my female friend at South Shore Golf Course\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-searching-for-my-female/7390406275.html\",\n", + " \"datetime\": \"2021-10-10 13:17\",\n", + " \"last_updated\": \"2021-10-10 13:17\",\n", + " \"price\": null,\n", + " \"where\": \"Great Kills staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Look for my old female friend that used to meet me at the South Shore Parking Lot. What happened to you?\",\n", + " \"created\": \"2021-10-06 12:50\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7380525362\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Planet Fitness Fordham Rd\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-planet-fitness-fordham-rd/7380525362.html\",\n", + " \"datetime\": \"2021-10-10 13:07\",\n", + " \"last_updated\": \"2021-10-10 13:07\",\n", + " \"price\": null,\n", + " \"where\": \"Fordham Road, Bronx bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Muscular Guy got off the D train at Fordham Rd. Nice height and muscular body. You where carrying a gym bag. We made eye contact a couple of times. You had a few tattoos. Hit me up if this is you! Send pic with first email\",\n", + " \"created\": \"2021-09-15 05:03\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Fordham Rd near Grand Concourse\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392160845\",\n", + " \"repost_of\": \"7380971209\",\n", + " \"name\": \"Foodtown McDonald Avenue\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-foodtown-mcdonald-avenue/7392160845.html\",\n", + " \"datetime\": \"2021-10-10 12:29\",\n", + " \"last_updated\": \"2021-10-10 12:29\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We were inside by the freezer section and you had on a nice summer dress and I told you you forgot your sweater then we met at the other end of Foodtown at the daily section and I looked at you and said again and we both laughed when we were pulling out of the parking lot you took the time to roll down your window to tell me goodbye I should\\u2019ve asked you if you want to go have coffee or something Hope you see this post\\n\\ufffc\\ufffc\\ufffc\\ufffc\\ufffc\",\n", + " \"created\": \"2021-10-10 11:39\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"42st near 17ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392076085\",\n", + " \"repost_of\": null,\n", + " \"name\": \"TMPL Astor Place Saturday\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-tmpl-astor-place-saturday/7392076085.html\",\n", + " \"datetime\": \"2021-10-10 06:05\",\n", + " \"last_updated\": \"2021-10-10 06:05\",\n", + " \"price\": null,\n", + " \"where\": \"Union Square\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Exchanged looks a few times at TMPL, i was headed into the change room and saw you, then I headed out and you were behind. I waited at the chairs at the front and we smiled at eachother as you left\",\n", + " \"created\": \"2021-10-10 06:01\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392065298\",\n", + " \"repost_of\": \"7004360193\",\n", + " \"name\": \"I miss my regular female\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-miss-my-regular-female/7392065298.html\",\n", + " \"datetime\": \"2021-10-10 04:10\",\n", + " \"last_updated\": \"2021-10-10 04:10\",\n", + " \"price\": null,\n", + " \"where\": \"241st street bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"i\\u2019m looking for a female in need of attention and fun play\\nget back to me if interested...\\nm4f\\n\\n\\n\\nSix for six////seven tree zero////treeonezeronine\",\n", + " \"created\": \"2021-10-10 02:51\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392065207\",\n", + " \"repost_of\": \"7004360193\",\n", + " \"name\": \"I miss my regular female\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-miss-my-regular-female/7392065207.html\",\n", + " \"datetime\": \"2021-10-10 03:50\",\n", + " \"last_updated\": \"2021-10-10 03:50\",\n", + " \"price\": null,\n", + " \"where\": \"241st street bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"i\\u2019m looking for a female in need of attention and fun play\\nget back to me if interested...\\nm4f\\n\\n\\n\\nSix for six////seven tree zero////treeonezeronine\",\n", + " \"created\": \"2021-10-10 02:49\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392046963\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Picnic at the Park\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/tarrytown-picnic-at-the-park/7392046963.html\",\n", + " \"datetime\": \"2021-10-10 00:12\",\n", + " \"last_updated\": \"2021-10-10 00:12\",\n", + " \"price\": null,\n", + " \"where\": \"Tarrytown westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Love to have a picnic at the Park !! Tall euro male seeks lady to have Picnic in the Park n more ! Photo phone note let\\u2019s have a picnic on a nice autumn day\",\n", + " \"created\": \"2021-10-09 23:55\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392038842\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Bathroom Urinal\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-bathroom-urinal/7392038842.html\",\n", + " \"datetime\": \"2021-10-09 23:08\",\n", + " \"last_updated\": \"2021-10-09 23:08\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You watched me at the urinal and we talked outside, but I had to go\",\n", + " \"created\": \"2021-10-09 23:04\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7392023109\",\n", + " \"repost_of\": null,\n", + " \"name\": \"m4m 20 y/o on F Train\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-m4m-20-o-on-train/7392023109.html\",\n", + " \"datetime\": \"2021-10-09 21:52\",\n", + " \"last_updated\": \"2021-10-09 21:52\",\n", + " \"price\": null,\n", + " \"where\": \" brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you on the train keeping on adjusting yourself. lets talk\",\n", + " \"created\": \"2021-10-09 21:48\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391957584\",\n", + " \"repost_of\": \"7388212671\",\n", + " \"name\": \"Your Nickname Was Big Mama And We Met Here\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-your-nickname-was-big-mama-and-we/7391957584.html\",\n", + " \"datetime\": \"2021-10-09 19:12\",\n", + " \"last_updated\": \"2021-10-09 19:12\",\n", + " \"price\": null,\n", + " \"where\": \"Bronx bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Last year we were supposed to meet up right after July 4th but you had to be with your daughter. I lost my cell phone and have been searching all my e-mails for you but couldn't find you. I wasn't avoiding you I just couldn't afford a new cell phone it's embarrassing but the truth. \\n\\nStill thinking about you and the pictures we used to send to each other. Still thinking about you and that raspy voice. I'm the young boi with old soul\\n\\nIf it's really you tell me the addiction you had I wanted to share with you. \\n\\nxoxo \\n\\nN.\\n\\nPS - not interested in emails from males telling me your fetishes, I never asked buddy. I'm only looking for my missed connection\",\n", + " \"created\": \"2021-10-09 18:13\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391884849\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Cute guy at Peaky Barista\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-cute-guy-at-peaky-barista/7391884849.html\",\n", + " \"datetime\": \"2021-10-09 15:34\",\n", + " \"last_updated\": \"2021-10-09 15:34\",\n", + " \"price\": null,\n", + " \"where\": \"Upper West Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi! I saw you getting coffee at Peaky Barista this afternoon. I was working on my iPad at a table. We made eye contact a couple of times. You said hi as you were leaving but I totally froze! Before I could find my voice to say hi back, you were gone.\",\n", + " \"created\": \"2021-10-09 15:30\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391785614\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Ron Burgundy at the Jungle concert\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-ron-burgundy-at-the-jungle/7391785614.html\",\n", + " \"datetime\": \"2021-10-09 12:34\",\n", + " \"last_updated\": \"2021-10-09 12:34\",\n", + " \"price\": null,\n", + " \"where\": \"Bushwick brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Never done this before LOL. Ron Burgundy, your 'stache and hair were on point. I left the Jungle concert early with my friend but I think we had a vibe! Let's meet up so I can make fun of you more ;)\",\n", + " \"created\": \"2021-10-09 12:30\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391687399\",\n", + " \"repost_of\": null,\n", + " \"name\": \"you walked bye as i was singing in central park\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-you-walked-bye-as-was-singing/7391687399.html\",\n", + " \"datetime\": \"2021-10-09 09:16\",\n", + " \"last_updated\": \"2021-10-09 09:16\",\n", + " \"price\": null,\n", + " \"where\": \"Upper West Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I'm a street musician in central park . you walked bye smiled put a dollar in my guitar case and kept walking .\\n\\nI would like to meet you again . maybe have a coffee\",\n", + " \"created\": \"2021-10-09 09:12\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391625965\",\n", + " \"repost_of\": null,\n", + " \"name\": \"To the Girl on the 6 train\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-to-the-girl-on-the-train/7391625965.html\",\n", + " \"datetime\": \"2021-10-09 01:19\",\n", + " \"last_updated\": \"2021-10-09 01:19\",\n", + " \"price\": null,\n", + " \"where\": \"Downtown\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"The day was 10/7 at around 1pm...we were sitting right across from one another & you were wearing a blue Jean jacket & shorts with a white hat..we smiled at eachother but I think really connected with when the lady to your right began speaking to herself lmlz and you looked right at me and we laughed...I can't stand my nervousness to talk to someone I find attractive & I'm sad I miss this opportunity but if by chance you ever see this i'de love a chance to take you out sometime.\",\n", + " \"created\": \"2021-10-09 00:28\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7385306924\",\n", + " \"repost_of\": null,\n", + " \"name\": \"An Open Letter to the black guy that I played cards with in Brooklyn\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-an-open-letter-to-the-black/7385306924.html\",\n", + " \"datetime\": \"2021-10-08 22:19\",\n", + " \"last_updated\": \"2021-10-08 22:19\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Dear Slim Black guy:\\nMy name is Mariah, and I was the slim Afro-Cuban TSgirl you played strip poker with a few years ago...Do you remember? We laughed alot, had a few cocktails, and deep times. I'm back and I hope you find me. You are slim, black, low cut ceasar, fit. Find me. I miss you. Leave a photo in my email so I know it's you\",\n", + " \"created\": \"2021-09-25 10:37\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391573081\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Brown eyed gal\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-brown-eyed-gal/7391573081.html\",\n", + " \"datetime\": \"2021-10-08 20:54\",\n", + " \"last_updated\": \"2021-10-08 20:54\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"So I was walking along one day when everyone was wearing masks. A women with the most beautiful brown eyes locked with mine. I was the tall guy with blue eyes. We locked eyes and it seemed like time stopped while we slow motion walked past each other. We both never broke eye contact. Felt like those eyes reached into my heart and grabbed a hole of my soul before you walking out of my life. Now I always look for those eyes. Like amber and the hazel mist left of a pile of fallen leaves in fall. The smell of Chanel number 3 wafted pass my nose with a hint of some amazing feminine shampoo conditioner aromatic sensation. I was so intrigued and naturally turned on that I couldn\\u2019t find the words to say hello. Think we crossed paths once again in the rain one day. And I swear I heard the girl on the phone say \\u201cI think I just saw the man of my dreams\\u201d. Wouldn\\u2019t that be something huh? If it\\u2019s meant to be it will be. I felt her energy many times after. Is this the game? The cat and mouse chase? At what point does the cat stop chasing this little brown eyed mouse?\",\n", + " \"created\": \"2021-10-08 20:38\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391558720\",\n", + " \"repost_of\": null,\n", + " \"name\": \"You gave me quite a glimpse on the E train\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-you-gave-me-quite-glimpse-on/7391558720.html\",\n", + " \"datetime\": \"2021-10-08 20:00\",\n", + " \"last_updated\": \"2021-10-08 20:00\",\n", + " \"price\": null,\n", + " \"where\": \"Chelsea\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were already on the train when I got on at Court Sq. I sat down to catch up on the news but soon realized that you were giving everyone on my bench quite a glimpse. When we both got off the train, I didn't want to get caught walking behind you, but I'd love to get a coffee or something. Let me know.\",\n", + " \"created\": \"2021-10-08 19:56\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"W 25th St near 8th Ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391539739\",\n", + " \"repost_of\": null,\n", + " \"name\": \"55 Water Street - Friday Afternoon - 10/08\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-55-water-street-friday/7391539739.html\",\n", + " \"datetime\": \"2021-10-08 19:10\",\n", + " \"last_updated\": \"2021-10-08 19:10\",\n", + " \"price\": null,\n", + " \"where\": \"Financial District\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi there - you were leaning against a column in front of the building this afternoon. I climbed the stairs, we made direct eye contact, you winked, as I was walking from the building, we both turned around and looked back at each other, twice!\\n\\nIf by chance you see this - feel free to reply, you are HOT!\\nThanks\",\n", + " \"created\": \"2021-10-08 19:06\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"55 Water Street near William Street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391441422\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Yoga pants...\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-yoga-pants/7391441422.html\",\n", + " \"datetime\": \"2021-10-08 15:46\",\n", + " \"last_updated\": \"2021-10-08 15:46\",\n", + " \"price\": null,\n", + " \"where\": \"Upper East Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"To all the beautiful women on the UES sporting yoga pants, especially those suffering with camel toe, I just want to say THANK YOU! Oh, and YUM! \\n\\nThat is all.\",\n", + " \"created\": \"2021-10-08 15:42\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391352842\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Biggest Woman at ComicCon\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-biggest-woman-at-comiccon/7391352842.html\",\n", + " \"datetime\": \"2021-10-08 14:13\",\n", + " \"last_updated\": \"2021-10-08 14:13\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Me: I kept trying to work up the courage to come talk to you. I got butterflies in my stomach! And I was really nervous. You probably didn\\u2019t even notice me. I walked right up next to you and almost said something, but you weren\\u2019t looking in my direction and then you turned and walked and I just was like ahhh can\\u2019t do it can\\u2019t do it, lol. Wish I had. \\n\\nYou: Not to be rude, but you were by far the biggest/fattest girl there today. By a mile. Brown hair. Pretty eyes! You weren\\u2019t wearing a costume. Seemed to be moving pretty quickly, like you were late or had somewhere to be? (Or didn\\u2019t wanna miss a panel?) I didn\\u2019t wanna chase you or be weird or anything\\u2026but I wish I had tried to say something at least!! \\n\\nJust naturally no \\u201csize-ism\\u201d. I like women of all sizes and shapes, and for some reason I have no upper limit. \\n\\nAnd you\\u2019re one of the biggest women I\\u2019ve ever felt drawn to (or seen) in my life. I wish I said something but I got so nervous! I don\\u2019t normally do this.\\n\\nIf anybody sees her again or knows her, please tell her to get in contact with me.\",\n", + " \"created\": \"2021-10-08 13:15\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"11th Ave near 36th street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391297466\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Dante Connection\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-dante-connection/7391297466.html\",\n", + " \"datetime\": \"2021-10-08 13:39\",\n", + " \"last_updated\": \"2021-10-08 13:39\",\n", + " \"price\": null,\n", + " \"where\": \"West Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you sitting with a friend at Dante. Great bar! You had dark brown hair, facial hair, and were wearing a black long sleeve button down with jeans. I think you were talking about how Italian was your favorite food (my favorite!). I was passing by with my roommates, brunette, wearing a red long sleeve shirt and a black skirt. I was eating a pizza from Joe\\u2019s. We made eye contact for a few seconds. Great smile!!\",\n", + " \"created\": \"2021-10-08 11:45\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391289956\",\n", + " \"repost_of\": null,\n", + " \"name\": \"You saw me all dressed up\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-you-saw-me-all-dressed-up/7391289956.html\",\n", + " \"datetime\": \"2021-10-08 12:11\",\n", + " \"last_updated\": \"2021-10-08 12:11\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You saw me all dressed up with no place to go.. You said you have a place.. should have accepted the your offer then.. I have plenty of clothes for your own fashion show..is offer still open? Message me, Rachel\",\n", + " \"created\": \"2021-10-08 11:32\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Hudson st near King st\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391268337\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Sep. 5th Jet Blue Flight from San Diego to NY/JFK\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/brooklyn-sep-5th-jet-blue-flight-from/7391268337.html\",\n", + " \"datetime\": \"2021-10-08 10:59\",\n", + " \"last_updated\": \"2021-10-08 10:59\",\n", + " \"price\": null,\n", + " \"where\": \"JFK Airport queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We sat next to each other and chatted a bit during the flight; you had the window seat. Artist, very dark hair, reading the New Yorker and drawing --somewhat 60s-influenced -- a la Pfeiffer/Steadman and etc. \\n\\nI think we both may have wanted to say more-- on the flight and after at Baggage Claim, but hesitated due to our wedding rings--yours on your right hand, mine on my left. \\n\\nI'm a widow; it occurred to me only later that you may be as well, and still wearing your ring for the same reason. If my guess is correct, we were both unimaginably lucky in love; if the magic happened once it might just happen again, no? \\n\\nOnly one way to find out.....\",\n", + " \"created\": \"2021-10-08 10:55\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391221875\",\n", + " \"repost_of\": \"7379621020\",\n", + " \"name\": \"You said you loved chocolate\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-you-said-you-loved-chocolate/7391221875.html\",\n", + " \"datetime\": \"2021-10-08 10:03\",\n", + " \"last_updated\": \"2021-10-08 10:03\",\n", + " \"price\": null,\n", + " \"where\": \"Bushwick brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were short with nice hips and amazing lips I loved your smile as you looked at my grey sweats \\u2026yes it\\u2019s real. Cute Black guy from the corner store\\u2026.would love to see more of you.\",\n", + " \"created\": \"2021-10-08 09:20\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Cooper Street near Evergreen Ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391092913\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Whole Foods Columbus circle\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-whole-foods-columbus-circle/7391092913.html\",\n", + " \"datetime\": \"2021-10-07 20:28\",\n", + " \"last_updated\": \"2021-10-07 20:28\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We had a moment at Whole Foods this afternoon..\",\n", + " \"created\": \"2021-10-07 20:24\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391069306\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Today at Buffalo Exchange\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-today-at-buffalo-exchange/7391069306.html\",\n", + " \"datetime\": \"2021-10-07 20:20\",\n", + " \"last_updated\": \"2021-10-07 20:20\",\n", + " \"price\": null,\n", + " \"where\": \"Chelsea\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hey we made eye contact earlier today (10/7 around 5:30pm) at Buffalo Exchange in Chelsea. You were ahead of me selling your clothes. Later you sheepishly apologized for blocking the counter.\\n\\nYou: M, oversized shirt but fit you just right. Short dark hair. I think you were trying to sell a Knick's jacket.\\nMe: M, blue denim jacket, black shirt/pants. Short curly dark hair.\",\n", + " \"created\": \"2021-10-07 19:18\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"114 near W 26th\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7381415300\",\n", + " \"repost_of\": \"7270431866\",\n", + " \"name\": \"WF at Skyview Center Mall\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/flushing-wf-at-skyview-center-mall/7381415300.html\",\n", + " \"datetime\": \"2021-10-07 19:35\",\n", + " \"last_updated\": \"2021-10-07 19:35\",\n", + " \"price\": null,\n", + " \"where\": \"Flushing queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Saw you at Skyview Center Mall. You\\u2019re a slender and fit white female and we locked eyes as we walked past each other. Let\\u2019s meet for fun times. HMU, we can hang out nearby.\",\n", + " \"created\": \"2021-09-16 21:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7391066710\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Green StumpJumper\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-green-stumpjumper/7391066710.html\",\n", + " \"datetime\": \"2021-10-07 19:15\",\n", + " \"last_updated\": \"2021-10-07 19:15\",\n", + " \"price\": null,\n", + " \"where\": \" brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you on your green StumpJumper conversion with metal fenders in the circle at Prospect Park SW yesterday. There was a guy playing reggae music. Cool bike, let's make out.\",\n", + " \"created\": \"2021-10-07 19:11\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390894108\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Lubavitcher\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-lubavitcher/7390894108.html\",\n", + " \"datetime\": \"2021-10-07 14:55\",\n", + " \"last_updated\": \"2021-10-07 14:55\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Judah you stopped coming over to collect for the food fund and youth program and haven\\u2019t seen you since COVID. If your are still doing the collection keep me posted .\",\n", + " \"created\": \"2021-10-07 13:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390924374\",\n", + " \"repost_of\": null,\n", + " \"name\": \"looking for woman that can host lunch\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-looking-for-woman-that-can-host/7390924374.html\",\n", + " \"datetime\": \"2021-10-07 14:22\",\n", + " \"last_updated\": \"2021-10-07 14:22\",\n", + " \"price\": null,\n", + " \"where\": \"bronx bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi, .. Im looking for a woman that can hosts lunch once a week for us. Of course, I am willing to compensate for the lunch. Middleaged guy that had this pre-pandemic and hoping to reestablish my ritual.\",\n", + " \"created\": \"2021-10-07 14:18\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390710989\",\n", + " \"repost_of\": null,\n", + " \"name\": \"You\\u2026\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-you/7390710989.html\",\n", + " \"datetime\": \"2021-10-07 03:30\",\n", + " \"last_updated\": \"2021-10-07 03:30\",\n", + " \"price\": null,\n", + " \"where\": \"Upper East Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Are an older woman late 40\\u2019s. Tall slim and ethnic. You had long dark beautiful hair. We quickly smiled at each other.\\n\\nMe\\u2026 tall slim Latin with salt and pepper hair. With a great smile.\\n\\nI hope to see you again.\",\n", + " \"created\": \"2021-10-07 03:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"96th near First ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390683760\",\n", + " \"repost_of\": null,\n", + " \"name\": \"saw you at nyff unclenching the fists screening 66th street subway\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-saw-you-at-nyff-unclenching/7390683760.html\",\n", + " \"datetime\": \"2021-10-07 00:18\",\n", + " \"last_updated\": \"2021-10-07 00:18\",\n", + " \"price\": null,\n", + " \"where\": \"Upper West Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"met you on the 66th street subway platform after the unclenching the fists screening at the nyff. we talked about the films we'd seen, freelancing, living in germany, etc. i was in a plaid blazer with my friend. you were 6'5\\\" probably with brown hair and gorgeous dark eyes. we had to get off at the 72nd street stop and i kicked myself for not getting your number.\",\n", + " \"created\": \"2021-10-06 23:34\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"70 Lincoln Center Plaza #4\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390681207\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Guy with the tiger tattoo\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-guy-with-the-tiger-tattoo/7390681207.html\",\n", + " \"datetime\": \"2021-10-06 23:24\",\n", + " \"last_updated\": \"2021-10-06 23:24\",\n", + " \"price\": null,\n", + " \"where\": \"Crown Heights brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We chatted for a minute while we were picking up slices. You humored me and took off your shirt to show me your tattoo. Would love to see more of you! \\n\\nEmail me a pic so I know it\\u2019s you.\",\n", + " \"created\": \"2021-10-06 23:20\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390675323\",\n", + " \"repost_of\": null,\n", + " \"name\": \"this makes me think of you and then ache for you\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-this-makes-me-think-of-you-and/7390675323.html\",\n", + " \"datetime\": \"2021-10-06 23:04\",\n", + " \"last_updated\": \"2021-10-06 23:04\",\n", + " \"price\": null,\n", + " \"where\": \"New York manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"\\u201cCome back now, even if you call me out\\nYou might be angry now, of course you are\\nI'm scared to, didn't mean to take it out on you\\nI know I always do, you're the strongest person in the room\\nTurn back time, help me to rewind and we can\\nFind ourselves again\\nIt's not too late\\nEither way, I lose you in these silent days\\nIt wasn't right\\nBut it was right on time\\nDon't look down, I can feel it when your heart starts pounding\\nIt's beyond your control, you know it is\\nIt's getting to the point where I can't carry on\\nI never held my breath for quite this long\\nAnd I don't take it back, I did what I had to do\\nIt's not too late\\nEither way, I lose you in these silent days\\nIt wasn't right\\nBut it was right on time\\nIt's not too late\\nEither way, I lose you in these silent days\\nIt wasn't right\\nBut it was right on time\\u201d\",\n", + " \"created\": \"2021-10-06 22:53\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390666459\",\n", + " \"repost_of\": null,\n", + " \"name\": \"to the Latina with blue eyes in Ridgewood\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/brooklyn-to-the-latina-with-blue-eyes/7390666459.html\",\n", + " \"datetime\": \"2021-10-06 22:19\",\n", + " \"last_updated\": \"2021-10-06 22:19\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"you were crossing the street \\u201cGrove st & Onderdonk ave\\u201d at around 6PM on Wedensday October 6th\\u201d with someone that was the reason i didn\\u2019t stop to talk to you, i regret that, i felt we had a moment you have beautiful eyes matching your sweatshirt, i was the one who was riding we look at each others twice and i couldn\\u2019t take my eyes of you.\\nif you see this send me a message, i\\u2019d love that.\\nhope this one works\",\n", + " \"created\": \"2021-10-06 22:15\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Grove st near Onederdonk ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390576690\",\n", + " \"repost_of\": \"7379461199\",\n", + " \"name\": \"Shirtless guy with a dog at Astoria Park\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/astoria-shirtless-guy-with-dog-at/7390576690.html\",\n", + " \"datetime\": \"2021-10-06 18:03\",\n", + " \"last_updated\": \"2021-10-06 18:03\",\n", + " \"price\": null,\n", + " \"where\": \"Astoria queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you this morning sitting on a bench with a dog in Astoria Park . You were wearing black gym shorts and sitting on one of the benches near the track , I would like to get to know you better .\",\n", + " \"created\": \"2021-10-06 17:59\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390444021\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Brunette in All Blue at Subway\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-brunette-in-all-blue-at-subway/7390444021.html\",\n", + " \"datetime\": \"2021-10-06 15:01\",\n", + " \"last_updated\": \"2021-10-06 15:01\",\n", + " \"price\": null,\n", + " \"where\": \"Worth Street manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I was a few people behind you in line at Subway on Worth Street earlier. You were wearing all blue - blue jeans, a blue tshirt, and a blue backpack. We made eye contact a few times. Even though you were masked up, I could tell you were incredibly cute. Just wanted you to know that.\",\n", + " \"created\": \"2021-10-06 13:52\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390414131\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Beautiful girl in gym\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-beautiful-girl-in-gym/7390414131.html\",\n", + " \"datetime\": \"2021-10-06 13:07\",\n", + " \"last_updated\": \"2021-10-06 13:07\",\n", + " \"price\": null,\n", + " \"where\": \"New Dorp staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I\\u2019m sorry for staring , I know it seemed creepy but you are just way too cute .\",\n", + " \"created\": \"2021-10-06 13:03\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Hylan blvd\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390170280\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Walgreens Got shot #1\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-walgreens-got-shot/7390170280.html\",\n", + " \"datetime\": \"2021-10-05 21:01\",\n", + " \"last_updated\": \"2021-10-05 21:01\",\n", + " \"price\": null,\n", + " \"where\": \"Tottenville staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We were getting our Covid shots, your first one, we chatted briefly but I had to run, I regret that now. I guessed your job, tell me what you do to confirm. Any interest in hooking up? I am a male, you are a female. This way the male perverts calm down.\",\n", + " \"created\": \"2021-10-05 20:57\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"amboy road near page avenue\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7387094431\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Baseball game you deGrom jersey\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/corona-baseball-game-you-degrom-jersey/7387094431.html\",\n", + " \"datetime\": \"2021-10-05 20:34\",\n", + " \"last_updated\": \"2021-10-05 20:34\",\n", + " \"price\": null,\n", + " \"where\": \" queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi you tall with a deGrom jersey on we both look each other and I looked at you down there you wink but lot people on The 7 train hmu if you out there\",\n", + " \"created\": \"2021-09-29 09:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390108296\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Leopard Tattoo on M Train\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-leopard-tattoo-on-train/7390108296.html\",\n", + " \"datetime\": \"2021-10-05 18:21\",\n", + " \"last_updated\": \"2021-10-05 18:21\",\n", + " \"price\": null,\n", + " \"where\": \"New York manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I asked if it was a leopard or jaguar right before my stop, just a few minutes ago. You were wearing umber with black jeans and had lovely eyelashes. If this works, please include a specific detail in your reply so I know it\\u2019s not spam.\",\n", + " \"created\": \"2021-10-05 18:17\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7390094523\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Delancey/Essex Brunette\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-delancey-essex-brunette/7390094523.html\",\n", + " \"datetime\": \"2021-10-05 17:51\",\n", + " \"last_updated\": \"2021-10-05 17:51\",\n", + " \"price\": null,\n", + " \"where\": \"Lower East Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We saw each other (I think/hope) near Delancey and Essex a few days ago. You were wearing black, longer hair, white. I\\u2019m tall also wearing black.\\n\\nDoes anyone use this anymore? Universe do your thing\",\n", + " \"created\": \"2021-10-05 17:47\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Delancey near Essex\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389949620\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Reggae Makossa Woman\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-reggae-makossa-woman/7389949620.html\",\n", + " \"datetime\": \"2021-10-05 13:28\",\n", + " \"last_updated\": \"2021-10-05 13:28\",\n", + " \"price\": null,\n", + " \"where\": \"Upper West Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Amsterdam Ale House last Friday around 12:30 AM. We danced. I can't stop thinking about you.\",\n", + " \"created\": \"2021-10-05 13:24\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Amsterdam Ave near 76th\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389795862\",\n", + " \"repost_of\": null,\n", + " \"name\": \"F Train At East Broadway\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-train-at-east-broadway/7389795862.html\",\n", + " \"datetime\": \"2021-10-05 08:30\",\n", + " \"last_updated\": \"2021-10-05 08:30\",\n", + " \"price\": null,\n", + " \"where\": \"Lower East Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were standing in front of me on the F train this morning, then sat next to me when a seat opened up. We both got off at East Broadway. \\n\\nI was doing the crossword, you had an iced coffee and a black fanny pack.\\n\\nWant to meet and grab a drink?\",\n", + " \"created\": \"2021-10-05 08:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389660066\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Future BFF met at Don Tolliver show\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-future-bff-met-at-don-tolliver/7389660066.html\",\n", + " \"datetime\": \"2021-10-04 19:52\",\n", + " \"last_updated\": \"2021-10-04 19:52\",\n", + " \"price\": null,\n", + " \"where\": \"Bed-Stuy brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi there Mariah! It\\u2019s your future BFF & concert buddy! We met at the Don Tolliver show and wanted to hang out but we got separated by the subway system before we could exchange numbers :( you were badass and I would love to hang out again soon!\",\n", + " \"created\": \"2021-10-04 19:29\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389589728\",\n", + " \"repost_of\": null,\n", + " \"name\": \"The beautiful lady near the Home Depot\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/yonkers-the-beautiful-lady-near-the/7389589728.html\",\n", + " \"datetime\": \"2021-10-04 17:34\",\n", + " \"last_updated\": \"2021-10-04 17:34\",\n", + " \"price\": null,\n", + " \"where\": \"Yonkers westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We bumped into each other near the Home Depot in Yonkers.\\n\\nYou were in a blue Toyota sedan and I in was in a Bentley.\\n\\nYou are petite, beautiful brown eyes, honey complexion, with an infectious smile.\\n\\nI want to know you. \\n\\nLet me take you to dinner.\",\n", + " \"created\": \"2021-10-04 17:06\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"601 sprain rd\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389588294\",\n", + " \"repost_of\": \"7250946153\",\n", + " \"name\": \"Miss G\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/yonkers-miss/7389588294.html\",\n", + " \"datetime\": \"2021-10-04 17:28\",\n", + " \"last_updated\": \"2021-10-04 17:28\",\n", + " \"price\": null,\n", + " \"where\": \"Yonkers westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Miss G,\\n\\nI wonder if you will see this.\\n\\nI think about you often.\\n\\nWe were acquaintances who would randomly and intermittently speak when bumping into each other.\\n\\nI miss our conversations. I could talk to you for hours. \\n\\nYou are such an open, honest, and transparent woman. \\n\\nI really respect and admire the woman you are. \\n\\nI hope all is well with you and your life. And I hope that the universe lets this message find you.\",\n", + " \"created\": \"2021-10-04 17:03\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Nepperhan Avenue\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389557642\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Cute guy at Civic Deli\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-cute-guy-at-civic-deli/7389557642.html\",\n", + " \"datetime\": \"2021-10-04 16:16\",\n", + " \"last_updated\": \"2021-10-04 16:16\",\n", + " \"price\": null,\n", + " \"where\": \"TriBeCa\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"There was a guy around 11ish today by the fridge at Civic Deli on Worth St. He was restocking drinks. You and I were trying to grab a drink but he was in our way. We looked at each other and laughed. You were wearing a suit and bought a water and snack bar. I really want to find you again and was about to ask for your name! \\n\\nLong shot but if it\\u2019s you, let me know what I was wearing and how I looked. I\\u2019d love to meet you.\",\n", + " \"created\": \"2021-10-04 16:12\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389539492\",\n", + " \"repost_of\": \"7378704433\",\n", + " \"name\": \"Ally drinking a Stella at Brooklyn Mirage 8/29/21\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-ally-drinking-stella-at/7389539492.html\",\n", + " \"datetime\": \"2021-10-04 16:01\",\n", + " \"last_updated\": \"2021-10-04 16:01\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"It was my first rave and you\\u2019ve made it my most memorable in years. S/o to your 2 gf who were raving the first time as well. I remembered you offered your ig but I didn\\u2019t take it down, even went to Ezoo hoping to see you again bc you said I should go and you were going but no luck seeing ya! I wore blue button up shirt and have a right arm sleeve tattoo.\",\n", + " \"created\": \"2021-10-04 15:43\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"The kings hall\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389459387\",\n", + " \"repost_of\": null,\n", + " \"name\": \"NYSC- Great A$$ets\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/hawthorne-nysc-great-aets/7389459387.html\",\n", + " \"datetime\": \"2021-10-04 13:45\",\n", + " \"last_updated\": \"2021-10-04 13:45\",\n", + " \"price\": null,\n", + " \"where\": \"Hawthorne westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You're there in the early mornings. Brown hair, firm body, very attractive. I think you know I have an appreciation for your AMAZING glutes. Tell me what I look like.....\",\n", + " \"created\": \"2021-10-04 13:41\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7389351208\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Gorgeous Trans girl, lost your contact info\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-gorgeous-trans-girl-lost-your/7389351208.html\",\n", + " \"datetime\": \"2021-10-04 12:45\",\n", + " \"last_updated\": \"2021-10-04 12:45\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi there. You are a gorgeous brunette trans girl. We connected online and met a few weeks ago at a hotel in Midtown West and had a great time. It felt like we really connected mentally and physically. I am goodlooking fit professional white guy in my early 40\\u2019s and you\\u2019re in your late 20\\u2019s. We are a great match and I\\u2019d love to keep it going but lost your contact information. If this rings a bell, please reach out so we can re-connect.\",\n", + " \"created\": \"2021-10-04 10:57\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"52 near 7\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401675104\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Danielle, 24 - Amazon Drop Shipping\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-danielle-24-amazon-drop/7401675104.html\",\n", + " \"datetime\": \"2021-10-31 13:34\",\n", + " \"last_updated\": \"2021-10-31 13:34\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We were messaging each other online all night.\\n\\nWe shared a lot about each other, you told me that you were a waitress/hostess at a restaurant, how that industry was hurting, that you were looking into something more, amazon drop shipping, other means of income.\\n\\nI think we really connected, spoke about writing, nature, ambitions and other personal stuff.\\n\\nYour ambition peaked my interests and I think you have a good head on your shoulders as well as a good heart/spirit.\\n\\nI told you about the house in Bayshore and the opportunity to work with beauty supplies and to learn marketing.\\n\\nI'd really like to meet up with you, go on a bike ride as we discussed.\\n\\nI'm interested in helping you out and have you learn some valuable skills to progress in life.\\n\\nIf anyone knows this person please share this with her, it would be immensely appreciated.\\n\\nThank you.\",\n", + " \"created\": \"2021-10-31 13:12\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401664687\",\n", + " \"repost_of\": null,\n", + " \"name\": \"7 train yesterday 11 am\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/corona-train-yesterday-11-am/7401664687.html\",\n", + " \"datetime\": \"2021-10-31 13:24\",\n", + " \"last_updated\": \"2021-10-31 13:24\",\n", + " \"price\": null,\n", + " \"where\": \" queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I got on in Corona Plaza\\nI sat across from you\\nYou were in two seater at end of car.\\n\\nYou had black jacket, black sweat pants.\\nyou wore no mask and had tightly shaved beard.\\nYou are light skinned latin or white man.\\n\\nI'm latin hombre interested in meeting, handling things for you.\\n\\nYou got off at 5th Ave 42nd St\",\n", + " \"created\": \"2021-10-31 12:49\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401631397\",\n", + " \"repost_of\": \"7392962455\",\n", + " \"name\": \"New Canaan, Brick House\",\n", + " \"url\": \"https://newyork.craigslist.org/fct/mis/d/new-canaan-new-canaan-brick-house/7401631397.html\",\n", + " \"datetime\": \"2021-10-31 13:23\",\n", + " \"last_updated\": \"2021-10-31 13:23\",\n", + " \"price\": null,\n", + " \"where\": \"New Canaan fairfield co, CT \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You came for a short visit a few summers back , would like to do that again, reply back and tell me about our time together so I know it's you\",\n", + " \"created\": \"2021-10-31 11:32\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401664423\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Barbara at afraid of the dark last night\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-barbara-at-afraid-of-the-dark/7401664423.html\",\n", + " \"datetime\": \"2021-10-31 12:59\",\n", + " \"last_updated\": \"2021-10-31 12:59\",\n", + " \"price\": null,\n", + " \"where\": \"East Williamsburg brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hey! You and your friend came up to me ('T') and said you liked my wig ( you didn't know if it was real or not :D). We ended up having a great conversation about Marie Curie, Freddie Mercury, and other topics- and we connected on what seemed a really real level. We had run into each other later that night and were going to talk more, but I ended up leaving early.\\n\\nSo I know it's you, let me know the name of the country of the project you're working on at your firm.\\n\\nThanks!\",\n", + " \"created\": \"2021-10-31 12:48\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Meadow Street near Bogart Street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401660531\",\n", + " \"repost_of\": null,\n", + " \"name\": \"m4m young guy in the mall\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-m4m-young-guy-in-the-mall/7401660531.html\",\n", + " \"datetime\": \"2021-10-31 12:43\",\n", + " \"last_updated\": \"2021-10-31 12:43\",\n", + " \"price\": null,\n", + " \"where\": \" brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"you were around 19 y/o walking around the mall adjusting yourself. lets talk\",\n", + " \"created\": \"2021-10-31 12:39\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401635058\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Apple Store at Hanson Pl\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-apple-store-at-hanson-pl/7401635058.html\",\n", + " \"datetime\": \"2021-10-31 12:33\",\n", + " \"last_updated\": \"2021-10-31 12:33\",\n", + " \"price\": null,\n", + " \"where\": \"Greenwich Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"The Gym at Judson Memorial Church 243 Thompson St New York Public Library - Stephen A. Schwarzman Building (New York Public Library) New York Public Library - Stephen A. Schwarzman Building (New York Public Library) 476 5th Ave East Boat Seafood Restaurant 72 Kenmare St Leica Store SoHo 460 W Broadway\",\n", + " \"created\": \"2021-10-31 11:41\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401639685\",\n", + " \"repost_of\": \"7395836294\",\n", + " \"name\": \"Edge gym Sunday\",\n", + " \"url\": \"https://newyork.craigslist.org/fct/mis/d/southport-edge-gym-sunday/7401639685.html\",\n", + " \"datetime\": \"2021-10-31 11:56\",\n", + " \"last_updated\": \"2021-10-31 11:56\",\n", + " \"price\": null,\n", + " \"where\": \" fairfield co, CT \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Damn, looking good. I\\u2019ve seen you before. I can\\u2019t help but stare.\\n\\nWe should meet up.\",\n", + " \"created\": \"2021-10-31 11:52\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401611625\",\n", + " \"repost_of\": null,\n", + " \"name\": \"older male for younger F\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-older-male-for-younger/7401611625.html\",\n", + " \"datetime\": \"2021-10-31 10:48\",\n", + " \"last_updated\": \"2021-10-31 10:48\",\n", + " \"price\": null,\n", + " \"where\": \" bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We used to hang out and I would pick you up and we would go back to my place or just drive around.\",\n", + " \"created\": \"2021-10-31 10:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401551874\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Looking to stop by along the belt\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-looking-to-stop-by-along-the/7401551874.html\",\n", + " \"datetime\": \"2021-10-31 07:29\",\n", + " \"last_updated\": \"2021-10-31 07:29\",\n", + " \"price\": null,\n", + " \"where\": \"Verrazano to queens brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Traveling along the belt at 5am to queens and on the way home at 3:30 I\\u2019m a mar mal looking for mal for some safe fun\",\n", + " \"created\": \"2021-10-31 05:33\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401555082\",\n", + " \"repost_of\": null,\n", + " \"name\": \"We played cards Friday\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/astoria-we-played-cards-friday/7401555082.html\",\n", + " \"datetime\": \"2021-10-31 06:40\",\n", + " \"last_updated\": \"2021-10-31 06:40\",\n", + " \"price\": null,\n", + " \"where\": \"NYC Queens manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You had on a Steelers Jersey, I was the loud one. Reach out if your into guys, thanks\",\n", + " \"created\": \"2021-10-31 06:22\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401548122\",\n", + " \"repost_of\": \"7379621020\",\n", + " \"name\": \"You said you loved chocolate\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-you-said-you-loved-chocolate/7401548122.html\",\n", + " \"datetime\": \"2021-10-31 06:17\",\n", + " \"last_updated\": \"2021-10-31 06:17\",\n", + " \"price\": null,\n", + " \"where\": \"Bushwick brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were short with nice hips and amazing lips I loved your smile as you looked at my grey sweats \\u2026yes it\\u2019s real. Cute Black guy from the corner store\\u2026.would love to see more of you. Let\\u2019s enjoy this Halloween\",\n", + " \"created\": \"2021-10-31 04:24\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Cooper Street near Evergreen Ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401530057\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Q Train Prospect Park Smile 2:15pm Sat\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-train-prospect-park-smile/7401530057.html\",\n", + " \"datetime\": \"2021-10-31 00:47\",\n", + " \"last_updated\": \"2021-10-31 00:47\",\n", + " \"price\": null,\n", + " \"where\": \"Lefferts Garden brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Got on train next to you and we smiled a few times. Sad when left the train after just a few stops. You are handsome man with short dark hair. Yellow sweatshirt and black shorts. Would like to say hi.\",\n", + " \"created\": \"2021-10-31 00:34\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Lincoln road\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401531159\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Dude with cat ears at Judy & Punch Astoria\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/astoria-dude-with-cat-ears-at-judy/7401531159.html\",\n", + " \"datetime\": \"2021-10-31 00:47\",\n", + " \"last_updated\": \"2021-10-31 00:47\",\n", + " \"price\": null,\n", + " \"where\": \"Astoria queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were the cute dude with cat ears waiting on line for the bathroom. I was the red head that kept on running into you and had an entertaining convo with you (at least I think I did). Let\\u2019s connect.\",\n", + " \"created\": \"2021-10-31 00:43\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"30th Ave near 34th street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401510462\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Saw you on the A Train Friday night\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/woodside-saw-you-on-the-train-friday/7401510462.html\",\n", + " \"datetime\": \"2021-10-30 22:36\",\n", + " \"last_updated\": \"2021-10-30 22:36\",\n", + " \"price\": null,\n", + " \"where\": \"Battery Park\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"you were wearing a grey shirt, green eyes blond, angelic looks. We made eye contact; I believe you smiled, and I smiled back. If you see this, let's chat.\",\n", + " \"created\": \"2021-10-30 22:32\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"stone st near broadway\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401466486\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Eevee at CVS\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-eevee-at-cvs/7401466486.html\",\n", + " \"datetime\": \"2021-10-30 20:00\",\n", + " \"last_updated\": \"2021-10-30 20:00\",\n", + " \"price\": null,\n", + " \"where\": \"Manor Rd staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You made my day today. Made me smile a lot though my mask may have hidden it. Called me young man, which is a bit ironic. You were adorable and I wish I could have chatted with you more. If you see this, I\\u2019d love to hear from you :)\",\n", + " \"created\": \"2021-10-30 19:35\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401419954\",\n", + " \"repost_of\": \"7055486315\",\n", + " \"name\": \"Indian\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/flushing-indian/7401419954.html\",\n", + " \"datetime\": \"2021-10-30 19:30\",\n", + " \"last_updated\": \"2021-10-30 19:30\",\n", + " \"price\": null,\n", + " \"where\": \"queens queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You are a desi indian female and we connected here but lost touch. If you happen to be out there please get back to me. And yes I\\u2019m the desi guy\",\n", + " \"created\": \"2021-10-30 17:28\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401419686\",\n", + " \"repost_of\": \"7275179654\",\n", + " \"name\": \"Looking for my friend Steve\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/flushing-looking-for-my-friend-steve/7401419686.html\",\n", + " \"datetime\": \"2021-10-30 19:03\",\n", + " \"last_updated\": \"2021-10-30 19:03\",\n", + " \"price\": null,\n", + " \"where\": \" queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi Steve r u there? I'm the younger Indian guy and we connected here. If you are there message me.\",\n", + " \"created\": \"2021-10-30 17:28\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401274016\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Young guy at shop rite\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-young-guy-at-shop-rite/7401274016.html\",\n", + " \"datetime\": \"2021-10-30 14:10\",\n", + " \"last_updated\": \"2021-10-30 14:10\",\n", + " \"price\": null,\n", + " \"where\": \"si staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were parked next to me in the lot and we were talking for a bit. I was the older guy with blue SUV. Any interest\",\n", + " \"created\": \"2021-10-30 12:46\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401206149\",\n", + " \"repost_of\": \"7397224753\",\n", + " \"name\": \"Colombian \\\"Mandy\\\" who knows a Jim\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/fresh-meadows-colombian-mandy-who-knows/7401206149.html\",\n", + " \"datetime\": \"2021-10-30 12:23\",\n", + " \"last_updated\": \"2021-10-30 12:23\",\n", + " \"price\": null,\n", + " \"where\": \"Fresh Meadows queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi, We shared many lovely emails, but because you wrote me privately, you did not write my email down, and you did not save anywhere your own account's password, and so you forgot it a couple of times and spent time and effort trying to remember and enter it correctly so you could get into your account with my email address. I know it has happened again, and so we fell out of touch. If you read this, you'll recognize who you are and who I am. Write me, since I also worry that perhaps you got sick again from Covid or something worse happened to you and I worry. - Jim\\n\\nThis is from the last email I got from you: \\\"Noooooo. My beautiful James I\\u2019m so glad your back I was really worried that something may have happened to you i wrote you so many times and I was loosing hope to find you for a moment. I thought you were unable to write back ohhh I\\u2019m so happy you are ok. My dear it\\u2019s horrible to think you just vanished and I won\\u2019t be able to know if you were ok \\ud83d\\ude18\\ud83d\\ude18\\ud83d\\ude18\\\"\",\n", + " \"created\": \"2021-10-30 10:42\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401241404\",\n", + " \"repost_of\": \"7374578037\",\n", + " \"name\": \"We shared a table in Dunkin Donuts Yesterday afternoon\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-we-shared-table-in-dunkin/7401241404.html\",\n", + " \"datetime\": \"2021-10-30 12:11\",\n", + " \"last_updated\": \"2021-10-30 12:11\",\n", + " \"price\": null,\n", + " \"where\": \"Bay Ridge brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We are both 60+ white males we talked for over 1 hour, and you made me laugh,you seem to want to keep talking to me , and you ask if i wanted to hang out with you at your place, but i had to go. The truth is i was to shy, would love to talk to you agan if you see this tell me where the Dunkin Donuts was, looking for you to host only.\",\n", + " \"created\": \"2021-10-30 11:49\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401235567\",\n", + " \"repost_of\": null,\n", + " \"name\": \"latino cub here - saw you watching me on the subway\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-latino-cub-here-saw-you/7401235567.html\",\n", + " \"datetime\": \"2021-10-30 11:42\",\n", + " \"last_updated\": \"2021-10-30 11:42\",\n", + " \"price\": null,\n", + " \"where\": \" brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"me - five foot seven two fourty lbs latino 33\\nyou- good looking mid 30's-50's \\n\\nif this sounds like you I would love to connect!\",\n", + " \"created\": \"2021-10-30 11:38\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401170527\",\n", + " \"repost_of\": null,\n", + " \"name\": \"My Special Friend in Westchester\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/maryknoll-my-special-friend-in/7401170527.html\",\n", + " \"datetime\": \"2021-10-30 09:26\",\n", + " \"last_updated\": \"2021-10-30 09:26\",\n", + " \"price\": null,\n", + " \"where\": \"Westchester westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were a man in your late 50\\u2019s like me and we used to meet at your place where you\\u2019d teach me all kinds of new things. Miss those times and would like to reconnect.\",\n", + " \"created\": \"2021-10-30 09:17\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401155783\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Katherine\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-katherine/7401155783.html\",\n", + " \"datetime\": \"2021-10-30 09:26\",\n", + " \"last_updated\": \"2021-10-30 09:26\",\n", + " \"price\": null,\n", + " \"where\": \"Upper West Side\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"My beautiful Catherine with the dog Maisie, we spoke years ago I think about you often.\",\n", + " \"created\": \"2021-10-30 08:30\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Riverside Drive near 110 th Street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401149807\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Musician Needed Paid Rehearsals\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-musician-needed-paid-rehearsals/7401149807.html\",\n", + " \"datetime\": \"2021-10-30 08:08\",\n", + " \"last_updated\": \"2021-10-30 08:08\",\n", + " \"price\": null,\n", + " \"where\": \"Flatiron\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Newly formed tribute band needs professional keyboard player, bass guitarist and drummer for paid rehearsals and then paid gigs. If interested, respond with a bio and a link showing your playing live.\",\n", + " \"created\": \"2021-10-30 08:04\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401109325\",\n", + " \"repost_of\": null,\n", + " \"name\": \"34th st downtown A, C, E Friday10/29\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-34th-st-downtown-c-friday10-29/7401109325.html\",\n", + " \"datetime\": \"2021-10-30 01:06\",\n", + " \"last_updated\": \"2021-10-30 01:06\",\n", + " \"price\": null,\n", + " \"where\": \"New York manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I usually laugh at these posts bc I wonder why someone wouldn't just talk to someone that they found attractive but now I understand.\\n\\nI had just come out of a concert and was leaning up against the wall. You walked by and we made eye contact multiple times but I was sweaty and covered in beer people spilled so I didn't say hi. \\n\\nYour eyes were the most beautiful I've seen in NYC.\",\n", + " \"created\": \"2021-10-30 01:02\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401091920\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Hey Sweetness\\u2026\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-hey-sweetness/7401091920.html\",\n", + " \"datetime\": \"2021-10-29 23:18\",\n", + " \"last_updated\": \"2021-10-29 23:18\",\n", + " \"price\": null,\n", + " \"where\": \" bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Those dudes are in your DM\\u2019s\\u2026I\\u2019m trying to be cuddled up with you, licking your vaginal juices off my lips\\u2026\",\n", + " \"created\": \"2021-10-29 23:14\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399634911\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Transwoman on J train\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-transwoman-on-train/7399634911.html\",\n", + " \"datetime\": \"2021-10-29 23:17\",\n", + " \"last_updated\": \"2021-10-29 23:17\",\n", + " \"price\": null,\n", + " \"where\": \" brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We were on the Queens bound J train. I was trying to make eye contact with you. When we did, I nodded and smiled back. I saw you grin through your mask but nervously turned away. I openly date trans women so you\\u2019d be in very good hands. I\\u2019m Black, long dreads, very well built. Coffee\\u2026?\",\n", + " \"created\": \"2021-10-26 18:38\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401082622\",\n", + " \"repost_of\": \"7322428988\",\n", + " \"name\": \"Riding Bike along green Belt\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/staten-island-riding-bike-along-green/7401082622.html\",\n", + " \"datetime\": \"2021-10-29 22:40\",\n", + " \"last_updated\": \"2021-10-29 22:40\",\n", + " \"price\": null,\n", + " \"where\": \"staten island brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi ... Was riding bike in staten island and need some partner to ride with. I am older male. Do not ride very fast so any skill level ok would like to find female or male to chat with while we bike.\",\n", + " \"created\": \"2021-10-29 22:29\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"signs rd near victory\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401083515\",\n", + " \"repost_of\": null,\n", + " \"name\": \"R train eye contact today with pretty woman\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-train-eye-contact-today-with/7401083515.html\",\n", + " \"datetime\": \"2021-10-29 22:37\",\n", + " \"last_updated\": \"2021-10-29 22:37\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We were both standing in the R train and you were listening to music the whole time. I had the option to sit but I didn't and we continued to steal glances at each other. You got off first around prospect park avenue I guess. Reach out to me if you would like to talk\",\n", + " \"created\": \"2021-10-29 22:33\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"17th street near 4th avenue\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401073080\",\n", + " \"repost_of\": null,\n", + " \"name\": \"dear [redacted]\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-dear-redacted/7401073080.html\",\n", + " \"datetime\": \"2021-10-29 22:33\",\n", + " \"last_updated\": \"2021-10-29 22:33\",\n", + " \"price\": null,\n", + " \"where\": \"brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"hi [redacted]\\ni am thinking about u again \\njoy saturates my cheeks till they cherry \\nthe world is a skeleton buried under internet sand interwoven network connection environment-\\nall collapse past password protected storefront displays \\nyou collect springy bits and wirey tendons \\nrusty skin jagged teeth - and use them to speak \\nour mouths are shaped like eye sockets \\ni want to look at you \\ni want to see you \\ni want to eat you \\ni [redacted]\\n[redacted]\\n[redacted]\\ni chew chew chew like a hurried train\",\n", + " \"created\": \"2021-10-29 21:49\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"bedford near lexington\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401070587\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Mariell from when we went to Middle School\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-mariell-from-when-we-went-to/7401070587.html\",\n", + " \"datetime\": \"2021-10-29 22:04\",\n", + " \"last_updated\": \"2021-10-29 22:04\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hello I am looking for a former classmate from 2k1 to 2k4 we went to a middle school called Dual Language Middle School previously located on 92st near Central Park West. Her name is Mariell shes Colombian she was a thin girl she had a brother who went also at the school hes 1 year older than her. I already looked for her on social media and she seems not to have anything. I won't post the last name here. Its long shot i find her here. But its worth the try. If you are Mariell lets hook up and see what happens. If you know her you should know her last name.\\n\\nI can not put the full number of two thousand and one/four because it thinks its a phone number. Instead, I put 2k1.\",\n", + " \"created\": \"2021-10-29 21:39\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401067299\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Caramel skin Asian woman with a lovely smile\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-caramel-skin-asian-woman-with/7401067299.html\",\n", + " \"datetime\": \"2021-10-29 21:30\",\n", + " \"last_updated\": \"2021-10-29 21:30\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hey I was waiting outside for a client to train when you and your friend looked like you were going for a walk/ run out in Central Park . We checked each other out but we locked eyes as you looked back at me when you passed me by. You smiled at me when we locked eyes and I couldn\\u2019t get you out of my mind ever since. I\\u2019m writing this again in hopes to see you again .\",\n", + " \"created\": \"2021-10-29 21:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"59th street near 6th ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7401025838\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Looking for Serena\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-looking-for-serena/7401025838.html\",\n", + " \"datetime\": \"2021-10-29 19:22\",\n", + " \"last_updated\": \"2021-10-29 19:22\",\n", + " \"price\": null,\n", + " \"where\": \"Union Square\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi, I'm looking for Serena. You're in your 30s, work near Union Square and live in Flushing, Queens. We acquainted through Craigslist, texted and would meet in Union Square after your work. This was last year, around this time. My name's Zack. Reach out to me, please, let's talk. Thanks.\",\n", + " \"created\": \"2021-10-29 19:18\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400953435\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Brown hair woman\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/fresh-meadows-brown-hair-woman/7400953435.html\",\n", + " \"datetime\": \"2021-10-29 18:32\",\n", + " \"last_updated\": \"2021-10-29 18:32\",\n", + " \"price\": null,\n", + " \"where\": \"Flushing queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you walking out of the 7 11 store this past Saturday afternoon, as I was going in, you smile at me and I smile back, Can\\u2019t stop thinking of you now, wish I had done something then, I\\u2019m the white guy with semi long blond hair, wearing a Rangers hat, You are about 5\\u20192 looks in your mid 30,s, Im in my early 50s and hope you see this and would want to meet for coffee or something\",\n", + " \"created\": \"2021-10-29 16:36\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399490550\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Tapas Wine Bar\",\n", + " \"url\": \"https://newyork.craigslist.org/fct/mis/d/norwalk-tapas-wine-bar/7399490550.html\",\n", + " \"datetime\": \"2021-10-29 18:31\",\n", + " \"last_updated\": \"2021-10-29 18:31\",\n", + " \"price\": null,\n", + " \"where\": \"Norwalk fairfield co, CT \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"The weekend of October 9 at Paella's across from the Norwalk car dealer. You were sitting in the corner(street side) near the window with a male friend and we made eye contact when I walked in, then again several more times as I went out to me car. When you left you walked through the bar and glanced back at me sitting at the bar, or so I thought? You had a red top on with black heels, absolutely stunning! Hopefully you remember me, dirty blond hair/blue eyes? I was wearing Khaki's and long sleeve button down shirt.\\n\\nMaybe we could get together there for a drink, talk?\\n\\nMiss You!!\",\n", + " \"created\": \"2021-10-26 13:59\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399947391\",\n", + " \"repost_of\": \"7387264097\",\n", + " \"name\": \"Beautiful Asian Woman Outside Whole Foods Union Square\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-beautiful-asian-woman-outside/7399947391.html\",\n", + " \"datetime\": \"2021-10-29 18:19\",\n", + " \"last_updated\": \"2021-10-29 18:19\",\n", + " \"price\": null,\n", + " \"where\": \"Greenwich Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I\\u2019m writing this in hopes of the gorgeous Asian woman I saw walking out of Whole Foods in Union Square. I was the tall handsome white guy heading back to the office earlier today and I was wearing a black shirt and gray slacks. You had on very tight fitting black and white mini skirt high heels and a white top. I\\u2019m walking back to the office now and can\\u2019t get you out of my head as we made eye contact Passing each other. Every guy in the street was checking you out that\\u2019s how hot you are.\",\n", + " \"created\": \"2021-10-27 13:50\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"14th st near Broadway\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7397929811\",\n", + " \"repost_of\": \"7381677457\",\n", + " \"name\": \"Running Hudson River Greenway\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-running-hudson-river-greenway/7397929811.html\",\n", + " \"datetime\": \"2021-10-29 18:10\",\n", + " \"last_updated\": \"2021-10-29 18:10\",\n", + " \"price\": null,\n", + " \"where\": \"SoHo\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Was walking along Greenway this weekend and was hard not to notice some guys who were so gifted below.\\n\\nTrying to meet an easy going St.rate guy that is kinda tired of complications that the often described fairer (s)_ex provides.\\n\\nNot looking for anyone looking to meet now, if you need now, please move on and order fast food. Looking to chat, get to know a bit and if interest handle needs that they aren't providing. Only looking for something potentially ongoing with just one g.uy.\\n\\nIf interest, reach out.\",\n", + " \"created\": \"2021-10-22 22:11\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400948317\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Salsa Dancing Partner\\u2026\\u2026\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/new-york-salsa-dancing-partner/7400948317.html\",\n", + " \"datetime\": \"2021-10-29 17:30\",\n", + " \"last_updated\": \"2021-10-29 17:30\",\n", + " \"price\": null,\n", + " \"where\": \" queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Asian, Looking for female salsa dancer to practice with. I need to practice cross body turns. I can host. I need to practice new turns. I am fully vaccinated and tested negative.\",\n", + " \"created\": \"2021-10-29 16:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7397852459\",\n", + " \"repost_of\": \"7385306924\",\n", + " \"name\": \"An Open Letter to the black guy that I played cards with in Brooklyn\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-an-open-letter-to-the-black/7397852459.html\",\n", + " \"datetime\": \"2021-10-29 16:56\",\n", + " \"last_updated\": \"2021-10-29 16:56\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Dear Slim Black guy:\\nMy name is Mariah, and I was the slim Afro-Cuban TSgirl you played strip poker with a few years ago...Do you remember? We laughed alot, had a few cocktails, and deep times. I'm back and I hope you find me. You are slim, black, low cut ceasar, fit. Find me. I miss you. Leave a photo in my email so I know it's you\",\n", + " \"created\": \"2021-10-22 18:25\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400926637\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Hypnotist Who Was Retiring?\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-hypnotist-who-was-retiring/7400926637.html\",\n", + " \"datetime\": \"2021-10-29 16:03\",\n", + " \"last_updated\": \"2021-10-29 16:03\",\n", + " \"price\": null,\n", + " \"where\": \"Downtown\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Looking to connect with you again. You were well-versed and experienced with hypnosis and were offering to assist me. Then COVID happened and your email doesn't work anymore. If you're still out there and willing to help me, I'd love to hear from you.\",\n", + " \"created\": \"2021-10-29 15:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400888265\",\n", + " \"repost_of\": null,\n", + " \"name\": \"F at Bed Bath and Beyond checking me out.....\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/elmsford-at-bed-bath-and-beyond/7400888265.html\",\n", + " \"datetime\": \"2021-10-29 15:41\",\n", + " \"last_updated\": \"2021-10-29 15:41\",\n", + " \"price\": null,\n", + " \"where\": \"Elmsford westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We were both on line for the cashier. I caught you checking me out and you looked away. You probably didn't realize I was checking you out too before you saw me. Too bad you were wearing a mask, I would have liked to see your smile.\",\n", + " \"created\": \"2021-10-29 14:34\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400900059\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Sheep & Wool Festival, Sunday 10/16\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/rhinebeck-sheep-wool-festival-sunday-10/7400900059.html\",\n", + " \"datetime\": \"2021-10-29 15:00\",\n", + " \"last_updated\": \"2021-10-29 15:00\",\n", + " \"price\": null,\n", + " \"where\": \"Rhinebeck brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We smiled at each other a couple of times during the course of that day, after you made a funny noise when the wind snatched something from me. Tell me what flew off. You have a shaved head, a dangly earring, a denim trucker jacket, and kind eyes. I'd like another opportunity to say 'hello'.\",\n", + " \"created\": \"2021-10-29 14:56\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Dutchess Fairgrounds\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400843228\",\n", + " \"repost_of\": \"7392491391\",\n", + " \"name\": \"OLDER GUY LOOKING FOR THE YOUNGER MAN THAT USED TO VISIT ME\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-older-guy-looking-for-the/7400843228.html\",\n", + " \"datetime\": \"2021-10-29 13:28\",\n", + " \"last_updated\": \"2021-10-29 13:28\",\n", + " \"price\": null,\n", + " \"where\": \"GRASMERE AREA / CLOVE RD & MOSEL AVE staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"THERE WAS SOMETHING SPECIAL ABOUT YOU. I ENJOYED YOUR VISITS. WHEN YOU RETURN PLEASE SEND ME YOUR RECENT PICTURE AND STATS SO I KNOW IT IS YOU.\",\n", + " \"created\": \"2021-10-29 13:17\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400682068\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Looking for female\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/bronx-looking-for-female/7400682068.html\",\n", + " \"datetime\": \"2021-10-29 08:18\",\n", + " \"last_updated\": \"2021-10-29 08:18\",\n", + " \"price\": null,\n", + " \"where\": \"Riverdale westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hello, we met on here and got together a few times a couple of years ago. I hope you see this so maybe we can pick up where we left off. I am a white male in my 50's and you were in your early 20's. We had some incredibly hot times together.\",\n", + " \"created\": \"2021-10-29 07:05\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7397883193\",\n", + " \"repost_of\": \"7270431866\",\n", + " \"name\": \"WF at Skyview Center Mall\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/flushing-wf-at-skyview-center-mall/7397883193.html\",\n", + " \"datetime\": \"2021-10-29 07:45\",\n", + " \"last_updated\": \"2021-10-29 07:45\",\n", + " \"price\": null,\n", + " \"where\": \"Flushing queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Saw you at Skyview Center Mall. You\\u2019re a slender and fit white female and we locked eyes as we walked past each other. Let\\u2019s meet for fun times. HMU, we can hang out nearby.\",\n", + " \"created\": \"2021-10-22 19:39\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399298285\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Jane from Clarkston St. ish?\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-jane-from-clarkston-st-ish/7399298285.html\",\n", + " \"datetime\": \"2021-10-29 06:08\",\n", + " \"last_updated\": \"2021-10-29 06:08\",\n", + " \"price\": null,\n", + " \"where\": \"Greenwich Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Me a male 52, we met several years ago. You were beautiful and that sun dress left memory burn. Got a sec? Hope all is well? \\nGlenn\",\n", + " \"created\": \"2021-10-26 06:32\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"West street near Leroy Street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400609228\",\n", + " \"repost_of\": null,\n", + " \"name\": \"car service\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-car-service/7400609228.html\",\n", + " \"datetime\": \"2021-10-28 21:39\",\n", + " \"last_updated\": \"2021-10-28 21:39\",\n", + " \"price\": null,\n", + " \"where\": \"Inwood / Wash Hts\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"m looking for friend who used to pick me up and I'd take care of it in the car\",\n", + " \"created\": \"2021-10-28 21:35\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400602947\",\n", + " \"repost_of\": \"7251993624\",\n", + " \"name\": \"ISO Olga ( barmaid at Speakeasy in the 90\\u2019s)\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-iso-olga-barmaid-at-speakeasy/7400602947.html\",\n", + " \"datetime\": \"2021-10-28 21:15\",\n", + " \"last_updated\": \"2021-10-28 21:15\",\n", + " \"price\": null,\n", + " \"where\": \"New York manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Lost connection with you Olga.\\nYou were a barmaid at the Speakeasy bar in Soho\\nAdam, here I\\u2019m sorry\\nCan\\u2019t find you. Hopefully you don\\u2019t hate me.\\nJust wanted to see if you were still alive and Apologize to you.\",\n", + " \"created\": \"2021-10-28 21:11\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400488925\",\n", + " \"repost_of\": null,\n", + " \"name\": \"The girl I saw in Dunkin Donuts\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-the-girl-saw-in-dunkin-donuts/7400488925.html\",\n", + " \"datetime\": \"2021-10-28 16:31\",\n", + " \"last_updated\": \"2021-10-28 16:31\",\n", + " \"price\": null,\n", + " \"where\": \"Inwood / Wash Hts\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hey if you're reading this, one, thanks for being a nerd \\ud83d\\ude02. And two, I'm so sorry for leaving you hanging on the way out. I thought I heard you say something but I figured you were still on the phone. By the time I got far I realized you might have been talking to me and my kid agreed. So if you were talking to me I'm super embarrassed that I just walked by. I'm still here if you wanna talk ;)\",\n", + " \"created\": \"2021-10-28 16:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400238322\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Henry is the name of your Dog.\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/sunnyside-henry-is-the-name-of-your-dog/7400238322.html\",\n", + " \"datetime\": \"2021-10-28 08:12\",\n", + " \"last_updated\": \"2021-10-28 08:12\",\n", + " \"price\": null,\n", + " \"where\": \"Sunnyside queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Your dog\\u2019s name is Henry (the cutest) and you live in KK - just the same as you probably know by now that I live in EE. But that\\u2019s about it, and I wish we could get to know more over a drink or two, neighbor, potential friend. Opportunity will dictate.\",\n", + " \"created\": \"2021-10-28 08:08\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400197731\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Plaid earrings on Q to Church Ave\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-plaid-earrings-on-to-church-ave/7400197731.html\",\n", + " \"datetime\": \"2021-10-28 01:21\",\n", + " \"last_updated\": \"2021-10-28 01:21\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You wore a gray sweater, carried a tote bag, and had these really cool black, white, and gray plaid (gingham?) earrings\\nI certainly sneaked a few glances and I think caught you doing the same? If so...coffee or drinks sometime?\",\n", + " \"created\": \"2021-10-28 01:17\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400183472\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Looking for that female rolling partner\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-looking-for-that-female-rolling/7400183472.html\",\n", + " \"datetime\": \"2021-10-28 01:15\",\n", + " \"last_updated\": \"2021-10-28 01:15\",\n", + " \"price\": null,\n", + " \"where\": \" bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I learned more from female partners than I have with males. I don\\u2019t know what it is, maybe it\\u2019s the lack of machismo. Rolling means grappling and not drugs. If you are learning or want to share some skills, let me know\",\n", + " \"created\": \"2021-10-27 23:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400120996\",\n", + " \"repost_of\": null,\n", + " \"name\": \"M4W - Last Friday - West Side/Little Island\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-m4w-last-friday-west-side/7400120996.html\",\n", + " \"datetime\": \"2021-10-27 20:11\",\n", + " \"last_updated\": \"2021-10-27 20:11\",\n", + " \"price\": null,\n", + " \"where\": \"Manhattan west side manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Last Friday evening we both sat for a while on the benches on the West Side walking path, facing Little Island. I was wearing mostly black and had my bike with me. You were wearing mostly black and were on foot. We had a nice moment of eye contact as you walked by on your way out - a brief moment, but it registered with me...so, what the hell, I'll take the chance that you might see this.\\n\\nIf this was you, hope you'll get in touch! And tell me some other detail about when we crossed paths (what time of day, which direction you walked out or I walked in...or come up with something more clever than I have.)\",\n", + " \"created\": \"2021-10-27 19:50\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7400008465\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Golden Touch carwash\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-golden-touch-carwash/7400008465.html\",\n", + " \"datetime\": \"2021-10-27 15:43\",\n", + " \"last_updated\": \"2021-10-27 15:43\",\n", + " \"price\": null,\n", + " \"where\": \"Park Slope brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You thought I beeped at you, initially I didn't, but as you drove off, I couldn't help but honk in vain...\",\n", + " \"created\": \"2021-10-27 15:39\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398582051\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Lady I use to meet\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-lady-use-to-meet/7398582051.html\",\n", + " \"datetime\": \"2021-10-27 15:13\",\n", + " \"last_updated\": \"2021-10-27 15:13\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Looking for the lady that would come to meet me any keep me company while I enjoyed myself. I hope you enjoyed the flowers I would bring. Hope to see you soon or maybe find a new lady. Plz let talk see what can work for both of us. Love for this to be an on going relationship that benefits both of us :)\",\n", + " \"created\": \"2021-10-24 14:31\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399853821\",\n", + " \"repost_of\": null,\n", + " \"name\": \"NYSC-Amazing Glutes\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/hawthorne-nysc-amazing-glutes/7399853821.html\",\n", + " \"datetime\": \"2021-10-27 12:42\",\n", + " \"last_updated\": \"2021-10-27 12:42\",\n", + " \"price\": null,\n", + " \"where\": \"Hawthorne westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Still looking for the F with the amazing glutes that trains early mornings at NYSC in Hawthorne.\",\n", + " \"created\": \"2021-10-27 11:09\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399857556\",\n", + " \"repost_of\": \"7331589639\",\n", + " \"name\": \"Randi from UWS\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-randi-from-uws/7399857556.html\",\n", + " \"datetime\": \"2021-10-27 12:35\",\n", + " \"last_updated\": \"2021-10-27 12:35\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown West\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We met back pre Trump/ Pre Covid 2016 I think. You are a woman and in the Medical Field and we had commonality with a particular brand of car. You were beautiful and interesting. I wore a grey suit. Me 52 you younger. I would love to reconnect .\",\n", + " \"created\": \"2021-10-27 11:16\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7395255935\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Girl with glasses at the gas station on Glenbrook\",\n", + " \"url\": \"https://newyork.craigslist.org/fct/mis/d/stamford-girl-with-glasses-at-the-gas/7395255935.html\",\n", + " \"datetime\": \"2021-10-27 11:13\",\n", + " \"last_updated\": \"2021-10-27 11:13\",\n", + " \"price\": null,\n", + " \"where\": \"Stamford fairfield co, CT \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I saw you at the Citgo gas station on glenbrook couple of days ago , i was behind you waiting for you to finish then your presence got my attention . I would like to chat and get to know each other if that\\u2019s possible\",\n", + " \"created\": \"2021-10-17 08:23\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399845039\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Anyone Know What Happened To Alana?\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-anyone-know-what-happened-to/7399845039.html\",\n", + " \"datetime\": \"2021-10-27 10:57\",\n", + " \"last_updated\": \"2021-10-27 10:57\",\n", + " \"price\": null,\n", + " \"where\": \"East Village manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Used to see her from time to time and she disappeared. Anyone know what happened to her?\",\n", + " \"created\": \"2021-10-27 10:53\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399817866\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Cute Boy On Uptown C This Morning\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-cute-boy-on-uptown-this-morning/7399817866.html\",\n", + " \"datetime\": \"2021-10-27 10:02\",\n", + " \"last_updated\": \"2021-10-27 10:02\",\n", + " \"price\": null,\n", + " \"where\": \"Chelsea\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I was sitting across from you on an uptown C this morning. You got off at 23rd. You have beautiful long black hair; wore mostly grey and black, had glasses on and you were reading a book. Everything about you was so perfect although your sneakers could use an upgrade. Why not let this friendly (no strings) daddy type buy you some cool new sneakers? Tell me what color your backpack was.\",\n", + " \"created\": \"2021-10-27 09:58\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399783108\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Danielle, 24 - from Kingsborough Community College\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-danielle-24-from-kingsborough/7399783108.html\",\n", + " \"datetime\": \"2021-10-27 09:02\",\n", + " \"last_updated\": \"2021-10-27 09:02\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We connected online.\\n\\nYou told me you went to Kingsborough Community College and were studying in the medical field.\\n\\nYou are currently working as a waitress/hostess at a restaurant and want a change from it to pursue marketing.\\n\\nI told you about my marketing business and my friend who owns a beauty supply store and how we could potentially work together on that project, plus a few other projects we can work on.\\n\\nYou spoke about your side hustles like Amazon Drop Shipping, how you wanted to to learn marketing, looking to get away from Brooklyn and escape from the city.\\n\\nI told you about the opportunity in Bayshore and how we could work together and for you to develop your skills.\\n\\nWe connected about shared ambitions and love for nature, writing and other personal things.\\n\\nWe texted each other all night and really hit it off.\\n\\nThe plan was to meet out in Long Island and sit down to get to know each other more.\\n\\nRecently you have tried to re-establish contact with me on the same platform but unfortunately there seems to be gatekeeping going on keeping us from reaching each other again.\\n\\nI'm doing all that I can to put it into my own hands to try and find you.\\n\\nIf anyone knows how to reach the person I am looking for, please show her this post, it would be immensely appreciated.\\n\\nThank you.\",\n", + " \"created\": \"2021-10-27 08:22\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"2001 Oriental Blvd\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399767919\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Asian woman in Flushing\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/fresh-meadows-asian-woman-in-flushing/7399767919.html\",\n", + " \"datetime\": \"2021-10-27 08:18\",\n", + " \"last_updated\": \"2021-10-27 08:18\",\n", + " \"price\": null,\n", + " \"where\": \"Flushing queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Last Sunday afternoon , we walk by each other in Kissina Park, You were with a couple of people and we look at each other and you smile at me, I kept walking and try to find you again, You are Asian, about mid 30,s 5,2, 5,3,tall Beautiful long black hair, very nice smile, I\\u2019m the guy wearing the NewYork Jets hat, in my early 50,s,m.Hope you see this, would like to meet, maybe in Kissina Park, or take you out for coffee or to dinner\",\n", + " \"created\": \"2021-10-27 06:55\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399701098\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Black guy I used to meet in Yonkers\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/tarrytown-black-guy-used-to-meet-in/7399701098.html\",\n", + " \"datetime\": \"2021-10-26 21:52\",\n", + " \"last_updated\": \"2021-10-26 21:52\",\n", + " \"price\": null,\n", + " \"where\": \"Westchester westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"M Looking for my loaded black friend from Yonkers or someone similar\",\n", + " \"created\": \"2021-10-26 21:48\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399666847\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Black girl at FiDi DMV with Greenlight tote\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-black-girl-at-fidi-dmv-with/7399666847.html\",\n", + " \"datetime\": \"2021-10-26 20:04\",\n", + " \"last_updated\": \"2021-10-26 20:04\",\n", + " \"price\": null,\n", + " \"where\": \"Financial District\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were at the DMV at the same time as me. You didn\\u2019t notice me at first, but I definitely noticed you. When I finished at the counter and turned around, you were staring right at me like you were waiting for me to turn around. Your Greenlight tote was cute. describe me so I know it\\u2019s you :-)\",\n", + " \"created\": \"2021-10-26 20:00\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Greenwich St near Morris St\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399664820\",\n", + " \"repost_of\": null,\n", + " \"name\": \"You were wearing a Dinosaur Jr shirt at the coffee shop on 2nd Ave\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-you-were-wearing-dinosaur-jr/7399664820.html\",\n", + " \"datetime\": \"2021-10-26 19:59\",\n", + " \"last_updated\": \"2021-10-26 19:59\",\n", + " \"price\": null,\n", + " \"where\": \"East Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I was walking south down 2nd, you were sitting outside Kona Coffee in a Dino Jr. shirt. You stared at me for a little while, and I wanted to say something but I had a shitty day. Almost turned back when I got to the F train. Tell me what shirt I was wearing and I\\u2019ll know it\\u2019s you xo\",\n", + " \"created\": \"2021-10-26 19:55\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399630706\",\n", + " \"repost_of\": \"7395743528\",\n", + " \"name\": \"We were buds - Javier\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-we-were-buds-javier/7399630706.html\",\n", + " \"datetime\": \"2021-10-26 19:10\",\n", + " \"last_updated\": \"2021-10-26 19:10\",\n", + " \"price\": null,\n", + " \"where\": \"Union Square\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We used to b b8 buds pre-pandemic - meeting in breathers around UnionSq.\\n\\nWe lost touch and I\\u2019m looking to reconnect\\u2026 let\\u2019s get back to it man\",\n", + " \"created\": \"2021-10-26 18:28\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Union square\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399583647\",\n", + " \"repost_of\": \"7394754068\",\n", + " \"name\": \"Looking for Jane\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-looking-for-jane/7399583647.html\",\n", + " \"datetime\": \"2021-10-26 17:53\",\n", + " \"last_updated\": \"2021-10-26 17:53\",\n", + " \"price\": null,\n", + " \"where\": \"Greenwich Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Calling all Jane\\u2019s, are you out there?\\n\\nWorking on an ongoing portrait series all based around the name Jane. \\nThe idea is to celebrate the similarities and differences around individuals with the same name. \\nI've been working as a photographer for 8+years. The goal for the portraits is to be completed in each individuals home. I'm fully vaccinated and will wear a mask. Each participant will get an 8x10 artist print in return. \\n\\nIf you would like to participate in the project, feel free to get in touch!\\n\\nCheers,\\n-M\",\n", + " \"created\": \"2021-10-26 16:48\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399603717\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Met at Richards in Greenwich\",\n", + " \"url\": \"https://newyork.craigslist.org/fct/mis/d/greenwich-met-at-richards-in-greenwich/7399603717.html\",\n", + " \"datetime\": \"2021-10-26 17:33\",\n", + " \"last_updated\": \"2021-10-26 17:33\",\n", + " \"price\": null,\n", + " \"where\": \"Greenwich fairfield co, CT \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were trying on ties with a new suit asked me for my opini\\u00f3n. Probably in your mid 50\\u2019s.\",\n", + " \"created\": \"2021-10-26 17:29\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399573694\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Mackenzie in the West Village Saturday (10/23) Night\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-mackenzie-in-the-west-village/7399573694.html\",\n", + " \"datetime\": \"2021-10-26 16:44\",\n", + " \"last_updated\": \"2021-10-26 16:44\",\n", + " \"price\": null,\n", + " \"where\": \"West Village\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We briefly met at a dive-y bar in the West Village. We spoke about how you recently moved to the city (Midtown West, I think?), college towns and you pursuing a career in law. It was a short but pleasant conversation, and I'd be open to keep it going - always keen on making new friends. Chances are that this will fall through the cracks, but let's see what happens. If you're interested let me know the infamous drink we spoke about, or what I was wearing.\",\n", + " \"created\": \"2021-10-26 16:28\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"greenwich street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399558701\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Franklin Pierce Women's Rugby shirt\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/astoria-franklin-pierce-womens-rugby/7399558701.html\",\n", + " \"datetime\": \"2021-10-26 16:04\",\n", + " \"last_updated\": \"2021-10-26 16:04\",\n", + " \"price\": null,\n", + " \"where\": \"Astoria queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hey dude,\\nYou were rockin an auburn Franklin Pierce Women's Rugby tank at the C-Town grocery store at around 2:30 this afternoon and looking incredibly hot. White guy, dark hair, beard, wearing blue shorts, 30's, about 5'10\\\". VGL masc white guy here too.\",\n", + " \"created\": \"2021-10-26 16:00\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399547982\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Cute Girls Driving 10/23/21 Rye Brook S Ridge St\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/port-chester-cute-girls-driving-rye/7399547982.html\",\n", + " \"datetime\": \"2021-10-26 16:01\",\n", + " \"last_updated\": \"2021-10-26 16:01\",\n", + " \"price\": null,\n", + " \"where\": \"Rye Brook westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We met at the light just before the Rye Ridge Shopping Center going north. Sorry for driving aggressively coming up from behind. Even though I had my stereo pretty much on full blast, like my taste in music at least ;-)?\",\n", + " \"created\": \"2021-10-26 15:40\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399420897\",\n", + " \"repost_of\": \"7370653300\",\n", + " \"name\": \"Sword fight\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-sword-fight/7399420897.html\",\n", + " \"datetime\": \"2021-10-26 12:07\",\n", + " \"last_updated\": \"2021-10-26 12:07\",\n", + " \"price\": null,\n", + " \"where\": \"Staten Island staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Passable Trans women looking to play . Gen men only\\nI can host\\nStaten Island only\",\n", + " \"created\": \"2021-10-26 12:03\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399382168\",\n", + " \"repost_of\": \"7396000906\",\n", + " \"name\": \"Plummer\",\n", + " \"url\": \"https://newyork.craigslist.org/que/mis/d/fresh-meadows-plummer/7399382168.html\",\n", + " \"datetime\": \"2021-10-26 11:01\",\n", + " \"last_updated\": \"2021-10-26 11:01\",\n", + " \"price\": null,\n", + " \"where\": \"Flushing queens \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Talented plumber here, guaranteed to take care of any clog you may have, get back to me for details\",\n", + " \"created\": \"2021-10-26 10:57\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399343361\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Pretty gurl in New Dorp\",\n", + " \"url\": \"https://newyork.craigslist.org/stn/mis/d/staten-island-pretty-gurl-in-new-dorp/7399343361.html\",\n", + " \"datetime\": \"2021-10-26 09:42\",\n", + " \"last_updated\": \"2021-10-26 09:42\",\n", + " \"price\": null,\n", + " \"where\": \" staten island \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Saw u walking up New Dorp Ln and we smiled as we passed each other. I am very into girls like u and would love to chat or meet for coffee. Hope u see this.\",\n", + " \"created\": \"2021-10-26 09:38\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"New Dorp Lane\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7396570373\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Late Night Swim 8/26/21 Rye Oakland Beach\",\n", + " \"url\": \"https://newyork.craigslist.org/wch/mis/d/rye-late-night-swim-rye-oakland-beach/7396570373.html\",\n", + " \"datetime\": \"2021-10-26 06:47\",\n", + " \"last_updated\": \"2021-10-26 06:47\",\n", + " \"price\": null,\n", + " \"where\": \"Rye westchester \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You sounded so cute! Seemed like you were having a kickass beach after-party with a gf & one or two guys. My buddy & I were chilling on the sand, closer to Playland, but not super far off. When you noticed me, you asked if I could swim. I said, \\\"Totally! Just a sec.\\\" Stripped down to my boxers & swam your way. Got outta the water a couple mins. later, where I thought you guys were hanging, but couldn't find you. Not sure if you had to go, left the sand, or whatever. I was so bummed! Didn't think you were with either guy, but even still, would have loved to have met you. Such an incredibly cool chick!\",\n", + " \"created\": \"2021-10-20 03:36\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399265929\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Italo Calvino & John Darnielle in a Hot Tub\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-italo-calvino-john-darnielle/7399265929.html\",\n", + " \"datetime\": \"2021-10-26 02:13\",\n", + " \"last_updated\": \"2021-10-26 02:13\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Here\\u2019s hoping you, as a film dude and fan of psychogeography, are the prime demographic for something as esoteric as missed connections. Sorry if I\\u2019m typecasting, but c\\u2019mon!! There\\u2019s no better portrait of a city than this. \\n\\nYou had nice eyes and warm hands. A handshake that felt like a hug. You said you\\u2019d see me inside, but we never did: I\\u2019d like a rain check. Remind me where you and I are from (what\\u2019s a post like this if not a painted barn?) and let\\u2019s keep in touch.\",\n", + " \"created\": \"2021-10-26 00:21\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"428 troutman street near St Nicholas Ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399271734\",\n", + " \"repost_of\": null,\n", + " \"name\": \"I'm the redhaired gal at Penn on 10/23, looking for tan jacket guy.\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-im-the-redhaired-gal-at-penn/7399271734.html\",\n", + " \"datetime\": \"2021-10-26 01:04\",\n", + " \"last_updated\": \"2021-10-26 01:04\",\n", + " \"price\": null,\n", + " \"where\": \"Penn Station LIRR manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"This is a longshot... a really long shot. But waiting for the LIRR late Saturday night/Sunday morning around 2:30am, we caught eyes a handful of times. You were tall with medium length hair, tan jacket, standing with your friend who was also in a tan jacket; I was with my friend by the pillar a few feet from you. You kept looking back at me as you went down to your train, and I smiled your way, but I wish one of us had just said something or I had called you back over. I would love to meet you/get to know more about you... tell me what train line you were getting on so I know it's you.\",\n", + " \"created\": \"2021-10-26 01:00\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399229447\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Q Train - Canal St - Young cute female in sweats\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-train-canal-st-young-cute/7399229447.html\",\n", + " \"datetime\": \"2021-10-25 21:58\",\n", + " \"last_updated\": \"2021-10-25 21:58\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We locked eyes a few times you had on sweats and a black mask . Tattoo behind your right ear and colorful adidas on. \\n\\nI'm the guy with a black and white sweater and black dad hat \\\" good vibes only\\n\\nYou looked back at me before getting off on canal st . Would love to get to know ya and missed the opportunity!\\n\\nIf you're out there reading this please reach out . Email !\",\n", + " \"created\": \"2021-10-25 21:41\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Canal st\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399204937\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Guy at Home Depot\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-guy-at-home-depot/7399204937.html\",\n", + " \"datetime\": \"2021-10-25 20:30\",\n", + " \"last_updated\": \"2021-10-25 20:30\",\n", + " \"price\": null,\n", + " \"where\": \"Flatiron\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You helped me pick out wood paint, that I left without Bc you were sold out. You were funny. Let\\u2019s grab a coffee?\",\n", + " \"created\": \"2021-10-25 20:26\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"23rd near 6th ave\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399163709\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Guy on Sunday night Manhattan bound NJTransit train\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-guy-on-sunday-night-manhattan/7399163709.html\",\n", + " \"datetime\": \"2021-10-25 18:48\",\n", + " \"last_updated\": \"2021-10-25 18:48\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Train was coming from \\\"upstate\\\" we both transferred at Seacacus and got off at Penn Station. \\n\\nYou were wearing black converse, and dark blue jeans. I think you're really cute. We made eye contact a few times. I wish I had said something to you. \\n\\nWe were standing near eachother in between the train doors because the train didn't have enough seating. \\n\\nI had a suitcase with me. Tell me what color it is if it was you and you're interested.\\n\\nEdit for clarity to those responding and asking- I'm a woman.\",\n", + " \"created\": \"2021-10-25 18:44\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"34th st penn station\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399101311\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Jury Duty\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-jury-duty/7399101311.html\",\n", + " \"datetime\": \"2021-10-25 16:41\",\n", + " \"last_updated\": \"2021-10-25 16:41\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were carrying a trader joes bag and we locked eyes a few times in the waiting room and again as I was riding away on my bike. Let\\u2019s grab a drink\",\n", + " \"created\": \"2021-10-25 16:37\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Jay street near Johnson street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7399037136\",\n", + " \"repost_of\": \"7348191030\",\n", + " \"name\": \"Looking for \\u201cMonica\\u201d\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-looking-for-monica/7399037136.html\",\n", + " \"datetime\": \"2021-10-25 14:50\",\n", + " \"last_updated\": \"2021-10-25 14:50\",\n", + " \"price\": null,\n", + " \"where\": \"Chelsea\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We use to hang out at your place a lot on 28th and Lex. We lost touch but hopefully you\\u2019ll see this and we can reconnect.\",\n", + " \"created\": \"2021-10-25 14:46\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398877696\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Beautiful Young Man at AJJ Concert\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-beautiful-young-man-at-ajj/7398877696.html\",\n", + " \"datetime\": \"2021-10-25 11:29\",\n", + " \"last_updated\": \"2021-10-25 11:29\",\n", + " \"price\": null,\n", + " \"where\": \"New York manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Hi. You were at the AJJ Concert at Le Poisson Rouge last night. You wore a white cap, blue t shirt, and flannel. You crowd surfed. We moshed together a little bit and then you and your friends smoked a cig outside next to me. But we never really got to speak, as my shyness got the best of me. Hoping you see this and I\\u2019ll one day get another chance to be moonstruck by you.\",\n", + " \"created\": \"2021-10-25 10:24\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398897730\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Searching for my lost cookie\\u2026$200\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-searching-for-my-lost-cookie200/7398897730.html\",\n", + " \"datetime\": \"2021-10-25 11:05\",\n", + " \"last_updated\": \"2021-10-25 11:05\",\n", + " \"price\": null,\n", + " \"where\": \"Midtown\",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Remember the $200 I have for you, where are you hiding???\\n\\nMessage me: ht tps://youtu.be/m2PY2qwRs8I\",\n", + " \"created\": \"2021-10-25 11:01\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398792522\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Green top afro with pumps on 6 train castle hill\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-green-top-afro-with-pumps-on/7398792522.html\",\n", + " \"datetime\": \"2021-10-25 02:41\",\n", + " \"last_updated\": \"2021-10-25 02:41\",\n", + " \"price\": null,\n", + " \"where\": \"Bronx bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"you commented on my jacket before stepping off the train i was in a rush to be somewhere but really regret not having gotten off as well i hope this find you as i would really like to get to know you\",\n", + " \"created\": \"2021-10-25 02:37\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398675380\",\n", + " \"repost_of\": \"7191111560\",\n", + " \"name\": \"Lost two employees. Nico and Jewel\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/new-york-lost-two-employees-nico-and/7398675380.html\",\n", + " \"datetime\": \"2021-10-24 18:07\",\n", + " \"last_updated\": \"2021-10-24 18:07\",\n", + " \"price\": null,\n", + " \"where\": \" manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Lost contact with two painting employees. Hit me back ASAP. After COVID New work projects await.\",\n", + " \"created\": \"2021-10-24 18:03\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398653442\",\n", + " \"repost_of\": null,\n", + " \"name\": \"cream colored top with sweatpants girl at Atlantic Ave. 2/3 train\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-cream-colored-top-with/7398653442.html\",\n", + " \"datetime\": \"2021-10-24 17:59\",\n", + " \"last_updated\": \"2021-10-24 17:59\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"I was checking you out at Montague st. Then at Atlantic you dropped your brown university sweatshirt that I returned to you. I was about to holler at you when you took a call.\",\n", + " \"created\": \"2021-10-24 17:07\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398610362\",\n", + " \"repost_of\": null,\n", + " \"name\": \"All Red from head to toe (except kicks)\",\n", + " \"url\": \"https://newyork.craigslist.org/mnh/mis/d/bronx-all-red-from-head-to-toe-except/7398610362.html\",\n", + " \"datetime\": \"2021-10-24 15:33\",\n", + " \"last_updated\": \"2021-10-24 15:33\",\n", + " \"price\": null,\n", + " \"where\": \"Downtown F train at West 4th manhattan \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Friday, we got on the same F train to Coney at West 4th. You were wearing all red, except for kicks. Nose ring. You kept moving from one side of the train to the other. I was wearing bbcap, white BenSherman track jacket, black hoodie n Jordans. \\n\\nWill ask fakers what stop you got off at so don't waste your time.\",\n", + " \"created\": \"2021-10-24 15:29\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"West 4th\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398547785\",\n", + " \"repost_of\": \"7378704433\",\n", + " \"name\": \"Ally drinking a Stella at Brooklyn Mirage 8/29/21\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-ally-drinking-stella-at/7398547785.html\",\n", + " \"datetime\": \"2021-10-24 13:48\",\n", + " \"last_updated\": \"2021-10-24 13:48\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"It was my first rave and you\\u2019ve made it my most memorable in years. S/o to your 2 gf who were raving the first time as well. I remembered you offered your ig but I didn\\u2019t take it down, even went to Ezoo hoping to see you again bc you said I should go and you were going but no luck seeing ya! I wore blue button up shirt and have a right arm sleeve tattoo.\",\n", + " \"created\": \"2021-10-24 13:20\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"The kings hall\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7398538639\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Looking for blonde colombian woman I met 2 nights ago\",\n", + " \"url\": \"https://newyork.craigslist.org/brk/mis/d/brooklyn-looking-for-blonde-colombian/7398538639.html\",\n", + " \"datetime\": \"2021-10-24 13:04\",\n", + " \"last_updated\": \"2021-10-24 13:04\",\n", + " \"price\": null,\n", + " \"where\": \"Brooklyn brooklyn \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"You were 3 girls and 1 guy and you asked me to join you guys at your table at the Anchored Inn bar near Meadow Street. 2 of you were from Colombia and one was from Afghanistan. We talked about going back to Williamsburg with you and were about to book an Uber when my friend started behaving badly as he was wasted. I had to take him away and couldn't ask for your number. It was lovely talking with you and it would be great to meetup with you again.\",\n", + " \"created\": \"2021-10-24 13:00\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"address\": \"Waterbury street near Meserole street\",\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7396375956\",\n", + " \"repost_of\": null,\n", + " \"name\": \"dog walking partner at vanny\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-dog-walking-partner-at-vanny/7396375956.html\",\n", + " \"datetime\": \"2021-10-24 09:30\",\n", + " \"last_updated\": \"2021-10-24 09:30\",\n", + " \"price\": null,\n", + " \"where\": \"bronx bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"We use to walk our dogs together and talk. I know last time was awkward but i really enjoyed it. I miss you! Let me know if you still want to walk with me.\",\n", + " \"created\": \"2021-10-19 15:59\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n", + "{\n", + " \"id\": \"7393955753\",\n", + " \"repost_of\": null,\n", + " \"name\": \"Weeky Lunch with my Latina Princess\",\n", + " \"url\": \"https://newyork.craigslist.org/brx/mis/d/bronx-weeky-lunch-with-my-latina/7393955753.html\",\n", + " \"datetime\": \"2021-10-24 09:29\",\n", + " \"last_updated\": \"2021-10-24 09:29\",\n", + " \"price\": null,\n", + " \"where\": \"Bronx bronx \",\n", + " \"has_image\": false,\n", + " \"geotag\": null,\n", + " \"deleted\": false,\n", + " \"body\": \"Missing my weekly lunch date with my friend from grand concourse. Would love to start up again! Let me know if you are avail again.\\n\\nP.\",\n", + " \"created\": \"2021-10-14 10:27\",\n", + " \"images\": [],\n", + " \"attrs\": [],\n", + " \"city\": \"newyork\"\n", + "}\n" + ] + } + ], + "source": [ + "with open(\"sampledata/newyork.jsons\") as fin:\n", + " for line in fin:\n", + " post = json.loads(line)\n", + " print (json.dumps(post, indent=2))" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "202613c4-0f5d-4967-a34d-7c3ac9e38a55", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'id': '7389351208',\n", + " 'repost_of': None,\n", + " 'name': 'Gorgeous Trans girl, lost your contact info',\n", + " 'url': 'https://newyork.craigslist.org/mnh/mis/d/new-york-gorgeous-trans-girl-lost-your/7389351208.html',\n", + " 'datetime': '2021-10-04 12:45',\n", + " 'last_updated': '2021-10-04 12:45',\n", + " 'price': None,\n", + " 'where': 'Midtown West',\n", + " 'has_image': False,\n", + " 'geotag': None,\n", + " 'deleted': False,\n", + " 'body': 'Hi there. You are a gorgeous brunette trans girl. We connected online and met a few weeks ago at a hotel in Midtown West and had a great time. It felt like we really connected mentally and physically. I am goodlooking fit professional white guy in my early 40’s and you’re in your late 20’s. We are a great match and I’d love to keep it going but lost your contact information. If this rings a bell, please reach out so we can re-connect.',\n", + " 'created': '2021-10-04 10:57',\n", + " 'images': [],\n", + " 'attrs': [],\n", + " 'address': '52 near 7',\n", + " 'city': 'newyork'}" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "post" + ] + }, + { + "cell_type": "markdown", + "id": "ba0d589b-d0eb-42f7-b917-7cd45e2466e4", + "metadata": {}, + "source": [ + "## Analyze Text" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "f85dadf9-c5cc-4fd7-9eaa-7faec1356dba", + "metadata": {}, + "outputs": [], + "source": [ + "#adding entries to the database\n", + "NOVELS_DB_FIELDNAMES = \"id direction city sentence category\".split()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "1d24f0f1-deb9-4891-931a-6c2c5cb9f21b", + "metadata": {}, + "outputs": [], + "source": [ + "categories = [\"stop\", \"intro\", \"description\", \"interaction\", \"more\", \"afterthought\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "1801098a-0548-4a33-85d7-54b304f7c7ca", + "metadata": {}, + "outputs": [], + "source": [ + "def sortPhrases(sentence):\n", + " \"\"\"\n", + " Takes a sentence and returns a list of categories (tags) that match.\n", + " Uses dictionaries/{category}.txt files\n", + " \"\"\"\n", + " tags = []\n", + "\n", + " for category in categories:\n", + " filename = category + \".txt\"\n", + " file = open('dictionaries/' + filename, 'r')\n", + " phrases = file.read()\n", + " phrases = phrases.split('\\n')\n", + "\n", + " #tagging all the stuff that belongs in the stop list\n", + " if category == \"stop\":\n", + " for phrase in phrases:\n", + " key = re.search(phrase, sentence)\n", + " if key != None:\n", + " tags.append(category)\n", + "\n", + " else:\n", + "\n", + " tag_set = set(tags)\n", + "\n", + " #sorting fragments by tags, filtering the ones that have already been tagged with \"stop\"\n", + " for phrase in phrases:\n", + " if category == \"intro\":\n", + "\n", + " key = re.match(phrase, sentence)\n", + " if key != None and \"stop\" not in tag_set:\n", + " tags.append(category)\n", + " break\n", + "\n", + " else:\n", + "\n", + " key = re.search(phrase, sentence)\n", + " if key != None and \"stop\" not in tag_set:\n", + " tags.append(category)\n", + " break\n", + "\n", + " file.close()\n", + "\n", + " return tags" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "460be0ad-a552-42e1-9d33-57e589aef1c0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sortPhrases(\"My name is Michael\")" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "a6e94c48-748f-41b0-bcfe-8ad3fdc3c868", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['stop']" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sortPhrases(\"Coding sucks\")" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "83e02b52-a145-4bb1-ac54-a0d9f0e56124", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['interaction', 'afterthought']" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sortPhrases(\"I forgot where we met\")" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "229bbd05-b0e5-4f13-b37b-556c7de301ea", + "metadata": {}, + "outputs": [], + "source": [ + "def splitSentences(posts):\n", + " \"\"\" Process a bunch of posts, break into sentences, calls addEntry \"\"\"\n", + " for item in posts:\n", + " #pulling info about the post from the database\n", + " id = item['id']\n", + " city = item['city']\n", + " direction = item['where']\n", + " copy = item['body']\n", + "\n", + " #replacing unusable characters and splitting the copy into sentences\n", + " copy = copy.strip()\n", + " copy = copy.replace('\\n', '').replace(' [...]', '').replace(\"'\", \"\\'\").replace('/', '').replace('<3', '').replace(':)', '').replace('!', '.').replace(';', '.').replace(',', '.').replace('-', '.')\n", + " sentences = copy.split('.')\n", + "\n", + " for sentence in sentences:\n", + " if sentence == '':\n", + " sentences.remove(sentence)\n", + "\n", + " #if there is actually something there, run the sortPhrases function to add tags for the type of sentence this is\n", + " if len(sentence) > 0:\n", + " print (\"ID: \" + str(id) + \", sentence: \" + sentence)\n", + " results = sortPhrases(sentence)\n", + " if len(results) > 0:\n", + " for sentType in results:\n", + " print (f\"ADDING TO {sentType}\")\n", + " #add new sentences to a database for the type of sentence, keeping city and category attached\n", + " addEntry(id, direction, sentence, city, sentType)\n", + " else:\n", + " print (\"NO RESULTS\")" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "6455f48e-4251-4358-8881-14ce3defba25", + "metadata": {}, + "outputs": [], + "source": [ + "def create_or_append_row (filename, row, fieldnames=None):\n", + " \"\"\" create or append to a CSV file (filename) the given row of data \"\"\"\n", + " if not os.path.exists(filename):\n", + " with open(filename, \"w\") as fout:\n", + " db = csv.writer(fout)\n", + " if fieldnames:\n", + " db.writerow(fieldnames)\n", + " db.writerow(row)\n", + " else:\n", + " with open(filename, \"a\") as fout:\n", + " db = csv.writer(fout)\n", + " db.writerow(row) " + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "d0a9a939-4de6-4818-bb6f-63449880aa9e", + "metadata": { + "collapsed": true, + "jupyter": { + "outputs_hidden": true + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ID: 7392495336, sentence: Would like to meet a female as friends and take it from there \n", + "NO RESULTS\n", + "ID: 7392495336, sentence: I am completely drama free and not into games \n", + "NO RESULTS\n", + "ID: 7392495336, sentence: If you are serious just say hi and let’s chat and get to know each other\n", + "NO RESULTS\n", + "ID: 7392507294, sentence: I saw you at the mobil station on rt 6 in cortland manor\n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7392507294, sentence: you are an older bald man\n", + "NO RESULTS\n", + "ID: 7392507294, sentence: Driving an HVAC truck\n", + "NO RESULTS\n", + "ID: 7392507294, sentence: I think you are very handsome\n", + "ADDING TO afterthought\n", + "ID: 7392507294, sentence: bi white male here\n", + "NO RESULTS\n", + "ID: 7392507294, sentence: Tell me the name on the door of your truck so i know its you\n", + "NO RESULTS\n", + "ID: 7392497769, sentence: I used to come over and we enjoy each others company\n", + "NO RESULTS\n", + "ID: 7392497769, sentence: We had a great time in ur bed room and I miss it\n", + "NO RESULTS\n", + "ID: 7392497769, sentence: Where are u? Hmu JaeRaya?\n", + "NO RESULTS\n", + "ID: 7387264097, sentence: I’m writing this in hopes of the gorgeous brunette I saw walking out of Whole Foods in Columbus Circle\n", + "ADDING TO description\n", + "ID: 7387264097, sentence: I was the tall handsome white guy heading back to the office earlier today and I was wearing a black shirt and gray slacks\n", + "NO RESULTS\n", + "ID: 7387264097, sentence: You had on very tight fitting black and white pants and a white top\n", + "NO RESULTS\n", + "ID: 7387264097, sentence: I’m walking back to the office now and can’t get you out of my head as we made eye contact Passing each other\n", + "NO RESULTS\n", + "ID: 7387264097, sentence: Every guy in the street was checking you out that’s how hot you are\n", + "NO RESULTS\n", + "ID: 7392491391, sentence: THERE WAS SOMETHING SPECIAL ABOUT YOU\n", + "NO RESULTS\n", + "ID: 7392491391, sentence: I ENJOYED YOUR VISITS\n", + "NO RESULTS\n", + "ID: 7392491391, sentence: WHEN YOU RETURN PLEASE SEND ME YOUR RECENT PICTURE AND STATS SO I KNOW IT IS YOU\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: I am dscrte buddy that secrtly dresses like femle for area mannly strght guy\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: Im subb behind c\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: losed doors only\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: You sleep in the top bunk and i sleep in the Bttm Bunk (wink\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: wink) totally\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: You enjoy that Im one block from Yankee stadium and Bronx Supreme court\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: You area strght a\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: lpha only\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: DR\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: PR\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: Blk or Mixed strght only\n", + "NO RESULTS\n", + "ID: 7392462822, sentence: Wknite n Wkends\n", + "NO RESULTS\n", + "ID: 7392456756, sentence: About this time last year\n", + "NO RESULTS\n", + "ID: 7392456756, sentence: we tried hypnosis together\n", + "NO RESULTS\n", + "ID: 7392456756, sentence: As I recall\n", + "NO RESULTS\n", + "ID: 7392456756, sentence: when it was all over\n", + "NO RESULTS\n", + "ID: 7392456756, sentence: you were very relaxed and we both wanted to try it again\n", + "ADDING TO afterthought\n", + "ID: 7392456756, sentence: I’m back in town and would like to try again if you’re free…\n", + "NO RESULTS\n", + "ID: 7392456563, sentence: hmu\n", + "NO RESULTS\n", + "ID: 7392447685, sentence: I ran into you at the Bagel Store (home of the rainbow bagel tm) Sunday morning\n", + "NO RESULTS\n", + "ID: 7392447685, sentence: We chatted about coffee spots and Noguchi\n", + "NO RESULTS\n", + "ID: 7392447685, sentence: inspired playground design\n", + "NO RESULTS\n", + "ID: 7392447685, sentence: I didn't even get your name\n", + "NO RESULTS\n", + "ID: 7392447685, sentence: Hope you move to Brooklyn so I can run into you again\n", + "NO RESULTS\n", + "ID: 7392435489, sentence: You said you were dropping out this semester and might head back home\n", + "NO RESULTS\n", + "ID: 7392435489, sentence: I guess I’m curious if you decided to stay in the city after all\n", + "NO RESULTS\n", + "ID: 7392435489, sentence: Maybe the timing is better now?\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: You sat next to me\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: on the N train\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: queens plaza stop\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: Our legs were touching each other\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: and I got hard in my jeans\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: I was wearing a hat\n", + "ADDING TO intro\n", + "ID: 7392416992, sentence: and you exited on 8th St\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: NYU\n", + "NO RESULTS\n", + "ID: 7392416992, sentence: I would love to meet you\n", + "NO RESULTS\n", + "ID: 7390555763, sentence: Good afternoon Irish gentleman seeking Asian Anthony\n", + "NO RESULTS\n", + "ID: 7390555763, sentence: we use to socialize on 83rd street by Amsterdamn ave and lost communication\n", + "NO RESULTS\n", + "ID: 7390555763, sentence: 50\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: Was walking along Greenway this weekend and was hard not to notice some guys who were so gifted below\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: Trying to meet an easy going St\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: rate guy that is kinda tired of complications that the often described fairer (s)_ex provides\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: Not looking for anyone looking to meet now\n", + "ADDING TO interaction\n", + "ID: 7391574939, sentence: if you need now\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: please move on and order fast food\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: Looking to chat\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: get to know a bit and if interest handle needs that they aren't providing\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: Only looking for something potentially ongoing with just one g\n", + "ADDING TO interaction\n", + "ID: 7391574939, sentence: uy\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: If interest\n", + "NO RESULTS\n", + "ID: 7391574939, sentence: reach out\n", + "NO RESULTS\n", + "ID: 7392405518, sentence: Hi\n", + "NO RESULTS\n", + "ID: 7392405518, sentence: I passed you this evening in a crosswalk\n", + "NO RESULTS\n", + "ID: 7392405518, sentence: You smiled\n", + "ADDING TO interaction\n", + "ID: 7392405518, sentence: I smiled\n", + "ADDING TO interaction\n", + "ID: 7392405518, sentence: Love\n", + "NO RESULTS\n", + "ID: 7392405518, sentence: the girl with long blonde hair and too many bags who was too shy to turn around and get your number\n", + "NO RESULTS\n", + "ID: 7392404289, sentence: Sit on my lap\n", + "NO RESULTS\n", + "ID: 7392404289, sentence: play with my dreads while I suck your nipples and grab that ass\n", + "ADDING TO stop\n", + "ID: 7392404289, sentence: Attentive\n", + "NO RESULTS\n", + "ID: 7392404289, sentence: attractive Black man here for you\n", + "NO RESULTS\n", + "ID: 7392379499, sentence: wish i got your number\n", + "NO RESULTS\n", + "ID: 7392379499, sentence: it was sat oct 9 around 6:30pm\n", + "NO RESULTS\n", + "ID: 7392379499, sentence: your friend the kindergarten teacher from new orleans asked—\n", + "NO RESULTS\n", + "ID: 7392379499, sentence: “how does the train go under water?”—i had a vaccination stamp on my wrist that you mistook for a tattoo lol\n", + "NO RESULTS\n", + "ID: 7392379499, sentence: you were funny \n", + "NO RESULTS\n", + "ID: 7392328256, sentence: You were trying a black hat and our eyes met\n", + "ADDING TO intro\n", + "ID: 7392328256, sentence: I gave a suggestion for a purple one but to be honest everything was looking good on you maybe it's you\n", + "NO RESULTS\n", + "ID: 7392328256, sentence: Cliche I know lolFor some reason we got disconnected people being around us\n", + "NO RESULTS\n", + "ID: 7392328256, sentence: Hope miss connection help us here\n", + "NO RESULTS\n", + "ID: 7392306899, sentence: Looking fir the female that answered my old ad\n", + "NO RESULTS\n", + "ID: 7392306899, sentence: Black hair blue eyes big chest full lips\n", + "NO RESULTS\n", + "ID: 7392306899, sentence: ( old ad was looking\n", + "NO RESULTS\n", + "ID: 7392306899, sentence: For freaky female ) hit me up let get to talking and see where it goes I am a female myself\n", + "ADDING TO interaction\n", + "ID: 7392303337, sentence: You were riding your like scooter over the Manhattan bridge\n", + "ADDING TO intro\n", + "ID: 7392303337, sentence: We both got to the pedestrian pathway and you said you were nervous about riding over and I could go first\n", + "NO RESULTS\n", + "ID: 7392303337, sentence: I remarked you were quite brave riding the scooter through red lights and over the bridge\n", + "NO RESULTS\n", + "ID: 7392303337, sentence: We looked for the bike path but couldn’t find it\n", + "ADDING TO interaction\n", + "ID: 7392303337, sentence: then we parted ways\n", + "NO RESULTS\n", + "ID: 7392303337, sentence: Even though you were taking risks you still wore your helmet \n", + "NO RESULTS\n", + "ID: 7392303337, sentence: smart\n", + "NO RESULTS\n", + "ID: 7392303337, sentence: And I liked the blue dress you were wearing\n", + "NO RESULTS\n", + "ID: 7392239379, sentence: Do you need a HJ\n", + "NO RESULTS\n", + "ID: 7392239379, sentence: I will give you one\n", + "NO RESULTS\n", + "ID: 7392239379, sentence: I am 60 Italian MALE\n", + "NO RESULTS\n", + "ID: 7392239379, sentence: You MUST host\n", + "NO RESULTS\n", + "ID: 7390406275, sentence: Look for my old female friend that used to meet me at the South Shore Parking Lot\n", + "NO RESULTS\n", + "ID: 7390406275, sentence: What happened to you?\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: Muscular Guy got off the D train at Fordham Rd\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: Nice height and muscular body\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: You where carrying a gym bag\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: We made eye contact a couple of times\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: You had a few tattoos\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: Hit me up if this is you\n", + "NO RESULTS\n", + "ID: 7380525362, sentence: Send pic with first email\n", + "NO RESULTS\n", + "ID: 7392160845, sentence: We were inside by the freezer section and you had on a nice summer dress and I told you you forgot your sweater then we met at the other end of Foodtown at the daily section and I looked at you and said again and we both laughed when we were pulling out of the parking lot you took the time to roll down your window to tell me goodbye I should’ve asked you if you want to go have coffee or something Hope you see this post\n", + "ADDING TO interaction\n", + "ADDING TO more\n", + "ADDING TO afterthought\n", + "ID: 7392076085, sentence: Exchanged looks a few times at TMPL\n", + "NO RESULTS\n", + "ID: 7392076085, sentence: i was headed into the change room and saw you\n", + "ADDING TO description\n", + "ID: 7392076085, sentence: then I headed out and you were behind\n", + "NO RESULTS\n", + "ID: 7392076085, sentence: I waited at the chairs at the front and we smiled at eachother as you left\n", + "ADDING TO interaction\n", + "ID: 7392065298, sentence: i’m looking for a female in need of attention and fun playget back to me if interested\n", + "ADDING TO interaction\n", + "ID: 7392065298, sentence: m4fSix for sixseven tree zerotreeonezeronine\n", + "NO RESULTS\n", + "ID: 7392065207, sentence: i’m looking for a female in need of attention and fun playget back to me if interested\n", + "ADDING TO interaction\n", + "ID: 7392065207, sentence: m4fSix for sixseven tree zerotreeonezeronine\n", + "NO RESULTS\n", + "ID: 7392046963, sentence: Love to have a picnic at the Park \n", + "NO RESULTS\n", + "ID: 7392046963, sentence: Photo phone note let’s have a picnic on a nice autumn day\n", + "NO RESULTS\n", + "ID: 7392038842, sentence: You watched me at the urinal and we talked outside\n", + "ADDING TO interaction\n", + "ID: 7392038842, sentence: but I had to go\n", + "NO RESULTS\n", + "ID: 7392023109, sentence: I saw you on the train keeping on adjusting yourself\n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7392023109, sentence: lets talk\n", + "ADDING TO interaction\n", + "ID: 7391957584, sentence: Last year we were supposed to meet up right after July 4th but you had to be with your daughter\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: I lost my cell phone and have been searching all my e\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: mails for you but couldn't find you\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: I wasn't avoiding you I just couldn't afford a new cell phone it's embarrassing but the truth\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: Still thinking about you and the pictures we used to send to each other\n", + "ADDING TO more\n", + "ID: 7391957584, sentence: Still thinking about you and that raspy voice\n", + "ADDING TO more\n", + "ID: 7391957584, sentence: I'm the young boi with old soulIf it's really you tell me the addiction you had I wanted to share with you\n", + "ADDING TO afterthought\n", + "ID: 7391957584, sentence: xoxo N\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: PS \n", + "NO RESULTS\n", + "ID: 7391957584, sentence: not interested in emails from males telling me your fetishes\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: I never asked buddy\n", + "NO RESULTS\n", + "ID: 7391957584, sentence: I'm only looking for my missed connection\n", + "ADDING TO stop\n", + "ID: 7391884849, sentence: Hi\n", + "NO RESULTS\n", + "ID: 7391884849, sentence: I saw you getting coffee at Peaky Barista this afternoon\n", + "ADDING TO description\n", + "ID: 7391884849, sentence: I was working on my iPad at a table\n", + "NO RESULTS\n", + "ID: 7391884849, sentence: We made eye contact a couple of times\n", + "NO RESULTS\n", + "ID: 7391884849, sentence: You said hi as you were leaving but I totally froze\n", + "NO RESULTS\n", + "ID: 7391884849, sentence: Before I could find my voice to say hi back\n", + "NO RESULTS\n", + "ID: 7391884849, sentence: you were gone\n", + "NO RESULTS\n", + "ID: 7391785614, sentence: Never done this before LOL\n", + "NO RESULTS\n", + "ID: 7391785614, sentence: Ron Burgundy\n", + "NO RESULTS\n", + "ID: 7391785614, sentence: your 'stache and hair were on point\n", + "NO RESULTS\n", + "ID: 7391785614, sentence: I left the Jungle concert early with my friend but I think we had a vibe\n", + "ADDING TO afterthought\n", + "ID: 7391785614, sentence: Let's meet up so I can make fun of you more \n", + "NO RESULTS\n", + "ID: 7391785614, sentence: )\n", + "NO RESULTS\n", + "ID: 7391687399, sentence: I'm a street musician in central park \n", + "NO RESULTS\n", + "ID: 7391687399, sentence: you walked bye smiled put a dollar in my guitar case and kept walking \n", + "ADDING TO interaction\n", + "ID: 7391687399, sentence: I would like to meet you again \n", + "NO RESULTS\n", + "ID: 7391687399, sentence: maybe have a coffee\n", + "NO RESULTS\n", + "ID: 7391625965, sentence: The day was 107 at around 1pm\n", + "NO RESULTS\n", + "ID: 7391625965, sentence: we were sitting right across from one another & you were wearing a blue Jean jacket & shorts with a white hat\n", + "NO RESULTS\n", + "ID: 7391625965, sentence: I can't stand my nervousness to talk to someone I find attractive & I'm sad I miss this opportunity but if by chance you ever see this i'de love a chance to take you out sometime\n", + "ADDING TO interaction\n", + "ID: 7385306924, sentence: Dear Slim Black guy:My name is Mariah\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: and I was the slim Afro\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: Cuban TSgirl you played strip poker with a few years ago\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: Do you remember? We laughed alot\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: had a few cocktails\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: and deep times\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: I'm back and I hope you find me\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: You are slim\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: black\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: low cut ceasar\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: fit\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: Find me\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: I miss you\n", + "NO RESULTS\n", + "ID: 7385306924, sentence: Leave a photo in my email so I know it's you\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: So I was walking along one day when everyone was wearing masks\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: A women with the most beautiful brown eyes locked with mine\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: I was the tall guy with blue eyes\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: We locked eyes and it seemed like time stopped while we slow motion walked past each other\n", + "ADDING TO interaction\n", + "ID: 7391573081, sentence: We both never broke eye contact\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: Felt like those eyes reached into my heart and grabbed a hole of my soul before you walking out of my life\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: Now I always look for those eyes\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: Like amber and the hazel mist left of a pile of fallen leaves in fall\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: The smell of Chanel number 3 wafted pass my nose with a hint of some amazing feminine shampoo conditioner aromatic sensation\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: I was so intrigued and naturally turned on that I couldn’t find the words to say hello\n", + "ADDING TO more\n", + "ID: 7391573081, sentence: Think we crossed paths once again in the rain one day\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: And I swear I heard the girl on the phone say “I think I just saw the man of my dreams”\n", + "ADDING TO description\n", + "ADDING TO afterthought\n", + "ID: 7391573081, sentence: Wouldn’t that be something huh? If it’s meant to be it will be\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: I felt her energy many times after\n", + "NO RESULTS\n", + "ID: 7391573081, sentence: Is this the game? The cat and mouse chase? At what point does the cat stop chasing this little brown eyed mouse?\n", + "NO RESULTS\n", + "ID: 7391558720, sentence: You were already on the train when I got on at Court Sq\n", + "ADDING TO intro\n", + "ID: 7391558720, sentence: I sat down to catch up on the news but soon realized that you were giving everyone on my bench quite a glimpse\n", + "NO RESULTS\n", + "ID: 7391558720, sentence: When we both got off the train\n", + "NO RESULTS\n", + "ID: 7391558720, sentence: I didn't want to get caught walking behind you\n", + "ADDING TO afterthought\n", + "ID: 7391558720, sentence: but I'd love to get a coffee or something\n", + "NO RESULTS\n", + "ID: 7391558720, sentence: Let me know\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: Hi there \n", + "NO RESULTS\n", + "ID: 7391539739, sentence: you were leaning against a column in front of the building this afternoon\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: I climbed the stairs\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: we made direct eye contact\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: you winked\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: as I was walking from the building\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: we both turned around and looked back at each other\n", + "ADDING TO interaction\n", + "ADDING TO more\n", + "ID: 7391539739, sentence: twice\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: If by chance you see this \n", + "NO RESULTS\n", + "ID: 7391539739, sentence: feel free to reply\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: you are HOT\n", + "NO RESULTS\n", + "ID: 7391539739, sentence: Thanks\n", + "NO RESULTS\n", + "ID: 7391441422, sentence: To all the beautiful women on the UES sporting yoga pants\n", + "NO RESULTS\n", + "ID: 7391441422, sentence: especially those suffering with camel toe\n", + "NO RESULTS\n", + "ID: 7391441422, sentence: I just want to say THANK YOU\n", + "NO RESULTS\n", + "ID: 7391441422, sentence: Oh\n", + "NO RESULTS\n", + "ID: 7391441422, sentence: and YUM\n", + "NO RESULTS\n", + "ID: 7391441422, sentence: That is all\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: Me: I kept trying to work up the courage to come talk to you\n", + "ADDING TO interaction\n", + "ID: 7391352842, sentence: I got butterflies in my stomach\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: And I was really nervous\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: You probably didn’t even notice me\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: I walked right up next to you and almost said something\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: but you weren’t looking in my direction and then you turned and walked and I just was like ahhh can’t do it can’t do it\n", + "ADDING TO more\n", + "ID: 7391352842, sentence: lol\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: Wish I had\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: You: Not to be rude\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: but you were by far the biggestfattest girl there today\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: By a mile\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: Brown hair\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: Pretty eyes\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: You weren’t wearing a costume\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: Seemed to be moving pretty quickly\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: like you were late or had somewhere to be? (Or didn’t wanna miss a panel?) I didn’t wanna chase you or be weird or anything…but I wish I had tried to say something at least\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: ism”\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: I like women of all sizes and shapes\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: and for some reason I have no upper limit\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: And you’re one of the biggest women I’ve ever felt drawn to (or seen) in my life\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: I wish I said something but I got so nervous\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: I don’t normally do this\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: If anybody sees her again or knows her\n", + "NO RESULTS\n", + "ID: 7391352842, sentence: please tell her to get in contact with me\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: I saw you sitting with a friend at Dante\n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7391297466, sentence: Great bar\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: You had dark brown hair\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: facial hair\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: and were wearing a black long sleeve button down with jeans\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: I think you were talking about how Italian was your favorite food (my favorite\n", + "ADDING TO interaction\n", + "ADDING TO afterthought\n", + "ID: 7391297466, sentence: )\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: I was passing by with my roommates\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: brunette\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: wearing a red long sleeve shirt and a black skirt\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: I was eating a pizza from Joe’s\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: We made eye contact for a few seconds\n", + "NO RESULTS\n", + "ID: 7391297466, sentence: Great smile\n", + "NO RESULTS\n", + "ID: 7391289956, sentence: You saw me all dressed up with no place to go\n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7391289956, sentence: Rachel\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: We sat next to each other and chatted a bit during the flight\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: you had the window seat\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: Artist\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: very dark hair\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: reading the New Yorker and drawing \n", + "NO RESULTS\n", + "ID: 7391268337, sentence: influenced \n", + "NO RESULTS\n", + "ID: 7391268337, sentence: I think we both may have wanted to say more\n", + "ADDING TO afterthought\n", + "ID: 7391268337, sentence: but hesitated due to our wedding rings\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: mine on my left\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: I'm a widow\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: it occurred to me only later that you may be as well\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: and still wearing your ring for the same reason\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: If my guess is correct\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: we were both unimaginably lucky in love\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: if the magic happened once it might just happen again\n", + "NO RESULTS\n", + "ID: 7391268337, sentence: no? Only one way to find out\n", + "NO RESULTS\n", + "ID: 7391221875, sentence: You were short with nice hips and amazing lips I loved your smile as you looked at my grey sweats …yes it’s real\n", + "ADDING TO intro\n", + "ADDING TO interaction\n", + "ID: 7391221875, sentence: Cute Black guy from the corner store…\n", + "NO RESULTS\n", + "ID: 7391221875, sentence: would love to see more of you\n", + "NO RESULTS\n", + "ID: 7391092913, sentence: We had a moment at Whole Foods this afternoon\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: Hey we made eye contact earlier today (107 around 5:30pm) at Buffalo Exchange in Chelsea\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: You were ahead of me selling your clothes\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: Later you sheepishly apologized for blocking the counter\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: You: M\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: oversized shirt but fit you just right\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: Short dark hair\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: I think you were trying to sell a Knick's jacket\n", + "ADDING TO afterthought\n", + "ID: 7391069306, sentence: Me: M\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: blue denim jacket\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: black shirtpants\n", + "NO RESULTS\n", + "ID: 7391069306, sentence: Short curly dark hair\n", + "NO RESULTS\n", + "ID: 7381415300, sentence: Saw you at Skyview Center Mall\n", + "NO RESULTS\n", + "ID: 7381415300, sentence: You’re a slender and fit white female and we locked eyes as we walked past each other\n", + "ADDING TO interaction\n", + "ID: 7381415300, sentence: Let’s meet for fun times\n", + "NO RESULTS\n", + "ID: 7381415300, sentence: HMU\n", + "NO RESULTS\n", + "ID: 7381415300, sentence: we can hang out nearby\n", + "NO RESULTS\n", + "ID: 7391066710, sentence: I saw you on your green StumpJumper conversion with metal fenders in the circle at Prospect Park SW yesterday\n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7391066710, sentence: There was a guy playing reggae music\n", + "NO RESULTS\n", + "ID: 7391066710, sentence: Cool bike\n", + "NO RESULTS\n", + "ID: 7391066710, sentence: let's make out\n", + "NO RESULTS\n", + "ID: 7390894108, sentence: Judah you stopped coming over to collect for the food fund and youth program and haven’t seen you since COVID\n", + "NO RESULTS\n", + "ID: 7390894108, sentence: If your are still doing the collection keep me posted \n", + "NO RESULTS\n", + "ID: 7390924374, sentence: Hi\n", + "NO RESULTS\n", + "ID: 7390924374, sentence: \n", + "NO RESULTS\n", + "ID: 7390924374, sentence: Of course\n", + "NO RESULTS\n", + "ID: 7390924374, sentence: I am willing to compensate for the lunch\n", + "NO RESULTS\n", + "ID: 7390924374, sentence: Middleaged guy that had this pre\n", + "NO RESULTS\n", + "ID: 7390924374, sentence: pandemic and hoping to reestablish my ritual\n", + "NO RESULTS\n", + "ID: 7390710989, sentence: Are an older woman late 40’s\n", + "NO RESULTS\n", + "ID: 7390710989, sentence: Tall slim and ethnic\n", + "NO RESULTS\n", + "ID: 7390710989, sentence: You had long dark beautiful hair\n", + "NO RESULTS\n", + "ID: 7390710989, sentence: We quickly smiled at each other\n", + "ADDING TO interaction\n", + "ID: 7390710989, sentence: Me… tall slim Latin with salt and pepper hair\n", + "NO RESULTS\n", + "ID: 7390710989, sentence: With a great smile\n", + "NO RESULTS\n", + "ID: 7390710989, sentence: I hope to see you again\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: met you on the 66th street subway platform after the unclenching the fists screening at the nyff\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: we talked about the films we'd seen\n", + "ADDING TO interaction\n", + "ID: 7390683760, sentence: freelancing\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: living in germany\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: etc\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: i was in a plaid blazer with my friend\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: you were 6'5\" probably with brown hair and gorgeous dark eyes\n", + "NO RESULTS\n", + "ID: 7390683760, sentence: we had to get off at the 72nd street stop and i kicked myself for not getting your number\n", + "NO RESULTS\n", + "ID: 7390681207, sentence: We chatted for a minute while we were picking up slices\n", + "NO RESULTS\n", + "ID: 7390681207, sentence: You humored me and took off your shirt to show me your tattoo\n", + "NO RESULTS\n", + "ID: 7390681207, sentence: Would love to see more of you\n", + "NO RESULTS\n", + "ID: 7390681207, sentence: Email me a pic so I know it’s you\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: “Come back now\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: even if you call me outYou might be angry now\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: of course you areI'm scared to\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: didn't mean to take it out on youI know I always do\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: you're the strongest person in the roomTurn back time\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: help me to rewind and we canFind ourselves againIt's not too lateEither way\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: I lose you in these silent daysIt wasn't rightBut it was right on timeDon't look down\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: I can feel it when your heart starts poundingIt's beyond your control\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: you know it isIt's getting to the point where I can't carry onI never held my breath for quite this longAnd I don't take it back\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: I did what I had to doIt's not too lateEither way\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: I lose you in these silent daysIt wasn't rightBut it was right on timeIt's not too lateEither way\n", + "NO RESULTS\n", + "ID: 7390675323, sentence: I lose you in these silent daysIt wasn't rightBut it was right on time”\n", + "NO RESULTS\n", + "ID: 7390666459, sentence: you were crossing the street “Grove st & Onderdonk ave” at around 6PM on Wedensday October 6th” with someone that was the reason i didn’t stop to talk to you\n", + "ADDING TO interaction\n", + "ID: 7390666459, sentence: i regret that\n", + "NO RESULTS\n", + "ID: 7390666459, sentence: i felt we had a moment you have beautiful eyes matching your sweatshirt\n", + "NO RESULTS\n", + "ID: 7390666459, sentence: i was the one who was riding we look at each others twice and i couldn’t take my eyes of you\n", + "NO RESULTS\n", + "ID: 7390666459, sentence: if you see this send me a message\n", + "NO RESULTS\n", + "ID: 7390666459, sentence: i’d love that\n", + "NO RESULTS\n", + "ID: 7390666459, sentence: hope this one works\n", + "NO RESULTS\n", + "ID: 7390576690, sentence: I saw you this morning sitting on a bench with a dog in Astoria Park \n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7390576690, sentence: You were wearing black gym shorts and sitting on one of the benches near the track \n", + "NO RESULTS\n", + "ID: 7390576690, sentence: I would like to get to know you better \n", + "NO RESULTS\n", + "ID: 7390444021, sentence: I was a few people behind you in line at Subway on Worth Street earlier\n", + "ADDING TO intro\n", + "ID: 7390444021, sentence: You were wearing all blue \n", + "NO RESULTS\n", + "ID: 7390444021, sentence: blue jeans\n", + "NO RESULTS\n", + "ID: 7390444021, sentence: a blue tshirt\n", + "NO RESULTS\n", + "ID: 7390444021, sentence: and a blue backpack\n", + "NO RESULTS\n", + "ID: 7390444021, sentence: We made eye contact a few times\n", + "NO RESULTS\n", + "ID: 7390444021, sentence: Even though you were masked up\n", + "NO RESULTS\n", + "ID: 7390444021, sentence: I could tell you were incredibly cute\n", + "NO RESULTS\n", + "ID: 7390444021, sentence: Just wanted you to know that\n", + "ADDING TO afterthought\n", + "ID: 7390414131, sentence: I’m sorry for staring \n", + "NO RESULTS\n", + "ID: 7390414131, sentence: I know it seemed creepy but you are just way too cute \n", + "NO RESULTS\n", + "ID: 7390170280, sentence: We were getting our Covid shots\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: your first one\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: we chatted briefly but I had to run\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: I regret that now\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: I guessed your job\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: tell me what you do to confirm\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: Any interest in hooking up? I am a male\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: you are a female\n", + "NO RESULTS\n", + "ID: 7390170280, sentence: This way the male perverts calm down\n", + "NO RESULTS\n", + "ID: 7387094431, sentence: Hi you tall with a deGrom jersey on we both look each other and I looked at you down there you wink but lot people on The 7 train hmu if you out there\n", + "ADDING TO interaction\n", + "ID: 7390108296, sentence: I asked if it was a leopard or jaguar right before my stop\n", + "NO RESULTS\n", + "ID: 7390108296, sentence: just a few minutes ago\n", + "NO RESULTS\n", + "ID: 7390108296, sentence: You were wearing umber with black jeans and had lovely eyelashes\n", + "NO RESULTS\n", + "ID: 7390108296, sentence: If this works\n", + "NO RESULTS\n", + "ID: 7390108296, sentence: please include a specific detail in your reply so I know it’s not spam\n", + "NO RESULTS\n", + "ID: 7390094523, sentence: We saw each other (I thinkhope) near Delancey and Essex a few days ago\n", + "ADDING TO description\n", + "ADDING TO afterthought\n", + "ID: 7390094523, sentence: You were wearing black\n", + "NO RESULTS\n", + "ID: 7390094523, sentence: longer hair\n", + "NO RESULTS\n", + "ID: 7390094523, sentence: white\n", + "NO RESULTS\n", + "ID: 7390094523, sentence: I’m tall also wearing black\n", + "NO RESULTS\n", + "ID: 7390094523, sentence: Does anyone use this anymore? Universe do your thing\n", + "NO RESULTS\n", + "ID: 7389949620, sentence: Amsterdam Ale House last Friday around 12:30 AM\n", + "NO RESULTS\n", + "ID: 7389949620, sentence: We danced\n", + "NO RESULTS\n", + "ID: 7389949620, sentence: I can't stop thinking about you\n", + "ADDING TO more\n", + "ID: 7389795862, sentence: You were standing in front of me on the F train this morning\n", + "ADDING TO intro\n", + "ID: 7389795862, sentence: then sat next to me when a seat opened up\n", + "NO RESULTS\n", + "ID: 7389795862, sentence: We both got off at East Broadway\n", + "NO RESULTS\n", + "ID: 7389795862, sentence: I was doing the crossword\n", + "NO RESULTS\n", + "ID: 7389795862, sentence: you had an iced coffee and a black fanny pack\n", + "NO RESULTS\n", + "ID: 7389795862, sentence: Want to meet and grab a drink?\n", + "NO RESULTS\n", + "ID: 7389660066, sentence: Hi there Mariah\n", + "NO RESULTS\n", + "ID: 7389660066, sentence: It’s your future BFF & concert buddy\n", + "NO RESULTS\n", + "ID: 7389660066, sentence: We met at the Don Tolliver show and wanted to hang out but we got separated by the subway system before we could exchange numbers :( you were badass and I would love to hang out again soon\n", + "ADDING TO afterthought\n", + "ID: 7389589728, sentence: We bumped into each other near the Home Depot in Yonkers\n", + "NO RESULTS\n", + "ID: 7389589728, sentence: You were in a blue Toyota sedan and I in was in a Bentley\n", + "ADDING TO intro\n", + "ID: 7389589728, sentence: You are petite\n", + "NO RESULTS\n", + "ID: 7389589728, sentence: beautiful brown eyes\n", + "NO RESULTS\n", + "ID: 7389589728, sentence: honey complexion\n", + "NO RESULTS\n", + "ID: 7389589728, sentence: with an infectious smile\n", + "NO RESULTS\n", + "ID: 7389589728, sentence: I want to know you\n", + "NO RESULTS\n", + "ID: 7389589728, sentence: Let me take you to dinner\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: Miss G\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: I wonder if you will see this\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: I think about you often\n", + "ADDING TO afterthought\n", + "ID: 7389588294, sentence: We were acquaintances who would randomly and intermittently speak when bumping into each other\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: I miss our conversations\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: I could talk to you for hours\n", + "ADDING TO interaction\n", + "ID: 7389588294, sentence: You are such an open\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: honest\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: and transparent woman\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: I really respect and admire the woman you are\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: I hope all is well with you and your life\n", + "NO RESULTS\n", + "ID: 7389588294, sentence: And I hope that the universe lets this message find you\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: There was a guy around 11ish today by the fridge at Civic Deli on Worth St\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: He was restocking drinks\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: You and I were trying to grab a drink but he was in our way\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: We looked at each other and laughed\n", + "ADDING TO interaction\n", + "ID: 7389557642, sentence: You were wearing a suit and bought a water and snack bar\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: I really want to find you again and was about to ask for your name\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: Long shot but if it’s you\n", + "NO RESULTS\n", + "ID: 7389557642, sentence: let me know what I was wearing and how I looked\n", + "ADDING TO interaction\n", + "ID: 7389557642, sentence: I’d love to meet you\n", + "NO RESULTS\n", + "ID: 7389539492, sentence: It was my first rave and you’ve made it my most memorable in years\n", + "NO RESULTS\n", + "ID: 7389539492, sentence: So to your 2 gf who were raving the first time as well\n", + "NO RESULTS\n", + "ID: 7389539492, sentence: I remembered you offered your ig but I didn’t take it down\n", + "NO RESULTS\n", + "ID: 7389539492, sentence: even went to Ezoo hoping to see you again bc you said I should go and you were going but no luck seeing ya\n", + "NO RESULTS\n", + "ID: 7389539492, sentence: I wore blue button up shirt and have a right arm sleeve tattoo\n", + "NO RESULTS\n", + "ID: 7389459387, sentence: You're there in the early mornings\n", + "NO RESULTS\n", + "ID: 7389459387, sentence: Brown hair\n", + "NO RESULTS\n", + "ID: 7389459387, sentence: firm body\n", + "NO RESULTS\n", + "ID: 7389459387, sentence: very attractive\n", + "NO RESULTS\n", + "ID: 7389459387, sentence: I think you know I have an appreciation for your AMAZING glutes\n", + "ADDING TO afterthought\n", + "ID: 7389459387, sentence: Tell me what I look like\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: Hi there\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: You are a gorgeous brunette trans girl\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: We connected online and met a few weeks ago at a hotel in Midtown West and had a great time\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: It felt like we really connected mentally and physically\n", + "ADDING TO afterthought\n", + "ID: 7389351208, sentence: I am goodlooking fit professional white guy in my early 40’s and you’re in your late 20’s\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: We are a great match and I’d love to keep it going but lost your contact information\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: If this rings a bell\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: please reach out so we can re\n", + "NO RESULTS\n", + "ID: 7389351208, sentence: connect\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: We were messaging each other online all night\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: We shared a lot about each other\n", + "ADDING TO interaction\n", + "ADDING TO more\n", + "ID: 7401675104, sentence: you told me that you were a waitresshostess at a restaurant\n", + "ADDING TO more\n", + "ID: 7401675104, sentence: how that industry was hurting\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: that you were looking into something more\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: amazon drop shipping\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: other means of income\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: I think we really connected\n", + "ADDING TO afterthought\n", + "ID: 7401675104, sentence: spoke about writing\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: nature\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: ambitions and other personal stuff\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: Your ambition peaked my interests and I think you have a good head on your shoulders as well as a good heartspirit\n", + "ADDING TO afterthought\n", + "ID: 7401675104, sentence: I told you about the house in Bayshore and the opportunity to work with beauty supplies and to learn marketing\n", + "ADDING TO more\n", + "ID: 7401675104, sentence: I'd really like to meet up with you\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: go on a bike ride as we discussed\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: I'm interested in helping you out and have you learn some valuable skills to progress in life\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: If anyone knows this person please share this with her\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: it would be immensely appreciated\n", + "NO RESULTS\n", + "ID: 7401675104, sentence: Thank you\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: I got on in Corona PlazaI sat across from youYou were in two seater at end of car\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: You had black jacket\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: black sweat pants\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: you wore no mask and had tightly shaved beard\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: You are light skinned latin or white man\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: I'm latin hombre interested in meeting\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: handling things for you\n", + "NO RESULTS\n", + "ID: 7401664687, sentence: You got off at 5th Ave 42nd St\n", + "NO RESULTS\n", + "ID: 7401631397, sentence: You came for a short visit a few summers back \n", + "NO RESULTS\n", + "ID: 7401631397, sentence: would like to do that again\n", + "NO RESULTS\n", + "ID: 7401631397, sentence: reply back and tell me about our time together so I know it's you\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: Hey\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: You and your friend came up to me ('T') and said you liked my wig ( you didn't know if it was real or not :D)\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: We ended up having a great conversation about Marie Curie\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: Freddie Mercury\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: and other topics\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: and we connected on what seemed a really real level\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: We had run into each other later that night and were going to talk more\n", + "ADDING TO interaction\n", + "ID: 7401664423, sentence: but I ended up leaving early\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: So I know it's you\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: let me know the name of the country of the project you're working on at your firm\n", + "NO RESULTS\n", + "ID: 7401664423, sentence: Thanks\n", + "NO RESULTS\n", + "ID: 7401660531, sentence: you were around 19 yo walking around the mall adjusting yourself\n", + "NO RESULTS\n", + "ID: 7401660531, sentence: lets talk\n", + "ADDING TO interaction\n", + "ID: 7401635058, sentence: The Gym at Judson Memorial Church 243 Thompson St New York Public Library \n", + "NO RESULTS\n", + "ID: 7401635058, sentence: Stephen A\n", + "NO RESULTS\n", + "ID: 7401635058, sentence: Schwarzman Building (New York Public Library) New York Public Library \n", + "NO RESULTS\n", + "ID: 7401635058, sentence: Stephen A\n", + "NO RESULTS\n", + "ID: 7401635058, sentence: Schwarzman Building (New York Public Library) 476 5th Ave East Boat Seafood Restaurant 72 Kenmare St Leica Store SoHo 460 W Broadway\n", + "NO RESULTS\n", + "ID: 7401639685, sentence: Damn\n", + "NO RESULTS\n", + "ID: 7401639685, sentence: looking good\n", + "NO RESULTS\n", + "ID: 7401639685, sentence: I’ve seen you before\n", + "NO RESULTS\n", + "ID: 7401639685, sentence: I can’t help but stare\n", + "NO RESULTS\n", + "ID: 7401639685, sentence: We should meet up\n", + "NO RESULTS\n", + "ID: 7401611625, sentence: We used to hang out and I would pick you up and we would go back to my place or just drive around\n", + "NO RESULTS\n", + "ID: 7401551874, sentence: Traveling along the belt at 5am to queens and on the way home at 3:30 I’m a mar mal looking for mal for some safe fun\n", + "ADDING TO interaction\n", + "ID: 7401555082, sentence: You had on a Steelers Jersey\n", + "NO RESULTS\n", + "ID: 7401555082, sentence: I was the loud one\n", + "NO RESULTS\n", + "ID: 7401555082, sentence: Reach out if your into guys\n", + "NO RESULTS\n", + "ID: 7401555082, sentence: thanks\n", + "NO RESULTS\n", + "ID: 7401548122, sentence: You were short with nice hips and amazing lips I loved your smile as you looked at my grey sweats …yes it’s real\n", + "ADDING TO intro\n", + "ADDING TO interaction\n", + "ID: 7401548122, sentence: Cute Black guy from the corner store…\n", + "NO RESULTS\n", + "ID: 7401548122, sentence: would love to see more of you\n", + "NO RESULTS\n", + "ID: 7401548122, sentence: Let’s enjoy this Halloween\n", + "NO RESULTS\n", + "ID: 7401530057, sentence: Got on train next to you and we smiled a few times\n", + "ADDING TO interaction\n", + "ID: 7401530057, sentence: Sad when left the train after just a few stops\n", + "NO RESULTS\n", + "ID: 7401530057, sentence: You are handsome man with short dark hair\n", + "NO RESULTS\n", + "ID: 7401530057, sentence: Yellow sweatshirt and black shorts\n", + "NO RESULTS\n", + "ID: 7401530057, sentence: Would like to say hi\n", + "NO RESULTS\n", + "ID: 7401531159, sentence: You were the cute dude with cat ears waiting on line for the bathroom\n", + "ADDING TO intro\n", + "ID: 7401531159, sentence: I was the red head that kept on running into you and had an entertaining convo with you (at least I think I did)\n", + "ADDING TO afterthought\n", + "ID: 7401531159, sentence: Let’s connect\n", + "NO RESULTS\n", + "ID: 7401510462, sentence: you were wearing a grey shirt\n", + "NO RESULTS\n", + "ID: 7401510462, sentence: green eyes blond\n", + "NO RESULTS\n", + "ID: 7401510462, sentence: angelic looks\n", + "NO RESULTS\n", + "ID: 7401510462, sentence: We made eye contact\n", + "NO RESULTS\n", + "ID: 7401510462, sentence: I believe you smiled\n", + "ADDING TO interaction\n", + "ADDING TO afterthought\n", + "ID: 7401510462, sentence: and I smiled back\n", + "ADDING TO interaction\n", + "ID: 7401510462, sentence: If you see this\n", + "NO RESULTS\n", + "ID: 7401510462, sentence: let's chat\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: You made my day today\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: Made me smile a lot though my mask may have hidden it\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: Called me young man\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: which is a bit ironic\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: You were adorable and I wish I could have chatted with you more\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: If you see this\n", + "NO RESULTS\n", + "ID: 7401466486, sentence: I’d love to hear from you \n", + "NO RESULTS\n", + "ID: 7401419954, sentence: You are a desi indian female and we connected here but lost touch\n", + "NO RESULTS\n", + "ID: 7401419954, sentence: If you happen to be out there please get back to me\n", + "NO RESULTS\n", + "ID: 7401419954, sentence: And yes I’m the desi guy\n", + "NO RESULTS\n", + "ID: 7401419686, sentence: Hi Steve r u there? I'm the younger Indian guy and we connected here\n", + "NO RESULTS\n", + "ID: 7401419686, sentence: If you are there message me\n", + "NO RESULTS\n", + "ID: 7401274016, sentence: You were parked next to me in the lot and we were talking for a bit\n", + "ADDING TO intro\n", + "ADDING TO interaction\n", + "ID: 7401274016, sentence: I was the older guy with blue SUV\n", + "NO RESULTS\n", + "ID: 7401274016, sentence: Any interest\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: Hi\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: We shared many lovely emails\n", + "ADDING TO interaction\n", + "ADDING TO more\n", + "ID: 7401206149, sentence: but because you wrote me privately\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: you did not write my email down\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: and you did not save anywhere your own account's password\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: and so you forgot it a couple of times and spent time and effort trying to remember and enter it correctly so you could get into your account with my email address\n", + "ADDING TO afterthought\n", + "ID: 7401206149, sentence: I know it has happened again\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: and so we fell out of touch\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: If you read this\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: you'll recognize who you are and who I am\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: Write me\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: since I also worry that perhaps you got sick again from Covid or something worse happened to you and I worry\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: \n", + "NO RESULTS\n", + "ID: 7401206149, sentence: JimThis is from the last email I got from you: \"Noooooo\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: My beautiful James I’m so glad your back I was really worried that something may have happened to you i wrote you so many times and I was loosing hope to find you for a moment\n", + "NO RESULTS\n", + "ID: 7401206149, sentence: I thought you were unable to write back ohhh I’m so happy you are ok\n", + "ADDING TO afterthought\n", + "ID: 7401206149, sentence: My dear it’s horrible to think you just vanished and I won’t be able to know if you were ok 😘😘😘\"\n", + "NO RESULTS\n", + "ID: 7401241404, sentence: We are both 60+ white males we talked for over 1 hour\n", + "ADDING TO interaction\n", + "ID: 7401241404, sentence: and you made me laugh\n", + "NO RESULTS\n", + "ID: 7401241404, sentence: you seem to want to keep talking to me \n", + "ADDING TO interaction\n", + "ID: 7401241404, sentence: and you ask if i wanted to hang out with you at your place\n", + "ADDING TO afterthought\n", + "ID: 7401241404, sentence: but i had to go\n", + "NO RESULTS\n", + "ID: 7401241404, sentence: The truth is i was to shy\n", + "NO RESULTS\n", + "ID: 7401241404, sentence: would love to talk to you agan if you see this tell me where the Dunkin Donuts was\n", + "ADDING TO interaction\n", + "ID: 7401241404, sentence: looking for you to host only\n", + "ADDING TO interaction\n", + "ID: 7401235567, sentence: me \n", + "NO RESULTS\n", + "ID: 7401235567, sentence: five foot seven two fourty lbs latino 33you\n", + "NO RESULTS\n", + "ID: 7401235567, sentence: good looking mid 30's\n", + "NO RESULTS\n", + "ID: 7401235567, sentence: 50's if this sounds like you I would love to connect\n", + "NO RESULTS\n", + "ID: 7401170527, sentence: You were a man in your late 50’s like me and we used to meet at your place where you’d teach me all kinds of new things\n", + "ADDING TO intro\n", + "ID: 7401170527, sentence: Miss those times and would like to reconnect\n", + "NO RESULTS\n", + "ID: 7401155783, sentence: My beautiful Catherine with the dog Maisie\n", + "NO RESULTS\n", + "ID: 7401155783, sentence: we spoke years ago I think about you often\n", + "ADDING TO afterthought\n", + "ID: 7401149807, sentence: Newly formed tribute band needs professional keyboard player\n", + "NO RESULTS\n", + "ID: 7401149807, sentence: bass guitarist and drummer for paid rehearsals and then paid gigs\n", + "NO RESULTS\n", + "ID: 7401149807, sentence: If interested\n", + "NO RESULTS\n", + "ID: 7401149807, sentence: respond with a bio and a link showing your playing live\n", + "NO RESULTS\n", + "ID: 7401109325, sentence: I usually laugh at these posts bc I wonder why someone wouldn't just talk to someone that they found attractive but now I understand\n", + "ADDING TO interaction\n", + "ID: 7401109325, sentence: I had just come out of a concert and was leaning up against the wall\n", + "NO RESULTS\n", + "ID: 7401109325, sentence: You walked by and we made eye contact multiple times but I was sweaty and covered in beer people spilled so I didn't say hi\n", + "NO RESULTS\n", + "ID: 7401109325, sentence: Your eyes were the most beautiful I've seen in NYC\n", + "NO RESULTS\n", + "ID: 7401091920, sentence: Those dudes are in your DM’s…I’m trying to be cuddled up with you\n", + "NO RESULTS\n", + "ID: 7401091920, sentence: licking your vaginal juices off my lips…\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: We were on the Queens bound J train\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: I was trying to make eye contact with you\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: When we did\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: I nodded and smiled back\n", + "ADDING TO interaction\n", + "ID: 7399634911, sentence: I saw you grin through your mask but nervously turned away\n", + "ADDING TO description\n", + "ADDING TO more\n", + "ID: 7399634911, sentence: I openly date trans women so you’d be in very good hands\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: I’m Black\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: long dreads\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: very well built\n", + "NO RESULTS\n", + "ID: 7399634911, sentence: Coffee…?\n", + "NO RESULTS\n", + "ID: 7401082622, sentence: Hi \n", + "NO RESULTS\n", + "ID: 7401082622, sentence: Was riding bike in staten island and need some partner to ride with\n", + "NO RESULTS\n", + "ID: 7401082622, sentence: I am older male\n", + "NO RESULTS\n", + "ID: 7401082622, sentence: Do not ride very fast so any skill level ok would like to find female or male to chat with while we bike\n", + "NO RESULTS\n", + "ID: 7401083515, sentence: We were both standing in the R train and you were listening to music the whole time\n", + "NO RESULTS\n", + "ID: 7401083515, sentence: I had the option to sit but I didn't and we continued to steal glances at each other\n", + "NO RESULTS\n", + "ID: 7401083515, sentence: You got off first around prospect park avenue I guess\n", + "NO RESULTS\n", + "ID: 7401083515, sentence: Reach out to me if you would like to talk\n", + "ADDING TO interaction\n", + "ID: 7401073080, sentence: hi [redacted]i am thinking about u again joy saturates my cheeks till they cherry the world is a skeleton buried under internet sand interwoven network connection environment\n", + "ADDING TO more\n", + "ID: 7401073080, sentence: all collapse past password protected storefront displays you collect springy bits and wirey tendons rusty skin jagged teeth \n", + "NO RESULTS\n", + "ID: 7401073080, sentence: and use them to speak our mouths are shaped like eye sockets i want to look at you i want to see you i want to eat you i [redacted][redacted][redacted]i chew chew chew like a hurried train\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: Hello I am looking for a former classmate from 2k1 to 2k4 we went to a middle school called Dual Language Middle School previously located on 92st near Central Park West\n", + "ADDING TO interaction\n", + "ID: 7401070587, sentence: Her name is Mariell shes Colombian she was a thin girl she had a brother who went also at the school hes 1 year older than her\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: I already looked for her on social media and she seems not to have anything\n", + "ADDING TO interaction\n", + "ID: 7401070587, sentence: I won't post the last name here\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: Its long shot i find her here\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: But its worth the try\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: If you are Mariell lets hook up and see what happens\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: If you know her you should know her last name\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: I can not put the full number of two thousand and onefour because it thinks its a phone number\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: Instead\n", + "NO RESULTS\n", + "ID: 7401070587, sentence: I put 2k1\n", + "NO RESULTS\n", + "ID: 7401067299, sentence: Hey I was waiting outside for a client to train when you and your friend looked like you were going for a walk run out in Central Park \n", + "ADDING TO description\n", + "ADDING TO interaction\n", + "ID: 7401067299, sentence: We checked each other out but we locked eyes as you looked back at me when you passed me by\n", + "ADDING TO interaction\n", + "ID: 7401067299, sentence: You smiled at me when we locked eyes and I couldn’t get you out of my mind ever since\n", + "ADDING TO interaction\n", + "ID: 7401067299, sentence: I’m writing this again in hopes to see you again \n", + "NO RESULTS\n", + "ID: 7401025838, sentence: Hi\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: I'm looking for Serena\n", + "ADDING TO interaction\n", + "ID: 7401025838, sentence: You're in your 30s\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: work near Union Square and live in Flushing\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: Queens\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: We acquainted through Craigslist\n", + "ADDING TO stop\n", + "ID: 7401025838, sentence: texted and would meet in Union Square after your work\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: This was last year\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: around this time\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: My name's Zack\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: Reach out to me\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: please\n", + "NO RESULTS\n", + "ID: 7401025838, sentence: let's talk\n", + "ADDING TO interaction\n", + "ID: 7401025838, sentence: Thanks\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: I saw you walking out of the 7 11 store this past Saturday afternoon\n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7400953435, sentence: as I was going in\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: you smile at me and I smile back\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: Can’t stop thinking of you now\n", + "ADDING TO more\n", + "ID: 7400953435, sentence: wish I had done something then\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: I’m the white guy with semi long blond hair\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: wearing a Rangers hat\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: You are about 5’2 looks in your mid 30\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: s\n", + "NO RESULTS\n", + "ID: 7400953435, sentence: Im in my early 50s and hope you see this and would want to meet for coffee or something\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: The weekend of October 9 at Paella's across from the Norwalk car dealer\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: You were sitting in the corner(street side) near the window with a male friend and we made eye contact when I walked in\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: then again several more times as I went out to me car\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: When you left you walked through the bar and glanced back at me sitting at the bar\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: or so I thought? You had a red top on with black heels\n", + "ADDING TO afterthought\n", + "ID: 7399490550, sentence: absolutely stunning\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: Hopefully you remember me\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: dirty blond hairblue eyes? I was wearing Khaki's and long sleeve button down shirt\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: Maybe we could get together there for a drink\n", + "NO RESULTS\n", + "ID: 7399490550, sentence: talk?Miss You\n", + "ADDING TO interaction\n", + "ID: 7399947391, sentence: I’m writing this in hopes of the gorgeous Asian woman I saw walking out of Whole Foods in Union Square\n", + "ADDING TO description\n", + "ID: 7399947391, sentence: I was the tall handsome white guy heading back to the office earlier today and I was wearing a black shirt and gray slacks\n", + "NO RESULTS\n", + "ID: 7399947391, sentence: You had on very tight fitting black and white mini skirt high heels and a white top\n", + "NO RESULTS\n", + "ID: 7399947391, sentence: I’m walking back to the office now and can’t get you out of my head as we made eye contact Passing each other\n", + "NO RESULTS\n", + "ID: 7399947391, sentence: Every guy in the street was checking you out that’s how hot you are\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: Was walking along Greenway this weekend and was hard not to notice some guys who were so gifted below\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: Trying to meet an easy going St\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: rate guy that is kinda tired of complications that the often described fairer (s)_ex provides\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: Not looking for anyone looking to meet now\n", + "ADDING TO interaction\n", + "ID: 7397929811, sentence: if you need now\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: please move on and order fast food\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: Looking to chat\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: get to know a bit and if interest handle needs that they aren't providing\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: Only looking for something potentially ongoing with just one g\n", + "ADDING TO interaction\n", + "ID: 7397929811, sentence: uy\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: If interest\n", + "NO RESULTS\n", + "ID: 7397929811, sentence: reach out\n", + "NO RESULTS\n", + "ID: 7400948317, sentence: Asian\n", + "NO RESULTS\n", + "ID: 7400948317, sentence: Looking for female salsa dancer to practice with\n", + "NO RESULTS\n", + "ID: 7400948317, sentence: I need to practice cross body turns\n", + "NO RESULTS\n", + "ID: 7400948317, sentence: I can host\n", + "NO RESULTS\n", + "ID: 7400948317, sentence: I need to practice new turns\n", + "NO RESULTS\n", + "ID: 7400948317, sentence: I am fully vaccinated and tested negative\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: Dear Slim Black guy:My name is Mariah\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: and I was the slim Afro\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: Cuban TSgirl you played strip poker with a few years ago\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: Do you remember? We laughed alot\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: had a few cocktails\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: and deep times\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: I'm back and I hope you find me\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: You are slim\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: black\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: low cut ceasar\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: fit\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: Find me\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: I miss you\n", + "NO RESULTS\n", + "ID: 7397852459, sentence: Leave a photo in my email so I know it's you\n", + "NO RESULTS\n", + "ID: 7400926637, sentence: Looking to connect with you again\n", + "NO RESULTS\n", + "ID: 7400926637, sentence: You were well\n", + "NO RESULTS\n", + "ID: 7400926637, sentence: versed and experienced with hypnosis and were offering to assist me\n", + "NO RESULTS\n", + "ID: 7400926637, sentence: Then COVID happened and your email doesn't work anymore\n", + "NO RESULTS\n", + "ID: 7400926637, sentence: If you're still out there and willing to help me\n", + "NO RESULTS\n", + "ID: 7400926637, sentence: I'd love to hear from you\n", + "NO RESULTS\n", + "ID: 7400888265, sentence: We were both on line for the cashier\n", + "NO RESULTS\n", + "ID: 7400888265, sentence: I caught you checking me out and you looked away\n", + "ADDING TO interaction\n", + "ID: 7400888265, sentence: You probably didn't realize I was checking you out too before you saw me\n", + "ADDING TO description\n", + "ID: 7400888265, sentence: Too bad you were wearing a mask\n", + "NO RESULTS\n", + "ID: 7400888265, sentence: I would have liked to see your smile\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: We smiled at each other a couple of times during the course of that day\n", + "ADDING TO interaction\n", + "ID: 7400900059, sentence: after you made a funny noise when the wind snatched something from me\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: Tell me what flew off\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: You have a shaved head\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: a dangly earring\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: a denim trucker jacket\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: and kind eyes\n", + "NO RESULTS\n", + "ID: 7400900059, sentence: I'd like another opportunity to say 'hello'\n", + "NO RESULTS\n", + "ID: 7400843228, sentence: THERE WAS SOMETHING SPECIAL ABOUT YOU\n", + "NO RESULTS\n", + "ID: 7400843228, sentence: I ENJOYED YOUR VISITS\n", + "NO RESULTS\n", + "ID: 7400843228, sentence: WHEN YOU RETURN PLEASE SEND ME YOUR RECENT PICTURE AND STATS SO I KNOW IT IS YOU\n", + "NO RESULTS\n", + "ID: 7400682068, sentence: Hello\n", + "NO RESULTS\n", + "ID: 7400682068, sentence: we met on here and got together a few times a couple of years ago\n", + "ADDING TO interaction\n", + "ID: 7400682068, sentence: I hope you see this so maybe we can pick up where we left off\n", + "NO RESULTS\n", + "ID: 7400682068, sentence: I am a white male in my 50's and you were in your early 20's\n", + "NO RESULTS\n", + "ID: 7400682068, sentence: We had some incredibly hot times together\n", + "NO RESULTS\n", + "ID: 7397883193, sentence: Saw you at Skyview Center Mall\n", + "NO RESULTS\n", + "ID: 7397883193, sentence: You’re a slender and fit white female and we locked eyes as we walked past each other\n", + "ADDING TO interaction\n", + "ID: 7397883193, sentence: Let’s meet for fun times\n", + "NO RESULTS\n", + "ID: 7397883193, sentence: HMU\n", + "NO RESULTS\n", + "ID: 7397883193, sentence: we can hang out nearby\n", + "NO RESULTS\n", + "ID: 7399298285, sentence: Me a male 52\n", + "NO RESULTS\n", + "ID: 7399298285, sentence: we met several years ago\n", + "ADDING TO interaction\n", + "ID: 7399298285, sentence: You were beautiful and that sun dress left memory burn\n", + "NO RESULTS\n", + "ID: 7399298285, sentence: Got a sec? Hope all is well? Glenn\n", + "NO RESULTS\n", + "ID: 7400609228, sentence: m looking for friend who used to pick me up and I'd take care of it in the car\n", + "ADDING TO interaction\n", + "ID: 7400602947, sentence: Lost connection with you Olga\n", + "NO RESULTS\n", + "ID: 7400602947, sentence: You were a barmaid at the Speakeasy bar in SohoAdam\n", + "ADDING TO intro\n", + "ID: 7400602947, sentence: here I’m sorryCan’t find you\n", + "NO RESULTS\n", + "ID: 7400602947, sentence: Hopefully you don’t hate me\n", + "NO RESULTS\n", + "ID: 7400602947, sentence: Just wanted to see if you were still alive and Apologize to you\n", + "ADDING TO afterthought\n", + "ID: 7400488925, sentence: Hey if you're reading this\n", + "NO RESULTS\n", + "ID: 7400488925, sentence: one\n", + "NO RESULTS\n", + "ID: 7400488925, sentence: thanks for being a nerd 😂\n", + "NO RESULTS\n", + "ID: 7400488925, sentence: And two\n", + "NO RESULTS\n", + "ID: 7400488925, sentence: I'm so sorry for leaving you hanging on the way out\n", + "NO RESULTS\n", + "ID: 7400488925, sentence: I thought I heard you say something but I figured you were still on the phone\n", + "ADDING TO afterthought\n", + "ID: 7400488925, sentence: By the time I got far I realized you might have been talking to me and my kid agreed\n", + "ADDING TO interaction\n", + "ID: 7400488925, sentence: So if you were talking to me I'm super embarrassed that I just walked by\n", + "ADDING TO interaction\n", + "ID: 7400488925, sentence: I'm still here if you wanna talk \n", + "ADDING TO interaction\n", + "ID: 7400488925, sentence: )\n", + "NO RESULTS\n", + "ID: 7400238322, sentence: Your dog’s name is Henry (the cutest) and you live in KK \n", + "NO RESULTS\n", + "ID: 7400238322, sentence: just the same as you probably know by now that I live in EE\n", + "NO RESULTS\n", + "ID: 7400238322, sentence: But that’s about it\n", + "NO RESULTS\n", + "ID: 7400238322, sentence: and I wish we could get to know more over a drink or two\n", + "NO RESULTS\n", + "ID: 7400238322, sentence: neighbor\n", + "NO RESULTS\n", + "ID: 7400238322, sentence: potential friend\n", + "NO RESULTS\n", + "ID: 7400238322, sentence: Opportunity will dictate\n", + "NO RESULTS\n", + "ID: 7400197731, sentence: You wore a gray sweater\n", + "NO RESULTS\n", + "ID: 7400197731, sentence: carried a tote bag\n", + "NO RESULTS\n", + "ID: 7400197731, sentence: and had these really cool black\n", + "NO RESULTS\n", + "ID: 7400197731, sentence: white\n", + "NO RESULTS\n", + "ID: 7400197731, sentence: and gray plaid (gingham?) earringsI certainly sneaked a few glances and I think caught you doing the same? If so\n", + "ADDING TO afterthought\n", + "ID: 7400197731, sentence: coffee or drinks sometime?\n", + "NO RESULTS\n", + "ID: 7400183472, sentence: I learned more from female partners than I have with males\n", + "NO RESULTS\n", + "ID: 7400183472, sentence: I don’t know what it is\n", + "NO RESULTS\n", + "ID: 7400183472, sentence: maybe it’s the lack of machismo\n", + "NO RESULTS\n", + "ID: 7400183472, sentence: Rolling means grappling and not drugs\n", + "NO RESULTS\n", + "ID: 7400183472, sentence: If you are learning or want to share some skills\n", + "NO RESULTS\n", + "ID: 7400183472, sentence: let me know\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: Last Friday evening we both sat for a while on the benches on the West Side walking path\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: facing Little Island\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: I was wearing mostly black and had my bike with me\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: You were wearing mostly black and were on foot\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: We had a nice moment of eye contact as you walked by on your way out \n", + "NO RESULTS\n", + "ID: 7400120996, sentence: a brief moment\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: but it registered with me\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: so\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: what the hell\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: I'll take the chance that you might see this\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: If this was you\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: hope you'll get in touch\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: And tell me some other detail about when we crossed paths (what time of day\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: which direction you walked out or I walked in\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: or come up with something more clever than I have\n", + "NO RESULTS\n", + "ID: 7400120996, sentence: )\n", + "NO RESULTS\n", + "ID: 7400008465, sentence: You thought I beeped at you\n", + "NO RESULTS\n", + "ID: 7400008465, sentence: initially I didn't\n", + "NO RESULTS\n", + "ID: 7400008465, sentence: but as you drove off\n", + "NO RESULTS\n", + "ID: 7400008465, sentence: I couldn't help but honk in vain\n", + "NO RESULTS\n", + "ID: 7398582051, sentence: Looking for the lady that would come to meet me any keep me company while I enjoyed myself\n", + "NO RESULTS\n", + "ID: 7398582051, sentence: I hope you enjoyed the flowers I would bring\n", + "NO RESULTS\n", + "ID: 7398582051, sentence: Hope to see you soon or maybe find a new lady\n", + "NO RESULTS\n", + "ID: 7398582051, sentence: Plz let talk see what can work for both of us\n", + "ADDING TO interaction\n", + "ID: 7398582051, sentence: Love for this to be an on going relationship that benefits both of us \n", + "NO RESULTS\n", + "ID: 7399853821, sentence: Still looking for the F with the amazing glutes that trains early mornings at NYSC in Hawthorne\n", + "ADDING TO interaction\n", + "ID: 7399857556, sentence: We met back pre Trump Pre Covid 2016 I think\n", + "ADDING TO afterthought\n", + "ID: 7399857556, sentence: You are a woman and in the Medical Field and we had commonality with a particular brand of car\n", + "NO RESULTS\n", + "ID: 7399857556, sentence: You were beautiful and interesting\n", + "NO RESULTS\n", + "ID: 7399857556, sentence: I wore a grey suit\n", + "NO RESULTS\n", + "ID: 7399857556, sentence: Me 52 you younger\n", + "NO RESULTS\n", + "ID: 7399857556, sentence: I would love to reconnect \n", + "NO RESULTS\n", + "ID: 7395255935, sentence: I saw you at the Citgo gas station on glenbrook couple of days ago \n", + "ADDING TO intro\n", + "ADDING TO description\n", + "ID: 7395255935, sentence: i was behind you waiting for you to finish then your presence got my attention \n", + "NO RESULTS\n", + "ID: 7395255935, sentence: I would like to chat and get to know each other if that’s possible\n", + "NO RESULTS\n", + "ID: 7399845039, sentence: Used to see her from time to time and she disappeared\n", + "NO RESULTS\n", + "ID: 7399845039, sentence: Anyone know what happened to her?\n", + "NO RESULTS\n", + "ID: 7399817866, sentence: I was sitting across from you on an uptown C this morning\n", + "ADDING TO intro\n", + "ID: 7399817866, sentence: You got off at 23rd\n", + "NO RESULTS\n", + "ID: 7399817866, sentence: You have beautiful long black hair\n", + "NO RESULTS\n", + "ID: 7399817866, sentence: wore mostly grey and black\n", + "NO RESULTS\n", + "ID: 7399817866, sentence: had glasses on and you were reading a book\n", + "ADDING TO description\n", + "ID: 7399817866, sentence: Everything about you was so perfect although your sneakers could use an upgrade\n", + "NO RESULTS\n", + "ID: 7399817866, sentence: Why not let this friendly (no strings) daddy type buy you some cool new sneakers? Tell me what color your backpack was\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: We connected online\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: You told me you went to Kingsborough Community College and were studying in the medical field\n", + "ADDING TO more\n", + "ID: 7399783108, sentence: You are currently working as a waitresshostess at a restaurant and want a change from it to pursue marketing\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: I told you about my marketing business and my friend who owns a beauty supply store and how we could potentially work together on that project\n", + "ADDING TO more\n", + "ID: 7399783108, sentence: plus a few other projects we can work on\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: You spoke about your side hustles like Amazon Drop Shipping\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: how you wanted to to learn marketing\n", + "ADDING TO afterthought\n", + "ID: 7399783108, sentence: looking to get away from Brooklyn and escape from the city\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: I told you about the opportunity in Bayshore and how we could work together and for you to develop your skills\n", + "ADDING TO more\n", + "ID: 7399783108, sentence: We connected about shared ambitions and love for nature\n", + "ADDING TO interaction\n", + "ADDING TO more\n", + "ID: 7399783108, sentence: writing and other personal things\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: We texted each other all night and really hit it off\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: The plan was to meet out in Long Island and sit down to get to know each other more\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: Recently you have tried to re\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: establish contact with me on the same platform but unfortunately there seems to be gatekeeping going on keeping us from reaching each other again\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: I'm doing all that I can to put it into my own hands to try and find you\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: If anyone knows how to reach the person I am looking for\n", + "ADDING TO interaction\n", + "ID: 7399783108, sentence: please show her this post\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: it would be immensely appreciated\n", + "NO RESULTS\n", + "ID: 7399783108, sentence: Thank you\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: Last Sunday afternoon \n", + "NO RESULTS\n", + "ID: 7399767919, sentence: we walk by each other in Kissina Park\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: You were with a couple of people and we look at each other and you smile at me\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: I kept walking and try to find you again\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: You are Asian\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: about mid 30\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: s 5\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: 2\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: 5\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: 3\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: tall Beautiful long black hair\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: very nice smile\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: I’m the guy wearing the NewYork Jets hat\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: in my early 50\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: s\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: m\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: Hope you see this\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: would like to meet\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: maybe in Kissina Park\n", + "NO RESULTS\n", + "ID: 7399767919, sentence: or take you out for coffee or to dinner\n", + "NO RESULTS\n", + "ID: 7399701098, sentence: M Looking for my loaded black friend from Yonkers or someone similar\n", + "NO RESULTS\n", + "ID: 7399666847, sentence: You were at the DMV at the same time as me\n", + "ADDING TO intro\n", + "ID: 7399666847, sentence: You didn’t notice me at first\n", + "NO RESULTS\n", + "ID: 7399666847, sentence: but I definitely noticed you\n", + "NO RESULTS\n", + "ID: 7399666847, sentence: When I finished at the counter and turned around\n", + "ADDING TO more\n", + "ID: 7399666847, sentence: you were staring right at me like you were waiting for me to turn around\n", + "NO RESULTS\n", + "ID: 7399666847, sentence: Your Greenlight tote was cute\n", + "NO RESULTS\n", + "ID: 7399666847, sentence: describe me so I know it’s you :\n", + "NO RESULTS\n", + "ID: 7399666847, sentence: )\n", + "NO RESULTS\n", + "ID: 7399664820, sentence: I was walking south down 2nd\n", + "ADDING TO intro\n", + "ID: 7399664820, sentence: you were sitting outside Kona Coffee in a Dino Jr\n", + "NO RESULTS\n", + "ID: 7399664820, sentence: shirt\n", + "NO RESULTS\n", + "ID: 7399664820, sentence: You stared at me for a little while\n", + "ADDING TO interaction\n", + "ID: 7399664820, sentence: and I wanted to say something but I had a shitty day\n", + "ADDING TO afterthought\n", + "ID: 7399664820, sentence: Almost turned back when I got to the F train\n", + "ADDING TO more\n", + "ID: 7399664820, sentence: Tell me what shirt I was wearing and I’ll know it’s you xo\n", + "NO RESULTS\n", + "ID: 7399630706, sentence: We used to b b8 buds pre\n", + "NO RESULTS\n", + "ID: 7399630706, sentence: pandemic \n", + "NO RESULTS\n", + "ID: 7399630706, sentence: meeting in breathers around UnionSq\n", + "NO RESULTS\n", + "ID: 7399630706, sentence: We lost touch and I’m looking to reconnect… let’s get back to it man\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: Calling all Jane’s\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: are you out there?Working on an ongoing portrait series all based around the name Jane\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: The idea is to celebrate the similarities and differences around individuals with the same name\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: I've been working as a photographer for 8+years\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: The goal for the portraits is to be completed in each individuals home\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: I'm fully vaccinated and will wear a mask\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: Each participant will get an 8x10 artist print in return\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: If you would like to participate in the project\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: feel free to get in touch\n", + "NO RESULTS\n", + "ID: 7399583647, sentence: Cheers\n", + "NO RESULTS\n", + "ID: 7399603717, sentence: You were trying on ties with a new suit asked me for my opinión\n", + "ADDING TO intro\n", + "ID: 7399603717, sentence: Probably in your mid 50’s\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: We briefly met at a dive\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: y bar in the West Village\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: We spoke about how you recently moved to the city (Midtown West\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: I think?)\n", + "ADDING TO afterthought\n", + "ID: 7399573694, sentence: college towns and you pursuing a career in law\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: It was a short but pleasant conversation\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: and I'd be open to keep it going \n", + "NO RESULTS\n", + "ID: 7399573694, sentence: always keen on making new friends\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: Chances are that this will fall through the cracks\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: but let's see what happens\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: If you're interested let me know the infamous drink we spoke about\n", + "NO RESULTS\n", + "ID: 7399573694, sentence: or what I was wearing\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: Hey dude\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: You were rockin an auburn Franklin Pierce Women's Rugby tank at the C\n", + "ADDING TO intro\n", + "ID: 7399558701, sentence: Town grocery store at around 2:30 this afternoon and looking incredibly hot\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: White guy\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: dark hair\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: beard\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: wearing blue shorts\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: 30's\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: about 5'10\"\n", + "NO RESULTS\n", + "ID: 7399558701, sentence: VGL masc white guy here too\n", + "NO RESULTS\n", + "ID: 7399547982, sentence: We met at the light just before the Rye Ridge Shopping Center going north\n", + "NO RESULTS\n", + "ID: 7399547982, sentence: Sorry for driving aggressively coming up from behind\n", + "NO RESULTS\n", + "ID: 7399547982, sentence: Even though I had my stereo pretty much on full blast\n", + "NO RESULTS\n", + "ID: 7399547982, sentence: like my taste in music at least \n", + "NO RESULTS\n", + "ID: 7399420897, sentence: Passable Trans women looking to play \n", + "NO RESULTS\n", + "ID: 7399420897, sentence: Gen men onlyI can hostStaten Island only\n", + "NO RESULTS\n", + "ID: 7399382168, sentence: Talented plumber here\n", + "NO RESULTS\n", + "ID: 7399382168, sentence: guaranteed to take care of any clog you may have\n", + "NO RESULTS\n", + "ID: 7399382168, sentence: get back to me for details\n", + "NO RESULTS\n", + "ID: 7399343361, sentence: Saw u walking up New Dorp Ln and we smiled as we passed each other\n", + "ADDING TO interaction\n", + "ID: 7399343361, sentence: I am very into girls like u and would love to chat or meet for coffee\n", + "NO RESULTS\n", + "ID: 7399343361, sentence: Hope u see this\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: You sounded so cute\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: Seemed like you were having a kickass beach after\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: party with a gf & one or two guys\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: My buddy & I were chilling on the sand\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: closer to Playland\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: but not super far off\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: When you noticed me\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: you asked if I could swim\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: I said\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: \"Totally\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: Just a sec\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: \" Stripped down to my boxers & swam your way\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: Got outta the water a couple mins\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: later\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: where I thought you guys were hanging\n", + "ADDING TO afterthought\n", + "ID: 7396570373, sentence: but couldn't find you\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: Not sure if you had to go\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: left the sand\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: or whatever\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: I was so bummed\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: Didn't think you were with either guy\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: but even still\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: would have loved to have met you\n", + "NO RESULTS\n", + "ID: 7396570373, sentence: Such an incredibly cool chick\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: Here’s hoping you\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: as a film dude and fan of psychogeography\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: are the prime demographic for something as esoteric as missed connections\n", + "ADDING TO stop\n", + "ADDING TO stop\n", + "ID: 7399265929, sentence: Sorry if I’m typecasting\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: but c’mon\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: You had nice eyes and warm hands\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: A handshake that felt like a hug\n", + "ADDING TO afterthought\n", + "ID: 7399265929, sentence: You said you’d see me inside\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: but we never did: I’d like a rain check\n", + "NO RESULTS\n", + "ID: 7399265929, sentence: Remind me where you and I are from (what’s a post like this if not a painted barn?) and let’s keep in touch\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: This is a longshot\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: a really long shot\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: But waiting for the LIRR late Saturday nightSunday morning around 2:30am\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: we caught eyes a handful of times\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: You were tall with medium length hair\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: tan jacket\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: standing with your friend who was also in a tan jacket\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: I was with my friend by the pillar a few feet from you\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: You kept looking back at me as you went down to your train\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: and I smiled your way\n", + "ADDING TO interaction\n", + "ID: 7399271734, sentence: but I wish one of us had just said something or I had called you back over\n", + "ADDING TO interaction\n", + "ID: 7399271734, sentence: I would love to meet youget to know more about you\n", + "NO RESULTS\n", + "ID: 7399271734, sentence: tell me what train line you were getting on so I know it's you\n", + "NO RESULTS\n", + "ID: 7399229447, sentence: We locked eyes a few times you had on sweats and a black mask \n", + "ADDING TO interaction\n", + "ID: 7399229447, sentence: Tattoo behind your right ear and colorful adidas on\n", + "NO RESULTS\n", + "ID: 7399229447, sentence: I'm the guy with a black and white sweater and black dad hat \" good vibes onlyYou looked back at me before getting off on canal st \n", + "ADDING TO interaction\n", + "ID: 7399229447, sentence: Would love to get to know ya and missed the opportunity\n", + "NO RESULTS\n", + "ID: 7399229447, sentence: If you're out there reading this please reach out \n", + "NO RESULTS\n", + "ID: 7399229447, sentence: Email \n", + "NO RESULTS\n", + "ID: 7399204937, sentence: You helped me pick out wood paint\n", + "NO RESULTS\n", + "ID: 7399204937, sentence: that I left without Bc you were sold out\n", + "NO RESULTS\n", + "ID: 7399204937, sentence: You were funny\n", + "NO RESULTS\n", + "ID: 7399204937, sentence: Let’s grab a coffee?\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: Train was coming from \"upstate\" we both transferred at Seacacus and got off at Penn Station\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: You were wearing black converse\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: and dark blue jeans\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: I think you're really cute\n", + "ADDING TO afterthought\n", + "ID: 7399163709, sentence: We made eye contact a few times\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: I wish I had said something to you\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: We were standing near eachother in between the train doors because the train didn't have enough seating\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: I had a suitcase with me\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: Tell me what color it is if it was you and you're interested\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: Edit for clarity to those responding and asking\n", + "NO RESULTS\n", + "ID: 7399163709, sentence: I'm a woman\n", + "NO RESULTS\n", + "ID: 7399101311, sentence: You were carrying a trader joes bag and we locked eyes a few times in the waiting room and again as I was riding away on my bike\n", + "ADDING TO intro\n", + "ADDING TO interaction\n", + "ID: 7399101311, sentence: Let’s grab a drink\n", + "NO RESULTS\n", + "ID: 7399037136, sentence: We use to hang out at your place a lot on 28th and Lex\n", + "NO RESULTS\n", + "ID: 7399037136, sentence: We lost touch but hopefully you’ll see this and we can reconnect\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: Hi\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: You were at the AJJ Concert at Le Poisson Rouge last night\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: You wore a white cap\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: blue t shirt\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: and flannel\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: You crowd surfed\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: We moshed together a little bit and then you and your friends smoked a cig outside next to me\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: But we never really got to speak\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: as my shyness got the best of me\n", + "NO RESULTS\n", + "ID: 7398877696, sentence: Hoping you see this and I’ll one day get another chance to be moonstruck by you\n", + "NO RESULTS\n", + "ID: 7398897730, sentence: Remember the $200 I have for you\n", + "NO RESULTS\n", + "ID: 7398897730, sentence: where are you hiding???Message me: ht tps:youtu\n", + "NO RESULTS\n", + "ID: 7398897730, sentence: bem2PY2qwRs8I\n", + "NO RESULTS\n", + "ID: 7398792522, sentence: you commented on my jacket before stepping off the train i was in a rush to be somewhere but really regret not having gotten off as well i hope this find you as i would really like to get to know you\n", + "ADDING TO more\n", + "ID: 7398675380, sentence: Lost contact with two painting employees\n", + "NO RESULTS\n", + "ID: 7398675380, sentence: Hit me back ASAP\n", + "NO RESULTS\n", + "ID: 7398675380, sentence: After COVID New work projects await\n", + "NO RESULTS\n", + "ID: 7398653442, sentence: I was checking you out at Montague st\n", + "ADDING TO intro\n", + "ID: 7398653442, sentence: Then at Atlantic you dropped your brown university sweatshirt that I returned to you\n", + "ADDING TO more\n", + "ID: 7398653442, sentence: I was about to holler at you when you took a call\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: Friday\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: we got on the same F train to Coney at West 4th\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: You were wearing all red\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: except for kicks\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: Nose ring\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: You kept moving from one side of the train to the other\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: I was wearing bbcap\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: white BenSherman track jacket\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: black hoodie n Jordans\n", + "NO RESULTS\n", + "ID: 7398610362, sentence: Will ask fakers what stop you got off at so don't waste your time\n", + "NO RESULTS\n", + "ID: 7398547785, sentence: It was my first rave and you’ve made it my most memorable in years\n", + "NO RESULTS\n", + "ID: 7398547785, sentence: So to your 2 gf who were raving the first time as well\n", + "NO RESULTS\n", + "ID: 7398547785, sentence: I remembered you offered your ig but I didn’t take it down\n", + "NO RESULTS\n", + "ID: 7398547785, sentence: even went to Ezoo hoping to see you again bc you said I should go and you were going but no luck seeing ya\n", + "NO RESULTS\n", + "ID: 7398547785, sentence: I wore blue button up shirt and have a right arm sleeve tattoo\n", + "NO RESULTS\n", + "ID: 7398538639, sentence: You were 3 girls and 1 guy and you asked me to join you guys at your table at the Anchored Inn bar near Meadow Street\n", + "ADDING TO intro\n", + "ID: 7398538639, sentence: 2 of you were from Colombia and one was from Afghanistan\n", + "NO RESULTS\n", + "ID: 7398538639, sentence: We talked about going back to Williamsburg with you and were about to book an Uber when my friend started behaving badly as he was wasted\n", + "ADDING TO interaction\n", + "ID: 7398538639, sentence: I had to take him away and couldn't ask for your number\n", + "NO RESULTS\n", + "ID: 7398538639, sentence: It was lovely talking with you and it would be great to meetup with you again\n", + "ADDING TO interaction\n", + "ID: 7396375956, sentence: We use to walk our dogs together and talk\n", + "ADDING TO interaction\n", + "ID: 7396375956, sentence: I know last time was awkward but i really enjoyed it\n", + "NO RESULTS\n", + "ID: 7396375956, sentence: I miss you\n", + "NO RESULTS\n", + "ID: 7396375956, sentence: Let me know if you still want to walk with me\n", + "NO RESULTS\n", + "ID: 7393955753, sentence: Missing my weekly lunch date with my friend from grand concourse\n", + "NO RESULTS\n", + "ID: 7393955753, sentence: Would love to start up again\n", + "NO RESULTS\n", + "ID: 7393955753, sentence: Let me know if you are avail again\n", + "NO RESULTS\n", + "ID: 7393955753, sentence: P\n", + "NO RESULTS\n" + ] + } + ], + "source": [ + "def addEntry(id, direction, sentence, city, category):\n", + " if category != \"stop\":\n", + " toAdd = (id, direction, city, sentence, category)\n", + " create_or_append_row(\"novelsDB.csv\", toAdd, fieldnames=NOVELS_DB_FIELDNAMES)\n", + "\n", + "# append_row(\"test.csv\", (1, \"dir\", \"chicago\", \"this is a sentence\", \"category\"))\n", + "\n", + "## process the data\n", + "\n", + "split_sentences_from_file(\"sampledata/newyork.jsons\")" + ] + }, + { + "cell_type": "markdown", + "id": "28a15925-ce89-4038-8151-65ab2e03ed48", + "metadata": {}, + "source": [ + "## Create Novel" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "ca87225a-53c0-4a66-b7ef-72f5d42b9a02", + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "from random import randrange\n", + "import datetime\n", + "import os" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "01bd6da8-1f6e-4d50-b111-0e345ff7d936", + "metadata": {}, + "outputs": [], + "source": [ + "# city = \"all\"\n", + "city = \"newyork\"\n", + "direction = \"all\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6ebf62d0-fd34-432f-80bc-81966edd6cf1", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "089e4e38-c88e-4e0d-a568-02f07aff5066", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "source": [ + "#setting up optional theme for novel\n", + "theme = []\n", + "theme_file = '' # input(\"Please enter the name of the theme file. If none, hit return: \")\n", + "print (len(theme))" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "bac87083-5e7a-4d4e-830d-601de9712dbb", + "metadata": {}, + "outputs": [], + "source": [ + "#!!! CHANGE ORDER OF SENTENCE TYPES HERE !!!\n", + "# this is the array that the looping is referring to to tell what type of sentence you are on\n", + "content = [\"intro\", \"description\", \"interaction\", \"more\", \"afterthought\"]\n", + "content_lists = []\n", + "\n", + "for c in content:\n", + " c = []\n", + " content_lists.append(c)\n", + "\n", + "#initialize blank list, this is where we are storing the novel and the IDs of all the sentences in it\n", + "novel = []\n", + "ids = []\n", + "\n", + "#setting up lists for the pronoun exchanges\n", + "# !!! CHANGE PRONOUN FILE HERE !!!\n", + "fromWords = []\n", + "toWords = []\n", + "fromFile = \"from.txt\"\n", + "toFile = \"w4m.txt\"" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "abc26a56-5ad8-4aab-b36b-db16e20ae165", + "metadata": {}, + "outputs": [], + "source": [ + "#function to pick a random sentence from a specified array\n", + "def selectSentence(type):\n", + " seed = randrange(len(type))\n", + " return seed" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "e487b015-f91f-4672-b529-45d6802f49ea", + "metadata": {}, + "outputs": [], + "source": [ + "NOVEL_CHARACTER_COUNT = 2000" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "2217a133-859a-45e5-a0d6-a2051289325a", + "metadata": {}, + "outputs": [], + "source": [ + "def printNovel():\n", + "\n", + " #generates a unique file name with the city and the date/time\n", + " pubdate = datetime.datetime.now()\n", + " filename = \"novels/\" + city + \"-\" + pubdate.strftime(\"%B%d%y-%I%M%p\") + \".txt\"\n", + " dir = os.path.dirname(filename)\n", + " if not os.path.exists(dir):\n", + " os.makedirs(dir)\n", + "\n", + " print (\"Title is \" + filename)\n", + "\n", + " #pick a intros sentence at random from the list, append it to the novel list\n", + " introsSentence = selectSentence(content_lists[0])\n", + " novel.append(content_lists[0][introsSentence][0])\n", + " # print content_lists[0][introsSentence][0]\n", + " ids.append(content_lists[0][introsSentence][1])\n", + "\n", + " #if you want to start the novel with a type other than the first, change this to between 0-4\n", + " currentSentence = 0\n", + " count = len(content_lists[0][introsSentence][0])\n", + "\n", + " print (\"Intro sentence selected.\")\n", + "\n", + " #while the total character count is less than 5000...\n", + " # !!! CHANGE CHARACTER COUNT HERE !!!\n", + " while count < NOVEL_CHARACTER_COUNT:\n", + " try:\n", + " total = len(content)-1\n", + "\n", + " #picking new sentence type based on last sentence type\n", + " #first type of sentence is only used at the beginning. the other types cycle through.\n", + "\n", + " if currentSentence == total:\n", + " nextSentence = selectSentence(content_lists[total])\n", + " newcopy = content_lists[total][nextSentence][0]\n", + " newid = content_lists[total][nextSentence][1]\n", + "\n", + " novels_set = set(novel)\n", + "\n", + " if newcopy in novels_set:\n", + " #print (\"Found a \" + content[i] + \" match! Trying again.\")\n", + " currentSentence = i\n", + "\n", + " else:\n", + " novel.append(newcopy)\n", + " ids.append(newid)\n", + "\n", + " # for more of the first type of sentence (intro), change this to 0\n", + " currentSentence = 1\n", + " #print (newcopy)\n", + "\n", + " #adding the length of the last sentence to the total character count, determines whether the loop runs again\n", + " count += len(novel[-1])\n", + "\n", + " else:\n", + " for i in range(0, total):\n", + "\n", + " if currentSentence == i:\n", + "\n", + " # print (currentSentence)\n", + " nextSentence = selectSentence(content_lists[i+1])\n", + " newcopy = content_lists[i+1][nextSentence][0]\n", + " newid = content_lists[i+1][nextSentence][1]\n", + "\n", + " novels_set = set(novel)\n", + "\n", + " if newcopy in novels_set:\n", + " #print (\"Found a \" + content[i] + \" match! Trying again.\")\n", + " currentSentence = i\n", + "\n", + " else:\n", + " novel.append(newcopy)\n", + " ids.append(newid)\n", + " currentSentence = i+1\n", + " # print (newcopy)\n", + " count += len(novel[-1])\n", + "\n", + " except KeyboardInterrupt:\n", + " break\n", + "\n", + " #put a final sentence to end the novel\n", + " nextSentence = selectSentence(content_lists[len(content)-1])\n", + " novel.append(content_lists[len(content)-1][nextSentence][0])\n", + "\n", + " #writing to a text file\n", + " file = open(filename, \"w\")\n", + "\n", + " #looping through novel list, cleaning up the text a little, and writing each sentence to the file\n", + " for sentence in novel:\n", + " sentence = sentence.strip()\n", + " sentence = sentence.lower()\n", + " for i in range(0,len(fromWords)):\n", + " sentence = sentence.replace(fromWords[i], toWords[i])\n", + " sentence = sentence.capitalize()\n", + " sentence = sentence.replace(\"i'd\", \"I'd\").replace(\"i'm\", \"I'm\").replace(\" i \", \" I \").replace(\"i'll\", \"I'll\")\n", + "\n", + " #print (sentence)\n", + " file.write(sentence + \". \")\n", + "\n", + " file.close()\n", + "\n", + " print (\"Novel is generated at \" + filename + \", count of \" + str(count) + \" characters\")" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "55994f86-ef04-4b49-8661-8ada87e78154", + "metadata": {}, + "outputs": [], + "source": [ + "#function to load words from a text file into an array\n", + "def loadFromFile(filename, destination):\n", + "\n", + " file = open(\"dictionaries/\" + filename, \"r\")\n", + " phrases = file.read()\n", + " phrases = phrases.split('\\n')\n", + "\n", + " for phrase in phrases:\n", + " destination.append(phrase)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "4f928b8f-b9bf-4cb4-9e66-a3289378a295", + "metadata": {}, + "outputs": [], + "source": [ + "theme.append(' ')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "1dacb120-1baf-4184-b3d6-3d3a99f85b33", + "metadata": {}, + "outputs": [], + "source": [ + "#load theme file\n", + "if theme_file != \"\":\n", + " loadFromFile(theme_file, theme)\n", + "else:\n", + " theme.append(' ')" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "8b7cce13-8ab4-471d-96cf-3795fa3d1cdb", + "metadata": {}, + "outputs": [], + "source": [ + "print (\"Accessing data...\")\n", + "\n", + "with open(\"novelsDB.csv\") as fin:\n", + " results = []\n", + " for row in csv.reader(fin):\n", + " if city == \"all\" or row[2] == city:\n", + " results.append(row)\n", + "print (\"Data accessed!\")\n", + "print (len(results))" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "741dafde-1cb4-4010-a52f-3ada7ae0e111", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['intro', 'description', 'interaction', 'more', 'afterthought']" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "content" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "a1048168-950b-43d3-9245-092fbf1c0bf7", + "metadata": { + "collapsed": true, + "jupyter": { + "outputs_hidden": true + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "intro\n", + "description\n", + "interaction\n", + "more\n", + "afterthought\n", + "Title is novels/newyork-October3121-0546PM.txt\n", + "Intro sentence selected.\n", + "Novel is generated at novels/newyork-October3121-0546PM.txt, count of 310 characters\n" + ] + } + ], + "source": [ + "#adding cities to lists by category of sentence\n", + "for result in results:\n", + "\n", + " category = result[4]\n", + " sentence = result[3]\n", + " id = result[0]\n", + "\n", + " # print (\"Data sorted...\")\n", + "\n", + " #run this if the length of the theme array is greater than 1, meaning there is a theme file included\n", + " if len(theme) > 1:\n", + " for word in theme:\n", + " if word in sentence:\n", + "\n", + " for c in content:\n", + " if category == c:\n", + " indices = [i for i, n in enumerate(content) if n == c]\n", + "\n", + " for i in range(0, len(indices)):\n", + " j = indices[i]\n", + " content_lists[j].append([sentence, id])\n", + "\n", + " #otherwise, if there's no theme file:\n", + " else:\n", + " for c in content:\n", + " # print (f\"{c}\")\n", + " if category == c:\n", + " indices = [i for i, n in enumerate(content) if n == c]\n", + "\n", + " for i in range(0, len(indices)):\n", + " j = indices[i]\n", + " content_lists[j].append([sentence, id])\n", + "\n", + "# print (content_lists[0])\n", + "#create pronoun exchange lists\n", + "loadFromFile(fromFile, fromWords)\n", + "loadFromFile(toFile, toWords)\n", + "\n", + "#call printNovel to print result\n", + "printNovel()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "3c6e3d44-7dcf-40dc-b69d-7f56f1390bf2", + "metadata": {}, + "outputs": [ + { + "ename": "ImportError", + "evalue": "cannot import name 'CraigslistEvents' from 'craigslist' (/home/murtaugh/.local/lib/python3.7/site-packages/craigslist/__init__.py)", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_9106/503937030.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mcraigslist\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mCraigslistEvents\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mcl_e\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mCraigslistEvents\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msite\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'newyork'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfilters\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m{\u001b[0m\u001b[0;34m'free'\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'food'\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mImportError\u001b[0m: cannot import name 'CraigslistEvents' from 'craigslist' (/home/murtaugh/.local/lib/python3.7/site-packages/craigslist/__init__.py)" + ] + } + ], + "source": [ + "from craigslist import CraigslistEvents\n", + "cl_e = CraigslistEvents(site='newyork', filters={'free': True, 'food': True})\n" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "3bec45d4-5abe-4aeb-85ac-a15b071378c5", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "He was in a blue toyota sedan and I in was in a bentley. I’m writing this in hopes of the gorgeous brunette I saw walking out of whole foods in columbus circle. Only looking for something potentially ongoing with just one g. We connected about shared ambitions and love for nature. I think he know I have an appreciation for his amazing glutes. I think?). Just wanted him to know that. He stared at me for a little while. I can't stop thinking about him. We met at the don tolliver show and wanted to hang out but we got separated by the subway system before we could exchange numbers :( he was badass and I would love to hang out again soon. I think about him often. Just wanted to see if he was still alive and apologize he loves. But I wish one of us had just said something or I had called he back over. We both turned around and looked back at each other. I'm the heng boi with old soulif it's really he tell me the addiction he had I wanted to share with he. We saw each other (i thinkhope) near delancey and essex a few days ago. I was the red head that kept on running inhe loves and had an entertaining convo with he (at least I think I did). Let's talk. He told me he went to kingsborough community college and were studying in the medical field. I left the jungle concert early with my friend but I think we had a vibe. A handshake that felt like a hug. And so he forgot it a couple of times and spent time and effort trying to remember and enter it correctly so he could get into his account with my email address. I think we both may have wanted to say more. I smiled. Still thinking about him and that raspy voice. I didn't want to get caught walking behind he. Or so I thought? he had a red top on with black heels. I think he was talking about how italian was his favorite food (my favorite. I thought I heard he say something but I figured he was still on the phone. Lets talk. Still thinking about him and the pictures we used to send to each other. I think we really connected. I think he was trying to sell a knick's jacket. And I swear I heard the girl on the phone say “i think I just saw the man of my dreams”. Where I thought he guys were hanging. And gray plaid (gingham?) earringsi certainly sneaked a few glances and I think caught he doing the same? if so. Let me know what I was wearing and how I looked. But he weren’t looking in my direction and then he turned and walked and I just was like ahhh can’t do it can’t do it. We were inside by the freezer section and he had on a nice summer dress and I told him he forgot his sweater then we met at the other end of foodtown at the daily section and I looked at him and said again and we both laughed when we were pulling out of the parking lot he took the time to roll down his window to tell me goodbye I should’ve asked he if he want to go have coffee or something hope he see this post. It felt like we really connected mentally and physically. How he wanted to to learn marketing. He was very relaxed and we both wanted to try it again. I thought he was unable to write back ohhh i’m so happy he is ok. His ambition peaked my interests and I think he have a good head on his shoulders as well as a good heartspirit. I believe he smiled. I think he is very handsome. We shared many lovely emails. We shared a lot about each other. And I wanted to say something but I had a shitty day. We spoke years ago I think about him often. And he ask if I wanted to hang out with he at his place. I think he's really cute. We met back pre trump pre covid 2016 I think. I think he is very handsome. He was short with nice hips and amazing lips I loved his smile as he looked at my grey sweats …yes it’s real. He saw me all dressed up with no place to go. For freaky female ) hit me up let get to talking and see where it goes I am a female myself. He told me that he was a waitresshostess at a restaurant. I left the jungle concert early with my friend but I think we had a vibe. " + ] + } + ], + "source": [ + "!cat novels/newyork-October3121-0546PM.txt" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cd662724-eaee-476a-839d-5d571ad7a898", + "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.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/dictionaries/afterthought.txt b/dictionaries/afterthought.txt new file mode 100644 index 0000000..828da6e --- /dev/null +++ b/dictionaries/afterthought.txt @@ -0,0 +1,9 @@ +I believe +I feel +felt like +think about +I think +I thought +forgot +wanted +didn't want \ No newline at end of file diff --git a/dictionaries/description.txt b/dictionaries/description.txt new file mode 100644 index 0000000..9282b2c --- /dev/null +++ b/dictionaries/description.txt @@ -0,0 +1,8 @@ +looked like +saw +were reading +was reading +ogle +ogled +ogling +got in \ No newline at end of file diff --git a/dictionaries/from.txt b/dictionaries/from.txt new file mode 100644 index 0000000..20fb942 --- /dev/null +++ b/dictionaries/from.txt @@ -0,0 +1,31 @@ +yourself +your +you're +you were +you are +that you +are you +at you +liked you +like you +love you +you love +to you +meet you +told you +see you +saw you +to you +of you +love you +about you +buy you +bought you +is you +wanted you +want you +do you + u + ur +you +weren't \ No newline at end of file diff --git a/dictionaries/gym.txt b/dictionaries/gym.txt new file mode 100644 index 0000000..923d0e2 --- /dev/null +++ b/dictionaries/gym.txt @@ -0,0 +1,6 @@ +gym +wal-mart +Wal-Mart +Walmart +Equinox +real estate \ No newline at end of file diff --git a/dictionaries/interaction.txt b/dictionaries/interaction.txt new file mode 100644 index 0000000..e83fb8c --- /dev/null +++ b/dictionaries/interaction.txt @@ -0,0 +1,11 @@ +nodded +shared +called +talk +talking +we met +locked eyes +stared +looked +looking for +smiled \ No newline at end of file diff --git a/dictionaries/intro.txt b/dictionaries/intro.txt new file mode 100644 index 0000000..e29619a --- /dev/null +++ b/dictionaries/intro.txt @@ -0,0 +1,7 @@ +You were +I was +I pulled up +I swear +I know +I saw +You saw \ No newline at end of file diff --git a/dictionaries/more.txt b/dictionaries/more.txt new file mode 100644 index 0000000..982ea66 --- /dev/null +++ b/dictionaries/more.txt @@ -0,0 +1,11 @@ +commented +you bought +turned +was there +shared +exchanged +told you +told me +you're not +got there +thinking \ No newline at end of file diff --git a/dictionaries/stop.txt b/dictionaries/stop.txt new file mode 100644 index 0000000..b4b008a --- /dev/null +++ b/dictionaries/stop.txt @@ -0,0 +1,10 @@ +missed connection +missed connections +Missed Connection +Craigslist +craigslist +dick +cum +suck +dicks +sucked \ No newline at end of file diff --git a/dictionaries/w4m.txt b/dictionaries/w4m.txt new file mode 100644 index 0000000..10a5429 --- /dev/null +++ b/dictionaries/w4m.txt @@ -0,0 +1,31 @@ +himself +his +he's +he was +he is +that he +is he +at him +liked him +like him +to him +love him +he loves +meet him +told him +see him +saw him +to him +of him +love him +about him +buy him +bought him +is him +wanted him +want him +does he + he + he's +he +wasn't \ No newline at end of file