diff --git a/proud-puffins/Credits and sources.md b/proud-puffins/Credits and sources.md index 6612f58d9..e360d8b09 100644 --- a/proud-puffins/Credits and sources.md +++ b/proud-puffins/Credits and sources.md @@ -1,5 +1,4 @@ # Credits and Sources -Where we'll track where we got data from. ### First names * Social Security, US government. Top names from the 1970's @@ -18,13 +17,13 @@ Where we'll track where we got data from. * [Women](https://pixnio.com/photos/people/female-women) * License - High quality copyright free pictures, no rights reserved and without any restriction. -#### Noralize.css +### Normalize.css * https://github.com/necolas/normalize.css/ * MIT License * Creates standard initial conditions across browsers as a base for our CSS. Simplifying development and testing. -#### Learning Resources/ References +### Learning Resources/ References * [Excellent documentation by django devs](https://docs.djangoproject.com/en/3.1/) * [Django Tutorials by Dennis Ivy](https://www.youtube.com/watch?v=xv_bwpA_aEA&list=PL-51WBLyFTg2vW-_6XBoUpE7vpmoR3ztO) * [Models reference](https://github.com/ElSergio217/Django_Tinder/blob/master/music_tinder/app/models.py) diff --git a/proud-puffins/README.md b/proud-puffins/README.md index 1ca10bded..244f3dfef 100644 --- a/proud-puffins/README.md +++ b/proud-puffins/README.md @@ -10,31 +10,45 @@ We be Puffins, and we be proud! * XPOjabar * rr +## Requirements +- Python3.8+ +- Django>=3 +- Pillow>=7 +- pathlib>=1 +- django-random-image-from-folder>=0.0.3 +- django-crispy-forms>=1.9.2 + ## Loading the App - Download or pull a clone of this directory. - Create a virtual environment using the tools you like best. -- In the terminal cd in the the directory djangoProjects. This should be the location of the manage.py file. -- Run ```python puffin_setup.py``` +- In the terminal cd into the directory djangoProjects. This should be the location of the manage.py file. +- Run ```python3 puffin_setup.py``` - This should make all your migrations, pre load the database with data and start your server. - Open your favorite browser to 127.0.0.1 to launch app. -- IF you have issues running this, then follow the instructions outlined in the Dev Stuff below. - -## Dev stuff +- IF you have issues running this, then follow the instructions outlined in the Alternative method below. -### [Populating profiles database](https://docs.djangoproject.com/en/3.0/howto/initial-data/) -- Add new entries into `earlydating/fixtures/profiles.json` +## Alternative Method +- Download or pull a clone of this directory. +- Create a virtual environment using the tools you like best. +- Go to proud-puffins directory and install the required packages using ```pip3 install -r requirements.txt``` +- In the terminal cd into the directory djangoProjects. This should be the location of the manage.py file. - Run ```python3 manage.py makemigrations``` - Run ```python3 manage.py migrate``` - Run ```python3 manage.py loaddata users.json``` - Run ```python3 manage.py loaddata profiles.json``` (First users.json then profiles.json) -- Run server :) - - -### Code organisation - -- Dev dependencies go in `requirements-dev.txt` -- Normal dependencies go in `requirements.txt` - +- Run server using ```python3 manage.py runserver``` + +## How to use +- Once the App is loaded, visit ```http://127.0.0.1:8000/``` +- Register/Login by pressing on the door or click on the login button in the NavBar. +- If you have just registered and logged in, you will be asked to fill in the profile details. +- Now you can start matching by clicking on 'Match Me' in your profile page. +- Once in, you can like or unlike profiles. To move on to the next one, press 'Next profile' button. +- If the other person likes you too, they will appear on your 'mymatches' page (link present in your profiles page) and their email will be shared with you. +- You can see the profiles you've liked in the 'My Likes' page (link present in your profiles page). + +### Note: +You may receive lint errors saying ```earlydating.signals was imported but not used in app.py```. Despite those errors we needed it be like that for the working of post_save signals. ## [MIT license](../LICENSE) diff --git a/proud-puffins/djangoProject/earlydating/apps.py b/proud-puffins/djangoProject/earlydating/apps.py index 3695101ac..169721e85 100644 --- a/proud-puffins/djangoProject/earlydating/apps.py +++ b/proud-puffins/djangoProject/earlydating/apps.py @@ -5,4 +5,5 @@ class EarlydatingConfig(AppConfig): name = 'earlydating' def ready(self): + # Import is necessary for signals to work despite lint errors import earlydating.signals diff --git a/proud-puffins/djangoProject/earlydating/decorators.py b/proud-puffins/djangoProject/earlydating/decorators.py index ebce7f45a..c513c30dd 100644 --- a/proud-puffins/djangoProject/earlydating/decorators.py +++ b/proud-puffins/djangoProject/earlydating/decorators.py @@ -3,19 +3,21 @@ from django.shortcuts import redirect -# To avoid double login/register if you are logged in def unauthenticated_user(view_func): + """To avoid logging in/registering again if the user logged in""" @wraps(view_func) def wrapper_func(request, *args, **kwargs): + # Redirect to their profile if authenticated if request.user.is_authenticated: return redirect('earlydating-yourprofile') + # Else authenticate user else: return view_func(request, *args, **kwargs) return wrapper_func -# Restricting page access to specified user groups def allowed_users(allowed_roles=[]): + """Restricting page access to specified user groups""" def decorator(view_func): @wraps(view_func) def wrapper_func(request, *args, **kwargs): @@ -30,8 +32,8 @@ def wrapper_func(request, *args, **kwargs): return decorator -# Restrict page access to other groups def admin_only(view_func): + """Restrict page access to only admins""" @wraps(view_func) def wrapper_function(request, *args, **kwargs): group = None diff --git a/proud-puffins/djangoProject/earlydating/fixtures/profiles.json b/proud-puffins/djangoProject/earlydating/fixtures/profiles.json index f2eb5d45c..65e4eb70e 100644 --- a/proud-puffins/djangoProject/earlydating/fixtures/profiles.json +++ b/proud-puffins/djangoProject/earlydating/fixtures/profiles.json @@ -1,5602 +1,4802 @@ [ - { - "fields": { - "age": 24, - "bio": "I have always been curious how things worked. As a child i\\nDisassembled all the clocks in the house trying to understand how\\nThey told the time (unfortunately i was never very good at\\nReassembly). I still retain that curious nature about the world. I\\nLike to travel, dine out, watch movies, attend flea markets and\\nStreet fairs, and expand my horizons. I would like to know what\\nMakes you tick.", - "img": "user_pixel/f-2422924-300x200.jpg", - "lower_age": 22, - "preference": "straight", - "sex": "Female", - "upper_age": 32, - "user": 2 - }, - "model": "earlydating.Profile", - "pk": 2 - }, - { - "fields": { - "age": 41, - "bio": "Hello,\\n\\nTrying to decide on what to write. Perhaps in the 3rd person?\\nNaaaww, ok i'll just go for it. I'm a left handed dyslexic, and i\\nThink that gives me a unique view on the world. Born male, and live\\nMostly as male, but i do enjoying my fem side.(just check the\\nPhotos!) while i have ticked the bi box, i am not into men at all.\\nTo me gender is more than plumbing. I'll write more later and i\\nHope include some reviews.", - "img": "user_pixel/m-48143-361x544.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Male", - "upper_age": 46, - "user": 3 - }, - "model": "earlydating.Profile", - "pk": 3 - }, - { - "fields": { - "age": 32, - "bio": "...enjoys a good paradox. I am always trying to forget to forget.\\nLoves winter. Loves summer. Enjoys being outside but is also known\\nTo remain indoors for extended periods in a protools induced haze.\\nDeemed the semantics overlord.\\n\\nI am a lover of many things, including walking, talking, creating,\\nLaughing and eating. Surely eating.\\n\\nDo you realize what strap-on spells backwards? haha\\n\\nI am uncorked, mouthy, and reverent", - "img": "user_pixel/f-371983-1200x795.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Female", - "upper_age": 41, - "user": 4 - }, - "model": "earlydating.Profile", - "pk": 4 - }, - { - "fields": { - "age": 49, - "bio": "I'm a tested lover boy. What does that mean to me? the idea of\\nFinding a romantically significant person to make memories with is\\nHighly appealing to me. So my priorities from high to low in terms\\nOf that:\\n1. Long - term\\n2. Activity partners\\n3. Short - term dating\\n4. New friends\\n\\ngay friends and activity partners have been challenging to come by\\nFor me, despite being a san francisco native so let's go\\nSnowboarding!\\n\\nI want a partner not a sidekick because \\\"you do you and i'll do me\\nBecause i do me like no one else.\\\"\\n\\nI'm excited about the prospect of legalizing gay marriage.\\n\\nI'm bisexual because when i fall in love with some one, i fall in\\nLove with who they are, not their sex. However, when i image my\\nFuture family, i see myself and my husband. Next to he and i, our\\nArmy of birthed and/or adopted offspring. (my good friend josh is\\nAdopted and no child should be without a home...) sometimes i see\\nThe three of us, sometimes i eat something out of the ordinary\\nBefore bed and i see six strapping men. I can't judge couples hat\\nHave three or more kids, you have your own basketball team and who\\nWould want that?!? :-)\\n\\nOn a multiple choice test, i'm answer e.) other _____________\\nWith a blank space for further explanation.\\n\\nI take good care to ensure my mind, body, and spirit are\\nNourished:\\n\\nI am currently working towards my second bachelor's degree.\\n\\nI enjoy running and taking house dance class in san\\nFrancisco.\\n\\nI have practiced bikram yoga since christmas eve of 2010 and\\nAlthough the poses remain the same, the journey and the destination\\nChange with each class. It's amazing.\\n\\nI prefer running outside, but cold weather and i have a\\nRelationship similar to that of oil and water. So i make do: long\\nDistance running on a treadmill. Want to check out somewhere warm\\nWith me for a run?\\n\\nMy friend's tease me and say my best friend is gym.\\n\\nWhen i'm not wearing slacks and a fitted collared shirt in the\\nOffice, i often enjoying telling a story with my clothing: a cowboy\\nFrom a dystopian future or a sailor of sandy seas.\\n\\nA good sign that i like a person is when i start calling them by\\nNicknames.\\n\\nDon't hate! just date!", - "img": "user_pixel/f-371793-860x900.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Female", - "upper_age": 56, - "user": 5 - }, - "model": "earlydating.Profile", - "pk": 5 - }, - { - "fields": { - "age": 38, - "bio": "I am a non-conformist, except when it suits me to conform, which is\\nOften. (i'm hoping san francisco is a bit more non-conformist than\\nMy previous environs in washington, dc.)\\n\\nI'm originally from tucson, arizona, and i hope to make it back\\nThere someday. In the meantime, i'd like to meet some decent people\\n(gay or straight) for coffee, drinks, or whatever comes next. I'm\\nMuch more interested in companionship than having an active sex\\nLife, but at the same time with the right person i'm up for\\nAnything. Overall i'm looking for someone i can learn from,\\nEspecially in areas i don't describe here.\\n\\nInterior crocodile alligator, i drive a chevrolet movie\\nTheater.\\n\\nI'm a former copy editor and french major, and i used to play the\\nClarinet. I'm\\nAlso into just about any geeky subject that can help enhance my\\nAppreciation and understanding of the world (politics, geography, linguistics, anthropology, urban planning to name a\\nFew). If you're having a conversation with me, that means pop\\nCulture subjects are generally out. I'm also a fan of good\\nGraphic\\nDesign and typography (e.g. Helvetica).\\n\\nTranslation: je suis tudiant de la vie. J'apprends tout ce que\\nJe peux et j'aimerais en parler avec des bons amis. Je trouve qu'il\\nEst possible de parler plus simplement en franais, de dire plus\\nAvec moins de mots. Je ne suis pas sur si c'est cause d'un\\nVocabulaire plus petit ou si c'est parce que tout semble plus bel\\nDans cette langue. Mais gnralement je trouve que les plus grands\\nMots d'anglais contient les ides les moins profond. La simplicit\\nDe la langue ncessite la prcision en pensant autant qu'en parlant\\nEt dans cet procs on trouve la profondeur. J'emploi cet procs en\\nAnglais et on me prend pour un enfant. A a rendu la vie un peu\\nDifficile en amrique. Mais c'est aussi possible que je reste un\\nEnfant en tout cas. Pourquoi pas? on s'amuse plus fort. Je veux\\nVivre une vie qui est satisfaisante dans elle-mme. Je crois que\\nCette ide est trangre de la vie professionnelle ici. Tant pis\\nPour eux.\\n\\n[i am pensive, passive, and passionate]\\n\\nAlso, i like to cuddle.", - "img": "user_pixel/f-2058749-982x1323.jpg", - "lower_age": 35, - "preference": "bisexual", - "sex": "Female", - "upper_age": 50, - "user": 6 - }, - "model": "earlydating.Profile", - "pk": 6 - }, - { - "fields": { - "age": 29, - "bio": "The stuff that makes me happy: any kind of athletic activity,\\nEating with reckless abandon, traveling, nature/outdoors/sunshine,\\nMovies off the beaten path, live music, unexpected adventures,\\nContemplative star-gazing, people-watching (often accompanied by\\nImprovised dialogue and inner-monologues), brainstorming wacky and\\nImpractical inventions/hypothetical situations/movie plots, and\\nAnything that leads to laughter.\\n\\nBullet point me-isms:\\n\\nI'm a fully recovered cynic.\\nI'm a non-reformed class clown.\\nI'm a partially reformed philosophy major.\\nI'm an excellent person to have around in a crisis.\\nI live by the golden rule and seek out others who do the\\nSame.\\nPeople who barely know me tend to tell me highly personal things\\nAnd ask my advice.\\nMy honesty sometimes gets me into trouble and frequently begets\\nAwkward situations.\\nI tend to enjoy trouble and always enjoy awkwardness.", - "img": "user_pixel/m-1732853-300x200.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Male", - "upper_age": 42, - "user": 7 - }, - "model": "earlydating.Profile", - "pk": 7 - }, - { - "fields": { - "age": 42, - "bio": "Pretty easy going fellow, love family, friends, baseball, music,\\nMaking people laugh, annoying people until they laugh. I love\\nGetting excited about stuff because sometimes being excited about\\nSomething is better than actually getting that thing youre excited\\nFor...umm what else? well since my life for the past few years have\\nBeen dictated by my work/school schedule i have taken time these\\nDays to stop and smell the roses, getting back to the basics and\\nBasking in the glow of the things i love.\\n\\nI am funny, fiery, and free", - "img": "user_pixel/m-371991-300x200.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Male", - "upper_age": 54, - "user": 8 - }, - "model": "earlydating.Profile", - "pk": 8 - }, - { - "fields": { - "age": 39, - "bio": "Anything's fair game with me. I'm a real nice guy, and i'm sure\\nThere's not a whole lot of them left. Lived up and down the west\\nCoast, did grad school in san diego, came out to dc, worked a few\\nNon-profit jobs, and starting over with law school. I'm brainy but\\nI love working with my hands. I'm outspoken and curious. 80's and\\n90's nostalgia are most enjoyable.", - "img": "user_pixel/f-371957-1200x900.jpg", - "lower_age": 36, - "preference": "gay", - "sex": "Female", - "upper_age": 46, - "user": 9 - }, - "model": "earlydating.Profile", - "pk": 9 - }, - { - "fields": { - "age": 43, - "bio": "I consider myself a mature and responsible man who also enjoys to\\nPlay and have fun. I think that balance is everything. So i try to\\nGive the best of me and at the same time don't take things too\\nSeriously.\\n\\nI value and i have a positive attitude towards life.\\n\\nI'm basically just looking for someone with similar interests and\\nLife style.", - "img": "user_pixel/m-1925281-300x228.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 10 - }, - "model": "earlydating.Profile", - "pk": 10 - }, - { - "fields": { - "age": 49, - "bio": "I like to make people laugh and smile. Im pretty easy going, open\\nTo anything, and try anything.\\nIm very family orientated, creative, adventurious,goofy, and\\nRandom.", - "img": "user_pixel/m-2426807-300x200.jpg", - "lower_age": 53, - "preference": "straight", - "sex": "Male", - "upper_age": 59, - "user": 11 - }, - "model": "earlydating.Profile", - "pk": 11 - }, - { - "fields": { - "age": 25, - "bio": "Hi, my names robert. I am a hard working man. I love the outdoors,\\nBut i love to party n go out. I'm a country boy at heart, country\\nMusic is my favorite. Family first! i rent a house with a friend, i\\nHave a 1 yr old lab. I work in the yard a lot. I would love to find\\nA woman with similar interests that might want to date and see\\nWhere things can go. Im an affectionate person looking for\\nAffection in return.", - "img": "user_pixel/f-371905-1200x800.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Other", - "upper_age": 38, - "user": 12 - }, - "model": "earlydating.Profile", - "pk": 12 - }, - { - "fields": { - "age": 47, - "bio": "Born and raised in nor cal and been growing roots in san francisco\\nSince 2003.", - "img": "user_pixel/f-371695-1048x900.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 13 - }, - "model": "earlydating.Profile", - "pk": 13 - }, - { - "fields": { - "age": 25, - "bio": "Winter olympics 1992- was part of the first jamaican bobsled team:\\nGrowing up in jamaica as a young man, i became a world-class\\nSprinter destined to win the summer games like my father, but was\\nTripped up in the final trials by the runners next to me.\\nDevastated, but determined to make it to the olympics any way i\\nCould, i teamed up with coach john candy and trained with the\\nPeople who tripped me. Incredibly, we trained hard and with our\\n\\\"can-do\\\" spirit we made it to calgary, where all the canadians were\\nRacist, but by being ourselves and sticking together, we proved to\\nThe world that jamaica could compete in ways it never had before\\nAnd discovered ourselves in the process. Jimmy cliff himself sang\\nAt the end of our journey and i lost my jamaican accent.", - "img": "user_pixel/m-52533-361x544.jpg", - "lower_age": 26, - "preference": "gay", - "sex": "Male", - "upper_age": 36, - "user": 14 - }, - "model": "earlydating.Profile", - "pk": 14 - }, - { - "fields": { - "age": 50, - "bio": "Hairstylist with a political science degree.", - "img": "user_pixel/m-201918-725x483.jpg", - "lower_age": 48, - "preference": "bisexual", - "sex": "Male", - "upper_age": 64, - "user": 15 - }, - "model": "earlydating.Profile", - "pk": 15 - }, - { - "fields": { - "age": 43, - "bio": "Hey there! thanks for visiting my profile won't you have a look\\nAround?\\n\\nI'll start by telling you a little about myself: i'm a homegrown\\nCalifornian who is into (in no particular order): garden gnomes,\\nJazz hands, foppish dandies, good food, stimulating conversation,\\nAnd beating you at tennis.\\n\\nI'm a big talker.", - "img": "user_pixel/m-261153-900x600.jpg", - "lower_age": 47, - "preference": "gay", - "sex": "Male", - "upper_age": 52, - "user": 16 - }, - "model": "earlydating.Profile", - "pk": 16 - }, - { - "fields": { - "age": 42, - "bio": "I am genderqueer, trans ftm. I don't identify entirely as female or\\nMale, i'd choose both boxes if i could, or better yet a third\\nOption. I am a very open minded person, and like to be around\\nOthers who are open minded as well and love to talk about anything\\nAnd everything.\\nI like art, movies, games, and puzzles. I like to go exploring, hiking, and camping. I am vegetarian, and love\\nAnimals.\\n\\nI am loving, stochastic, and delightful", - "img": "user_pixel/f-372089-1200x800.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 56, - "user": 17 - }, - "model": "earlydating.Profile", - "pk": 17 - }, - { - "fields": { - "age": 25, - "bio": "To see a world in a grain of sand\\nAnd a heaven in a wild flower\\nHold infinity in the palm of your hand\\nAnd eternity in an hour...\\nWhether we connect for just an hour or a lifetime\\nWhat we share matters most.\\n\\nI can be funny, naughty, sexy, fun\\nStupid, passionate, greedy, drunk\\nPlease be considerate, do not suffer fools well\\nKudos if you speak more than 2 languages or have lived\\nOverseas.\\n\\nThere's free beer on the road less traveled.", - "img": "user_pixel/m-245667-900x600.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 18 - }, - "model": "earlydating.Profile", - "pk": 18 - }, - { - "fields": { - "age": 45, - "bio": "I'm a wandering scientist diving into weird problems, which takes\\nMe to the strangest of places. My co-pilot is pinksquiddy, and we're always on\\nThe look out for new and interesting people and experiences.", - "img": "user_pixel/m-283097-1000x667.jpg", - "lower_age": 48, - "preference": "gay", - "sex": "Male", - "upper_age": 58, - "user": 19 - }, - "model": "earlydating.Profile", - "pk": 19 - }, - { - "fields": { - "age": 48, - "bio": ". . \\n .\\n\\nI was a student in political science and\\nPhilosophy, now\\nI'm an artist. I love riding my bicycle around town. I read a lot of\\nBooks and anything\\nElse i can get my hands on, even when there's other people around.\\nI'm vegetarian.\\n\\nI am clever, fast, and tall", - "img": "user_pixel/f-1732575-1200x800.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 54, - "user": 20 - }, - "model": "earlydating.Profile", - "pk": 20 - }, - { - "fields": { - "age": 25, - "bio": "Epically awesome bro looking for equally badass counterpart.\\nHyperactive, fastidious, chivalrous, and a little bit of an\\nAsshole. If you enjoy watching sports on tv dont waste my time.", - "img": "user_pixel/f-2439551-300x450.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Female", - "upper_age": 33, - "user": 21 - }, - "model": "earlydating.Profile", - "pk": 21 - }, - { - "fields": { - "age": 34, - "bio": "Disclaimer:\\nI'm looking for activity friends. Let's make some friends, network\\nAnd meet new people.\\nI'm keeping this profile in the hopes of finding someone that i'm\\nAttracted too, reflects my interests and most important, we have\\nThe right chemistry. Even though i'm the type of male that is a go\\nGetter, i'm taking a step back on this site and i would like you to\\nInitiate or 'rate me'; after all it is the 21st century and you\\nWomen fought hard to get the right to vote (haha, i'm a total\\nEqualist so suck it up). I look for substance and i find this site\\nIs an utter waste of time for both sexes, i know a lot of female\\nFriends on this site that get inundated (oooh sat word) with emails\\nFrom a ton of guys, so that makes it difficult and miserable for\\nYou. I'm throwing you the ball to see what you do, don't worry i'll\\nStill open the door, take you out to dinner and pull your hair in\\nBed whenever necessary. If i run into you in the real world i'll do\\nThe approaching. I think questions and essays don't do justice,\\nChemistry can only be experienced in person.\\n\\nAbout me:\\nA polymath is a person whose expertise spans a significant number\\nOf different subject areas. I strive for this since i believe\\nGrowing as a person is very important. I like to be happy and enjoy\\nLife. I take my time trying to do the things that make me relaxed,\\nMake me content and make me laugh; life's too short.\\nI'm looking for friends/activity partners first and then seeing\\nWhere things go.\\n\\nI'm a lot less serious than i seem, i'm not a jock/meat-head, and\\nI'm not arrogant but am confident. I'm pretty humble if you get to\\nKnow me, i just have a huge drive to move forward.\\n\\nI'm sexual, but i'm pretty complex in the other dimensions of my\\nLife too. I like all types of fun activities, i like poetry slams\\nAnd classical & foreign music, along with hip-hop and dub-step.\\nI like trying out new things, if you have something fun you that\\nYou do, and want to teach me, you get points.\\n\\nI'm a consultant and fly back and forth between nyc and san\\nFrancisco for work. I moved to california almost 5 years ago from\\nNyc, i was trying to escape the concrete jungle of ny (though i\\nLove it there) to explore new lands.\\n\\nI moved here to be in silicon valley, having studied computer\\nScience, and now i'm a sr. Software engineer in hopes of becoming a\\nTech entrepreneur. This is a goal i'm working towards with a master\\nPlan behind it's not just about getting rich, i can't be a\\nPhilanthropist without being an entrepreneur first.\\n\\nHaving a job that has me sit in-front of a computer all day, makes\\nMe take out my energy by doing other things, like hiking, running,\\nBiking, snowboarding and anything that is outdoors and keeps me\\nFit. Although there are lots of indoor things i enjoy doing like\\nGoing to restaurants, shows, movies, playing board games with\\nFriends, cooking, listening to music and dancing, drinking beer or\\nWine, going out dancing, latin music is fun sometimes. I'm pretty\\nEclectic.\\n\\nAnything else you want to know just ask.", - "img": "user_pixel/m-246009-900x600.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Male", - "upper_age": 40, - "user": 22 - }, - "model": "earlydating.Profile", - "pk": 22 - }, - { - "fields": { - "age": 31, - "bio": "Hi! disclaimer: this is a double profile.\\n\\nWe ask that you watch this vid before reading further (or atleast\\nOpen in another window as background music for perusing our\\nProfile):\\n\\nHttp://www.youtube.com/watch?v=8vbnlyrocj8\\n\\nWe are a couple of fun loving northern californians enjoying living\\nIn the best damn city in the best damn country in the world. We\\nBoth grew up in davis (hella fun). Evan went to ucd and dan headed\\nSouth the ucsb. The years after college found us both grinding out\\n5+ year stints in socal (blecchhhh!!!!). Lady fortune smiled on us\\nOver the last year or two and we ended up here in sf. Haven't\\nLooked back since, our biggest mutual regret is to not have made it\\nHere sooner!", - "img": "user_pixel/f-2039486-300x225.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 40, - "user": 23 - }, - "model": "earlydating.Profile", - "pk": 23 - }, - { - "fields": { - "age": 27, - "bio": "Per aspera ad astra!\\nRisum abundat in ore stultorum.", - "img": "user_pixel/f-371517-1200x800.jpg", - "lower_age": 22, - "preference": "straight", - "sex": "Other", - "upper_age": 41, - "user": 24 - }, - "model": "earlydating.Profile", - "pk": 24 - }, - { - "fields": { - "age": 44, - "bio": "I am a new york city transplant who always had an inkling that san\\nFrancisco was calling me. Circumstances transpired to let me move\\nHere 2.5 years ago for my dream job after my medical\\nResidency.\\n\\nBest. Decision. Ever.\\n\\nI love this city and i love my job. Kind of surprised about loving\\nMy job. I always felt like a artist who fell into a career as a\\nPhysician. However, over the past two years, like a good dickens\\nNovel, all of the plot lines in my life are weaving together. I get\\nTo teach, do research, develop technology projects, redesign\\nHospital processes, and do my clinical work. This quote by pablo\\nPicasso seems to resonate it took me four years to paint like\\nRaphael, but a lifetime to paint like a child. Some of the best\\nIdeas come from unlearning.\\n\\nIf i left out my passion for surfing and kiteboarding i would be\\nGlossing over one of the main reasons i moved out here in the first\\nPlace. I love being outside in this area. Snowboarding, sailing,\\nHiking, wine country, chilling in dolores park. Oh, and the food! i\\nHeard recently that sf has more restaurants per capita than any\\nOther city in the us. My new york city friends are always telling\\nMe they have better food, but i am not buying it new-yawkas!", - "img": "user_pixel/m-53023-725x544.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Male", - "upper_age": 58, - "user": 25 - }, - "model": "earlydating.Profile", - "pk": 25 - }, - { - "fields": { - "age": 41, - "bio": "Half-secret agent\\nSeeks smart, exotic charmer\\nFor thrills and romance\\n\\nI try to have fun\\nSome travel, movies, ballgames\\nI can hear music", - "img": "user_pixel/f-371853-600x900.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 26 - }, - "model": "earlydating.Profile", - "pk": 26 - }, - { - "fields": { - "age": 26, - "bio": "And now...a tap dance...\\nI am the type of person that's always looking forward, confident\\nAnd positive about the future. I support the ideas of family and\\nCommunity, and i am always trying to help others in the best way i\\nCan. I'm also very passionate about life and my work, and i like to\\nBelieve that we all can achieve our dreams.", - "img": "user_pixel/f-371795-1200x674.jpg", - "lower_age": 23, - "preference": "gay", - "sex": "Female", - "upper_age": 34, - "user": 27 - }, - "model": "earlydating.Profile", - "pk": 27 - }, - { - "fields": { - "age": 43, - "bio": "Was born and raised in los angeles, but after college i have lived\\nIn a few different states like missouri and colorado. I spent the\\nLast year in colorado and just recently moved to the bay area a few\\nMonths ago. I'm trying to make friends and get to know people in\\nThe area and who knows maybe one of those friendships can lead to\\nSomething serious.\\nI am a laid back, down to earth guy. Try and look at the positive\\nThings and enjoy what life gives me. Very family oriented. I try to\\nVisit my family and friends regularly although it seems that they\\nAre spreading out more and more over the us. Gives me a great\\nExcuse to travel, which i love.\\nI am always trying out different foods, and luckily this area has a\\nLot of great places to eat.. I also enjoy going out dancing latin\\nMusic or listening to rock bands. Give me an 80's cover band or\\n90's alternative and that would be a great night for me. I love the\\nOutdoors even though i haven't been able to get there much lately.\\nAlthough i prefer being a rowboat than a jet ski, mountain bike\\nOver a dirt bike, and a simple hike", - "img": "user_pixel/m-245849-900x475.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 28 - }, - "model": "earlydating.Profile", - "pk": 28 - }, - { - "fields": { - "age": 25, - "bio": "Comedy is king to me. I also enjoy composing music. Im heavy into\\nCollecting records and woody allen movies at the moment. The rest\\nIs for you to ask about.", - "img": "user_pixel/f-2282604-6000x4000.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Female", - "upper_age": 33, - "user": 29 - }, - "model": "earlydating.Profile", - "pk": 29 - }, - { - "fields": { - "age": 31, - "bio": "I would like to meet and have a little fun quality time, with\\nAnother nice person.\\nI come from a mixed racial, social and economic environment. I am\\nAn educated handsome, irish-scottish-african-native american. I\\nGrew up in the suburbs of the midwest, yet have been cultured by\\nSan francisco. I have had extraordinary life experiences and have\\nSome awesome stories that go with them.\\nI am not the kind of handsome guy you could judge just from my\\nExterior looks because; my background is oddly and extensively\\nVaried. I am proud of my conundrum of qualities, including being\\nBi, they make me unique. I happen to be more urbane that urban. So,\\nI am seeking a person that is just a little out of the mainstream,\\nYet close enough to it to understand it as it all goes by.\\n\\nTruthfully, i am seeking an ongoing relationship, one that can grow\\nOver time. Not with dependency, but one with curiosity, with\\nSomeone who desires new adventures with a good friend. I value\\nFriendship above all else. And it is my hope that friendship is\\nYour goal as well.\\n\\nI'd first like to grab a beer to see what fills your sails?", - "img": "user_pixel/f-371611-1200x900.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Female", - "upper_age": 37, - "user": 30 - }, - "model": "earlydating.Profile", - "pk": 30 - }, - { - "fields": { - "age": 35, - "bio": "Say again?", - "img": "user_pixel/f-2454938-300x200.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 31 - }, - "model": "earlydating.Profile", - "pk": 31 - }, - { - "fields": { - "age": 49, - "bio": "The questions are definitely easier than writing about myself. How\\nBout this...i'm well traveled, but not well read. I've had enough\\nJobs and enough schooling to know what i'm really good and really\\nLike doing. I'm old enough to finally be mature (takes much longer\\nFor a man and much longer than i thought i needed), and young\\nEnough to know that you've got to go out and do stuff to have\\nFun.\\n\\nI want to be spending time with a strong woman who knows what she\\nWants and knows she deserves it. I think that takes a more mature\\nWoman as well...especially the second part.", - "img": "user_pixel/f-1732575-1200x800.jpg", - "lower_age": 47, - "preference": "straight", - "sex": "Female", - "upper_age": 63, - "user": 32 - }, - "model": "earlydating.Profile", - "pk": 32 - }, - { - "fields": { - "age": 46, - "bio": "Likes:\\n\\nSweet people\\n\\nCaring\\n\\nFemales who can cook\\n\\nFunny/laughter/jokes\\n\\nPeople who aren't easily offended\\n\\nFemales that could fan and feed me grapes on a hot day\\n\\nSomeone that would put up the toilet seats for me\\n\\nSarcasm\\n\\nVideo gaming- so i don't need to hear your complaining\\n\\nMusic - (see video gaming)\\n\\nSports - silver/black/orange all day\\n\\nBobatea- i suck black balls weekly...no homo\\n\\nCuddling all day/night long\\n\\nBeing real!!!\\n\\nDislikes:\\n\\nRacists\\n\\nPeople that care too much about the size of an asian men's sexual\\nUtensil, than their heart. Grow up already!!! think with your heart\\nNot your vajayjay. Last time someone mentioned this to me, i put\\nThem in their place. Didn't care about their feelings hurt...now\\nWhat!?!\\n\\nPeople putting up half naked pix of themselves and yet, they don't\\nWant people to think of them as sex objects.\\nSolution: don't put those pix up duhhh....\\n\\nLiars- if you are really my cousin or under-aged, please tell\\nMe!!!\\n\\nSnobby people\\n\\nDiamond princesses...they are more worst than gold diggers\\n\\nStubborn- you going to have to pay me to put up with your\\nCrap\\n\\nUsers - because i will find ways to use you back ;)\\n\\nPeople that are too lazy to put up those toilet seats for me. (you\\nWant me to fall head first into the toilet or something?)\\n\\nPeople who could find a job higher than a fast food joint... Don't\\nWant a female to best me\\n\\nUsage of online lingo in a conversation: ex.) \\\"el oh el\\\" and \\\"oh em\\nGee\\\" you girls need to stop!!!\\n\\nBabytalk- i don't want to hear that googoo gaga out of your mouth.\\nWant a baby baba to shut you up?\\n\\nComplainers- if you are going to to do that, stay at home and do\\nThat with your mom. We are supposed to have fun, not hear about...\\\"\\nAww my nails are messed up i need to paint it over again.\\\" or \\\"\\nAwww my weaves are falling off and i need cover up my bald spot.\\\" i\\nDon't need that, so stay at home. Please!!!\\n\\nPeople that can't read!!!\\n\\n...did i say women love my humor and sarcasm ;)", - "img": "user_pixel/m-2358801-300x200.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Male", - "upper_age": 51, - "user": 33 - }, - "model": "earlydating.Profile", - "pk": 33 - }, - { - "fields": { - "age": 49, - "bio": "I'm a well balanced mix of personalities. I'm an unabashed science\\nNerd, but i'm also athletic. I love cycling, swimming, skiing,\\nCooking, and dancing. Recently i've been trying to find time for\\nGuitar practice and triathlon training. I also love to travel\\nWhenever possible.\\n\\nI tend to pursue things wholeheartedly, and my personal motto is\\nThat if you can't stay active, at least stay busy. Despite my\\nFeverish approach to my daily activities, i am more laid back and\\nEasy going with my relationships. I prefer to avoid complications.", - "img": "user_pixel/m-186996-725x467.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Male", - "upper_age": 59, - "user": 34 - }, - "model": "earlydating.Profile", - "pk": 34 - }, - { - "fields": { - "age": 35, - "bio": "I never know what to put in these things... Fyi: i'm far from\\nPerfect. I guess i'm here to meet new people and explore what life\\nHas to offer. If that's a date or just a casual nite out, i'm down.\\nEnjoy learning about subjects/places/\\\"things\\\" i know little about.\\nAlso dig music, food, attempting to cook, camping, new restaurants,\\nNew dive bars, exploring this beautiful bay we live in. I love to\\nLaugh and make others laugh (i believe it's the key to happiness.)\\nI'm a bay area native and love it here! if any of this babble seems\\nInteresting, send me a message and let's chat!", - "img": "user_pixel/m-186996-725x467.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 35 - }, - "model": "earlydating.Profile", - "pk": 35 - }, - { - "fields": { - "age": 36, - "bio": "I have always been pegged as the \\\"nice guy\\\". When i commit to\\nSomething, i go for it wholeheartedly. I am the most loyal man you\\nWill ever meet, and always try my hardest to do whats right in\\nEvery situation i'm in.", - "img": "user_pixel/f-371743-666x900.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Female", - "upper_age": 43, - "user": 36 - }, - "model": "earlydating.Profile", - "pk": 36 - }, - { - "fields": { - "age": 26, - "bio": "Recently graduated and snagged a pretty awesome place in nopa\\n(private bath... 'nough said). I'm pretty stoked to be in san\\nFrancisco but i don't know many people in the city. I graduated\\nFrom stanford (political science) and most of my friends are still\\nIn the lower peninsula. Sucks.", - "img": "user_pixel/m-260895-900x675.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Male", - "upper_age": 38, - "user": 37 - }, - "model": "earlydating.Profile", - "pk": 37 - }, - { - "fields": { - "age": 23, - "bio": "Im bisexual i love being in the bitch in the relationship wether\\nIts with a man or woman so if public nudity cross dressing and\\nbisexual guys isnt a turn on what are you smoking????", - "img": "user_pixel/m-208350-725x483.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Male", - "upper_age": 31, - "user": 38 - }, - "model": "earlydating.Profile", - "pk": 38 - }, - { - "fields": { - "age": 21, - "bio": "Sweet queer\\nPoly geeky kinky feminist liberal overly verbose\\nCynical\\nOptimist with a dirty and dark sense of humor and\\nFever dreams of polymathy iso... Awesome people i\\nHaven't met yet, for surprising and delicious and hilarious\\nInteractions across the spectrum of possibilities. (this\\nLegitimately and honestly includes new friends -- i'm not interested in\\nFiltering and discarding neat individuals out of my life\\nJust because there's no mutual relationship chemistry.)\\n\\nI consider 'there's no way to do that' a statement of challenge,\\nNot a concession to inevitability. I take sex both as intensely and\\nAs casually as it deserves. I don't like losing, but i try very\\nHard to be gracious when i do. I've got a sadly limited vocal\\nRange, but that doesn't stop me from singing when the mood moves\\nMe. My pronunciation is irrevocably and curiously erroneous in\\nAmusing ways. I'm happiest when i've just made someone laugh -- the\\nHarder the better. My (white, male, financial) privilege is examined, and kept\\nUnder recurring surveillance. I'll try almost anything once, and on\\nZero notice if my schedule is free.\\n\\n(as for the body type self-summary in the details sidebar, i prefer\\n\\\"stocky\\\", but that's not an available option on the list, so it\\nGets put here.)", - "img": "user_pixel/f-2058749-982x1323.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Female", - "upper_age": 29, - "user": 39 - }, - "model": "earlydating.Profile", - "pk": 39 - }, - { - "fields": { - "age": 21, - "bio": "Hey guys! my name is rj, i just turned\\n30 (and fabulous) , and i live & work\\nIn san francisco.\\n\\nI'm a bay area native (east bay) and have lived in berkeley (go\\nBears!) and santa cruz (beach!) to name a few.\\n\\nI think i'll stick around here for a bit, been in the city for over\\nA year now and i'm loving it!", - "img": "user_pixel/m-211526-725x483.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Male", - "upper_age": 26, - "user": 40 - }, - "model": "earlydating.Profile", - "pk": 40 - }, - { - "fields": { - "age": 37, - "bio": "I moved to the west coast six years ago after finishing business\\nSchool on the east coast. I grew up in kentucky but strangely don't\\nHave an accent.\\n\\nI have a slight addiction to travel (60 countries and counting!).\\nI'm an avid college basketball fan and think march madness is\\nProbably the most glorious time of year. I love sports, especially\\nBiking, skiing, running, tennisgenerally anything outdoors.\\n\\nMy favorite activities in the city include dodging tourists, riding\\nParadise loop, hanging anywhere near the water, and taking\\nAdvantage of all the amazing restaurants we have here.", - "img": "user_pixel/f-1929452-1200x900.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 44, - "user": 41 - }, - "model": "earlydating.Profile", - "pk": 41 - }, - { - "fields": { - "age": 36, - "bio": "Electronic music and comedy and the need for knowledge are the\\nThings that drive me in life.... I am pretty laid back... But can\\nSwitch into party mode at the drop of a good track...", - "img": "user_pixel/f-371869-600x900.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 43, - "user": 42 - }, - "model": "earlydating.Profile", - "pk": 42 - }, - { - "fields": { - "age": 46, - "bio": "Lately i've just been winning at life. I recently moved to a new\\nPlace in the city right a cross the street from the ball\\nPark.\\n\\nI like to work hard all week and play hard on the weekends. I have\\nA great group of friends around me here in the city and we are\\nAlways up for a good time.\\n\\nI love to travel, eat great food, go dirt biking and some times i\\nLike to just kick back and relax.", - "img": "user_pixel/f-371983-1200x795.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Female", - "upper_age": 51, - "user": 43 - }, - "model": "earlydating.Profile", - "pk": 43 - }, - { - "fields": { - "age": 30, - "bio": "I am looking for a longterm partner/companion who wants to build\\nSomething together. While i look for that i am also open to new\\nFriends, activity and/or play partners. I value good communication,\\nPlayfullness, stillness, varied adventures, and room for us both to\\nBe ourselves. I am very sensual and also love humor, silliness,\\nReading, live music, dancing, hiking, cycling, the outdoors\\nGenerally, good food, living simply, as well as having quality\\nPeople in my life. I am curious about most things and can find\\nExcitement in many corners. I am blind, which conjures up many\\nDifferent assumptions. I encourage you to ask questions. I am very\\nIndependent and am not looking for someone to \\\"take care of me.\\\" i\\nMerely am looking to share the richness that life has to offer.", - "img": "user_pixel/m-2426807-300x200.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Male", - "upper_age": 41, - "user": 44 - }, - "model": "earlydating.Profile", - "pk": 44 - }, - { - "fields": { - "age": 26, - "bio": "A man about town, i'm thirsty for knowledge, curious about food,\\nDriven for new experiences, and friendly to meet new people.", - "img": "user_pixel/f-371729-1200x801.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Other", - "upper_age": 31, - "user": 45 - }, - "model": "earlydating.Profile", - "pk": 45 - }, - { - "fields": { - "age": 29, - "bio": "Wow... Where the fuck am i?\\n\\nSo i'm 20 years old now. And i... Talk a lot, and i'm a scholar. I\\nFeel already that this is going to be a really short profile.\\n\\nI'm direct and readable. Some people consider me cynical, but that\\nIs only because i'm not reluctant to express my disapproval towards\\nThings i disapprove of. But at the same time, i express enthusiasm\\nFor things that many people don't know how to express enthusiasm\\nFor. Disconcerting how people only seem to be able to spot you when\\nYou're negative huh?\\n\\nIn any case... I'm terribly culture/social conscious. Which should\\nBe distinguished from \\\"news conscious.\\\" uhm... I'm artistically\\nMinded, and athletically minded, and overall pretty ambitious about\\nWhere my brain needs to go so forget any overbearing labels that\\nMight start developing.\\n\\nAh... Fuck this... Let's move on.", - "img": "user_pixel/f-371793-860x900.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Female", - "upper_age": 43, - "user": 46 - }, - "model": "earlydating.Profile", - "pk": 46 - }, - { - "fields": { - "age": 28, - "bio": "It all comes down to chemistry, let's just see see what\\nHappens...laid back.. Working on my career...and highly enjoy\\nStayin physically active... Just looking to find that special\\nSomeone and and share some new expiriences...", - "img": "user_pixel/f-371903-1200x800.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Female", - "upper_age": 34, - "user": 47 - }, - "model": "earlydating.Profile", - "pk": 47 - }, - { - "fields": { - "age": 33, - "bio": "I am a fun adventurous man driven to succeed and make the most of\\nThis life. A big part of making the most of this life is sharing\\nGreat memories with a special someone that you connect with on a\\nDeep level. I am well educated, traveled, experienced, and\\nGrounded. I take pride in being a gentleman - always taking care of\\nThe woman i am with. I live in downtown sf and i am looking for\\nSomeone who is comfortable visiting the city often.", - "img": "user_pixel/f-371856-1200x798.jpg", - "lower_age": 35, - "preference": "bisexual", - "sex": "Other", - "upper_age": 46, - "user": 48 - }, - "model": "earlydating.Profile", - "pk": 48 - }, - { - "fields": { - "age": 34, - "bio": "Smart, sarcastic, fun-loving, fiercely loyal, athletic, focused,\\nDetermined", - "img": "user_pixel/m-2436239-300x450.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 49 - }, - "model": "earlydating.Profile", - "pk": 49 - }, - { - "fields": { - "age": 36, - "bio": "I have been told i am handsome, intelligent, kind, funny, social,\\nAnd lots of fun. I am very open minded, love traveling and meeting\\nInteresting people. I also enjoy discovering new restaurants and\\nGoing dancing. I go to the gym regularly and enjoy playing squash,\\nTennis, and golf.", - "img": "user_pixel/m-215974-725x496.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 50 - }, - "model": "earlydating.Profile", - "pk": 50 - }, - { - "fields": { - "age": 28, - "bio": "If you are actually willing to read anything, then i might as well\\nReward you for your efforts:\\n\\nDisclaimer: the order of the following thoughts does not correlate\\nTo any one's value. I like disclaimers...\\n\\nMusic is a big part of my emotional existence. I love to play games\\nBut i'm not competitive socially. I love to laugh... A lot, and so\\nNaturally i try to be a source of other people's laughter, and i\\nFind limited to moderate success. I make a genuine effort to find\\nAn appreciation for most people's interests. I was raised to have\\nHigh standards for some things, but really i just want to be happy.\\nI tend to choose my words carefully. I'm usually pretty humble as a\\nRule because i'm terribly worried about coming off as an arrogant\\nAlpha male with no shame or prudence. Sometimes i derail. I believe\\nPeople have to make their own happiness, and relying on others for\\nIt is risky. I always try to be a team player and will tolerate\\nSome level of discomfort if it means a greater good for the group.\\nThere is so much about my thoughts that i don't understand. I don't\\nWrite drafts, and despite my distaste for essays in school, i\\nAlways received a good grade on them. I irrationally worry about\\nWhat random people think about my actions. I would have used bullet\\nPoints for all this stuff if i had sent it to you in an email, for\\nClarity and assurance of delivery. Sometimes, i drink a lot of\\nScotch...\\n\\nWow, that was a lot. So, now we really don't even need to meet! oh\\nYeah, sarcasm is loads of fun... Sometimes...", - "img": "user_pixel/m-2358803-300x200.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 36, - "user": 51 - }, - "model": "earlydating.Profile", - "pk": 51 - }, - { - "fields": { - "age": 50, - "bio": "Recently returned to san francisco after a brief hiatus in la (grad\\nSchool). I'm glad to get that out of my system! :)\\n\\nI enjoy biking, trying out new food (especially vegetarian food!),\\nCooking, baking, traveling (on transit, preferably), looking at\\nMaps, practicing my headstands at the park, and outdoor picnics\\n(after practicing my headstands of course!). At times, i'm also an\\nOutdoorsy, nature-y kind of guy. Love me a good hike...and i\\nRecently started a garden in my apt building.\\n\\nI'm a fun, motivated guy who's ready to meet someone who's serious\\nAbout dating.", - "img": "user_pixel/f-371887-1200x800.jpg", - "lower_age": 54, - "preference": "straight", - "sex": "Female", - "upper_age": 64, - "user": 52 - }, - "model": "earlydating.Profile", - "pk": 52 - }, - { - "fields": { - "age": 27, - "bio": "I'm an entrepreneur in the bay area. I dropped out of uc berkeley\\nAnd started two companies and am about to start my third. I'm often\\nVery busy but i like to be around people in my spare hours.\\n\\nDon't hesitate to shoot my a message to grab my attention. I'd love\\nTo grab coffee or drinks sometime - for me, meeting in person is\\nThe only way to get to know someone and i love meeting new people", - "img": "user_pixel/m-2383498-300x200.jpg", - "lower_age": 31, - "preference": "gay", - "sex": "Male", - "upper_age": 34, - "user": 53 - }, - "model": "earlydating.Profile", - "pk": 53 - }, - { - "fields": { - "age": 24, - "bio": "Intelligent rambler self-centered nice guy caring asshole is how\\nIve been described really i just have a limitless sense of humor\\nAnd a love of sarcasm i see it as humans way of being politely\\nHonest but uuggghh lets see i like skateboarding basketball mma\\nInto fitness but far from a health nut i like trying diff looks\\nWith my wardrobe a thinker stargazer poet and self declared genius\\nOf life\\n\\nThe best lesson ive ever learned came from my dadand it was\\n\\nShit happens\\n\\nP.s. Ninjas are the shit", - "img": "user_pixel/f-371903-1200x800.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Other", - "upper_age": 36, - "user": 54 - }, - "model": "earlydating.Profile", - "pk": 54 - }, - { - "fields": { - "age": 44, - "bio": "Irish, easygoing, fit man seeking a nice, sweet woman to compliment\\nMy life. Born and raised in ireland, i was reared to appreciate\\nHonesty, hard work, and the importance of living life being true to\\nOneself. I think it's important to be true to my word with other\\nPeople. I don't feel the need for too much attention. (but a little\\nIs fine)\\n\\nPlease note: in my experience, a man and a woman don't necessarily\\nHave to have almost everything in common to enjoy a great\\nRelationship. To you ladies out there: i think some women may\\nOver-analyze what is said, written, or implied by men. Maybe we're\\nJust simpler creatures who may not put enough thought into what we\\nSay?\\n\\nYou might find me old-fashioned, a slow driver, understated,\\nEasygoing, and quirky. I'm more of a doer than a talker.\\n\\nLong live women.", - "img": "user_pixel/f-1776084-1200x800.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 55, - "user": 55 - }, - "model": "earlydating.Profile", - "pk": 55 - }, - { - "fields": { - "age": 33, - "bio": "I'm a teacher/grad student who doesn't know how to summarize\\nHimself well. So this'll have to do.\\n\\nOk, about me. I'd like to teach college someday. Like, as a\\nProfessor. Not as a gta again. But i don't know if i will, because\\nI'm turning down my offer to penn's phd program to pursue a job\\nHere in the bay area. More on that later.\\n\\nI love to ride my motorcycle on winding roads, on sunny days. Road\\nTrips with friends, finding new restaurants and bars i like,\\nCamping, all are awesome. When i'm not being lazy with netflix and\\nBlanket, that is.\\n\\nIf you can teach me something new, you should definitely get in\\nTouch. I love staying up all night talking, starting the night not\\nUnderstanding and getting it a few hours later.\\n\\nBtw: i'm poly and i am seeing somebody right now who may turn into\\nA primary. This is something you should be aware of.", - "img": "user_pixel/f-2439551-300x450.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 46, - "user": 56 - }, - "model": "earlydating.Profile", - "pk": 56 - }, - { - "fields": { - "age": 47, - "bio": "\\\"a human being should be able to change a diaper, plan an invasion,\\nButcher a hog, conn a ship, design a building, write a sonnet,\\nBalance accounts, build a wall, set a bone, comfort the dying, take\\nOrders, give orders, cooperate, act alone, solve equations, analyze\\nA new problem, pitch manure, program a computer, cook a tasty meal,\\nFight efficiently, die gallantly. Specialization is for\\nInsects.\\\"\\n-robert a. Heinlein\\n\\nI look at the world through the lens of sustainable design +\\nPermaculture, and lately find my life very aligned with all sorts\\nOf good things -- sustainable living, biking, organic food, and\\nOther things that make life a lot more pleasant. I also know that\\nIt is far more powerful to create something you love than to\\nProtest that which you dislike.\\n\\nI am naturally curious about the world, and i very intentionally\\nAct on that curiosity -- i travel and explore, learning from both\\nThe natural environment and other people. The world gives us what\\nWe need, if we only are open enough to receive.\\n\\nI am very intentional, quite athletic, and freaking resourceful. I\\nKnow myself and i know my power in the world.", - "img": "user_pixel/m-371991-300x200.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 59, - "user": 57 - }, - "model": "earlydating.Profile", - "pk": 57 - }, - { - "fields": { - "age": 49, - "bio": "I am an open-minded but opinionated man.\\n\\nI love life and learning; there is much to discover. I am naturally\\nCurious and thrive on challenges.\\n\\nI can be shy at first, however, once i get to know you i'm far from\\nIt. I tend to prefer hanging out in smaller groups to massive\\nParties but every once in a while i'm down for an impromptu\\nAdventure.\\n\\nI am a nerd and tend to like nerdy things like board games, video\\nGames, and looking everything up on wikipedia. I can be competitive\\nAnd feisty at times. I like playing devil's advocate and i don't\\nThrow games. In general, however, i am easygoing and relaxed. Want\\nTo pick the restaurant? sure, i'll go wherever.", - "img": "user_pixel/f-297029-1100x731.jpg", - "lower_age": 53, - "preference": "straight", - "sex": "Female", - "upper_age": 63, - "user": 58 - }, - "model": "earlydating.Profile", - "pk": 58 - }, - { - "fields": { - "age": 38, - "bio": ". . \\n .\\n\\nI was a student in political science and\\nPhilosophy, now\\nI'm an artist. I love riding my bicycle around town. I read a lot of\\nBooks and anything\\nElse i can get my hands on, even when there's other people around.\\nI'm vegetarian.\\n\\nI am clever, fast, and tall", - "img": "user_pixel/f-1742340-1200x798.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Other", - "upper_age": 47, - "user": 59 - }, - "model": "earlydating.Profile", - "pk": 59 - }, - { - "fields": { - "age": 22, - "bio": "I've been told i am an extrovert but i feel like an\\nIntrovert. While i may feel shy when first meeting someone, i\\nQuickly transform into the fun, witty, and often ridiculous\\nAlter\\nEgo of a superhero (sorry, it's against league of justice code\\nTo\\nReveal my superhero identity). Everyone has some wisdom to\\nShare\\nAnd i revel in the opportunities to engage with others and\\nLearn\\nNew things. Germany was home for 3 years and i've traveled to\\n12\\nDifferent countries, which has widen my view of the world and\\nLeft\\nMe culturally open minded. My friends tell me i'm an\\nEntertaining,\\nEnergetic, and passionate person. It's true, i'm passionate\\nAbout\\nLife, about politics, and passionate about human existence\\nAnd\\nExploring the depths of human consciousness. With my playful\\nSense\\nOf humor i tend to be \\\"the funny guy.\\\" don't bother to reach out\\nTo\\nMe if you don't enjoy laughing.\\n\\nDating sites are strange, but we're all here anyway. I'd like\\nTo find someone who shares similar qualities as me (hopefully\\nYou're looking at me because the okc algorithm says we're a\\nGood\\nMatch). I guess i'm here looking for someone who really\\nEnjoys\\nExperiencing life from one spontaneous moment to the next.", - "img": "user_pixel/f-371743-666x900.jpg", - "lower_age": 20, - "preference": "bisexual", - "sex": "Other", - "upper_age": 32, - "user": 60 - }, - "model": "earlydating.Profile", - "pk": 60 - }, - { - "fields": { - "age": 26, - "bio": "Hey, im ryan. I just moved here little while ago, and dont really\\nKnow anybody here yet. I'm not really sure what else to put in\\nHere. If ya want to know more, just ask me.\\n\\nI am witty, fun, and random", - "img": "user_pixel/f-2439625-300x200.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Female", - "upper_age": 34, - "user": 61 - }, - "model": "earlydating.Profile", - "pk": 61 - }, - { - "fields": { - "age": 46, - "bio": "Im here to fine my mrs right , im a nice as far as nice guys go im\\nVery caring im giving with l awhole lot of love togive an it dont\\nTake much to make me happy hey if u like what u see check me out im\\nDennis . Im single , what can someone else give me that u cant\\nMeaning i dont cheat so come on chill with me ill treat u right ,", - "img": "user_pixel/m-54189-725x483.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 60, - "user": 62 - }, - "model": "earlydating.Profile", - "pk": 62 - }, - { - "fields": { - "age": 37, - "bio": "I'm an old school kinda guy stuck in a world of hipsters. I like\\nBicycles with more than one gear for these viscous hills. I eat\\nGlutton with every meal. My jeans are loose enough to fit my keys,\\nCell phone, and wallet comfortably.\\n\\nI used to teach english in japan and have been to a lot of places\\nIn the u.s. And around the world, but still get lost in this tiny\\nCity. It usually ends up a good time though.\\n\\nOther than that i'm an easy going guy and i tend to get along with\\nAnyone who has a sense of humor and can deal with sarcasm.", - "img": "user_pixel/f-371865-1200x900.jpg", - "lower_age": 37, - "preference": "bisexual", - "sex": "Female", - "upper_age": 50, - "user": 63 - }, - "model": "earlydating.Profile", - "pk": 63 - }, - { - "fields": { - "age": 48, - "bio": "I am an inventor... Well, at least i might be someday. When i am\\nNot at my day job, i am designing, building, creating, or\\nDeveloping in some way. I enjoy hanging out with good friends,\\nFood, traveling, music, the outdoors, and pretty much everything\\nElse (i am versatile). I am however not very good at describing\\nMyself, which is why this is proving to be difficult. Friends and\\nFamily would probably describe me as humorous, caring, and\\nDown-to-earth. I like to think of myself as weird in a good way and\\nSpontaneous. My humorous side does not appear to be coming out\\nWhile typing.\\n\\nI really enjoy getting people to laugh and have a good time, i try\\nTo be as efficient as possible and am constantly looking to\\nChallenge myself. I am a very optimistic person and prefer to\\nSurround myself with those who are as well. I love kids and animals\\n(sadly i am slightly allergic to cats, but have still managed to\\nLive with them). I am not very political but care about human\\nRights. I am wacky and goofy and can even enjoy embarrassing myself\\nFor the entertainment of others. Also, i often like to nerd out and\\nWatch movies in bed (not at the same time of course).", - "img": "user_pixel/f-371915-900x900.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 64 - }, - "model": "earlydating.Profile", - "pk": 64 - }, - { - "fields": { - "age": 31, - "bio": "I love music and art.\\nI enjoy nights out\\nI only wear v necks", - "img": "user_pixel/m-246713-900x600.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Male", - "upper_age": 42, - "user": 65 - }, - "model": "earlydating.Profile", - "pk": 65 - }, - { - "fields": { - "age": 47, - "bio": "I strive to make something of myself. I work and live on my own.\\nFamily and friends are most important to me.\\n\\nIn my most recent adventurous i have traveled to france, monaco and\\nSwitzerland. Next stop i am looking for is australia =] i travel\\nBack and fourth to wyoming for getaways to yellowstone: bike\\nRiding, horse back riding, kayaking, and this winter i am going to\\nTry ice rock climbing. Ha!", - "img": "user_pixel/m-246713-900x600.jpg", - "lower_age": 46, - "preference": "gay", - "sex": "Male", - "upper_age": 53, - "user": 66 - }, - "model": "earlydating.Profile", - "pk": 66 - }, - { - "fields": { - "age": 49, - "bio": "Im a chill guy just like to play tennis whenever i kan. I like to\\nHave funn im a muralist im currently in college tryin to major in\\nArt. I stay in sf and llove to meet new people. I like to smoke\\nJust weed nothing hard. I drink everynow and then. Im salvadorien\\nIm hella outgoing nice and respectful. I hate wen someone tries to\\nTalk smak online and not in yo face. Im single looking for the\\nRight woman to take ma heart", - "img": "user_pixel/f-371963-1137x900.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 67 - }, - "model": "earlydating.Profile", - "pk": 67 - }, - { - "fields": { - "age": 38, - "bio": "Youre way too beautiful girls. Youre gonna have me going suicidal\\nWhen you say its over. I know i took this from a song but it really\\nIs true!", - "img": "user_pixel/f-371517-1200x800.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Female", - "upper_age": 46, - "user": 68 - }, - "model": "earlydating.Profile", - "pk": 68 - }, - { - "fields": { - "age": 26, - "bio": "Hello lady's! my name is gary i'm new to okcupid. I'm in to real\\nEstate i own a custom car shop. I love kids and coach\\nYouth football, basketball and baseball in my spare time. I'm god\\nFearing and a proud and responsible father. I'm a fun,romantic\\n& and outgoing gentlemen that love's to travel. I like comedy\\nShows, i'm pretty funny and even a lil silly at times. I'm the type\\nOf guy who likes to keep a smile on a lady's face. I like to do\\nNice things just because, it doest have to be a lady's birthday,\\nHoliday, or when i've done anything wrong lol.\\n\\nI would like to meet a sweet kindhearted lady who loves to have\\nFun. What makes me unique is if i like or love you without me\\nSaying it she will already know by how i treat her [and thats\\nGreat] . I believe in law of attraction and i'm to busy for games.\\nI'm looking to meet the rite lady and show her that dreams do come\\nTrue. I only deal with positive people and promise to be to be the\\nMost positive,understanding and loving person in her life. I like\\nTo thank you women for all the casual sex offers but thats not what\\nI'm looking for. Fill free to hit me up if u would like to know\\nMore. Have a safe and blessed day!", - "img": "user_pixel/m-246433-900x600.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 69 - }, - "model": "earlydating.Profile", - "pk": 69 - }, - { - "fields": { - "age": 32, - "bio": "The most important thing you should know about me is that i'm a\\nFull-time single father to my eight year old daughter, and that it\\nIs fantastic. Never knew life could be so lovely; never thought i\\nCould love so fiercely. Obviously, i'm looking for someone who also\\nSees that she is value added.\\n\\nThe second thing you should know about me are my friends. After my\\nDaughter, they are hands down the best thing i've got going. They\\nAre an amazing group of people, really tied into the city and the\\nWorld, and we are always up to something worth the effort.\\n\\nThe third thing you should know about me is that i am a wave rider.\\nWhen i see a plan i like, when i'm possessed by a vision of how it\\nCould or should be, i can be single-mindedly inspired (and\\nInspiring). I tend to go for it.\\n\\nI should also mention that i'm not blasting out a bunch of emails.\\nSo if i contact you, i'm interested in you, and you'll find that i\\nTry to put a little thought into what i say.", - "img": "user_pixel/m-1862356-300x200.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 70 - }, - "model": "earlydating.Profile", - "pk": 70 - }, - { - "fields": { - "age": 42, - "bio": "I was a late bloomer. I look young for three full decades of life\\nOn earth. I went to uc davis and studied literature, poetry,\\nCreative writing, film theory, video practice, and\\nCommunity+regional development. I didn't drink or do drugs in high\\nSchool. I treasure my friends. I don't have facebook. I am a\\nSubstitute teacher and private tutor. I am adding a single subject\\nCredential this year, yes! i once witnessed a kid slug a kid over\\nThe use of an animated gif on myspace. I've been into bjrk since\\nMarch 1996, which was over 15 years ago (i've seen her perform nine\\nTimes, most recently in manchester).\\n\\nI need a thousand words to complete my profile? i want to say\\nSomething cheesy like, every kiss begins with k.\\n\\n[that education parameter, space camp=single subject credential]", - "img": "user_pixel/f-2439625-300x200.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Female", - "upper_age": 49, - "user": 71 - }, - "model": "earlydating.Profile", - "pk": 71 - }, - { - "fields": { - "age": 25, - "bio": "... I'm real! i have a big heart, and im proud to be who i am,\\nProlly the most down to earth guy youll meet. Im very independent\\n...kind ,sweet ,easy goin laid back always able to crack a joke or\\nTwo or three lol....always lookin out for others before\\nMyself...ive learned alot of lessons in my life and reguardless of\\nThe outcome ive learned to always better myself and my life through\\nThem...never hold a grudge and never leave a stone unturned so ill\\nNever have a single regret yet im always able to forgive makin me\\nVery humble and keep a golden heart shinning!...what im lookin for\\nIs a sweet woman who will like me for me as i am. Who is\\nIndependent and happy with her life, who is nothin but real...and\\nMost importantly loyal...who will stick by my side through hard\\nTimes to better appreciate the good times...im simple and it doesnt\\nTake much to bring out a smile.... The moto i go by is \\\"live laugh\\nAnd always love and always forgive\\\"...do this and then your really\\nLiving a life worth living.", - "img": "user_pixel/f-371907-1200x800.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Female", - "upper_age": 35, - "user": 72 - }, - "model": "earlydating.Profile", - "pk": 72 - }, - { - "fields": { - "age": 25, - "bio": "******update********\\nI have returned to the bay to \\\"settle\\\" for a while. It's been a fun\\nAnd adventuresome couple of years, but i am enjoying being near\\nFamily again. I've still got the wanderlust, but for now i'm going\\nTo make my circles much smaller. :-)\\n**********************************\\n\\nI had been a full-time \\\"technomad\\\", or geographically displaced\\nProfessional. I traveled full time via a small rv / motorcycle. I\\nHave been enjoying this lifestyle for a couple of years now, and\\nHad planned to continue for the foreseeable future. However, i\\nMissed the bay and seeing my family regularly.\\n\\nThe couple of years have taught me many lessons, most important of\\nWhich, is to keep an open mind and to enjoy the ride. Life is full\\nOf wonderful opportunity and nature and people can be so\\nBeautiful.\\n\\nI've lived many different 'lives'. I've been blue collar, military,\\nAnd white collar. I've learned 3 languages and have forgotten most\\nOf what i learned (japanese, spanish, and german). I've lived on\\nThree continents and have traveled the world doing my passion (part\\nTime), which was volleyball.\\n\\nCommunity service is very important to me. I've worked with habitat\\nFor humanity, earthcorps, seattleworks, young professionals of\\nSeattle, etc., etc. Future plans include some time doing volunteer\\nGardening, youth mentorship, and whatever else may present\\nItself.\\n\\nI have many interests and lately have been doing a lot of\\nMotorcycle touring, backpacking, hiking, and camping. I love the\\nOutdoors and enjoy the discoveries made on a road trip. I am\\nComfortable in all environments, from black tie affairs to backyard\\nBbq's.\\n\\nI see so many references in people's profiles asking for honesty,\\nIntegrity, loyalty, etc. This is amazing to me. Why is this such a\\nRare commodity? i approach everyone with the same level of trust\\nAnd with integrity. I always assume the best in others, which i\\nHave learned makes me naive and vulnerable. However, i would not\\nHave it any other way. I do not want to live a life of fear and\\nCaution and doubt about those i interact with. I will, of course,\\nBe a bit more selective from now on, but i will still always extend\\nTrust and faith in others. I am looking for someone who can do the\\nSame.\\n\\nI prefer responses that are thoughtful and show depth and give me\\nSomething to build a conversation upon. A response of \\\"nice pic\\\",\\nOr \\\"nice eyes\\\", etc. Give me very little to work with and tell me\\nNothing about you.", - "img": "user_pixel/f-2439625-300x200.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Other", - "upper_age": 34, - "user": 73 - }, - "model": "earlydating.Profile", - "pk": 73 - }, - { - "fields": { - "age": 49, - "bio": "A cautious photo for a cautious dude (i'm having an internal debate\\nAs we speak about calling myself a dude). I'm sure i'll warm to\\nPutting one where you can actually see what i look like sometime\\nSoon.\\n\\nDon't search for meaning if i do not respond to your message. This\\nIs my first time on an online dating site (vultures swoop in...)and\\nI'm pretty slow to get things going-with anything. Don't be\\nSurprised if you here from me a week later.", - "img": "user_pixel/f-1742340-1200x798.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Other", - "upper_age": 54, - "user": 74 - }, - "model": "earlydating.Profile", - "pk": 74 - }, - { - "fields": { - "age": 40, - "bio": "I'm more interested in hearing about you, but given that we've yet\\nTo meet, let me share some more of my background.\\n\\nI grew up in rhode island so i love sailing and miss the seasons\\n(but wouldn't trade it for the california weather!) i was a\\nPhilosophy and economics major at tufts university in boston, then\\nCame west to get my mba at stanford. I worked in sf after\\nGraduating and decided i loved california too much to leave.\\n\\nI'm an entp who loves adventure and meeting people. I look forward\\nTo learning about you and discovering each other through\\nConversation, fun and adventure.\\n\\nI'm looking for someone who will enjoy weekend adventures, casual\\nDinners out and formal dinners at home. I love to cook and\\nEspecially to make the process part of the 'party'. I love\\nEntertaining friends (and friends who are entertaining..) i want to\\nMeet your friends and to introduce you to mine. If we're\\nComfortable with, and committed to, each other, i'll look forward\\nTo introducing you to my daughters and would love to do a, \\\"play\\nDate\\\" with you and your children (that is, if you have any kids and\\nThey're not in college...)\\n\\nI'm caring, devoted, loyal, funny, ambitious, spontaneous, smart,\\nAthletic, energetic, empathetic.. And i think you'll like me!\\n\\nMy business is wine and i'd love take you to napa, sonoma,\\nMendocino, paso robles and wherever i go to fill boxes or taste\\nWine. If i head out of town for a conference, i'd love to have you\\nSkip work to join me (and happy to get you a business card if you\\nWant to be deputized the, \\\"queen of boxed wine\\\".)\\n\\nI'm looking forward to meeting someone with whom i can share some\\nFun times ahead so please let me know if you'd like to grab coffee\\nOr a glass of wine.", - "img": "user_pixel/f-2454938-300x200.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Other", - "upper_age": 45, - "user": 75 - }, - "model": "earlydating.Profile", - "pk": 75 - }, - { - "fields": { - "age": 38, - "bio": "Ok here is the thing, if i tell you everything about myself in this\\nBox where is the fun in it ? this box is like a preview to a movie\\n!\\n\\nI am a simple down to earth kinda guy, and i like girls who are\\nVery adorable. More about me - talk to me :)", - "img": "user_pixel/m-2436239-300x450.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Male", - "upper_age": 46, - "user": 76 - }, - "model": "earlydating.Profile", - "pk": 76 - }, - { - "fields": { - "age": 29, - "bio": "I'm a bay area native that finally made his way back up here after\\nSpending 5 years on the beautiful beaches of santa barbara. Looking\\nTo meet guys with similar interests to hang out with, grab a drink,\\nGo see shows, or hopefully date. I'm fresh to the city and would\\nLove for someone to grab me by the hand and take me on a whirlwind\\nTour. I'm ready to fall more in love with sf so show me what you've\\nGot.", - "img": "user_pixel/f-371795-1200x674.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 35, - "user": 77 - }, - "model": "earlydating.Profile", - "pk": 77 - }, - { - "fields": { - "age": 27, - "bio": "I'm not used to this online dating thing but since my friend\\nSuggest it that i should give it a try. \\u00a0i'm usually good at\\nMeeting people in person and i would usually keep a conversation\\nGoing even if the other person can't. \\u00a0i'm pretty busy at work\\nSo i don't have time to meet people. \\u00a0i live in daly city but\\nCommute to cupertino for my work. \\u00a0\\n\\nI'm a very caring person that always try to make people laugh.\\n\\u00a0usually i take charge in decision make when a decision need\\nTo be made quick. \\u00a0i was born in san francisco but grew up in\\nOakland. I could speak cantonese and mandarin. \\u00a0i'm a jack of\\nAll trade with lots of knowledge like from computers to car engine\\nTo cooking. (thanks to the internet) i work out as much as possible\\nAnd hoping that i could get ready for another half marathon. If you\\nAsk me what my interest is, i tend to have alot of interest and\\nHobbies like film making, djing and mixing music at a club, to\\nPhotography.\\n\\nThe person i'm looking for is someone that would be caring and\\nAlways be there when i need her. \\u00a0be one of my best friend and\\nMore. \\u00a0also that person will be kind of classy sometime.\\n\\u00a0if it doesn't work with relationship wise, it's always good\\nTo meet new friends.", - "img": "user_pixel/f-2439495-300x450.jpg", - "lower_age": 24, - "preference": "bisexual", - "sex": "Female", - "upper_age": 40, - "user": 78 - }, - "model": "earlydating.Profile", - "pk": 78 - }, - { - "fields": { - "age": 32, - "bio": "I'm 26 and living around s.f. I am an animator artist\\nExtraordinaire. I intend on getting into film production as a lead\\nDirector but am currently working toward a small production\\nBusiness now. I am outgoing and funny. I have allot of aggressive\\nDetermination to succeed. I work as a concept artist for one game\\nCompany and had been doing 3d modeling for the other. Currently i\\nWork technical support for a big name bank to make ends meet. I\\nHave had a real life check this last year after graduating and have\\nBeen through so many hoops and media industry bullshit. But i have\\nGained a plethora of new bat-toys and experiences to reflect upon.\\nPersonally i am looking for an outgoing and driven person like\\nMyself. But more importantly real. No drama. We live one life and i\\nWant to enjoy it for what it is.", - "img": "user_pixel/f-371817-600x900.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Female", - "upper_age": 44, - "user": 79 - }, - "model": "earlydating.Profile", - "pk": 79 - }, - { - "fields": { - "age": 35, - "bio": "Hello, i am a poly, \\\"bhm\\\" (big handsome male). I have a\\nPrimary\\nPartner, dragoncat42. This does not mean i am\\nNot looking for\\nNew friends or partners.\\nI am a cool, lovable, fun guy. I love music, movies, camping,\\nAnd\\nAnimals. I am looking to find new friends to hang with and\\nPeople\\nTo date, possibly have a secondary relationship with. *ideally*\\nI'd\\nLike a secondary partner that i can share with my primary, but\\nIt's\\nNot a requirement.\\n\\nI am fun, exciting, and handsome", - "img": "user_pixel/f-1757234-1200x810.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 80 - }, - "model": "earlydating.Profile", - "pk": 80 - }, - { - "fields": { - "age": 46, - "bio": "I'm an easy going, silver lining kind of guy that believes a day\\nWithout laughter is a day wasted. I've got a youthful exuberance\\nFor life and am looking for the same in a partner. I value people\\nAnd relationships. When we're talking about a subject i'm\\nPassionate about, i can be very effusive.\\n\\nI'm a sports fan, and a regular gym attendee. I enjoy working on,\\nAnd riding my motorcycle, love going to the movies, and dining out.\\nOne of my favorite things to do is trying new cuisine or a new\\nRestaurant. I am open to trying new foods and really enjoy\\nNew/exotic places. I like to play tennis although it?s been a while\\nSince i've been on the court. Perhaps if i had a tennis partner i\\nWould play more! i also love day/weekend trips, possibly taken at\\nThe last moment, not even knowing where i'm going. If it's on two\\nWheels, that's even better. Sometimes, it's the journey that makes\\nThe trip, not necessarily the destination. Traveling with good\\nCompany makes the experience, any experience, much better. How many\\nTimes have you just hopped in the car just to drive?", - "img": "user_pixel/f-2283967-300x200.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 81 - }, - "model": "earlydating.Profile", - "pk": 81 - }, - { - "fields": { - "age": 26, - "bio": "[tk] [lorem ipsum...]", - "img": "user_pixel/f-2451613-300x450.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Female", - "upper_age": 32, - "user": 82 - }, - "model": "earlydating.Profile", - "pk": 82 - }, - { - "fields": { - "age": 26, - "bio": "I was born and raised in the bay area and love all it has to offer,\\nFrom ocean to the mountains, to all the different people you meet.\\nI have my own little business and love it. I'm close with family\\nAnd never take friends for granted. I believe treat people how\\nYou'd like to be treated.", - "img": "user_pixel/f-371743-666x900.jpg", - "lower_age": 23, - "preference": "straight", - "sex": "Female", - "upper_age": 37, - "user": 83 - }, - "model": "earlydating.Profile", - "pk": 83 - }, - { - "fields": { - "age": 32, - "bio": "I play tennis, like to cook and relax at home with friends (good\\nConversation & drinks). I like sports, especially college\\nFootball. Hook em horns!\\n\\nI've been in sf for 10 years with a 7 year old dog named\\nChubs.\\n\\nI'm looking to find someone who is smart, fun, outgoing, has a\\nSense of humor.", - "img": "user_pixel/f-371675-1200x800.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Other", - "upper_age": 45, - "user": 84 - }, - "model": "earlydating.Profile", - "pk": 84 - }, - { - "fields": { - "age": 44, - "bio": "Hey there!\\n\\nI was born and raised in mexico, and six years ago i moved to the\\nBay area to study engineering. Coincidentally, when i moved outside\\nMexico my parents moved to brazil, so that is where i spend most of\\nMy free time.\\n\\nThe most important thing about me is that i am happy and i do\\nEverything to make others happy. I am a simple, sincere, and honest\\nPerson. I am very intellectual, passionate, and driven. I am\\nEnthusiastic and optimistic. I love people and try my best to make\\nEveryone around me feel comfortable and happy.\\nProfessionally/academically, i am fascinated by molecules. I want\\nTo develop a career in creating new molecules that will improve our\\nLives and solve some of the world's toughest problems. I am a big\\nFan of innovation, and love being part of a startup trying to\\nChange the status quo using novel materials. I am learning\\nEverything i can both in terms of science and entrepreneurship to\\nOne day start my very own company.\\n\\nOn the side, i am a big fan of music, movies, and stories. I love\\nSpending time talking about interesting ideas of any sort. I can be\\nChildish at some times, but then again, isn't it fun to laugh at\\nThe little things in life?", - "img": "user_pixel/f-371869-600x900.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 85 - }, - "model": "earlydating.Profile", - "pk": 85 - }, - { - "fields": { - "age": 34, - "bio": "Just moved to the area on 05/28/2012\\n\\nI am on here to make a new friend primarily. Just moved and got a\\nPlace in daly city. Looking to go out and watch a movie, or get a\\nDrink. Even just kick it and go window shopping. I need to get out\\nAnd explore this new place.", - "img": "user_pixel/m-245261-900x675.jpg", - "lower_age": 35, - "preference": "gay", - "sex": "Male", - "upper_age": 47, - "user": 86 - }, - "model": "earlydating.Profile", - "pk": 86 - }, - { - "fields": { - "age": 33, - "bio": "I'm passionate about two things - art and adventure! i love to\\nDraw. For a long time i wanted to be an animator, but i didn't like\\nAnimating on the computer, so now i'm leaning more towards\\nIllustration. I also love doing memorable things with the people i\\nCare about: traveling, snowboarding, sandboarding, rock climbing,\\nIce climbing, backpacking...i'm just getting into more serious\\nMountaineering. I really enjoy trying new things. On my list for\\nThis year are kiteboarding, white water kayaking, and skydiving. My\\nPhilosophy is that life is short, so you have to pack it all in now\\n-- do all the things you want to do, make things that are beautiful\\nAnd meaningful, and spend time with the people you love. I also\\nReally like animals, especially drawing or photographing them, and\\nI'm starting to really regret moving into an apartment that doesn't\\nAllow dogs.", - "img": "user_pixel/f-371905-1200x800.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 41, - "user": 87 - }, - "model": "earlydating.Profile", - "pk": 87 - }, - { - "fields": { - "age": 38, - "bio": "I consider myself highly committed in my relationships and my work.\\nI am an ambitious person, work had consumed me for a while when i\\nFirst came to the valley back in '98, but i have taken my life\\nBack, it can be quite a challenge here, working for a fortune 5\\nCompany. I look forward to spending time with my friends who i am\\nVery true to and family. I have one sister and the most\\nEntertaining nephew.\\n\\nI love biking, snowboarding, trips up the coast, or going to tahoe,\\nThis is what california is all about. I take my mountain & road\\nBike out regularly on every trail up and down the skyline, marin\\nAnd the east bay hills, also venture to other great spots on group\\nRides or with friends.\\n\\nI eat frequently and don't skimp (but stay very slim), my favs, are\\nPizza, sushi, or just a good 'ol burger but i love many types of\\nFood and coffee ice cream is like candy to me. Although i do like\\nTo eat healthy if it's an option. Bars and clubs are not my regular\\nThing, but when i go i seem to still get carded?! oh, and i take\\nCare of my body so i'm looking for the same.\\n\\nI have discovered many things in life that i enjoy and remove\\nStress from my life, but i try to learn and move forward. I run\\nRegularly and bike. Enjoy ceramics for several years and dig away\\nIn the garden.\\nI have a sarcastic/dry sense of humor. I think i have high\\nIntegrity, genuine, sensitive and loyal...are these traits that the\\nRight woman is looking for? i'm a little reserved to start, but\\nWill get comfotable and show my colors before you know it. I hold a\\nLarge amount of respect for women and i still will open the door\\nFor you, years later. I have learned a lot from my past\\nRelationships and i'm ready to build a healthy relationship.", - "img": "user_pixel/f-2383504-300x200.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Female", - "upper_age": 44, - "user": 88 - }, - "model": "earlydating.Profile", - "pk": 88 - }, - { - "fields": { - "age": 44, - "bio": "Work hard and play hard", - "img": "user_pixel/f-2047751-618x900.jpg", - "lower_age": 40, - "preference": "bisexual", - "sex": "Female", - "upper_age": 54, - "user": 89 - }, - "model": "earlydating.Profile", - "pk": 89 - }, - { - "fields": { - "age": 45, - "bio": "Open-minded\\nEducated\\nMature\\nCourteous\\nDiscreet\\nDown-to-earth\\nGood taste for arts,traveling, food, men...\\n\\nMany more wait for you to explore...\\n\\nHad lived in europe for long time and am new here.", - "img": "user_pixel/f-371983-1200x795.jpg", - "lower_age": 47, - "preference": "gay", - "sex": "Female", - "upper_age": 55, - "user": 90 - }, - "model": "earlydating.Profile", - "pk": 90 - }, - { - "fields": { - "age": 34, - "bio": "I'm a pretty easy going guy at times i can be random. I have nice\\nSense of humor. Enjoy laughing and having a good time overall. I'm\\nSimple don't ask for much.", - "img": "user_pixel/f-2039406-1200x900.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Female", - "upper_age": 46, - "user": 91 - }, - "model": "earlydating.Profile", - "pk": 91 - }, - { - "fields": { - "age": 38, - "bio": "I like bikes... A lot, i like noisy weird music, 16mm film, house\\nShows, living with people, making music and art, backyard fires,\\nPunk shows, building forts, dumpster diving, collaboration,\\nMushroom hunting, chickens, potlucks, camping, adventure, i work\\nFull time at a bike shop in sf, and live in south berkeley, but i'm\\nMore of an oakland person though. Grew up in nc, did the whole\\nCollege thing went to yale got a degree in enviro studies and film.\\nI'm going to help a friend build a earthship in the deserts of new\\nMexico in september (his grandfather bought the land on the radio\\nIn the 50's for real cheap).", - "img": "user_pixel/f-2176117-300x200.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 92 - }, - "model": "earlydating.Profile", - "pk": 92 - }, - { - "fields": { - "age": 46, - "bio": "I'm a renaissance man. I have many interests. I fear that life is\\nToo short to actually try everything worthwhile so i've been\\nWorking on checking things off of my bucket list since i was about\\n17. Though i have a solid career, i will never place it ahead of\\nThe sweeter things in life. I really enjoy spontenaitey and\\nAdventure. I daydream of each next meal and each next vacation as i\\nHave a profound love of food and travel. I am quite happily\\nMarried. Oh yeah, i am very excited about being a dad one day", - "img": "user_pixel/m-1862356-300x200.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 55, - "user": 93 - }, - "model": "earlydating.Profile", - "pk": 93 - }, - { - "fields": { - "age": 30, - "bio": "So i have not updated this is in forever. Let's see if i have\\nGotten any better at writing this since last time.\\nI am a full time college student, full time employee at a great\\nPlace. Many people think i am kind of weird mainly because i find\\nSome stuff funny when others may not.\\nSorry if u guys don't pic up on my very acute sense of humor. But\\nFor the most part my friends and family find me quite a joy to be\\nAround, usually. :p", - "img": "user_pixel/f-371783-1200x800.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 36, - "user": 94 - }, - "model": "earlydating.Profile", - "pk": 94 - }, - { - "fields": { - "age": 30, - "bio": "I have a penchant for irony and self-deprecation that somehow\\nCoexists with an approximately optimistic worldview.\\n\\nI'm easy-going and apply humor quite liberally to conversation.\\nWhen this fails i tend to enjoy the awkward and chilling silence\\nThat ensues.\\n\\nI spend a lot of time laughing at my own jokes and at myself, which\\nI suppose technically makes me a prop-comic.\\n\\nI'm cerebral, which is probably a euphemism for big dork.\\n\\nMy favorite emotion is the feeling of nostalgia for the\\nPresent.\\n\\nI love that this website allows me to finally rank my enemies in\\nSequential order. I am coming for you.\\n\\nI have a tendency of highlighting\\nThings unnecessarily and unabashed self-reference.\\n\\nI want to understand the world and the people in it (equal parts\\nResearch/wikipedia).\\n\\nI enjoy conversations which change my perceptions and end in the\\nMorning.\\n\\nI am the walrus, kookoo, and kachoo", - "img": "user_pixel/m-282558-500x750.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Male", - "upper_age": 36, - "user": 95 - }, - "model": "earlydating.Profile", - "pk": 95 - }, - { - "fields": { - "age": 41, - "bio": "I stop at crosswalks - i'm trying to start narrowly here, since i\\nHave a tendency to be too direct and draw out explanations. So, i\\nStop at crosswalks when there isn't a car in sight; waiting for a\\nWalk signal seems like the least i can do for society and anyway,\\nHastiness is unattractive.\\n\\nDay dreaming is important for your soul. It might be true that\\nFantasizing diminishes your agency or takes you away from your\\nPresent self, but people who are naturally single-minded scare\\nMe.\\n\\nI like poems with inconsistent meter and friends who make dramatic\\nLifestyle or personality changes. Can we agree in principle that\\nPeacefulness is attractive but slightly boring?\\n\\nI just moved to berkeley now. I was living in new jersey before and\\nThanks to the fame of \\\"the jersey shore\\\" it's easier for me to\\nCommunicate why i left new jersey. California is pretty; i\\nSometimes think that dr. Seuss curated the flora here.\\n\\nI believe in some things strongly - bicycling, non-violence,\\nSocialism, vegetarianism - but precisely because i take them as\\nTruthful and important i don't talk about them very much. I don't\\nKnow, maybe discussing things you believe in can sound preachy or\\nInsecure? it's more interesting to think about something unusual or\\nUnclear.", - "img": "user_pixel/m-227699-900x600.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Male", - "upper_age": 46, - "user": 96 - }, - "model": "earlydating.Profile", - "pk": 96 - }, - { - "fields": { - "age": 34, - "bio": "Sane, intelligent laid back guy in the bay area, looking for a\\nFriend, boy/girlfriend and/or anything else that we both agree will\\nBe safe and fun!\\nI dont use drugs, and i would prefer to meet the same.\\nI love books, music, culture in general, having a nice night of\\nFine cuisine, a great movie and an engaging conversation.\\nStd free, hiv neg, responsible, with a job and no major\\nIssues...please be the same, or at least close to it. :)\\nMy type is masculine and intelligent man, and women who are classy,\\nFeminine, but absolutely drama free who actually enjoys the fact i\\nAm into both sexes. I am, however always open to chat with anyone\\nAnd see if the chemistry works.\\nAround my age please (no older then 38yo.) i am sorry but not into\\nBears either. (i know...i am a cub myself, but sorry guys...just\\nNot my style...no judgment intended...)\\n\\nI am fun, masculine, intelligent and well read.", - "img": "user_pixel/m-2358801-300x200.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Male", - "upper_age": 46, - "user": 97 - }, - "model": "earlydating.Profile", - "pk": 97 - }, - { - "fields": { - "age": 42, - "bio": "I am going on an adventure forever. You can come too.\\nI am serious about nothing. I am more serious about the little\\nThings than i am about myself.\\nI'm also a dude on a mission. I like to keep things interesting and\\nExtremely laid back. Those are my goals, even though they sound\\nUnimportant.\\nLady-folk have described me as \\\"funny\\\", \\\"sweet\\\", \\\"clumsy\\\", and\\n\\\"asshole\\\". I would like to think i am a good guy, but if you ask me\\nMy flaws, i will be honest and tell you what's up.\\n\\nThat said, i am not a lost cause. I have two halves of a brain, and\\nThat has worked out fine so far. I can make people laugh, and i am\\nGood at getting to know a person on deep levels. I also have a\\nBleeding heart, despite my best interests, if someone is hurt or\\nSad it kills me, no matter what i think of them. I try to be good,\\nQuiet, and humble, but i do appreciate a chance to be the complete\\nOpposite of that on occasion.\\n\\nWhatever your story is, i would like to hear it. Let's be\\nUncomfortably honest.", - "img": "user_pixel/m-205770-725x484.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Male", - "upper_age": 56, - "user": 98 - }, - "model": "earlydating.Profile", - "pk": 98 - }, - { - "fields": { - "age": 40, - "bio": "Out going and highly motivated, i love what i do for work so it\\nMakes life great!! i love to laugh.", - "img": "user_pixel/f-2047751-618x900.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Female", - "upper_age": 53, - "user": 99 - }, - "model": "earlydating.Profile", - "pk": 99 - }, - { - "fields": { - "age": 40, - "bio": "Here's a little about me: i remodel old victorian and craftsman\\nHomes. I have really good ideas, i'm trying to work on one at a\\nTime. I don't drink, smoke or use drugs but i still like to shoot\\nPool at dive bars from time to time. (bukowski fan) i'm not a fan\\nOf watching ball sports, motocross, or nascar on tv. I sail, ride a\\nMotorcycle, mountain bike, snowboard, surf, dine out, movies, ya'\\nKnow. I used to skate alot but i'm in between insurance carriers.\\nI'm fairly well read, i'm reading 'the grapes of wrath' since it\\nDescribes my grandmothers basic story so well but i have to admit\\nIt's stone cold drudgery. (update: upon finishing it..one of the\\nBest literary works of the 20th century) i change my mind\\nSometimes. I've been on a heavy soul music kick lately (sam cooke,\\nOtis redding, bobby womack, freddy scott and the four steps, curtis\\nMayfield, moses dillard and the tex town display) i wear a beard in\\nThe winter, it just makes sense! icicles form in it when i go ice\\nFishing and it makes me feel like some kind of frontiersman or\\nSomething. I shave it traditionally on my b-day in march. I'm kind\\nOf like my own butler, it sounds better then bachelor. I'm\\nNon-denominational but i have a spiritual aptitude that embodies\\nEverything living. Ultimately, i'm looking for a serious\\nRelationship but i'm not going to die trying so i stick to the\\nCasual side and let nature do as it will.\\n\\nI am tough, sweet, and bathing regularly", - "img": "user_pixel/m-199906-725x483.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Male", - "upper_age": 51, - "user": 100 - }, - "model": "earlydating.Profile", - "pk": 100 - }, - { - "fields": { - "age": 48, - "bio": "I am a newbie from arizona. I am in culinary school here in the\\nCity. I am looking forward to becoming the best chef i can be. (i\\nAlso bake some nice tasty pastries too.)\\nI am passionate about my life, food, family, friends, and my\\nEducation. A lot of my friends will tell you that i am very\\nSpontaneous, energetic, out- spoken, a big girl when i see a spider\\nKinda guy. I do like to get my toes wet when a new experience\\nPresents it's self. I will try almost anything once.\\nLaughing and smiling gets me through my day, and not once will i\\nSay i haven't made anyone smile.\\nI do love my friends. They all are a huge part of my life, and i\\nTreat them like family. Making new ones doesn't hurt at all. I do\\nLove to dance and listen to music. I do go out to local\\nEstablishments and shake my booty-licious booty :) its great\\nExercise.\\nI am an outdoorsy guy, i recently started to run again.\\nIn conclusion, i am looking for friends, and possibly a fella to\\nCall my boyfriend :) thanks.", - "img": "user_pixel/f-371983-1200x795.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Female", - "upper_age": 56, - "user": 101 - }, - "model": "earlydating.Profile", - "pk": 101 - }, - { - "fields": { - "age": 34, - "bio": "It's long, i know, but worth the read i think....who am i, what do\\nI want? those are pretty deep questions for a saturday morning and\\nI'm not sure i have the answers. Even if i think i know the\\nAnswers, one thing i'm sure of, who i am and what i want is never\\nSet in stone. Those answers continue to evolve; which i'm sure is a\\nGood thing. Having said that...i know for sure that i'm a gay white\\nMale living in sf for the past 26 years and self-employed in a\\nProfession that i really enjoy. Being creative and getting paid for\\nIt is pretty cool. I like where i live and usually love the people\\nThat surround me, sometimes not, you know we all have our moods. I\\nAlso know that i'd like to meet a decent, honest, caring and\\nPassionate guy that i can count on to ride with me through this\\nCrazy world. Generally speaking though, you'll probably find me to\\nBe a very easy going, fun guy with a lot of interests, very honest,\\nA lot of passion and a really good heart and soul. I'm a pretty\\nPlayful guy, i like men who can be boyish in that way, knowing when\\nTo be serious and when to let loose and have fun being a kid. I\\nTend to be attracted to guys who are more on the active side in and\\nOut of the sack, guys who are comfortable hiking, biking, being in\\nThe ocean, basically moving your body, not interested in couch\\nDwellers. In addition, emotionally available guys are where it's at\\nFor me. If you can communicate with me, that's a big plus, we're\\nHalf way there. I'm not into drama, save it for the stage. Like\\nEveryone, i have my faults and i'll be the first to admit\\nIt...perfection is completely overrated. I'm authentic and real and\\nUnderstanding, but i do have a very low tolerance for people who\\nAren't. Physically, emotionally and spiritually, i take care of\\nMyself and invest time and energy into those parts of myself and\\nI'm drawn to people who do the same. I like to be active, but not\\nScheduled out, i need my down time. I enjoy being outdoors and\\nBeing social but also like to hang out alone at home or just take a\\nWalk on the beach by myself to recharge. I get a lot of comfort and\\nPleasure from the ocean. When i surf, i find it so amazing to be in\\nThe water, surrounded by sea life and viewing the coast from out\\nThere. Riding a wave is an incredible feeling, being powered by\\nNature and feeling so in sync with life, so much a part of nature.\\nThat's my deeper side talking.\\nMost of my friends have been with me for years, some as long as\\nGrade school. I'm really loyal that way. It's very comforting to\\nHave a long history with people, helps to ground me.\\nMy family is really cool and wants to see me with a nice guy that\\nThey can embarrass me in front of. Isn't that what families are\\nFor, to remind us of where we came from and how far we've\\nEvolved...hopefully. My mom is really great, she's 83 and is so\\nActive, doing yoga and aerobics, taking trips, drinking boxed wine\\nWith friends, volunteering, keeping the family together and\\nDrinking more boxed wine with friends. We're big fans of each\\nOther. I have a large extended family, aunts, uncles, cousins and\\nWe get together usually once a year at thanksgiving. They always\\nGet excited when i bring a new guy around. You know the gay\\nRelative with a new boyfriend is a novelty in most families. I\\nThink it makes them feel hip and cool and that works for me.\\nOn the serious side, i'm hiv- if that matters to you one way or the\\nOther.\\nWell enough about me. I hope i've given you some insight into who i\\nAm and the type of man i'm looking to meet; besides, i'm tired of\\nWriting about myself. So if you're interested let me know, give me\\nA wink or whatever the hell it is they do on this site to\\nCommunicate an interest.\\nHope you find what you're looking for. We all deserve that don't\\nWe?", - "img": "user_pixel/f-1938271-1200x900.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 102 - }, - "model": "earlydating.Profile", - "pk": 102 - }, - { - "fields": { - "age": 21, - "bio": "I'm generally pretty friendly and easy to get along with. It's rare\\nThat i get frustrated or annoyed -- i'm patient, deliberate,\\nHonest, straight-forward, and go with the flow.\\n\\nI love to learn. I constantly gather facts about my environment and\\nStore them away. Whether it be technological, biological, or\\nSocial, i'm interested in how and why things work (or don't work).\\nI like to fix and make things (right now i've been making guitar\\nAmps), and generally have a diy attitude.\\n\\nI bike almost everywhere i go, as i don't have a car, and i really\\nEnjoy it. Staying active and healthy is important to me so i eat\\nHealthy stuff and exercise.\\n\\nMusic is amazing and i'm always on the lookout for new and exciting\\nArtists (feel free to share some good music with me!).\\n\\nI prefer sex on the rough, naughty and kinky side but sweet,\\nGentle, vanilla can be ok every once and a while.", - "img": "user_pixel/m-261962-900x593.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 103 - }, - "model": "earlydating.Profile", - "pk": 103 - }, - { - "fields": { - "age": 30, - "bio": "I like to keep short and to the point. I'm a friendly person who\\nLikes to have fun doing whatever eat in and out, travel, sport,\\nOutdoor activities etc..., i like people who are genuinely nice\\nBecause that brings out the best in me. I think i have a good sense\\nOf humor, sometimes maybe i'm a little quiet but i don't consider\\nMyself shy.", - "img": "user_pixel/m-2457344-300x200.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 104 - }, - "model": "earlydating.Profile", - "pk": 104 - }, - { - "fields": { - "age": 27, - "bio": "My username is an anagram for my actual name. This is my self\\nSummary. There are many like it across the internets but this one\\nIs for okcupid. It's kind of ridiculous attempting to summarize a\\nPerson and all of their complexities in a little tiny box but\\nHere's the best that i have to offer right now.\\n\\nI am not a mind reader or a svengali and i don't like mind games\\nBut i will be there for you when you need a hand or a favor. I care\\nDeeply about my family and friends and i recognize that i can't\\nHelp everyone. I have somewhat high expectations of my friends and\\nDon't really care for drama or indecisiveness. Laughter, kindness,\\nCompassion and an appreciation for the beauty this amazingly\\nWonderful world has to offer are traits i seek in others.\\n\\nI love finding new places to eat and going there with friends or\\nFamily and talking to my parents who are truly two beautiful\\nPeople, each in their own uniquely wonderful ways.\\n\\nI've been very fortunate to get to do things that many people only\\nDream of doing and for that i'm very grateful, but i still have\\nLots more spectacular and amazing gifts to share with the world.\\nSome of those gifts are just starting to emerge.\\n\\nI am disaffected, musical, and an oxygen breather", - "img": "user_pixel/m-201918-725x483.jpg", - "lower_age": 25, - "preference": "gay", - "sex": "Male", - "upper_age": 32, - "user": 105 - }, - "model": "earlydating.Profile", - "pk": 105 - }, - { - "fields": { - "age": 38, - "bio": "I'm a northern californian, complete with most of the clichs that\\nEntails. I like to spend time outside, i bike, i camp, i have been\\nTo burning man, i have been accuse of being a nice guy, i think\\nThere are such things as inside and outside sweaters and i think\\nSriracha and avocado go on everything. Sometimes i have to leave\\nThe country for a reality check.", - "img": "user_pixel/f-371673-1200x900.jpg", - "lower_age": 33, - "preference": "gay", - "sex": "Female", - "upper_age": 49, - "user": 106 - }, - "model": "earlydating.Profile", - "pk": 106 - }, - { - "fields": { - "age": 33, - "bio": "I am very easy going, relaxed, calm person when i am not hungry but\\nAs soon as my stomach needs attention i go a bit nuts. I love art\\nAnd technology. I am creative, an inventor at times, i l ike to\\nFind answers and don't give up easily. I love to cook and very good\\nAt it, lived in mexico and moved to the bay area at the age of 18.\\nI grew up around food, my parents own a restaurant in mexico, did i\\nMention that i love to cook? i am a self starter and i hate\\nWaiting. I love my job, in 2006 i opened my business and it has\\nBeen very rewarding not to have a boss. I am very smart and\\nConfident, i have a great sense of humor. I'm pretty much amazing", - "img": "user_pixel/f-372027-1200x795.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Female", - "upper_age": 40, - "user": 107 - }, - "model": "earlydating.Profile", - "pk": 107 - }, - { - "fields": { - "age": 32, - "bio": "I'm an artist in many forms, musician and filmmaker who loves\\nCollaborations. I'm also trans, queer identified and in an open\\nRelationship. I'm not too great at summarizing myself or using too\\nMany other labels. People say i'm very warm and kind. I agree and\\nAlso add that's balanced with a healthly cynicism and sarcasm,\\nPerhaps from my east coast upbringing. I'm into working towards\\nPersonal and social growth and change that does not alienate\\nOthers. I often think i'd make a pretty good animal, though at\\nTimes i think being human is pretty cool.", - "img": "user_pixel/f-2039486-300x225.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 39, - "user": 108 - }, - "model": "earlydating.Profile", - "pk": 108 - }, - { - "fields": { - "age": 25, - "bio": "Im really into labels sooooo \\nHella loud east\\nOakland-xicano-anarcho-queer-street urchin\\n\\nHi how's going? great, good to hear. Welcome to my profile.\\n\\nIm hella wild, and spend my time wilin out in various facets\\nOf\\nLife- i organize hella radical ass social movement stuff,\\nHave\\nDanced so hard that i recently needed back surgery, and my\\nClean\\nKanteen is usually filled with ancient age.\\n\\nI strive to build really open and honest relationships with\\nEveryone in my life, and am lucky enough to have supportive\\nFriends\\nAnd family who have taught me how to be a supportive friend\\nAnd\\nPartner in return. Cuz thats what life's about, ya know?\\n\\nIm a street art enthusiast, love to go on long, pointless walks\\nIn\\nUrban areas, talk radical politics, beat box, and free style.\\nAw\\nYes and sometimes i feel like the entire world is crushing\\nDown\\nUpon me and there is no escape, and i get reclusive and\\nAnti-social. But thats only during the waxing moons.\\n\\nI like cuddling, cuddle puddles in general,\\nKissing\\nIn the rain (awww), native american land occupations, and strive\\nTo\\nBridge that ever present sense of alienation with other\\nBeings,\\nNature and objects that stems from capitalist exploitation.\\nUsually\\nBy running around getting wasted with those other beings.", - "img": "user_pixel/m-245261-900x675.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Male", - "upper_age": 30, - "user": 109 - }, - "model": "earlydating.Profile", - "pk": 109 - }, - { - "fields": { - "age": 21, - "bio": "I just recently moved to the city. I am loving every minute of it.\\nI've lived in alot of different places and experienced alot of\\nDifferent things. I'm pretty much up just about anything new and\\nExciting. I enjoy any and all things creative, the arts, music, the\\nOutdoors, any type of sporting event, exploring new and different\\nThings, cooking, and the company of others. Love meeting new\\nPeople, and being social. I am a freelance graphic artist pursuing\\nA masters degree in information systems security. And am looking\\nFor someone fun and interesting to share some experiences and some\\nTime with, and who likes to laugh, and have a good time.", - "img": "user_pixel/f-2363787-300x200.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Other", - "upper_age": 32, - "user": 110 - }, - "model": "earlydating.Profile", - "pk": 110 - }, - { - "fields": { - "age": 32, - "bio": "Born and raised on maui,hawaii.\\nLike anytings outdoors, physical, active.\\nI treat others the way i would like to be treated.\\n(which is really good) ---playful teasing is also good.\\nIf you don't enjoy laughing, don't bother messaging me.", - "img": "user_pixel/f-371559-1200x800.jpg", - "lower_age": 36, - "preference": "bisexual", - "sex": "Female", - "upper_age": 45, - "user": 111 - }, - "model": "earlydating.Profile", - "pk": 111 - }, - { - "fields": { - "age": 44, - "bio": "Timeline since graduation: uruguay->san francisco->dc->san\\nFrancisco. I just moved back to sf, and am hoping to be here for a\\nWhile.\\n\\nI'm hoping to take advantage of the great things the city has to\\nOffer...meet some great people, eat some great meals, stay hydrated\\n(ever important).", - "img": "user_pixel/f-2282604-6000x4000.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 112 - }, - "model": "earlydating.Profile", - "pk": 112 - }, - { - "fields": { - "age": 31, - "bio": "I like walking, running, and people-watching.", - "img": "user_pixel/f-2058749-982x1323.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Other", - "upper_age": 42, - "user": 113 - }, - "model": "earlydating.Profile", - "pk": 113 - }, - { - "fields": { - "age": 45, - "bio": "I have been told that i'm a good man. I am a successful college\\nDropout (i am now back in school), i am easy going, and i love to\\nLaugh. I'm very bright though too, and, i also love cannabis. I\\nBelieve having a good time is an important part of life! i'm not\\nLooking for anyone that is overly prude about drinking/smoking pot\\n(life is too short to be uptight).\\n\\nI am overweight, and women have told me i'm handsome. I love\\nExercise, i go to the gym frequently to burn lots of calories, it\\nWould be cool if you also enjoy the gym (certainly not mandatory,\\nBut we'd have that in common). I own my own home in the oakland\\nHills, and i really feel at home here - i love the bay!! i have 1\\nPet, a kitten that i rescued from the local aspca shelter last\\nDecember, he's such a good boy!\\n\\nI'm from connecticut originally and i have lived in the bay area\\nFor the last 11 years. I believe honesty, compassion, integrity,\\nAnd character are all very important, as is humility. My dad has a\\nMantra that i very much agree with: today is a gift, live simply,\\nBe humble, work hard, be honest, follow your dream, enjoy the\\nJourney, and you don't have to win every argument.", - "img": "user_pixel/m-230206-540x675.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Male", - "upper_age": 58, - "user": 114 - }, - "model": "earlydating.Profile", - "pk": 114 - }, - { - "fields": { - "age": 39, - "bio": "Just a single dad who would like to meet that special mature female\\nTo hang out as friends first and have a good time!", - "img": "user_pixel/m-281426-1000x667.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 45, - "user": 115 - }, - "model": "earlydating.Profile", - "pk": 115 - }, - { - "fields": { - "age": 24, - "bio": "I am a part of all whom i have met. Someday someone will find me\\nSomething special. I can guarantee you'll never meet a guy a\\nGenuine, caring, or loyal as i am.", - "img": "user_pixel/f-371977-1200x795.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Other", - "upper_age": 36, - "user": 116 - }, - "model": "earlydating.Profile", - "pk": 116 - }, - { - "fields": { - "age": 43, - "bio": "I'm originally from the east coast, went to school in southern\\nCalifornia, and made my way up to the bay area for a job in\\n2008.\\n\\nI am intuitive, hopeful, and lost in thought", - "img": "user_pixel/m-2362274-300x200.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Male", - "upper_age": 49, - "user": 117 - }, - "model": "earlydating.Profile", - "pk": 117 - }, - { - "fields": { - "age": 34, - "bio": "Hello there! my name is earl (yes, yes, like that show... Oh you\\nWeren't going to say that? oh. Ahem.), i was born in thailand, and\\nI grew up in the city.\\n\\nI like sitting anywhere in the city and watching things pass by. I\\nLove sitting anywhere in the city and watching things pass by,\\nWhile making dumb jokes with someone.\\n\\nMy favorite color is orange. My favorite jacket is orange and too\\nLarge for me. I asked my dad if i could borrow it at some point and\\nI never really gave it back. It has lots of pockets and i love\\nIt.\\n\\nI love computers, music, games (not limited to video), and art,\\nEspecially animation and graphic design.\\n\\nI have a deep interest in politics (leftist), but i am somewhat\\nReserved and shy about it. I am often frightened trying to engage\\nIn any conversation having to do with politics, religion, or\\nPhilosophy with strangers out of fear of judgment (or judging the\\nOther person and feeling like a hypocrite). However, once i get my\\nBearings, i love arguing, debating, and just plain talking.", - "img": "user_pixel/f-2439625-300x200.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Female", - "upper_age": 41, - "user": 118 - }, - "model": "earlydating.Profile", - "pk": 118 - }, - { - "fields": { - "age": 28, - "bio": "Just an average asshole. I like bikes, i hate lazy people\\n", - "img": "user_pixel/m-45726-725x544.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Male", - "upper_age": 37, - "user": 119 - }, - "model": "earlydating.Profile", - "pk": 119 - }, - { - "fields": { - "age": 37, - "bio": "Educated, easy to talk to, easy on the eyes. Love words, reading,\\nTravel, being with people, exploring my inner and out world to the\\nFullest. Enjoy friendly women who are interesting.", - "img": "user_pixel/m-52498-725x481.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Male", - "upper_age": 44, - "user": 120 - }, - "model": "earlydating.Profile", - "pk": 120 - }, - { - "fields": { - "age": 43, - "bio": "I am driven by a desire to explore, learn, and share. My interests\\nAre fairly broad and diverse, which include traveling to new\\nPlaces, watching and playing sports, and enjoying all the different\\nThings that life has to offer.\\n\\nWith two degrees from cal, i have managed to carve out a fairly\\nSuccessful career, as well as owning a home. This past year, i\\nDecided to leave the corporate world so that i could focus on more\\nMeaningful endeavors. I also hope to look for that special someone\\nTo be in a long-term relationship and to share in life's many\\nAdventures.", - "img": "user_pixel/f-371517-1200x800.jpg", - "lower_age": 40, - "preference": "gay", - "sex": "Female", - "upper_age": 49, - "user": 121 - }, - "model": "earlydating.Profile", - "pk": 121 - }, - { - "fields": { - "age": 25, - "bio": "I'm shy but i really want to make some friends here and find love\\nAs well. I'm smart and have a creative mind aka imagination. Also,\\nI have a younger brother and a younger sister which means i'm the\\nOldest.", - "img": "user_pixel/f-371999-595x900.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Female", - "upper_age": 32, - "user": 122 - }, - "model": "earlydating.Profile", - "pk": 122 - }, - { - "fields": { - "age": 35, - "bio": "I love life.\\nI like the variety life offers and feel life is way too damn\\nShort.\\nA few of my thangs... Swim, dance, yoga, hikes, martial arts, board\\nGames, sailing, watching anime, ethnic foods and so on.", - "img": "user_pixel/f-371743-666x900.jpg", - "lower_age": 31, - "preference": "gay", - "sex": "Female", - "upper_age": 45, - "user": 123 - }, - "model": "earlydating.Profile", - "pk": 123 - }, - { - "fields": { - "age": 37, - "bio": "Looking for love in all the right places! :d", - "img": "user_pixel/f-1732575-1200x800.jpg", - "lower_age": 41, - "preference": "bisexual", - "sex": "Female", - "upper_age": 48, - "user": 124 - }, - "model": "earlydating.Profile", - "pk": 124 - }, - { - "fields": { - "age": 38, - "bio": "I'm a born-and-raised new yorker. I've been in the bay area for 16\\nYears now, but i haven't left it all behind. I sometimes miss the\\nChaos of manhattan, and i still have the sarcastic sense of humor\\nPeople associate with new york.\\n\\nInitially i lived on the peninsula or in silicon valley, since i\\nWork as a computer programmer and have no taste for long commutes.\\nBut i felt the calling for something more urban and managed to\\nRearrange my work situation, and now i've been up in sf for six\\nYears.\\n\\nMy friends describe me as easy to talk to, and when a conversation\\nReally gets me going i can be quite energized, but i lack the\\nMingling instincts for events with people i don't know. Once i get\\nComfortable, though, i quickly open up. I'm most in my element when\\nIn a restaurant or cafe, or someone's living room, or even the\\nOccasional hot tub.\\n\\nIn politics i can be pretty cynical, yet despite it all i still\\nCare and want the right thing to happen. I'm comfortable talking\\nPolitics, philosophy, or even religion, with people of different\\nViews so long as those views don't come from fear or ignorance. I'm\\nBasically in the liberal camp, but maybe not by san francisco\\nStandards. My conversations can be cerebral at times, which is all\\nWell and good for a while, but the right company can loosen me up\\nAnd suddenly we're talking about abfab, the little mermaid, and rum\\nDrinks.\\n\\nI may work in computers, and i'll happily chat about it with\\nSomeone who's interested, but i don't take my work home with me.", - "img": "user_pixel/m-52498-725x481.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Male", - "upper_age": 52, - "user": 125 - }, - "model": "earlydating.Profile", - "pk": 125 - }, - { - "fields": { - "age": 45, - "bio": "Born and raised in san francisco. I'm an avid arts lover and i\\nStrive to live my life as creatively as possible. I used to perform\\nIn an improv theater troupe up in sonoma county. It was one of the\\nGreatest things i've ever been a part of. I also ran with a group\\nHere in sf for a while, but i went back to school and that's sort\\nOf taken over my life at the moment...hence the okcupiding.\\n\\nSpeaking of which, i'm currently grinding through law school. I'm\\nPretty good at it. Humblebrag is humble.\\n\\nSome other things you might like to know about me: i love breakfast\\nAt all times of the day. I'm a die hard giants & 49ers fan. I'm\\nAlso very ridiculous. I love time travel. Seriously. Also, i hate\\nTom hanks. This seems to be a sticking point with a lot of people,\\nSo i only mention it here to be upfront.\\n\\nI'm also an intj...if you're curious about those kinds of things.", - "img": "user_pixel/f-371559-1200x800.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Female", - "upper_age": 54, - "user": 126 - }, - "model": "earlydating.Profile", - "pk": 126 - }, - { - "fields": { - "age": 45, - "bio": "I recently realized that this is not the lrb (especially good\\nThis time). The previous sentence contains two not\\nVery funny jokes.\\n\\nHere are some more revealing facts about me. I've learned, like,\\nAnd do stuff. I've worked as a truck-driver, baker, lefty bookstore\\nSlave, and fortran-translator. I ain't even going to tell you what\\nI now teach, because where's the fun in that?\\n\\nIt seems to me that one way to get distracted from what's important\\nIs to form too many preferences about things that don't matter\\nMuch. So i try not to sweat the small stuff. Like odysseus, but\\nWith a significantly lower jerkass quotient.\\n\\nI once argued with a pedantic friend about the proper pronunciation\\nOf \\\"pedant\\\" (according to the oed we were both right), but i'm\\nHorrified by the number of okcupiders who don't want to hear from\\nYou unless you're orthographically spotless (although according to\\nOktrends, religiosity is highly correlated with tolerance of shoddy\\nSpelling; could grammatical nazism be a veiled expression of\\nAnti-religious sentiment?).\\n\\nI am incurably forward-looking, and am happier slogging through\\nShit near shangri-la than partying before the unknown. You say:\\n\\\"carpe diem,\\\" and i say: horace was a ninny who gave bad advice.\\n\\\"quam minimum credula postero?\\\" utter bullshit.\\n\\nI'm mildly annoyed by beautiful people who use this space to write\\nAbout how difficult it is to write about themselves. I mean, hello,\\nWhat do they think they just did?\\n\\nOkcupid is great, but online soulmate shopping it ain't, and i'd\\nRather just go imbibe something great somewhere nice than sit here\\nProcrastinating. Though i do love me some quality procrastination.", - "img": "user_pixel/m-211526-725x483.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Male", - "upper_age": 54, - "user": 127 - }, - "model": "earlydating.Profile", - "pk": 127 - }, - { - "fields": { - "age": 23, - "bio": "Enlighten, witty and fun. Complex, yet easy going. I have a\\nMultileveled sense of humor and have a happy life.", - "img": "user_pixel/f-371785-1200x800.jpg", - "lower_age": 23, - "preference": "straight", - "sex": "Other", - "upper_age": 33, - "user": 128 - }, - "model": "earlydating.Profile", - "pk": 128 - }, - { - "fields": { - "age": 24, - "bio": "-i love the idea of \\\"work hard, play hard\\\".\\n-i miss four loko with caffiene.\\n-i'm tall and dark. 2 out of 3 isn't bad.\\n-i'm witty.", - "img": "user_pixel/f-372037-1200x800.jpg", - "lower_age": 23, - "preference": "straight", - "sex": "Female", - "upper_age": 34, - "user": 129 - }, - "model": "earlydating.Profile", - "pk": 129 - }, - { - "fields": { - "age": 50, - "bio": "Imagine hiking up the cliffs of a remote mountain trail and finding\\nA dive bar that makes a perfect negroni. There i am, reading\\nNietzsche and letting you take over the jukebox.\\n\\nI am occasionally eloquent, often brash, generally curious about\\nAlmost everything.\\n\\nA good day for me includes both a hard workout in the afternoon and\\nAn indulgent evening of dinner and drinks. This approach is evident\\nIn my travel plans for the next few months, which include a few\\nDays in the highlands of jalisco to see where the magic happens, a\\nFew days surfing and lounging on the beach, and an ascent of the\\nHighest mountain in the lower 48.", - "img": "user_pixel/f-2383504-300x200.jpg", - "lower_age": 48, - "preference": "straight", - "sex": "Other", - "upper_age": 55, - "user": 130 - }, - "model": "earlydating.Profile", - "pk": 130 - }, - { - "fields": { - "age": 32, - "bio": "Hi,\\nJust to make my life short, i was born in asia, grew up in italy\\nAnd now i currently reside near san francisco.", - "img": "user_pixel/f-1796836-600x900.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 44, - "user": 131 - }, - "model": "earlydating.Profile", - "pk": 131 - }, - { - "fields": { - "age": 30, - "bio": "I'm in to all sorts of everything, any outdoors activity, video\\nGames, movies, anime. I especially like to go to san francisco\\nBecause i really enjoy the scenery.", - "img": "user_pixel/f-2451613-300x450.jpg", - "lower_age": 28, - "preference": "bisexual", - "sex": "Female", - "upper_age": 44, - "user": 132 - }, - "model": "earlydating.Profile", - "pk": 132 - }, - { - "fields": { - "age": 25, - "bio": "I'm a grounded, self-aware and good-natured person who often\\nPrefers to dabble in many interests instead of really obsessing and\\nIdentifying myself with any one thing.\\n\\nOn that note, you'll surely be disappointed if you're here looking\\nFor a photo album with one of the following themes:\\n\\n(1.) \\\"i travel so much, home is a suitcase.\\\"\\n(2.) \\\"meet me at mile 17, with a cup of gatorade.\\\"\\n(3.) \\\"i am burning man....dust is my cologne of choice.\\\"\\n\\nI currently live in the 'burbs and work in sf in a career i really\\nEnjoy....part of what makes it appealing is that i can completely\\n'leave it at the office' when i go home. I do spend a good amount\\nOf time over in oakland and berkeley as well. I've got my eye on\\nMoving out to that area someday, maybe next year, as my current\\nTown was a smart real estate decision but is frankly too quiet and\\nFamily-oriented for my tastes...yeah, i guess i just said that out\\nLoud. :-)\\n\\nI'd like to meet some fun women for dating and friendship, doing\\nThings like checking out live music, low-key great restaurants,\\nMaybe running a (short!) race or two together, or even just\\nIndulging in some low-brow happy hour dive bar shenanigans. If a\\nFriday evening rolls around and we're in low energy mode from a\\nLong & demanding week, it's totally fine with me to just relax\\nOn the couch and decompress.\\n\\nDepending on chemistry and connection, i am open to pursuing a\\nLong-term relationship, but let's just let good things come along\\nAt the pace that feels comfortable for both....... I think that for\\nMeeting complete strangers (like here on okc), having an explicit\\nGoal of 'happily-ever-after' seems a big leap when just meeting\\nSomeone new.\\n\\nIf we seem to be on the same page in terms of interests and\\nOutlook, then please do say hello. Maybe it's a different\\nExperience being a guy on this website, but i really don't mind\\nGetting a 'wink' or a 'favorites' add. I don't do a ton of\\nSearching/browsing on this site...if you're reading my profile,\\nChances are i may not have seen yours first. Don't second-guess\\nYourself about 'proper' courting rituals, just say hello in some\\nFashion, ok?", - "img": "user_pixel/f-372027-1200x795.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Female", - "upper_age": 38, - "user": 133 - }, - "model": "earlydating.Profile", - "pk": 133 - }, - { - "fields": { - "age": 30, - "bio": "I'm newly single, new to the city, and looking to enjoy both with\\nThe right company.", - "img": "user_pixel/m-199906-725x483.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Male", - "upper_age": 37, - "user": 134 - }, - "model": "earlydating.Profile", - "pk": 134 - }, - { - "fields": { - "age": 37, - "bio": "I fall in love with life all over again on a regular basis. The\\nWorld is wild, weird and constantly in flux. I'm neither nave nor\\nJaded. I have experienced the sacred and the profane, the numinous\\nAnd the goofy. I think they're all the same thing. But for all of\\nThat, i am far more likely to ponder than to pontificate, because\\nThere's so much more to see than i have already. I think every day\\nGives us opportunities to smash our own assumptions against the\\nRocks of the unknown and find something unexpectedly beautiful in\\nThe remains.\\n\\nI like rock climbing, bicycling, motorcycling, playing music,\\nReading books for hours, having fascinating conversations with\\nSwitched-on people, doing math, cooking breakfast foods, and\\nPetting cats. I am passionate about social justice, and try to\\nSubvert race and class privilege, sexism and heteronormativity\\nWherever i find it - with good cheer and compassion whenever i can\\nMuster, and with stern resolve when i can't. I don't always succeed\\nAt this, or catch everything, but it feels worth trying.\\n\\nI have just welcomed my first child, shannon bayard cronin\\nHarris-taylor, into the world, along with my amazing and wonderful\\nLife partner mortalgeek. She and i are both queer,\\nRadical, goth-tinged-punk riot nrrrrds, and the sproglet makes us\\nBoth make happy sounds and lose lots of sleep.", - "img": "user_pixel/f-321470-1100x811.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Other", - "upper_age": 49, - "user": 135 - }, - "model": "earlydating.Profile", - "pk": 135 - }, - { - "fields": { - "age": 40, - "bio": "I am an educated/informed and sometimes opinionated guy, looking\\nFor a special someone to share life with. I am a gentle and\\nPassionate soul, but am also strong and determined. Is there a\\nRobin, or batgirl, out there to my batman?", - "img": "user_pixel/f-2283967-300x200.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Female", - "upper_age": 51, - "user": 136 - }, - "model": "earlydating.Profile", - "pk": 136 - }, - { - "fields": { - "age": 41, - "bio": "I'm spending my second summer in the bay as an intern at a tech\\nCompany.\\n\\nI'm from singapore, but i go to school at a liberal arts college on\\nThe east coast.", - "img": "user_pixel/m-2436239-300x450.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Male", - "upper_age": 54, - "user": 137 - }, - "model": "earlydating.Profile", - "pk": 137 - }, - { - "fields": { - "age": 31, - "bio": "Like read and go to movie", - "img": "user_pixel/m-282484-1000x667.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Male", - "upper_age": 37, - "user": 138 - }, - "model": "earlydating.Profile", - "pk": 138 - }, - { - "fields": { - "age": 50, - "bio": "I'm an active guy. Like to travel, play tennis, go to baseball\\nGames, hike, camp, go to concerts, cuddle, watch scary movies and\\nCartoons. Also love to read and follow politics.\\nI'm a huge music fan and like most kinds of music. My favorites are\\nCountry, rock, rap, pop, and 80s.\\nI'm really into health and fitness and work out regularly, eat a\\nVegetarian diet, and don't drink much.\\nI just joined so i'll make this a little more snazzy in the future", - "img": "user_pixel/m-225751-900x600.jpg", - "lower_age": 54, - "preference": "straight", - "sex": "Male", - "upper_age": 63, - "user": 139 - }, - "model": "earlydating.Profile", - "pk": 139 - }, - { - "fields": { - "age": 45, - "bio": "I am neither a morning person nor am i a big biker, so it's\\nSurprising that my favorite ritual is the daily bike commute. I've\\nLived in california for nearly two years but the stunning terrain\\nAnd gorgeous weather are still enough to get me excited about where\\nI live. Normally, though, i'm running late and have no time for\\nThat; instead i'm furiously peddling a shabby but lovable cruiser\\nBike, dodging pedestrians and buses while humming john williams'\\nTheme to indiana jones. I arrive in the nick of time (or several\\nMinutes late) and embark on another day in my altogether satisfying\\nLife.\\n\\nAnd slippers... I like slippers. I'm indiana jones in comfy\\nSlippers i guess.", - "img": "user_pixel/m-187210-725x483.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Male", - "upper_age": 56, - "user": 140 - }, - "model": "earlydating.Profile", - "pk": 140 - }, - { - "fields": { - "age": 27, - "bio": "I love the outdoors and doing anything under the sun. Other things\\nI like to do include playing tennis, golf, and indoor rock\\nClimbing. I also enjoy travel and taking long drives with no\\nParticular destination and exploring new places i have never\\nSeen...and if there is a beach along the way i'll be sure to stop\\nFor a little walk in the sand. How about you...tell me what is\\nGoing on in your life. Oh, i am also teaching myself to speak\\nMandarin so if you can speak mandarin, that would be a big plus.", - "img": "user_pixel/f-1938271-1200x900.jpg", - "lower_age": 29, - "preference": "gay", - "sex": "Female", - "upper_age": 33, - "user": 141 - }, - "model": "earlydating.Profile", - "pk": 141 - }, - { - "fields": { - "age": 42, - "bio": "Every morning, my chai - strong, steaming - is steeped in cinnamon\\nAnd cardamom. I like solving puzzles rigorously - sampling,\\nForecasting and stochastic optimization fascinate me. Music\\nSometimes makes me tremble - la srnade interrompue - and movies\\nToo - tu n'aimeras point - when punctuated with a tortured silence.", - "img": "user_pixel/m-230206-540x675.jpg", - "lower_age": 46, - "preference": "bisexual", - "sex": "Male", - "upper_age": 49, - "user": 142 - }, - "model": "earlydating.Profile", - "pk": 142 - }, - { - "fields": { - "age": 23, - "bio": "Grew up in la, went to college in the chicago area, and loving it\\nUp here in sf.\\n\\nThings that i love: music, politics/ world affairs, sports, comedy,\\nThe internet\\n\\nThings that i don't love: sf's lack of taxis, being asked a\\nGoogle-able fact by someone who is in front of a computer, false\\nEquivalencies, meanies", - "img": "user_pixel/m-196717-900x600.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Male", - "upper_age": 36, - "user": 143 - }, - "model": "earlydating.Profile", - "pk": 143 - }, - { - "fields": { - "age": 48, - "bio": "I'm outgoing, spontaneous, compassionate, & an all\\nAround chill person. I love life and all that it has to\\nOffer!\\nI love to read ,its my favorite thing to do when i have downtime.i\\nLike to party and enjoy my youth why i still have it.\\nNew student at aau this upcoming summer,studying acting and next\\nSemester maybe some directing.\\n\\nWhy i'm on here:\\nI've done the hooking up and the 2 sec. Relationships\\nAt this point in my life i'm looking for a guy to offer me the same\\nThings i give. I'm looking for a long-term relationship but new\\nFriends are always welcome:)\\n\\nHit me up i'm new in town:)", - "img": "user_pixel/m-284328-1000x672.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Male", - "upper_age": 59, - "user": 144 - }, - "model": "earlydating.Profile", - "pk": 144 - }, - { - "fields": { - "age": 36, - "bio": "I'm an upbeat, fun-loving, energetic fan of the outdoors who\\nEmbraces life and all that it has to offer. I love making people\\nLaugh and smile. Family and friends are very important to me and\\nI'm fortunate to have an awesome family who i adore -- including a\\nLarge contingent here in sf. I've also been blessed to have met\\nMany amazing people in my life. I'm not a couch potato - playing\\nSports and getting some form of exercise are big parts of my life.\\nThat being said, a quiet evening at home is awesome too.", - "img": "user_pixel/m-46278-725x544.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Male", - "upper_age": 50, - "user": 145 - }, - "model": "earlydating.Profile", - "pk": 145 - }, - { - "fields": { - "age": 22, - "bio": "My name is calvin.\\n\\nI was kind of an emo\\nKid, at least thats what they called me in high school. Now i\\nWouldn't say that i'm any less of an emo kid but i've learned to\\nDeal with my emotions much better.\\n\\nI'm extremely loyal\\nTo my friends they are like a surrogate family considering how\\nTwisted my family situation is. I would step up to protect any of\\nThem in a heart beat. My friends are really the most important\\nThings in my life. And if they're ever down i always try to put a\\nSmile back on their face, even if it ends with me looking pretty\\nStupid.\\n\\nI'm a total hopeless romantic. I believe\\nChivalry is still\\nAlive and kicking- it's just hiding, with elvis, and tupac and now\\nMj (god rest his soul). But really, i tend to find a girl and treat\\nHer like a queen. I am extremely dedicated and committed in my\\nRelationships, i just keep attracting the wrong sort of\\nGirls.\\n\\nHonestly i'm a dork.\\nI like video\\nGames, anime,\\nOther geeky shit.\\nI'm 1337 literate.\\n(that's kind of an oxymoron, i know.) i used to play a lot of\\nSports like lacrosse, but now i'm getting more in touch with my\\nInner asian, fast cars, sharp corners and a hell of a lot of tire\\nChanges. I love to chill with my friends and just hang out usually\\nIn parking lots at midnight smoking stogs and enjoying frosties,\\nIt's just not a party unless you end up at wendys at 2 in the\\nMorning eating fries with your frostie and drinking your beer out\\nOf an empty soda cup through the straw.", - "img": "user_pixel/m-45602-723x544.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 146 - }, - "model": "earlydating.Profile", - "pk": 146 - }, - { - "fields": { - "age": 47, - "bio": "I'm educated in the visual arts.\\nI am a little bit nerdy, and i have a good sense of humor.\\nI'm very polite and often think before i act or say anything.\\nI try not to quickly judge others or become overtaken by\\nStereotypes or biases.\\nI love giving people high fives and hugs.\\nI try to stay fit, but usually put other things before working out.", - "img": "user_pixel/f-371955-631x900.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Other", - "upper_age": 57, - "user": 147 - }, - "model": "earlydating.Profile", - "pk": 147 - }, - { - "fields": { - "age": 37, - "bio": "Okay, i'm going to be serious in this bit; bear with me:\\n\\nI'm a lifelong nerd\\nWho was raised in the woods, amongst horses, chickens, ducks,\\nGeese, dogs, and cats. I'm into bicycling, especially long-range\\nTouring, night and nature photography, writing, music production and mixing,\\nAnd good conversations.\\n\\nI am a secular humanist (\\\"god has no business in human affairs\\\")\\nWith a soft spot for redheads and jewish traditions, and i have a\\nVegetarian\\nSlant to my diet. Get me excited and you will often see a very\\nWacky, foul-mouthed sense of humor emerge. (it's there the whole\\nTime, really.)\\n\\nI am perceptive and patient, but also enthusiastic and playful. I\\nAm a fully-formed adult, who understands how passion is linked to\\nRespect, yet i also appreciate the value of caring and being cared\\nFor. I thrive in groups where everyone knows how to play nicely\\nWith everyone else, and have evolved a personality that tends to\\nEncourage that. I raise my voice in song, but never in anger.\\n\\nWhen exploring the world, i tend to poke cautiously at new things\\nFrom a distance for a while, and then pounce on them with\\nSurprising enthusiasm. When exploring people, i find it easy to\\nLocate common ground and form friendships. Nevertheless i have a\\nLot of private pursuits, so i can be a hard person to meet.", - "img": "user_pixel/f-371513-1082x900.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Female", - "upper_age": 44, - "user": 148 - }, - "model": "earlydating.Profile", - "pk": 148 - }, - { - "fields": { - "age": 44, - "bio": "I have lived in the city for the last 4 years and love the diverse\\nCulture that the city offers. I like to do both outdoors and\\nIndoors activity, like dancing in the club, movies or even karaoke,\\nBut i also enjoy hiking, snowboarding, skiing, surfing..may be\\nSkydiving (still haven't done that yet)...exploring new\\nRestaurants, or just enjoying the sun in the park with friends...oh\\nAnd camping too but need to find some buddies for that. I am\\nLooking for friends but if the right guy comes along, i tend to be\\nAttracted to guys who are taller, active, and outgoing and have his\\nOwn group of friends", - "img": "user_pixel/f-2439495-300x450.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 149 - }, - "model": "earlydating.Profile", - "pk": 149 - }, - { - "fields": { - "age": 26, - "bio": "Im the most complicated simple person you'll ever meet.\\nI've lived in the bay for about 6 years now. Did the \\\"move to the\\nCity for school thing\\\". Graduated, never left. And now i work full\\nTime for a huge company with a lead position. Its pretty rad.\\nCouldnt ask for anything else.\\n\\nI really dont have any interests other than broshit n smokin blunts\\nWith mahhh nggahs. But here goes some random ishs...\\n\\nUsually on the weekends i work on my own personal projects. Iphone\\nApps, random websites, or photoshopping people into cats.\\nOutside of nerding out in front of a macbook, i really like biking,\\nAnd being outside in general.\\n\\nI have 10 fingers, and 10 toes... Do u?", - "img": "user_pixel/m-2457344-300x200.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Male", - "upper_age": 32, - "user": 150 - }, - "model": "earlydating.Profile", - "pk": 150 - }, - { - "fields": { - "age": 36, - "bio": "Hi my name is vince i am a cool, friendly and down to earth person.\\nI recently got my degree in accounting and pursuing this career. I\\nAm originally from the philippines and have moved to the states 10\\nYears ago. In my free time i like to cook, eat, workout, basketball\\nAnd travel, also go clubbing but only on occasions. I am a\\nGod-fearing person that is also family oriented and respectful\\nBecause that is the way i was brought up.\\n\\nI am cool, friendly, and down to earth", - "img": "user_pixel/f-1757570-797x900.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 151 - }, - "model": "earlydating.Profile", - "pk": 151 - }, - { - "fields": { - "age": 37, - "bio": "I am a transqueer that writes, eats, radio lovin, thrift store,\\nYard sales, my friends are who i am.... I can't swim.\\n\\nI am adventerous, addictive, and compassionate", - "img": "user_pixel/m-2164569-300x200.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 152 - }, - "model": "earlydating.Profile", - "pk": 152 - }, - { - "fields": { - "age": 45, - "bio": "This is my first year in berkeley after spending eleven in boston\\nStudying probability and artificial intelligence at mit. (i just\\nAttended my first bay to breakers, where it really sunk in how much\\nI've fallen in love with this area!) now i'm running a tech startup\\nWith my friends, trying to use those skills to reinvent computing\\nFrom the ground up, hopefully helping to cure a few diseases and\\nMake some shiny gadgets along the way.\\n\\nI love to cook\\nIntricate meals (with bonus points for specialized gadgets!) i'm a\\nFan of nerdy pastimes -- german-style board games a la dominion/settlers\\nOf catan/puerto rico, video games (the quirkier the\\nBetter: i'll take portal or katamari damacy over halo or madden\\n20x6 any day, though rock band definitely has its place), and\\nPuzzles &\\nWordplay (e.g.\\nCryptic\\nCrosswords, mit mystery hunt). When i'm not\\nGeeking out, i try to stay active: i regularly run and hike in tilden park, bike through the berkeley hills, surf the marin headlands,\\nSki tahoe, and do\\nYoga in my bedroom.\\nI've also been known to go sailing, indoor rock climbing, to learn how to\\nBlow glass or play in a balinese percussion orchestra, to\\nGo berry-picking in the summer,\\nApple-picking in the fall, or\\nSnowball-fight-picking in the\\nWinter. I would love to spend more time traveling to exciting places, enjoying\\nLive music and\\nUnusual shows (i once got to experience willy wonka in\\nSmell-o-vision -- more like this, please!), and discovering the\\nHidden secrets of the bay.\\n\\nI'm looking for people who will revel in life -- who can find the\\nHumor in everyday\\nSituations, who appreciate the first signs of the changing of the\\nSeasons, who love to concoct crazy schemes, and occasionally even\\nSee them through. I'm looking for people who agree that extended\\nPuns are an\\nUnderappreciated art form (bawdiness optional, but encouraged). I'm\\nLooking for people who can be candid and empathetic at the same\\nTime, who are responsibly young in spirit. Are you too?\\n\\nAnd since there aren't slots for these things over in the my\\nDetails section: i'm in a poly (non-monagamous) relationship: a\\nStable triad that is expecting our first child this summer.\\nFortunately, three parents means i'll still have time for dating,\\nIn whatever form seems natural (including being open to the\\nPossibility of building co-primary/non-hierarchical relationships).\\nAlso, i identify as bi, but my experience is mostly with ladies.\\nGuys are welcome to woo me, but you're going to need a lot more\\nGrace than a wink or a \\\"hey\\\"!\\n\\nI am unabashedly nerdy, punny, and a lifelong explorer", - "img": "user_pixel/f-371515-1200x800.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Female", - "upper_age": 54, - "user": 153 - }, - "model": "earlydating.Profile", - "pk": 153 - }, - { - "fields": { - "age": 27, - "bio": "I love meeting new people and having new experiences. I'm easily\\nBored by routine, although i take my responsibilities seriously. I\\nWork hard and take good care of my teenage daughter, who lives with\\nMe. In my free time, i like to play music, meet up with friends or\\nMy brothers, play soccer, hike, and go out to see live music and\\nEat at fun restaurants. I also love to scuba dive and travel to\\nNon-english-speaking countries.\\n\\nFor most of my adult life, i've been in long-term relationships,\\nBut i now consider myself poly-leaning and have been very open\\nAbout this with the women i've dated in the last couple of years. I\\nCan't say this has worked out great, both because i don't really\\nKnow what i'm doing and because the women i've datedalthough\\nSupportive of other people's open relationshipsare not interested\\nIn being involved in a non-monogamous relationship themselves. Yet\\nI do feel like i'm finally living freely and honestly.", - "img": "user_pixel/f-1796836-600x900.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Female", - "upper_age": 34, - "user": 154 - }, - "model": "earlydating.Profile", - "pk": 154 - }, - { - "fields": { - "age": 47, - "bio": "Me:\\n\\nEast coaster originally, though i've been out here long enough to\\nCall san francisco home. People sometimes ask if i miss it (back\\nEast). It's always easy for me to tell them, \\\"nope.\\\"\\n\\nKind of nerdy sometimes. I've been known on occasion to lose an\\nAfternoon to battlestar galactica marathons.\\n\\nI surprise people. Take from that what you will.\\n\\nI can talk to just about anyone, about just about anything, though\\nI'm not necessarily the \\\"center of attention\\\" \\\"life of the party\\\",\\nGuy. I might be off to the side, quietly saying something snarky,\\nWhich will undoubtedly be repeated by someone more gregarious\\nBefore the night's over.\\n\\nIf i like you, you may not know it at first. Rest assured, you'll\\nKnow soon enough.\\n\\nIt's not a cardinal rule for me, but i just don't generally high\\nFive. Just saying. This may also speak to the sorts of people i\\nChoose to spend time with.\\n\\nMy creative outlets tend towards the visual and i usually have\\nSeveral video projects going at once. I do finish them, though not\\nNecessarily in the order they were started.\\n\\nFairly active participant/observer of local music. Read that as: i\\nGo see shows often.\\n\\nMy humor tends towards sarcastic. If you like one or more of the\\nFollowing, you'll probably get my sense of humor: black books, the\\nMighty boosh, arrested development, curb your enthusiasm.\\n\\nI'm an avid traveler and am most happy when i'm on an adventure.\\nMore of a city explorer than a beach relaxer. Though not opposed to\\nRelaxing vacations, i've just often traveled alone and enjoy the\\nConstant movement - you never know what will happen. To that end, i\\nHave many good friends in some key cities (london, berlin, paris to\\nName some). Which means of course, free digs whenever i go, usually\\nOnce a year.", - "img": "user_pixel/f-1757570-797x900.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Other", - "upper_age": 55, - "user": 155 - }, - "model": "earlydating.Profile", - "pk": 155 - }, - { - "fields": { - "age": 27, - "bio": "I'm new to the bay area, and i'm looking for people like myself. I\\nLike biking, hiking, jetskiing, scuba diving, dirtbikes,\\nMotorcycles, photography and kayaking among other things. I like\\nExploring places randomly, when plans fail that's my go-to, there's\\nAlways something interesting if you look hard enough.. Some of my\\nMost fun times were completely coincidental in places i never\\nThought i would find anything fun.\\n\\nSomeday soon i want to get some intense tattoos and piercings,\\nShave my head into a mohawk and walk around the city every day\\nWearing something ridiculous. I want to find people who are as open\\nMinded and willing as myself to do such things with.\\n\\nI hate the idea of gender binaries. I dislike being identified\\nWithin those bounds. I am not bi or straight. My sexuality is\\nFluid. I am interested in everyone on a person to person basis.\\nPansexual if you must put a term on it. I am also open to poly\\nRelationships.\\n\\nI always keep my car packed with a tent, sleeping bags, towels,\\nBathing suits (just in case someone is shy), blankets, dry food and\\nAll the other essentials just in case an epic road/camping trip\\nHappens.\\n\\nI can really only barely scratch the surface of myself on here. I\\nThink i did enough damage so far though.", - "img": "user_pixel/m-2457344-300x200.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 38, - "user": 156 - }, - "model": "earlydating.Profile", - "pk": 156 - }, - { - "fields": { - "age": 44, - "bio": "Fuck no", - "img": "user_pixel/f-372091-675x900.jpg", - "lower_age": 47, - "preference": "straight", - "sex": "Female", - "upper_age": 49, - "user": 157 - }, - "model": "earlydating.Profile", - "pk": 157 - }, - { - "fields": { - "age": 31, - "bio": "I am an:\\n-identical twin\\n-eagle scout\\n-graduated from ucd with a bs in biological sciences (emphasis in\\nNeurobiology/physiology)\\n-road cyclist\\n-outdoorsy: ski, snowboard, camp, hike, fish, sometimes swim, golf,\\nRock climbing.\\n\\nI'd describe myself as pretty laid back, except for when it's time\\nTo work. Work hard, play hard", - "img": "user_pixel/f-371623-1200x800.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Other", - "upper_age": 36, - "user": 158 - }, - "model": "earlydating.Profile", - "pk": 158 - }, - { - "fields": { - "age": 22, - "bio": "Just you and i in a little toy shop buy a bag of balloons with the\\nMoney we've got...\\nCreative, intelligent, witty, photographer, academic.\\nI teach history at the university level. In my spare time, my\\nMajor passion is photography. You can see a sample of my work\\nAt\\nWww.patrickgeorgephoto.com\\nI'm strong in both mind and body. If your'e looking for a\\nMetrosexual don't stop here.", - "img": "user_pixel/f-372113-1200x798.jpg", - "lower_age": 25, - "preference": "bisexual", - "sex": "Female", - "upper_age": 32, - "user": 159 - }, - "model": "earlydating.Profile", - "pk": 159 - }, - { - "fields": { - "age": 48, - "bio": "* for those who read mbti *\\nI am usually an intj; when situations are unclear, i tend to be\\nMore of an intp. And with good company, i transform to an\\nEntj.\\n\\n* for those who don't *\\nI love interacting with bright, intelligent, passionate people.. It\\nTakes me a little time to open up to new folks, but by the time i\\nMeet someone for the third time, i'm pretty much an open book for\\nThem.. Oh wait, that wasn't really long at all.. :)\\n\\n---\\n\\nI moved to us six years ago for grad school from mumbai.. Since\\nThen, i've lived in the south (atlanta), mid-west (chicago), the\\nEast (new york) and the west (bay area) of the country, and my\\nWanderlust waned away after i landed in the bay area, three years\\nAgo... I'm in love with ca...\\n\\nI really enjoy my work, which is creating software for humans (as\\nOpposed to robots or other softwares or services).. As much as i\\nLike working, i also enjoy taking worthwhile breaks from it.. This\\nYear, i decided on travelling to a new country every year, and i've\\nCrossed out 2 new ones in the last 5 months... I'm planning for\\nTrips for the next year, and if you've any travel related\\nSuggestions beam them up my way..\\n\\n---\\n\\nAs for my religion, i was raised as a hindu, and i am still\\nCulturally a hindu, which means i celebrate diwali and holi with my\\nFriends and family, but i don't believe in existence of god (or\\nGods) that we can fully understand.. So, i'm an agnostic, or\\nBorderline atheist, and i've not found a need to understand the\\nInner workings of hypothetical creators of the universe..", - "img": "user_pixel/f-371915-900x900.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Other", - "upper_age": 59, - "user": 160 - }, - "model": "earlydating.Profile", - "pk": 160 - }, - { - "fields": { - "age": 45, - "bio": "I grew up in an italian household in a series of suburban states. I\\nMoved to madison, wisconsin, for college, thinking the midwest\\nWould be a good place to put down some roots. Then i discovered i\\nWas a \\\"sailor,\\\" moved straight to san francisco and never looked\\nBack. I march to the beat of my own drum here and am grateful for\\nEvery day of it.", - "img": "user_pixel/m-206135-725x535.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Male", - "upper_age": 54, - "user": 161 - }, - "model": "earlydating.Profile", - "pk": 161 - }, - { - "fields": { - "age": 40, - "bio": "Work is a large part of my life. I work for myself and as a result\\nHave non-traditional hours. I have a wonderful son (7) that lives\\nWith me 1/2 the time.", - "img": "user_pixel/m-208350-725x483.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Male", - "upper_age": 49, - "user": 162 - }, - "model": "earlydating.Profile", - "pk": 162 - }, - { - "fields": { - "age": 22, - "bio": "***visiting my hometown of nyc***\\nYes i am a boy. This isn't the fulltime me, i'm not in a dress very\\nOften (well sometimes) i'm completely comfortable though when i do\\nAnd work hard at being attractive when i'm in this mode. Dresses,\\nSkirts, heels and boots.\\n\\nYou'll also find me fun, well read, well traveled and can talk\\nAbout just about anything. I love to cook and feed a group. I'm\\nLaid back for sure, but do like to go out as much as i can.", - "img": "user_pixel/f-1945842-300x206.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Other", - "upper_age": 27, - "user": 163 - }, - "model": "earlydating.Profile", - "pk": 163 - }, - { - "fields": { - "age": 27, - "bio": "First off, let's get this out of the way: i'm way too laid back and\\nDown to earth for you. Zero maintenance. Zero drama. Low\\nEmissions.\\n\\nYesterday i wrote a nerdy joke:\\nQ: what did the index card who was born at 4:59pm say at noon on\\nHis third birthday?\\nA: \\\"i'll be 3 by 5!\\\"\\nThanks. I'll be here all week.\\n\\nI grew up in upstate ny, so i have somewhat rural sensibilities.\\nYou might find me a bit guarded at first. Fair warning: you can't\\nRead me. But, i'm soft and gooey on the inside, and affectionate by\\nNature. I only give genuine hugs (none of that a-frame rubbish). I\\nLove palindromes. I'm kind of paranoid about douche-baggery, but i\\nWill ride a motorcycle if it gets me in the carpool lane, or wear\\nShades if it's reeeeeally bright out (but i will never call a\\nPerson \\\"bro\\\", call snow \\\"powder\\\", or be glad to be passing through\\nThe marina district).\\n\\nI'm a hard worker, perfectionist in limited respects, but my\\nAttitude is generally laid back and down to earth. I like to make\\nMyself a better man, but i'm far from type-a, and i don't have a\\nCompetitive bone in my body. Generally i prefer to do things for my\\nDamn-self if i can learn how, so i have an eclectic skill\\nSet.\\n\\nMy sense of humor is hyperactive. Anything from south park\\nSlap-stick to the mega-subtle dance scene in pride and prejudice\\nMakes me laugh. Ive got bags of humility; if you can't make fun of\\nYourself, you're missing out on 87.3% of the fun in the\\nUniverse.\\n\\nI'm the type of nerd who doesn't do much nerd stuff, but a full 20%\\nOf what i say will make no sense because it's a reference to a\\nMovie from 20 years ago that nobody has seen except for me. I like\\nTo walk, hike, run, bike, swim (preferably in chlorinated water),\\nAnd most anything designed to systematically tucker me out (and\\nOffset my voracious appetite for sugar -- diabetes here i come). I\\nLike to play volleyball and tennis, even though i suck at them. I\\nLove tons of music, though rarely more than one song from any given\\nArtist. I also love tons of movies that have nothing to do with\\nEach other (except maybe kevin bacon).\\n\\nI have a boyfriend. You'd like him, he's adorable. Get to know us!\\nMy friends tend not to have much in common with each other, or with\\nMe (except maybe certain east-coast sensibilities).", - "img": "user_pixel/m-196186-900x600.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 164 - }, - "model": "earlydating.Profile", - "pk": 164 - }, - { - "fields": { - "age": 32, - "bio": "Outgoing - i love talking with everyone.\\n\\nActive - i love working out and being outdoors rock climbing,\\nSurfing, being on the beach, playing sports, mountain biking. Being\\nInside gets dull; at least without the right company. Plus, why\\nWould you want to be inside when it's 80, sunny with a light\\nBreeze? i've run a few races and marathons too; need to try\\nEverything once.\\n\\nIf i'm not challenged i get bored quickly, and use my ph.d. In\\nSarcasm mixed with my propensity for mischief to full effect when i\\nGet overly bored. Ok, who am i kidding? my sarcasm knob is always\\nTurned up.", - "img": "user_pixel/m-2362274-300x200.jpg", - "lower_age": 34, - "preference": "bisexual", - "sex": "Male", - "upper_age": 37, - "user": 165 - }, - "model": "earlydating.Profile", - "pk": 165 - }, - { - "fields": { - "age": 26, - "bio": "I am an open-minded but opinionated man.\\n\\nI love life and learning; there is much to discover. I am naturally\\nCurious and thrive on challenges.\\n\\nI can be shy at first, however, once i get to know you i'm far from\\nIt. I tend to prefer hanging out in smaller groups to massive\\nParties but every once in a while i'm down for an impromptu\\nAdventure.\\n\\nI am a nerd and tend to like nerdy things like board games, video\\nGames, and looking everything up on wikipedia. I can be competitive\\nAnd feisty at times. I like playing devil's advocate and i don't\\nThrow games. In general, however, i am easygoing and relaxed. Want\\nTo pick the restaurant? sure, i'll go wherever.", - "img": "user_pixel/m-2264212-300x200.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 31, - "user": 166 - }, - "model": "earlydating.Profile", - "pk": 166 - }, - { - "fields": { - "age": 49, - "bio": "I'm a 48 year old guy. I'm a geek with three\\n(3&9&11)\\nKids. I read, i mess\\nAbout on my computer and i massage\\nPeople\\nI care about. I want another motorcycle, another bmw\\nR\\nBike, if possible.\\n\\nI am opinionated, humorous, and curious", - "img": "user_pixel/m-45820-573x544.jpg", - "lower_age": 52, - "preference": "straight", - "sex": "Male", - "upper_age": 55, - "user": 167 - }, - "model": "earlydating.Profile", - "pk": 167 - }, - { - "fields": { - "age": 29, - "bio": "Life is short, let's make friends, i c'n live without friends , i\\nAlways trust them what they did to me.so i like to have great time\\nWith friends and joke around with them, i like to smile and wish to\\nSee my friends smile too. If you want to know more about me, pls dn\\nBe shy to get close to me , thx , good luck", - "img": "user_pixel/f-371795-1200x674.jpg", - "lower_age": 25, - "preference": "gay", - "sex": "Female", - "upper_age": 41, - "user": 168 - }, - "model": "earlydating.Profile", - "pk": 168 - }, - { - "fields": { - "age": 41, - "bio": "I'm responsible and creatively irresponsible at the same time. I've\\nSpent my life trying to find ways to help other people and ways to\\nChange the world, but also to enjoy life itself....all its ironies,\\nTrials and joys....while always appreciating how amazing regular\\nPeople can be.\\nI am a working class guy that loves the mission district, and don't\\nRegret a day i've lived here in san francisco since the 80's.", - "img": "user_pixel/m-191706-900x600.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Male", - "upper_age": 50, - "user": 169 - }, - "model": "earlydating.Profile", - "pk": 169 - }, - { - "fields": { - "age": 29, - "bio": "I consider myself as an independent person, usually taking rational\\nDecisions and leaving aside popular trends (i like to think so at\\nLeast), because all in all, most of life's choices are just not\\nComparable. But if you ask my friends, they may tell you that i can\\nBe quite wild from time to time!\\n\\nOtherwise, i am a pretty open minded person who loves traveling and\\nDiscovering foreign cultures (although i'm not getting any time for\\nThis lately) but who wishes to settle down one day with the right\\nPerson.", - "img": "user_pixel/f-371729-1200x801.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Female", - "upper_age": 36, - "user": 170 - }, - "model": "earlydating.Profile", - "pk": 170 - }, - { - "fields": { - "age": 23, - "bio": "Trying to be a modern-day superhero....", - "img": "user_pixel/f-2176117-300x200.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Female", - "upper_age": 34, - "user": 171 - }, - "model": "earlydating.Profile", - "pk": 171 - }, - { - "fields": { - "age": 33, - "bio": "So, i suppose the first thing that comes to mind when thinking\\nAbout myself is that i have a lot of positive energy that i like to\\nChannel into enthusiasm and passion for artistic endeavors. I'm a\\nCasual nerd, so if you wanna talk sci-fi or compooters, cool.\\n\\nI feel my best when i'm learning new things and creating pieces of\\nArt. Observing beauty in daily life seems to be my raison de etre.\\nWhether it's walking down a crowded street, looking at all of the\\nDifferent and unique faces or seeing how the light dances off of\\nThe glossy slick windows of the tall tall buildings downtown, life\\nIs beautiful.\\n\\nBeing very sensitive and thoughtful, i'm attracted to women and men\\nWho are equally sensitive and emotionally honest. Communication is\\nVery important to me and i'll let you know how i'm feeling. Without\\nGetting too touchy-feely, let me also say that i very much value\\nIntelligence and independence in my partners as well as sense of\\nPlayfulness. Extra bonus points if you're nerdy too!", - "img": "user_pixel/f-372039-1200x800.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 172 - }, - "model": "earlydating.Profile", - "pk": 172 - }, - { - "fields": { - "age": 46, - "bio": "Transplant from chicago working on start up ideas and tech. Love to\\nRun and talk at the same time.\\n\\nIn my former life, i worked in the intersection of technology and\\nHealth care. I also was a snowboard instructor.\\n\\nI've lived in chapel hill, beijing, hong kong, philadelphia, tokyo,\\nGaborone, and chicago. Looking to make san francisco my new home.", - "img": "user_pixel/f-2439625-300x200.jpg", - "lower_age": 45, - "preference": "gay", - "sex": "Female", - "upper_age": 56, - "user": 173 - }, - "model": "earlydating.Profile", - "pk": 173 - }, - { - "fields": { - "age": 47, - "bio": "I'm pretty easy going, and i like easy going people.\\n\\nI'm from atlanta, georgia. I've been living in various parts of\\nCalifornia since 2006. Including yosemite national park, working in\\nYosemite valley. And in the russian river valley, trying my hand at\\nMaking wine for a bit.\\n\\nI was in san francisco for about a year and loved it, and i'm\\nCurrently looking for a place in the city. (if you know someone\\nLooking for a roommate)", - "img": "user_pixel/m-45602-723x544.jpg", - "lower_age": 50, - "preference": "straight", - "sex": "Male", - "upper_age": 60, - "user": 174 - }, - "model": "earlydating.Profile", - "pk": 174 - }, - { - "fields": { - "age": 23, - "bio": "Just moved back to the bay after a year abroad in spain, looking to\\nReconnect in my homeland. Looking for interesting people who are\\nDown for whatever, drinks, concerts, dates, conversation,\\nAdventures, you name it.", - "img": "user_pixel/m-2457344-300x200.jpg", - "lower_age": 20, - "preference": "gay", - "sex": "Male", - "upper_age": 31, - "user": 175 - }, - "model": "earlydating.Profile", - "pk": 175 - }, - { - "fields": { - "age": 32, - "bio": "I am an alter-ego.", - "img": "user_pixel/f-371919-600x900.jpg", - "lower_age": 32, - "preference": "gay", - "sex": "Female", - "upper_age": 46, - "user": 176 - }, - "model": "earlydating.Profile", - "pk": 176 - }, - { - "fields": { - "age": 41, - "bio": "I like to spend as much of my spare time outdoors as possible -\\nWhether its backpacking, hiking, cycling or, on those fogless days,\\nHitting the beach. I also have a regular yoga practice (ashtanga\\nMostly) and like having a couple diy arts and crafts projects going\\nOn at any given time.\\n\\nI try and listen and communicate from an authentic place. My\\nParents are social workers so growing up, there was a lot of\\nEmphasis on the \\\"i feel [blank] when you [blank]\\\" school of\\nCommunication (or at least that was the goal).", - "img": "user_pixel/m-217285-725x495.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 177 - }, - "model": "earlydating.Profile", - "pk": 177 - }, - { - "fields": { - "age": 38, - "bio": "I'm kind of an athletic geek. I rowed for the men's crew team in\\nCollege while studying software design and development. Now i work\\nFor one of the many tech companies in the area making bits for your\\nFavorite devices.\\n\\nWhen i'm not working, i can usually be found lifting heavy stuff at\\nThe gym, on the saddle of my bike, hiking somewhere around the\\nArea, or curling up on ikea furniture (what else is there?) with a\\nGood book.\\n\\nOther things i like:\\n\\n-- ultimate\\n-- thinking about how to solve big problems\\n-- dogs and cats (grew up with both)\\n-- cuddling\\n-- photography\\n-- museums\\n-- rowing on an empty river first thing in the morning\\n-- the burn from an awesome workout\\n-- eating a giant meal after said workout\\n-- cuddling after said workout :)", - "img": "user_pixel/m-261962-900x593.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 178 - }, - "model": "earlydating.Profile", - "pk": 178 - }, - { - "fields": { - "age": 44, - "bio": "Fairly new to the bay and looking to meet some new people in the\\nArea, specifically, the girl kind.", - "img": "user_pixel/m-260895-900x675.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Male", - "upper_age": 57, - "user": 179 - }, - "model": "earlydating.Profile", - "pk": 179 - }, - { - "fields": { - "age": 40, - "bio": "Hello! i'm a student here at cal. I was raised in the bay, but was\\nBorn in the philippines. I like to sing, workout, meet new people,\\nEat, hike, do community service, and memorize lyrics. I also like\\nReality tv, korean popular culture, concerts, fun facts, water,\\nCologne, new restaurants, salt, tequila, lime, and the sun. These\\nAre just some of the interests in my life. I don't really want to\\nName adjectives that describe me because that is very subjective. I\\nWould rather have us hangout and for you to be the judge of that,\\nBut based on what others have told me, i hear the words nice,\\nSweet, cute, and friendly quite often.", - "img": "user_pixel/f-2193929-300x200.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Female", - "upper_age": 46, - "user": 180 - }, - "model": "earlydating.Profile", - "pk": 180 - }, - { - "fields": { - "age": 38, - "bio": "Smart guy, world travel, gentlemen, peaceful", - "img": "user_pixel/f-2039490-1200x900.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Female", - "upper_age": 49, - "user": 181 - }, - "model": "earlydating.Profile", - "pk": 181 - }, - { - "fields": { - "age": 30, - "bio": "As a person i like to think of myself as confident but not overly.\\nI'm a humble man. I believe in standing up for what i believe and\\nNot being walked on. I'm always there for my friends and loved\\nOnes. I don't run from adversity. I care about what people think of\\nMe because i believe in being the best man i can be. I want people\\nWho come across me to think \\\"hey what a cool guy\\\". It's not about\\nAttention for me. It's about the importance of one's own honor and\\nRespect for those around him. I'm honest and trustworthy and you\\nShould be too.. That is very important.:)", - "img": "user_pixel/f-2454938-300x200.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Female", - "upper_age": 43, - "user": 182 - }, - "model": "earlydating.Profile", - "pk": 182 - }, - { - "fields": { - "age": 28, - "bio": "I like playing ping pong, running, staying active, and recently got\\nInto rock-climbing.\\n\\nI like to be spontaneous and travel to unknown cities. If you know\\nOf unique locations, let me know!", - "img": "user_pixel/m-46674-725x483.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Male", - "upper_age": 41, - "user": 183 - }, - "model": "earlydating.Profile", - "pk": 183 - }, - { - "fields": { - "age": 45, - "bio": "One of the most important things to me is honesty. I realize that\\nNot everyone is as honest as one would like to think, but one can\\nHope...right?\\n\\nI'm not big on rigid schedules, but i find i can function quite\\nEfficiently when one is imposed upon me. I enjoy my down-time. If\\nI'm super busy and overbooked all the time i tend to get a little\\nCranky (who wouldn't though?). I'm a person who focuses on the big\\nPicture of an issue and doesn't like getting lost in all the\\nDetails (even if those details happen to be important).\\n\\nI constantly find myself living in my own head...i'm very\\nIntrospective. I love to find beauty in all things, especially the\\nKinds that often go unnoticed.\\n\\nI like to think i'm driven, honest, and quiet", - "img": "user_pixel/f-371947-1200x800.jpg", - "lower_age": 47, - "preference": "gay", - "sex": "Female", - "upper_age": 55, - "user": 184 - }, - "model": "earlydating.Profile", - "pk": 184 - }, - { - "fields": { - "age": 46, - "bio": "Who am i?\\n\\nIts really simple, actually. I'm a sexy arab man, and when i say\\nArab, i say it with a sarcastic southern style (aka \\\"ay rab\\\") in\\nSome juxtaposition of a cali boy, nyc, and canadian way of\\nSpeaking...overly enthusiastically if i'm in a super fun mood, or\\nSuper fast and nerdy if i'm in \\\"smarty pants work guy mode.\\\"\\n\\nI have a \\\"professional\\\" job but i hate when people use\\n\\\"professional\\\" as a label for themselves. These \\\"young\\nProfessionals\\\" organizations are...well, for the lack of a better\\nWord gay.\\n\\nSpeaking of gay...i'm actually often asked by girls if i am into\\nThat...probably because i dress like really really good, i look\\nReally really good, and i smell really really good.\\n\\nAlso speaking of gay...i recall recently being at the folsom street\\nFair and amongst the crowd of barely leather clad hairy men i saw a\\nFew \\\"normal looking fellows\\\" and thought \\\"wow, i wonder if that guy\\nIs gay? he looks like someone i would actually be friends with!\\\"\\nAfter which i got to enjoy one of those moments where i laugh with\\nAnd at myself all by myself. (yeah, my cell phone died so i was all\\nAlone until i built a campfire and sent out smoke signals to my\\nFriends which allowed us to unite and bring to fruition he who is\\nKnown as captain planet.)\\n\\nUmm, yeah, and back to me, i will on occasion make racist jokes and\\nHomophobic jokes but in reality i love all. Even drunk retards.\\nActually, especially drunk retards. Fun for everyone.\\n\\nWhy am i here:\\nI'm really just writing this to make fun of other people on\\nOkcupid. \\\"i'm not here cuz the bar scene got old blah blah blah\\\" is\\nThe answer that makes me lol. (when i read that i usually think \\\"eh\\nNo you just say that but really you're probably just not that\\nCool\\\". Do you think i'm a douche yet btw?) really i love being in a\\nFun ass city and going for long walks on the fancy tree lined\\nBoulevards such as in san francisco but seeing as how i just moved\\nMy ass out here to work in the san mateo and happen to live in the\\nPalo alto for now. Weaksauce city like da fuckin suburbs homie. So\\nYeah since i'm not cool enough to live in sf until january this is\\nAn opportunity for us to become friends who make silly observations\\nAnd also reassure one another that our hair is nice or yo mouth\\nDon't stink. (note: yo mouth betta not stank girl!)", - "img": "user_pixel/m-2426807-300x200.jpg", - "lower_age": 46, - "preference": "gay", - "sex": "Male", - "upper_age": 59, - "user": 185 - }, - "model": "earlydating.Profile", - "pk": 185 - }, - { - "fields": { - "age": 38, - "bio": "If you want to see a face pic, just ask and i'll reply with one. I\\nJust see too many people i know on here. Yes, i'm lame.\\n\\nI'm a man who is loyal to his woman and treats her with love and\\nRespect. However, i'm planning on moving back home after i\\nGraduate, so i don't know how wise it is to get serious with a girl\\nUp here. Why start something serious then have to move? i'm just\\nLooking for something casual or a really cool friend.\\n\\nIt would be nice to have someone awesome to share my time up here\\nWith. I'm just looking for a cool girl to spend my time with, who\\nIs okay with not getting too serious right away. If we should hit\\nIt off, and there is chemistry, of course there is the possibility\\nOf something more serious.\\n\\nI'm relatively new to san francisco and i love it so far. I'm very\\nBusy and i don't have time to meet very many people outside of\\nSchool. Since this is my \\\"secret\\\" profile, i'll only send my face\\nPic in an email.", - "img": "user_pixel/m-2358801-300x200.jpg", - "lower_age": 39, - "preference": "gay", - "sex": "Male", - "upper_age": 50, - "user": 186 - }, - "model": "earlydating.Profile", - "pk": 186 - }, - { - "fields": { - "age": 36, - "bio": "My name is joseph, and i'm a 22 year old student living in san\\nFrancisco. I take photos of things. I'm a vegetarian, but i am also\\nA terrible cook. I don't really like crowds. I smoke. I know i\\nShould quit, but i don't see that happening in the immediate\\nFuture. I am part french. As a result i have an unabashed love for\\nFrench culture. I'm a pretty big nerd. I like science fiction\\nMovies and comic books. I have a wealth of useless knowledge locked\\nIn my head, and i love learning new random facts.", - "img": "user_pixel/f-2451613-300x450.jpg", - "lower_age": 39, - "preference": "bisexual", - "sex": "Female", - "upper_age": 45, - "user": 187 - }, - "model": "earlydating.Profile", - "pk": 187 - }, - { - "fields": { - "age": 45, - "bio": "I'm a nice guy. Quiet. Not terribly hip. I ride my bike to work,\\nAnd on weekends i sometimes pedal up north into the redwoods. I\\nRecently got into salsa dancing, and i try to go every week or so.\\nSometimes i write stories. My current job is an office gig at a\\nNonprofit, but in a few months i'll quit and do some traveling. I\\nUsed to be the maintenance guru at a kids' summer camp in vermont.\\nMy crowning achievement was designing and building a stank-free\\nComposting privy. Funnest job ever, but there were no people my\\nAge, so eventually i got tired of hiking and paddling alone and\\nMoved back to the city. A few years ago i strapped a tent and\\nSleeping bag to my bicycle and pedaled from san francisco to\\nVirginia beach. There have been other adventures, but that was the\\nBig one.", - "img": "user_pixel/f-2176117-300x200.jpg", - "lower_age": 47, - "preference": "straight", - "sex": "Other", - "upper_age": 59, - "user": 188 - }, - "model": "earlydating.Profile", - "pk": 188 - }, - { - "fields": { - "age": 41, - "bio": "My names dan and i come from middle of nowhere northern california.\\nI like to write and draw. And if i could do that all day i would.\\nFart, i don't really know what to say here. Over all i try to be\\nThe best person possible and i'm looking for the best person for\\nMe. That someone should be honest and up for a conversation as much\\nAs possible. I'm not incredibly in shape or incredibly smart but\\nMost people enjoy my company and that's good enough for me. I smoke\\nWeed, i ride my bike, i draw, i take pictures, i write whatever i\\nWant, i'm trying to do stand up comedy, and red hair grows from my\\nFace and head. Yep that's me alright.\\n\\nFacebook: http://www.facebook.com/beardshmeard\\nFlickr: http://flic.kr/ps/28nyam", - "img": "user_pixel/f-2283967-300x200.jpg", - "lower_age": 36, - "preference": "gay", - "sex": "Female", - "upper_age": 55, - "user": 189 - }, - "model": "earlydating.Profile", - "pk": 189 - }, - { - "fields": { - "age": 34, - "bio": "I am very easy going, run my own advertising agency, and seek a\\nLife that is dynamic and fully self expressed. I enjoy connections\\nAnd people. Inspiring others and being inspired. Masterpieces.\\nSuccessful design.\\n\\nI am attracted to dynamic people but also value down time. I seek\\nOut raw urban environments but need to escape to the country at\\nLeast once a month.\\n\\nI am loyal to a fault. Love my friends like family. Honor my\\nParents, and always do the right thing.\\n\\nI love to cook, everything. I hate to bake. I specialize in\\nPreparing dinner for 10 in 3 hours. I believe in eating well, in\\nModeration.\\n\\nI paint and write but also love to read business articles. Right\\nAnd left brain are interchangeable.\\n\\nI am chivalrous and professional. Unpolished when i need to\\nBe.\\n\\nI would love to meet someone that enjoys being both deeply intimate\\nAnd independent. Has passions. Thinks meaningfully. Is open minded.\\nConsiders others.", - "img": "user_pixel/m-213864-725x485.jpg", - "lower_age": 36, - "preference": "gay", - "sex": "Male", - "upper_age": 44, - "user": 190 - }, - "model": "earlydating.Profile", - "pk": 190 - }, - { - "fields": { - "age": 23, - "bio": "I'm a fun young guy with a outgoing personality, well to start off\\nI was born here in san francisco, i just love the city there's\\nAlways something new to explore! something about my self i have\\nMany interests and hobbies one of them is art all kinds but i love\\nTo draw and paint anything and everything i can see or imagine.\\nAnother one of my hobbies that i also love to do is skateboarding i\\nCan just grab my board and skate through the city and have a\\nAdventure and be free lol well that's my self summary short and\\nSimple if you want to know more about my self just ask me, i'm here\\nTo have some fun to meet someone i can't wait to see again and to\\nMeet some very interesting people!", - "img": "user_pixel/m-227699-900x600.jpg", - "lower_age": 20, - "preference": "gay", - "sex": "Male", - "upper_age": 37, - "user": 191 - }, - "model": "earlydating.Profile", - "pk": 191 - }, - { - "fields": { - "age": 35, - "bio": "24 year old, just completed my masters from a university in texas.\\nMoved to the bay area recently. Looking to meet some nice people\\nAnd make friends. I am not looking for a relationship.\\nVery calm, reserved guy with a good sense of humor. I may not talk\\nA lot but will not bore anyone with me.", - "img": "user_pixel/f-372027-1200x795.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Female", - "upper_age": 42, - "user": 192 - }, - "model": "earlydating.Profile", - "pk": 192 - }, - { - "fields": { - "age": 50, - "bio": "I guess i'll appeal to two stereotypes that come close to\\nDescribing me. I'm often described as a \\\"nice guy\\\" and a\\n\\\"geek\\\".\\n\\nAs you might expect, i do use computers a lot, and i enjoy math and science. I'm also fascinated with\\nLanguages,\\nSpecifically how they change over time to form dialects, and then\\nFurther to become distinct languages. Since i know spanish pretty well, i mostly pay\\nAttention to the romance languages, since it's easier for me to see\\nHow words in the different languages are related to one\\nAnother.\\n\\nEating well makes me feel good about myself, and i try to stick to\\nHealthy food, but i also loooove junk food. Think tina fey in 30\\nRock. If you claim to eat only healthy food, i *dare* you to go to\\nFive guys and\\nTell me you don't like it. I mean, come on now, you can't deny that\\nStuff is delicious!\\n\\nSometimes, i try to pick up less geeky hobbies. Dancing is one, but\\nI've found i'm just not able to do club dancing: it's just too hard\\nTo let loose and not worry about what other people are thinking. So\\nAbout 5 years ago, i started taking classes in dances with more\\nStructure. I started with salsa, then moved on to waltz, polka, and\\nSuch. But quickly i found the dance that truly matched me:\\nSwing.\\n\\nIt's kind of funny to me how each dance has an associated\\nPersonality. Salsa is all about girls dressing sexy and guys acting\\nLike suave...well, predators. Waltz is all about acting elegant and\\nGraceful. But swing is about being fun, happy, and maybe a little\\nWacky. I like to think that describes me. And even if it doesn't,\\nAt least i enjoy *pretending* that it does.\\n\\nAs the sidebar indicates, i'm quite serious about my atheism. But\\nThat doesn't mean i have 100% certainty, or that i get in people's\\nFaces about it. I'm more like 99.999% certain, willing to change my\\nMind if the right evidence is presented (though pretty darn\\nConfident such evidence will never be presented!). And i subscribe\\nTo the \\\"don't be a d***\\\" philosophy. I may ridicule prominent\\nCreationists in private, but if asked by a religious person about\\nMy beliefs, i'll be honest and polite.", - "img": "user_pixel/f-1757234-1200x810.jpg", - "lower_age": 50, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 193 - }, - "model": "earlydating.Profile", - "pk": 193 - }, - { - "fields": { - "age": 27, - "bio": "Chye brah\\nJust your average queer muslim.\\nFrisbee ultimate tie dye gardening sun physics languages foreign cultures nproutdoorshikingbouldering/rock\\nClimbingcycling(although\\nA fixie w/o brakes in berkeley is a little redundant...\\nShells rocks antiques art", - "img": "user_pixel/m-211526-725x483.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Male", - "upper_age": 32, - "user": 194 - }, - "model": "earlydating.Profile", - "pk": 194 - }, - { - "fields": { - "age": 49, - "bio": "I'm a nice guy who finishes last...", - "img": "user_pixel/m-282376-1000x666.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Male", - "upper_age": 63, - "user": 195 - }, - "model": "earlydating.Profile", - "pk": 195 - }, - { - "fields": { - "age": 41, - "bio": "I bring out the sunshine and roll with dolphins. What more could\\nYou possibly want?", - "img": "user_pixel/f-371785-1200x800.jpg", - "lower_age": 42, - "preference": "bisexual", - "sex": "Female", - "upper_age": 55, - "user": 196 - }, - "model": "earlydating.Profile", - "pk": 196 - }, - { - "fields": { - "age": 37, - "bio": "I'm a pretty versatile guy and like doing a lot of different\\nThings. Some examples: i worked for a classical composer in ny; had\\nAn installation piece at an art/technology festival this year; got\\nReally into bowling; worked at a pretty big tech company, then\\nDidn't work for a while, and now work at a much smaller one;\\nReleased some songs on a cassette tape label (there's a really big\\nMarket there. J/k). I'm just kind of up for a lot of different\\nStuff!\\n\\nI've been in the bay area for a few years now, and really like it\\n(though i'm originally from virginia, which is also great) - this\\nPlace has a different way of looking at the world and i'm doing my\\nBest to figure out what that is and what i can get from it. When i\\nFirst came out here, i was seeing what silicon valley was like,\\nCommuting to south bay, etc. I left that job a year ago and was\\nFreelancing in sf for a while. It was a great time - lots of coffee\\nShops, plenty of sleep, chores all got done, lots of biking, took\\nUp a lot of random hobbies, cooked dinner again. Now i'm working at\\nA startup in the city, trying to find ways to keep some of the\\nThings i got out of the freelance life while still working a job\\nWhere i'm learning a ton.\\n\\nI've become a fan of backpacking in the sierras (i like the rocky\\nDry landscapes, not so much the coastal stuff like big basin). I go\\nRunning around dolores park occasionally. I love drinking tea. I\\nRecently gave up on resisting drinking coffee, which i have mixed\\nFeelings about. But i bought a french press because i like the\\nProcess of making it. I love eating well and don't mind investing\\nIn that part of my life at all. I can lose myself in work that i'm\\nExcited about. And it's important to me that i be around people i\\nAdmire who make me a better person.", - "img": "user_pixel/m-217279-725x483.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 197 - }, - "model": "earlydating.Profile", - "pk": 197 - }, - { - "fields": { - "age": 43, - "bio": "[sadly, moving out of the bay in august & heading back east for\\nA few years . So unless you want to be the deborah kerr to my cary\\nGrant, this probably isn't going to work.]\\n\\nAhh, the obligatory self-summary...\\n\\nEast coast transplant. Currently in grad school.\\n\\nExplorer: new bands, new restaurants, new movies [you can even get\\nMe to a museum if there are some old photos]. Rarely at home and\\nHate sitting around with nothing to do. Lying around in bed is\\nAnother matter...\\n\\nNews and politics junkie (fun fact, i briefly worked in the u.s.\\nSenate).\\n\\nLaid-back, easygoing, & driven all at the same time.\\n\\nEntj (bonus points if you don't have to look that up on wikipedia).", - "img": "user_pixel/m-283081-1000x667.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Male", - "upper_age": 52, - "user": 198 - }, - "model": "earlydating.Profile", - "pk": 198 - }, - { - "fields": { - "age": 24, - "bio": "This is hard to summarize. I'm a good person that loves animals\\nMore then people. I defiantly have a dorky side the comes out more\\nOften then not, and i can act a fool at random times...what a\\nSight!! i pretty much drink only socially but rolling is fun!! i\\nWork a lot and cherish my free time!!", - "img": "user_pixel/m-205770-725x484.jpg", - "lower_age": 22, - "preference": "gay", - "sex": "Male", - "upper_age": 34, - "user": 199 - }, - "model": "earlydating.Profile", - "pk": 199 - }, - { - "fields": { - "age": 48, - "bio": "My time at stanford recently came to an end, and my time is now\\nDedicated fully to my new startup. If you love food [talking about\\nFood, trying foods, etc] anywhere nearly as much as i do, i think\\nThe product we're working on will be right up your alley. Kind of a\\nFood junkie-- all for minimal processing, artisan production, but i\\nDon't eat processed foods... Except for one day a week :). When i'm\\nEnjoying things for myself, i tend towards movies, cooking/baking,\\nArt, museums, coffee shops, talking and catching up on some of my\\nFavorite blogs. Recently fastcodesign has been on the top of the\\nList.", - "img": "user_pixel/f-371785-1200x800.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 200 - }, - "model": "earlydating.Profile", - "pk": 200 - }, - { - "fields": { - "age": 33, - "bio": "I'm a bit tomboyish (basketball, snowboarding), but also like a few\\nSilly girly things like gossip girl. Nerdy & dorky but still\\nEnjoy drinks, going out, dancing. Pretty hopeless in a lot of ways,\\nBut that may just be the way it's going to be (as it should be!\\nMaybe...). Enjoy the little details, in things, in people, around.\\nWilling to try anything once, genuine and open in all my\\nInteractions, i speak my mind, firm believer in living life as\\nFearlessly as possible. I'm mostly nice.\\n\\nDespite being a bit introverted, i like people! in particular\\nSarcasm, dork humor, dark humor, randomness, anything odd or fun or\\nTwisted or quirky. Really, the ability to change my mind about\\nSomething. Passion and kindness are big too. And intelligence is\\nHot. Really hot.\\n\\nRandom, impulsive, idealistic, curiosity-driven, and spiritual.\\nInfp.\\n\\n*also, my sn has nothing to do with vampires shimmering like\\nDiamonds in the light.\\n\\n---------------------------------------------------\\nThe bisexual thing gets a lot of questions so in short, i'm more\\nInterested in women but open to dating men. Threesomes and\\nBene-friends aren't for me.", - "img": "user_pixel/f-371769-1200x800.jpg", - "lower_age": 36, - "preference": "gay", - "sex": "Female", - "upper_age": 40, - "user": 201 - }, - "model": "earlydating.Profile", - "pk": 201 - }, - { - "fields": { - "age": 37, - "bio": "Warning: if you're checking out my profile and you're a couple\\nPlease, hit your back button now because i'm not interested...\\nCouples are completely off limits, it's not even an option... Don't\\nEven try!\\n\\nPeople, people, people... Just because i have large boobs and wear\\nLow cut tops doesn't mean i automatically want to fuck you... Even\\nThough my two favorite words are, \\\"fuck you\\\" that doesn't mean i'm\\nGonna do it :)\\n\\nAnyway, hey all :) i'm lolly, lauren's my real name but i rarely go\\nBy it. I'm just a fun loving girl who's a true kid at heart. I'm\\nNot here just to hook up... If all you're looking for is to get\\nInto these undies, you better turn around and look elsewhere... Fyi\\nBegging doesn't look good on anyone! i'm always down to meet new\\nPeople though :)\\n\\nI enjoy life to the fullest, can't go a day without atleast one\\nSmile! i enjoy a nice cozy night in or even a random adventure at\\n3am just cuz at the moment it might of sounded perfect! i'm\\nExtremely spur of the moment... I enjoy making people laugh,\\nBringing a smile to someones face is priceless!\\n\\nMy best friend is basically like my left leg, i'd topple over\\nWithout her... She's my sister from another mister lol if i'm not\\nAt work, i'm with her!\\n\\nIve been working with special needs and autistic children for the\\nPast 8 years... I love it! it's my passion... Nobody should ever be\\nGiven up on, i strongly believe everyone has a purpose!\\n\\nI've got a dog who thinks she's a human lol shes like my child...\\nNo kids here yet, i've got a dog... That's good enough for the\\nMoment!\\n\\nI'm a huge fan of cuddling ;) gotta love to cuddle... I could\\nProbably stay in bed all day if you'd let me! in fact, it's been\\nDone before. Kissing is like an art to me... A good kisser will\\nKeep me coming back for more!\\n\\nMy favorite thing to drink is water. (bottled water only, i'm too\\nGood for tap... Jk, kinda lol) i'll get a sprite or 7-up if i'm out\\nTo eat but rarely drink anything but water or rockstars...\\nRockstars are my addiction! have one every morning before i go to\\nWork :)\\n\\nI don't eat condiments lol random yes but it's true... Salad,\\nPlain! burgers and hot dogs, plain! but thats about the only\\n\\\"plain\\\" thing about me :)\\n\\nI love life and i try to live it to the fullest...", - "img": "user_pixel/f-371673-1200x900.jpg", - "lower_age": 39, - "preference": "gay", - "sex": "Female", - "upper_age": 46, - "user": 202 - }, - "model": "earlydating.Profile", - "pk": 202 - }, - { - "fields": { - "age": 24, - "bio": "I consider myself open minded, idealistic, caring, considerate,\\nIndependent and observant. I'm not an over talker or under talker.\\nI love music and books and good food.\\n\\nI am self-reflective and i do not have any qualms about sharing my\\nThoughts/feelings with others. I'm a reserved person when you first\\nMeet me. I am not the type that bares-all the first encounter or\\nTwo. But, once the seal is broken i am comfortable with sharing and\\nBeing vulnerable.\\n\\nI love living in northern california and try to get out and enjoy\\nThis area as much as possible. I cycle a bunch in marin and the\\nEast bay. I hike/backpack often in the spring and summer. I run\\nAround at the beach or in the hills with the 2 or 3 dogs i pretend\\nAre mine. I have a fair amount of energy, not really a \\\"mellow\\\"\\nPerson. I get really excited about stuff and can be a little\\nIntense at times.\\n\\nAs much as i love going out, i also love staying in. I enjoy\\nCooking at home and lazing around. My (ex)students used to tell me,\\n\\\"you do too much\\\". So, now i try to do less and keep at least one\\nDay a week schedule-free.", - "img": "user_pixel/f-372027-1200x795.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Female", - "upper_age": 36, - "user": 203 - }, - "model": "earlydating.Profile", - "pk": 203 - }, - { - "fields": { - "age": 30, - "bio": "I love life, i have found it's very short so i try and make the\\nBest of it and have a good time.\\nI love my job, but i work a lot so when i'm off i try and use that\\nTime to the fullest.\\nI love living in san francisco, it is my home.\\nI hate filling out these things, trying to sum me up on this page\\nIs just plain silly.", - "img": "user_pixel/f-371981-1200x795.jpg", - "lower_age": 27, - "preference": "gay", - "sex": "Female", - "upper_age": 37, - "user": 204 - }, - "model": "earlydating.Profile", - "pk": 204 - }, - { - "fields": { - "age": 24, - "bio": "Hello okcupid friends, this section is giving me writer's block, so\\nI am going to take the easy way out and be mysterious, until\\nInspiration strikes.", - "img": "user_pixel/f-372089-1200x800.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Female", - "upper_age": 35, - "user": 205 - }, - "model": "earlydating.Profile", - "pk": 205 - }, - { - "fields": { - "age": 23, - "bio": "I was named after a mermaid. I attempted roller derby but couldn't\\nBring myself to trip anyone. My dream job is to be an international\\nAmbassador of goodwill. Yes.", - "img": "user_pixel/f-371517-1200x800.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Female", - "upper_age": 28, - "user": 206 - }, - "model": "earlydating.Profile", - "pk": 206 - }, - { - "fields": { - "age": 24, - "bio": "I've left the shit show for a life of less drama, who is coming\\nWith me?", - "img": "user_pixel/m-1925281-300x228.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 207 - }, - "model": "earlydating.Profile", - "pk": 207 - }, - { - "fields": { - "age": 38, - "bio": "No.", - "img": "user_pixel/f-2451613-300x450.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 51, - "user": 208 - }, - "model": "earlydating.Profile", - "pk": 208 - }, - { - "fields": { - "age": 33, - "bio": "Hi! my name is lyla. I am originally from the bay and just moved\\nBack. I am really laid-back, spontaneous, enthusiastic, caring and\\nGenerally just want to have a good time. I am so glad to be back\\nNear the ocean and i try to spend as much time as possible there. I\\nAm all about laughing, relaxing, camping, going out, eating good\\nFood, drinking good drinks, having good company, trying to live up\\nEvery day and not taking myself too seriously.", - "img": "user_pixel/f-372023-1200x800.jpg", - "lower_age": 28, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 209 - }, - "model": "earlydating.Profile", - "pk": 209 - }, - { - "fields": { - "age": 38, - "bio": "I'm an independent, easy going jewish girl. I work in the\\nNon-profit world and i play hard on the weekends. I'm a great\\nPartner in bay area adventures. I'm a traveler and a vacationer. I\\nLove my cat and i love my dog equally. I like to sleep in (when my\\nUpstairs neighbor doesn't wake me up.) i like lox on my bagels but\\nI despise cream cheese. I don't eat mammals and i don't take shots\\nWell. I'm generous, devoted and appreciative of daily dotting. I'm\\nA lover of surprises but haven't been surprised enough. I can't\\nStand snorers or people who brush their teeth outside the bathroom.\\nAnd if you're special i'll show you my love of ttr.", - "img": "user_pixel/f-2422908-300x450.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 51, - "user": 210 - }, - "model": "earlydating.Profile", - "pk": 210 - }, - { - "fields": { - "age": 31, - "bio": "Hey! my name is selena. I like to play basketball and volleyball .\\nI'm a big 49ers fan. I'm 5'10 1/2. I'm down to earth so im very\\nChill. I like to go to the movies, go shopping, go to the library,\\nGo to the gym,ect. I like to listen to anything that has a good\\nBeat, tho im not interested in county or rock or anything of a jazz\\nClassical type of music. I don't drive, i don't plan on it. I enjoy\\nPublic transportation cause you get to meet different people and\\nThe cost is cheap :).\\n\\nI'm a big tech geek. I recently got me an iphone and i love it. I\\nHave a very big interest with technology. I always wanted to make a\\nSmartphone out of scratch. But that attempt didnt happen. I enjoy\\nVideo games... Mostly racing, sports, adventure, and music. I'm\\nGood at guitar hero, even tho i just got to medium lol. Well\\nAnyways shoot me a message me on here if you find me interesting.\\nThanks.", - "img": "user_pixel/m-227699-900x600.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Male", - "upper_age": 42, - "user": 211 - }, - "model": "earlydating.Profile", - "pk": 211 - }, - { - "fields": { - "age": 26, - "bio": "I have a lot of energy and seek mini (or not-so-mini) adventures to\\nRelease it! so far, this city hasn't let me down. That's not to say\\nThat i don't thoroughly enjoy a good cozy night in. I like\\nInteresting food, long bike rides, a delicious ipa after a long\\nBike ride, long leisurely runs in san francisco, wine tasting, wine\\nDrinking, and making new friends. I'm drawn to people who are kind,\\nHilarious, and spontaneous.", - "img": "user_pixel/f-2439495-300x450.jpg", - "lower_age": 28, - "preference": "gay", - "sex": "Female", - "upper_age": 39, - "user": 212 - }, - "model": "earlydating.Profile", - "pk": 212 - }, - { - "fields": { - "age": 23, - "bio": "I've been living in the bay area for 4 years now. On january 2,\\n2012 (eeeeek, so exciting!), i'll be heading into my 5th. It's\\nTaken some time, but i'm finally starting to feel like i could sink\\nSome roots here. I'm originally from southwest michigan, and my\\nMid-western roots mean a lot to me. Lake michigan, that great\\nMemory of glaciers. I'm the oldest of 5 kids and a text-book\\nFirst-born in that i strive to make a difference in the world, and\\nHave lived and given enough to know i can. I've always inclined\\nToward leadership and highly value my own mentors. I'm an intense\\nCompanion, platonic or romantic; i connect quickly and deeply and\\nWe either last a long time, or we burn out quickly. I want to be\\nAble to talk with you, listen to you, and stare off into space and\\nSilence just as comfortably.\\n\\nI am looking for companionship, and ultimately, long-term partner\\nShip.", - "img": "user_pixel/m-218536-363x544.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Male", - "upper_age": 34, - "user": 213 - }, - "model": "earlydating.Profile", - "pk": 213 - }, - { - "fields": { - "age": 45, - "bio": "Born in san francisco, but grew up in oakland/albany! i love\\nPlaying tennis, so challenge me to a match :) i also pretend to be\\nA tourist and love exploring new places around the bay area. Join\\nMe if you're a traveller at heart!", - "img": "user_pixel/f-371783-1200x800.jpg", - "lower_age": 41, - "preference": "bisexual", - "sex": "Female", - "upper_age": 53, - "user": 214 - }, - "model": "earlydating.Profile", - "pk": 214 - }, - { - "fields": { - "age": 28, - "bio": "I work in the theatre with a bunch of weird people, and have come\\nTo expect a certain quota of weirdness in my life. My career is\\nReally important to me, it's where i feel at home, and where i find\\nMy family. I'm far too mature and responsible for my own good. But\\nWhen i'm tired of being that i become something else entirely\\n(we're talking speaking with inanimate objects, giggling like an\\nImbecile over anything, making friends with insects, you know a\\nNormal tuesday). I don't do anything half-way, and i don't much\\nCare for societal expectations, but i don't wear that on my sleeve\\nOr in my hair (wait, does having half of a mohawk count as wearing\\nIt in your hair? if it does then i may have to update this\\nStatement...]. As careful and measured as i am, when i feel\\nStrongly about something there is not enough better judgment in the\\nWorld that could stop me. I believe very strongly that adults have\\nFallen behind in the art of the sleepover (the non-sexual kind),\\nAnd that the magic of sleep deprivation and soul-baring\\nConversations never loses it power. Probably why i do\\nTheatre...which is kind of like a giant stressful sleepover...that\\nLasts for weeks and creates art. The ability to continually learn\\nAnd grow is one of the most important things to me.\\n\\nI don't get embarrassed; i'm ridiculously secure in who i am, or\\nJust really fucking stubborn, depending on how you want to see it.\\nI'm partial to commas, but i'll give it all up for a good\\nSemi-colon. I curse like a sailor, and make everything into a dirty\\nJoke: especially at work. Accommodation should be my middle name;\\nBut if you tell me what to do, i'll probably do the opposite. I am\\nOf non-binary gender [some folks might say gender-variant,\\nGenderqueer, or something to that effect.] honestly, i don't have a\\nLabel; i'm just not female, but i'm quite happy with my self and my\\nBody as they are. I can be too nice for my own good, but i'm\\nGetting better. I absolutely love my life and prefer to be around\\nPeople who feel the same.\\n\\nI am intelligent, passionate, and silly.", - "img": "user_pixel/m-281015-1000x667.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Male", - "upper_age": 38, - "user": 215 - }, - "model": "earlydating.Profile", - "pk": 215 - }, - { - "fields": { - "age": 22, - "bio": "I'm finding myself a student in so many different areas of life\\nThese days and trying my best to remain teachable in all respects.\\nTraveling, dancing, growing, learning, loving, expanding and\\nFinding adventure around every corner.\\n\\nI'm a dance junkie.\\n2-3 classes per week keeps me sane and spiritually fed.\\n\\nI am driven, kindhearted, and vivacious. Insightful and intuitive.\\nI'm a feeler and a healer. I'm also sensitive. I thought it was a curse,\\nBut i'm pretty certain it's a blessing.\\n\\nCommunication is oh so sexy.\\n\\nMy friends call me \\\"hank.\\\" good story behind that one :)", - "img": "user_pixel/m-217279-725x483.jpg", - "lower_age": 22, - "preference": "gay", - "sex": "Male", - "upper_age": 33, - "user": 216 - }, - "model": "earlydating.Profile", - "pk": 216 - }, - { - "fields": { - "age": 43, - "bio": "I am really positive and outgoing i love to see people happy and do\\nWhat i can to make people happy. I love to get my family together\\nAnd cook big meals for them.\\nI moved here a few years ago left my family and friends behind in\\nOregon and i am looking to make more. I'm tired of dating and i\\nReally want something serious.\\nI am down to earth laid back and not high maintenance. I work out,\\nHike, love college football(oregon ducks), reading, cooking, and\\nTraveling. I love to go to the comedy club, games, anything\\nActive.\\nI love to laugh and am most always smiling.\\nI believe in principle, honesty, and loyalty when i care and love\\nSomebody i do it with my full heart and soul. I will do anything\\nFor the people i love and always try to be sure they are happy and\\nDoing well.", - "img": "user_pixel/f-371963-1137x900.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 217 - }, - "model": "earlydating.Profile", - "pk": 217 - }, - { - "fields": { - "age": 50, - "bio": "I'm interested in so many things: art, nature, books, music,\\nMovies, food, animals, cultures, travel... It's hard to narrow down\\nFor this little summary. Here goes: i'm originally from the east\\nCoast but have been in the bay area for 11 years now. I have a\\nMaster's in archaeology, but now work for an art center. I love\\nDoing photography, collage, mixed media, and other creative\\nEndeavors. I learn a lot from nature and get inspired by hikes,\\nSwimming, and riding my bike. My musical, movie and book tastes are\\nAll over the map, so i bet there's something we'll share. I've been\\nAll over the world and love relaxing at cafes, soaking up the\\nScenery while people watching. I'm not really an extreme kind of\\nPerson-- all within reason.\\n\\nI am loving, kind, and smart", - "img": "user_pixel/m-246433-900x600.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Male", - "upper_age": 64, - "user": 218 - }, - "model": "earlydating.Profile", - "pk": 218 - }, - { - "fields": { - "age": 49, - "bio": "I am fun loving and romantic. A bouquet of flowers even daisies\\nWill give me a warm feeling in my heart. Watching the waves roll in\\nAt a beach in the bay area and candles at dinner time with a glass\\nOf wine are special. I'm also practical and love to get things for\\nSpecial prices when i shop. A movie or dinner at home which i\\nCooked give me pride and i'm religious with respect and compassion\\nFor my neighbors. When it comes to music i like the sixties and\\nSevendies rock and roll. Let me be the one and special in your\\nLife.", - "img": "user_pixel/f-2363787-300x200.jpg", - "lower_age": 47, - "preference": "gay", - "sex": "Female", - "upper_age": 54, - "user": 219 - }, - "model": "earlydating.Profile", - "pk": 219 - }, - { - "fields": { - "age": 40, - "bio": "Most of my friends say that, i am a friendly and kind person. I\\nLove to help people and really care about my frineds. I am also a\\nGood listener, and alwasy stand on my friends side. I try to enjoy\\nMy life, alway try new stuff. Because i believe that live in the\\nMoment, try to do every thing you want to do now and don't be\\nRegret on the future. I love to watch movie,m concert , musical and\\nSport games. When i under a lot of preesure, i will listen the\\nMusic. I like animals, used to have two dogs and now have one cat\\nAnd two fish. I like to walk around the city. It is make me feel so\\nFree. I love to meet new friends and hang around with thme. I\\nAlways feel that it is not about what kind of active you do , it is\\nAbout who are you doing with. Hang around with good frinedly and\\nNice people make me so happy. I respect people, and life. So i just\\nWant to find more friend to enjoy life and have fun with me.", - "img": "user_pixel/m-1938445-300x200.jpg", - "lower_age": 43, - "preference": "gay", - "sex": "Male", - "upper_age": 49, - "user": 220 - }, - "model": "earlydating.Profile", - "pk": 220 - }, - { - "fields": { - "age": 31, - "bio": "I am a queer, feminist, dykey, student in the bay area!\\n\\nI am currently vegetarian, but i usually fall somewhere on the\\nVeg/omnivore continuum.\\n\\nI enjoy:\\n\\nHanging out with friends\\n\\nTalking about queer theory\\n\\nClimbing trees\\n\\nI am silly, cute, and queer", - "img": "user_pixel/m-2436019-300x200.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Male", - "upper_age": 42, - "user": 221 - }, - "model": "earlydating.Profile", - "pk": 221 - }, - { - "fields": { - "age": 43, - "bio": "Hi, there! i am bright and bubbly and outgoing, and maybe an hour\\nAfter i meet you i'll get tired and need a nap. If you enjoy\\nObnoxious contradictions, i'm your lady.\\n\\nI am studying somatic psychotherapy, which is basically\\nBody-focused counseling. I love it and i have to stop myself from\\nTalking about it all the time.\\n\\nI want to be a hospice counselor. That means zero dollars, which is\\nA bummer. I can just about afford to buy you a bagel, and maybe\\nSome cream cheese if i'm feeling rich.\\n\\nI am incredibly lucky to be part of the social dance community of\\nSan francisco -- i mostly dance blues, but sometimes you'll see me\\nAt a swing event, or waltz, and i want to learn argentine tango.\\nI'm terrible at all of these dances, but i make up for it by not\\nCaring that i'm terrible.\\n\\nI'm a total goofball. I make pterodactyl noises in public and i'll\\nTry to make out with your nose. Yes, like that scene in hot shots!\\nPart deux.", - "img": "user_pixel/f-371739-1200x792.jpg", - "lower_age": 47, - "preference": "straight", - "sex": "Female", - "upper_age": 55, - "user": 222 - }, - "model": "earlydating.Profile", - "pk": 222 - }, - { - "fields": { - "age": 31, - "bio": "I love to stay active kicking boxing , american boxing ,\\nSnowboarding and hiking and\\nGetting around on my little pink bike .\\n\\nOriginally from england left to seeking adventure spent years\\nRoaming around\\nThe globe returning to san francisco. Targeted many exotic\\nDestinations going often\\nOff the beaten path experincing buses on fire, broken down trains,\\nChickens up my bum,\\nGoats wrapped round my legs and many times a broken bum .\\n\\nBig fan of nature that's and open spaces that's why i had to leave\\nLondon .\\n\\nLove coffee, wine, food, laying around in one of my secret spots\\nMake me happy.\\n\\nHuge fan of david bowie and tom waits. Movies include all cohen\\nBrothers, mike lee,\\nLike people who are quirky, unique, fun, who like avocados and\\nKissing.\\n\\nFirst date", - "img": "user_pixel/m-2279940-300x200.jpg", - "lower_age": 27, - "preference": "gay", - "sex": "Male", - "upper_age": 42, - "user": 223 - }, - "model": "earlydating.Profile", - "pk": 223 - }, - { - "fields": { - "age": 21, - "bio": "When i get homesick, i listen to classical music because i miss my\\nCello. Right now, i'm obsessed with idyll mvt 7 by leon janacek. It\\nHas a really passionate middle section (with a bitchin' divided\\nCello part at said passionate part).\\n\\nLet's see, i'm a uc berkeley student and proud of it. I'm an avid\\nAtheist, but i'm (or i like to think that i'm) not one of those\\nRude ones. Everyone's entitled to his or her beliefs, and i\\nDefinitely have mine too.\\n\\nI'm a huge nerd in nearly every way, i'm an aspiring computer\\nScience major, i absolutely love web designing (the intricacies of\\nCss and html, oh! so beautiful!), i play a cello and, if i live for\\nAnything, it is to write. Oh, and i love 420 to pieces!", - "img": "user_pixel/m-219004-900x600.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 33, - "user": 224 - }, - "model": "earlydating.Profile", - "pk": 224 - }, - { - "fields": { - "age": 40, - "bio": "I work at an educational non-profit as legal counsel and think\\nTeachers are awesome people! i love wine and in another life, i'd\\nOwn a vineyard in napa and be a winemaker. I appreciate the nice\\nThings in life and enjoy traveling very much - every chance i get!\\nI am definitely snarky, sarcastic and i have not lost any of my new\\nYorker attitude since moving here to san fran 10 years ago. I'm\\nLooking to have fun and lots of it but if i met the right woman,\\nI'd settle down, raise a kid or two and live happily with my two\\nLabs, lucy, and winston.", - "img": "user_pixel/f-1742318-1200x747.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Other", - "upper_age": 46, - "user": 225 - }, - "model": "earlydating.Profile", - "pk": 225 - }, - { - "fields": { - "age": 40, - "bio": "I love to meet new people. I am currently changing my profession so\\nI have more choices. I'm interested in taking up computer\\nEngineering and going to study abroad for it.\\n\\nI'm very creative and talented, although i just need to utilize it\\nBetter. I have big dreams and hoping to go for them rather than\\nLosing out and regretting esp. With people who struck and lucked\\nOut without them even trying.\\n\\nIf you would like to know more, message me to get to know me.\\n=}}\\n[btw i'm not into rude people so make your first impression\\nGreeting something you would say to someone if you're greeting them\\nFace to face. You wouldn't call a person you just met, \\\"boo or sexy\\nThang, etc\\\" right? or maybe you would if your drunkass is in a\\nJanky-ass bar or club. And you'll never find me in one of\\nThose.]\\n\\nOk, so this thing is so freakin' picky and demanding. It says that\\nIn order to complete my profile, i have to type about 500 words.\\nWho's counting? well, the site is being ridiculous. So basically\\nI'm just going to rant about nonsense until i make out about 500\\nWords. Yup... 500 freakin' words... So where do i stand right now?\\nHow am i suppose to find out if i've made it or very much passed\\nThe 500 word count? there is no word counter on this damn thing...\\nSo how about now? have i?... Let's check...\\n\\nUgh! not even close! the stupid meter didn't even budge. Omg-- what\\nElse can i talk about?... Well, i'm actually just sitting on the\\nFuton and staring at the screen. Oh, mann.. Do people actually do\\nThis? i mean this is like a complete essay! a whole book chapter,\\nOr maybe even the whole book itself! biographies are not my thing.\\nI rather have someone to talk to because frankly i feel like a\\nLittle crazy in the head talking to myself like this. Can't even\\nHear the damn words. Ahhh! ok.. Maybe it's time to check...\\n\\nSo once again, i still haven't cut it to the 500 mark. This is\\nBullshhhhhhh*t. >_<\\\"\\n\\nErrr.. I need some mental stimulation. Can anyone provide that\\nNowadays? or is everything strictly on the looks basis and physical\\nAttraction? i hope not, `cuz if it is.. You're boring as\\nHell.\\n\\nHehe, maybe it's time to move on. I'm going bonkers over here with\\nAll of this demanding nonsense. @____@ ~ ^_^\\\"\\n\\nOk, good news: i passed the 500 word count! yay me! *claps*.. And\\nActually, it's short-lived because now it's asking to go 1000.\\n>____<\\\" eughhh =_____=\\\"... Ok, this is a sign to move on and\\nNot worry about it anymore. Screw you oc!", - "img": "user_pixel/f-371673-1200x900.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 226 - }, - "model": "earlydating.Profile", - "pk": 226 - }, - { - "fields": { - "age": 25, - "bio": "Thanks for visiting my profile. I don't want to waste your time so\\nIf you live more than 50 miles outside of the sf bay areastop! you\\nNeed not read any further, i'm not the woman for you as i have no\\nDesire for long distance relationships.\\n============================================\\n\\nAfter a few months of being on this site, i want to say i'm a leery\\nOf long flowery e-mails, which seem canned and end with \\\"i'll be\\nDeactivating my account shortly after i send this e-mail\\\", what the\\nHeck is that all about?\\n\\nSo who am i? i'm a native californian, born and raised in fremont.\\nI'm also a fabulous mother ( proud army mom) of two wonderful young\\nMen who are 22 and 21 years old. There is nothing in this world\\nThat is more important to me than my sons. I'm also a wonderful\\nSister, daughter, colleague, neighbor and a very special friend to\\nSome.\\n\\nI'm very independent, hardworking, conservative (in some ways),\\nWitty, self-confident, fashionable, sexy when appropriate and very\\nFunny too! drama queen and diva, i'm not! i have no time to be\\nInvolved in drama and i distance myself from people who attract\\nDrama.\\n\\nMy hobbies include: photography, scrapbooking (paper and digital),\\nMaking cards and jewelry, refinishing furniture, and\\nGardening.\\n\\nExercise: i wish i was consistent in my exercise routine. I like to\\nWalk do yoga, pilates, zumba, turbo jam (i have a collection of 90+\\nDvds). I also have a very nice rode bike, which it's been a long\\nTime since i've gone for a bike ride.\\n\\nSports fans: honestly i'm not much of a sports fan. I'll go to an\\nOccasional game, but i'm ok with this being your thing. I don't\\nNeed to be with and/or do everything with my man, in fact i like to\\nHave me time.\\n\\nTravel: well i've done a little bit of traveling and would love to\\nDo more, especially to europe.\\n\\nI am here looking for companionship. I'd like to meet someone who\\nLikes to dance, go to the beach, antique browsing, movies, dinner,\\nArt shows, museums, etc. I'm not interested in a long distance\\nRelationship, so if you are my knight in shining armor....i hope\\nYou live really close to me (refer back to the first paragraph of\\nMy profile).", - "img": "user_pixel/m-53706-725x483.jpg", - "lower_age": 23, - "preference": "bisexual", - "sex": "Male", - "upper_age": 35, - "user": 227 - }, - "model": "earlydating.Profile", - "pk": 227 - }, - { - "fields": { - "age": 32, - "bio": "I am very outgoing and fun! i love to laugh, it's therapy! i am\\nSpiritual, and very romantic, i am a good listener, and a uplifting\\nPerson. Spoiled i am, and at the same time a very good hearted\\nPerson! i like to dine, chill an watch movies, go to the movies,\\nAnd i am very adventures, just a love bug!!!!", - "img": "user_pixel/f-2176117-300x200.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 44, - "user": 228 - }, - "model": "earlydating.Profile", - "pk": 228 - }, - { - "fields": { - "age": 47, - "bio": "I am an outgoing person who loves to be with my family and i also\\nEnjoy my own company.i like spending time with god in nature,at\\nChurch and reading the bible.i also enjoy spending time getting to\\nKnow new people and going to new places.i love to laugh and make\\nOthers laugh and smile.\\n", - "img": "user_pixel/f-371963-1137x900.jpg", - "lower_age": 43, - "preference": "bisexual", - "sex": "Female", - "upper_age": 54, - "user": 229 - }, - "model": "earlydating.Profile", - "pk": 229 - }, - { - "fields": { - "age": 49, - "bio": "I moved from portland to oakland about four years ago and so far,\\nSo good. I love the outdoors and on sunny weekends, i like to go\\nCamping and hiking, ride my bike all over oakland, and make things\\nGrow in the dirt-strip-turned-garden alongside my apartment\\nBuilding. I also like to cook, travel, read, listen to music, and\\nGo out to see my friends' bands play. See also: every other profile\\nFor a single woman in her 30s. Add: charm and wit. I have those\\nThings, too.", - "img": "user_pixel/f-2039486-300x225.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 230 - }, - "model": "earlydating.Profile", - "pk": 230 - }, - { - "fields": { - "age": 39, - "bio": "I am a west coast gal with an east coast flavor. I like shiny\\nObjects and can be found behind the scenes at a theater near you. I\\nCan take the measure of any man, but i attribute that to my trained\\nCostume-eye. I love being campy but i don't camp. You won't find me\\nAt the yoga studio or on a hike, but you might find me testing out\\nMy new library card. I love a great vintage flic when it reruns on\\nThe tube and have a playlist for all of life's little moments and\\nIt usually includes david bowie.", - "img": "user_pixel/f-2264232-300x200.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 231 - }, - "model": "earlydating.Profile", - "pk": 231 - }, - { - "fields": { - "age": 23, - "bio": "I have a beautiful four year old.. He's my life.\\nI'd like to say i'm very independent and down to earth.\\nI love to laugh.\\nI'm the one always cracking the jokes.\\nI take life seriously but not too seriously.\\nI love baseball. Huge giants fan!!\\nI have goals and morals.\\nFamily is everything to me.\\nI have tattoos and piercings.", - "img": "user_pixel/f-2047751-618x900.jpg", - "lower_age": 27, - "preference": "gay", - "sex": "Female", - "upper_age": 28, - "user": 232 - }, - "model": "earlydating.Profile", - "pk": 232 - }, - { - "fields": { - "age": 41, - "bio": "Well howdy hey! i'm margaret (mar, maggie, etc. Whatever) and i'm\\nBack in my favorite city by the bay after getting my b.a. In\\nPsychology from the university of puget sound. Stuck in\\nUnemplurgatory.\\nMbti type: enfp --> i'm a free spirit by nature, or something\\nLike that, i suppose.\\n\\nTumblahhh:\\nSassyhag.tumblr.com\\nCinemagnificent.tumblr.com (<-- film review blog that i rarely\\nUpdate... Maybe i'll update more regularly in the future, who\\nKnows?)", - "img": "user_pixel/f-371905-1200x800.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 53, - "user": 233 - }, - "model": "earlydating.Profile", - "pk": 233 - }, - { - "fields": { - "age": 21, - "bio": "I recently moved from the east coast to san francisco for a new\\nJob. I'm looking for someone to explore the city with and just have\\nFun. Trying online dating for the first time.. Heard its a good way\\nTo meet people so figured why not.", - "img": "user_pixel/m-282484-1000x667.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 33, - "user": 234 - }, - "model": "earlydating.Profile", - "pk": 234 - }, - { - "fields": { - "age": 40, - "bio": "Native southerner, expatriate new yorker, long-time san franciscan.\\nArty and smart, playful and mindful, solvent, flawed, hopeful.\\n(plus wit, cleverly concealed here.)\\n\\nI like long hikes in quiet woods, live music in small venues,\\nSnorkeling in clear water, solving world problems over drinks or\\nTea. I'm fairly gregarious but require ample quiet time to read,\\nWrite, and make bad art. Animal behavior fascinates me, especially\\nThe behavior of those living with me. Also fascinating: old\\nPostcards and family photos, movies from the 50s and 60s,\\nSidestreets, backroads, jungian analysis, obits in the new york\\nTimes, travel, smart warm women who flirt...\\n\\nI follow political and cultural currents, and adore women who\\nChallenge me intellectually. I'm a liberal from three generations\\nOf conservative lawyers. Big fun at the dinner table! no children\\nOf my own, but delight in their company. I'm a mentor in a program\\nFor young people who come out of the foster care system and make it\\nTo college.\\n\\nGiddy anticipation is the stuff of life. I love having something to\\nLook forward to. Currently, that includes hiking trips to the\\nScottish highlands and appalachian trail, and my parents' 60th\\nWedding anniversary celebration.\\n\\nI miss everyday intimacy -- the showing up and sharing with someone\\nWho gets me and lets me in. I seek a cool head and a bared neck. A\\nLiterate, sane, and sexy someone, a woman to cherish and tease. I\\nSeek, dare i say it, a soulmate.", - "img": "user_pixel/f-377791-600x900.jpg", - "lower_age": 36, - "preference": "gay", - "sex": "Female", - "upper_age": 48, - "user": 235 - }, - "model": "earlydating.Profile", - "pk": 235 - }, - { - "fields": { - "age": 39, - "bio": "I am a non-monogamous, queer boi kickin' it in the east bay. I am\\nCommitted to both my politics and having a good time. I am pretty\\nLow key and will rally (100%) and adventure with the right person.", - "img": "user_pixel/f-371947-1200x800.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Female", - "upper_age": 49, - "user": 236 - }, - "model": "earlydating.Profile", - "pk": 236 - }, - { - "fields": { - "age": 32, - "bio": "I will work on this. I find i can only do a bit at a time. Which\\nProbably says something about me.\\n\\nI am good to my family and my friends. I believe community gets us\\nThrough life.\\n\\nI am a enfp in the myers briggs personality assessment. I am a 7 in\\nThe enneagram. And my latest interest is the chinese zodiac. I am a\\nWood dragon. Here a is a pretty good description of what that\\nMeans.\\n\\nThe wood dragon 1904 and 1964\\n\\nWood has a modifying influence and brings creativity to this sign.\\nQuestioning and liberal, wood dragons enjoy talking about original\\nIdeas and are open to other points of view. They are innovative,\\nImaginative practical and appreciate art in each of its forms.\\nGenerally less pretentious than other dragons, wood dragons have an\\nAbility to get along with other people. They have the essentials to\\nBuild a prosperous and happy life for themselves. Still, wood\\nDragons are outspoken and at times a bit pushy to quell everyone,\\nEven in the most friendly quarrel.\\n\\nYes this is mostly true about me....the pushy part too.", - "img": "user_pixel/f-2275812-300x200.jpg", - "lower_age": 34, - "preference": "bisexual", - "sex": "Other", - "upper_age": 44, - "user": 237 - }, - "model": "earlydating.Profile", - "pk": 237 - }, - { - "fields": { - "age": 49, - "bio": "By nature i am a seeker of what is good in this world. That leads\\nMe to a life of curiosity. Curious i am on what makes life work,\\nWhy people are the way they are, where and how is it possible to\\nExperience the deepest sensations of joy, while not excluding\\nLife's shadows and natural pitfalls,and how is it that starlight is\\nSo amazing??...\\n....a gemini i am which makes me super inquisitive, expressive,\\nCommunicative, and spontaneous.\\nI live a life guided my by heart's desires. The fullest expression\\nOf my being excites me. Playfully spontaneous, creative and curious\\nWays of life grab my attention. I am sucker for words like:\\nImagination, spirit, adventure, exploration, dance, expression,\\nPlay, and love.", - "img": "user_pixel/f-372091-675x900.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 238 - }, - "model": "earlydating.Profile", - "pk": 238 - }, - { - "fields": { - "age": 50, - "bio": "Nomnomnomnomnom", - "img": "user_pixel/m-208350-725x483.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Male", - "upper_age": 60, - "user": 239 - }, - "model": "earlydating.Profile", - "pk": 239 - }, - { - "fields": { - "age": 43, - "bio": "Its friday night, im at this computer cuz the thought of going to\\nBed alone.....well it sucks ok! i dont want to get used to it, i\\nWant a girlfriend/wife that wants to live a drama free life. Just\\nBeing together haven fun.", - "img": "user_pixel/f-371623-1200x800.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 240 - }, - "model": "earlydating.Profile", - "pk": 240 - }, - { - "fields": { - "age": 27, - "bio": "Quite the eccentric, highly particular, undeniably logical and\\nThoroughly experimental.", - "img": "user_pixel/f-371869-600x900.jpg", - "lower_age": 23, - "preference": "straight", - "sex": "Female", - "upper_age": 39, - "user": 241 - }, - "model": "earlydating.Profile", - "pk": 241 - }, - { - "fields": { - "age": 47, - "bio": "Fairly new to san francisco. I love to laugh, hang out, drink wine,\\nCold beer, shoot pool (not very good), fine dining, hole in the\\nWalls, dress up, dress down, my cats. I love to travel! i am in\\nPalm springs, calif. All the time. I work very hard and my career\\nIs very important to me. I am looking for someone to share great\\nChemistry with, that is witty, spontaneous, driven, grounded, and\\nFun. I know that is a tall order!! please do not respond if you are\\nUnder 30 or over 50.\\n\\nI am spontaneous, passionate, and witty", - "img": "user_pixel/m-1732853-300x200.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Male", - "upper_age": 61, - "user": 242 - }, - "model": "earlydating.Profile", - "pk": 242 - }, - { - "fields": { - "age": 47, - "bio": "Me:\\nI'm originally from the midwest and i know the working end of a\\nJello mold, but don't hold that against me. Or my appreciation of\\nMayonnaise, for that matter. I'm down-to-earth, some would say salt\\nOf the earth, and i might knit you a scarf if you look chilly. I'm\\nComfortable... Nay - happy(!) in my own skin. On our first few\\nDates there may be chemistry, but i may not let my\\nMow-chicka-mow-wow loose until i've gotten to know you a little.\\nI'm clear, honest, direct, coy when i feel like it, and disarmingly\\nGenuine (so i've been told). I'm also funny as hell - seriously\\n(irony). I'm hysterical.\\n\\nIn past lives i've been a poet, aspiring opera singer (back in the\\nDay so please don't expect any mozart out of me any time soon), and\\nMost recently a pre-med student at night, which i passed on after i\\nMade the 10 year budget. For the last decade i've been (and still\\nAm) a user experience designer for software at a global technology\\nCompany. This type of career allows me to utilize both my\\nAnalytical and creative sides, which i love. It also allows me to\\nExplore the intersection of human behavior and technology, which i\\nFind fascinating.\\n\\nHobbies include exercising - working on my running program (new to\\nRunning), ballet (see and do), symphony, learning to play the\\nGuitar and piano, gardening, wine tasting, cooking, dance parties\\nWith my 4 yo niece, climbing, exploring the bay area's gems, yoga,\\nReading, attending my favorite meetups (philosophy, cognitive\\nScience, ux professionals, classic literature).\\n\\nI'm not looking to just have a good time. I'm looking for a\\nPartner who wants to share lives.\\n\\nYou:\\nWants a partner with whom you can share your life. Sense of humor\\nAn absolute must, the ability to be silly, a little bit of a nerd.\\nAnd, of course, all the standard requisites apply - honest,\\nCommunicative, genuine, warm, passionate, awesome kisser, happy\\nDisposition, reasonably self-aware. Able to get your \\\"goof\\\" on.", - "img": "user_pixel/m-213864-725x485.jpg", - "lower_age": 51, - "preference": "gay", - "sex": "Male", - "upper_age": 60, - "user": 243 - }, - "model": "earlydating.Profile", - "pk": 243 - }, - { - "fields": { - "age": 37, - "bio": "Hearing people's stories are the best part of my work day.\\nBeing out doors and soaking up the sunshine always puts a smile on\\nMy face.\\n\\nI'm a free spirit... I live my life by ways of the heart and the\\nPresent. Any other way would not be living.\\n\\nMy interests include:\\nSubstance in all aspects; love, life, family and friends.\\nSharing laughter, whether it be amongst strangers or loved\\nOnes.\\nSimplicity.\\nFinding clarity in the obscure,\\nArtistry, photographs,\\nTraveling to deviate from the familiar only to find there's no\\nPlace like home,\\nLive music, surprising people i love, seasons changing, positive\\nEnergy, optimism, being human.", - "img": "user_pixel/m-261153-900x600.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Male", - "upper_age": 44, - "user": 244 - }, - "model": "earlydating.Profile", - "pk": 244 - }, - { - "fields": { - "age": 45, - "bio": "So okcupid thinks i am kind, empathetic, and outgoing...and we just\\nMet. I'll take it! married to a fantastic guy whom i've known since\\nHigh school, and who actually introduced me to okcupid when we were\\nBoth single (check him out - mutterfodder). Funny how these things\\nWork out.\\n\\nSo in the last couple of weeks i have thought about changing this\\nPart of my profile. In my ideal world, people see the photos, then\\nThey read the profile, then maybe they look at the photos again and\\nDecide whether or not to message someone. In my ideal world, my\\nProfile stays positive, doesn't list things for people not to do\\nWhen messaging me, and we all live happily ever after. Apparently,\\nWe are not living in my ideal world. Damn. Oh well. Here we are.\\nI'm going to make this easier for all of us. In the first\\nParagraph, i said i was married. Yes. I'm married! so if you are\\nGoing to message me and ask if i'm married, you can just read it\\nHere first. How much easier for you and for me. Wow, that really\\nClears things up. Now, you want to know why, why, would anyone\\nMarried be on this site. I encourage you to actually read the\\nProfile. Yes! give it a try. You might like reading. If you don't\\nLike reading, we probably won't get along anyway, and again, so\\nMuch easier for us to know that sooner rather than later.\\n\\nWe are looking for friends - yes, friends. We already have friends.\\nI already have a husband (no, i'm not looking to cheat on him with\\nYoung guys), i know how to have fun, be silly, be serious, be\\nSmart, be smart-ass, dance with or without a lampshade on my head.\\nBut guess what everyone? you can have more! more is good! or as a\\nWonderful friend of mine says, more is more. Want to message me?\\nKeep reading.", - "img": "user_pixel/m-2279940-300x200.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Male", - "upper_age": 53, - "user": 245 - }, - "model": "earlydating.Profile", - "pk": 245 - }, - { - "fields": { - "age": 34, - "bio": "Fun, funny, sweet and feisty. From chicago and 1/2 irish. Attended\\nSchool in ny and in chicago and have lived in sf for 8 years.\\nRomantic at heart. I have decided that if we go out and like each\\nOther, the answers to the myriad questions (many of them\\nRepetitive, creepy and prying) will be answered in due time.", - "img": "user_pixel/m-2433304-300x200.jpg", - "lower_age": 37, - "preference": "gay", - "sex": "Male", - "upper_age": 48, - "user": 246 - }, - "model": "earlydating.Profile", - "pk": 246 - }, - { - "fields": { - "age": 43, - "bio": "Born and raised in la.\\nNo, my glasses aren't fake.\\nYes, i need them to see.\\nI love to travel. I have been to 13 countries and lived in\\nSwitzerland for 7 months. I hate flakey people and pointy shoes. I\\nLike boba and people that know what they want.", - "img": "user_pixel/f-2176117-300x200.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Female", - "upper_age": 55, - "user": 247 - }, - "model": "earlydating.Profile", - "pk": 247 - }, - { - "fields": { - "age": 26, - "bio": "I'm irish, 24, single and working/living in san fran. I'm easy\\nGoing and drama free. Enjoy an active social life either out on the\\nTown with friends or just chilln at home with housemates.", - "img": "user_pixel/m-2436239-300x450.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 248 - }, - "model": "earlydating.Profile", - "pk": 248 - }, - { - "fields": { - "age": 48, - "bio": "Here are a bunch of adjectives that apply to me:\\nAthletic\\nAffectionate\\nCurious\\nDriven\\nIndependent\\nLoyal\\nSmart\\nHere is a prepositional phrase about me:\\nWith a dry, sarcastic sense of humor that sometimes gets me in\\nTrouble.", - "img": "user_pixel/m-45602-723x544.jpg", - "lower_age": 47, - "preference": "gay", - "sex": "Male", - "upper_age": 58, - "user": 249 - }, - "model": "earlydating.Profile", - "pk": 249 - }, - { - "fields": { - "age": 50, - "bio": "An east coast native who's spent the last 3 years living in san\\nFrancisco after having lived in a lot of different places in the us\\nAnd around the world. I've been fortunate to have immersed myself\\nIn different cultures, and made friends along the way.\\n\\nWhether i'm hiking mt tam, discovering a great brunch spot, or\\nPlanning my bay to breakers costume, you'll rarely find me in my\\nApartment. I am an extrovert, who is energized by meeting new\\nPeople, and spending time with great friends, both when i'm in a\\nRelationship and when i'm on my own.\\n\\nWhile i love my job in marketing strategy and am professionally\\nAmbitious, having balance is a life goal. Most evenings i'm\\nChecking out a cool band, drinking wine over dinner with friends,\\nTaking a hula hoop class, or learning a new language. Basically, if\\nYou suggest we try something out, i'm game!", - "img": "user_pixel/m-245355-900x600.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Male", - "upper_age": 59, - "user": 250 - }, - "model": "earlydating.Profile", - "pk": 250 - }, - { - "fields": { - "age": 48, - "bio": "I got the swag and it's pumpin' out mah ovaries.\\nI can quote kreayshawn better than anyone i know because she's\\nObnoxious and terrible and everything i wish i could be (and then\\nSome).\\n\\nI often find myself very confused whenever someone refers to this\\nSite as \\\"okc\\\" because for all my life, i've only known \\\"okc\\\" as the\\nOklahoma city thunder. So when i read it, i'm like, \\\"wut..\\\"\\n\\nLykke li's \\\"time flies\\\" is a pretty accurate summation of my life.", - "img": "user_pixel/m-196717-900x600.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Male", - "upper_age": 55, - "user": 251 - }, - "model": "earlydating.Profile", - "pk": 251 - }, - { - "fields": { - "age": 48, - "bio": "I am a pure aries, but sadly didn't have aries' confidence.\\nI studied design, so i guess that makes me a designer.", - "img": "user_pixel/f-371793-860x900.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 252 - }, - "model": "earlydating.Profile", - "pk": 252 - }, - { - "fields": { - "age": 21, - "bio": "This self summary thing is hard for me, so i'm just going to write\\nSomething and hope it turns out ok.\\n\\nI like feeling alive. The color orange makes me smile. A lot.\\nSocial justice issues are very important to me.\\n\\nI enjoy intelligent conversation. I highly value empathy. I love to\\nLaugh. I value my alone time, but very much like being with people,\\nParticularly one on one or in small groups. It is rare that i can't\\nFind something to talk about with a person i meet.", - "img": "user_pixel/f-371781-740x900.jpg", - "lower_age": 24, - "preference": "gay", - "sex": "Female", - "upper_age": 31, - "user": 253 - }, - "model": "earlydating.Profile", - "pk": 253 - }, - { - "fields": { - "age": 49, - "bio": "I could say that i'm an out going person who likes to have a good\\nTime. I love the outdoors, dancing, music, great conversation,\\nLaughing and joking around. All in a nut shell! lol ;) i speak\\nFluent spanish, english and sometimes spanglish! i work out by\\nDancing, in my livingroom and the dance floor.. ;)", - "img": "user_pixel/f-371739-1200x792.jpg", - "lower_age": 53, - "preference": "bisexual", - "sex": "Other", - "upper_age": 62, - "user": 254 - }, - "model": "earlydating.Profile", - "pk": 254 - }, - { - "fields": { - "age": 28, - "bio": "I'm generally a homebody but also enjoy going out dancing\\nWith\\nFriends and/or a date.\\n\\nI have an easy sense of humor, progressive\\nPolitics and an appreciation of people of all types.\\n\\nI am a shy, sweet, and genderqueer boi", - "img": "user_pixel/f-372039-1200x800.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Female", - "upper_age": 42, - "user": 255 - }, - "model": "earlydating.Profile", - "pk": 255 - }, - { - "fields": { - "age": 38, - "bio": "I love an early morning jog to the beat of a tchaikovsky symphony.\\nI always welcome new adventures, be it new places or new foods. I\\nEnjoy the company of friends and family, but also treasure my own\\nTime.", - "img": "user_pixel/m-2457344-300x200.jpg", - "lower_age": 35, - "preference": "bisexual", - "sex": "Male", - "upper_age": 45, - "user": 256 - }, - "model": "earlydating.Profile", - "pk": 256 - }, - { - "fields": { - "age": 43, - "bio": "I will fill more of this out later!", - "img": "user_pixel/f-1715759-1200x900.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Female", - "upper_age": 52, - "user": 257 - }, - "model": "earlydating.Profile", - "pk": 257 - }, - { - "fields": { - "age": 36, - "bio": "You would think after 29 years, i would know myself a little\\nBetter! i hate these things - i kind of feel like it's a job\\nInterview! basically, i'm a pretty laid back, happy-go-lucky\\nPerson. I like being social and going out, but i'm also perfectly\\nHappy staying in and watching a movie or getting lost in a good\\nBook. I would never describe myself as a driven person but i'm in\\nThe midst of my second masters, so i might be delusional in\\nThinking that! who goes back to school that many times??!!", - "img": "user_pixel/m-2433304-300x200.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Male", - "upper_age": 45, - "user": 258 - }, - "model": "earlydating.Profile", - "pk": 258 - }, - { - "fields": { - "age": 50, - "bio": "I'm awful at this website. I guess i'm here because i'm really\\nInterested in meeting other folks who enjoy similar pastimes and\\nCan potentially introduce me to something new (and i'll try to do\\nLikewise for you!). Especially people who don't already know the\\nSame people i do... I'm looking for friends outside my norm.\\n\\nI'm a firm believer that if there is music, one should\\nDance...\\nPreferably vigorously, in a kitchen, wearing very little\\nClothing.\\n\\nI'm a strange mixture of introspective, extroverted, and plenty of\\nAwkward. If i'm in a thoughtful mood, i can't be bothered to speak\\nMuch... But when i feel like articulating, i do so loudly,\\nSometimes at length, and with much fractured speech patterns and\\nObscenities.\\n\\nI've been described both as \\\"a silly little bitch\\\" and \\\"a\\nSerious-ass motherfucker.\\\" many of my personality traits are\\nConflicting with one another.\\n\\nI gots a boyfriend, soundsystem11. He's cute, no?\\n\\nIf i feel like an institution, such as law or social expectation,\\nDoesn't directly represent my own interests, i don't consider it\\nValid and therefor don't follow it. Let me assure you, this kind of\\nLiving feels really, really great.\\n\\nI like it when snails leave little trails of slime on me.", - "img": "user_pixel/m-284328-1000x672.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Male", - "upper_age": 62, - "user": 259 - }, - "model": "earlydating.Profile", - "pk": 259 - }, - { - "fields": { - "age": 50, - "bio": "Spontaneous\\nSmart\\nShort\\nSocial\\nSweet\\nSensory", - "img": "user_pixel/m-223710-900x593.jpg", - "lower_age": 45, - "preference": "gay", - "sex": "Male", - "upper_age": 62, - "user": 260 - }, - "model": "earlydating.Profile", - "pk": 260 - }, - { - "fields": { - "age": 49, - "bio": "I'm a gypsy of sorts i suppose. I am an effervescent spirit,\\nOutgoing and eager to explore unknown territory. Sound is my\\nPassion, my calling in this life. I am a lover of love and laugh.\\nI'm infatuated by the synchronicity of my life, and of this silly\\nBeautiful world. I like pretty little oddities. I love to play. I\\nTend to like weird individuals.", - "img": "user_pixel/f-371515-1200x800.jpg", - "lower_age": 45, - "preference": "gay", - "sex": "Female", - "upper_age": 55, - "user": 261 - }, - "model": "earlydating.Profile", - "pk": 261 - }, - { - "fields": { - "age": 26, - "bio": "I tend to see the best in people. Friendship and community are\\nImportant to me. I know how to listen, and can talk to just about\\nAnyone in any type of room. I like finding new uses for old things.\\nI can have fun with most people. I like to run - it's exercise for\\nMy body and mind. I am a conscientious omnivore. I love napping in\\nThe sun. I have curiosity that can be hard to quench and am willing\\nTo try just about anything once.", - "img": "user_pixel/m-191706-900x600.jpg", - "lower_age": 30, - "preference": "bisexual", - "sex": "Male", - "upper_age": 37, - "user": 262 - }, - "model": "earlydating.Profile", - "pk": 262 - }, - { - "fields": { - "age": 47, - "bio": "I am a german native and after winning my greencard in the lottery\\n(not kidding), i moved to sf 2 ys ago, and am finally living my\\nCalifornia dream and i must say i am taking full advantage of\\nEverything sf and the bay area has to offer!!\\nSf has become my home and it would be great to have an equally\\nCurious, optimistic and fun partner for exploring sf and...some\\nOther wonderful places in the world;)\\n\\nI couldn't describe me better than what audrey hepburn once\\nSaid:\\nI believe in pink.\\nI believe that laughing is the best calorie burner.\\nI believe in kissing, kissing a lot.\\nI believe in being strong when everything seems to be going\\nWrong.\\nI believe that happy girls are the prettiest girls.\\nI believe that tomorrow is another day and i believe in\\nMiracles.\\n\\nOh and maybe i should add that i dislike drama and playing games..", - "img": "user_pixel/f-2039406-1200x900.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 59, - "user": 263 - }, - "model": "earlydating.Profile", - "pk": 263 - }, - { - "fields": { - "age": 22, - "bio": "...depends on so many factors (what day is it?)\\nConsistently:\\nSassy, independent, and fun.\\nSome days i'm also distracted, spontaneous, and silly.\\nAlways: responsible, respectful, and real!", - "img": "user_pixel/f-1799387-1200x691.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Female", - "upper_age": 32, - "user": 264 - }, - "model": "earlydating.Profile", - "pk": 264 - }, - { - "fields": { - "age": 46, - "bio": "Bay area born and raised! moved to new york city for college, and\\nAm absolutely loving it.\\n\\nThis summer, i'd like to go out to eat/drink, work on my\\nPhotography, cook, soak up the sun, see more art, learn, read, meet\\nPeople, listen to live music, travel, and just enjoy life.\\n\\nSome of the coolest places i've been lucky enough to go to in the\\nPast few years range from reykjavik, iceland to gulu, uganda.", - "img": "user_pixel/m-261962-900x593.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Male", - "upper_age": 58, - "user": 265 - }, - "model": "earlydating.Profile", - "pk": 265 - }, - { - "fields": { - "age": 24, - "bio": "I'm originally from southern california but i've been in san\\nFrancisco for over 8 years now... I love the energy and people in\\nThis city. I miss my family and the weather in so cal but see\\nMyself living in these parts for a very long time. I'm a big fan of\\nWarm (slash hot) weather, the ocean (diving into it, floating on\\nIt), wide open spaces, spending time outdoors as much as possible,\\nMy family, fresh veggies, relaxing (i don't do it enough), spending\\nTime with friends, traveling (i'm addicted to it), and\\nParenthetical statements (if you hadn't noticed). :) when i'm not\\nWorking, you can usually find me soaking up the sun in dolores\\nPark, spending time with friends, cooking, enjoying delicious food\\nAnd wine, planning a trip abroad, dreaming about moving abroad or\\nGoing on a very extended holiday, flying away, practicing yoga or\\nDrinking strong black coffee (i love philz and four barrel)\\n\\nI'm from a huge family and we are close despite the distances i am\\nVery lucky in life, very grateful... I love and am loved by my\\nFamily and friends. I credit my family for my sarcastic tongue and\\nLove of hugs (there could be worse things)\\n\\nI love to travel (you may have noticed since this is the third\\nMention of it in three paragraphs). For me, traveling and spending\\nTime with my loved ones makes life worth living i've been to a few\\nSpots in europe, brazil (favorite so far), argentina, uruguay (for\\nA day), costa rica and mexico. I went to italy last summer and fell\\nIn love with rome (i'm sure i'm the first to have that happen,\\nRight?). I plan to go back and stay much longer next time.\\nContemplating my next adventure in thailand or south america again.\\nI'd love to spend months and months overseas in the (near)\\nFuture.\\n\\nWhat am i looking for you ask? :) i tend toward a deeper\\nConnection. I would like to meet a close friend, lover, travel\\nCompanion, partner... A man that i can be myself with, who makes me\\nLaugh, is compassionate and curious, affectionate, open, who\\nChallenges me (in a supportive way), with strength of character. A\\nFriend and partner.", - "img": "user_pixel/f-371561-1200x674.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Female", - "upper_age": 30, - "user": 266 - }, - "model": "earlydating.Profile", - "pk": 266 - }, - { - "fields": { - "age": 31, - "bio": "All these people keep saying to me \\\"you *have* to check out ok\\nCupid\\\" so here i am . They say it's where all the cool freaky\\nSan francisco people are.\\n\\nI joined because i am seeking to widen my circle of friends. I am\\nInterested in meeting people for dinner and drinks and good\\nConversation. I like going out for random meetings with people i\\nDon't know. It adds novelty to my life.\\n\\nIronically, even though i joined this site to get away from my\\nWork, it seems to follow me wherever i go. It seems that there are\\nA lot of people out there who are interested- so let me answer\\nThose questions now and get it out of the way. I am a sex positive event\\nProducer and community builder. I have dedicated a large portion of\\nMy life to the liberalization of sexuality, but it's really more\\nAbout personal freedom than sex. The\\nEvents that i create give people a safe space to explore that\\nFreedom in the context of sexuality.\\n\\nKinky salon is\\nA bohemian, pansexual costumed freakfest. You don't need a date to\\nCome, but you do need a 'pal'. Check the website for details\\nWww.kinkysalon.com . It's a\\nSocial, fun event where the sex is just a pretty background.\\n\\nClub kiss is\\nMore traditional and straight. It's for couples and single women\\nOnly. The guestlist is screened so everyone is hot. Which is kind\\nOf shallow- but pretty people like to fuck pretty people. What can\\nYou do? this event revolves around sex. Www.clubkiss.us\\n\\nOpenly is a larger\\nCommunity not so single mindedly focused on sex. It crosses across\\nA bunch of different kinds of folks. This is a great resource for\\nPeople looking for community. There are all kinds of ways to get\\nInvolved. We've got nature hikes to sober meetings to polyamory\\nWorkshops to wild sex parties. Check it out at www.openly.us\\n\\nI am funny (sometimes), smart (maybe), and nice (i think)", - "img": "user_pixel/m-245365-900x570.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 267 - }, - "model": "earlydating.Profile", - "pk": 267 - }, - { - "fields": { - "age": 43, - "bio": "Do i have to do this now? ugh", - "img": "user_pixel/f-2039406-1200x900.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Female", - "upper_age": 53, - "user": 268 - }, - "model": "earlydating.Profile", - "pk": 268 - }, - { - "fields": { - "age": 46, - "bio": "Names jamie, 21 years old living in an apartment with my\\nBestfriend. Work full time as a 2nd assistant manager at zumiez. I\\nJust got my license back in april for having a dui. Took a two\\nYears off for school cuz of it but planning on going back in\\nJanuary. Since getting my license back i got my motorcycle license\\nAnd bought a green 250cc ninja which is my new love. I do work alot\\nBut it's by choice since i've been single every since i lost my\\nLicense but now i'm looking to meet friends n hope maybe it turns\\nInto more", - "img": "user_pixel/m-218536-363x544.jpg", - "lower_age": 50, - "preference": "straight", - "sex": "Male", - "upper_age": 56, - "user": 269 - }, - "model": "earlydating.Profile", - "pk": 269 - }, - { - "fields": { - "age": 22, - "bio": "I do the sunday new york times crossword. In pen.\\n\\nI'm a yoga teacher striving to get her butt on the mat more often\\n(currently in what i affectionately call \\\"yoga teacher grad\\nSchool.\\\") oh, and i have this day job where i practice law. (i'm\\nGood at it. Maybe soon i can stop saying i \\\"practice\\\" and let\\nPeople conclude i've already gotten it right.)\\n\\nI like to wade barefoot in streams and pause to look up at chirpy\\nBirds, stay up all night and camp where i can see the stars. I talk\\nTo my cat. (he talks back. He also snores. He wears the furry\\nLittle pants in this relationship.) i don't eat dead animals (or\\nLive ones, either).\\n\\nI like, in no particular order: wit, katamari damacy, ddr, irish dancing, trivia games,\\nInternational travel, clean\\nLaundry, spirited debate, sudoku, cooking\\nFor other people, brewing mead, live music, poetry slams, dungeons\\n& dragons, forests, the ocean, really good food, npr, dark\\nChocolate, watching texas attempt to implement the federal clean\\nAir act, fountain pens, doing good things\\nJust because they are good things, bellydancing, sharing yoga, diet\\nCoke, making up words, laughter, walking outside, art museums, grappa, single malt\\nScotch (i have tasted 150+), family wineries, junior league\\nVolunteer projects, the komen 3 day for the cure, rain, bitching\\nAbout prop 13.\\n\\nI struggle with meditation practice, and recycle militantly.\\n\\nI know who i am and work hard to walk my talk. Friends and family\\nAnd making deep personal connections drive my world. I talk to my\\nParents every week, usually more than once, and get along well with\\nMy siblings. I believe it is important to take care of yourself\\n(emotionally, physically, spiritually...and every other way).\\n\\nI have finished four marathons, bagged a munro, survived a\\nHurricane (in jamaica), planted trees that now give shade, been a\\nBridesmaid wearing a dress i made myself, and appeared onstage with\\nThe italian national opera company. I have broken bones i can't\\nPronounce, delivered a speech in front of a live audience of\\nThousands, taken a reindeer for a walk, and won medals for my\\nMeads. I walked 60 miles to fight breast cancer and raised $5,000\\nToo. Twice.\\n\\nI am quite sure i can do anything.\\n\\nI recognize my vain and shallow moments for what they are.\\n\\nI am not a brat. (really.) except when i am.\\n\\nI am awfully busy, wicked smart, and some would say cute", - "img": "user_pixel/m-2325089-300x375.jpg", - "lower_age": 25, - "preference": "gay", - "sex": "Male", - "upper_age": 32, - "user": 270 - }, - "model": "earlydating.Profile", - "pk": 270 - }, - { - "fields": { - "age": 28, - "bio": "Hi.. How to start my self-summary. Thought of as foolish because i\\nFollow my heart. Music is my life, passion, love. I started playing\\nGuitar at age 11 and today i play a variety of instruments.. Piano,\\nBass, drums, vocals.. But my number one remains to be composing\\nMusic of my own making.. Singing and guitar. Influences ranging\\nFrom elliot smith, bright eyes, band of horses, sunny day, album\\nLeaf, air, blonde redhead, radiohead, lykkie li, yeah, yeah,\\nYeahs.. But i love all music really. Not picky as long as it's\\nAlive and i feel it. Oh, my name is rachel but my friends call me\\nEither ray ray, or just ray.. I'm 24 new to san francisco from l.a.\\nI'm inspired by those who know what they want and go after it.\\nFearless.\\n\\nI am talented, driven, and passionate", - "img": "user_pixel/m-1862356-300x200.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 271 - }, - "model": "earlydating.Profile", - "pk": 271 - }, - { - "fields": { - "age": 48, - "bio": "I just moved back to san francisco in december of last year after\\nAlmost 4 years of living in idaho. I am still trying to decide if i\\nLove the city as much as everyone else, drag shows are amazing to\\nMe and i love going out and getting crazy with my friends, i have\\nNo lady friends mostly aquaintances, all most of my friends are gay\\nBoys that i have met at work... I really love to sleep.", - "img": "user_pixel/f-371907-1200x800.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Other", - "upper_age": 55, - "user": 272 - }, - "model": "earlydating.Profile", - "pk": 272 - }, - { - "fields": { - "age": 35, - "bio": "Socially dom queer siciliana\\n\\nSpat from the sea i long to return\\n\\nBeautiful blend of activist artista lover\\n\\nPrison abolitionist\\n\\nRadical and brave\\n\\nThankful to my mama", - "img": "user_pixel/f-371785-1200x800.jpg", - "lower_age": 31, - "preference": "bisexual", - "sex": "Female", - "upper_age": 46, - "user": 273 - }, - "model": "earlydating.Profile", - "pk": 273 - }, - { - "fields": { - "age": 41, - "bio": "Born and raised in california, i moved to sf nearly 10 years ago\\nFor my internship and i've yet to come across an opportunity worth\\nLeaving for. I have a great job that i love, my friends are\\nAwesome, there are some exciting trips on the horizon. My\\nRelationship is strong with my family, i'm healthy and have\\nVirtually nothing to complain about. Well, except the bum that\\nPooped in the planter outside of my apartment. That was gross. But\\nOtherwise, i'm a pretty fulfilled and happy person.", - "img": "user_pixel/f-371743-666x900.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 274 - }, - "model": "earlydating.Profile", - "pk": 274 - }, - { - "fields": { - "age": 47, - "bio": "Well, i suppose i'm just becca. I like a lot of things, have met a\\nLot of people and experienced a lot of... Experiences! but there's\\nAlways room for more. :-)", - "img": "user_pixel/f-1732575-1200x800.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Other", - "upper_age": 60, - "user": 275 - }, - "model": "earlydating.Profile", - "pk": 275 - }, - { - "fields": { - "age": 48, - "bio": "I'm originally from portland, oregon and, i believe, that alone\\nSpeaks a lot about my character. No, i am not the type portrayed on\\nPortlandia and i think the show is a big misrepresentation of those\\nWho were born and raised in portland. While i have enjoyed an\\nEpisode or two, mainly so i can say, \\\"i've been to that bar,\\nBookstore or coffee shop\\\", i think it mainly portrays the\\nNon-oregonian, 20 somethings, who move there temporarily.\\n\\nI spent the summers of my teenage years carousing nyc with my\\nSister, who is ten years my senior, so i also have a great love for\\nThe city, particularly nyc. I went to college in los angeles, and\\nAfter entering the \\\"real world\\\" in so cal, i realized it wasn't for\\nMe. I moved to the bay area to be closer to family, have the real\\nOutdoors at my fingertips, but still be near a big city. I have\\nThought of moving home often, but my career has landed me here, for\\nThe moment, and i must say the bay area is a good balance between\\nNature and city life.\\n\\nCurrently, i am a paralegal/legal administrator at a law firm in\\nSan francisco. I love my job and the people with whom i work,\\nHowever, my goal for the future is to go to law school. I am\\nCurrently studying for the lsat and planning on enrolling in law\\nSchool in 2013.\\n\\nI am looking to meet people who enjoy both city life and the\\nOutdoors, who love animals, who can hold intellectual\\nConversations, who share the same interests and who are passionate\\nAbout what they do or the goals they have for the future. I would\\nLove to meet someone who is open to genuinely getting to know me as\\nA friend before jumping into a relationship.", - "img": "user_pixel/f-371887-1200x800.jpg", - "lower_age": 52, - "preference": "straight", - "sex": "Female", - "upper_age": 53, - "user": 276 - }, - "model": "earlydating.Profile", - "pk": 276 - }, - { - "fields": { - "age": 21, - "bio": "I am a passionate pisces, i have a great sense of humor and i like\\nTo laugh and have fun. I love music, music is like food to my soul.\\nI love to write and listen to peotry.", - "img": "user_pixel/m-245365-900x570.jpg", - "lower_age": 23, - "preference": "gay", - "sex": "Male", - "upper_age": 33, - "user": 277 - }, - "model": "earlydating.Profile", - "pk": 277 - }, - { - "fields": { - "age": 42, - "bio": "I'm geeky, intelligent, offbeat, playful, affectionate, kinky,\\nActively poly, and i try very hard not to fit into anyone's boxes\\nOr preconceived notions of what i should be. Most of the time i'm\\nVery good at this.\\n\\nI love theater, games (board, card), traveling, intelligence,\\nExcellent food, indie films, poker, backgammon, and things too\\nNumerous to list. By day i'm a computer professional with a talent\\nFor both breaking things and keeping them from breaking. In my\\nSpare time, i play a fair bit of poker and study the game. I used\\nTo play professionally, but it's a really rough way to make an easy\\nLiving. Plus, i learned that seeking out stupid people and\\nSurrounding myself with them wasn't all that much fun.\\n\\nI'm also an avid photographer, and i shoot a fair bit of bondage as\\nWell as a lot of g-rated stuff. In the last few years i've\\nExhibited my work in galleries across the us. I've almost reached\\nThe point where i can say \\\"nationally-exhibited photographer\\\" with\\nA straight face.\\n\\nDid i mention theater and travel? i have 50 quid and a london tube\\nCard in my wallet right now, and a permanent london cell phone\\nNumber. The last time i was in london, three different people\\nStopped me on the street to ask for directions, and i was able to\\nGive correct answers to each of them.\\n\\nOh, i mentioned poly and kinky. I'm polyamorous, and in a\\nRelationship with someone. Like most things in my life it's an\\nUnusual situation. My dating dance card is full, though i'm always\\nInterested in making new friends. I might also be in the market for\\nA bdsm playpartner, an sm bottom or switch.\\n\\nI like to cuddle, and i like to have interesting conversations. The\\nIdea of staying up most of the night cuddling and talking and\\nFooling around is particularly appealing to me.\\n\\nI'm also kinky, and i've been involved in the leather/bdsm\\nCommunity on and off for almost two decades. I don't necessarily\\nNeed that in a partner, but they need to be able to cope with that\\nPart of me. On the other hand, someone who thinks that missionary\\nWith the lights out is the be-all and end-all probably wouldn't be\\nHappy with me.\\n\\nAnd, in case you didn't notice, i have flaming fuchsia hair. No,\\nReally! (although i don't usually scowl nearly as much as my photo\\nMight indicate. :).\\n\\nI am quirky, intelligent, and sarcastic", - "img": "user_pixel/f-371675-1200x800.jpg", - "lower_age": 37, - "preference": "gay", - "sex": "Other", - "upper_age": 55, - "user": 278 - }, - "model": "earlydating.Profile", - "pk": 278 - }, - { - "fields": { - "age": 39, - "bio": "Being a successful business woman who has found her place in the\\nMale domain of the technology business, i am used to getting what i\\nWant. And i have grown beyond these measurable conventions.\\n\\nAny strong, independent, inspiring, compassionate and emotionally\\nMature man with a refined ability to communicate is invited to join\\nMe on my journey to the land of the unexplored.\\n\\nApplicants need to possess an analytical mind that still does not\\nKeep them from being my knight in shining armor who takes me to the\\nEnd of the rainbow.\\n\\nHumor is paramount.", - "img": "user_pixel/m-245261-900x675.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Male", - "upper_age": 52, - "user": 279 - }, - "model": "earlydating.Profile", - "pk": 279 - }, - { - "fields": { - "age": 41, - "bio": "Update 11/9: and i'm back! i'm a little heartbroken to not be\\nRoaming the desert and bayou anymore. Though i'm also a little\\nHeartbroken that i missed all the events in oakland. However on my\\nTrip i did find out that the rv is my spirit animal and my destiny\\nIs to be a trashy rv babe for life in my lemontina (that's her\\nName). So much so in fact that i got a tattoo of my dear lemontina\\nOn my ass while on the road! viva rv!\\n\\nUpdate 10/9: i did it! i'm on the road! i fixed my baby up and\\nWe're going to new orleans! right now i'm in flagstaff but i'll be\\nGoing trough new mexico and texas before i get to nola. If any one\\nHas any suggestions of things that i should do while i'm on the\\nRoad let me know! if any one wants to be my tour guide all the\\nBetter! see you in a month oakland...\\n\\nUpdate 9/11: i just bought an rv! 1976 dodge tioga! apparently i'm\\nAn idiot and it's a total piece of shit. It doesn't have ac or a\\nHorn and i already smashed one of the side mirrors. I'm going to\\nReupholster recarpet and repaint. It's time to hit the south and\\nSouthwest. T-minus 3 weeks till the apocalypse.\\n\\nI'm a crafter and collector. I love making and decorating things\\nAnd i try to keep tabs on my addiction by selling my trinkets. For\\nThe most part i find i surround my self with creative folks who\\nHave a good sense of humor.\\n\\nI have a pet tarantula named tallulah. She's pink and such a\\nSweetheart. Sometimes she's kinda scary.\\n\\nAll i really want to do is travel right now, but life is keeping me\\nHere for the moment. I try to make it out of the country at least\\nOnce a year though. As of right now i've been to more countries\\nThen states, so my next big trip will be a tour of the us of a.\\nPreferably on horse back. Or i guess i could settle for a truck and\\nA dog.", - "img": "user_pixel/f-372023-1200x800.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Other", - "upper_age": 52, - "user": 280 - }, - "model": "earlydating.Profile", - "pk": 280 - }, - { - "fields": { - "age": 41, - "bio": "I have a wonderful zest for life!\\n\\nI love femm women!\\n\\nI am new to san fran having recently moved from boston earlier this\\nYear. Life has been one beautiful ride since then! i enjoy being\\nSocial and going out to dance in the evenings. During the day, i\\nEnjoy getting to learn the city and seeing the beautiful san fran\\nLandscape. I'm a highly independent person and love the freedom\\nThat this way of life offers me. Most people feel i can get along\\nWith just about anyone. Everyone has something special to\\nOffer.\\n\\nI like to wear hoodies! it's so casual and comfy! and being a\\nNative of boston, i think the hoodie is essential. =)\\n\\nI like to be funny when the time comes, but i'm also caring and\\nUnderstanding when the situation calls for it.\\n\\nMy favorite type of music is hip-hop and r&b, but i am open to\\nMany types of music. Sade and alicia keys are two of my most\\nFavorite artists.\\n\\nI'm a very giving person. I like to put my family and friends'\\nNeeds above my own needs/desires. It is important to me that one\\nHave a caring and giving heart.\\n\\nI don't smoke or do drugs.", - "img": "user_pixel/m-282376-1000x666.jpg", - "lower_age": 42, - "preference": "gay", - "sex": "Male", - "upper_age": 48, - "user": 281 - }, - "model": "earlydating.Profile", - "pk": 281 - }, - { - "fields": { - "age": 28, - "bio": "Let's see. I grew up in upstate ny, lived in boston for 7 years,\\nAnd moved to sf about 4 years ago. I lived in malawi for the last\\nYear. I love to travel. I love mexican food. And i love driving.\\n(it makes me feel free and independent.)\\n\\nI also like running, watching baseball, backpacking, reading,\\nWriting, learning new things, seeing live music, staying up too\\nLate, getting up early early before everyone else, eating brunch,\\nEating pie, planning adventures, playing darts, and going on city\\nNight walks.\\n\\nI tell the truth. I pay for muni. I procrastinate. Let's say that\\nPop culture is not my strongest trivia area. More than anything\\nElse, i love spending time with people i love and doing things they\\nLike to do.", - "img": "user_pixel/m-199906-725x483.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Male", - "upper_age": 41, - "user": 282 - }, - "model": "earlydating.Profile", - "pk": 282 - }, - { - "fields": { - "age": 40, - "bio": "I am here only to make friends. I am happily attached in a\\nCommitted monogamous relationship.\\n\\nThere is no box for transgendered people, so i checked female\\nBecause otherwise i get hooked up with gay males.*\\nI am a transgender genderqueer butch. I've had chest surgery. I'm a\\nLight social drinker, and my drug days are over.\\n\\nI'm self-employed and have a pretty flexible schedule and i'm\\nLooking to make some new friends, preferably of the butch,\\nGenderqueer or transgender persuasion, as i find myself missing my\\nButch/queer/trans friends!\\n\\nMy guilty pleasure is court tv, specifically judge marilyn milian\\nOn the people's court and judge judy. My girlfiend thinks i'm a\\nFreak... What can i say maybe i like to watch people get yelled at.\\n:p\\n\\nI often take 3-4 showers a day. Yes, i'm a bit ocd. I hate\\nChocolate ice cream. If you give me some i'll throw it. I love to\\nCook. If you can cook chinese food, i'll be your personal slave.\\nI've driven my mother on the back of my motorcycle. I compulsively\\nSteal pens from business establishments because i can. I sometimes\\nEnjoy really offensive hip hop music. I'm god with my hands. *this\\nWas originally a typo, but i decided to leave it ;)*\\n\\nMy interests vary from moment to moment, but currently i like going\\nTo the gym, playing my guitar, torturing my dog when i'm restless,\\nRiding my bike, photography, writing about things that inspire me,\\nAmuse me or disturb me. I'd love to find some people who wanna go\\nDancing. I enjoy old school and hip hop for dancing. I love music,\\nSo i can easily be persuaded to go see a band, a concert or\\nClubbing. I'm a movie fanatic and if you ask me nicely i'll do a\\nHannibal lechter monologue from silence of the lambs for you, yeah\\nIt's creepy, but in a hot way, i assure you. Generally, i love\\nHanging out with friends in a casual or not so casual setting,\\nPeople watching, downloading music, tattoos, meeting new people,\\nBuddhism, bodywork, getting my hands dirty and fixing things,\\nVoyeurism of many kinds and whatever else sounds fun and\\nInteresting that i have yet to do.\\n\\nI am creative, charming and confident.", - "img": "user_pixel/f-371739-1200x792.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 283 - }, - "model": "earlydating.Profile", - "pk": 283 - }, - { - "fields": { - "age": 43, - "bio": "I'm playful yet responsible, and i'm a shy (yes that's possible)\\nExtrovert. I prefer the company of a few good friends ( + friends\\nOf friends) to a night out clubbing with a bunch of strangers,\\nThough i occasionally still do that too. I like wine tasting trips,\\nEspecially on a nice sunny day. I love traveling and seeing new\\nPlaces. (who doesn't?) i don't love the hassle of managing the\\nSuitcases and the logistics of transportation, but i love staying\\nAt hotels, so even work travel has some perks :) i'm still just as\\nFascinated with castles as i was when i was reading fairy tales\\n(you know, last year). I love europe, and trying to resist the urge\\nTo spend all my vacation time there. On weekends, i like playing\\nTourist locally - walk along the embarcadero, go to sonoma or on a\\nHike with a breathtaking view. I entertain myself by attempting to\\nLearn french, zumba-ing, experimenting in the kitchen, working on\\nSome sort of a creative project, traveling, thinking about\\nTraveling or (not so proudly) surfing the net. Am trying to get to\\nThe end of \\\"the internets\\\" :)", - "img": "user_pixel/f-371905-1200x800.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 51, - "user": 284 - }, - "model": "earlydating.Profile", - "pk": 284 - }, - { - "fields": { - "age": 48, - "bio": "I'm very outgoing and friendly. I'm super curious so i ask a lot of\\nQuestions. I'm very honest even if i don't want to be. I'm at a\\nPoint in my life where i want to go experience more things then\\nBuying tangible things for myself.\\nI love watching movies and i'm always open to new music although my\\nFavs would be hip hop reggae and swing. If i had more time i would\\nBe reading a lot more.\\nI love seeing my city on a clear ass nite its beautiful and i will\\nNever tire of it.", - "img": "user_pixel/f-371919-600x900.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 285 - }, - "model": "earlydating.Profile", - "pk": 285 - }, - { - "fields": { - "age": 33, - "bio": "Hi! my name's danielle.\\nI'm currently a neuroscience student at stanford univeristy,\\nConsidering a double minor in philosophy and german. I love\\nTraveling, getting lost in europe, being active, and trying new\\nThings.\\n\\nMusic is a huge aspect of my life; i've been playing the cello most\\nOf my life and am currently learning to play the piano. I love all\\nTypes of music except country ( sorry!).i think life would be\\nBoring with art, and am starting to be really into\\nPhotography.\\n\\nI realized that i'm often the butt of all jokes, but i think it's\\nBecause of my \\\"blondish\\\" comebacks and wicked smile.", - "img": "user_pixel/f-371795-1200x674.jpg", - "lower_age": 35, - "preference": "gay", - "sex": "Female", - "upper_age": 45, - "user": 286 - }, - "model": "earlydating.Profile", - "pk": 286 - }, - { - "fields": { - "age": 43, - "bio": "Originally from the east coast (representing md/dc/va aka the dmv),\\nBut fell in love with the west! singing is one of my passions.\\nDefinitely a gym buff. I've been told i can be a bit dorky at\\nTimes, but i beg to differ.", - "img": "user_pixel/f-371785-1200x800.jpg", - "lower_age": 38, - "preference": "gay", - "sex": "Female", - "upper_age": 55, - "user": 287 - }, - "model": "earlydating.Profile", - "pk": 287 - }, - { - "fields": { - "age": 41, - "bio": "I'm a graduate student in physics. I lived in berkeley ages 4-11\\nAnd feel a special love/ affinity for the place, even though it's\\nBeen ages since i lived there. I'm a nerd and consider myself an\\nAvid reader even though i don't have time to read nearly as much as\\nI'd like. I also love... Music, good friends, art museums, cooking\\n(or, rather, eating), growing vegetables, backpacking, bikram yoga,\\nRunning, traveling, and i'm just starting to get into\\nClimbing.\\n\\nI'm interested in many things, but rarely an expert in them. My\\nMost successful relationships have been with people who have a\\nSimilar level of interest in things as i do-- not necessarily\\nPeople who have precisely the same interests as me, but people who\\nAre enthusiastic about something, can teach me the things that they\\nDo well and who also want to learn whatever i can teach them.\\nBasically, i want to continue learning as much as i can for the\\nRest of my life, and want to be with someone who feels the same\\nWay.", - "img": "user_pixel/f-1742194-1200x800.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 288 - }, - "model": "earlydating.Profile", - "pk": 288 - }, - { - "fields": { - "age": 28, - "bio": "Socal gal who spent my summers in tx. Yes, i do have a teensy\\nDrawl, mixed in with surfer girl. Goes something like this, \\\"ya'll\\nLook bodacious out there!\\\" i kid. My fav look is cowboy boots and a\\nBikini. Cowboy boots and a wet suit just don't have the same\\nVibe.\\n\\nI'm happy and fun. I'm also responsible and grown up. I love to\\nTravel and have been to more than 25 countries... But thats\\nProbably small potatoes compared to most people on here.", - "img": "user_pixel/f-2454938-300x200.jpg", - "lower_age": 29, - "preference": "gay", - "sex": "Female", - "upper_age": 38, - "user": 289 - }, - "model": "earlydating.Profile", - "pk": 289 - }, - { - "fields": { - "age": 37, - "bio": "I'll start with the basics. My name is april. I'm a student\\nJournalist with too many hobbies and interests. I like playing\\nVideo games but i also like collecting retro video games and\\nConsoles, listening to music, learn to play instruments (i played\\nThe saxophone from 7th-12th grade but want to learn other\\nInstruments), writing, reading books, comics, manga, watching\\nAnime,knitting, crochet, cooking, baking, eating, thinking of\\nPotential tattoo ideas, looking at retro pin-up art and more.\\nYeah, i'm a big nerd but i have no problem it with so neither\\nShould you...\\nI'm not exactly good at making friends and this is where i end up.", - "img": "user_pixel/f-1929452-1200x900.jpg", - "lower_age": 34, - "preference": "gay", - "sex": "Female", - "upper_age": 43, - "user": 290 - }, - "model": "earlydating.Profile", - "pk": 290 - }, - { - "fields": { - "age": 41, - "bio": "Hello everyone,\\n\\nI decided to try okcupid out after a a friend recommended it to me.\\nA little bit about me, well let's see where should i start. I'm\\nTrying to get back into the dating scene after being single for the\\nPast year and a half. I am hoping to make some new friends and\\nMaybe more.\\n\\nI know on my profile it states that i am bi, but don't get the\\nWrong idea.\\n\\nFyi, i am the one on the left in the zebra print top with dark\\nHair, the one on the right is my best friend.\\n\\nIf you would like to know more about me, please feel free to\\nContact me.\\n\\nI am kind, shy, and cute", - "img": "user_pixel/m-199906-725x483.jpg", - "lower_age": 39, - "preference": "gay", - "sex": "Male", - "upper_age": 55, - "user": 291 - }, - "model": "earlydating.Profile", - "pk": 291 - }, - { - "fields": { - "age": 37, - "bio": "I can name the constellations.", - "img": "user_pixel/f-2267811-300x225.jpg", - "lower_age": 32, - "preference": "bisexual", - "sex": "Female", - "upper_age": 46, - "user": 292 - }, - "model": "earlydating.Profile", - "pk": 292 - }, - { - "fields": { - "age": 44, - "bio": "I'm originally from the boston area but i've lived in san francisco\\nFor almost 8 years (minus a brief stint back in boston for grad\\nSchool). So i'm a new englander at heart but i'm also happier in a\\nCity that has warmer weather year-round, better restaurants, and\\nMountains and beaches nearby. I'm generally a relatively social and\\nActive person and i'm constantly seeking out new activities in the\\nCity. An ideal weekend for me might include a day trip for hiking\\nOr wine tasting, a meal with friends at a new restaurant , a run in\\nThe park or along crissy field, and maybe checking out a baseball\\nGame or playing some tennis.", - "img": "user_pixel/m-245667-900x600.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Male", - "upper_age": 57, - "user": 293 - }, - "model": "earlydating.Profile", - "pk": 293 - }, - { - "fields": { - "age": 32, - "bio": "Oh, to be wordy and witty enough to attract your\\nAttention....whatever - all i can really be is just plain honest so\\nHere goes... I am originally from the east coast and have lived all\\nOver the us. Hope to make the transition to living outside of the\\nUs one day. I have traveled solo and like it. I have traveled with\\nGroups and like it. I tend to notice nature sounds others might\\nMiss and do consider myself a wildlife nerd. I laugh at potty humor\\nAnd sometimes can't contain my giggling. I am the one that says\\nSomething inappropriate when the room has suddenly gone silent (not\\nOn purpose, mind you!) i have a \\\"to do\\\" list that is long and i\\nDon't mean like clean the house or do laundry though those are most\\nLikely on the list, too. The list mostly has to do with travel and\\nLearning, sharing and loving.\\n\\nI am fascinated, compassionate, and love the color orange.", - "img": "user_pixel/f-372037-1200x800.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Female", - "upper_age": 45, - "user": 294 - }, - "model": "earlydating.Profile", - "pk": 294 - }, - { - "fields": { - "age": 48, - "bio": "When not shark-diving or walking on fire, i'm a pretty easy-going\\nCity girl -- born and raised in sf, love to travel and love to\\nLaugh", - "img": "user_pixel/f-371517-1200x800.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 55, - "user": 295 - }, - "model": "earlydating.Profile", - "pk": 295 - }, - { - "fields": { - "age": 45, - "bio": "I always find these things ridiculously difficult to figure out.\\nHow do i describe myself without too much of my negative side,\\nWhile not so little that i seem like i'm lying about how not lame i\\nAm, and also not sound arrogant when describing my positive side,\\nWhile still allowing room for my wit and silliness.... What\\nFeatures of my personality are most important to me, or to you?\\nGeeze... Why does this have to end up being all existential 'n\\nStuff?\\nWell.... I'm awesome annnnd... I love just having a nice time\\nHanging out. Maybe watching a movie and smoking a doob... Life is\\nGood, and you should agree! times may have never been tougher, all\\nAround, but it is important that the person i end up with can still\\nExperience realistic optimism regularly. I don't go out as much as\\nI wish i did, but when i do it is usually to occupy\\nSomething.\\n\\n....after roaming the site a bit more, i feel like it might be\\nKinda important to add that i lean much more towards 'hippy' than\\n'hipster'... I'm not stinky or anything (anymore... What? i lived\\nIn a bush once, great story.. Maybe i'll tell you sometime) but i\\nAm more into growing veggies, making art and music, and medicating,\\nAs opposed to pbr, street bikes, and large neon-colored plastic\\nGlasses.", - "img": "user_pixel/f-371519-1200x800.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Female", - "upper_age": 53, - "user": 296 - }, - "model": "earlydating.Profile", - "pk": 296 - }, - { - "fields": { - "age": 23, - "bio": "I'm somewhat new to the area and a friend recommended i join to\\nMeet some new people :)\\n\\nI'm a pretty laid back girl who is down for anything. I'm like to\\nExplore and try things at least twice to determine if i like it or\\nNot.\\n\\nLive in oakland, work in the city but never limited to these to\\nPlaces..i'm always down for anything around the bay area", - "img": "user_pixel/m-2436119-300x200.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 28, - "user": 297 - }, - "model": "earlydating.Profile", - "pk": 297 - }, - { - "fields": { - "age": 28, - "bio": "I'm a smart, indoorsy, bookish techie, looking for new friends with\\nLong term potential. I'm eccentric, but never hip. And reliable,\\nBut never predictable.\\nI still haven't mastered winter, but am finally comfortable with\\nSan francisco weather.", - "img": "user_pixel/m-211526-725x483.jpg", - "lower_age": 28, - "preference": "bisexual", - "sex": "Male", - "upper_age": 38, - "user": 298 - }, - "model": "earlydating.Profile", - "pk": 298 - }, - { - "fields": { - "age": 21, - "bio": "Grew up in sacramento, first generation american on one side,\\nSecond generation on the other...things that i think are\\nRelevant:\\nI can cook well, but i make better desserts, i'd say i am\\nComfortable in any situation (well i seem comfortable at least...),\\nWell traveled (although asia remains to be conquered), i'm dead\\nHonest and trustworthy as all get out, i'm fun and goofy (no really\\nI know people say that, but really i am a total dork), dare i say\\nI'm pretty cute, well versed in scotch, gin, wine, beer..., i can\\nThrow one back with the fellas while watching sports and\\nBullshitting my way through, i like music and open to it all, i'm\\nIndependent, smart as a whip, well educated, driven, wicked\\nCreative.\\n\\nRecovering lawyer now working in human resources and absolutely\\nLoving every second of it, but eager to pursue my third career as a\\nPastry chef.", - "img": "user_pixel/f-2193929-300x200.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Female", - "upper_age": 28, - "user": 299 - }, - "model": "earlydating.Profile", - "pk": 299 - }, - { - "fields": { - "age": 35, - "bio": "*work in progress* life is always a learning experience, no matter\\nHow old we are. I find that just when i think i have things figured\\nOut, life comes along and throws me a curve ball out of left field\\nThat i didn't expect coming. I am truly blessed though. I have my\\nFamily, friends and security that can easily be taken for granted.\\nI give thanks everyday for everything i do have. Just want to add\\nThat although my \\\"stats\\\" over there ---> say i have children and\\nDon't want more, doesn't mean i don't want to date someone who has\\nChildren. In fact, its a plus if the person i am getting to know\\nDoes have kids. I just mean i do not want to give birth to anymore\\nChildren. :)", - "img": "user_pixel/f-2451613-300x450.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 300 - }, - "model": "earlydating.Profile", - "pk": 300 - }, - { - "fields": { - "age": 33, - "bio": "I am a nyc transplant, new to the bay area. I am urban at heart but\\nHave realized i'm more comfortable living with more space, less\\nPeople and more trees. I'm loving the change in lifestyle the bay\\nArea has to offer. I love the simple things in life, being in good\\nCompany, traveling, cooking, eating, experiencing new things as\\nWell as being able to do the same old thing. I'm pretty\\nAdventurous, laid back and independent. I love the outdoors,\\nHiking, biking, camping, beaches, mountains, snowboarding, yoga.", - "img": "user_pixel/m-48271-361x544.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Male", - "upper_age": 41, - "user": 301 - }, - "model": "earlydating.Profile", - "pk": 301 - }, - { - "fields": { - "age": 47, - "bio": "Originally from so cal, i've spent most of my adult life in the bay\\nArea. I love the diversity of the city, the friendships i've made,\\nAnd the christian community i've found here. I'm not a big planner\\nAnd thrive on spontaneity.\\n\\nI am pretty active and love to travel, both locally and globally.\\nSome of my favorite destinations include new york, london, seoul,\\nParis, chiang mai, israel, maui, yosemite, and vancouver. I am\\nActive and enjoy being in the outdoors but i also love city living.\\nI'm actively involved in my church and host a weekly small\\nGroup.\\n\\nHealth is a priority of mine and i enjoy physical activity and\\nEating well. I frequent the gym, run, cycle, hike, and explore sf\\nOn foot during the weekends. I enjoy good conversation, food and\\nHealth, learning, reading, simplicity, humor.\\n\\nI would consider myself down-to earth, accommodating, low key, and\\nSpiritual. My christian faith is my foundation and the perspective\\nThrough which i view life, and i would like to find someone with\\nWhom that resonates.", - "img": "user_pixel/f-1742194-1200x800.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Female", - "upper_age": 54, - "user": 302 - }, - "model": "earlydating.Profile", - "pk": 302 - }, - { - "fields": { - "age": 44, - "bio": "I have lived in sf a little over two years now, and i love it. How\\nTo describe me...i enjoy going out and having fun, and i am always\\nOpen to new experiences. Two things that i absolutely need in my\\nLife are the gym and food. I love all types of food and enjoy\\nExploring the city for good restaurants. I'm a firm believer of\\nWork hard, play hard..as cliche as that sounds. I am very motivated\\nSo working hard makes me feel accomplished, and playing hard allows\\nMe to enjoy life, and to take advantage of being young only\\nOnce.\\n\\nI also enjoy traveling - just finished backpacking in vietnam and\\nThailand this summer, and can't wait for another trip in the\\nFuture.\\n\\nEnneagram personality type 3, esfj", - "img": "user_pixel/m-2436019-300x200.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Male", - "upper_age": 51, - "user": 303 - }, - "model": "earlydating.Profile", - "pk": 303 - }, - { - "fields": { - "age": 34, - "bio": "I'm a combo of midwest-nice with east coast city smarts. I'm type a\\nAt work and way more chill at home. I work a lot, but not too much.\\nI have to get up early but am terrible at getting to bed at a good\\nHour. Whenever i can i'm out running, biking, or swimming, though i\\nStill haven't had the guts to try out the bay! i'm a big skier and\\nAm excited to try out my squaw pass this winter after 5 years in dc\\nWithout real snow. I'm also very close with my family, all of whom\\nStill live in the midwest.", - "img": "user_pixel/f-372037-1200x800.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Female", - "upper_age": 40, - "user": 304 - }, - "model": "earlydating.Profile", - "pk": 304 - }, - { - "fields": { - "age": 26, - "bio": "I like to laugh a lot, enjoy life, and have fun. I usually smell\\nPretty good, too.", - "img": "user_pixel/m-45602-723x544.jpg", - "lower_age": 30, - "preference": "bisexual", - "sex": "Male", - "upper_age": 31, - "user": 305 - }, - "model": "earlydating.Profile", - "pk": 305 - }, - { - "fields": { - "age": 45, - "bio": "Working on it - will be up soon! ok fine i guess i have to write\\nMore before ok cupid will even let me save. And let's face it - i'm\\nNot even sure when i actually will sit down and really write this,\\nSo something now is better than nothing, eh? i see the world\\nThrough the eyes of sustainability, which to me means\\nMuch more than using resources efficiently - it's about people, and\\nSetting up societies to meet people's needs. I love traveling and meeting new\\nPeople who are different from me. My appetite for discovering the\\nWorld - from taking colorful \\\"car-rapides\\\" buses in senegal (a common form of\\nLocal transport), to hiking the hills walking distance from my\\nHouse - is never satisfied, and i am continually struck by a new\\nWay of looking at something or a fascinating detail i hadn't\\nNoticed before.\\n\\nI believe: that people are genuinely good, in hope, that all living\\nThings are connected, ...\\n\\nI don't believe in: fate nor free-will, american exceptionalism,\\n...\\n\\nFrom my facebook profile:\\n\\nI like to go dumpster-diving.\\n\\nFavorite color: purple\\nFavorite animal: bumble bee\\n2nd favorite animal: sea horse\\n\\nNote: humans are a kind of animal; not sure where they'd be on the\\nList, though.\\n\\nSo okc used to have an editing tool that allowed you to mark which\\nLanguages you speak and answer profile questions in those multiple\\nLanguages. Apparently they got rid of this in mid-2010 and stuck my\\nGerman and french answers here (i also put wolof, so i'm not sure what happend to\\nThat info):\\n\\nWirklich? nicht jetzt... Ich kann nicht so viele jetzt auf deutsch\\nSchreiben. Aber will ich mein deutsch ntzen... So was? ich liebe\\nDie welt - wenn es regnet, wenn ich allein bin, wenn ich tanze,\\nWenn wir das bestes konversation des welt haben...\\n\\nVraiment? pas maintenant... Je ne sais pas comment je dois/peux\\nCommencer. C'est pas juste de demander tout les traductions au mme\\nTemps! j'ai apprit la plupart de mon franais parce que j'ai tudi\\nAu senegal avec un programme de dveloppement durable.\\n\\nAnd this is a relic of the \\\"summarize yourself in 3 words\\\" exercise\\nThat used to be at the top of everyone's profiles and was a\\nDefining characteristic of okc:\\n\\nI am creative, easily-fascinated, and open.\\n\\nN.b.: i update my profile sporadically and inconsistently :)", - "img": "user_pixel/f-2267811-300x225.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Female", - "upper_age": 54, - "user": 306 - }, - "model": "earlydating.Profile", - "pk": 306 - }, - { - "fields": { - "age": 36, - "bio": "Im 19 years old. I was born and raised in oakland. Still live in\\nOakland. I work nd qo to school.in lookinq for somethinq serious or\\nPeople to qo out and have fun with! im not here for sex sooo if ur\\nInterested in that then dont even bother with me.. Hit me up if u\\nWanna knoe more :) im chill to be with :)", - "img": "user_pixel/f-1929452-1200x900.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 47, - "user": 307 - }, - "model": "earlydating.Profile", - "pk": 307 - }, - { - "fields": { - "age": 41, - "bio": "My life has changed many times. I've had multiple heart surgeries,\\nAnd these experiences have, in many ways, defined the way i see the\\nWorld. I'm looking for someone who is good at communicating and has\\nHad life experience... A friend who i can relate to and possibly\\nDevelop into something more.\\n\\nI'm pretty open to anything including people of all gender\\nIdentities; i usually identify myself as queer...i like people,\\nRegardless of how they choose to identify. However, lately i've\\nBeen leaning more towards queer men.\\n\\nI experience the world mostly through feeling.", - "img": "user_pixel/f-2275812-300x200.jpg", - "lower_age": 38, - "preference": "straight", - "sex": "Female", - "upper_age": 52, - "user": 308 - }, - "model": "earlydating.Profile", - "pk": 308 - }, - { - "fields": { - "age": 41, - "bio": "I am delurg, of old european family. In the picture is our one time\\nCastle. Unfortunately we don't have the money anymore. This is what\\nHappens when you marry outside your culture. :(", - "img": "user_pixel/f-371983-1200x795.jpg", - "lower_age": 38, - "preference": "gay", - "sex": "Female", - "upper_age": 48, - "user": 309 - }, - "model": "earlydating.Profile", - "pk": 309 - }, - { - "fields": { - "age": 26, - "bio": "I'm at peace with myself and my life - ready to meet the right guy.\\nI appreciate intelligence, kindness, integrity, good humor,\\nConfidence, education and a sense of adventure. A man who sees a\\nWoman as a partner, a friend and a confidant is a prize! sharing\\nAdventures with a happy, curious, resourceful guy would be lovely.\\nOh, and courteous driving says a great deal.\\n\\nI listen well and carefully and appreciate the same. This holds\\nTrue for affection - words, hugs and soft kisses are the currency\\nOf real connections.\\n\\nI've had a pretty interesting life so far - not that much\\nIntimidates me. Not looking for drama, just adventure and genuine\\nEmotional connection. Life is too short to spend much time in front\\nOf the tv or wandering the aisles at walmart - no, i'd rather spend\\nIt with you. Most things are just more fun and memorable with\\nSomeone to share the experiences.\\n\\nIf you are into mb personality tests - i am an intj. What about\\nYou?", - "img": "user_pixel/m-45820-573x544.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Male", - "upper_age": 32, - "user": 310 - }, - "model": "earlydating.Profile", - "pk": 310 - }, - { - "fields": { - "age": 21, - "bio": "My name is ariel i'm originally from new york now i live in san\\nFrancisco been here for about three years. I'm a actress, dancer,\\nWriter and musician. I'm working on a book that i wrote called \\\"the\\nBeautiful mind\\\" and i write music on the side. I'm very determined\\nIn what interest me and im a very passionate person. I'm very\\nOpenminded and free spirited and i love to have fun. I'm very goofy\\nAnd like to crack jokes but i can be sensitive at the same time.\\nI'm easy going and i just love to laugh and be around positive\\nPeople.", - "img": "user_pixel/m-284328-1000x672.jpg", - "lower_age": 20, - "preference": "gay", - "sex": "Male", - "upper_age": 29, - "user": 311 - }, - "model": "earlydating.Profile", - "pk": 311 - }, - { - "fields": { - "age": 31, - "bio": "I am originally from cincinnati, a mid-western girl, born an\\nRaised. I moved to cali 12 years ago and now call it home. I am an\\nArtist, and work as a designer, but my passion is dance. I love to\\nBe outdoors, excercise, eat good food, and try new things. I have\\nTravelled to many far away places and love adventure.", - "img": "user_pixel/m-219004-900x600.jpg", - "lower_age": 32, - "preference": "gay", - "sex": "Male", - "upper_age": 37, - "user": 312 - }, - "model": "earlydating.Profile", - "pk": 312 - }, - { - "fields": { - "age": 44, - "bio": "I want to...frolic in a meadow full of sunflowers,\\nDrink out of an actual glacier,\\nEat italian food in italy,\\nSwim with sharks,\\nSweat in a sweat house,\\nWrite a song,\\nLearn to play ukulele\\n\\nMotto: make someone happy.\\nIt's life embrace it. Find happiness in the small things..\\nSome things i find happiness in...\\nGenuine nice people.\\nThe feeling of content. When nothing sounds better then what your\\nDoing at that exact perfect moment.\\nOr when a song comes on and perfectly parallels your emotion\\nThe bay.\\nIllegally taking the car pool lane in bad traffic. Live a little\\nRather then wasting your life away.\\nPlaying hide n seek with the chillest niece in the world.\\nBeing unbelievably half mexican.\\nSharing good music and good vibes\\nDrinking games\\nLive music. Especially outdoors.\\nGood hugs.\\nWhen you play a song that perfectly parellels your emotion.\\nThe authority of being tall.\\nKaleidoscopes.\\nHaving the best mother in the whole world.\\nDrum circles.\\nGoing for foggy night blunt walks.\\nOur president.\\nHow it smells after it rains.\\nDiving into my piping hot fresh out of the dryer down blanket on a\\nCold night.\\nOne move parallel parking.\\nCrunchy ice.\\nKick ass eve's.\\nShowers/using a ridiculous amount of body wash\\nThe 559.\\nA nice piece of bubble wrap.\\nBeing a little kid and hiding in the back of a truck to get in free\\nTo the drive-in movies.\\nMy friends.\\nSinging or dancing in crowded areas\\nWrestling with my sibling when i was younger, it was worth someone\\nAlways getting hurt. Because that someone was usually my brother.\\n:/\\nSarcasm in literature.\\nRootbeer.\\nFree things\\nDiscovering\\nHippie hill.\\nMy car.\\nA full tank of gas!\\nGood books\\nIncense/sage\\nParties/getting entertainingly non-sober\\nMy appreciation for nature.\\nBlowing those puffy plant things (dandelions)\\nGreen.\\nExploring the unknown/letting intuition guide me\\nFresh air! being barefoot on the grass and/or sand, feeling the\\nWarm summer breeze.\\nMango.\\nOthers happiness (witnessing or partaking in random acts of\\nKindness)\\nEmbracing the beauty of day to day life.\\n\\nJust some things that help represent the person i am.\\n\\nLove, jill.\\n\\nI am intuitive, open-minded, and ready for anything", - "img": "user_pixel/f-371999-595x900.jpg", - "lower_age": 48, - "preference": "straight", - "sex": "Other", - "upper_age": 53, - "user": 313 - }, - "model": "earlydating.Profile", - "pk": 313 - }, - { - "fields": { - "age": 46, - "bio": "I grew up on the east coast and finally realized that life is too\\nShort to always be cold. Unfortunately 2.5 years in san francisco\\nTaught me you can be cold even in california. I moved to oakland\\nAbout 2 years ago and other than the ease of public transportation\\nAnd missing walking everywhere, i am pretty happy with where i am\\n(and quite a bit warmer).\\n\\nMy personality is still pretty east coast, i say what i think and\\nLike a heated discussion. I enjoy conversations with people who\\nMake me think, even if i don't agree. I prefer the company of\\nPeople who can keep me on my toes and keep me thinking. I also tend\\nTo be on time (or early) so chronically significantly late people\\nDrive me somewhat insane.\\n\\nI am funny, talkative, and opinionated", - "img": "user_pixel/m-230206-540x675.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 52, - "user": 314 - }, - "model": "earlydating.Profile", - "pk": 314 - }, - { - "fields": { - "age": 40, - "bio": "The only people for me are the mad ones, the ones who are mad to\\nLive, mad to talk, mad to be saved, desirous of everything at the\\nSame time, the ones who never yawn or say a commonplace thing, but\\nBurn, burn, burn, like fabulous yellow roman candles exploding like\\nSpiders across the stars and in the middle you see the blue\\nCenterlight pop and everybody goes \\\"awww! ~jack kerouac", - "img": "user_pixel/m-282484-1000x667.jpg", - "lower_age": 41, - "preference": "gay", - "sex": "Male", - "upper_age": 49, - "user": 315 - }, - "model": "earlydating.Profile", - "pk": 315 - }, - { - "fields": { - "age": 26, - "bio": "Hi there. Thanks for looking at me!\\n\\nAt age ten, i sat in a restaurant with my aunt, telling her i would\\nLive in san francisco someday. I hail from the embarrassing state\\nOf arizona. (if you don't know what i mean, this article will catch\\nYou up:\\nHttp://opinionator.blogs.nytimes.com/2012/05/24/total-eclipse/.)\\nArizona lays claim to some wonderful people and phenomenal sunsets\\n... But i knew, even as a child, that it was not the state for\\nMe.\\n\\nFifteen years after my prescient declaration, i drove my car\\nFourteen hours west, with a friend driving my belongings in a\\nU-haul truck behind me. As we crossed the bay bridge*, i cried,\\nReflecting on how long i'd wished to live here, and hardly\\nBelieving that my residency launch date had arrived. I have been in\\nLove with this city every day of the thirteen years since.\\n\\n*the golden gate bridge would have made this story far more\\nRomantic.\\n\\nBetween the article i cited and my san francisco love story, you\\nKnow my politics. I am fixed on that side, and i sit at the edge\\nFarthest from the aisle. If i ever land on a particular spiritual\\nPath, i'll let you know; i am more inquisitive and open-minded on\\nThat one.\\n\\nThe overused term \\\"intellectually curious\\\" describes me. I am also\\nEmotional, and my sensitivity extends to others in the form of\\nCompassion. If you know astrology, i am an aquarius with a scorpio\\nMoon and libra rising. On myers-briggs, i'm an enfj. Facebook says\\nThe downton abbey character i personify is lady sybil.\\n\\nI love dancing, running, and singing along to my ipod. If you need\\nAn aggressive sweeper on your soccer team, look no further: i\\nHaven't kicked a ball in years, but when i played in an indoor\\nSoccer league with several european men, the other side almost\\nNever got past me. I'm not that great at strategy or aim, but i was\\nThe last defensive line on a goalie-free court, and i couldn't\\nStand letting the team down. So i rarely did.\\n\\nI seek a partner who is funny, kind, smart, and good to the core -\\nA trait that overlaps with kind, but speaks more to character,\\nWhich is important to me. As a partner, i am loyal, honest,\\nTrusting, and independent. I love talking for hours, and i am\\nHighly social. I also need a fair amount of alone time, and i know\\nHow to ask for it. I am affectionate, funny, and thoughtful. I like\\nMen who are, too.", - "img": "user_pixel/f-2282604-6000x4000.jpg", - "lower_age": 26, - "preference": "bisexual", - "sex": "Female", - "upper_age": 40, - "user": 316 - }, - "model": "earlydating.Profile", - "pk": 316 - }, - { - "fields": { - "age": 42, - "bio": "This whole thing needs some work....\\n\\nI am student at sf state living in san francisco, i moved here from\\nMy home town santa cruz about 2 years ago and absolutely love\\nIt!\\n\\nTo sum me up i would say i am a laid back, down to earth, open\\nMinded, strong queer woman. My main thing is music but i also have\\nA strong passion for circus arts and getting outdoors.\\n\\nI can't sleep with socks on", - "img": "user_pixel/m-283081-1000x667.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Male", - "upper_age": 52, - "user": 317 - }, - "model": "earlydating.Profile", - "pk": 317 - }, - { - "fields": { - "age": 35, - "bio": "I'm still writing my book. I'm a transplant from the east coast- a\\nFresh start to meet new people and experience new things. I'm a\\nDo'er not a watcher. I'm confident and adventurous. I like to hike\\nAnd bike, take risks and might be a little shy at first. Blah blah,\\nI'm talking about myself without you asking me questions.", - "img": "user_pixel/m-245667-900x600.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 318 - }, - "model": "earlydating.Profile", - "pk": 318 - }, - { - "fields": { - "age": 49, - "bio": "I'm a 25 yrs young :-) a mother of one i'm a leo very out going fun\\nAnd loving love to laugh and make others smile.", - "img": "user_pixel/f-2398381-300x200.jpg", - "lower_age": 53, - "preference": "straight", - "sex": "Other", - "upper_age": 55, - "user": 319 - }, - "model": "earlydating.Profile", - "pk": 319 - }, - { - "fields": { - "age": 37, - "bio": "Shiny spandex and whisk(e)y. Proper spelling is...\\nInfluential.\\n\\nI'm from ohio.", - "img": "user_pixel/m-199906-725x483.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Male", - "upper_age": 51, - "user": 320 - }, - "model": "earlydating.Profile", - "pk": 320 - }, - { - "fields": { - "age": 37, - "bio": "I woke up at work. Somewhere between a cappuccino and a latte.\\nCaught in the days, weeks, months before... \\\"you made your decision\\nA long time ago,\\\" she'd said.\\n\\nInterested in...\\n\\nWell, interested.\\n\\nDrawn towards...\\n\\nPeople that party like i used to (working on this-ish), read like i\\nStill do, run more than i can and know the difference between\\nCapitalism, communism and socialism.\\n\\nEclectic.\\n\\nP.s. Maybe.", - "img": "user_pixel/f-1938271-1200x900.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 45, - "user": 321 - }, - "model": "earlydating.Profile", - "pk": 321 - }, - { - "fields": { - "age": 26, - "bio": "A friend recently told me i get distracted by shiny things like a\\nKid. I do enjoy a sense of awe at amazing things. I am working at\\nNot undercutting my dreams with the doldrums of reality. A balance\\nWould be nice. Hoping to meet folks, get out, do stuff, laugh, eat,\\nPlay...\\n\\nI hope to work on this essay portion of the program more later. ;)", - "img": "user_pixel/f-371517-1200x800.jpg", - "lower_age": 27, - "preference": "gay", - "sex": "Female", - "upper_age": 38, - "user": 322 - }, - "model": "earlydating.Profile", - "pk": 322 - }, - { - "fields": { - "age": 42, - "bio": "I am a bold-hearted adventurer with great taste, a fantastic sense\\nOf humor, and a whimsical sensibility.\\n\\nI think the best way to summarize myself right now is to describe a\\nMoment in my life i experienced recently. I was walking up the hill\\nTo alamo sq park from my new apartment. It's this beautiful park at\\nThe very top of a hill, surrounded by beautiful victorians, with a\\nView of much of the city. Big, windswept cypress trees grow there, and there's a shoe\\nGarden and a place for dogs to play. There was this moment, at\\nAlmost 6pm, when the sun was just thinking about setting for the\\nEvening, and the fog was meandering in over the sunset, and a\\nMission bell was ringing in the distance, where the wind caught my\\nHair and i felt like i was exactly where i should be, in that\\nMoment. That i finally understood san francisco and what it has to\\nOffer me.\\n\\nI am a sophisticated, playful, intuitive woman who knows what she\\nWants, and isn't afraid to ask for it. I'm glad i waited to think\\nAbout getting married and having kids until i got to know who i am\\nAnd what i want in a partner.\\n\\nPeople talk to me everywhere i go. I think it's because i have a\\nFriendly face and an open energy. I like it because i get to hear\\nStories and collect them for future use. I love weird people,\\nCharacters, tricksters and fools. I see coyote everywhere and he\\nReminds me to laugh at myself above all else.\\n\\nDisclaimer 1: i don't usually respond to chat messages because a\\nFew idiots have ruined it for the rest of you by being nasty. I'd\\nLike to at least have one or two email conversations first before\\nChatting, but i'd be happy to chat after that.\\n\\nDisclaimer 2: i'm a little weird around the edges. I'm kind of an\\nUrban witch, i have a cauldron and an altar, i sometimes howl at\\nThe moon, but i'm also super modern and practical. I like computers\\nAnd high heels and hiking and meteor showers. I like shoe polish\\nAnd i also like mud and i like my men that way too.\\n\\nDisclaimer 3: i'm kind of an old soul who has learned how live in\\nThe now and be more childlike. I'm super playful, but i've got some\\nDeep, dark depths where i hide a lot of wisdom. I'm looking for\\nSomeone who is evolved in those ways too, i don't want to teach\\nAnyone. I want to keep learning with someone.", - "img": "user_pixel/f-372023-1200x800.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Female", - "upper_age": 53, - "user": 323 - }, - "model": "earlydating.Profile", - "pk": 323 - }, - { - "fields": { - "age": 27, - "bio": "I've recently moved to sf. I am currently exploring the city and so\\nFar i can tell that i am in love with it. This is the most exciting\\nAnd romantic city i've seen so far and it would be sad to spend my\\nTime here alone.\\n\\nI am not sure yet what i am looking for on this site. I am open to\\nNew friendships and acquaintances and just meet a great person to\\nSpend quality time together.\\nA little about me...i am originally from eastern europe. I am a shy\\nPerson at first but if i get to know the person better i can be\\nNice and friendly. Anything else just ask. :)", - "img": "user_pixel/f-321470-1100x811.jpg", - "lower_age": 29, - "preference": "gay", - "sex": "Female", - "upper_age": 34, - "user": 324 - }, - "model": "earlydating.Profile", - "pk": 324 - }, - { - "fields": { - "age": 32, - "bio": "Hi there. If you're wondering, \\\"where in the midwest is this girl\\nFrom?\\\" the answer is: ohio. There, the suspense is over ;)\\n\\nOk self summary... My name is bethany. I was born and raised in\\nNortheast ohio, went to college in cleveland, then headed to boston\\nFor grad school. After graduating i thought, hey... Why not try\\nAnother city? so i moved to sf this past august. Honestly, i had no\\nGood excuse for moving here... I just wanted to see what the west\\nCoast was like, and i was told i couldn't go wrong with san\\nFrancisco.\\n\\nI would say i'm down to earth, adventurous, and have a great sense\\nOf humor. Seriously, i laugh a lot. If you want to think you're\\nFunny, you should hang out with me (warning: if you really aren't\\nFunny, please don't hang out with me... I can only politely fake\\nLaugh for so long, then ultimately i'll want to kill you. Sorry, i\\nDon't make the rules).", - "img": "user_pixel/m-196717-900x600.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Male", - "upper_age": 43, - "user": 325 - }, - "model": "earlydating.Profile", - "pk": 325 - }, - { - "fields": { - "age": 34, - "bio": "I'm a midwest girl, growing up in indiana primarily with a few\\nYears in missouri and michigan as well. I've been in the bay area\\nSince 1991 with a short stint in london, england. It feels like\\nHome but i do wish i wasn't so far away from my younger brother and\\nHis family (including my new nephew!), my older sister and my\\nDad.\\n\\nI like to hear people's stories - the experiences that have shaped\\nWho they are, what makes them smile or laugh or cry or reflect,\\nWhat they'd like to do next, how they enjoy the day to day simple\\nThings in life. Really...it all comes down to people's stories.\\nListening to people's stories is what i do a lot of now... I\\nRecently changed industries moving from retail to higher\\nEducation.\\n\\nI enjoy the outdoors - rain or shine, the ocean or the mountains.\\nIt doesn't matter where i've lived - the city, marin, the peninsula\\n- i've always found a home close to green space. And ideally i live\\nClose to work so i have a short commute. Right now i'm driving from\\nThe peninsula to the presidio every day - not the best use of\\nResources or time - but i hope to be living in san francisco again\\nSoon. Looking for a quirky place with \\\"character.\\\" apartment\\nBuildings just don't work for me.\\n\\nMy church community (episcopal) is important to me too - an open,\\nInclusive, questioning, wine-drinking, prayerful, fun group of\\nPeople.\\n\\nI love to dance and hike and work out to stay in shape. My hour\\nLong commute both morning and night has been messing with my\\nRoutine these last several months though. Another good reason to\\nFind a home closer to my work. I find both weeding the garden and\\nEnjoying the blooms to be meditative and gratifying.\\n\\nYou'll find that i look forward to getting dressed up 'just\\nBecause' as much as i do for a special night. Jeans, flip flops and\\nA tee shirt...yep i like those too.\\n\\nI've been lucky enough to travel a fair bit - europe, china,\\nIndonesia, philippines. My last big trip a few years back was a 45\\nDay cross country trip in a rented rv. So much fun!! most of it on\\nMy own, but i met up with a friend or two along the way and my dad\\nJoined me for a time, too. My friends tell me that makes me\\nCourageous, adventurous, a little crazy and independent.", - "img": "user_pixel/f-2176117-300x200.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 42, - "user": 326 - }, - "model": "earlydating.Profile", - "pk": 326 - }, - { - "fields": { - "age": 35, - "bio": "I am from boston, ma and i have lived in the bay area for 5 years\\nNow. If you have family, friends, a dog, or any other connection to\\nBoston, that will win you big points! i love to travel and spend\\nTime with my family and friends. I love my job and the weather out\\nHere!", - "img": "user_pixel/m-199906-725x483.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Male", - "upper_age": 45, - "user": 327 - }, - "model": "earlydating.Profile", - "pk": 327 - }, - { - "fields": { - "age": 48, - "bio": "I was born in san francisco.\\nI attend comic-con international in san diego\\nAnd wonder con in san francisco annually. (although, they just\\nAnnounced that wonder con will be in anaheim for 2012.\\nGrr...)\\nI got a wii on launch day, though nowadays i just use it for\\nKaraoke revolution glee.\\nI have a ps3, but i never play anything but castle crashers and\\nDemos.\\nI keep adding stuff to my netflix queue, but never watch\\nAnything.\\nJoss whedon is\\nPretty much my favorite person in the world.\\nI believe that life would be much better if people sang and\\nPerformed dance numbers regularly.\\nI wake up to npr's\\n\\\"morning edition\\\" (or \\\"weekend edition\\\") just about every\\nDay.\\nI seem to be the only person in san francisco who is not \\\"420\\nFriendly.\\\"\\nI switched over to reddit after digg went to crap.\\nMy myers-briggs personality type is isfj.\\n\\nMy profile is apparently 100% complete now. I want a prize.", - "img": "user_pixel/m-46889-725x483.jpg", - "lower_age": 45, - "preference": "bisexual", - "sex": "Male", - "upper_age": 54, - "user": 328 - }, - "model": "earlydating.Profile", - "pk": 328 - }, - { - "fields": { - "age": 40, - "bio": "I'm in my early twenties, about to graduate from a great\\nArchitecture school in los angeles and i'm really excited about the\\nNew chapters in my life. I get to continue working at an\\nArchitecture firm in downtown while finally relaxing from the\\nSchool scene. In my free time i enjoy practicing piano, reading\\nArticles online, working out, sketching, and picking up on\\nLanguages i'd like to learn more of. I'm a very open individual,\\nI'm both reserved at times and pretty social at other times,\\nDepends on the occasion i guess. I love to travel and explore many\\nNew things because life is too short to squander it. My favorite\\nCities are barcelona and paris, beautiful cities that possess a\\nCharisma that i find intoxicating.", - "img": "user_pixel/m-218536-363x544.jpg", - "lower_age": 39, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 329 - }, - "model": "earlydating.Profile", - "pk": 329 - }, - { - "fields": { - "age": 30, - "bio": "A little bit about me, was born in hawaii but moved to the main\\nLand, aka san francisco. I'm a bit temperamental but i do have a\\nFun and caring side that loves the outdoors and nature in general,\\nBut will speak her mind with the brutal truth when needed to.", - "img": "user_pixel/m-2358801-300x200.jpg", - "lower_age": 31, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 330 - }, - "model": "earlydating.Profile", - "pk": 330 - }, - { - "fields": { - "age": 33, - "bio": "I work a lot and my job is extremely important to me. However, i'm\\nStarting to fear that i am becoming my job. I've been working on\\nFiguring out how best to make sure that doesn't happen - be it a\\nNew interest in hiking on the weekends or simply disconnecting for\\nAn hour or so before bedtime.\\n\\nI thought i was going to be a physicist. Then i majored in biology.\\nThen i had a few years of post-college confusion, and finally went\\nTo law school. Now i practice defense side patent litigation for\\nLarge software companies. I live and work in silicon valley. All of\\nMy friends are either lawyers or engineers... More of the\\nLatter.\\n\\nI have two wonderful cats and a lot of great friends, but i'm\\nReally hoping to find something more with someone... Vague i know.", - "img": "user_pixel/m-196186-900x600.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Male", - "upper_age": 46, - "user": 331 - }, - "model": "earlydating.Profile", - "pk": 331 - }, - { - "fields": { - "age": 37, - "bio": "I'm caitlin. I like tequila, n64, and long walks on the\\nBeach.\\n\\nI'm a pretty simple person, just looking for ways to enjoy my life\\nAnd learn new things. I like people who i can be silly around/with.\\nI'm in san francisco for the next two months and i plan on making\\nThem the best time of my life (so far).\\n\\nI'm shy, and it can be hard for me to make friends, but i kind of\\nLike that; it means that the friends i do have are that much more\\nSpecial to me. I love taking care of people, particularly when they\\nDon't expect it from me. I love trying new things, but it usually\\nFalls on someone else to come up with the ideas...but when they do,\\nI'm down for just about anything! it's hard to turn down an\\nAdventure.", - "img": "user_pixel/m-46889-725x483.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Male", - "upper_age": 42, - "user": 332 - }, - "model": "earlydating.Profile", - "pk": 332 - }, - { - "fields": { - "age": 26, - "bio": "I've been described as a soft, pink fuzzy butch.\\n\\nI am charming, goofy, and sassy.\\n\\nI am very driven, loyal, and generous.", - "img": "user_pixel/m-1822763-300x200.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 32, - "user": 333 - }, - "model": "earlydating.Profile", - "pk": 333 - }, - { - "fields": { - "age": 34, - "bio": "My friends are the most important people in my life. I love to go\\nOut and have a good time.\\n\\nI am optimistic, romantic, and fun", - "img": "user_pixel/f-372023-1200x800.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 334 - }, - "model": "earlydating.Profile", - "pk": 334 - }, - { - "fields": { - "age": 37, - "bio": "Hi, looking for someone to go out with and have a drink, dinner, go\\nTo outdoor concerts, watch a movie, take a walk, hike, go camping,\\nWatch the sunset, explore and learn together,, make fun at each\\nOther's mistakes and respect our individual space etc. With a good\\nSense of humor and easy going.\\nFriends at first is always important with chemistry and connection,\\nAnd if things develop from there, great. If not then maybe we\\nBecome just friends.\\nI love to dance, so i have happy feet. I love all types of music. I\\nLike to eat healthy and exercise, running is my favorite thing to\\nDo daily if i could\\nI consider myself a spiritual person. I love to meditate, and i try\\nKeeping my heart open, young, loyal and sweet.\\nPeace and honesty are very important in my life.\\nI can be a very sensual, loving, romantic, nurturing and passionate\\nWoman with a sweet heart. At the same time , i can have a very\\nAdventure spirit,and risk taker. I can be witty too, lol a good,\\nWell connected kiss means a lot to me, so i love kissing!", - "img": "user_pixel/f-2422908-300x450.jpg", - "lower_age": 41, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 335 - }, - "model": "earlydating.Profile", - "pk": 335 - }, - { - "fields": { - "age": 25, - "bio": "I'm like a pressed flower.", - "img": "user_pixel/f-371695-1048x900.jpg", - "lower_age": 23, - "preference": "straight", - "sex": "Female", - "upper_age": 31, - "user": 336 - }, - "model": "earlydating.Profile", - "pk": 336 - }, - { - "fields": { - "age": 49, - "bio": "Here we go:\\nI'm open, kind, and accepting, a positive person overall. I'm open\\nFor random, somewhat spontaneous adventures. In fact, i enjoy them!\\nI like being busy and really getting into a flow - and a balance\\nWith work, friends, exercise, and all kinds of social events. I\\nFind it challenging at times though to maintain my sense of\\nEquilibrium, and thus crave regular \\\"alone time\\\" to recharge my\\nBatteries.\\n\\nI grew up with a lot of classical music in the house, and play\\nSeveral instruments. I'm an aspiring writer (who isn't, it seems?!)\\nI have family from the south, and sometimes pick up a slight\\nSouthern accent (usually when talking on the phone with them)... I\\nHave several endearing nicknames. I come across as shy at first and\\nSort of \\\"proper,\\\" which is funny, because once i come out of my\\nShell i'm not at all proper. Keep reading, ya'll, keep\\nReading...\\n\\nSo... Yeah! let's have a picnic, or go for a hike or drink stuff\\n(coffee/wine/beer), go hear music at the new parish, take in a\\nClassical concert or a poetry/literary event, let's talk about how\\nWe want to make the world a better place, let's inspire each other.", - "img": "user_pixel/f-371729-1200x801.jpg", - "lower_age": 48, - "preference": "straight", - "sex": "Female", - "upper_age": 55, - "user": 337 - }, - "model": "earlydating.Profile", - "pk": 337 - }, - { - "fields": { - "age": 32, - "bio": "Christopher!!! what the heck!! :) aloha i am chris... I am a libra.\\nI am pretty much all about my band and my art. I love the\\nPlanet.\\n\\nMy youtube channel:\\n\\nYoutube.com/thechrisfeijoositcom", - "img": "user_pixel/m-2325089-300x375.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Male", - "upper_age": 46, - "user": 338 - }, - "model": "earlydating.Profile", - "pk": 338 - }, - { - "fields": { - "age": 34, - "bio": "I grew up in socal and decided it was time for a change so i\\nApplied to all norcal colleges. That's what led me to sjsu. I am\\nVery outgoing and laidback. I am new to this site and am just tryin\\nTo see what else is out there. I am tired of the bar scene, too\\nMany losers out there. If there's anything you want to know, just\\nAsk :)", - "img": "user_pixel/m-1862356-300x200.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 339 - }, - "model": "earlydating.Profile", - "pk": 339 - }, - { - "fields": { - "age": 31, - "bio": "I try to live life to the fullest! i have yet to experience a dull\\nMoment.\\n\\nTravel is a big part of my life, as are the people i care about and\\nIssues that are close to my heart.\\n\\nAll in all, i stay busy to stay out of trouble :)", - "img": "user_pixel/f-2422908-300x450.jpg", - "lower_age": 34, - "preference": "gay", - "sex": "Female", - "upper_age": 42, - "user": 340 - }, - "model": "earlydating.Profile", - "pk": 340 - }, - { - "fields": { - "age": 26, - "bio": "I'm a cynical idealist: i want the world to be better. And i\\nBelieve in working to make that happen. I care a lot, in general.\\nMy favorite word is \\\"joyful.\\\"", - "img": "user_pixel/m-199910-725x483.jpg", - "lower_age": 21, - "preference": "straight", - "sex": "Male", - "upper_age": 37, - "user": 341 - }, - "model": "earlydating.Profile", - "pk": 341 - }, - { - "fields": { - "age": 26, - "bio": "Okay, let's see: i spent five years as an adjunct professor of\\nWriting and literature at an art school (i have an mfa), and for a\\nLong time i defined myself as that - that doesn't seem to totally\\nFit anymore. I've moved on from teaching being my full time gig,\\nBut i still write and will probably teach again someday. Let's see:\\nI do yoga but don't \\\"om\\\" out of context. I like going out - love\\nLive music -- but i'm not really into the fancy shoes bar scene.\\nHanging around at home with one or two friends and making dinner\\nHas way more appeal than it used to. My friends and family are\\nNuts, but important to me - my folks live in arizona, where i grew\\nUp. For awhile i was really into travel (i have a long list of\\nPlaces i've been - ecuador and italy were my favorites; i've been\\nTo a bunch of places in latin america) but have mellowed in the\\nLast few years not because i like traveling less now, just that\\nI've gotten caught up in other things. I could use some more\\nCuddling and fun nights out in my life. Or campfires. On those\\nPersonality test i'm right on the border between introvert and\\nExtrovert. I can usually change one or two answers and make it\\nFlip.\\n\\nI think it's hard to describe who you are and what you're looking\\nFor but if i had to sum it up, i'm going for more of an honest\\nConnection than it seems like a lot of okcupid seems to go for. I\\nDon't mean that in a negative way - i just mean substance over\\nStyle. Hipster points alone don't do it. I tend to connect with\\nFunny, thoughtful people.\\n\\nMy user name is dorky. I admit that. I typed it without thinking it\\nThrough.", - "img": "user_pixel/m-48143-361x544.jpg", - "lower_age": 22, - "preference": "gay", - "sex": "Male", - "upper_age": 40, - "user": 342 - }, - "model": "earlydating.Profile", - "pk": 342 - }, - { - "fields": { - "age": 49, - "bio": "I like to go to shows, i like to rage all night. I like to drink\\nAlcohol in excess, i like to sleep when im done. I like to dance,\\nAnd i like to get tattoos.\\n\\nI am indifferent, controversal, and sweet", - "img": "user_pixel/f-2439495-300x450.jpg", - "lower_age": 51, - "preference": "straight", - "sex": "Female", - "upper_age": 54, - "user": 343 - }, - "model": "earlydating.Profile", - "pk": 343 - }, - { - "fields": { - "age": 41, - "bio": "*soul sistah and damn proud of it!\\n*happy to be nappy - dreadlocked for 15 years\\n*thirty-four blessed years on this planet\\n*southern belle, yet not\\n*queer - in more ways than one\\n*certified hatha yoga teacher\\n*artist - writer/amateur photographer/occasional studio art\\n*loves other artists\\n*geek/nerd/egghead\\n*air force brat\\n*spiritual, not religious (christian spiritual core, mixed with\\nBuddhist elements, and learning about west african traditional\\nReligions - atrs)\\n*whimsical 'n weird\\n*world traveler\\n*seriously silly\\n*prudish pervert\\n*sarcastically earnest\\n*an anti-social extrovert\\n*consistently inconsistent\\n*has an insatiable curiosity about everything and everyone\\n\\nThis profile will remain a work in progress.\\n\\nI am audacious, quirky, and nerdtastic", - "img": "user_pixel/f-2267811-300x225.jpg", - "lower_age": 42, - "preference": "straight", - "sex": "Female", - "upper_age": 52, - "user": 344 - }, - "model": "earlydating.Profile", - "pk": 344 - }, - { - "fields": { - "age": 42, - "bio": "I love just about anything to do with the outdoors and/or water\\n(sports)...diving, snorkeling, swimming, (road) cycling, triathlon,\\nHiking...\\nI am in my third season with team in training's ironteam and am\\nHooked on both the cause and the training.\\nMore if you are interested...", - "img": "user_pixel/m-45622-725x544.jpg", - "lower_age": 39, - "preference": "gay", - "sex": "Male", - "upper_age": 56, - "user": 345 - }, - "model": "earlydating.Profile", - "pk": 345 - }, - { - "fields": { - "age": 35, - "bio": "To whet the appetite, (half-useful) random facts:\\n\\n#earlier this week, i cracked a combo lock.\\n#i do not own a yoga mat (unlike the rest of\\nSf)\\n#according the oktrends blog, i am an outlier: i did not lie about\\nMy height. I am, in fact, 5'0\\\". Additionally, of the 40 or 50 or so\\nWords associated with white girls, i only fit the bill for 'coffee'\\n(until i wrote these facts which now include the word\\n'yoga').\\n#did you know there's a difference between a us and an australian\\nTablespoon? and i learned this in a japanese cookbook of all\\nThings. Seven years after living in australia.\\n#i've run further than most people prefer to drive in a car, but\\nDon't let that discourage you.\\n\\nWhat's important staying close with family despite\\nLiving on opposite coasts, maintaining my health, being outside more than in,\\nLetting loose, learning, challenging what we were taught is normal,\\nHaving smaller but closer social circles/relationships with others,\\nFinding balance amidst the earthquakes, going with the flow,\\nUsually against it. I don't know what the flow is, though, and it's\\nNever been an issue. Rock my boat.\\n\\nTranslation: more time doing things, less time\\nGetting ready.\\nTraveling to new places rather than repeating old favorites.\\nInsatiable curiosity. Insatiable appetite. Exploring learning\\nOpportunities. Reading. A lot. Museums. Sometimes.\\nRunning. In beautiful places, with amazing company, uphill both\\nWays, enjoying the views not just from the top. No, i won't tell\\nYou i like hiking. Why? because i'd rather run up a rocky trail.\\nReally. Get over it. Occasionally, i trip over things and go\\nFlying. It happens. I get back up.\\nRooftop bbqs, weekend brunch, sleeping only late enough to feel\\nRested - not all day.\\n\\nWe can learn by debating with one another, but arguing and fighting\\nAre signs of the end.\\n\\nIf i like you, i'll take you out for brunch.\\nIf i really like you, i'll make you brunch.", - "img": "user_pixel/f-2363787-300x200.jpg", - "lower_age": 39, - "preference": "gay", - "sex": "Other", - "upper_age": 49, - "user": 346 - }, - "model": "earlydating.Profile", - "pk": 346 - }, - { - "fields": { - "age": 23, - "bio": "I am a kind, nurturing, self-sufficient, open-minded, open-hearted\\nDyke. I am an\\nEducator, a learner, a healer, and a seeker.... I'm a progressive, radical\\nThinking, gender bending,\\nTomboy-andro-queer.\\nI am at the same time absent minded and keenly perceptive,\\nScrutinizingly cynical yet persistently optimistic. I am a\\nHealthy, well-balanced, strong, and confident individual. I love to\\nLaugh, smile, dance, hike, play, eat.....\\nI aggressively rebel against being put into any style of box. And\\nAccordingly i try not to put others into any. Live and let live!\\n(within reason and with respect)\\n\\nI like creating elaborate dinners, drinking tea on the porch with\\nFriends, smiling\\nAt strangers in hopes that it will be contagious, driving over\\nMountains, taking good care of others and letting them take good\\nCare of me, concocting delicately balanced soups, pictures of fairies, scarves, neck\\nTies, vegetables, frequent full-body hugs, conversations about gardening, and\\nUninebriated dancing.\\n\\nGetting to know me is a grand adventure. It has been for me anyway.", - "img": "user_pixel/m-1732853-300x200.jpg", - "lower_age": 20, - "preference": "straight", - "sex": "Male", - "upper_age": 31, - "user": 347 - }, - "model": "earlydating.Profile", - "pk": 347 - }, - { - "fields": { - "age": 50, - "bio": "I'm an east coast transplant. I grew up in new hampshire, went to\\nCollege in connecticut and grad school back in nh. I love san\\nFrancisco and have loved it since the day i visited.\\n\\nMy favorite thing to do is laugh. So if you can make me laugh then\\nYou're golden.\\n\\nI am very close with my family who all live on the east coast,\\nExcept for my older brother who lives here as well. My immediate\\nFamily is huge and i miss them everyday.\\n\\nI'm looking for someone who is funny, confident and driven.", - "img": "user_pixel/f-2058609-600x900.jpg", - "lower_age": 47, - "preference": "gay", - "sex": "Female", - "upper_age": 60, - "user": 348 - }, - "model": "earlydating.Profile", - "pk": 348 - }, - { - "fields": { - "age": 34, - "bio": "I play music to beat boredom.\\nI do yoga to stay in the moment.\\nI am creative to make money.\\nI laugh to laugh.\\nI drink to look cool.\\nI listen to build friendships.\\nI build things to keep me grounded.", - "img": "user_pixel/m-52533-361x544.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Male", - "upper_age": 42, - "user": 349 - }, - "model": "earlydating.Profile", - "pk": 349 - }, - { - "fields": { - "age": 43, - "bio": "I am witty, curious, adventurous, active, intelligent, kind and\\nOpen hearted. I enjoy good, lively conversation and find laughing\\nTogether can be a good inroad to knowing someone who may be a\\nPotential partner. Honesty and vulnerability are important to me in\\nA potential relationship or friendship. I like anything to do with\\nThe arts and spend free time painting, visiting museums, listening\\nTo music.\\nAn amateur painter. I work as a nurse in sf which has had a\\nFoundational effect on my character. I read quite a lot and love\\nDiscussions of books, movies or plays and on my serious side am\\nDrawn to biological scientific essays. I'm very playful, am prone\\nTo\\nLaughter and joyfulness. I am looking for a kind, intelligent, open\\nMan to enjoy time with which could develop into a deeper, closer\\nRelationship.", - "img": "user_pixel/f-371781-740x900.jpg", - "lower_age": 47, - "preference": "straight", - "sex": "Female", - "upper_age": 51, - "user": 350 - }, - "model": "earlydating.Profile", - "pk": 350 - }, - { - "fields": { - "age": 32, - "bio": "I crave adventure, learning, experiencing, but\\nSometimes you've just got to relax. I'm independent, but love to\\nConnect and share experiences or just time with other people -- it\\nReally does seem like the key to living the good life.\\n\\nI really love to sing, and have been taking vocal lessons for a\\nNumber of years. This year i've started performing in shows\\n(musical theater, operas) and it's been a really satisfying\\nJourney. I can't wait to see what's next! i like to make big art,\\nWhen i have the time, travel, when i have the time and money, and\\nAm often found taking classes on whatever seems interesting at the\\nTime. A friend got me into swing dancing last year and i was really\\nEnjoying it, but rehearsals started getting in the way.\\n\\nI love to read (again, when i have time) all sorts of things from\\nProust to the lean startup to books on better motorcycle riding\\nTechniques. I've been told that nobody *actually* reads proust, but\\nJust has it on their shelf to impress people who come over. Oops,\\nSomehow i missed that memo! it really is gorgeous writing, and so\\nInsightful, despite its density!", - "img": "user_pixel/f-371981-1200x795.jpg", - "lower_age": 33, - "preference": "bisexual", - "sex": "Other", - "upper_age": 43, - "user": 351 - }, - "model": "earlydating.Profile", - "pk": 351 - }, - { - "fields": { - "age": 28, - "bio": "I am very easy going. I work a lot and love my job. I work in food.\\nFood is my passion. I talk about food a lot. I love the outdoors\\nAnd am always in search of a hiking buddy. I would love to learn\\nHow to play tennis. I am an excellent snowboarder and cook. I love\\nWine, bourbon, friends, family and good tv shows.", - "img": "user_pixel/m-2383498-300x200.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 37, - "user": 352 - }, - "model": "earlydating.Profile", - "pk": 352 - }, - { - "fields": { - "age": 23, - "bio": "Self-summary. I like to get coffee, ask me then.\\n\\nFrom my facebook profile:\\n\\nI like driving, seasons, blueberry beer, snowflakes, whimsy,\\nAntiques, letters, story-tellers, fairy tales, sailboats, smiles,\\nLaughing, music, stained glass, dragons, cuddling, pomegranates,\\nDancing, wishing wells, singing, norway, blushing, puppies, sea,\\nRiver beds, you, mountains, castles, thrift stores, ocean,\\nFeathers, graffiti, candy, unexpected packages, rainy mornings,\\nSoft blankets, flowery fields, endless possibilities, cold press\\nCoffee, warm hearts, cartwheels, open roads, red and white wine,\\nAnimal kingdom, dandilions,\\n\\nI am smart, lovely, and confident", - "img": "user_pixel/m-191706-900x600.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Male", - "upper_age": 29, - "user": 353 - }, - "model": "earlydating.Profile", - "pk": 353 - }, - { - "fields": { - "age": 44, - "bio": "Work in progress...", - "img": "user_pixel/f-1929452-1200x900.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Female", - "upper_age": 50, - "user": 354 - }, - "model": "earlydating.Profile", - "pk": 354 - }, - { - "fields": { - "age": 33, - "bio": "I enjoy being creative and finding new ways to do things - i like\\nTo think on my own. I enjoy being goofy and romping about, acting\\nLike a kid is good sometimes.\\n\\nThe things i am interested in tend to change month to month,\\nBecause i enjoy the people who i do it with more than the actual\\nEvents. One of the main resons i do things is to make the people\\nAround me happy.\\n\\nI am independent, i like doing things on my own. A partner who\\nNeeded a lot of attention and support would drive me crazy.\\n\\nFor work, i'm a cross between a project manager and advanced\\nEquipment operator. Right now i'm working in the latter. Throughout\\nMy life i have flip flopped back and forth, i think i get bored and\\nGo looking for more challenge. I'd like to be a process engineer\\nSome day, because i've found that i tend to find things to improve\\n/ make more efficient everywhere i work. Trust me though, if i was\\nIn such a position, within six months, i would want to be an\\nOperator again.", - "img": "user_pixel/f-371739-1200x792.jpg", - "lower_age": 36, - "preference": "straight", - "sex": "Other", - "upper_age": 40, - "user": 355 - }, - "model": "earlydating.Profile", - "pk": 355 - }, - { - "fields": { - "age": 26, - "bio": "My life is good. I'm happy, i'm healthy, i have great friends and\\nFamily, a nice home and plenty of fun, but i'm still missing that\\nOne little, or not so little i suppose, part. After a long day at\\nWork or a long day of adventure, i want somone to curl up on the\\nCouch with enjoy a glass of wine and discuss all fun we had, maybe\\nThe stresses of the day, or what kind of trouble we can get into\\nNext. A few words i'd use to describe myself are loyal,\\nIndependant, funny, affectionate, kind, generous and adventurous.\\nMy favorite way to spend a day would be boating on the lake and\\nFinish with a bar-q-que. I also love the beach. Staring out into\\nThe endless water somehow makes me feel like everything is going to\\nBe ok. Enjoy cooking, entertaining, working out, going to sporting\\nEvents, boating, skiing and pretty much anything that involves\\nBeing outside. At the end of the day though i'd much rather be\\nChillin at home with a good man than out on the town.\\nP.s. The photos are all current = ) oh yah and one more thing, i'm\\nQuite liberal and prefer to be with the same.", - "img": "user_pixel/f-2264232-300x200.jpg", - "lower_age": 24, - "preference": "straight", - "sex": "Other", - "upper_age": 40, - "user": 356 - }, - "model": "earlydating.Profile", - "pk": 356 - }, - { - "fields": { - "age": 25, - "bio": "I really like this poem that starts:\\n\\n\\\"so weasel, it has come to this;\\nTo your thighs like tall glasses of milk,\\nYour biscuit hair,\\\"\\n\\nIt is very definitely not by me, but rather by jack underwood.\\nAnyway, i though you might like it too.", - "img": "user_pixel/f-371999-595x900.jpg", - "lower_age": 23, - "preference": "gay", - "sex": "Female", - "upper_age": 30, - "user": 357 - }, - "model": "earlydating.Profile", - "pk": 357 - }, - { - "fields": { - "age": 39, - "bio": "I've always been in awe of people who when giving a toast, eulogy\\nOr writing a personal essay have the ability to perfectly capture a\\nPerson's essence. It's a hard thing to do, isn't it?\\n\\nI think life is a balance of what you want do and what you have to\\nDo.\\n\\nIf a san york or new francisco existed, i would live there.\\n\\nI believe most interests and hobbies should complement one's life\\nRather than dictate how it's lived.\\n\\nRequisite profile mention of travel: i like to travel! but i'm not\\nA passport flasher. Being fortunate enough to make one's way to\\nOther parts of the world is a combination of the right time,\\nResources and circumstances.\\n\\nOne of my parents was born and raised in europe and the other was\\nBorn and raised in the bronx. Different cultures, different\\nReligions and different personalities. Similar values. If my father\\nWere still alive my parents would have celebrated their 45th\\nWedding anniversary last year.\\n\\nAt a recent dinner with my mother and siblings, we had a good laugh\\nAbout the number of times throughout my parents' marriage that my\\nFather would forget (after being asked by my mother) to take an\\nElement for next night's dinner out of the freezer before he went\\nTo bed. He forgot about 97.3% of the time.\\n\\nThis would make a good okc question. Who was more wrong?:\\n1) my father for so often forgetting to take whatever was needed\\nOut of the freezer?\\n2) my mother for continually asking him to do so despite multiple\\nDecades of negative statistics?\\nMy response that both answers are acceptable would render this\\nQuestion irrelevant.\\n\\nI'm a responsible member of society yet don't understand people who\\nSay they don't know what they would do if they weren't at work each\\nDay. Here's what i would do: dig into the stack of books on my\\nBedside table, have lunch with long, lost friends, watch a matinee,\\nGo for a long walk, read the actual articles below the online news\\nHeadlines, attempt to prepare a meal that takes time, pretend i'm a\\nNovelist, book an airline ticket for a destination that's the deal\\nOf the day, drink a glass of wine in daylight just because i can.", - "img": "user_pixel/f-2439551-300x450.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Other", - "upper_age": 47, - "user": 358 - }, - "model": "earlydating.Profile", - "pk": 358 - }, - { - "fields": { - "age": 50, - "bio": "After two years of running back and forth between brooklyn and\\nCalifornia and several states in between. I'm checking out oakland\\nFor a while and well, i have a crush on it. I occasionally have\\nPangs of heartache for brooklyn, but i'm getting settled while\\nSoaking up all of the new stuff and opportunities around me. I'm\\nExploring every day.\\n\\nI take life one day at a time, with a lose framework to shape those\\nExperiences and help guide me. Mostly i live in the moment, and\\nHave finally started to really and truly enjoy every moment. I\\nTravel a lot, mostly within the states, and mostly between brooklyn\\nAnd a large definition of the bay are in california. Ideally that\\nTravel will expand to include some other parts of the country\\nIncluding new orleans, texas and other parts of the west\\nSoon.\\n\\nI don't identify with lifestyles or such, but to use common terms\\nWe all recognize, you should probably be cool with polyamory or\\nOpen relationships if you are interested in me or things probably\\nWon't work out. Mostly i am looking to meet new interesting people\\nAnd see if we like spending time together and see where that goes.\\nIf you want to ask me anything about that feel free. I'm looking\\nFor meaningful relationships and a partner. And generally im not\\nInterested in casual sex or just play.\\n\\nAnd by ok with it, i don't mean that you have to subscribe to those\\nSame ideas, just that you'd be open to the fact that i might.", - "img": "user_pixel/f-371887-1200x800.jpg", - "lower_age": 54, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 359 - }, - "model": "earlydating.Profile", - "pk": 359 - }, - { - "fields": { - "age": 48, - "bio": "I believe that the pursuit of pleasure is a reasonable goal and\\nThat being responsible in that pursuit is imperative. I believe\\nThat life is very good and can only get better if you perceive it\\nGood to start. Good communication is the most important.\\nI love my dog. I love teaching and practicing yoga. Honesty is very\\nImportant to me.", - "img": "user_pixel/m-2325089-300x375.jpg", - "lower_age": 43, - "preference": "bisexual", - "sex": "Male", - "upper_age": 59, - "user": 360 - }, - "model": "earlydating.Profile", - "pk": 360 - }, - { - "fields": { - "age": 35, - "bio": "I like films. I take\\nPride in my movie collection. My favorite film is romeo and juliet (any\\nVersion), and i could pass away months at a time simply relaxing\\nAnd watching films, slapstick or tear-jurkers. I love dogs and cats surprisingly, i don't understand\\nWhy people either go for one or the other.\\n\\nI am introspective, loyal, and wise", - "img": "user_pixel/f-1757570-797x900.jpg", - "lower_age": 38, - "preference": "bisexual", - "sex": "Other", - "upper_age": 41, - "user": 361 - }, - "model": "earlydating.Profile", - "pk": 361 - }, - { - "fields": { - "age": 43, - "bio": "I am a journalist who is interested in everything and nothing at\\nThe same time. Perhaps it is more accurate to say that as a human\\nBeing i am interested in nothing, but as a journalist i need to\\nShow interest in everything so as to be able to effectively\\nResearch the topics i'm writing about. This is probably why i like\\nBeing a journalist, because if i wasn't a journalist i would be\\nNothing. Without journalism, i would have no purpose, no reason to\\nSpeak to anyone, no reason to be curious. So i guess i will\\nContinue being a journalist until i decide to give up, which will\\nProbably be never!\\n\\nI don't drink, smoke, or take drugs that haven't been prescribed to\\nMe by a medical professional. I have tried drinking! it was awful.\\nI have been told that alcohol is an acquired taste. Well, if this\\nThing is expensive and tastes bad and does terrible things to your\\nBody, why would you want to acquire a taste for it? we're not\\nTalking about brussel sprouts here, people.\\n\\nI try to lead a very healthy lifestyle because why the hell not?\\nHere i am, existing, 23-years-old with no debilitating medical\\nCondition ... Why wouldn't i want to be the best person i could\\nPossibly be? i don't eat carbs (except for one day a week to shock\\nMy metabolism) and have no tolerance for soft drinks (the bubbles\\nHurt my tongue). I really enjoy green tea and garlic. Lentils are\\nMy favourite legume.\\n\\nI find most things boring. I don't enjoy talking about music or\\nFilms or videogames or anything that doesn't relate to journalism.\\nI am incredibly single-minded (but not narrow-minded). I enjoy\\nPainting. I used to enjoy playing the violin until i switched to a\\nNew one that doesn't fine tune the strings, and now tuning the\\nInstrument has become incredibly tedious.", - "img": "user_pixel/m-2325089-300x375.jpg", - "lower_age": 43, - "preference": "bisexual", - "sex": "Male", - "upper_age": 49, - "user": 362 - }, - "model": "earlydating.Profile", - "pk": 362 - }, - { - "fields": { - "age": 43, - "bio": "I am a pretty laid back person, kind of artsy and romantic, also\\nVery honest. I would say that i'm a combination of jaded and\\nHopeful, peppered with a somewhat dark sense of humor. I do tend to\\nBe pretty positive, in general, and try to make the best out of any\\nGiven situation. Living in the moment is a work in progress, but\\nIt's something i strive to do. I'm the person that people lean on\\nWhen they need help, but am also fiercely independent and somewhat\\nOff-beat in a fun, bay area sort of way.", - "img": "user_pixel/f-371977-1200x795.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 363 - }, - "model": "earlydating.Profile", - "pk": 363 - }, - { - "fields": { - "age": 38, - "bio": "One who has traveled the world, and looking for my match. Love to\\nBe outdoors, feeling the sunshine and water on my skin. Loves\\nNights out on the town in heels but nature feeds my soul.\\n\\nLets be realistic - - - -interested in communicating with men in my\\nAge group only, between 32 and 46, with photo. Not here for just a\\nHook up - if you are.......then move on.", - "img": "user_pixel/f-371623-1200x800.jpg", - "lower_age": 40, - "preference": "straight", - "sex": "Female", - "upper_age": 46, - "user": 364 - }, - "model": "earlydating.Profile", - "pk": 364 - }, - { - "fields": { - "age": 34, - "bio": "Just starting to fill in the details. I'll summarize myself\\nLater.\\n\\nI am adventerous, creative, and light hearted", - "img": "user_pixel/m-1938445-300x200.jpg", - "lower_age": 34, - "preference": "bisexual", - "sex": "Male", - "upper_age": 39, - "user": 365 - }, - "model": "earlydating.Profile", - "pk": 365 - }, - { - "fields": { - "age": 25, - "bio": "I like to think of myself as pretty easy going..im your basic jeans\\nAnd a t-shirt gal with slaps or vans. I'm always up for an\\nAdventure and love being outside on a nice day. I can also be happy\\nTo chill inside and hang. Life's too short to be too serious! let's\\nHave some fun!", - "img": "user_pixel/f-1732741-1200x801.jpg", - "lower_age": 27, - "preference": "gay", - "sex": "Female", - "upper_age": 38, - "user": 366 - }, - "model": "earlydating.Profile", - "pk": 366 - }, - { - "fields": { - "age": 36, - "bio": "It's trite, i know, but my friends make me happy. I find people\\nFascinating and spend a lot of time immersing myself in wherever i\\nHappen to be. I find it hard to be completely serious. I go through\\nPhases with punctuation marks - there are days when i love\\nExclamation points and others when i don't. Sometimes, i sport\\nTemporary tattoos.", - "img": "user_pixel/m-246009-900x600.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Male", - "upper_age": 50, - "user": 367 - }, - "model": "earlydating.Profile", - "pk": 367 - }, - { - "fields": { - "age": 27, - "bio": "I'm a girl.\\nIn san francisco.\\nWhat do i put in this thing?\\nIn the mornings, i drink coffee in my backyard, perched on a\\nSlightly decrepit patio chair, looking at my garden. I need to be\\nBetter about weeding it, but i take pride in the fact that i nursed\\nOur avocado tree back to life.\\nI like to drink my coffee out of bowls: it makes me feel vaguely\\nEuropean and classy.\\nIn the afternoon, when i'm not in class or at work or wiling away\\nTime with friends, or soaking up what little sun there is in\\nDolores park, i'm writing, reading, life drawing or dancing around\\nMy bedroom in oversized men's cashmere sweaters or vintage\\nSlips.\\nI also like concerts. And museums. And random adventures (i once\\nWent with a friend to a cat show, just because we had nothing\\nBetter to do).\\nMy roommates and i like to cook dinner together or grab drinks from\\nOne of the many bars in the mission (down the street from where we\\nLive). Lately, we're all broke and live off lentils or roasted root\\nVegetables from our csa but who are we kidding, lentils and veggies\\nAre amazing! one of my roommates says i'm a phenomenal cook, but\\nThat's mostly based on the scrambled eggs i made for breakfast when\\nI first moved in.", - "img": "user_pixel/f-371585-1200x674.jpg", - "lower_age": 27, - "preference": "straight", - "sex": "Female", - "upper_age": 36, - "user": 368 - }, - "model": "earlydating.Profile", - "pk": 368 - }, - { - "fields": { - "age": 31, - "bio": "I've lived in different places throughout my life due to my father\\nServing in the military. I lived half of my life in the pacific and\\nThe other half statesides. As you can imagine it's hard for me to\\nStay in one place. I love to venture out to new places and is\\nAlways up for meeting new people. I am a creative and i'm far from\\nDull. Some may call me goofy but i enjoy a good laugh.", - "img": "user_pixel/f-372027-1200x795.jpg", - "lower_age": 34, - "preference": "straight", - "sex": "Female", - "upper_age": 39, - "user": 369 - }, - "model": "earlydating.Profile", - "pk": 369 - }, - { - "fields": { - "age": 43, - "bio": "I am a loving, kind, and affectionate person who loves god, people,\\nPlaces, and \\\"good\\\" things, mostly good friendships and good\\nRelationships. I am very positive and focus on the joys of life,\\nYet i am extremely resilient when life gets tough. I work as a\\nSpecial educator with 1st-3rd graders. I have two sons, 13 yo and\\n11 yo. And two cats. I am young at heart, love my church family, my\\nFamily, singing, hiking, children of all ages. I love all kinds of\\nMusic; especially christian, rock and roll.\\n", - "img": "user_pixel/f-371695-1048x900.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Female", - "upper_age": 57, - "user": 370 - }, - "model": "earlydating.Profile", - "pk": 370 - }, - { - "fields": { - "age": 36, - "bio": "I'm a fun-loving midwest girl trying to enjoy life in the east bay.\\nI moved out here in 2007 for work. After spending the last couple\\nYears concentrating on work and accomplishing all my work goals,\\nI'm now looking to meet new people and have some fun.", - "img": "user_pixel/f-2383504-300x200.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 48, - "user": 371 - }, - "model": "earlydating.Profile", - "pk": 371 - }, - { - "fields": { - "age": 48, - "bio": "I am an intelligent girl with a somewhat dark and oddly british\\nSense of humor. I am happily nerdy about history, mythology and\\nCostuming. I don't like partying, drinking, crowds and loud noises.\\nI do like movie nights, board games, crafting, joss whedon shows,\\nDoctor who, witty people, making tasteless jokes and cuddles. I'm\\nLooking for other nerdy, queer or queer-friendly girls who like\\nQuiet nights, hanging out and laughing until we fall off the\\nCouch.\\n\\nAlso, the personality thing is hilariously wrong about a lot of\\nThings. More pure? less romantic? i laugh at you, personality\\nAnalyzing program. Laugh, i say!\\n\\nAlso also, i have put my sexual orientation as gay on here, because\\nOut of the three (wtf? like there's only three sexual orientations)\\nChoices on here, it's the closest. How i actually am goes like\\nThis:\\nI like or fall in love with individuals. The individuals that i\\nLike or fall in love with have girl (usually very femme) brain. If\\nYou identify as masculine, or male, or frankly even butch, it is\\nHighly unlikely that romance would happen between us. But that\\nDoesn't mean i don't want to be your friend!\\n\\nDisclaimer: i am not looking for forever. I've already found my\\nForever (maddhatter1250). This isn't to say\\nThat i'm not open to another one, or that i won't fall in love with\\nYou, or that i don't want a relationship. It's more that you have\\nTo be ok with sharing me with another person (or joining us, if you\\nWant. That would be awesome). If you're looking for someone to\\nSettle down with right this minute, i am not your girl. I will,\\nHowever, happily be your friend.\\n\\nOn the other side of the spectrum, i don't do casual sex. I have to\\nKnow and care about the people i sleep with.", - "img": "user_pixel/m-1938307-300x225.jpg", - "lower_age": 52, - "preference": "straight", - "sex": "Male", - "upper_age": 54, - "user": 372 - }, - "model": "earlydating.Profile", - "pk": 372 - }, - { - "fields": { - "age": 30, - "bio": "Whoa! writing these things is rough, but i know we have to start\\nSomewhere... So, i fancy myself a funny person, but i often come\\nOff super serious. I think that's just because i like to cut\\nThrough a lot of bullshit pretty quickly and get to the good stuff.\\nI would much rather have good conversations with strangers at dive\\nBars than make small talk. That doesn't mean that every\\nConversation has to be extremely deep, but let's at least talk\\nPassionately, yes?\\n\\nI really appreciate when someone is good at making me laugh and i\\nEspecially love bad jokes. I will always opt to sit in the sun over\\nThe shade. Walking is my favorite way to get around, then bike,\\nThen car (i actually just really dislike driving, it makes me\\nNervous, but i'm an excellent passenger!) i've never really played\\nTennis, but i've always thought (and still contend) that i'd be\\nPretty good at it. A few years ago, i dropped out of grad school to\\nGo to beauty school - best decision i've ever made. I still feel\\nFairly new to the bay area (but now i've officially been here for\\nTwo years!), so i love any excuse to go exploring. Drinks of choice\\nInclude, whiskey, beers, fernet, gin, red wine...but my body\\nRejects rum (one very important thing i learned in college.) i also\\nThink that sharing food is an excellent bonding experience and if\\nWe ever happen to be at a restaurant together, i will probably want\\nTo taste what you're having.\\n\\nLately, i've been really into expanding my network of friends and\\nGood people to be around. I think connecting with people is\\nSomething that brings a lot of energy and positivity into my life.\\nBasically, i am looking to meet new folks who feel the same\\nWay.\\n\\nAlso, contrary to what okc might tell us, i believe i have\\nExcellent manners.", - "img": "user_pixel/f-377791-600x900.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Female", - "upper_age": 37, - "user": 373 - }, - "model": "earlydating.Profile", - "pk": 373 - }, - { - "fields": { - "age": 49, - "bio": "I'm a 31 year old woman looking to meet a guy to click with. I'm\\nCurrently going to school and volunteer on the side. I enjoy\\nTraveling when i can, going to the gym, and spending time with\\nFriends and family.", - "img": "user_pixel/m-187210-725x483.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Male", - "upper_age": 58, - "user": 374 - }, - "model": "earlydating.Profile", - "pk": 374 - }, - { - "fields": { - "age": 28, - "bio": "Fun-loving, thrill-seeking, risk-taker. Curiosity-driven nature,\\nOpen-minded, cheerful, & hopeless optimist. I can be overly\\nPlayful; immature and silly /or overly sensitive to others feeling.\\nMy worst and best trait is my honesty. I'm a good balance of\\nIntrovert & extrovert, i care if people feel comfortable around\\nMe.\\nI'm genuine to people who are real..even when i give off a vibe\\nThat i'm a little distant but once you get to know me, i will have\\nYou think you know me for years. I tend not to be the\\nWear-my-heart-on-my-sleeve type of gal.. So some guesswork is\\nRequire.\\nEverybody who knew me would agree that i'm super friendly and very\\nApproachable. I like the idea of trying new things and meeting new\\nFriends, c'mon life is too short to not live to your fullest! i am\\nA free-spirit enjoying life one day at a time. I have a mild\\nTemperament while being spontaneous, random and impulsive.", - "img": "user_pixel/m-45820-573x544.jpg", - "lower_age": 30, - "preference": "bisexual", - "sex": "Male", - "upper_age": 35, - "user": 375 - }, - "model": "earlydating.Profile", - "pk": 375 - }, - { - "fields": { - "age": 32, - "bio": "The things most important to me are family, friends and living life\\nHaving as much fun and as many laughs as i can. I love travel and\\nNew adventures as well as a night out at your favorite neighborhood\\nBar with good friends! i spent a few years hopping hemispheres for\\n\\\"work\\\" and am enjoying having my feet planted in one place for a\\nLittle while. I am lucky enough to spend all day in wine country\\nWorking in a job that i love and coming home to sf where everyday\\nBrings something random and fun.\\n\\nI have a lot of fun exploring all of sf's neighborhoods with\\nFriends whether walking, running or sitting outside at a bar/cafe.\\nIt's awesome living near so many hiking options! i just got into\\nPower yoga with some friends and am trying to find a good place to\\nPlay tennis. Tennis anyone?\\n\\nI am fun, sassy, and driven", - "img": "user_pixel/m-227699-900x600.jpg", - "lower_age": 29, - "preference": "straight", - "sex": "Male", - "upper_age": 38, - "user": 376 - }, - "model": "earlydating.Profile", - "pk": 376 - }, - { - "fields": { - "age": 36, - "bio": "If i could go anywhere right now it would be brazil. I'm a fan of\\nBreakfast for dinner (eggs, salsa, wine....yum!) and a proponent of\\nNon sequiturs. I'm not an artist, but appreciating art is an\\nIntegral part of my life. Maybe like you, i wanted to shake things\\nUp a bit, so thought i'd join okc to meet people i otherwise\\nWouldn't have the chance to! i love walking through downtown as the\\nMorning light bounces off and between the buildings :)", - "img": "user_pixel/f-2363787-300x200.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Female", - "upper_age": 49, - "user": 377 - }, - "model": "earlydating.Profile", - "pk": 377 - }, - { - "fields": { - "age": 40, - "bio": "I grew up in detroit but have been living in the bay area 3 years.\\nI'm a little rough around the edges but a have a sweet spirit. I\\nSpend as much time as i can time as i can in the sunshine. I ride\\nMy bike everywhere. I enjoy adventures, camping and skill sharing.\\nI am easily seduced by the paranormal and anything having to do\\nWith outer space. The witchy-ier and weirder the better. I love\\nPlaying and learning new games. I have an gentleman cat companion.\\nThe women in my life are super important to as is feminism in all\\nAspects. I enjoy the creative comforts.", - "img": "user_pixel/m-2436019-300x200.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Male", - "upper_age": 48, - "user": 378 - }, - "model": "earlydating.Profile", - "pk": 378 - }, - { - "fields": { - "age": 27, - "bio": "Loving\\nCaring\\nResponsible\\nNon-judgemental\\nLoyal\\nFlirty (with my partner only)\\nTransparent\\nFunny\\nEthical\\nSupportive\\nTrustworthy\\nStable\\nReliable\\nIntelligent\\nProactive\\nOrganized\\nFair & reasonable\\nEasy going\\nSilly\\nSophisticated\\nClassy\\nMature\\nCandid\\nHonest\\nUnique\\nPrompt\\nTrendsetter\\nArticulate\\nFun\\nPassionate\\nDriven\\nVigilant\\nConservative\\nWarm hearted\\nInquisitive\\nChivalrous\\nObservant\\nFair minded\\nBroad minded\\nCalm\\nConsiderate\\nAttentive\\nUrbane\\nDiverse\\nAdaptable\\nCommunicative\\nGrateful\\nDiligent\\nAdventurous\\nIntelligent\\nGoofy\\nUnderstanding\\nPatient\\nEfficient\\nSelf-improvement oriented\\nLifelong learner\\nIntuitive\\nPrudent\\nRespectful\\nLight hearted\\nFunny\\nGenuine\\nSwitch", - "img": "user_pixel/m-260895-900x675.jpg", - "lower_age": 23, - "preference": "straight", - "sex": "Male", - "upper_age": 35, - "user": 379 - }, - "model": "earlydating.Profile", - "pk": 379 - }, - { - "fields": { - "age": 23, - "bio": "My name is anna. I am currently working as a project manager. Work\\nIs keeping me much busier than i would like sometimes..overall, i\\nAm a very easy going person. I enjoy thinking, contemplating life\\nAnd interesting conversations. I am always more than happy to try\\nNew things - keeps life interesting i think.\\n\\nOriginally i am russian, i moved here when i was 12 years old. When\\nI was very young my parents decided to give me up to a dance\\nSchool, so i have been dancing for most of my life, and it has\\nNever really escaped me - i still love it. Currently infatuated\\nWith latin dancing. I wish i had more time to travel and explore\\nThe world. I always wanted to visit other places and it seems that\\nI can never find time for it.", - "img": "user_pixel/m-47951-361x544.jpg", - "lower_age": 22, - "preference": "straight", - "sex": "Male", - "upper_age": 36, - "user": 380 - }, - "model": "earlydating.Profile", - "pk": 380 - }, - { - "fields": { - "age": 47, - "bio": "I am a good natured person, to my core. I am alllll about honesty\\nAnd respect and treating people well on this earth here and now. I\\nAm goofy/a bit weird but most people find me charming. I definitely\\nDon't take myself too seriously and sometimes i want to shake the\\nNegative energy out of a person. I am artistic and want to make\\nThings that are, beyond anything, beautiful. Well, that and thought\\nProvoking. I am always a good and loyal friend to my homies, it's a\\nBig part of my identity. I am open-minded and make my own paths in\\nThis life. I'm looking for my next adventure. I really want to go\\nHang gliding or something like this (already been sky-diving\\nTwice). I take joy in the little things and hope i never lose my\\nChild-like inclinations to climb a tree etc. I thoroughly enjoy\\nGetting dirty and working hard but i am also really good at kicking\\nIt.\\n\\nI am honest, loopy, and chill", - "img": "user_pixel/f-371907-1200x800.jpg", - "lower_age": 45, - "preference": "straight", - "sex": "Other", - "upper_age": 53, - "user": 381 - }, - "model": "earlydating.Profile", - "pk": 381 - }, - { - "fields": { - "age": 48, - "bio": "I'm from caracas, venezuela. Now i'm in a cultural interchange\\nHere. I like to meet new people, different cultures and i'm really\\nOpen mind for new experiences.\\nI'm a sincerely, spontaneous and passionate person.\\nI was studying philosophy in my country and i love it, but i needed\\nTo breath and broke my routine and i change my life completely for\\nA little bit. I hate routines!!!\\n\\nHome+sofa+cuddling watching movies when is raining it will be\\nGreat.\\nI think is very cute take a walk under the rain too.\\nThe communication with other person about your feelings and be\\nHonest is the best way for a good relationship.\\nI always give the 100% and i expect the same.\\nI'm very laid-back.\\nI'm looking for someone who knows to enjoy the life with music,\\nDance, art, good conversations pleaseeeee and who can feel passion\\n(of course, good sex is important too). I always ready to learn new\\nThings for that i love when a person can teach me something\\nNew.\\nI spend my free time be volunteer in the spca. I totally enjoy the\\nOutdoors!!! hiking, camping, going to the gym, doing yoga,\\nSwimming, rollerblading, reading, listening music, exploring new\\nPlaces, travelling, looking for live music, doing collages,\\nSleeping and looking for new people here.", - "img": "user_pixel/f-2264232-300x200.jpg", - "lower_age": 43, - "preference": "straight", - "sex": "Other", - "upper_age": 59, - "user": 382 - }, - "model": "earlydating.Profile", - "pk": 382 - }, - { - "fields": { - "age": 22, - "bio": "I was born and raise in san francisco,moved to marin when i was\\nSixteen,been here ever sence.i am very honest,loyal in all areas.i\\nEnjoy laughing and having a great time.i have very broad shoulders\\nAnd very understanding ,just about any thing.i love cats,dogs and\\nChildern of all ages.hopfully i will meet someone to do things with\\nAnd see where it taks us.", - "img": "user_pixel/f-371853-600x900.jpg", - "lower_age": 26, - "preference": "straight", - "sex": "Female", - "upper_age": 34, - "user": 383 - }, - "model": "earlydating.Profile", - "pk": 383 - }, - { - "fields": { - "age": 33, - "bio": "I paticularly enjoy reading, dancing and i am learning drumming\\nToo. At this point in my life i would like to be more helpful to\\nOthers and want to give back ....my life has been lucky, loving and\\nBlessed.", - "img": "user_pixel/m-209311-725x483.jpg", - "lower_age": 30, - "preference": "straight", - "sex": "Male", - "upper_age": 39, - "user": 384 - }, - "model": "earlydating.Profile", - "pk": 384 - }, - { - "fields": { - "age": 24, - "bio": "Hi there! i am a fun, easygoing single lady in san francisco.", - "img": "user_pixel/f-371957-1200x900.jpg", - "lower_age": 25, - "preference": "straight", - "sex": "Female", - "upper_age": 31, - "user": 385 - }, - "model": "earlydating.Profile", - "pk": 385 - }, - { - "fields": { - "age": 36, - "bio": "Hello. I'm an artsy/writery, but business oriented person. Very\\nNice, but not a pushover. I've recently become an official pin-up\\nGirl. Moved from nyc late in 2010 and love the sense of spiritual\\nEvolution i continue to feel in california. I like house music and\\nTrance, so the bay area has my music too.\\nI am interested in meeting/dating/being with one person only. I'm\\nLooking to meet someone like myself; someone who is evolved and\\nSuccessful in their life and wants to date/be with one person,\\nSomeone who has no desire to play the field, not because of\\nPrudeness, but because you are busy, have already done it and want\\nThe real deal. You know what you want.\\nI'm hoping you'll protect me (not that i necessarily need a\\nBodyguard!)... And a little artsy or deep and romantic.\\nLooking forward to meeting you!", - "img": "user_pixel/f-371957-1200x900.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Female", - "upper_age": 45, - "user": 386 - }, - "model": "earlydating.Profile", - "pk": 386 - }, - { - "fields": { - "age": 39, - "bio": "I'm a simple easy going, sincere, romantic, and funny (sometimes).\\nI enjoy foreign, independent movies and some american mi'm a simple\\nEasy going, sincere, romantic, and funny (sometimes). I enjoy\\nForeign, independent movies and some american movies, i enjoy many\\nTypes of music so going to symphonies and concert are great. I also\\nEnjoy live acting like theater play or operas.i have few good\\nFriends that i love to hang out with.i'm looking for a guy that\\nKnows what he wants or at least thinks he knows. He should be good\\nAt heart, fun, charming, polite, honest, sincere, down-to-earth or\\nSomewhat have some of these traits. Somebody who likes to have\\nConversations and know when to speak and when to listen to. It\\nWould be nice if he is also romantic and have a sense of humor.", - "img": "user_pixel/m-261962-900x593.jpg", - "lower_age": 34, - "preference": "bisexual", - "sex": "Male", - "upper_age": 46, - "user": 387 - }, - "model": "earlydating.Profile", - "pk": 387 - }, - { - "fields": { - "age": 30, - "bio": "As an update, i'm currently travelling in europe. If you happen to\\nDecide to message me and i don't respond, give it time since i am\\nKeeping myself very busy at the moment.\\n**************************************************\\nI'm pretty outgoing, however most of the time i end up studying and\\nHanging out with friends. Other than that, i'm a huge fan of\\nTraveling, even if it's relatively local, and hiking. As for\\nPlanning my goals, i think in terms of the galaxy is the limit.\\nWith lots of work and a little bit of luck, i can become anything\\nAnd travel wherever around the world. At least, that's what i would\\nLike; may be a bit different in practice.\\n\\nThis coming fall, i'll be in tucson attending the university of\\nArizona. If anyone is in the area, i would love to start talking to\\nPeople from there and hopefully make some new friends.\\n\\nIf we start having a conversation about any physics or astronomy\\nRelated topics, i tend to keep talking and have some difficulty\\nStopping. This is probably due to the fact that i'm a physics bryn\\nMawr graduate. Despite this fact, i am a very good listener most of\\nThe time.\\n\\nOne fun fact about myself: i tend to begin random conversation\\nTopics at any point in time. And just go from topic to topic, which\\nMay and may not have any related components. As any student would,\\nI tend to ask a lot of questions even outside of the classroom...\\nBut that's just me.", - "img": "user_pixel/f-1776084-1200x800.jpg", - "lower_age": 32, - "preference": "straight", - "sex": "Female", - "upper_age": 40, - "user": 388 - }, - "model": "earlydating.Profile", - "pk": 388 - }, - { - "fields": { - "age": 36, - "bio": "Lets see... I'm pretty happy day to day and would love to meet\\nSomeone to share that with. What i will give you is someone you can\\nTrust, who is honest, loves to laugh and likes the simple things in\\nLife. I am impressed by the person, who you are, how you treat\\nOthers, and most of all how you treat me. Things i like to do... I\\nLove live music of almost any kind but old school r&b and jazz\\nAre my favorites. I like motorcycles and have all i need to ride\\nWith you so lets go! i'm the type that will try most anything, so\\nAdventure is a good thing. If any of this sounds interesting to you\\nI'd love to hear from you.", - "img": "user_pixel/m-196717-900x600.jpg", - "lower_age": 37, - "preference": "straight", - "sex": "Male", - "upper_age": 47, - "user": 389 - }, - "model": "earlydating.Profile", - "pk": 389 - }, - { - "fields": { - "age": 47, - "bio": "Sensitive and silly.\\nGraceful and generous.\\nProgressive and patient.\\nCompassionate and curious.\\nVagabond ready to plant roots.", - "img": "user_pixel/f-371513-1082x900.jpg", - "lower_age": 48, - "preference": "gay", - "sex": "Female", - "upper_age": 52, - "user": 390 - }, - "model": "earlydating.Profile", - "pk": 390 - }, - { - "fields": { - "age": 30, - "bio": "Im from iceland but a frequent visitor to the other side of the\\nPond.. A relaxed and easy going person. I love meeting new people\\nAnd learning about their ways.\\n\\nI quit school 4 years ago, i wanted to learn photography and\\nDeveloping my own pictures but first i had to learn how to draw,\\nWhich im really not good at, so i tried graphic design which wasnt\\nReally my thing either, got sick of school, went to a direct action\\nCamp in the mountains, fell in love with a foreigner and went\\nTravelling in europe, and thats what i did the last 3 years, i come\\nBack to iceland in the summer, since its so short and beautiful i\\nFeel like i cannot miss it, being away from iceland taught me how\\nTo appreciate where i am from and the beauty of this island.\\nLast year i spent travelling in the states, and unexpectedly fell\\nFor them.\\n\\nI think its worth mentioning that i dont identify as a bisexual but\\nI would rather say queer and i like polyamory.", - "img": "user_pixel/f-297029-1100x731.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Female", - "upper_age": 42, - "user": 391 - }, - "model": "earlydating.Profile", - "pk": 391 - }, - { - "fields": { - "age": 37, - "bio": "In 1959 i was a tin can on the side of a dust choked colorado\\nRoad.\\nNow i am a rodeo clown.\\nI'm going to school to be a clocktower repairwoman.\\nMy calling, however, is ostrich racing.", - "img": "user_pixel/f-1742318-1200x747.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Other", - "upper_age": 45, - "user": 392 - }, - "model": "earlydating.Profile", - "pk": 392 - }, - { - "fields": { - "age": 38, - "bio": "I enjoy keeping busy whether it's with school or friends, which in\\nA few words, sums up my kind of lifestyle; sometimes, i don't\\nReally know what to do with myself when i actually have time. I'm\\nSuper silly at times and easily feed off of other people's energy.\\nAt the moment, my closest friends are spread out around in\\nDifferent cities, mostly for school, and a few for work. So let's\\nSee where this profile takes off to...", - "img": "user_pixel/f-2439551-300x450.jpg", - "lower_age": 36, - "preference": "bisexual", - "sex": "Other", - "upper_age": 43, - "user": 393 - }, - "model": "earlydating.Profile", - "pk": 393 - }, - { - "fields": { - "age": 36, - "bio": "I've reached the point in my life where i have my dream job, and a\\nGreat social life with close friends. It feels good. I'm not\\nLooking to change my life, i just want to improve it to the tune of\\nOne woman. Commitment-wise, let's go slow and see where things\\nLead. I like to build a strong relationship over time.\\n\\nOn sunday afternoons i like to get out of the house and go for a\\nWalk, hike or exploring a beautiful setting outdoors. I play golf\\nFor fun, and work out at the gym to stay in shape and in good\\nHealth. Being in a beautiful quiet nature area brings to me peace\\nOf mind and serenity. So, i enjoy camping and kayaking.\\n\\nI enjoy a gourmet meal with fine wine, candlelight and a romantic\\nSetting. I prefer to drink in moderation. And, when it comes to\\nMaking love...i prefer to have all my senses...so i want to be\\nSober.", - "img": "user_pixel/f-371907-1200x800.jpg", - "lower_age": 33, - "preference": "straight", - "sex": "Other", - "upper_age": 42, - "user": 394 - }, - "model": "earlydating.Profile", - "pk": 394 - }, - { - "fields": { - "age": 42, - "bio": "I'm the girl next door with a hippie wild child just waiting to\\nEscape the confines of my parents' house. It's been a long time\\nSince i lived in my parents' house, but the wild child is still\\nRattling in her cage. I like to do things that make me feel alive,\\nAnd most of the time that means new experiences. If you have an\\nIdea for something weird and out of the ordinary to do.....try\\nMe.\\n\\nI'm polyamorous in a committed open relationship with my best\\nFriend and boyfriend, dan. I also have two children (8 and 10) who\\nI spend about half my time with. I am looking to meet new people\\nFor flirty, fun relationships. I am not looking for another\\nCommitted relationship or more children.\\n\\nIt is important to me that anyone i date respect my relationship\\nWith dan and my relationships with my children. To me this means\\nRespecting the time, attention and boundaries around those\\nRelationships.", - "img": "user_pixel/m-2358791-300x200.jpg", - "lower_age": 46, - "preference": "straight", - "sex": "Male", - "upper_age": 55, - "user": 395 - }, - "model": "earlydating.Profile", - "pk": 395 - }, - { - "fields": { - "age": 43, - "bio": "What do i luv. . .oh how i luv dancing. . .dancing with fire!. . .oh la\\nLa!. . .music festivals. . .anything that has to do with water. .\\n.doing anything that makes my heart skip a beat, a beat. Ha! ha! .\\n. .traveling the world with only a backpack. . .i can't sit\\nStill.\\n\\nI would love to meet a man that had the energy to keep up with me,\\nThe ability to get shit done, fix things, and not be intimidated by\\nA woman that can do both. I heart tools.\\n\\nI am clean. I actually like cleaning. I like clean men. So if you\\nLike throwing your dirty clothes on the floor or can't remember\\nWhen you last cleaned your sheets, than i am not interested. I\\nHeart my duster buster.", - "img": "user_pixel/m-45820-573x544.jpg", - "lower_age": 47, - "preference": "straight", - "sex": "Male", - "upper_age": 51, - "user": 396 - }, - "model": "earlydating.Profile", - "pk": 396 - }, - { - "fields": { - "age": 49, - "bio": "I'm here for the quizzes.", - "img": "user_pixel/m-48143-361x544.jpg", - "lower_age": 50, - "preference": "gay", - "sex": "Male", - "upper_age": 58, - "user": 397 - }, - "model": "earlydating.Profile", - "pk": 397 - }, - { - "fields": { - "age": 49, - "bio": "New question - can someone please tell me why so many men own\\nFreakin' cats on here? cats are just dumb*. Why do men get so upset\\nWhen i ask about the age of said feline and suggest euthanasia? or\\nWhen i talk about clubbing baby seals? when i get a good funny\\nAnswer i will post it for the rest of you to see.\\n\\n*ok cats aren't that dumb, i'm just allergic and bummed i can't pet\\nOr be around cats for too long. Allergies are dumb. Yeah!\\n-----\\n\\nPart human, part kale, and part well-kerned font. - that's from the\\nDays when it was mandatory and i still like it.\\n\\nWhile 'working on myself' is a serious part of my life, my nature\\nTends toward being goofy, silly, funny, with a side of sexy, and a\\nSharper-than-the edge of a recently opened tin can- wit. Wit is\\nGreat but what tickles my fancy more than sharp wit is great\\nAdventure. Adventures, especially of the spontaneous and surprising\\nVariety, are incredibly satisfying. They are especially so if\\nInvolving a road trip, hot springs, hiking, treasure hunting for\\nThe little jewels of nature, and if i'm in a relationship then it\\nWould definitely include highly sensational make-outs, sex, a bit\\nOf kink, cuddling, etc. Yup, i am a woman who enjoys sex!\\n\\nSo, i'm originally from the 'burbs of philly and made it out to sf\\nIn july, 2003. I was going to stay \\\"just for a year\\\". Now it is 8+\\nYears later and i'm still here! i've lived all over sf and am\\nCurrently in soma, living in a beautiful, engaging, and intense\\nCommunity of 50 friends who are more like family. It's never a dull\\nMoment, that's for sure.\\n\\nAs for passions i love doing my healing work for others including\\nChinese medicine and life coaching. My work did include massage but\\nI hurt my shoulder so kneading people is on hiatus until further\\nNotice. Hehe, kneading people. See- silly goofy corny, right before\\nYour eyes!\\n\\nIn what feels like a former life i was a graphic designer. While i\\nStill get off on a well-balanced font, or the brilliant color and\\nComposition of a well designed poster i have left designing as a\\nCareer path. The pressure of deadlines, 8+ hrs / day at a computer,\\nAnd not feeling like i was making a significant contribution to the\\nWorld led me to the healing arts / sciences. So, here i am - driven\\nBy my purpose and happier than i've ever been. :-)", - "img": "user_pixel/f-377791-600x900.jpg", - "lower_age": 44, - "preference": "straight", - "sex": "Female", - "upper_age": 62, - "user": 398 - }, - "model": "earlydating.Profile", - "pk": 398 - }, - { - "fields": { - "age": 31, - "bio": "Im a fun person whose just looking for a good time. I live up\\nEveryday because were never guaranteed tomorrow.", - "img": "user_pixel/f-371519-1200x800.jpg", - "lower_age": 35, - "preference": "straight", - "sex": "Female", - "upper_age": 40, - "user": 399 - }, - "model": "earlydating.Profile", - "pk": 399 - }, - { - "fields": { - "age": 47, - "bio": "Warm, sloppy, enthusiastic, verbal, bicultural, non-judgmental,\\nCurious, searching, attentive, fast, obscene. Values education,\\nDistrusts power. Very interested in limits. Too old to suffer\\nFools. Quick to love but not looking too hard for it at the mome\"", - "img": "user_pixel/f-372027-1200x795.jpg", - "lower_age": 49, - "preference": "straight", - "sex": "Female", - "upper_age": 58, - "user": 400 - }, - "model": "earlydating.Profile", - "pk": 400 - }, - { - "fields": { - "age": 23, - "bio": "", - "img": "user_pixel/m-282376-1000x666.jpg", - "lower_age": 27, - "preference": "gay", - "sex": "Male", - "upper_age": 31, - "user": 401 - }, - "model": "earlydating.Profile", - "pk": 401 - } + { + "fields": { + "age": 61, + "bio": "i am a beautiful,sensual woman who loves life! i am happy working. part-time,enjoying friends,football,qigung,cards and mt. tam. i. taught school for many years, have a masters in counseling. psychology and love to find out what makes people tick. i could be. surprised, but i do not see marriage or living together in my field. of vision....a loving,monogomous partnership...is possible!", + "img": "user_pixel/f-2422924-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 2 + }, + "model": "earlydating.Profile", + "pk": 2 + }, + { + "fields": { + "age": 49, + "bio": "just a guy looking for some friends and have fun. i am a musician. and photographer having a passion for both.. i am married and intend to stay that way. i would love to find a. friend who wants to play and have fun.", + "img": "user_pixel/m-48143-361x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 3 + }, + "model": "earlydating.Profile", + "pk": 3 + }, + { + "fields": { + "age": 26, + "bio": "easygoing, fun-loving, confident, don't take myself too seriously.", + "img": "user_pixel/f-371983-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 4 + }, + "model": "earlydating.Profile", + "pk": 4 + }, + { + "fields": { + "age": 33, + "bio": "i'm a forensic nurse that trains in karate, kung fu, and mma. i. have many other hobbies and interests that i pursue on a regular. basis and i have found it difficult to balance out my life by. including someone special in it.. having reached a place where i'm happy with myself and my choices. makes me realize that that im ready to share my life adventures. with someone else. i have many wonderful friends but i don't have. many lesbian friends and that doesn't seem quite right..... i am a smart mouth, speak my mind kind of girl. i love physical. contact sports, fun and adventures that push you to your limits. i. want to explore the world and have a life worth remembering when. i'm gone. i would like to meet someone who can be outgoing and join. me in my adventures but can also spend quiet evenings in just. snuggling together. i hate being bored or wasting time because life. is short and i wanna make the most of it. if you can keep up with. me i would love to hear from you....", + "img": "user_pixel/f-371793-860x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 5 + }, + "model": "earlydating.Profile", + "pk": 5 + }, + { + "fields": { + "age": 31, + "bio": "i grew up and lived in the mountains until moving to the city three. years ago. here, my my days are filled working to live and living. to work.", + "img": "user_pixel/f-2058749-982x1323.jpg", + "preference": "straight", + "sex": "Female", + "user": 6 + }, + "model": "earlydating.Profile", + "pk": 6 + }, + { + "fields": { + "age": 24, + "bio": "i recently moved to berkeley for grad school, but have been trapped. in the ivory tower and need a partner in crime to help bust me out. and explore san fransisco.. . i'm originally from minneapolis, only the greatest city on earth,. but shamefully a little too used to california weather. i'm. minnesota nice, but enjoy giving friends a hard time.", + "img": "user_pixel/m-1732853-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 7 + }, + "model": "earlydating.Profile", + "pk": 7 + }, + { + "fields": { + "age": 25, + "bio": "i'm not really mr. dates. i enjoy hanging out with people whom i. can relate to and share interests with. i'm pretty laid back yet. see myself as very motivated by certain things like music, and art.", + "img": "user_pixel/m-371991-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 8 + }, + "model": "earlydating.Profile", + "pk": 8 + }, + { + "fields": { + "age": 35, + "bio": "first off: i don't smoke - i know it looks like it in this photo,. but it was a prop for a photo shoot that i did a few months ago. i. was on a rooftop deck in arizona for a wedding - and i was the only. non-smoker up there... seemed perfectly appropriate. the other ten. people, have no smokes in hand for their closeups.... . down to business:. it doesn't take much to make me happy. i love morning lattes. i'm. happy in the same jeans and favorite shirt, but i have no problem. spending money on excellent food, wine and travel.. . i love my job (as an er tech) where i get paid to break people's. ribs (doing cpr), tie physch patients down in four point restraints. and occasionally cut people clothes off, but for the most part i. love it because i get to connect with strangers and make their. lives better (even if it's just for a few moments).. . i'm in nursing school for a 2nd bs and i'm done in october, so i'm. getting really good at being busy while juggling and multitasking. efficiently. so forgive me if i don't get back to you right. away.... . i like playing outside in the sun on nice days and also love. watching movies with a bottle of red wine and dark chocolate when. it's raining. i hate when people are flakes, aren't affectionate,. and tell me what they think i want to hear. truth & honesty is. always the best for me, even if it's hard. i'm blunt. and. sarcastic. and kind. and silly. and loyal to those deserving.. . i am flirty, daring, and ambitious", + "img": "user_pixel/f-371957-1200x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 9 + }, + "model": "earlydating.Profile", + "pk": 9 + }, + { + "fields": { + "age": 30, + "bio": "i am a german post-doc who just moved to berkeley and likes to meet. some people from the area.. . i grew up alongside rhine river, but moved to northern bavaria for. university. really like all kinds of outdoorsy stuff - rock climbing,. mountaineering, skiing, camping, hiking - in order to compensate my time. in a mostly shady lab and behind the desk :). besides that, i like to travel lightweight in south-east asia and. the rest of the world, which lead to my favor in cooking.... on top of that, i am still a nerd that really likes getting. inspiring ideas at hackerspaces, defcon or reading slashdot.", + "img": "user_pixel/m-1925281-300x228.jpg", + "preference": "straight", + "sex": "Male", + "user": 10 + }, + "model": "earlydating.Profile", + "pk": 10 + }, + { + "fields": { + "age": 25, + "bio": "san francisco native, colleged in berkeley, law schooled at. stanford. i'm trapped in the bay area bubble. save me.. . love being outdoors, so trying to pack as much hiking/carcamping. into my life as possible.. . i have an unhealthy desire to learn languages that i come across.. currently working on japanese again while trying to hold on to the. french. swapped my obsession of capoeira with a new one for. rockclimbing. trying to get out of the v3 groove.", + "img": "user_pixel/m-2426807-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 11 + }, + "model": "earlydating.Profile", + "pk": 11 + }, + { + "fields": { + "age": 34, + "bio": "im an extremely sarcastic individual looking for someone to laugh. with.. my interests include dancing, music, seeing movies, reading,. walking my two dogs, people watching and going out to eat. im. looking for someone who is funny with a bit of sarcasm, charming. and sweet. someone to hang out with and spend my free time with.", + "img": "user_pixel/f-371905-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 12 + }, + "model": "earlydating.Profile", + "pk": 12 + }, + { + "fields": { + "age": 33, + "bio": "i am just a regular down to earth woman that loves to enjoy life. i. need plenty of laughter in my life. i cherish my friends and. family.", + "img": "user_pixel/f-371695-1048x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 13 + }, + "model": "earlydating.Profile", + "pk": 13 + }, + { + "fields": { + "age": 39, + "bio": "it's not easy being green, but i manage. you?. . the summary: 30mutter crankypants smartass freakazoid fairly. oddparent seeks same...or different. surprise me. clown suit. optional.. . the standard adjectives: happily freaky, but capable of looking. respectable when necessary. polysyllabic, but i like my dumb. pleasures too. in decent shape, but certainly not a gym bunny.. geeky, but able to talk about other things. as a bonus: gainfully. employed, prone to wearing clean laundry, and regularly showered. and shaved.. . the highly non-standard disclaimers: i have a girlfriend. (she's. missionista here. on okc.) we've never been monogamous (that's poly or polyamorous. for the interest-scrapers) nor are ever likely to be, but we've. been dating for 15+ years, share an apartment and don't seem. inclined to stop soon. we're not trolling for threesomes here (our. tastes don't overlap much, and inasmuch as they do these days that. itch seems to be well-scratched), and if you want to be her friend. that's between you and her-- but being friendly to her if you're. ever in a room together is required. she's awesome, so this is. usually not difficult.. . importantly, the aforementioned awesome girlfriend and i had our. first child in late november of 2009. (adventures in. heteronormativity and sleep deprivation, oh my!) so our schedule,. always a little complex to begin with, just had a baby-shaped. grenade dropped into it. (but a ridiculously cute grenade!) do feel. free to drop me a line if you get the urge, but please don't be. offended if it takes me a while to get back, and understand that. actually dating me probably now requires a willingness to schedule. more than a week (...or two...) in advance and possibly to exercise. some creativity in terms of timing and venues. i like to think that. i'm worth the hassle, but on the slim chance that this strikes you. as a personal tragedy, let me point you at my internet twin,. pyrogenic, who is. much like me except cuter and more available.. . okcupid used to have a madlibs-style fill-in-the-blank self-summary. in the form of \"i am ____, ____ and ____.\" they recently killed. those off, but i was oddly proud of \"i am binary, variable, and on. the main sequence.\" if nerdy astronomy jokes are your style, we'll. probably get along just fine.. . [oh good lord: i've removed all of the highlighted \"interest\". links, because they were generating some of the lamest icebreakers. known to man. yes, we both like cats. i'll tell you right away:. that ain't enough.]", + "img": "user_pixel/m-52533-361x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 14 + }, + "model": "earlydating.Profile", + "pk": 14 + }, + { + "fields": { + "age": 24, + "bio": "originally from cleveland, oh, went to college on the east coast,. and then moved to the bay for a job after graduating in 2010. i. spend the majority of my time with my friends from school, most of. whom ended up in sf as well.", + "img": "user_pixel/m-201918-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 15 + }, + "model": "earlydating.Profile", + "pk": 15 + }, + { + "fields": { + "age": 42, + "bio": "\"on my next date, i'm just going to hand her the lyrics to. [radiohead's] creep and save us both some time.\". --twitter user @brain_wash. . i'm a computer geek, a flexible introvert seeking out new. friends.. . i'm in a relationship with an awesome woman who makes me laugh and. dance and feel alive. i'm smitten. i've got it bad. we're not. looking for serious relationships with other people, but something. more casual isn't out of the question.", + "img": "user_pixel/m-261153-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 16 + }, + "model": "earlydating.Profile", + "pk": 16 + }, + { + "fields": { + "age": 34, + "bio": "welcome... i am one genuine, straight forward, smart, funny,. quirky, and crafty lady. i am looking for someone who prefers a. super sassy-ass girl that will love you down, tuck you in, make you. breakfast and love you all the way. i am ultra loyal to the people. i love in my life, for life.. . although not religious, i am deeply spiritual--i spent several. years in meditation retreat. i would consider myself a. deep-thinker, emotionally intelligent and driven.. . i gotta be outside daily. take me hiking. take me camping. take me. swimming, please! --- i'll be a happy camper.. or, you'll otherwise find me in my bed doing crafts--- i'm a. grandma at heart.. . looking for someone who wants to be with me long term and possibly. start a family. (you know- after we get to know each other a little. ;) i'm ready for the next level, and i'm out to find that. so the. faint of heart and commitment beware! i'm not a one-night stand.. but i act like one between the sheets...", + "img": "user_pixel/f-372089-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 17 + }, + "model": "earlydating.Profile", + "pk": 17 + }, + { + "fields": { + "age": 40, + "bio": "i'm a big-hearted, creative, romantic, goofy kind of guy. equal. parts shy and gregarious. i have a 4 year old niece and nephew whom. i adore. i grew up east coast and miss the changing of the seasons.. i love food: particularly bacon. and pancakes. and bacon with. pancakes. and romantic north beach. and sushi restaurants where the. boats go around. i used to have all sugary cereals when i was a. kid. sometimes a bowl before bed. i can veg out in front of cooking. shows -- and also shows like \"this old house\". any show where you. have to make something.. . i am a kind, sincere goofball.", + "img": "user_pixel/m-245667-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 18 + }, + "model": "earlydating.Profile", + "pk": 18 + }, + { + "fields": { + "age": 25, + "bio": "i am a professionally driven, outdoors enthusiast, with a passion. exploring, experiencing, and understanding the world as well as i. can. along the way, i try to surround myself with fun interesting. people to share the experience!", + "img": "user_pixel/m-283097-1000x667.jpg", + "preference": "straight", + "sex": "Male", + "user": 19 + }, + "model": "earlydating.Profile", + "pk": 19 + }, + { + "fields": { + "age": 42, + "bio": "i believe that the pursuit of pleasure is a reasonable goal and. that being responsible in that pursuit is imperative. i believe. that life is very good and can only get better if you perceive it. good to start. good communication is the most important.. i love my dog. i love teaching and practicing yoga. honesty is very. important to me.", + "img": "user_pixel/f-1732575-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 20 + }, + "model": "earlydating.Profile", + "pk": 20 + }, + { + "fields": { + "age": 23, + "bio": "at heart, i'm half girly french woman and half old german man.", + "img": "user_pixel/f-2439551-300x450.jpg", + "preference": "gay", + "sex": "Female", + "user": 21 + }, + "model": "earlydating.Profile", + "pk": 21 + }, + { + "fields": { + "age": 30, + "bio": "i'm very contented, chilled, thoughtful, intelligent, open and. positive-minded. and happy! really happy :). . i used to write/play/record music but i have no time for that. anymore :( i love listening to all styles but mainly. alternative/indie/rock stuff, experimental, classical - all sorts. really.. i cycle a fair bit, swim as much as i can and try to walk. around nice big mountains (if only for the old fashioned pubs along. the way). i don't tend to go out on the scene much anymore and. hardly ever hit the clubs (think i'm getting old :). . i've lived and worked abroad for a year in zurich (switzerland) and. backpacked twelvety times on my own around europe and japan,. spending two xmases in lapland! :) i don't think there are any. countries in europe i haven't been to now.. i also love taking lots. of little weekend breaks on my own to fun countries.. . i'm originally from cheshire, moved to switzerland (but you knew. that already), then london for 7 years and now starting a new life. in san francisco! yay!. i'm always up for new and exciting things to do, especially if. they're outdoors and i'm pretty flexible so suggest away - i'll try. most things once!", + "img": "user_pixel/m-246009-900x600.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 22 + }, + "model": "earlydating.Profile", + "pk": 22 + }, + { + "fields": { + "age": 29, + "bio": "i moved to the mission from laguna beach a year and a half ago for. love. it didn't work out, but i surprised myself by not. high-tailing it back to the sunshine. this may or may not be. because here, unlike in la, it is completely acceptable to go out. in converse.", + "img": "user_pixel/f-2039486-300x225.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 23 + }, + "model": "earlydating.Profile", + "pk": 23 + }, + { + "fields": { + "age": 24, + "bio": "hi! i am not really good at writing about myself, so in (very). brief: i am a student in san francisco, in a doctoral program. actually, so i guess you could say i aspire to be an academic. i am. originally from delhi (india), and just moved here last year. i. like travelling, love to read, and absolutely cannot live without. my ipod.", + "img": "user_pixel/f-371517-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 24 + }, + "model": "earlydating.Profile", + "pk": 24 + }, + { + "fields": { + "age": 40, + "bio": "i'm soulful, laid back, happy go lucky, and a little bit. dorky.... . bay area native guy here who always try to remain within the. moment. i'm also a hopeless romantic enjoying the most simplest of. things possible. i'm looking for the right type of connection with. that special person.. . on the fun side, i like dancing, exploring different parts of the city,. checking out cafe and bars with friends, people watching, playing a. little tennis,. working out,. etc. i'm passionate and enjoy great conversations about all sorts. of crazy things going on in the world!!. . i love meeting new people, trying out different restaurants,. traveling whenever i have the chance, and learning about different. cultures.", + "img": "user_pixel/m-53023-725x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 25 + }, + "model": "earlydating.Profile", + "pk": 25 + }, + { + "fields": { + "age": 61, + "bio": "i am looking for a traveling companion and good friend/lover... a. sensual and spiritual man!!. . i believe in love and freedom.. my mission in life is to live in love.. . i am a enfp extroverted, intuitive, feeling, spontaneous!. . i am a sensuous loving woman. i am 5'6, natural blond hair, blue eyes, healthy.. . i travel all over the world by bicycle, train, bus, car, boat and. plane.. i love to garden, scuba, camp, back pack, sail, dance. and try new things.. . you and i are two people who:. . really enjoy giving and receiving love and loving touch. . are happy and grateful to be alive. . are world travelers. . are happy in a tent. . enjoy movement, dance, and creative self expression. . physically i prefer a man with soft hair and skin, and clean.. and physical chemistry is really important to me and to you.. . i enjoy, playing, cuddling, tantra, parties with sensuous sincere. people, nature. and natural things,. . i live a healthy lifestyle, i do not drink alcohol or smoke.. i love to travel and i enjoy all kinds of people.. i am intelligent and intuitive, not academic or intellectual.. i am outgoing but not talkative.. i love open free clothing optional environments.. i am slightly eccentric (aren't we all?). i teach love and pleasure.. i treat all people well and with respect.. i value direct communication and emotional honesty.. speak plainly, tell me what you want or need and you will likely. get it.. . the kind of events i enjoy are:. sensuous parties,. burning man,. panthacon,. summer camp, network for a new culture.. summer fairs and gatherings,. harbin hot springs events. . for more photos of me go to http://blisstantra.com/true.html", + "img": "user_pixel/f-371853-600x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 26 + }, + "model": "earlydating.Profile", + "pk": 26 + }, + { + "fields": { + "age": 50, + "bio": "okay cupid...help me out here.. . i'm an evolving woman, trying to expand my life and think outside. of the box that has been created over the years.. . so...for the record...most people haven't seen me in a dress since. the early 90's. i can change a flat tire and sew a zipper. i won't. show up for a date without some amount of makeup but don't usually. wear makeup to work. i'm tom boy. i'm a jeans, t-shirt,. dress(y)shirt, practical or high heel wearing, tire changing,. zipper fixin, microwave cooking, bbq'in girl (that is what my mom. says).. . i am a transplant to the bay area from nebraska via la/long beach. (oh how i miss the warm beach weather). i have no pets and no kids. (i am allergic to. most-pets not kids). i am looking for friends maybe more (as. friendship is. foundation to every good relationship). the people i consider true. friends are too far away. i am 5'8\" and about 150 pounds. most of. the people i know consider me to be attractive. i like watching. movies (theatre or dvd). i am recently trying to get back into. cooking but have no problem trying different restaurants. i love. most kinds of food, although i have problems with very spicy foods. but i'm trying to increase my tollerance. i don't really drink. coffee (tea drinker) and drink alcohol socially. i love to travel. and try new things. i consider myself to be shy and a bit goofy because of my shyness at first.. after i warm up most of the goofiness goes away. i love to make. people laugh and enjoy laughing.. . when i'm at work i probably come across as a nerdy type. after all. i am basically a librarian. my books and journals are mostly. online. i watch animation, cartoons, sappy movies, action movies,. reality shows, and just about everything. i like music and usually. associate songs to time. . i am quiet, athletic, and thoughtful", + "img": "user_pixel/f-371795-1200x674.jpg", + "preference": "straight", + "sex": "Female", + "user": 27 + }, + "model": "earlydating.Profile", + "pk": 27 + }, + { + "fields": { + "age": 25, + "bio": "im a good man thats loooing for love", + "img": "user_pixel/m-245849-900x475.jpg", + "preference": "gay", + "sex": "Male", + "user": 28 + }, + "model": "earlydating.Profile", + "pk": 28 + }, + { + "fields": { + "age": 54, + "bio": "i am a large squishy pretty polyamorous dog co-dependent/wannabe. artist/mom/seeker/lawyer/sex fiend/recovering luddite/wannabe. geek/semi-sentient daughter of the universe (<--i'm not sure who. my other parent was. every time i ask the universe, it blushes and. mutters something about a bad day, too much bourbon and some guy. selling encyclopedias door-to-door). i am the winner of my eighth. grade spelling contest. i am severely afflicted by wanderlust, as. well as most other kinds of lust. i like sunsets, old ocean liners,. movies, italy, crafting, long walks on the beach at sunset while. gazing into my lover's eyes, playing pinochle in the er while. waiting to be seen for broken bones after tripping over sleeping. sea lions while eye-gazing with my lover. and brussels sprouts. i. hate beets.. . i am silly, funny as hell, and insatiably curious.", + "img": "user_pixel/f-2282604-6000x4000.jpg", + "preference": "straight", + "sex": "Female", + "user": 29 + }, + "model": "earlydating.Profile", + "pk": 29 + }, + { + "fields": { + "age": 29, + "bio": "i am a fun, easy going person who really values honesty and. openness.. . i'm an actress, stand-up comedian, and writer. i've traveled to 23. different countries, my favorites were bosnia, serbia, and. guatemala.. . i'm looking for a fun companion for going to plays, cooking good. food, or exploring art openings. i like going to the park.", + "img": "user_pixel/f-371611-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 30 + }, + "model": "earlydating.Profile", + "pk": 30 + }, + { + "fields": { + "age": 41, + "bio": "it's interesting casting one's net out into the cloud isn't it? met. some very cool people on this site so far and the ones that weren't. so great, well, they'll all be good stories one day eh?", + "img": "user_pixel/f-2454938-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 31 + }, + "model": "earlydating.Profile", + "pk": 31 + }, + { + "fields": { + "age": 29, + "bio": "i love to laugh and have create experiences where people can feel. included and be free to express themselves. i am looking for. friends and those interested in personal growth, and developing. true heartfelt connections.", + "img": "user_pixel/f-1732575-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 32 + }, + "model": "earlydating.Profile", + "pk": 32 + }, + { + "fields": { + "age": 27, + "bio": "the first thing you should know about me is that i'm in a. committed, long-term, open relationship with neontigerontop. i find that being. open is a deal-breaker for many people, so i want it to be right. out there. if you're curious about what open relationships are like. or what they mean, feel free to message me! i enjoy talking about. it.. i enjoy biking, hiking, video games, card games, board games,. cooking, reading, daydreaming, spending time with animals.. i love music, but my knowledge of artists is hit or miss.. i love animals, but you might not be able to guess by striking up a. random conversation with me. i take a very. non-shoveitdownyourthroat approach. i aspire to raise pygmy goats.. i do have cats. :3 i'm not a farmer. however, i do enjoy. gardening.. i can be very absent-minded. sometimes i feel like my mind is an. ever-expanding roulette wheel filled with topics i want to be. focused on, constantly spinning and stopping at random intervals. i. daydream a lot. i have many interests. i feel like i need several. lifetimes.", + "img": "user_pixel/m-2358801-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 33 + }, + "model": "earlydating.Profile", + "pk": 33 + }, + { + "fields": { + "age": 34, + "bio": "sometimes i spend way too much time thinking, and not enough. living... sometimes i live and forget to think... usually, i try to. stay somewhere in between, but i've come to the conclusion that. living is much more fun then thinking, but thinking will help you. live.... . i am creative, open, and honest", + "img": "user_pixel/m-186996-725x467.jpg", + "preference": "straight", + "sex": "Male", + "user": 34 + }, + "model": "earlydating.Profile", + "pk": 34 + }, + { + "fields": { + "age": 30, + "bio": "i was born near chicago, illinois. had a good time rooting for the. bulls from ages 0 to 8. moved to connecticut after that. my cat. died and i was very sad. we watched voayage of the mimi in fifth. grade and studied whales. nothing too important happened in middle. school. then i went to a nice new england boarding school in high. school where i discovered or rediscovered the joys of music,. especially the piano. in college i studied a wide variety of. subjects but managed to avoid acquiring any marketable or even. useful skills. spent two years working as a teacher, and then moved. to sf where i completed 3 years of law school while secretly. focusing more on having a good time than school. that pretty much. sums me up.. . i am easy going, passionate, and thats all!", + "img": "user_pixel/m-186996-725x467.jpg", + "preference": "gay", + "sex": "Male", + "user": 35 + }, + "model": "earlydating.Profile", + "pk": 35 + }, + { + "fields": { + "age": 20, + "bio": "note: i haven't been getting online lately, so sorry if it takes me. a while to get back to you.. . i'm not very good at writing these sort of things, but i'll. try... . i'm a nerd. i love comics, video games, technology, gadgets, and. b-horror movies. i'm crafty, creative and funny; i actually wanted. to become a stand-up comedian for a while, but i never really got. my act together.. . i have a very active imagination, which causes me to space out a. lot. my mind is constantly thinking up new stories, places,. characters, and situations. this tends to cause problems in the. more \"professional\" aspects of my life, but, thankfully, i don't. really have to deal with that many \"professional\" situations in my. life. i love being an artist.. . i love the ocean and i have a tattoo of two jellyfish on my calf. (still a work-in-progress) and i eventually want a whole ocean. scene on the left side of my body. and speaking of my body, i'm not. going to lie, i'm bigger than your average girl, but i recently. found out i have a thyroid condition and started medication, so. that should be changing soon. either way, personality should be the. most important thing.. . i like to partake in marijuana; you could probably even call me a. bit of a stoner. i love smoking with my friends, or just other. people in general, it makes the whole process a lot more fun and i. feel like it connects people who wouldn't have gotten together. under different circumstances.. . i feel like i should say a few more things about myself, but i. can't think of anything right now.", + "img": "user_pixel/f-371743-666x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 36 + }, + "model": "earlydating.Profile", + "pk": 36 + }, + { + "fields": { + "age": 44, + "bio": "i don't like to categorize myself. i feel i can do anything (except. salsa dance). i want to constantly evolve and adapt to new and. different things. my name is not dio and no my hair is not weird. like in the photos. i don't ask that anyone be like me but to. accept and support me as a person. passion and attraction are a. must. flakes and blowhards do not exist around me. cliche maybe,. real and grounded yes...", + "img": "user_pixel/m-260895-900x675.jpg", + "preference": "straight", + "sex": "Male", + "user": 37 + }, + "model": "earlydating.Profile", + "pk": 37 + }, + { + "fields": { + "age": 38, + "bio": "i refuse to take the world any more seriously than need be. life is. amusing so i laugh, lots, at everything. but don't mistake this as. indifference, i'm passionate about most everything i do - hobbies,. work, relationships, etc. i like to be active outdoors but have no. complaints about hibernating indoors when the situation warrents. itself.", + "img": "user_pixel/m-208350-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 38 + }, + "model": "earlydating.Profile", + "pk": 38 + }, + { + "fields": { + "age": 24, + "bio": "pansexual, compassionate, assertive, sensual, strong, creative,. funny, passionate, intuitive, open minded.. . i am looking to meet new people, nothing more and nothing less.", + "img": "user_pixel/f-2058749-982x1323.jpg", + "preference": "straight", + "sex": "Female", + "user": 39 + }, + "model": "earlydating.Profile", + "pk": 39 + }, + { + "fields": { + "age": 41, + "bio": "now that i have hit and passed 40, i am seeing life differently and. find myself less uptight about things and more easygoing.", + "img": "user_pixel/m-211526-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 40 + }, + "model": "earlydating.Profile", + "pk": 40 + }, + { + "fields": { + "age": 24, + "bio": "i haven't updated this profile in so long. i don't want people. getting the wrong impression of me. man, i was like 19?. . i'll update this later. for now, all those interested inquire. within.. . faxes must have a coversheet.", + "img": "user_pixel/f-1929452-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 41 + }, + "model": "earlydating.Profile", + "pk": 41 + }, + { + "fields": { + "age": 23, + "bio": "selena was my best friend.", + "img": "user_pixel/f-371869-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 42 + }, + "model": "earlydating.Profile", + "pk": 42 + }, + { + "fields": { + "age": 28, + "bio": "full of contradictions yet able to stay calm about it.", + "img": "user_pixel/f-371983-1200x795.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 43 + }, + "model": "earlydating.Profile", + "pk": 43 + }, + { + "fields": { + "age": 34, + "bio": "i live a simple life and i tend to keep things simple - i have a. small family, a stable job, a small circle of good friends, no. drama. i probably have some form of acetaldehyde dehydrogenase. deficiency that keeps me from drinking much alcohol (which is a bit. sad, since i actually enjoy beer and wine) and cigarette smoke. irritates me.. . i was born and raised in hong kong, but have spent a significant. amount of time in the east coast (nyc), and have lived abroad for a. few years (in which i miss dearly). now i call the bay area home. and i love it here! i just wish there is a bit more sun in the. city.. . i like to travel; i enjoy admiring scenic beauty and architecture.. i am hoping to be able to learn photography some day.. . my line of work makes me a bit hesitant to post a picture of myself. here publicly; however, i can guarantee that i don't look like a. freak, and i can always send you a picture privately.. . i am a techie with a computer science degree who ended up in the. medical world. now i write prescriptions and talk to people for a. living :p", + "img": "user_pixel/m-2426807-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 44 + }, + "model": "earlydating.Profile", + "pk": 44 + }, + { + "fields": { + "age": 27, + "bio": "i always feel weird writing about myself so i'm going to keep it. short and sweet..... . i was born and raised in the bay area but i moved to san francisco. a few years ago after i graduated college. i really enjoy traveling. and being outdoors (i know that is totally cliche but i truly do. enjoy both of those things) i've traveled all throughout europe and. next i plan to conquer south america. swimming is a passion of mine. and so far i have two alcatraz swims under my belt; i also plan on. at least two more this swim season. if you like to swim hit me up. because i am always looking for a swimming buddy in aquatic park.. my friends like to call me martha stewart because i love to host. parties; even if there is no reason to have a party i'll just make. one up. i'm not to prim and proper though; i'm more like martha. with a big ipa or a nice rye in hand. i love trying new things. whether that be food, places, activities... i pretty much say yes. to anything i haven't tried. i know that isn't a whole lot about me. but i think that is enough information to share with strangers :)", + "img": "user_pixel/f-371729-1200x801.jpg", + "preference": "gay", + "sex": "Female", + "user": 45 + }, + "model": "earlydating.Profile", + "pk": 45 + }, + { + "fields": { + "age": 39, + "bio": "on-line dating, yep, its come to this. the heart is a lonely. hunter, so here i am trying this out. summarizing myself can't be. done in a paragraph, i prefer to feel people out by meeting them. and seeing if the chemistry is there.", + "img": "user_pixel/f-371793-860x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 46 + }, + "model": "earlydating.Profile", + "pk": 46 + }, + { + "fields": { + "age": 49, + "bio": "hi, i'm just a profile. i'm trying to find a compatible girl for my. friend in the photo. dang, it's so hard to write what i'm about. when it changes all the time. i strive to grow everyday and learn. something new. i'm interested in marketing and real estate right. now: but i do hair. i love my job and am willing to share my. success with a partner and who is willing to share their successes. with me.", + "img": "user_pixel/f-371903-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 47 + }, + "model": "earlydating.Profile", + "pk": 47 + }, + { + "fields": { + "age": 23, + "bio": "i'm happiest when in nature, exercising, eating a delicious meal,. or laughing with good people. i love animals, coffee, and a good. sense of humor.", + "img": "user_pixel/f-371856-1200x798.jpg", + "preference": "straight", + "sex": "Female", + "user": 48 + }, + "model": "earlydating.Profile", + "pk": 48 + }, + { + "fields": { + "age": 27, + "bio": "i'm pretty awesome (says mom). i'm maybe a geek. possibly a dork.. i, however, _am_ a fully functional human being. stereotypes just. don't work to describe me. i'm pretty happy with who i am.. . i have a sense of humor that is random. i'm serious when i need to. be, but generally i'm a big (6'4\") goofball. i'm not afraid to. swing and miss. i'm a bit add so my mind is always spinning in the. background and i love to know at least a little about everything.. lately i've been having a lot of fun cycling and i'm signed up to ride. aids. lifecycle this summer!. . i smile a lot.. . addendum: i just realized my \"three adjectives that describe\" me. make me sound like a labrador retriever. take that as you. will.. . i am loyal, clever, and inquisitive", + "img": "user_pixel/m-2436239-300x450.jpg", + "preference": "straight", + "sex": "Male", + "user": 49 + }, + "model": "earlydating.Profile", + "pk": 49 + }, + { + "fields": { + "age": 24, + "bio": "a wry sense of humor, functioning frontal lobes, pretensions of. intellectualism, a fondness for puppies, and a curious affinity for. disco balls.. . politics is my animating force, in that junkies are both animated. and consumed by their next fix. it's just one thread of crazy. within a knotted and tangled tapestry of neuroses. speaking of. personality defects, i'm analytical to a fault. sometimes i write. in disjointed lists but i like to think of it as stream of. consciousness.. . i also enjoy stupid puns, dark jokes, general irreverence, and. clever turns-of-phrase.", + "img": "user_pixel/m-215974-725x496.jpg", + "preference": "gay", + "sex": "Male", + "user": 50 + }, + "model": "earlydating.Profile", + "pk": 50 + }, + { + "fields": { + "age": 29, + "bio": "i grew up in nyc, ventured north to cornell for four years, and. moved west to socal in '04 for my first job after graduating. i. didn't enjoy it there for many reasons, so i moved north to the bay. area in '05, and have been here ever since.. . i grew up hating to eat, but now i love it! didn't really drink. much in college, but now i enjoy relaxing and drinking with. friends. i'm not much of a club person, but i do go out to enjoy. time with friends.", + "img": "user_pixel/m-2358803-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 51 + }, + "model": "earlydating.Profile", + "pk": 51 + }, + { + "fields": { + "age": 27, + "bio": "author. dreamweaver. visionary.", + "img": "user_pixel/f-371887-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 52 + }, + "model": "earlydating.Profile", + "pk": 52 + }, + { + "fields": { + "age": 42, + "bio": "i must have been a pirate in a former life. this would explain my. relentless appetite for adventure, excitement and spicy sausage, as. well as the unique architecture of the place i call home. i've made. a conscious effort to give up hostage-taking, except at. parties.. . working as a software engineer, i get a rush seeing how easy it is. to change the world, or at least a few lives, with just a few lines. of code. having this level of impact used to entail leaving one's. family behind and sailing off, but these days we can be with those. we love and conquer the world from the comfort of the sofa with a. computer and a tray of chips on your belly.", + "img": "user_pixel/m-2383498-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 53 + }, + "model": "earlydating.Profile", + "pk": 53 + }, + { + "fields": { + "age": 28, + "bio": "i'm 27 years old.been divorced for 3 years now who's looking to. start her life over. i've only been married once and i do not know. if i want to get married again and maybe have kids. i'm fun, honest. and i like expecting the unexpected. i'm always willing to try new. thing's and meet new people. i have my moments where i am stubborn. as a bull,it's the taurus in me. i am always willing to hear both. sides to every argument and i don't mind throwing in my 2. cents.. . i want people to like being around me for me, not for what i have. or what i look like. be with me to be with me, if you can't do that. then your not worth my time. i am looking for fun, i wouldn't mind. if it became more, but it's not requirement at this point.. . i am outgoing, clever, and caring", + "img": "user_pixel/f-371903-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 54 + }, + "model": "earlydating.Profile", + "pk": 54 + }, + { + "fields": { + "age": 31, + "bio": "i had four words here at first, trying to see if brevity is indeed. the soul of wit. evidently, less is not necessarily more, even in. an age of mass media sound bytes and streams of tweets.. . i am kind and curious, intrigued by human idiosyncrasies and the. relationship between how we cognitively frame our experiences and. how we ultimately behave. i have a deep and abiding passion for. ecological solvency, for not wrecking (through our trans-niche. tech-dominance) the diversity and majesty of what some have deemed. 'spaceship earth'. and so, i have landed myself in the solar energy. industry, sallying forth with a dirt-worshipping heart into the. realm of consumer marketing.. . i am also mindful and soulful. i engage fully with the sturm and. drang of modern life, but keep an eye on the larger reach and. stretch of consciousness and compassion. i like the quiet of. forests and the wail of market street in equal measure.", + "img": "user_pixel/f-1776084-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 55 + }, + "model": "earlydating.Profile", + "pk": 55 + }, + { + "fields": { + "age": 45, + "bio": "after more than 45 years of being me and raising 3 children, i've. found the missing pieces to the puzzle of my childhood and arrested. emotional development. i've been on a long road of recovery and. discovery. i've loved previously but was not fully able to share. myself or receive. now i am. i've got nothing to hide and deserve. to be loved. i have so much to give and am open to receive. no. baggage or unreasonable expectations. i'm already fulfilled. i'd. like to be cherished by someone else who has arrived and wants to. collaborate and share both mundane and wondrous moments. : )", + "img": "user_pixel/f-2439551-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 56 + }, + "model": "earlydating.Profile", + "pk": 56 + }, + { + "fields": { + "age": 28, + "bio": "i'm an open book. about half of it has already been written, and. everything in there is free for all to read. i try to write fun and. exciting things on every new chapter trying to avoid. repetitiveness. before writing anything, i have to make sure i will. be able to read it later and feel good about it either because is. something i'm proud of, or because is something i have learned. from; of course there are some secret chapters floating around!", + "img": "user_pixel/m-371991-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 57 + }, + "model": "earlydating.Profile", + "pk": 57 + }, + { + "fields": { + "age": 48, + "bio": "overall - i have a great life and it's full of incredible people. and experiences but there's still room in my world for that one. special person.. . i'm the upbeat, happy-go-lucky type. you'll find a smile on my face. most days (life is too short to let things get you down!). i. believe all relationships take time to develop and grow but. ultimately i'm looking for my best friend & long-term. partner.. . my ideal man would be emotionally available, comfortable in his own. skin, affectionate, fun, creative, and a bit quirky!", + "img": "user_pixel/f-297029-1100x731.jpg", + "preference": "gay", + "sex": "Female", + "user": 58 + }, + "model": "earlydating.Profile", + "pk": 58 + }, + { + "fields": { + "age": 18, + "bio": "hi i'm tina i'm a down to earth girl i like to meet new people hang. out with friends and family i like the color green i'm a shy person. i love to have fun i speak my mind sometimes love being outside and. love being in the water i'm here to find a relationship not to hook. up done with that", + "img": "user_pixel/f-1742340-1200x798.jpg", + "preference": "straight", + "sex": "Female", + "user": 59 + }, + "model": "earlydating.Profile", + "pk": 59 + }, + { + "fields": { + "age": 64, + "bio": "interesting, vital, multi-cultural, multi-lingual, literary,. educated, adventurous.. . i think i may have to add just a tad more of a description. i have. a good sense of humour (note spelling) otherwise i would never have. made it through to now. i am also insatiably curious - about life,. what makes people tick, politics, cultures, religions. i am an avid. reader and always have been - i read just about anything i can get. my hands on. besides being a reader, i am a writer. i believe my. genre is what is called creative non-fiction.. . i work in the healthcare field at the present time, and have been. in this field for quite a while, longer than i care to say.. . i have lived on different continents, and have experienced. different lifestyles. i still love traveling. luckily i have. friends and family dispersed throughout the world, which makes. traveling more pleasant, as i don't have to stay in hotels most of. the time. when time allows, i also like to travel within the united. states.. . although my feet are firmly planted on the ground i have the. ability to 'see the stars' i.e. i have an appreciation for the. spiritual.", + "img": "user_pixel/f-371743-666x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 60 + }, + "model": "earlydating.Profile", + "pk": 60 + }, + { + "fields": { + "age": 23, + "bio": "i'm born and raised in the city that i love and am damn proud to. call myself a native. i love my hometown, but traveling is a. passion. it allows me to both appreciate where i come from and. fuels me to explore further outside of the bay area. i've really. only seen a bit of the us and almost all of central america (with. the exception of nicaragua) but would like to see more of this big. world we live in.. . as compared with most women my age, i'd describe myself as. preferring practicality to aesthetics normally. not to say i don't. know how to pull myself together, but the contents of my purse. usually include band-aids, a yo-yo, and a pen rather than make-up,. compact mirrors, and perfume. my style is usually jeans and a. tee-shirt and i have been described as a bit of a tomboy. for the. right occasion i can throw on a dress and nice shoes, but normally. lead a lifestyle where it's not necessary.. . that being said, i'm not much of a \"club\" person, and prefer to. explore the wide array of other nightlife available in this great. city. i enjoy poetry slams, trivia nights, or even a decent music. show.", + "img": "user_pixel/f-2439625-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 61 + }, + "model": "earlydating.Profile", + "pk": 61 + }, + { + "fields": { + "age": 33, + "bio": "the bay area is a great place to live. there are lots of places to. eat brunch, go biking and see live music. while i like going out. for the above mentioned activities, i also like hanging out at home. and cooking meals and watching a movie. it'd be great to find. someone to do these things with.. . my friends who have found significant others online have told me. that it is a numbers game. i have met a lot of really great people. so far and some awesome friends, but i am still looking.. . i am a competitive road cyclist and i enjoy staying active on my. bike.. . for as an energetic of a person as i am, i am pretty low key. i. don't like going out to bars much. i prefer daytime outdoor. activities. i especially like it when these activities involve. bicycles.. . you do not have to be into biking. it would be cool if you are, but. i also like having this as my activity for \"me\" time.", + "img": "user_pixel/m-54189-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 62 + }, + "model": "earlydating.Profile", + "pk": 62 + }, + { + "fields": { + "age": 41, + "bio": "i adore beauty, poetry, our sensual rich earth, human beans, depth. explorations, outdoors adventures, dance, yoga, meditation and. wisdom in all her majesty. i am both a magician and a high. priestess with a huge heart in the center of my being. my woman is. a powerful creator with a gentle grace and kindness - talk to me or. whisper, i hear you.. . last year i spent most of the year outside the country wondering,. teaching, experimenting with the mysteries of life in spain,. morocco, switzerland, england, israel, peru, nyc and hawaii.. so good to be home in san francisco, where i adore our sensual. pacific northwest coastline and bright open future we are crearting. here .. . a poem i wrote the other day:. animated exuberance. . tell me, heart. what's your shape, what's your texture?. were you born like that, a radio of love?. can you feel the anticipation of pain and suffering. do you call it fear?. . in the hot green morning. let lust grow between us. like the sprouting of tender shoots. after the earth nurses at the teat of the sky. come play with me, don't be shy. put into your fingertips all of your wanting. let me feel your need in every ridge of your skin. come slip inside me. where you have always been. . block not my love. expose yours and mine are in the open. soft mouth is good for kissing. sometimes i have so much love to give,. i want someone to take it. . and when the floodgates open. i feel so much sadness for things that happened. tender heart- no wonder you are hiding in the dark. come speak loud enough, until there is no need for words. rhythmic twisting, animated exuberance. surrender to the gravity of it all. i am", + "img": "user_pixel/f-371865-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 63 + }, + "model": "earlydating.Profile", + "pk": 63 + }, + { + "fields": { + "age": 33, + "bio": "i'm really bad at filling out these boxes in cyber space.i'm so. much better in person.. just moved here and loving it so far but do feel that my. northeastern style of communication and sarcasm is a bit shocking. for folks here. i've lived and worked in many cities and countries. and have learned a lot in each place. i tend to think very deeply. about the world on a regular basis and i'm very sensitive to energy. around me, so i love to balance that with laughter - laughing out. loud till your stomach hurts or laughing with a stranger on the bus. or in the street during carnival. i'm very diverse in my tastes,. opinions, experiences, and skills. i gravitate towards witty,. smart, independent people who are comfortable with themselves. i. can accept and love lots of different types of people, but i also. need to be myself and feel loved and respected for who i am too.", + "img": "user_pixel/f-371915-900x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 64 + }, + "model": "earlydating.Profile", + "pk": 64 + }, + { + "fields": { + "age": 30, + "bio": "very chill down to earth dude , like to watch the rain from inside. a heated house. like to go on extreme adventure nature hikes,. looking to meet new people. . i am open minded, vivacious, and inquisitive", + "img": "user_pixel/m-246713-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 65 + }, + "model": "earlydating.Profile", + "pk": 65 + }, + { + "fields": { + "age": 29, + "bio": "i'm aiming for that damn thousand word mark.. . am i allowed to say damn on this thing?. . i have a degree in writing, so naturally i work in a. kitchen.... . i think that the tall boy should be considered the si unit for. beer.. . literature and photography are pretty big deals to me.. -adventures are too.. . i've been described as both salty and sweet, which, coincidentally. describes my favorite flavor combination.. . i enjoy my job because i get to be completely unfiltered from the. time i clock in until i clock out.. . i am basically unfiltered even when i'm not at work.. . i will never be rich, but i can cuss like a sailor, so i feel these. things even themselves out.. . i understand that i will not get along with 95% of people that i. meet.. -that doesn't mean that i won't be nice to them. it just means i. won't want to \"go grab a beer\" with them.. . i very rarely want to grab beer more than i want to drink it.. . i think getting in trouble is a fake idea.. . i think guns are awesome.. -shooting humans is lame.. -shooting tvs is immensely satisfying.. . i've picked more fights than i've ever been in.. -i will probably always pick more fights than i'll ever be. in.. -i mean this in the verbal and fist way.. . i read and write a lot of poetry.. . i'm really good at making fun of people. i enjoy it with a certain. gusto that may seem unnatural.. . i've never told a girlfriend \"i love you.\". -i have said this to most of my good friends.", + "img": "user_pixel/m-246713-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 66 + }, + "model": "earlydating.Profile", + "pk": 66 + }, + { + "fields": { + "age": 23, + "bio": "things you should know:. . no, i don't want to date you.. no, i am not keeping a \"waiting list\" for \"when i break up\". the. fact that you'd even suggest such a thing makes it clear that you. are probably a giant d***weed and that the likelihood of me being. in the same room as your naked body is non-existent. frick. off.. no, i am not nice.. no, i am not sorry.. . -june 2012. . ------------------------------------. **as attractive and charming as so many of you are, i am currently. preoccupied with someone cute (his name is pucci, and he rocks my socks), and not. taking on dates right now. see you on the flipside, yo.**. . ------------------------------------. \"pretty attractive for an okcupid b****\". -4chan, january 2012. . true story. hi guys!. ----------------. . brusque in delivery. soft at heart. feisty, deeply cynical five. foot three spitfire.. . i am a mouthy queer feminist jerkoff. if you expect someone to be. subservient or happy-go-lucky, well. we probably will not get. along!. . under the hardened shell, i am actually quite altruistic,. empathetic, and fair-minded. however, if you cannot get past the. sardonic sense of humor and proclivity for sarcasm, then we will. never get along. my edges were hard-earned. i don't plan to discard. them any time soon.. . i took this down, but apparently it needs to be here: thanks for. the offers, but i am not interested in joining you and your \"super. cute, intelligent, sexy\" etc. girlfriend. i am sure she tastes. great, but i am not interested in being anyone's thirdwheel.. thanks!", + "img": "user_pixel/f-371963-1137x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 67 + }, + "model": "earlydating.Profile", + "pk": 67 + }, + { + "fields": { + "age": 20, + "bio": "i can't go a day without laughing. i always try to find the. positive in a situation, as dwelling on the negative gets you. nowhere. i'm goofy, sarcastic, and ambitious. and yes, i do realize. it's hard to imagine that these traits can work well together, but. i can assure you i have found a good balance between them.. . i am constantly on the go, be it working, studying for classes,. exercising, or catching up with friends. i could go on for much. longer, but i'd rather you be able to ask specific questions. if. you want to know more about me, please message me.", + "img": "user_pixel/f-371517-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 68 + }, + "model": "earlydating.Profile", + "pk": 68 + }, + { + "fields": { + "age": 57, + "bio": "i love music, baseball and women with idiosyncratic beauty, the. short stories of tobias wolff and red wine. i'm shy yet i've been a. performer of one sort or another all my life...go figure. i work in. san francisco, but i live in berkeley...it would be nice to meet. new people in the eastbay.. . i am sardonic, curious, and sentimental", + "img": "user_pixel/m-246433-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 69 + }, + "model": "earlydating.Profile", + "pk": 69 + }, + { + "fields": { + "age": 31, + "bio": "a random character in the abyss. born in sf, raised in berkeley,. groomed to be a robot in the northeast. \"once you free a mind you. can never go back.\"", + "img": "user_pixel/m-1862356-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 70 + }, + "model": "earlydating.Profile", + "pk": 70 + }, + { + "fields": { + "age": 26, + "bio": "i am a recovering introvert from los angeles, by way of louisiana.. i've been involved in various forms of queer, trans, & women. justice work and collectiveness in the past and i've slowly been. getting involved in things here in the east bay since i moved this. past january.. . i'm interested in intentional community building, creating art and. alternative media with other folks, and working on all types of. transformation- personal, relational, and systemic change are. really important to me.. . i'm excited to start getting to know more people here!", + "img": "user_pixel/f-2439625-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 71 + }, + "model": "earlydating.Profile", + "pk": 71 + }, + { + "fields": { + "age": 40, + "bio": "peter pan meets wendy-. responsible enough to take care of business but child like enough. to love riding grocery carts thru a parking lot.. . alice meets snow white-. will jump down the rabbit hole in search of the next adventure then. will recharge by getting lost in the forest with my beloved. wildlife and nature.. . 1/2 serbian-1/2 irish with a shot of scotch. . east coast/west coast hybrid.. . creature of the day...not so much the night.", + "img": "user_pixel/f-371907-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 72 + }, + "model": "earlydating.Profile", + "pk": 72 + }, + { + "fields": { + "age": 31, + "bio": "i consider myself to be pretty mellow, laid back person but with an. adventurous streak. i love trying new things and i'll try pretty. much anything once. i grew up in the bay area but have lived in. washington dc for the past 5 years. i'm back now and really happy. to be near my family and friends again!. . what do i love? running, anything outdoors, cooking, travel,. baseball, movies, politics, trying new restaurants, my dog and. sleep.. . who am i looking for? anyone who is willing to introduce me to a. new adventure! someone with strong opinions who likes to debate. (not argue) as much as i do. a travel, running, movie, food, and. sports (playing and watching) partner. liking my dog is a pretty. big deal too...but he's easy to love!", + "img": "user_pixel/f-2439625-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 73 + }, + "model": "earlydating.Profile", + "pk": 73 + }, + { + "fields": { + "age": 41, + "bio": "im funny, witty, compassionate, loyal, honest,communicative,. forgiving, insightful.............i have a 16 yr old son who lives. with his dad in town and an 18 yr old daughter in fresno state. college. i find myself spending alot of time alone and its no fun.. something's missing................besides my favorite pen", + "img": "user_pixel/f-1742340-1200x798.jpg", + "preference": "gay", + "sex": "Female", + "user": 74 + }, + "model": "earlydating.Profile", + "pk": 74 + }, + { + "fields": { + "age": 29, + "bio": "i was born and raised in san francisco, but love to travel. in my. free time, i like trying out new restaurants and exploring the. city. i'm a big believer of working hard, and playing hard, and can. usually be found going out on the weekends for drinks. i'm pretty. active, and like going out for a run when the sun's out. decided to. join okcupid to meet some cool new people, and can't wait to get. started!", + "img": "user_pixel/f-2454938-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 75 + }, + "model": "earlydating.Profile", + "pk": 75 + }, + { + "fields": { + "age": 24, + "bio": "i'm a transplant to sf from the midwest, chasing several dreams at. once.. . i really like the outdoors, especially cycling, climbing, and. kayaking. last summer i kayaked within a few feet of a giant seal. family, and learned that they actually act like mammals, almost. like big furless, finned cats that get both excited and nervous to. see people.. . i've been spending a lot of time recently on comedy, going to. improv jams/workshops and seeing standup shows. my favorite funny. movie is tell your friends . (it's hard to find, but worth the. effort.). . i'm restless. i work a lot both at my job and at home on my own. projects.. . i've found that making music is a great way to relax and bring. people together.. . i greatly enjoy the company of friends and family.. . too many lines of this self-summary start with \"i\"", + "img": "user_pixel/m-2436239-300x450.jpg", + "preference": "gay", + "sex": "Male", + "user": 76 + }, + "model": "earlydating.Profile", + "pk": 76 + }, + { + "fields": { + "age": 41, + "bio": "i'm tall, very attractive and in great shape. half english and half. maltese, i am well educated and travelled, a great. conversationalist, warm, loving, a good cook, very much into the. outdoors and right at home at a fancy joint and heels. i love to. entertain, actually i love to bring friends around a table and. watch the energy grow and the food and wine diminish. i sometimes. go into the kitchen so i can listen to the sound that makes.. . i am successful in my career and my life is pretty busy with. friends, my dog, my yard, workouts and travel. it would be great to. share some of those things with an other, share a different. perspective and learn some new things to boot.", + "img": "user_pixel/f-371795-1200x674.jpg", + "preference": "straight", + "sex": "Female", + "user": 77 + }, + "model": "earlydating.Profile", + "pk": 77 + }, + { + "fields": { + "age": 31, + "bio": "i think hot air balloons are wonderful although i've never been in. one. right now, i particularly i like: being forthright, the news,. bike riding, sobriety, cooking steak and vegetables, taking baths,. making playlists, kink, and kindness.", + "img": "user_pixel/f-2439495-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 78 + }, + "model": "earlydating.Profile", + "pk": 78 + }, + { + "fields": { + "age": 24, + "bio": "update: recently out of a 3 1/2 year relationship, so have at me. boys, i'm lonely these days. ;) just please dont expect to rush. into anything.. . hello. my name is (Just read already!) and i'm a manipulatrix. i mean that i. like to play mind games with people. this probobly sounds snobby. and cruel, but it really isn't. i just push some factors around to. make for some very interesting and memorable situations. everyone. who knows me loves me for it because there is never a dull moment. when i am around. this skill stems from the fact that i have a hard. time saying things exactly as they are. i don't lie, except by. omission (unless i'm talking to my mother), but i don't come out. and say the blatant truth either. i use this skill to endear myslef. to others to the point where i am literally viewed as an angel.. this persona is further influened by the fact that i have very. gothic/romantic sensibilities. however, if you ask me a direct. question, you *will* get a direct answer. the trick is most people. don't think to do it and give me too much leeway to have fun.. . some fun facts:. - i dance around in the kitchen while making/waiting for food. - i watched fellowship of the ring 17 times in theaters. - i love having spiders in my house.. - i wanted to be the pink power ranger when i grew up. - i rolled around in the mud in high school during pe, *for*. pe. - i have a guard cat that lies on my doorstep, growls when people. come into my yard and likes to eat homemade cookie dough and hot. chocolate; i think this fact on its own reflects what kind of. person i am. . 3 things that never fail to make me a giggling idiot. 1) water in just about any form: rain, fog, pool, sprinklers,. washing dishes, not to mention... bath time! *sqeaks rubber. ducky*. 2) cantering on a horse. 3) making out. . i am romantic, quirky, and blonde", + "img": "user_pixel/f-371817-600x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 79 + }, + "model": "earlydating.Profile", + "pk": 79 + }, + { + "fields": { + "age": 32, + "bio": "i am the type of girl who is comfortable getting all dressed up for. a night out on the town to lounging on the couch watching a movie.. i enjoy both and always want to have variety in my life. i try to. have a good time in any situation. it is important for me to be. able to make every experience a positive one. the majority of the. time i am smiling and laughing! i am extremely friendly, talkative,. funny, beautiful, sexy, smart, successful, and caring.i am very. happy with my life right now. i have a great job, amazing dog, and. supportive friends & family. i always have goals whether it be. for my career or personal areas in my life. i continue to strive. for more, grow my successes, learn from my failures, and have the. best possible future.", + "img": "user_pixel/f-1757234-1200x810.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 80 + }, + "model": "earlydating.Profile", + "pk": 80 + }, + { + "fields": { + "age": 29, + "bio": "fun. real. genuine. athletic. intelligent. sarcastic. low key.. honest. adventurous.. . truly adore drinking a beer and watching a game, namely. basketball.. . always striving to learn and grow and be the best version of. myself, thus seeking out individuals to challenge and push. me.. . i love my family with all i've got. they are amazing and talented. and funny and pretty much awesome! they are my mirror and my truth,. good and bad and that is priceless.. . my perfect day includes a walk in the sun, some form of basketball,. music, a bbq or bonfire, iced coffee, great conversation that. teaches me something and makes me laugh and smile... and maybe an. adult beverage or two.", + "img": "user_pixel/f-2283967-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 81 + }, + "model": "earlydating.Profile", + "pk": 81 + }, + { + "fields": { + "age": 32, + "bio": "i'd say i'm creative, passionate, artistic, crafty, communicative,. earthy, organized and motivated.. . i try to enjoy life to the fullest while taking care of. business.. i aim to live a healthy, active lifestyle while trying to maintain. a balance.", + "img": "user_pixel/f-2451613-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 82 + }, + "model": "earlydating.Profile", + "pk": 82 + }, + { + "fields": { + "age": 32, + "bio": "i try to live one day at a time and i try to be conscious about. everything that i do. self-awareness is key to contentment and. happiness.. . i like the idea of making myself uncomfortable about something: a. place to go to, an adventure to pursue, a group to join, a meeting. with someone important, or do something that requires hard work,. dedication and patience. the idea of being out of my comfort zone. gives room for learning and that's also when i know something. exciting is about to happen. the results are oftentimes rewarding. and i like the natural high that comes along with that.. . i like to plan and take action to pursue / materialize that. plan.. . i like to correspond with anyone interesting and has a positive. outlook on life.. . not looking for romance. (i know, kinda ironic that i registered. here.)", + "img": "user_pixel/f-371743-666x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 83 + }, + "model": "earlydating.Profile", + "pk": 83 + }, + { + "fields": { + "age": 36, + "bio": "i'm a makeup artist specializing in special effects makeup. i love. cats, not too big on dogs. i like watching horror movies and really. bad movies, cooking, drawing, and playing video games. i'll. probably kick your butt at pinball. i hate sports, tarantulas, and. romantic comedies. basically i'm a 12 year old at heart, but know. when to act mature when i need to. \"normal\" people scare me. i'm. not interested in \"hook-ups\" so if you're interested in a one night. stand please don't message me.", + "img": "user_pixel/f-371675-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 84 + }, + "model": "earlydating.Profile", + "pk": 84 + }, + { + "fields": { + "age": 22, + "bio": "i'd like your finest milksteak please. and not to have to write a. self summary of a summary. it's daunting and tedious.", + "img": "user_pixel/f-371869-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 85 + }, + "model": "earlydating.Profile", + "pk": 85 + }, + { + "fields": { + "age": 33, + "bio": "i am a geeky. nerd who likes. building things, especially computer games and other odd engineering projects.. i live in san. francisco and i feel it is a perfect blend of culture and technology. i have built a wearable. computer and done major modifications to my prelude to get it. up to racing spec. i love attending igda and other game dev meetings. i like. classical music. as well as industrial (nin, tool, rammstein,. etc...) my favorite author is neal stephenson and i love the. movie equilibrium. i also love fps games.. . i am nerdy, introverted, and thinking", + "img": "user_pixel/m-245261-900x675.jpg", + "preference": "gay", + "sex": "Male", + "user": 86 + }, + "model": "earlydating.Profile", + "pk": 86 + }, + { + "fields": { + "age": 26, + "bio": "hello!", + "img": "user_pixel/f-371905-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 87 + }, + "model": "earlydating.Profile", + "pk": 87 + }, + { + "fields": { + "age": 27, + "bio": "my husband and are a monogamish couple who are looking for a man to. satisfy my needs...message me for further details on what those. might be. life is busy so a flexible schedule on your end is. helpful.. . watching and participating on his end is not required but is. enjoyed occasionally if agreed upon. he is not bisexual but does. thoroughly enjoy watching my get mine and potentially get action. from me at the same time.. . i can be looking for a one-night thing, though i'm open to other. arrangements - no romantic emotional attachments will be had.. . ~monogamish: a term coined by dan savage, a great sex columnist,. for a committed couple who allow sexual exploration and. satisfaction outside of their relationship.~", + "img": "user_pixel/f-2383504-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 88 + }, + "model": "earlydating.Profile", + "pk": 88 + }, + { + "fields": { + "age": 24, + "bio": "i'm new to the bay area!. . i like long walks on the beach...?. . existence is futile; this is a liberating concept rather than a. depressing one.. . i like to go to shows, i enjoy spontaneous living room dance. parties, secretly i'm a cat lady.. . i prefer to identify as pansexual. i just like people. correction:. i like to frick all kinds of people, i do not necessarily like. people in general.. . i'm very into movies, as well as art, books, music (yes this is a. broad statement, i know).. i prefer living as independently of the government (and their evil,. brainwashing, cattle-herding approach to, uh, governing) as. possible.. i don't believe in religion but am fascinated by satanism,. luciferianism and other similar things, and collect religious. paraphernalia.. . my goal in life is to get the broadest perspective possible. to. poke all the corners, experience and understand all extremes. our. time here is finite, and i live my life accordingly. i want to do. and see and experience everything, go everywhere. the only thing i. really give a frick about doing in life is being able to travel the. world.. . sex and sex-work positive.", + "img": "user_pixel/f-2047751-618x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 89 + }, + "model": "earlydating.Profile", + "pk": 89 + }, + { + "fields": { + "age": 29, + "bio": "welcome to my profile. take a look around and let me know if. something connects. i haven't spent much time on the dating scene,. but now seems like the right time to be more intentional about it. and go where the daters are (at least virtually, at first).. . to summarize me: i'm a lefty and myers-briggs infj, born in texas but raised in the. bay area, and a progressive christian. i. love living in san francisco.", + "img": "user_pixel/f-371983-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 90 + }, + "model": "earlydating.Profile", + "pk": 90 + }, + { + "fields": { + "age": 24, + "bio": "i recently moved to sf to experience the city and live closer to my. friends. i am a peruvian and i teach zumba in my free-time. i love. going out with my friends on the weekends and also staying active.. i'm laid back and easy going, and mostly just looking to meet new. people.", + "img": "user_pixel/f-2039406-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 91 + }, + "model": "earlydating.Profile", + "pk": 91 + }, + { + "fields": { + "age": 32, + "bio": "they've been telling me i'm 31 since my last birthday. i love music. and when i say all kinds i really mean all kinds.. i dance, i work a part time job, and i try to love as best i. can.. . i'd love to meet people who are kind, compassionate, and able to. laugh at themselves. i think i just realized i am a cross between. mary katherine gallagher and lucille ball-sort of awkward and. having to 'splain myself.. . i am a big dork, cute, and sensitive. loyal and trustworthy, almost. to a fault. i tend to have a few amazing friends as opposed to many. acquaintances and i'm there for them whenever they need someone to. listen.. . oh and uh.... i have no interest in dating you and your girlfriend.. lol. sorry for the disclaimer but i've had a few unwanted invites. and requests so i guess i should state now that swingin' and. threesomes are not why i'm on here.", + "img": "user_pixel/f-2176117-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 92 + }, + "model": "earlydating.Profile", + "pk": 92 + }, + { + "fields": { + "age": 53, + "bio": "i have never prompted people to describe me as nor have i. consciously attempted to portray myself as- one of the strangest. persons around and about, but, there it is... even mother agrees. i. cannot begin to describe myself and every time i have tried it goes. horribly wrong.", + "img": "user_pixel/m-1862356-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 93 + }, + "model": "earlydating.Profile", + "pk": 93 + }, + { + "fields": { + "age": 24, + "bio": "i'm always looking to have fun or go on an adventure - work hard. and play hard. i'm happiest snowboarding and biking, hoping to learn to kiteboard or get into. surfing since the. water is closer than the snow. i'm no good at dancing but i love. rocking out to music. i'll always take a flavorful beer over a. girly drink.", + "img": "user_pixel/f-371783-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 94 + }, + "model": "earlydating.Profile", + "pk": 94 + }, + { + "fields": { + "age": 26, + "bio": "as much as one can summarize himself, i'll try. i'm coming to the. end of my masters program. i'd like to take a year off after and. see what's out there while i apply for phd programs. i spend most. of my days thesis writing, taking walks, grading papers, reading. theory, watching tv shows on dvd, attempting to write longer form. fiction (and usually failing), looking for a new job, having. intense conversations with a wide variety of people, and/or surfing. the web (i'm addicted to tumblr, the huffington post, and. cracked.com). i'm half italian and half british and i act like it.. mostly because i am annoyingly amorous while being incredibly. reserved at the same time.. . here are some random facts about me;. . i am mr. darcy...without the money...but still have the face...the. face saves it.... . i'm the only person i know who uses the future progressive tense in. english.. . i ride roller-coasters but never scream.. . as far as annoying habits go, sometimes i ask \"what?\" even though i. heard what you said...it's a reflex, i'm not sure why i do it.", + "img": "user_pixel/m-282558-500x750.jpg", + "preference": "straight", + "sex": "Male", + "user": 95 + }, + "model": "earlydating.Profile", + "pk": 95 + }, + { + "fields": { + "age": 25, + "bio": "a young and passionate comic, hustling hard in the scene of stand. up comedy. he first stepped on stage as a comedian in january of. 2011, and has already blessed such stages as, tommy t's comedy. house, the comedy store, the purple onion, the improv san jose, the. punchline sacramento, and the punchline san francisco, along with. countless others less notable by name alone. he has opened for. bobby lee and neal brennan. he wins over every crowd with his. cleverly dirty subject matter presented in the obscure wordings,. often outing himself with embarrassing and hilarious stories.. though his act may leave you in tears of laughter, craving a cold. shower and a twinkie, his professional attire (i.e. signature bow. ties) will allow you to leave with your self respect in tact.", + "img": "user_pixel/m-227699-900x600.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 96 + }, + "model": "earlydating.Profile", + "pk": 96 + }, + { + "fields": { + "age": 32, + "bio": "i am going to be on hiatus from meeting new people on the site for. a long while. i barely have enough time for those in my life now. i. am in a very loving relationship with tattyzapper and i could not be happier.. she is truly the love of my life. every day with her is a true joy.. i sincerely hope that everyone can find the best thing of their. lives like i did.. . *now with new zesty flavor!*. i have now lived in the bay area longer than i have lived any other. single place.. . though my area of bay area studies is the ins and out of the beast. (remember kids east bay is just pig latin for beast). though i do. have a second major in berkeley/albany studies. with a minor in sf. dives bars and places to get snacks.", + "img": "user_pixel/m-2358801-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 97 + }, + "model": "earlydating.Profile", + "pk": 97 + }, + { + "fields": { + "age": 28, + "bio": "i am an eclectic mexican techie. bikes, travel, yoga, mezcal and. scotch are among my always changing interests. i love startups i. mentor entrepreneurs and other geeks (particularly from mexico) to. build awesome stuffs and companies.", + "img": "user_pixel/m-205770-725x484.jpg", + "preference": "straight", + "sex": "Male", + "user": 98 + }, + "model": "earlydating.Profile", + "pk": 98 + }, + { + "fields": { + "age": 29, + "bio": "i'm gal w/a serious case of wanderlust who finds herself happily. staying put in san francisco. i've been living in the city for more. than a year after traveling, working and living overseas for 3. years in korea, australia & ireland + a stint volunteering in. india. before that, i was a magazine writer and a web editor in. southern california. now, i bide my time copywriting w/some. fabulous people at a small email marketing company (and no, this. has nothing to do w/'spamming' people - who do you think i am?).", + "img": "user_pixel/f-2047751-618x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 99 + }, + "model": "earlydating.Profile", + "pk": 99 + }, + { + "fields": { + "age": 39, + "bio": "just a very happy dude:). and by the way, i am a cancer survivor so. i pretty much respect and adore life every second of the day:)", + "img": "user_pixel/m-199906-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 100 + }, + "model": "earlydating.Profile", + "pk": 100 + }, + { + "fields": { + "age": 26, + "bio": "\"to love things as if they are people is an illusion. to love. people as if they are things is violence. to love people as if they. are people is justice. to love people as if they are ourselves is. love.\". . i really like this quote and i think it's so true.. . i'm currently in school for massage therapy and enjoy it a lot.in. my free time i like to spend it with family or friends. we usually. have some kind of function happening that involves good food and. company. outside of that i really enjoy getting out to shows to see. local bands and interesting flicks - i love camping, four-wheeling,. hiking, fishing, taking road trips out to half moon bay .. i'm a. crafty girl that likes to make anything i can with. paper-glue-glitter-yarn-paint-clay-chains-etc. etc. etc. .. i love. to read and write although i've gotten pretty lazy about i over the. years.. it's something i would like to pick back up on soon.... begin writing again on a daily basis and possibly write a book .... other interests hmmm... i recently started doing stand up comedy. which was a lot of fun... i definitely plan to do that again...", + "img": "user_pixel/f-371983-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 101 + }, + "model": "earlydating.Profile", + "pk": 101 + }, + { + "fields": { + "age": 34, + "bio": "i'm here for the same reason we all are- to meet new and. interesting people and maybe find a guy to spend some quality time. with. i'm a world class listener, i'm passionate about knowledge. and learning new things, i love to travel and experience new. cultures, and simultaneously relaxed and enthusiastic about life's. simple pleasures. if you share the travel bug, i'd love to hear. about some of your funniest travel adventures!", + "img": "user_pixel/f-1938271-1200x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 102 + }, + "model": "earlydating.Profile", + "pk": 102 + }, + { + "fields": { + "age": 32, + "bio": "sane, intelligent laid back guy in the bay area, looking for a. friend, boy/girlfriend and/or anything else that we both agree will. be safe and fun!. i dont use drugs, and i would prefer to meet the same.. i love books, music, culture in general, having a nice night of. fine cuisine, a great movie and an engaging conversation.. std free, hiv neg, responsible, with a job and no major. issues...please be the same, or at least close to it. :). my type is masculine and intelligent man, and women who are classy,. feminine, but absolutely drama free who actually enjoys the fact i. am into both sexes. i am, however always open to chat with anyone. and see if the chemistry works.. around my age please (no older then 38yo.) i am sorry but not into. bears either. (i know...i am a cub myself, but sorry guys...just. not my style...no judgment intended...). . i am fun, masculine, intelligent and well read.", + "img": "user_pixel/m-261962-900x593.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 103 + }, + "model": "earlydating.Profile", + "pk": 103 + }, + { + "fields": { + "age": 34, + "bio": "all things to all people: a bi-poly switch (who plays vanilla more often than. not, so not just kinkster friendly). i am married to the wonderful. rssanfrancisco,. but still open to new friends, lovers, or other (which would be. what, exactly?). i am the typical pampered, horribly-busy,. overly-contented san franciscan: elitist liberal, feminist-pseudo-intellectual. but. thankfully, at 33, i am too old for skinny jeans, so at least i'm. almost not a hipster. ;). . i'm really bad about responding to people here, as i haven't done. much online dating, but the window shopping is fun. if i don't get. back to you, it's nothing personal; i've just never hooked up with. anyone from okc yet.. . i am open, sensual, and insightful", + "img": "user_pixel/m-2457344-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 104 + }, + "model": "earlydating.Profile", + "pk": 104 + }, + { + "fields": { + "age": 28, + "bio": "funny dude who was raised by women.. affectionate and independent.. witty charismatic and sometimes shy.. i'm too jaded for the nice girls and too nice for the jaded. girls.. recovering gamer.. chronic punk.. i'm pretty fricking han solo.. . things have calmed down after the holiday/new years pandemonium and. i'm available for polite society again.. . i'm a good guy, and i take care of myself. but i've had my fill of. long committed relationships over the years and am not looking for. anything super serious right now. if you're looking for a new. friend yeah i'm up for that. but if you're looking for the love of. your life, future husband, or future baby's daddy you should. probably stop here.", + "img": "user_pixel/m-201918-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 105 + }, + "model": "earlydating.Profile", + "pk": 105 + }, + { + "fields": { + "age": 22, + "bio": "hi i'm becca and i'm a queer gal obsessed with my friends,. traveling, and cooking up delicious meals. anything with avocado or. pesto is great and i make a mean vegan burger. i'm a little bit shy. but a total goofy weirdo once you get to know me. i say things like. \"oh wow that's so beautiful\" or \"yeah, great, perfect\" in a stoner. voice all the time, and people think i'm joking but sadly i just. talk like that sometimes. my moto is \"frick it all!\" and i love to. laugh and just chill out and have a good time but i also like to. keep it real y'all. my biggest pet peeves are unreliability are. inconsistency. oh and i'm from delaware! sometimes people find that. interesting.", + "img": "user_pixel/f-371673-1200x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 106 + }, + "model": "earlydating.Profile", + "pk": 106 + }, + { + "fields": { + "age": 52, + "bio": "i love fixing up the places where i live. i once put in a patio. using 2500 free recycled bricks. it turned out beautifully. lately,. i have been working on my garden and installing outdoor lighting. i. enjoy cooking and gardening.. . i love music from a variety of genres. i have cds for classical,. country, electronic, rock, jazz, blues, celtic, tribal african and. many other types of music. i love to dance. i will probably take. ballroom dancing classes sometime soon.. . i enjoy cross country skiing, vacationing in tropical paradises,. spa retreats, wine tasting, fine dining, hiking, bike riding, river. rafting, weekend getaways, road trips, bbqs and international. travel (thailand and costa rica are beautiful). i love walking and. playing with my dog. i find yoga to be very relaxing. i would like. to take up golf as well mainly to enjoy the beautiful. surroundings and quality time with friends.. . a recent study showed that what most people feel makes them the. happiest, above children, a spouse, meaningful work, wealth,. success or stature is friendship. (apparently, a short commute. came in as a close second.) 8-) i believe the best life. partnerships are founded on friendship. i love to listen and share. ideas, to philosophize, to offer and receive support and. understanding. mostly i love to laugh and to make my friends laugh.", + "img": "user_pixel/f-372027-1200x795.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 107 + }, + "model": "earlydating.Profile", + "pk": 107 + }, + { + "fields": { + "age": 39, + "bio": "my friends describe me as warm, witty, thoughtful and dependable. i. am level-headed but have a sassy side and a dry sense of. humor.. . i've lived in the us for ~17 years and have adopted the best of the. east and the west. i enjoy spending time with friends and family. over a glass of wine, a meal, or a movie but also enjoy \"me\" or. \"alone\" time. i also enjoy hiking, traveling (recent travels. include sicily and kenya and tanzania), reading fiction, watching. movies and playing with my brother's dog.. . i value my friends and family, a life of learning, warmth,. sincerity, and honesty.", + "img": "user_pixel/f-2039486-300x225.jpg", + "preference": "straight", + "sex": "Female", + "user": 108 + }, + "model": "earlydating.Profile", + "pk": 108 + }, + { + "fields": { + "age": 24, + "bio": "i'm a part-time college student aspiring to teach at the college. level in ethnic studies concentrating on asian-pacific islander. studies. i was born and raised in daly city, although i'm a kid. from the suburbs, i'm a city boy at heart. i'm filipino, two. younger sisters, parents, grandparents, and a dog. i have 27 first. cousins, majority of them live here in the states. i'm a laid back. person who just goes with the flow. i work part-time as a bank. teller in the financial district in san francisco and i'm a dance. assistant for barangay dance company, a non-profit filipino folk. dance organization based in san francisco; in addition to a. background with tahitian dance through the group, nemenzo based in. daly city.", + "img": "user_pixel/m-245261-900x675.jpg", + "preference": "gay", + "sex": "Male", + "user": 109 + }, + "model": "earlydating.Profile", + "pk": 109 + }, + { + "fields": { + "age": 23, + "bio": "i am.... niki. 22. a full-time student (trying to get into nursing school).. a cashier at the theaters. random, easily amused, nice, mean,. caring, gullible, easily scared, patient, sensitive...i don't know. what else. why can't you just message me to find out?", + "img": "user_pixel/f-2363787-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 110 + }, + "model": "earlydating.Profile", + "pk": 110 + }, + { + "fields": { + "age": 32, + "bio": "i love to{read}, im always interested in {learning new things}. i. find {humor} in the oddest things. im very {private}, and. {respectful} with {class). i am non-impressed by material things.", + "img": "user_pixel/f-371559-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 111 + }, + "model": "earlydating.Profile", + "pk": 111 + }, + { + "fields": { + "age": 30, + "bio": "trying out this whole on-line thing.", + "img": "user_pixel/f-2282604-6000x4000.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 112 + }, + "model": "earlydating.Profile", + "pk": 112 + }, + { + "fields": { + "age": 26, + "bio": "im at a great turning point in my life- and i want to embark on new. adventures with new friends.. i am a very humble person- and genuinely loyal and caring to those. who respect me and cross paths with me.. i'm always smiling and love laughing- loudly!", + "img": "user_pixel/f-2058749-982x1323.jpg", + "preference": "gay", + "sex": "Female", + "user": 113 + }, + "model": "earlydating.Profile", + "pk": 113 + }, + { + "fields": { + "age": 35, + "bio": "as a soft-spoken optimist, this easy-going, light-hearted gentleman. enjoys his residence in san francisco. the beauty of the bay is. worth my daily commute back after a long day from santa. clara.. . grateful for life's opportunities and the joy they bring, i am a. realist who looks ahead. leading a simple life, i feel that. expectations can intrude on the surprise that our existence. holds.. . born and raised in new york city, i moved several years ago to the. bay area, and four years ago to san francisco. food seems to be big. in my life; enjoying eating out as much as dining in.", + "img": "user_pixel/m-230206-540x675.jpg", + "preference": "straight", + "sex": "Male", + "user": 114 + }, + "model": "earlydating.Profile", + "pk": 114 + }, + { + "fields": { + "age": 69, + "bio": "i just have to laugh, it is so funny. i must be a real dog because. i tried the new gimmick that okc is doing by having people vote on. your pictures and rate the one that they best thinks is \"my best. face\" and it is a picture of my dog, nikita!. . they say, \"this photo of netsecurity is the ultimate face.. it is superior at attracting the kinds of people netsecurity. likes.\". . well, she is gorgeous, i love her dearly, and she's getting older,. like us all so maybe it might tell you something about me. take a. peek at my photo album.. . next you. cupid has no arrows in his quiver that reached your. heart? i'm so sorry. i hope you get one special delivery. soon.. . meanwhile, life is short, eat dessert first, break the rules,. forgive quickly, kiss slowly, love truly, laugh uncontrollably, and. never regret anything that made you smile.. . now me. hmmm, shall i be totally off the wall or should i be. serious? tough choice. i'll have to think about this some. more.. . anyway, on with the show. all life is but a stage, right? i'm not. sure about my lines..., hey, prompter, got my script? who's. entering stage right? what're you saying? this is improv? oh s$%(Just read it already!),. and i'm supposed to be funny? double s%(Just read it already!)&*ed!. . oh, btw, i'm now beardless, the job market you know... i'll get a. new photo of me up here soon, well as soon as i can convince my. daughter to take a flattering one of me. :). . yes, i have a teenage daughter, oriana, (19 going on 29). yes, it's. crazy. details? ask, i have no problem explaining how a 69 year old. got a 19 year old daughter. this page is about me so i won't. explain now.", + "img": "user_pixel/m-281426-1000x667.jpg", + "preference": "straight", + "sex": "Male", + "user": 115 + }, + "model": "earlydating.Profile", + "pk": 115 + }, + { + "fields": { + "age": 56, + "bio": "original, jewel box of a minky. frisky rascal with a sweet sense of. humor. open hearted, compassionate, intense, funny, self-aware,. caught somewhere between the mundane and the magnificent. courage,. honesty, vulnerability and tenderness valued in all forms. i'm a. mix of mid-western heart, new york intellect, and west coast. spirit. in life i often feel like an uninvited guest yet i am most. happy scheming adventurously in life and in love with another. i. see the poetry in everything, with one eye on art and culture and. the other invested in the language of forests and rivers and vast. open spaces. i live in a deep inner landscape, androgynously left. of fem, dedicated to art and dharma, committed to a saner world. i. am attracted to creative, smart, loving women with passion and. emotional integrity and a big dash of humor who are ready and. willing to embrace each other and this broken planet.", + "img": "user_pixel/f-371977-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 116 + }, + "model": "earlydating.Profile", + "pk": 116 + }, + { + "fields": { + "age": 36, + "bio": "i'm a new age renaissance man. i'm light hearted and always be. laughing. i paint mystical, and abstract canvas for fun. i write. songs/poetry, and am working on my guitar preformence. i've been. into music production(off an on) for most of my life. i'm caring,. sensitive, and a good listener. i'm been into spiritual growth and. metaphysics for a several years. i'm a a natural empath and have. had to grow to own my energy.", + "img": "user_pixel/m-2362274-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 117 + }, + "model": "earlydating.Profile", + "pk": 117 + }, + { + "fields": { + "age": 32, + "bio": "everyone's cat has a crush on me. i hold hands with my friends. i. move snails off of the sidewalk. i can and will spend hours walking. around an art museum just processing. i miss my family and friends. in the midwest. i'm really lucky to be surrounded by people i could. live without, but would never ever want to. i light up when i. introduce people i care about to something or someone i. enjoy---food, music, stores, other friends, views, places, etc. i. really dislike ending sentences with prepositions and cringe if. someone says \"orientated,\" but i'm not the grammar police.. sometimes i feel like i'm living in the wrong time (i was really. supposed to be a 1940s pin-up or a 2040s leader of some amazing. nonprofit and driving a hovercar) but i get along just fine molding. college minds.. . i most admire people who are fearless (or near-to, really) and i've. really pushed myself the past couple of years---from quitting a. soul-crushing job to being unemployed to traveling by myself. through a country where i didn't/don't speak the language. yeah, i. still hide my tattoos from my mom and send my grandparents. thank-you cards---so i guess some people still scare me, but. they're only my relatives!. . what am i looking for? i want to be with people who are interesting. and interested. warm, honest, communicative. i want to laugh so. hard everyone has to look.. . i'm really brilliant at making mixed cds.. . it's this or finding god's match for me on. christianmingle.com.. . words with friends: amelrose1", + "img": "user_pixel/f-2439625-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 118 + }, + "model": "earlydating.Profile", + "pk": 118 + }, + { + "fields": { + "age": 19, + "bio": "i am a very chill person who likes to hang out with small groups of. people. i love my family and appreciate the times spent. together.. . i'm not the type of person who likes to. party/drink/smoke/stiff/etc. i take pride that i can live and. remember every moment.", + "img": "user_pixel/m-45726-725x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 119 + }, + "model": "earlydating.Profile", + "pk": 119 + }, + { + "fields": { + "age": 30, + "bio": "what can i say about myself on the web. after the military, i moved. out to california and started working as a private contractor. when. i'm not under a car i'm driving one. i'll leave the rest blank. cause you'll judge me from my picture anyway's.", + "img": "user_pixel/m-52498-725x481.jpg", + "preference": "straight", + "sex": "Male", + "user": 120 + }, + "model": "earlydating.Profile", + "pk": 120 + }, + { + "fields": { + "age": 26, + "bio": "i have: neat handwriting. good posture. lots of books. i tend to:. over-think things. spill on myself. talk a lot when i'm nervous. i. almost never: get truly angry. break a promise. forget a face. i. nearly always: laugh at bad puns. want to hike longer. will have. another beer!. . i'm a happy and thoughtful person who has a pretty low threshold. for bullshit. this means i am pretty upfront with people, and it's. easy to tell how i'm feeling. besides that, i like making. inappropriate jokes at generally inopportune times, but then am. charming so everyone feels at ease with my occasional. awkwardness.. . my friends know me as funny, honest and supportive. i have a few. really really close people in my life, but i also like cultivating. a wide group of friends.. . i was born and raised in san francisco and am still deeply in love. with the bay area. other places are super great too, and i like. going to visit them, but this place.... it's my home.", + "img": "user_pixel/f-371517-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 121 + }, + "model": "earlydating.Profile", + "pk": 121 + }, + { + "fields": { + "age": 33, + "bio": "i'm sweet, silly, and on top of my life. easy going. open minded,. and understanding.", + "img": "user_pixel/f-371999-595x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 122 + }, + "model": "earlydating.Profile", + "pk": 122 + }, + { + "fields": { + "age": 26, + "bio": "i'm an opera singer! i have kind of a weird sense of humor but love. to keep people laughing and love having fun. i guess i would. describe myself as generally cheerful and optimistic- it is. difficult to get me upset or to think negatively for more than a. few minutes.. . i like nature and pets, but have a hard time with bugs! i love bees. though and used to be a beekeeper. i have two cats that i love. dearly. i'm originally from the east coast and miss some things,. but san francisco is slowly but surely inching its way into my. heart. i love to travel and have been to several countries to sing.. did i mention i was amost kidnapped in britain? it still hasn't. turned me off to travel!. . intelligence and kindness are important to me in friendships and. relationships. i love being challenged and love to learn and try. new things. i'm always up for an adventure!", + "img": "user_pixel/f-371743-666x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 123 + }, + "model": "earlydating.Profile", + "pk": 123 + }, + { + "fields": { + "age": 38, + "bio": "i dislike the spotlight. and \"tell me about yourself in 1000 words\". is a giant one. my story is long (whose isn't), and like to tell it. in person.. . i like to talk politics and religion with strangers, so maybe i'm. just boorish. dunno. i would rather get upset and have to agree to. disagree at the end of a lively discussion than make hours of \"oh,. nice weather\" chatter and be calm and polite.. . i love food. writing about it, procuring it, cooking it, paring it. with wine, and tasting it. i wish i also loved working it off.. italian, greek, french, thai, you name it.. . i read the way some people, well, read. i have a book within reach. at all times. usually more than one, often 3. i like to have a tome. of knowledge, something light and a conversation starter going all. the time.. . i am right handed, left-brained, and smartish", + "img": "user_pixel/f-1732575-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 124 + }, + "model": "earlydating.Profile", + "pk": 124 + }, + { + "fields": { + "age": 27, + "bio": "i've recently moved to san francisco from vancouver, bc and i'm. looking forward to meeting new people and exploring this great. city.. . filling this is a tedious process, some of you girls have taken the. time to fill it out in detail. respect! i would be glad to write a. more personalized, detailed response more relevant to any questions. you might have. :)", + "img": "user_pixel/m-52498-725x481.jpg", + "preference": "straight", + "sex": "Male", + "user": 125 + }, + "model": "earlydating.Profile", + "pk": 125 + }, + { + "fields": { + "age": 31, + "bio": "i love hanging out with people that mean the most to me, like my. friends and family. i love surrounding myself with honest and. caring people. i like all sports, but softball is my favorite. i. know how to have a good time, and try to stay positive. i can be. spontaneous at times and usually go with the flow. i'm a very. active person, and i love getting out and doing everything and. anything. i can't stand lazy people, or people that don't follow. through with what they say. what you see is what you get, i wear my. heart on my sleeve. i believe that if you don't learn to forgive,. you will never be happy. i can't really deal with people who are. painfully shy. i always try to include everyone in conversation. (never ignoring anyone) but i really don't want to babysit either.. i'm the type of person where if someone else is not having fun, i. feel responsible. i am always willing to try anything once, so i. hope you are as well! you will find that i'm a very straight. forward person, so i am very open. i expect the same in the people. close to me. i also extremely value honesty. i know from personal. experience that being honest is often very difficult, and that. ignoring a problem or issue is the easy way out. if you can't step. up to the plate and be a man, don't bother contacting me. (too. harsh?):-)", + "img": "user_pixel/f-371559-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 126 + }, + "model": "earlydating.Profile", + "pk": 126 + }, + { + "fields": { + "age": 32, + "bio": "i'm educated, poor and happy.", + "img": "user_pixel/m-211526-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 127 + }, + "model": "earlydating.Profile", + "pk": 127 + }, + { + "fields": { + "age": 31, + "bio": "i like being queer, vegan, politically aware, fun, funny, loving,. and knowing that change is good. i like being a part of change. i. have a lot of compassion and i will always share it.. i've never actually been \"in\" the closet, my family is pretty. liberal. however, my father did disown me for my queerness and the. fact that i like people of color. his loss and ignorance. since i. first started dating i've been poly, but have recently experimented. with monogamy. i'm open to both.. i've had full custody of my sister since i was 21, she's 18 now and. i would say the most steady and wonderful thing in my life.. one of my closest friends said \"you are like sour patch kids. you. have to burn your fricking tongue off to get to the sweet part\". i. think that is accurate, i definitely don't let folks in quickly and. my sarcastic, quick witted, kinda backwards sense of humor often. scares people off...but i'm awesome when you get to know me.", + "img": "user_pixel/f-371785-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 128 + }, + "model": "earlydating.Profile", + "pk": 128 + }, + { + "fields": { + "age": 31, + "bio": "smiling more and more every day, of late.. . i love the impact of visuals and music condensed into a perfect. movie trailer; the power of sunlight and human interaction to makes. things just a little bit better, even when things are already. great. living near a serious body of water, my bike, human warmth.. i believe stretching makes for a better day.. . through interviews and networking in trying to land a job, people. asked \"why san francisco?\" a silly question, but i entertained it.. i'd recount the story of visiting when i was 15, and falling in. love with (making eyes at) a barista while waiting for my parents. to get their coffee, and laughingly say that ever since then this. city's had an aura of romance around it. i fail to point out that. when i asked said barista for the key to the restroom, his smiling. eyes spread to his totally toothless mouth. a special aura of. romance, indeed.. . i'm moving most recently from chicago, where i was in school.. before that i lived and worked in southeast asia for a few years,. and before that i spent college and some time in dc. but i'm here. now, and here is spectacular.", + "img": "user_pixel/f-372037-1200x800.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 129 + }, + "model": "earlydating.Profile", + "pk": 129 + }, + { + "fields": { + "age": 61, + "bio": "i am a funny, warm social person. i have many friends and enjoy. spending time with them. i have done a lot of traveling for work in. the past. i am physically active and try to stay fit. i care deeply. about world; i lend my voice and time to issues that concern and. inspire me. i love long walks, either a leisurely walk on the beach. or traipsing along the streets of the many wonderful towns, cities. and villages here and abroad. i love dancing--and singing to old. rock'n roll, motown and show tunes.", + "img": "user_pixel/f-2383504-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 130 + }, + "model": "earlydating.Profile", + "pk": 130 + }, + { + "fields": { + "age": 28, + "bio": "i recently moved to the bay area from paris (france), where i have. spent my whole life. i am still adapting to my new environment. here: it's much more of a culture shock than you'd believe !. . one of the big pluses here in the south bay is the sun, which does. not make so many appearances where i grew up !. apart from aging biology (my research topic), i have many passions. in life, which include bt are not limited to salsa dancing and korean culture.. . and by korean culture, i mean the dramas, the language, the food. and history ! i got into loving this culture thanks to great korean. dramas, like my. girl or my name is (Just read already!). soon.. . i love to bake and cook, mainly because of the pleasure to. share delicious food with people around me :)", + "img": "user_pixel/f-1796836-600x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 131 + }, + "model": "earlydating.Profile", + "pk": 131 + }, + { + "fields": { + "age": 39, + "bio": "i am really social and get easily excited about new artistic. endeavors and reading and writing, have a passion for life and take. to the visceral aspect of living.. . i have been involved in art most of my life, i love dancing,. particularly to latin music, i love hiking outdoors, camping.", + "img": "user_pixel/f-2451613-300x450.jpg", + "preference": "gay", + "sex": "Female", + "user": 132 + }, + "model": "earlydating.Profile", + "pk": 132 + }, + { + "fields": { + "age": 23, + "bio": "i moved to the bay from wisconsin this past summer after graduating. to teach middle school.", + "img": "user_pixel/f-372027-1200x795.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 133 + }, + "model": "earlydating.Profile", + "pk": 133 + }, + { + "fields": { + "age": 33, + "bio": "i'm a native new yorker in the 7th year of my \"vacation\" on the. west coast. i work in the social services field at a nonprofit in. san francisco and am pretty easy going. i have a good sense of. humor, enjoy listening to music, reading and watching movies.. . i am kind-hearted, laid-back, and real", + "img": "user_pixel/m-199906-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 134 + }, + "model": "earlydating.Profile", + "pk": 134 + }, + { + "fields": { + "age": 27, + "bio": "hey there,. i'm not a real cowboy.. . i just moved to san francisco and want to find people who i really. like to spend time with.. i'm usually smiling, like strong women, and confident, nerdy men,. and house parties.. . my family emigrated from eastern europe when i was young, and i. grew up in the midwest. i like to travel a lot, exercise every day,. and be intellectually challenged or learn new skills more than just. about anything.. i'm socially confident, kind of a serious/old soul, and way more. playful once i know you.. . i spend my free time at libraries and museums, or out. trail-running, biking, or kayaking.. . this summer i want to learn how to make awesome photos with. instagram and videos with final cut pro, play tennis, sail, learn. to shoot a gun, and write fiction. i can add a dozen more things to. this list, but mostly i just want to find like-minded people to. joke with and chill with. i wouldn't mind finding a shopping buddy. or a swing dance buddy too.", + "img": "user_pixel/f-321470-1100x811.jpg", + "preference": "straight", + "sex": "Female", + "user": 135 + }, + "model": "earlydating.Profile", + "pk": 135 + }, + { + "fields": { + "age": 28, + "bio": "i am someone who wants to pursue the kind of life that i. want...been pretty happy about where i am right now but still need. to learn...a lot!. . i am easy going, optimistic, and dare to dream", + "img": "user_pixel/f-2283967-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 136 + }, + "model": "earlydating.Profile", + "pk": 136 + }, + { + "fields": { + "age": 25, + "bio": "my real name is (Just read already!).. i'm a nerd and proud of it.. i say \"bless you\" when people burp cause i find it funny.. i have a filthy, intelligent mouth.. i make fun of myself for being the token/oreo of most groups.. comedy gets me wet.. i like to stay whiskey neat.. i love my photographic memory.. i get anxiety just thinking about running out of weed.. complaining (excessively) is fruitless.. if i live to see it happen, i want to be \"older man funny\" like. louis c.k. and richard pryor.. don't tell me what to do.. frick bon jovi!!", + "img": "user_pixel/m-2436239-300x450.jpg", + "preference": "straight", + "sex": "Male", + "user": 137 + }, + "model": "earlydating.Profile", + "pk": 137 + }, + { + "fields": { + "age": 26, + "bio": "i connect best with people who know how to enjoy life and bring. even more to an already good situation. an attractive woman should. take good care of herself, have a sense of style without getting. caught up in the duty of appearance and pomp. a hint of ambition. turns me. bring love to your world, smile and participate!", + "img": "user_pixel/m-282484-1000x667.jpg", + "preference": "gay", + "sex": "Male", + "user": 138 + }, + "model": "earlydating.Profile", + "pk": 138 + }, + { + "fields": { + "age": 32, + "bio": "i wanted to use a quote from family guy here:. . \"peter griffin, quahog's native son, self-described huguenot.... don't know what that means... and community activist.\". . i later learned that huguenot has an actual meaning, so that was. sort of depressing.", + "img": "user_pixel/m-225751-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 139 + }, + "model": "earlydating.Profile", + "pk": 139 + }, + { + "fields": { + "age": 28, + "bio": "i'm a ca native. i've lived in the bay for most of my life now. i. work in it as some kind of computer 'expert'.... . i tend to stay pretty busy with work and classes. i'm into martial. arts, concerts, technology... rather fond of hats, rhythm, animals,. efficient driving, observation, sf parks, good whiskey...", + "img": "user_pixel/m-187210-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 140 + }, + "model": "earlydating.Profile", + "pk": 140 + }, + { + "fields": { + "age": 27, + "bio": "i like to play outside, work with my hands, get dirty, and move. heavy objects around. i also like to read deeply and widely, study. and learn on my own time, and converse playfully and meaningful. about a diverse range of topics. i'm searching for a balance. between the intellectual and the corporeal, and some partners in. crime who like to walk that line as well.. . i am curious, quiet, and passionate", + "img": "user_pixel/f-1938271-1200x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 141 + }, + "model": "earlydating.Profile", + "pk": 141 + }, + { + "fields": { + "age": 28, + "bio": "i'm a guy who is just enjoying what life has thrown my way. some. days are good some are bad, its a journey and i try to enjoy it. equally. i'm pretty sarcastic and am always joking around. i have a. great friends and can be found hanging out with them often. i enjoy. going to the movies, exploring new parts of the city and checking. out all the events i can. i am also somewhat creative and love. taking photos. i also enjoy sharing stories with others, learning. and telling about experiences we have had in our journey in life.", + "img": "user_pixel/m-230206-540x675.jpg", + "preference": "straight", + "sex": "Male", + "user": 142 + }, + "model": "earlydating.Profile", + "pk": 142 + }, + { + "fields": { + "age": 26, + "bio": "okay, yes it's a double profile. haha, but who said dating has to. be so traditional, being here in the first place isn't very. serendipitous. all that profile scanning, personality comparing,. it's not so easy without meeting in person. this way it's more fun,. and you get to bring a friend! so without further adieu...... . we are, darren (lip piercing) and josh (beard). we made this. profile mostly joking but thought it would be cool to actually set. up some double-dates. so if you like what we are all about, get a. friend and hit us up. :). . we have a production company together, mostly doing short films and. music videos.. . we are always outdoors, most weekends we can be found at gg park or. on a bike ride, or climbing a wall.. . darren has lived in sf for 7 years, and graduated from academy of. art for film and motion picture.. . josh has been in the city for 10 months and has been playing music. and traveling since high school.. . we are both super down to earth and very genuine, but the best way. to get to know us is in person! :)", + "img": "user_pixel/m-196717-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 143 + }, + "model": "earlydating.Profile", + "pk": 143 + }, + { + "fields": { + "age": 38, + "bio": "sales professional and music producer, looking for inspiration,. imagination and flavor.. . ah, san francisco: i've loved living in it, leaving it, and coming. home to it for many years now. i was born on the east coast and was. raised in socal, but for now, this is the place for me amongst. friends and family.. . have a passion for all kinds of food. currently exploring for. specialty cocktails and good fried chicken.", + "img": "user_pixel/m-284328-1000x672.jpg", + "preference": "gay", + "sex": "Male", + "user": 144 + }, + "model": "earlydating.Profile", + "pk": 144 + }, + { + "fields": { + "age": 44, + "bio": "i just want to find love someone to love and someone to love me and. with luck eventually meet someone to spend the rest of my life. with. i mean it as a desire not as the only goal. i want to have. fun too.. . i believe very strongly the best way to find and be in a lasting. relationship is to take the time to really get to know each other. and build a friendship and a trust first. it has been my experience. that rushed relationships don't last. the only relationships i have. ever been in that really worked are the ones that time was taken. before getting involved and especially before first making. love.. . i am not under any clock here so of course there is no pressure on. my end to make anyone the one. i don't need anyone i'd just enjoy. sharing my time with someone to compliment and not complete. me.. . of course i want to make new friends along the way platonic as. well. i also mean with dating i want to take things slowly and see. where things develop organically.. . 6-2-10 i am a deep person not at all vain or shallow. i have. standards for myself and in others just ones of deep meaning.. . i am looking for someone special.. . i am never on the lookout to trade someone in a woman is a person a. friend not a sex object.. . i care more about you and not just what i want from you.. . i won't disappear or stop caring no matter what. i look beyond a. pretty face a thin body and outward looks in my choices.. . i do not subscribe to our youth obsessed or so skinny you can see. bones society at all.. . i won't enjoy a woman's company any less for just simply aging.i am. the deep guy will spend time with you because he likes you as. you.. . is not with you because of how you look but because of who you are.. wrinkles gray hair weight gain or weight loss does not matter it. does not mean the end of me liking you or caring about you.. . i only care that you do what you need to to take good care of you.. i'll be your friend know matter what in good and bad times even if. the romance stops or never happens.. . i don't mind winks or instant messages. also i don't flake on. people and want the same from all. i am easy going and low. maintenance. . i am a real sweet guy who will treat you really well at all. times. . anyone i welcome into my life is special to me.. . i am up for fun and non-serious but i am wanting a relationship of. some sort too.. . you a woman or person not a piece of meat. frankly creepy people. disgust me, and i am well aware that those guys are here.. . if you write me if you date me heck even if you are just a platonic. friend to me you are going to get the straight story. call it do. unto others as others should treat you karma pay it forward. whatever.. . life is too short for people to treat each other like dirt.. . i am all about being worthy of others faith and trust in me. my. word to others means something to me. my time and my life is. valuable to me. anyone who i associate with gets the same value. with me. i do not blow people off , flake or do hurtful. things.. . i am a highly ethical person who go out of his way to do right by. others. i secure enough in my masculinity as a man i don't have ego. issues. in that sense i am atypical as a man. i am here for one. reason i feel i can offer something real to others be it friends or. otherwise. so that said. . i admit this is a long profile however it is worth reading all the. way through. i have spent a huge amount of time and energy on self. improvement and evolution on a personal scale. i am open to many. things on this site. more info on message me if spot. i am a highly. sensitive person. i am also highly sensitive to others needs and. such. . i am a good listener and a good friend. i believe in starting out. as friends with any new lady and go from there.. . i am single and available looking for someone special to treat nice. and be treated nice by.. . someone whom i can spend time with and someone who has time for me.. someone special i can spend time with.. . i am opening the door to new things with new people. i have several. journals up that should be interesting to you.. i want to hang out with as many people from as many walks of life. as possible,even people i've nothing in common with. diversity. rules!!!!. . i base meeting, dating, being friends with people solely relating. with them. i don't base it on match tests. i am very open minded. and respectful.. . having been an actor and musician i am good at that. i like. pyratepunx ,gypsies, artist types. anyone real. a wise man once. said i never met someone i didn't like.. . i am not living in the past and am still active in the music scene. now.. . i write and record songs regularly and gig when i can.. . i am still heavily active musically. from 1998-2002 i was proudly a. part of the spam records geekfest collective with my band mates. we. used to be involved with putting on illegal pirate shows called. geekfests sometimes called geekfest pyrate punx picnics. even went. on tour once. i bring this up because i enjoy knowing people from. all walks of life. i just put out a dvd set of my band cope 14. years of material. also to get new gigs and network in the current. scene, and go on tour again!!!. . i've been in the east bay all my life. i am looking for new. friends, and lovers, have fun doing new things with.. . live life to the fullest. i have a few friends that i have known. over a decade.. . i value my friends and family greatly, and am fiercely loyal and. faithful to them.. page update as 2-8-10. . i enjoy walks in nature. romantic dates. any excuse to laugh.. intelligent conversation is something that is vital to me.. . the profile says i'm less on the energetic side, that's a. laugh.. . at my shows i play the guitar, sing loudly, jump around, dance, and. even do push-ups. i also play behind my head and with my teeth. i. also like to go for 30 minute brisk walks a few times a week. my. last show i did one of those 30 minute walks before and after it. i. enjoy hikes in the outdoors. and the pool.. . in my band i am the front man, and main attraction.. . i will return all messages sent to me.. . i am romantic devoted, have fun listening, and love and or casual. fun", + "img": "user_pixel/m-46278-725x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 145 + }, + "model": "earlydating.Profile", + "pk": 145 + }, + { + "fields": { + "age": 27, + "bio": "i'm 26 and living around s.f. i am an animator artist. extraordinaire. i intend on getting into film production as a lead. director but am currently working toward a small production. business now. i am outgoing and funny. i have allot of aggressive. determination to succeed. i work as a concept artist for one game. company and had been doing 3d modeling for the other. currently i. work technical support for a big name bank to make ends meet. i. have had a real life check this last year after graduating and have. been through so many hoops and media industry bullshit. but i have. gained a plethora of new bat-toys and experiences to reflect upon.. personally i am looking for an outgoing and driven person like. myself. but more importantly real. no drama. we live one life and i. want to enjoy it for what it is.", + "img": "user_pixel/m-45602-723x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 146 + }, + "model": "earlydating.Profile", + "pk": 146 + }, + { + "fields": { + "age": 29, + "bio": "i love being outside and exploring new places. when not in school. or the field i backpack, hike, practice aikido, garden, listen to. npr. i engage in various crafty projects, but they often fall by. the wayside. i'm loquacious and inquisitive. laughter is essential.. as is delicious food.", + "img": "user_pixel/f-371955-631x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 147 + }, + "model": "earlydating.Profile", + "pk": 147 + }, + { + "fields": { + "age": 19, + "bio": "to be quite honest i hate self summaries, i never know exactly what. to write..... soooo here's a bunch of random things about me and. things that i like lol. i enjoy being around people but i enjoy my. own time. i'm easy to talk to and i love to listen. i'm goofy.. weird. but in a good way. kind of a spaz sometimes. i'm rather. nocturnal. i can't survive without coffee. i make retarded (but. funny) jokes a lot. i'm a go with the flow kind of person; i accept. things as they come. i frickin love music. and awesome food. and. cute things (supa kawaii desuuu :3). stargazing is freakin amazing.. i love to read. and did i mention that i love music? i love the. beach and the ocean. i love hiking even though i'm somewhat out of. shape now. i only have three tattoos but i have a lot more planned.. basketball is my shit. i looove shopping. i spend wayyyyyy too much. money on shows and music festivals. honestly, i enjoy just about. everything, and if i don't already like it, chances are i'll. develop a taste for it.", + "img": "user_pixel/f-371513-1082x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 148 + }, + "model": "earlydating.Profile", + "pk": 148 + }, + { + "fields": { + "age": 23, + "bio": "east coast transplant to the silicon valley scene. background in. hci.", + "img": "user_pixel/f-2439495-300x450.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 149 + }, + "model": "earlydating.Profile", + "pk": 149 + }, + { + "fields": { + "age": 26, + "bio": "i'm a low-key, laid-back person who likes to help people have a. good time - i'm happiest in either a room with a small group of. good friends or on a packed dance floor. i'll try anything at least. once as long as it doesn't involve actually harming anyone else.. i'm all about finding what's right for the present moment and just. doing it, even if it's completely random. the converse is that i'm. not a great planner, although i personally enjoy a little bit of. chaos in life. i'm here because while i can pretty easily talk to. and hang out with anyone, i don't tend to make a large number of. friends. instead i usually connect with individuals that represent. groups or other outliers. basically, i'm just looking to bring more. people into my life.. . i am laid-back, open, and linguistic", + "img": "user_pixel/m-2457344-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 150 + }, + "model": "earlydating.Profile", + "pk": 150 + }, + { + "fields": { + "age": 25, + "bio": "born and raised in missouri, but bounced around the past few years.. i was edjumicated in pittsburgh, worked overseas for about a year. doing various international development work, before eventually. moving back stateside to see what sf had in store for me.. . i'd say i get along with a lot of different types of people, and i. love learning about people's different perspectives on the world. i. love playing all kinds of sports, in particular soccer and sunday. recess kickball. and i am the type of girl that can be just as. happy with a nice glass of wine as i can be with a cheap ironcity. beer.", + "img": "user_pixel/f-1757570-797x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 151 + }, + "model": "earlydating.Profile", + "pk": 151 + }, + { + "fields": { + "age": 30, + "bio": "i am a fun and intelligent guy who is interested in casual dating.. i date both men and women and everyone in between. i am queer,. poly, transgender (ftm) and proud.", + "img": "user_pixel/m-2164569-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 152 + }, + "model": "earlydating.Profile", + "pk": 152 + }, + { + "fields": { + "age": 28, + "bio": "i:. - move and travel a lot.. though sf is my home. - am attracted to people that can excite me or show me a new way of. looking at things, or young punks/ trouble makers. - am a communist refugee from the czech republic, grew up in the. woods of alaska, and i have an american accent. - have lived in many major cities, love to travel, and cruise the. city. - am always positive, very witty, fun, add to any given. situation. - own a small beagle/ dachshund, sooo cute, my best friend and. partner in crime. - value art & design. - go to the beach often and russian river frequently. - love vintage furniture. - visit thrift stores often. - like boys and girls with style, personality. - love live music. - am not physically attracted to asian or overweight people, but i. can be friends!. - think both likes and opposites attract. - drink a lot of kombucha, coco nut water too. - dislike goatees. - am mostly straight, though i am attracted to women &. men. - i can tell in the first 5 seconds whether or not i want to get to. know you better. - don't believe in state organized education, desk jobs, or any. other cattle-like conformity, but i wont be offended if you do", + "img": "user_pixel/f-371515-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 153 + }, + "model": "earlydating.Profile", + "pk": 153 + }, + { + "fields": { + "age": 28, + "bio": "hmmmm. where to start? i was born in chicago, but i've lived in san. francisco, san jose, germany and now oakland. i love california! i. don't like to talk about myself, but i do consider myself a very. well rounded individual. simply put, i'm an avid learner and a. great friend. i'm shy so sometimes i have a hard time meeting. people.", + "img": "user_pixel/f-1796836-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 154 + }, + "model": "earlydating.Profile", + "pk": 154 + }, + { + "fields": { + "age": 41, + "bio": "ok, i really don't know what (if anything) i'm looking for. impress. me. i am a singer, songwriter, poet, amateur photographer and. single mom to a brilliant four-year-old boy. i am a massage. therapist and aesthetician by trade, though i am in the process of. switching careers and becoming an ultrasound tech. i am christian. but also liberal, open-minded and non-judgmental, and i prefer to. be around people like myself. i am somewhat of a homebody but i do. occasionally enjoy going out to karaoke or to check out local. talent. would love to go to a poetry slam or comedy show as well.. at times, i have a rather sick, un-pc sense of humor. i love to. laugh and be silly. friends would describe me as goofy, funny,. generous and loyal.. . i was born and raised in santa cruz and come from a liberal,. down-to-earth family. most of my family members are really into. politics and current events. i am somewhat ashamed to admit that at. the ripe old age of 41, i am only just now beginning to educate. myself on what's going on in the world. i marched with my son in. the occupy oakland rally, and i'm now reading howard zinn's. \"peoples' history of the united states\". i would love to meet. someone who would like to discuss current events with a beginner. and wouldn't be judgmengtal about my lack of knowledge.. . one new developement in my life as of late is that i am in the. process of obtaining my foster care license. i am hoping to foster. one child up to the age of six. eventually, i would like to. adopt.. . as far as relationships go, i am not sure what i'm looking for, to. be honest, but i know it ain't a quick hook up. i am a true. romantic and hope to find my forever man one day, but right now i'm. not sure i'm ready for anything too serious. i'd settle for a fun. local friend to go out with. we can take it slow and see if. anything developes.. . so that's me. send a hello if you feel so inclined.", + "img": "user_pixel/f-1757570-797x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 155 + }, + "model": "earlydating.Profile", + "pk": 155 + }, + { + "fields": { + "age": 26, + "bio": "i love to perform and create theatre in all its forms (with music,. too!), especially with others. there is no greater feeling, in my. opinion, than creating something extraordinary and unique with an. ensemble. i'm constantly trying to hone and refine my craft, but at. the same time humble myself as an actor. i hope to make a living. off it some day. more importantly, i hope to inspire others with my. art and pass on my knowledge to the next generation.. . most of my friends would say i'm a catch. i work hard at my job and. career, and always seek to improve. my friends and family are very. important to me, and i would do almost anything for them. i'm. open-minded and appreciate people from all ages and cultures, as. long as you are intelligent, in touch with reality and passionate. about life or something in life. i'm here to meet people for. dating, and if the connection/chemistry is right, i'm definitely. open to more. i'm really at a moment in my life where i'm looking. for something exclusive (aka a boyfriend), but nothing is set in. stone. hit me up and we'll take it from there. come on.....say hi. already...get to know me, lol. ask a question. make a. comment.. . \"voici mon secret: on ne voit bien qu'avec le coeur, l'essentiel. est invisible pour les yeux = here is my secret: it is only with. the heart that one can see rightly; what is essential is invisible. to the eye.\"-antoine de saint-exupry. . i am warm, intelligent, and funny", + "img": "user_pixel/m-2457344-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 156 + }, + "model": "earlydating.Profile", + "pk": 156 + }, + { + "fields": { + "age": 58, + "bio": "i.... ...consider myself average, although people who know me describe me. as attractive, beautiful, inspiring, earthy, sensual, energetic,. passionate, smart, intuitive, healing and humorous with integrity. and an ancient wisdom. my deeper side helps me to see through. illusions. i am equally passionate and vulnerable and independent. and love to be close.. . ....enjoy the fantasy and feel like somewhat of an anachronism. living as a \"contemporary minoan woman\" (grecian) and i am. recognized as such by many who know me. with a sense of humor and. while looking the part, i keep grounded in the here and now.. . i've bungee jumped (then quickly nixed the parachuting idea). fire-walked, enjoyed the absinthe party and performed dance in. front of many audiences of all ages from babies to elders...have. never married ...which i view as a serious commitment that i have. consciously delayed.. . my photos are current. my age is accurate and people are very often. fooled by it. i got asked to leave a store the other day when one. of the young owners found out how old i was...\"what? how could you. be? get out!\", she cried.. . we.... ...ground and inspire each other. it's not where we go that matters. as much as feeling intrinsically a part of each other and the world. wherever we are.. . ...can each be socially active or comfortable at home.. ...intermingle with a wide range of people and situations as part. of the entertaining adventure of it all.. . ...are a balance of traditional and unorthodox, smart and creative,. and affectionate and warm.. . ...together can entertain, exalt, and heal each other and are. certainly greater than the sum of our unique parts.. . ....can be alone together.. . ...are humorous.. xo", + "img": "user_pixel/f-372091-675x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 157 + }, + "model": "earlydating.Profile", + "pk": 157 + }, + { + "fields": { + "age": 41, + "bio": "getaways, salsa dancing, savory cuisines, good company with. family/friends, taking in the beauty of nature, faith, and music is. what fulfills my soul. i come from a close knit latin family and my. culture is extremely important to me. i also enjoy running and just. accomplished a marathon recently. it truly was exhilarating. if you. would like to get to know me, contact me. i don't like disclosing. alot on here... . please do not contact me if you are on parole/probation or even. have a criminal record. please keep it pg... lol! do not send me. any rated \"r\" photos. total turn off. please include recent photos.. sorry to sound demanding but after several incidents. i'd just like. to be clear..", + "img": "user_pixel/f-371623-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 158 + }, + "model": "earlydating.Profile", + "pk": 158 + }, + { + "fields": { + "age": 36, + "bio": "i'm kind, inquisitive, witty...with a mischievous streak.. . being outside makes me happy and feel most alive - hiking, going to. the beach, bike rides, picnics, yoga. i get really excited about. sharing great food and wine - getting dressed up to check out a new. restaurant, revisiting an old fave, or staying in and cooking. i. love music and going to shows at small venues, seeing the film i've. been waiting to come out right when it does, playing hooky to go to. the museum when it's crowd-free.... . spending quality time with friends is a high priority, as is. travel, exploring new destinations, and spontaneous weekend. adventures. i like to get enough exercise, try to meditate, have a. sense of what's going on in the world, and usually have some sort. of creative endeavor going. recently i've been singing and teaching. myself to play guitar. i've had a longstanding interest in. spirituality and buddhism, but having both feet on the ground is. mandatory.. . i'm a psychologist in private practice in san francisco and feel. fortunate to get to do work that's deeply satisfying, creative and. challenging. before the psychology gig i worked in audio production. in nyc.", + "img": "user_pixel/f-372113-1200x798.jpg", + "preference": "gay", + "sex": "Female", + "user": 159 + }, + "model": "earlydating.Profile", + "pk": 159 + }, + { + "fields": { + "age": 24, + "bio": "i'm a brash & mystical transwoman. i'm kinna dirty and like. going on adventures. i'm sorta evil but also very much into process. and loving everything.", + "img": "user_pixel/f-371915-900x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 160 + }, + "model": "earlydating.Profile", + "pk": 160 + }, + { + "fields": { + "age": 29, + "bio": "i will update with more soon. been busy. what i have up is boring.. does not say much about me. check it out anyway. much-love!", + "img": "user_pixel/m-206135-725x535.jpg", + "preference": "straight", + "sex": "Male", + "user": 161 + }, + "model": "earlydating.Profile", + "pk": 161 + }, + { + "fields": { + "age": 32, + "bio": "summary. adj.. 1. presenting the substance in a condensed form;. . ok. my substance consists of flesh, bones, blood, alcohol, love,. marijuana, and coffee.", + "img": "user_pixel/m-208350-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 162 + }, + "model": "earlydating.Profile", + "pk": 162 + }, + { + "fields": { + "age": 28, + "bio": "i'm into the. gathering up and making of. the most fulfilling experiences i can during my time. on this planet. cause (to me) that's what it'll all comes down to... so lets make good good food together,. listen to and experience good good music and art. and go and find/make ourselves some adventures, k?", + "img": "user_pixel/f-1945842-300x206.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 163 + }, + "model": "earlydating.Profile", + "pk": 163 + }, + { + "fields": { + "age": 41, + "bio": "i am out going. honest. not totally expecting anything serious, but. would not run away if it lead to that. just trying to lead life. without expectations, but hoping to be pleasantly surprised. always. looking to do the next right thing, but have a great time on the. journey. can be very laid back. enjoy the outdoors. not afraid to. discover or try new things. want to enjoy life to the. fullest.. . my friends would describe me as a very loyal , confident, fun guy. that has a lot to offer the right girl. i am comfortable in about. any situation and any crowd. i can pretty much find a way to make. any situation enjoyable and entertaining. i am looking for a. simple, good life with someone that will be one of comfort, mutual. respect, loyalty, and fun. i wear my heart on my sleeve.. . a few things about me: educated, great cook, well traveled. i love. the outdoors and anything to do with it. i like fishing with a huge. emphasis on fly fishing. fly fishing has brought me to many places. most people have only dreamed about and many adventures along the. way. which leaves me with one of my favorites quotes regarding. fishing and life, \"many men go fishing their entire lives without. knowing it is not fish they are after. - by henry david thoreau\".. think about it? born and raised in the bay area, but have spent a. little time on the east coast as well. lived in sf for 10 years,. love the city. i have a beautiful 5yo daughter, who is my world. i. am a fantastic father and would bet my life that it would be. impossible to find anybody on this planet that would say otherwise!. however, i still have plenty of love to spare.. . i have had a great life so far and am very grateful for all my. experiences, good and bad. for they have all shaped my character. and me into the man i am today. but truly believe the best is yet. to come. i am an optimistic person that tries to find the positive. perspective in most situations. i am looking for someone that is. fun to be around, loyal, honest, and spontaneous and does their own. thing too. looking for someone to enjoy life with and share the. many experiences that life has to offer. someone to grow with.", + "img": "user_pixel/m-196186-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 164 + }, + "model": "earlydating.Profile", + "pk": 164 + }, + { + "fields": { + "age": 27, + "bio": "first thing, my name's (Just read already!), but i have been called everything. you can imagine; albert, hubert, herbert, howard and funniest is. probably howlbert. i don't really have much to say about myself. on. weekdays i go to school at sjsu and on weekends i work in san. francisco. so i frequently travel between sj and sf. i guess i. consider myself a little socially awkward at times, but when u get. to know me i am one of the nicest guys u can meet.. . i don't really know who i am at this point. i would consider myself. a \"shape-shifter.\" i adapt to my social surroundings. but more. often than not i'm a nice guy, i try not to be a d***.. . i enjoy playing video games, the occasional. board games,. watching anime,. \"reading\" manga, and. watching movies. i. also would like to go jogging/walking/hiking more often, just have. to find a good place to do it. update starting to run/jog/walk. around lake merced in sf on fridays. great way to get some fresh. air. . i'm kind of a home-body, prefer a nice quiet evening at home. watching tv or playing video games. but i am always willing to go. out and do whatever. i'm a tech-nerd, usually in front of my. computer on fb or something. i enjoy the simple things in life;. sunset on the beach (haven't done that in a long time), laying back. and stargaze (can't really do that in the city). i guess that's. about all i got so far.. . i am quiet, laid back, and respectful", + "img": "user_pixel/m-2362274-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 165 + }, + "model": "earlydating.Profile", + "pk": 165 + }, + { + "fields": { + "age": 40, + "bio": "i am smart, funny, compassionate, fun, intense person that has a. wild side that must be exercised occationally. i am handsome,. generous, and a gentlemen.", + "img": "user_pixel/m-2264212-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 166 + }, + "model": "earlydating.Profile", + "pk": 166 + }, + { + "fields": { + "age": 46, + "bio": "i'm a fat, medium-tall, queer identified married guy. i'm an. artist, a geek and a motorcyclist.. . i mention being fat first as it seems to be the most common \"deal. breaker\" i see here, other than my not being single. if my being. rotund is a deal breaker for you, you probably ought not read any. further.. . i am also bisexual, ethically non-monogamous, kinky, and. sex-positive. i'm an oddball; my views on politics, culture, sex. and other things are decidedly different than those of most people. i've met. if our mutual senses of humor line up, it's likely that. i'll keep you laughing.. . i work in tech, for a media company. i am also a professional. artist.. . i am a traveler when time & money line up to allow for. it.. . i am creative, multi-faceted, and often ink-stained.", + "img": "user_pixel/m-45820-573x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 167 + }, + "model": "earlydating.Profile", + "pk": 167 + }, + { + "fields": { + "age": 46, + "bio": "my sense of humor is always present, and sometimes only amuses me.. i tend to see life in cartoons so i'll just be laughing about. something that no one else can see. i love the work i do, which is. rewarding, challenging creative, and interesting to me all the. time. the other day a friend asked me when am i most happy. lately. that is when i feel like i have free time to be alone or with. people, going with the flow of the day. i love to laugh, play,. exercise about 5 days a week, love yoga, dancing, hiking, anything. outdoors, the mountains are my favorite place, although the warm. sunny beaches of any tropical location are great too. i want to. travel more, see more of the world and know more people. italy,. spain, and greece are high on my list. i tend toward the. mediteranean part of my heritage.. . i have an incredible amount of curiosity about people and what. makes them be who they are.. . i am smart, sexy, and fun", + "img": "user_pixel/f-371795-1200x674.jpg", + "preference": "straight", + "sex": "Female", + "user": 168 + }, + "model": "earlydating.Profile", + "pk": 168 + }, + { + "fields": { + "age": 32, + "bio": "i am colombian. i like to skate.. i like to read.. i still learning english.. i stop drinking ten years ago!!!!!!. . i am colombian, intelligent, and down to earth", + "img": "user_pixel/m-191706-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 169 + }, + "model": "earlydating.Profile", + "pk": 169 + }, + { + "fields": { + "age": 37, + "bio": "update: i am currently traveling around the world as part of a. photography project through december 2012. happy searching!. . i'm am easy-going person with a curious mind. nothing makes me. happier than seeking out new experiences such as discovering a. hidden vista in the city, finding an amazing hole-in-the-wall, or. stumbling upon some great art. from photography to music, brazilian. dancing to basketball, i have a wide range of interests and am. always up for new ones.. . simple things in life please me. i love a warm sf day, a good idea,. late sunday brunch, healthy sarcasm, and the sound of the needle on. an old record.. . i like happy people who can laugh at themselves and don't take. themselves to seriously, at least most of the time. with that said,. i do enjoy a deep conversation with good friends over a shared. bottle of wine.. . i feel that life is too short to be sitting on the sidelines. i'm a. do-versus-say kind of girl. to me, life is like a big dance floor. and i'm dancing in the middle of it...", + "img": "user_pixel/f-371729-1200x801.jpg", + "preference": "straight", + "sex": "Female", + "user": 170 + }, + "model": "earlydating.Profile", + "pk": 170 + }, + { + "fields": { + "age": 19, + "bio": "hi, i'm aamina!:) i am an aspiring author, and am starting a. publishing company. i want to complete grad school and become a. forensic psychologist. i also love sports and have been on a. swimming,wrestling, and gymnastics team. my sign is capricorn which. explains me very well! if you want to know more ask!", + "img": "user_pixel/f-2176117-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 171 + }, + "model": "earlydating.Profile", + "pk": 171 + }, + { + "fields": { + "age": 35, + "bio": "i try to keep a positive, fun outlook on life, even when i have one. of those days when everything is going wrong, i know tomorrow will. be better. i grew up in the east bay, and lived here almost all my. life. i am looking for someone who can help blow off that excess. steam by going to the beach, walking my dog casey, game night with. friends or going to bar for a drink. one of my new goals is to. explore my adventurous side by going to new places and trying new. things", + "img": "user_pixel/f-372039-1200x800.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 172 + }, + "model": "earlydating.Profile", + "pk": 172 + }, + { + "fields": { + "age": 26, + "bio": "i'm self-sufficient, sassy, sarcastic, a lover, and a loyal friend.", + "img": "user_pixel/f-2439625-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 173 + }, + "model": "earlydating.Profile", + "pk": 173 + }, + { + "fields": { + "age": 23, + "bio": "i'm a recuperating reader, a great writer and editor, a huge nerd,. and a tremendous hockey fan. i love ice skating, and i'm slowly. working my way back into playing hockey. haven't played since i was. 12, but i'm canadian. it's in my blood... right? (i hope so.). [update: it is not in my blood. 1/19/2012]. [update: damn fun though! 1/20/2012]", + "img": "user_pixel/m-45602-723x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 174 + }, + "model": "earlydating.Profile", + "pk": 174 + }, + { + "fields": { + "age": 49, + "bio": "i'm responsible and creatively irresponsible at the same time. i've. spent my life trying to find ways to help other people and ways to. change the world, but also to enjoy life itself....all its ironies,. trials and joys....while always appreciating how amazing regular. people can be.. i am a working class guy that loves the mission district, and don't. regret a day i've lived here in san francisco since the 80's.", + "img": "user_pixel/m-2457344-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 175 + }, + "model": "earlydating.Profile", + "pk": 175 + }, + { + "fields": { + "age": 26, + "bio": "originally from arizona, but moved to sf from hawaii in 2010.. living in sf has been a 180 degree change of pace from island life. and definitely an amazing adventure so far.", + "img": "user_pixel/f-371919-600x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 176 + }, + "model": "earlydating.Profile", + "pk": 176 + }, + { + "fields": { + "age": 22, + "bio": "i am a lebanese-greek-american who is always looking for genuine,. silly, and sometimes awkward connections. just navigating through. life by asking one stupid question at a time.", + "img": "user_pixel/m-217285-725x495.jpg", + "preference": "straight", + "sex": "Male", + "user": 177 + }, + "model": "earlydating.Profile", + "pk": 177 + }, + { + "fields": { + "age": 34, + "bio": "allow myself to introduce... myself. my name is (Just read already!), no not. really, and i grew up in so cal and have been living in the bay for. a long time with a few years in los angeles and a year in madrid. i. like to have a lot of things going on and i keep myself pretty. busy. some of the things that i occupy my time with include: my day. job as a graphic designer, coaching wrestling at a high school,. playing music, training brazilian jui-jitsu, traveling abroad,. going out to local dive bars and watching bands play. with that. being said, i also enjoy just relaxing and doing nothing or mellow. evenings and educational experiences to balance everything out. i'm. pretty easy peasy and generally a laid back person, however i am. very passionate and can get easily excited when talking about. things that i care about. i also generally like to not take. anything too seriously and like to joke about almost everything. i. think that's basically me in a nutshell.", + "img": "user_pixel/m-261962-900x593.jpg", + "preference": "straight", + "sex": "Male", + "user": 178 + }, + "model": "earlydating.Profile", + "pk": 178 + }, + { + "fields": { + "age": 29, + "bio": "i'm a canadian who moved to san francisco to live in the us for the. first time. i like big cities over small ones. i like adventure. sometimes and i like staying still sometimes. i like well written. creative tv over crappy tv. i like going to new places and i like. staying at home. i like working for myself more than working for. others. i'm trying to decide how vegetarian i want to be (right now. - not very much.). . i think red pandas are better than giant pandas.", + "img": "user_pixel/m-260895-900x675.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 179 + }, + "model": "earlydating.Profile", + "pk": 179 + }, + { + "fields": { + "age": 20, + "bio": "my name is (Just read already!). i'm 18 and a full time student. i love to laugh.. chinese food is amazing! i dance randomly.", + "img": "user_pixel/f-2193929-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 180 + }, + "model": "earlydating.Profile", + "pk": 180 + }, + { + "fields": { + "age": 36, + "bio": "a little hyphen can contain multitudes. i'm an indian-american with. a strong affinity for the philosophical and spiritual genius of my. ancestors as well as a fierce independent streak that is. quintessentially american.. . i am intensely curious and passionately playful. i often find. myself, as e.b. white put it, torn between the desires to save and. savor the world. lately, i've been thinking that perhaps these two. desires need not be at war: perhaps if we each awaken to our. deepest joys and loves we will find some sort of salvation from the. collective madness we seem to have created. this is how i strive to. live: in deep, passionate love with life with a spirit of great. service, gratitude, and generosity.. . i believe i have a great deal to offer in a relationship. i have a. nurturing presence and love to encourage people to live their. dreams. i am honest, direct, and loyal. i know that i will live a. big, adventurous, and open-hearted life with my partner - and until. then, i live a big, adventurous, and open-hearted life on my. own.. . i am looking to be savored, not saved; complemented, not. completed.. . i can also be an enigma. a feminist who loves men (not actually a. contradiction, if you really know what the 'f' word is about); a. girl with curls who has straight hair in this pic; a woman who. loves the idea of meeting in a synchronistic encounter offline but. is nonetheless putting her faith in the potential of algorithms...", + "img": "user_pixel/f-2039490-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 181 + }, + "model": "earlydating.Profile", + "pk": 181 + }, + { + "fields": { + "age": 32, + "bio": "honest.. . outgoing.. . fun.. . i'll write more later when i have time to formulate non-bulleted. sentences, but i think the first three words that come to mind are. the best/most accurate, no?", + "img": "user_pixel/f-2454938-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 182 + }, + "model": "earlydating.Profile", + "pk": 182 + }, + { + "fields": { + "age": 56, + "bio": "im a professional 55 year old guy, very oriented towards music,. sports, travels reading and having fun. pretty mellowed out by. now...", + "img": "user_pixel/m-46674-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 183 + }, + "model": "earlydating.Profile", + "pk": 183 + }, + { + "fields": { + "age": 31, + "bio": "i'm a san francisco girl. i love to ride my bike through the city and. try everything the city has to offer. i enjoy blues and swing. dancing, really any dancing. i love movement, and currently. rock. climbing and yoga. are my newest pursuits. i don't get enough sleep as i have way too. many interests to keep me from laying my head down at a reasonable. hour. you can sleep when you're dead, right?. . i appreciate good food, intelligent. conversation, hugs and cuddles, anything funny,. the outdoors,. sunshine,. fog, music, and books. i care deeply about my friends,. family, and community. i like to be around people who are open. minded and try new things; however, i still need my people to be. grounded and down to earth.. . i have dreams to travel (more), write, and generally make a difference. i. would love to learn how to play the violin and get back into school. for either nutrition, psychology, or education. again sleep is overrated,. yes?. . i am active, passionate, and thoughtful", + "img": "user_pixel/f-371947-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 184 + }, + "model": "earlydating.Profile", + "pk": 184 + }, + { + "fields": { + "age": 26, + "bio": "words that relate to me in some where: web development, drupal,. geek, pansexual, trans, geek, paleo, crossfit, doodling, amused,. hyper, hats, stuffed toys, anime, internet, reddit, tumblr,. twitter, manga, books, fantasy, epics, movies, action.", + "img": "user_pixel/m-2426807-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 185 + }, + "model": "earlydating.Profile", + "pk": 185 + }, + { + "fields": { + "age": 33, + "bio": "hey ladies, are you looking for mr. right? someone that is. intelligent, spontaneous, adventurous, likes good conversation and. has a good balance between working and playing then you have found. your match.. . i just moved up to san francisco from la and looking forward to. meeting someone to be adventourous with. dancing, relaxing,. lounges, nice dinners, wine on the rooftop watching the sunset, i'm. down for it all.. . looking forward to hearing from you.", + "img": "user_pixel/m-2358801-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 186 + }, + "model": "earlydating.Profile", + "pk": 186 + }, + { + "fields": { + "age": 28, + "bio": "note: this ok cupid profile is now mostly on hiatus while i sort. through all the happy new relationship energy of a new primary. relationship.. . i'm generally a ridiculous human being. i read too much, think too. much, work too much, and spend too much time on the internet. a. good friend once described me as \"basically a highly-educated. ten-year-old.\". . i'm geeky, queer, verging on genderqueer, and poly. the sex and/or. gender of my lovers doesn't matter to me nearly as much as their. queerness does. i'm in a long-distance primary relationship and. will continue to be for the indefinite future. i tend to fall into. romantic friendships easily but am not particularly prone to true. love.", + "img": "user_pixel/f-2451613-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 187 + }, + "model": "earlydating.Profile", + "pk": 187 + }, + { + "fields": { + "age": 30, + "bio": "i do enjoy a good happy hour cocktail and dancing. i think i am. always in need new queer grrls to hang out with in my life!. . i love reality tv and celebrity gossip, but can hold decent. intellectual conversation. i love love love to dance and think i'm. generally fun to be around... likely b/c i have the mentality of a. big kid.. . some of my quirks: generally typing in all lower-case, writing the. way i think, using ellipses...(and parenthetical asides), relating. a life moment to a mythbusters episode.. . i am a good dancer, snarky, and fun to be around", + "img": "user_pixel/f-2176117-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 188 + }, + "model": "earlydating.Profile", + "pk": 188 + }, + { + "fields": { + "age": 33, + "bio": "i recently moved to san francisco from atlanta. i have a golden. retriever and enjoy taking her to the park or the beach. i work. from home, so i am still learning the city. i'm new to online. dating so anything else i have tried to write just sounds cheesy,. so i will leave it at this.", + "img": "user_pixel/f-2283967-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 189 + }, + "model": "earlydating.Profile", + "pk": 189 + }, + { + "fields": { + "age": 60, + "bio": "just logged in for the first time to an on-line dating site on. thanksgiving '06 while visiting family. profile to come, but. writing it would would probably take longer than to meet you if you. live in san. francisco. i'm interested in a game of tennis 5 minutes away in pac heights, a. hike 30 minutes away on angel island, or going to an event nearby.. for instance, next week you might help me pour wine in a hayes valley gallery,. drive a lotus to. sonoma, or simply go to the irish bank for a drink. also, maybe you. could help me with a future sf non-profit event.. . i live in nob hill, am a property manager (like to finance and fix. things) and environmental scientist/mba (assisting with hurricane. katrina), done business across the us and in western europe, and am. certified as a government diver. not a morning person, but really. active (sail,. surf kayak,. ski tahoe and hike). so i only check out this site once. or twice a month, so please be patient for a response.... . i am caring, strong, and honest.", + "img": "user_pixel/m-213864-725x485.jpg", + "preference": "straight", + "sex": "Male", + "user": 190 + }, + "model": "earlydating.Profile", + "pk": 190 + }, + { + "fields": { + "age": 28, + "bio": "ask me a million specific questions, i can live with that. ask me. about the broadest question you can, how frightful! it's like a. test where there's more than one grader and (i suspect) most of. them are quite difficult graders at that. will they catch me if i. plagiarize someone else's profile?. . i'd say i'm pretty laid back. i live by the motto \"come what may.\". everything is good in moderation. i'm really bad with names. i've. lost my keys in my pockets before; they were the only things in my. pocket. i like food and the preparation of it. i'm a little. sarcastic and make fun of myself. there's always room in the. schedule for spontaneity if a schedule is required.", + "img": "user_pixel/m-227699-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 191 + }, + "model": "earlydating.Profile", + "pk": 191 + }, + { + "fields": { + "age": 29, + "bio": "i love to love. it makes me happy and i think the world needs more. of it. i am attracted to warm, honest, down-to-earth people who. treat the world like it's a privilege to live in it. i'm not sure. what this self-summary is supposed to be! i guess i should say that. i've lived and worked in asia for about seven years. i've spent the. past few years working on international education, health, and. sanitation programs and i want to work with kids. i've been back in. sf for the past two years and i'll be here for the foreseeable. future.... i think! it would be great to find someone who i can. laugh with and explore with.", + "img": "user_pixel/f-372027-1200x795.jpg", + "preference": "gay", + "sex": "Female", + "user": 192 + }, + "model": "earlydating.Profile", + "pk": 192 + }, + { + "fields": { + "age": 27, + "bio": "on my ideal evening, i'd be relaxing in my backyard with my friends. or a lover, grilling vegetables, while listening to tunes.. . this world is full of mysteries; i'm searching for truths and. beauty in the all the daily chaos and pain.. . i am relaxed, ardent, and jocular", + "img": "user_pixel/f-1757234-1200x810.jpg", + "preference": "straight", + "sex": "Female", + "user": 193 + }, + "model": "earlydating.Profile", + "pk": 193 + }, + { + "fields": { + "age": 43, + "bio": "hi! i live in san francisco, work for a software integration. company, and grew up in st. louis. i moved to the bay area from new. york city, which is one of my other favorite places. i'm a huge. music fanatic; love. foreign, independent, and sci fi films; hanging out with my friends;. dancing; traveling; reading good books;. experiencing great food at local restaurants; watching my favorite tv. shows; and meeting new people.. . i am a spontaneous person who can be available for his friends. without any notice. when it comes to work, i'm very focused and. driven, even if it means longer hours than i'd like.", + "img": "user_pixel/m-211526-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 194 + }, + "model": "earlydating.Profile", + "pk": 194 + }, + { + "fields": { + "age": 28, + "bio": "i am a computer scientist with passion. this kind of technology. already fascinated me in young ages. so i made this my profession. to learn how it works.. . a few years ago i started realizing that besides that i need some. balance. i enjoy playing table tennis and try to do some. more sports. as i. love good food i am looking forward to improve my cooking skills. and i want to get a. bit creative by composing electronic music. i also. want to learn the guitar and maybe keyboard or piano. i am open for many different and. also new activities.", + "img": "user_pixel/m-282376-1000x666.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 195 + }, + "model": "earlydating.Profile", + "pk": 195 + }, + { + "fields": { + "age": 35, + "bio": "a-ko, b-ko and c-ko-. san meet the iron chef. i'm allergic to lies. i'm a. sensual intellectual who knows how to have a good time. i'm a ny. transplant who loves sf and hates la. i'm looking for new friends. & playmates, but very much not any additional. seriousrelationships. i've been poly for my entire adult life, and while. new friends+ are always nice, i'm really not interested in dating. anyone who doesn't already have some _real_ (and good) experience. with poly. relationships. really not kidding about that, guys (and girls, for. that matter.). . i am lucky, successful, and anim", + "img": "user_pixel/f-371785-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 196 + }, + "model": "earlydating.Profile", + "pk": 196 + }, + { + "fields": { + "age": 30, + "bio": "the things i'm all about:. - i am a native san franciscan and love my city. - i teach middle. school/high school history/english. you will likely get an earful. of stories about my students. - i'm politically active and pay very close attention to the news. etc. while i don't lay it on thick, i really do concern myself with. social justice and believe in political activism.. - i love cooking. shows (and i love cooking). ideal saturday mornings are spent. watching america's test kitchen then going to the farmer's market. to get ingredients and cook my day away.. - i throw a dinner party a month and generally really care about. entertaining friends, organizing outings, and keeping in. touch. - i love to travel. (42 countries and counting!) and am usually day-dreaming about my. next trip but now am all about rooting and nesting. . but, like with most things, my motto is 'everything in moderation,. including moderation'", + "img": "user_pixel/m-217279-725x483.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 197 + }, + "model": "earlydating.Profile", + "pk": 197 + }, + { + "fields": { + "age": 36, + "bio": "try moving to a new country with your piano in tow. yes, that's. what i did 10 years ago when i came to the us. to say that i enjoy. playing the piano would be an understatement; i'm not a. professional, but i am a passionate amateur.. . to be honest, the piano isn't the only thing i'm passionate about.. i'm quite ambitious about almost everything i do. from educational. pursuits, to exploring diversity, to entertainment, to cooking, i. go all out. for example, i moved to korea to go to university for. my second master's degree. this meant that i had to learn a new. language and a new culture to be successful in my studies. and. although this might sound like torture to some, i love my life and. the multi-cultural mindset i've developed. and the intimate bond i. share with others who are well-traveled is a wonderful bonus!. . the diversity of the bay area is what drew me here and i take. advantage of it every opportunity i get. i'd love to meet a special. lady who enjoys concerts at the davies symphony hall or listening. to some jazz at yoshi's. dancing the passionate tango with my. partner would be wonderful, too. if you don't know how to do it,. i'll teach you! ;). . oh, if only describing the perfect woman were as easy as playing. the piano! maybe this will clarify it somewhat for you.. . my perfect match and i will. . 1. listen intently to each other as well as share our feelings and. desires.. 2. laugh plenty. we'll appreciate each other's sense of. humor.. 3. enjoy great conversations about politics, religion, personal. growth, education, etc.. 4. be a healthy couple. both of us will be mature and emotionally. secure.. 5. spend time at cultural events such as the ballet or. concerts.. 6. support each other's activities and ambitions.. 7. share the essential traits of reliability, sensitivity,. kindness, and compassion.. . if you are a grounded woman who loves romantic gestures and is. curious about the world, i'd love to talk to you.", + "img": "user_pixel/m-283081-1000x667.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 198 + }, + "model": "earlydating.Profile", + "pk": 198 + }, + { + "fields": { + "age": 23, + "bio": "real chill person really dnt do much get hi get money handle wat i. have to handle", + "img": "user_pixel/m-205770-725x484.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 199 + }, + "model": "earlydating.Profile", + "pk": 199 + }, + { + "fields": { + "age": 30, + "bio": "originally from ireland, i'm living in san fran and the bay area. for over a year now, and loving every minute of it! i'm fun,. relatively laid back, friendly, easy to talk to, open minded, and. have a great sense of humor.. very adventurous, i love travelling and exploring new places - a. few years ago, i took 6 months off and went travelling around. australia, new zealand and thailand, but still want to go back to. there again someday, after i've visited a lot more of the. world!!!. i love chatting, laughing and being around friends. most weekends,. you'll find me out socializing in some of the neighbourhoods in the. city. there's so much random fun to be had in this city i can't. wait to explore it more!. i play a few sports soccer, gaelic football (cross between soccer. and rugby) with one of the clubs here in san fran, and absolutely. love skiing, even though not getting out this season much with the. lack of snow!", + "img": "user_pixel/f-371785-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 200 + }, + "model": "earlydating.Profile", + "pk": 200 + }, + { + "fields": { + "age": 30, + "bio": "so, yeah....i'm a tgirl.. if you are into girls. who never pms,. never get pregnant,. and well .... stay true to whatever feels right.... beware.. i just might be your dream girl.", + "img": "user_pixel/f-371769-1200x800.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 201 + }, + "model": "earlydating.Profile", + "pk": 201 + }, + { + "fields": { + "age": 37, + "bio": "i'm an easy going, fun, loving person. i love to laugh and hang out. with my friends and pug. music and photography are my passions!", + "img": "user_pixel/f-371673-1200x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 202 + }, + "model": "earlydating.Profile", + "pk": 202 + }, + { + "fields": { + "age": 28, + "bio": "hmm where to begin :) i'm 28. im a nice, fun person, i can be. little shy at first but once i get to know you its on, haha. i. currently work at a salon doing hair. i have an adorable 3 year old. who is the love of my life. im looking for someone down to earth,. funny, spontaneous and just likes to have a good time.. . i really don't like having to write about myself, so feel free to. write me if you want to know more :)", + "img": "user_pixel/f-372027-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 203 + }, + "model": "earlydating.Profile", + "pk": 203 + }, + { + "fields": { + "age": 25, + "bio": "i moved to walnut creek from texas about a year ago. i still feel. like i'm new here though! i'm a fun kind hearted girl looking for. someone who can appreciate my quirks. ;)", + "img": "user_pixel/f-371981-1200x795.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 204 + }, + "model": "earlydating.Profile", + "pk": 204 + }, + { + "fields": { + "age": 24, + "bio": "i am shy when you first meet me, but once i've warmed up to you i. am quite funny/sarcastic (you have been warned). having said this,. i still turn bright red whenever i feel the slightest bit. embarrassed or awkward, which happens more than you would think. i. enjoy taking in nature whether it be running outside, going for a. hike or soaking up some sun while reading outside. i have been. raised in a sports family and therefore know my fair share on the. subject and am a giants fan. i enjoy listening and singing to. music, but am happy when i'm drowned out by others who can actually. carry a tune. i'm pretty much awesome!!", + "img": "user_pixel/f-372089-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 205 + }, + "model": "earlydating.Profile", + "pk": 205 + }, + { + "fields": { + "age": 33, + "bio": "just another russian girl from the richmond district - but not. really... i work in biotech, currently obsessed w/ traveling - have. been on 3 continents (not counting north america) this year alone.. i love to dance (trained in ballroom, belly dance & even served. time as a nightclub promoter) . love to read in my quiet time -. mostly non fiction history, art & magical realism (yeah... i'm. a pretentious intellectual) - and of course hanging w/my friends. & family - who are all kind of awesome! i'm a bit on the hyper. side they say... can you keep up? :p. . i could probably add the classics about being intelligent,. independent, passionate & having a great sense of humor,. etc.... but as my favorite quote says \"being powerful is like being a lady. - if you have to tell everyone about it - it probably isn't true!\". - think about it ;-). . ...and if you have actually bothered to read this far... i'm. actually in a monogamous relationship at the moment and my. significant other came with an awesome group of cool international. traveler, marathoner, rock climber, yoga practitioners with. fascinating careers... who're all cute & bafflingly single! i'm. testing the well know theory that you attract better people when. you're not looking and seeing what i can pick up for my girls... if. you care to participate... you know what to do ;-)", + "img": "user_pixel/f-371517-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 206 + }, + "model": "earlydating.Profile", + "pk": 206 + }, + { + "fields": { + "age": 24, + "bio": "i am human. flawed. community oriented. a part of something way. bigger than me. busting my *** and not trying to receive a paycheck. for it most of the time. always trying to improve the way i relate. to others. looking for stable friendships and partners, but i'm. okay with ones that arent- because everything will change anyways.", + "img": "user_pixel/m-1925281-300x228.jpg", + "preference": "straight", + "sex": "Male", + "user": 207 + }, + "model": "earlydating.Profile", + "pk": 207 + }, + { + "fields": { + "age": 28, + "bio": "i'm the type of person that goes to movies for the popcorn (extra. butter!) i love star gazing on clear summer nights. my goal in life. is to know a little bit about everything. i'm a curious gemini and. also an ex division one lacrosse player. i love watching cartoons. and am also extremely laid back. but i always manage to get stuff. done in a timely fashion. i graduated with my ba in english. literature and my career goal is to become a reference librarian.. so right now i have my eye on san jose state's mlis degree. i'm. part black and greek and 100% goofy. i also tend to smile a lot, i. can't help it, there's just too much to be grateful for in life. :)", + "img": "user_pixel/f-2451613-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 208 + }, + "model": "earlydating.Profile", + "pk": 208 + }, + { + "fields": { + "age": 21, + "bio": "my name is (Just read it already!) & i'm half french, half irish and i speak in. a british accent regularly for no good reason at all.. . ok i'm just going to be straight forward honest:. -----------------------------------------------------------------------------. . i am looking for an outgoing guy who doesn't mind my dorkiness,. or even better enjoys it. i'm also looking for someone not ken-doll. looking, i am attracted to personality not looks, but if you are. cute then that's a plus. i used to think shy was sweet, but if you. are painfully shy and not very directive or assertive, i'm sorry but i am not the girl. for you, your shyness will bore me. i am looking for someone. intellectual who. is willing to hold conversations about life and all the. frustrations that come along with it. i also am looking for someone. who is relatively near. me, i have no problem driving but it would nice if you aren't more. than a 40 minute drive. i also would like to be with someone. creative and. passionate and even. better funny, life is. too serious as it is, so if you can put a positive spin on things, i will mostly. likely love being around you.. -------------------------------------------------------------------------------. . hi! thanks for visiting my page :d. . let's see, i'm a hopeful romantic (haha just putting that out. there) and i try to take life one day at a time. i'm fascinated by. spiritualty and the idea of there being higher realms and an. all-loving consciousness. i tend to be rather shy at first, but. once i feel safe around someone my goofy side comes out and i let. loose a bit. i am a pretty big dare devil; i've been skydiving (it. was one hell of an experience). i'm also part french and went to a. french school for the majority of my life.. . i tend to me more of a one on one person as apposed to a group. setting. it just seems more intimate and feels like a stronger. connection is being made. i have 3 best friends and i usually like. to hang out with them individually and give them lots of one on one. lovin'.. . i'm looking to date and eventually get into a relationship,. hopefully you're on the same page with me!", + "img": "user_pixel/f-372023-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 209 + }, + "model": "earlydating.Profile", + "pk": 209 + }, + { + "fields": { + "age": 25, + "bio": "so i realize in retrospect that my name may not be read as. intended. it's m (space) c (space) ha (space) time. in reference to. the ever amazing mchammer's catchphrase, and my initials,. conveniently the same. basically, i'm too legit to quit.. . i'm generally a very goofy person. i love to laugh, and i think its. healthy to do it as much as possible! i know when its time to be. serious, although i will admit that throwing some comedy in a. stressful situation always seems to make me feel better about it,. haha. my family and my friends are my life. i love doing things for. people and helping people whenever i can. sometimes, that aspect of. my personality slaps me in the face, but such is life. i'm a really. practical person and i don't like it when people play games with. me. there's not really anyone i don't get along with and i try to. befriend everyone! i am shy, at first, but once i warm up, i don't. really shut up hahaha. other than that, i am a pretty open book, i. just like to keep things drama free!", + "img": "user_pixel/f-2422908-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 210 + }, + "model": "earlydating.Profile", + "pk": 210 + }, + { + "fields": { + "age": 31, + "bio": "i work for an lgbt organization, love the work i am able to do. i. moved to san francisco 4 years ago from los angeles. i enjoy a good. book and seeing a movie. when i'm not in grad school at sfsu, i'm. out with a friend or home watching gay camp. i can be pretty. serious about politics but things can be funny in the right. context. i'm pretty big on family and try to visit them as much as. possible.. . i am a nice guy, an lgbt activist, and really enjoy funny people. i. don't know why some photos aren't right side up.", + "img": "user_pixel/m-227699-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 211 + }, + "model": "earlydating.Profile", + "pk": 211 + }, + { + "fields": { + "age": 21, + "bio": "so my name is (Just read it already!) i love to write and spend much of. my time doing so. i work at a portrait studio. i am a photographer.. i am going to school to be a psychologist and hopefully one day. work with kids with autism. i love my friends and family. i am an. outgoing, fun person who would rather be spontaneous then plan an. evening to the last detail. basically looking for someone who is. sweet, funny, and totally a nerd, because that's what i am.", + "img": "user_pixel/f-2439495-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 212 + }, + "model": "earlydating.Profile", + "pk": 212 + }, + { + "fields": { + "age": 21, + "bio": "i just finished my 3rd year at a small east coast liberal arts. college studying german and music, but i was born in san francisco,. and come home every chance i get.", + "img": "user_pixel/m-218536-363x544.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 213 + }, + "model": "earlydating.Profile", + "pk": 213 + }, + { + "fields": { + "age": 21, + "bio": "my name is (Just read it already!) and i'm fun to be around. i'm little shy at first. but after you get to know me i'm more open. some times i can be a. goof. my favorite color would be lime green. i have a cat named. iggy. i like to snowboard, swim, throw a foot ball around with. friends, drawing, and read. i love to be on a boat. i am like a. fish at times i like the water lol i love warm places i dont really. like cold the cold. im swedish italian and german.", + "img": "user_pixel/f-371783-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 214 + }, + "model": "earlydating.Profile", + "pk": 214 + }, + { + "fields": { + "age": 55, + "bio": "\"i don't want to end up simply having visited this world.\" ~ mary. oliver. . emotionally mature, financially secure, spiritually unfolding, and. younger growing (with each day feeling freer and more alive)--i am. juicy, spicy, strong, tender, warm and sweet--makes for a fun,. nourishing and deeply satisfying relationship...:-). . blessed with a second career doing work i love while being of. service to others (first career as a technology entrepreneur was. successful/meaningful as well), i am a bit shy and reserved in. groups (unless i am the leader). yet, i am intimate, relaxed, and. vulnerable 1-on-1. others describe me as passionate, energetic,. intense, intelligent, playful, adventuresome, empathic, and a. romantic at heart. i am naturally curious and most find me deep.. depending on the moment, i can be strong, independent, and fierce. as well as tender, gentle, and vulnerable. i love nature,. adventure, truth, freedom, and intimacy. i enjoy solitude as well. as communion. i am sensual, affectionate and enjoy touch. i am. conscientious, and caring as well as can be spontaneous, playful,. goofy, and care free ('angels fly because they take themselves. lightly'). i balance masculine strength, autonomy and direction. with the feminine qualities of attunement, compassion and. sensitivity. rumi says it much more beautifully:. . i was deadthen alive. weepingthen laughing. the power of love came into me. and i became fierce, like a lion. then tender, like the evening star.. . i love nature and i love music, kirtan and dancing (especially soul. motion, 5 rhythms, ecstatic dance, contact improv, a little salsa. and blues). i enjoy yoga, tai chi, and meditation as well as. hiking, biking, cooking, movies, art, and reading and writing. poetry.. . i enjoy travel, adventure and exploration--especially on the path. of self discovery (\"at the end of all our exploring will be to. arrive were we started and know the place for the first time\" ts. eliot.) my core spiritual path is the diamond heart and i also draw. buddhism, mystical judaism, shamanism, and tantra. i know it's a. lot but what else is there that is of greater importance. perhaps. love. and then again, the spiritual path is helping me live from. the realization that our true nature is love.. . p.s. did i forgot to mention (it must be the age) that i am proud. to have attained humility?...:-). . p.p.s. kidding aside, i am actually in excellent health, and live a. healthy life style. most who meet me think i am in my 40s. i guess. all that exercise, yoga, meditation, biking and healthy food. (organic vegan) pays off...", + "img": "user_pixel/m-281015-1000x667.jpg", + "preference": "gay", + "sex": "Male", + "user": 215 + }, + "model": "earlydating.Profile", + "pk": 215 + }, + { + "fields": { + "age": 48, + "bio": "active, fit, seeking a beautiful woman to explore the outer reaches. of the heart. i'm always fascinated by the (life) journey's of. others. think of myself as thoughtful person (except when i'm not).. somehow i made it through four years in the marine corps which. brought me to california. i was born and raised on the east coast.", + "img": "user_pixel/m-217279-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 216 + }, + "model": "earlydating.Profile", + "pk": 216 + }, + { + "fields": { + "age": 30, + "bio": "goodevening and welcome to my profile.. i am a native californian, born in san francisco and raised in the. sunny subburbs just south of the city. i am very close to my family. and i love animals but i dont currently have any.. . i am nebulous, devoted, and challenging", + "img": "user_pixel/f-371963-1137x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 217 + }, + "model": "earlydating.Profile", + "pk": 217 + }, + { + "fields": { + "age": 23, + "bio": "left handed, hard working, compassionate, music student, making the. next big leap in my career life while enjoying everything life has. to offer, i have been playing water polo for 12 years and love. it.. . in my last year of my masters degree, then deciding where to take. my life. i am currently looking for new connections and fun, but am. open to running into someone i would care deeply for.. . i like exploring, and understanding more every day, surprises, a. good conversation, being the boss, and taking it easy.", + "img": "user_pixel/m-246433-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 218 + }, + "model": "earlydating.Profile", + "pk": 218 + }, + { + "fields": { + "age": 25, + "bio": "i think a lot more than i speak (this is perhaps not always true,. but i would like to think it is). i would rather drive with the. windows down, sweating in the heat, than turn on the ac. i read. magazines backwards.. . my ba is in rhetoric and theater. i can cook, operate power tools,. and get around on the dance floor, but i am your average plebeian. when it comes to computers. i have vices but i'm generally a good. person.. . i am sincere, clever, and spunky.", + "img": "user_pixel/f-2363787-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 219 + }, + "model": "earlydating.Profile", + "pk": 219 + }, + { + "fields": { + "age": 34, + "bio": "i bicycled 3600 on a bike tour. also, i hiked on the appalachian. trail :). . i have do much i like to write as time goes", + "img": "user_pixel/m-1938445-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 220 + }, + "model": "earlydating.Profile", + "pk": 220 + }, + { + "fields": { + "age": 28, + "bio": "i recently started working at a law firm in the city. i spend most. of my time on patent litigation, which is painfully boring to some. people but works for me!. . in my free time, i like to bike and play basketball. i'm training. for another triathlon, which is interesting because i swim about as. well as a rock.. . i love comedy, don't really listen to music much because i usually. listen to standup acts or podcasts or things like that, and i love. to read.", + "img": "user_pixel/m-2436019-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 221 + }, + "model": "earlydating.Profile", + "pk": 221 + }, + { + "fields": { + "age": 24, + "bio": "down-to-earth girl with a sharp wit & big heart. though i take. pride in my supposed scorpio-like traits (strong emotion!. competitive tendencies!), i've always been a bit more of an. introvertreally grounded, & laid-back.. . \"hunbadger\" - in reference to that ridiculous youtube video, the. username just has to do with my affinity for being somewhat. internet ~savvy~ and always keeping it humorous :). plus, the honey. badger is just plain badass! \"hun\" just to be cute (or \"honey\" was. probably taken!).. . in my free time, i like: cooking; enjoying food; traveling;. spending time with friends; figuring things/people out; attending. concerts of favorite artists; and, discovering new. restaurants/activities.", + "img": "user_pixel/f-371739-1200x792.jpg", + "preference": "straight", + "sex": "Female", + "user": 222 + }, + "model": "earlydating.Profile", + "pk": 222 + }, + { + "fields": { + "age": 19, + "bio": "i have smiley tendencies, am an urban farmer, and am a trans guy. from texas but love my home in oakland.. . all i really want out of life is to lay in the sunshine.", + "img": "user_pixel/m-2279940-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 223 + }, + "model": "earlydating.Profile", + "pk": 223 + }, + { + "fields": { + "age": 35, + "bio": "hello, i am a poly, \"bhm\" (big handsome male). i have a. primary. partner, dragoncat42. this does not mean i am. not looking for. new friends or partners.. i am a cool, lovable, fun guy. i love music, movies, camping,. and. animals. i am looking to find new friends to hang with and. people. to date, possibly have a secondary relationship with. *ideally*. i'd. like a secondary partner that i can share with my primary, but. it's. not a requirement.. . i am fun, exciting, and handsome", + "img": "user_pixel/m-219004-900x600.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 224 + }, + "model": "earlydating.Profile", + "pk": 224 + }, + { + "fields": { + "age": 24, + "bio": "hello. i'm a law student spending a two week vacation at my. grandmother's in san francisco. just checking into okc here in the. bay to see who's around.", + "img": "user_pixel/f-1742318-1200x747.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 225 + }, + "model": "earlydating.Profile", + "pk": 225 + }, + { + "fields": { + "age": 28, + "bio": "from sweden, recently moved to the states. love california and the. weather is wonderful. it would be fun to get to know some new chill. people here around! love adventures, traveling, hanging out with. friends, playing golf, tennis, fashion and go shopping!", + "img": "user_pixel/f-371673-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 226 + }, + "model": "earlydating.Profile", + "pk": 226 + }, + { + "fields": { + "age": 30, + "bio": "i'm a fun loving, self motivated, camera-weilding, design oriented,. opinionated, and good listening guy looking for a partner in crime. and love alike.. . i'm a creative thinker who likes the both the digital and analog. things in life. i enjoy the company of others greatly, but i'm not. afraid of being alone. i try and read a lot and expand my. understanding of culture and this world.", + "img": "user_pixel/m-53706-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 227 + }, + "model": "earlydating.Profile", + "pk": 227 + }, + { + "fields": { + "age": 39, + "bio": "i just finished graduate school and i'm looking for a nice,. considerate guy with an excellent sense of humor to roam the. streets with, see live music, get out of town, and just generally. treat life like the adventure that it is. i have a sarcastic, yet. friendly and easy-going demeanor. as an artist i love my solitude. and independence but i really value my friends and people i have. good connections with. i am not the shopping/ controlling type. i'd. rather have real things in common with you that we both enjoy so. that we can have fun. yes. that is what it's all about. i love. traveling, art, literature, healthy food, and have a passion for. finding new music (avant-garde/ punk/ indie varieties).", + "img": "user_pixel/f-2176117-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 228 + }, + "model": "earlydating.Profile", + "pk": 228 + }, + { + "fields": { + "age": 52, + "bio": "i ponder the contradiction of these two things. my philosophy:. life is short. fill it with learning. love and adventures. make. every moment count; you can sleep when you're dead. and why a nap. on the beach, lulled by the waves, can be most fulfilling. perhaps. you can explain this to me?. . i love to travel. i have visited 30 countries and have many more on. my list. travel is enlightening, can be challenging and even scary. at times, but it opens your mind like nothing else.. . i have an aussie who should be a member of mensa. i empathize with. a mother bear protecting her cub. i find elephants fascinating for. their loyalty, compassion and intelligence. we should do more to. protect them.. . i have an entrepreneurial spirit and am intrigued by finding a way. to do something that's never been done before. when the chips are. down, i found i have the strength and courage to fight the. establishment and win.. . for recharging, i need warmth, a beautiful, uncrowded beach, papaya. with lime, fresh fish, a good book, plenty of activities and. you.. . family is important. i have a son (in college) who amazes me every. day. i wish i had had a larger family. if you have kids, i would be. honored to part of their lives. if you feel deeply about raising. aware children, then you are my kind of guy.. i am optimistic, diplomatic, articulate, candid, elegant, playful,. smart, giving and true.. . you are intelligent, but more importantly, wise. you're humble. enough to learn something from everyone you meet. you're thirsty. for knowledge, worldly and love to travel. you have a wicked sense. of humor, the drier the better, maybe a touch sarcastic, and like. to laugh until our ribs hurt. you appreciate quality. you are. charming, well-mannered and can handle yourself in any environment.. you're light on your feet. you prioritize staying fit and healthy.. you'd rather play sports than watch them on tv. you believe an. honorable character is more important than other achievements.. because of that you are a leader, find fulfillment and success in. your career. you like to think big and have aspirations to join me. in making the world a better place. you enjoy deep conversation.. you can put others needs before your own. and you realize that much. of this goes out the window if the chemistry is right.", + "img": "user_pixel/f-371963-1137x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 229 + }, + "model": "earlydating.Profile", + "pk": 229 + }, + { + "fields": { + "age": 29, + "bio": "ugh! i detest writing or talking bout myself. i respond better when. being interrogated. i will get back to this though.", + "img": "user_pixel/f-2039486-300x225.jpg", + "preference": "gay", + "sex": "Female", + "user": 230 + }, + "model": "earlydating.Profile", + "pk": 230 + }, + { + "fields": { + "age": 34, + "bio": "i hate hate hate the term bisexual, but that is the best way to. describe me on okcupid (i way prefer \"queer.\") i have had both. girlfriends and boyfriends in the past. kindness, honesty,. compassion, a sense of adventure, and intelligence are all key to. me.. . i did not write this, but it is so spot on:. ", + "img": "user_pixel/f-2264232-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 231 + }, + "model": "earlydating.Profile", + "pk": 231 + }, + { + "fields": { + "age": 24, + "bio": "give me the ragged and ecstatic joy of pure being...", + "img": "user_pixel/f-2047751-618x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 232 + }, + "model": "earlydating.Profile", + "pk": 232 + }, + { + "fields": { + "age": 60, + "bio": "i have lived in san francisco for over 30 years and have enjoyed. every minute of it. i couldn't see myself not living in a city but. love to travel and experience being in new environments. my. children are out of college and working so i am on my own and. liking the independence that comes with that.", + "img": "user_pixel/f-371905-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 233 + }, + "model": "earlydating.Profile", + "pk": 233 + }, + { + "fields": { + "age": 42, + "bio": "stopping for now... my eyes hurt. blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah,. blah. . i am artistic, particular, and carnal", + "img": "user_pixel/m-282484-1000x667.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 234 + }, + "model": "earlydating.Profile", + "pk": 234 + }, + { + "fields": { + "age": 27, + "bio": "update: spending most my time at occupy oakland. if we meet we will. meet there. if you don't support it don't write me. . read the whole profile or don't write me! seriously stop stop stop. stop writing me boring things like 'you're hot want to meet'.. you're wasting your time and mine. you must write me something. interesting!!!! even if you only want sex. you will not get any. without being interesting.. also: super swamped so you might not hear back for a long. time. . i'm a singer, student, writer, activist, gadfly, feminist,. communist, absurdist freak.. i am in a polyamorous triad with my husband and our mutual. girlfriend. that relationship is forever do don't kid yourself. about winning me away for your monogamous needs. i don't think. monogamy is very healthy or practical. our triad is open (to you. maybe!). my partners like to swing as well but i don't.. don't let my good looks fool you--i act nothing like good-looking. people.. i am on here to find potential long-term or short term. boyfriends/girlfriends or frickbuddies, and also for like-minded. comrades to fight the good fight with.. i'm not on here to chat. or exchange boring safe predictable. courteous messages. also some of you seem to think that i would. enjoy devil's advocate or my idea of intellectual fun is just. arguing with people from opposite political camps. not so. i'm here. to find like-minded comrades, not whore intellectualism as. foreplay. you shouldn't write me unless you actually mostly agree. with me.", + "img": "user_pixel/f-377791-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 235 + }, + "model": "earlydating.Profile", + "pk": 235 + }, + { + "fields": { + "age": 30, + "bio": "cult adult - writer - art provider. . i've worked in the adult entertainment industry for 8 years and. love it. writer for a dark comedy magazine as well as a few horror. sites and a couple of published compilations. performance artist as. well as a painter. i also perform with my sideshow friends from. time to time and i'm into san shou kickboxing and a semi pro. wrestler.. . i enjoy my life, my friends and the adventures that i've had and. have yet to. come. anything but boring. it's a lot to. follow so good luck trying to catch up :)", + "img": "user_pixel/f-371947-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 236 + }, + "model": "earlydating.Profile", + "pk": 236 + }, + { + "fields": { + "age": 52, + "bio": "i'm new to the area. i would like to hang out with some people my. age. i enjoy being very spontaneous. no long term planning needed. for me. i like most types of music. (yes, i can even listen to. country, although not on the top of my list) i have 2 grown. children so there is no baby baggage here! if you are looking for. just a hook up for sex, please move on. that's not why i'm on this. site.", + "img": "user_pixel/f-2275812-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 237 + }, + "model": "earlydating.Profile", + "pk": 237 + }, + { + "fields": { + "age": 30, + "bio": "i try to lead my life with a work hard (but not too hard),. play hard (but not too hard) balance, describe myself. without obvious clichs, and accept that sometimes you fail at. things one sentence in. i also try to do my best to heed the. guidance of the following nuggets of one-liner wisdom: we don't. stop playing because we grow old, we grow old because we stop. playing; be the change; be a good camper (leave things a little. better than how you found them); nearly everything ultimately. worthwhile doing initially scares you to death; one love; don't. panic and always carry a towel.. . i'm a pretty passionate person, and am interested in a lot of. different things in life. when i'm not at my desk with my head in. non-profit science ed, unions, or non-commercial radio; in the. studio painting; or in the other studio singing; there are a. zillion other things i'd love to be doing too. let's go dancing! or. catch a great show, (sambada? maybe a tiny blues gig? o rappa. some. underground hip hop? jazz?) or see the giants. or go hiking; take. the dogs to the beach; see an art opening, or experimental film.. find a bar with excellent whiskey and excellent booths. hit the. slopes at tahoe. go on a scavenger hunt. explore, with no. destination in mind..... most memorable date outing activities of all time include. everything from adventure picnics to dancing in the streets to full. moons on the beach to thrift store ballgowns, tuxes, & corsages. at destination: hooters o'hare. (though i'd maybe advise your. skipping a replication attempt on the last one, long story.) point. is, if it: is sunny, is creative, is outdoors, is musical, is. interesting, is artistic, involves water, involves going fast down. steep snowy things, involves gettin' down to some wicked sounds, is. hot and sandy, is baseball, or generates more questions than. answers, let's do it.. . other things i love:. . (in addition to family n' friends, my community, my dogs...). . - my dogs. (did i mention i love dogs?) i have two fantastic. ones.. . - music, music has always been... huge for me. said anas nin,. \"music melts all the separate parts of our bodies together.\". indeed. blues, reggae, soul, funk, jazz, roots & golden age. hiphop, motown, brasilian tropicalia, salsa, s african kwaito, and. on... my list of golden gods is long, but i hold equal spots in my. heart for one robert nesta, fela, and tupac... ray charles and mj;. aretha and etta; muddy and billy; os mutantes, raul seixas and. jimi; mingus & sun-ra; these days, sharon jones, collie buddz,. kaada, fred lonberg-holm, among others. (and where'd the godfather. of soul vanish off to in that list?) i love music. and when it's. going, so am i. (i'm never the one sitting out the dance. if. anything, i'm the one helping start it.). . - travel. i feel very blessed to have lived on four different. continents and visited six. i got there with my belief in making. one's own opportunities, but i can't say that without full. appreciation for the blessings and lottery luck that land us. wherever we are in life.. . - many other things. other loves of mine include dancing forr,. dancing with soul and abandon, singing the blues, music played with. passion, painting, lying in the sun, tree climbing, cooking friends. a meal that'll last their minds for days, chris rock, theater, my. peach tree, listing an item that totally sounds like a euphemism. but actually isn't, bahia, and bozeman, montana. and many more. not. included on the list is writing self-summaries.", + "img": "user_pixel/f-372091-675x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 238 + }, + "model": "earlydating.Profile", + "pk": 238 + }, + { + "fields": { + "age": 43, + "bio": "first off, i am in an open relationship, and neither of us has an. issue with the other having a but of fun. she is on here ( i can. point you to her profile, in case you want to make sure that i'm. not cheating on someone or what-not...).. . god...i just logged in under another name to see what folks view. from my test. evidently, i am a sloppy capitalistic,republican who. is 'way less loving' than everybody. i'm not sure how they. extracted that from answers to random questions... anyways, that's. not me.. . hmm...compulsively gregarious gemini.. gamer-geek...(the kind where you roll dice, not stare at a computer. screen for hours on end),. musician;death/black/tech-prog metal for those keeping tabs.. stocky, yes that means that i'm not skinny. .cat-lover (i have 2. kittens),dog-lover (can't own one in my building, though). mantis. shrimp fanatic. elipsis obsessed.... . currently trying to focus on tying up loose threads in life (music. primarily). i like games of the non-computer variety. you know,. with dice and little pieces that you actually move with your. hands.. i love curvy girls quite a lot.. really,though,all sorts of girls are my cheescake.. who doesn't love cheescake!?!. . i am charismatic, quixotic, and pragmatic", + "img": "user_pixel/m-208350-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 239 + }, + "model": "earlydating.Profile", + "pk": 239 + }, + { + "fields": { + "age": 60, + "bio": "i love my life and have a great curosity about life, people, and. the nature of reality. i am fairly easy going and very independent.. i have three grown children and two grandchildren. family is very. important to me and i love spending time with them. i went back to. school late in life and am passionate about my work as a therapist. and group leader. i love nature and the outdoors, gardening, my. friends, my animal friends, adventure, humor, music, community,. learning, good books, poetry, camping, dancing, and just being. i. am interested in lots of things, buddhist psychology, imaginal. psychology, a little jung, a dash of dudist. i like to knit and do. some crafts. i try not to take myself or life too seriously. my. favorite holiday is halloween. i meditate and like to roller skate.", + "img": "user_pixel/f-371623-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 240 + }, + "model": "earlydating.Profile", + "pk": 240 + }, + { + "fields": { + "age": 26, + "bio": "the heart, brain & over active imagination. . my company might be inclined to describe me as sassy and sweet; but. i'm much more on the sweet side these days.. . i like to laugh, hopefully you do too. let's play.. . update:. . i have a wonderful girlfriend and i'm very much in love! i'm on okc. looking for lovely creatures to call friends.", + "img": "user_pixel/f-371869-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 241 + }, + "model": "earlydating.Profile", + "pk": 241 + }, + { + "fields": { + "age": 48, + "bio": "i am looking for a longterm partner/companion who wants to build. something together. while i look for that i am also open to new. friends, activity and/or play partners. i value good communication,. playfullness, stillness, varied adventures, and room for us both to. be ourselves. i am very sensual and also love humor, silliness,. reading, live music, dancing, hiking, cycling, the outdoors. generally, good food, living simply, as well as having quality. people in my life. i am curious about most things and can find. excitement in many corners. i am blind, which conjures up many. different assumptions. i encourage you to ask questions. i am very. independent and am not looking for someone to \"take care of me.\" i. merely am looking to share the richness that life has to offer.", + "img": "user_pixel/m-1732853-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 242 + }, + "model": "earlydating.Profile", + "pk": 242 + }, + { + "fields": { + "age": 19, + "bio": "funny outgoin lyke to have fun and an a big freak", + "img": "user_pixel/m-213864-725x485.jpg", + "preference": "straight", + "sex": "Male", + "user": 243 + }, + "model": "earlydating.Profile", + "pk": 243 + }, + { + "fields": { + "age": 26, + "bio": "i like computers, music, movies, and food (who doesn't?). but don't mistake me. for just another computer nerd (not that there's anything wrong. with that) - i'm much cooler than that :) .. . i am nice, respectful, and honest.", + "img": "user_pixel/m-261153-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 244 + }, + "model": "earlydating.Profile", + "pk": 244 + }, + { + "fields": { + "age": 46, + "bio": "i'm an extroverted home-body...does that make sense? i love messing. around my house...trimming trees, cutting the grass, fixing broken. stuff. but most of all i love entertaining. sharing life with. others and making truly special memories is all we have at the end. of the day, so i'm always looking for ways to get friends or family. together for some quality time or a fun activity.. . i'm a big believer in someones ability tio make things happen if. they put there mind to it. no, i'm not a 'secret' devotee, but i. will say that i believed in the power of visualization and positive. thoughts long before rhonda byrne wrote about them. in my galup. profile \"positivity\" is one of my top 5 strengths, along with. \"relator\" and \"arranger\".", + "img": "user_pixel/m-2279940-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 245 + }, + "model": "earlydating.Profile", + "pk": 245 + }, + { + "fields": { + "age": 29, + "bio": "im bisexual i love being in the b**** in the relationship wether. its with a man or woman so if public nudity cross dressing and. bisexual guys isnt a turn on what are you smoking????", + "img": "user_pixel/m-2433304-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 246 + }, + "model": "earlydating.Profile", + "pk": 246 + }, + { + "fields": { + "age": 35, + "bio": "kids and pets like me. i think they are pretty good judges of. character.. . if we're going \"scientifically\", i'm an isfp. i don't remember what. that means right now, but if you were at a party, you'd probably. find me hunkered in a corner near the food table with one or two. friends being totally ridiculous.. . i think you'd just have to meet me to find out the rest. i know. that sounds coy, but reading this profile only goes so far, you. know? let's just have a real conversation over a beer.", + "img": "user_pixel/f-2176117-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 247 + }, + "model": "earlydating.Profile", + "pk": 247 + }, + { + "fields": { + "age": 26, + "bio": "went to college in colorado. went to san diego for a couple years. after that (not really with a plan just cause i visited and ended. up staying. had like 11 jobs. just sorta bullshitted (sort of a. regret)). recently began moving up north, planted some roots in la,. and am now up here in norcal with a plan stan!", + "img": "user_pixel/m-2436239-300x450.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 248 + }, + "model": "earlydating.Profile", + "pk": 248 + }, + { + "fields": { + "age": 56, + "bio": "my self-summary is brief, i live in one of the pettiest cities in. the world, love my country and family. always looking for random. acts of kindness, optimistic about most things and desperately. steer far away from negative people-places and things!", + "img": "user_pixel/m-45602-723x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 249 + }, + "model": "earlydating.Profile", + "pk": 249 + }, + { + "fields": { + "age": 33, + "bio": "tbc", + "img": "user_pixel/m-245355-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 250 + }, + "model": "earlydating.Profile", + "pk": 250 + }, + { + "fields": { + "age": 23, + "bio": "youre way too beautiful girls. youre gonna have me going suicidal. when you say its over. i know i took this from a song but it really. is true!", + "img": "user_pixel/m-196717-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 251 + }, + "model": "earlydating.Profile", + "pk": 251 + }, + { + "fields": { + "age": 31, + "bio": "i am the friend who gets called on to partake in the latest. adventure. i consider myself up for anything...at least once. i. love being outdoors, whether hiking, wandering around the farmers'. market or jogging the lyon street steps. my sunday yoga practice is. sacred if i'm in town and you can find me at the gym most mornings.. spinning is a. newly discovered passion of mine, though i do it in sneakers and. rarely in bike shorts (thank goodness!). i have a fantastic kitchen. and love to host brunches and dinner parties full of new recipes.. rarely will you find me on the couch for too long, but i indulge. every once in awhile if there's some sort of addictive marathon on. bravo. i've traveled a bunch, including living in. sydney on bondi beach. i learned there that i'm a pretty terrible. surfer but i'll try anything at least once. my best travel. adventure was dodging leeches during rainy season in the thai. jungle on a ziplining, tree-house-living excursion for 3 days.. second to that is probably spending a week traveling around costa. rica in a van full of people with the flu. we'll save that story. for later.. . i'm considering buying a new bike to explore on, a plant or tree to. energize my living space and finally bolting my bedroom bookcase to. the wall after living in my current place for nearly 2 years.", + "img": "user_pixel/f-371793-860x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 252 + }, + "model": "earlydating.Profile", + "pk": 252 + }, + { + "fields": { + "age": 30, + "bio": "as a bay area native, and an employee of a company dominated by. females, i'm in need of new ways to meet new people - aka,. men.. i'm also coming out of my winter/holiday hibernation, and am ready. to play...looking for someone to help drive this social initiative.", + "img": "user_pixel/f-371781-740x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 253 + }, + "model": "earlydating.Profile", + "pk": 253 + }, + { + "fields": { + "age": 37, + "bio": "i am getting back into the dating scene and looking for a man who i. can spend some time with and develop a relationship with.", + "img": "user_pixel/f-371739-1200x792.jpg", + "preference": "straight", + "sex": "Female", + "user": 254 + }, + "model": "earlydating.Profile", + "pk": 254 + }, + { + "fields": { + "age": 55, + "bio": "this profile is being remodeled.. . i wrote it the day i joined, my first foray into online dating 6. months ago. i was also dating for the first time since becoming a. widow...so my priorities were different [mainly just to make. friends, maybe get laid & careful not to lead anyone to. thinking i was emotionally available [i wasn't]. . 6 months later,i'm still me, but freer, happier & with some. altered priorities. . i am looking for connection now. casual sex? been there, done that,. over it, sex is still integral to my spirit but i prefer to be. friends with those i share my body & laughter with.. eventually i hope to meet that person who i connect with in every. way & let love back in my life.. . so read on with that in mind, my answered questions too. this is. still the essence of me , joyful, hopeful and human, but, it. reflects the calmer, more open hearted me. thanks. . stir up the status quo,change the world a bit every day,do no harm.. do some good, listen to my gut, & live in the moment is. probably my mantra.. . i am having & have always had a colorful life following my own. drummer. the joy, pain & many adventures have probably made me. pretty unshakeable, nonjudgemental, open minded, open hearted &. no drama.. . i value empathy, honesty & an open heart above all in. others.. . i was the caretaker with joy [and exhaustion] during a lover's last. year & feel honored to have been the one to let him go.. . i love . listening to other people's lives, adventures & passions,. my favorite thing is that there are so many interesting, unique. people behind all those faces.. . i have worked in rock n roll, bluegrass & other genres in every. backstage capacity as well as singing since i was 15. i've also. worked in theatre & film. i've used those same skills in. \"straight jobs\" at times in order to be a good mother. . music & the arts, especially live, fringe arts. are my passion.. . i raised 3 amazing sons mostly on my own & now count them among. my loving friends. . social/political issues are very important to me. i'm open minded&. enjoy hearing other points of view.. i love learning. . i laugha lot. . i love completely. . when not happily single i was in a long term relationship with a. woman that ended amicably & i am a widow of a brief but deeply. happy marriage to an amazing guy.. i am self sufficient, have a close extended family of friends that. i love with all my heart but finding real love would be a. delightful suprise. one i am willing to wait for. i'll know it when. it happens. do i long to find that true connection and have a. fellow traveler/partner in crime? of course,. i'll know & so will you when that time happens. . i love, live & breathe live music & spoken word a good place to. find me is at an open. mic....emerging bands , . professional makeup especially blood & fx work , vintage. cars & trucks, drag of all genders,. vintage. fashion,riding on the backs of horses & motorcyclescostuming. ]]& [styling out of found objects, road trips,burlesque]]..., .francaise., life drawing,. photography.spoken word poetry, storytelling performance. art.nature & the. the outdoors tattoos.spontaneity. eliminating all the letters in lgbt..etc.& replacing with. queer, you know, the. obvious one great. sex but apparently as a woman, i'm supposed to be coy about. that here. c'mon boys & girls, we all think about it !!. . i'm a goofy girl who's had a goofy life & i like it that. way. . there you go, i guess that sums me up. . i am laidback, true blue,loving and funny", + "img": "user_pixel/f-372039-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 255 + }, + "model": "earlydating.Profile", + "pk": 255 + }, + { + "fields": { + "age": 32, + "bio": "chill guy here, masculine, smart, fun, honest, and loyal. i'm. looking to get to know other guys to hang out with and go from. there. good people and good conversation are important. i'm not. really down with pop culture. working class, tats, scruff, geeks. and great smiles are sexy.", + "img": "user_pixel/m-2457344-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 256 + }, + "model": "earlydating.Profile", + "pk": 256 + }, + { + "fields": { + "age": 26, + "bio": "i'm the bastard child of cs and liberal arts. geeky, confident. about the world, and slightly insecure about math. i'm passionate. about education, but have learned to leave politics well enough. alone. i travel, less than i used to but more than most people,. bake, and host impromptu dinner parties. i had my first crush on a. geek in the 7th grade, he didn't know i was alive until one day i. asked him to teach me how to launch a denial of service attack (it. was the 7th grade, don't laugh :-p). i never went back to the real. world.. . oh, and one other fun fact: i'm kinky. more specifically, i like to. hit boys with sticks. and i like foot rubs.", + "img": "user_pixel/f-1715759-1200x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 257 + }, + "model": "earlydating.Profile", + "pk": 257 + }, + { + "fields": { + "age": 25, + "bio": "i'm born and raised brazilian, but spent most of my childhood in. the midwest. i moved to san francisco 3 years ago after college. i. work as a software engineer and love my job. when not working, i'm. either playing or watching sports, hanging out with friends, or. coaching my 5th grade soccer team.", + "img": "user_pixel/m-2433304-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 258 + }, + "model": "earlydating.Profile", + "pk": 258 + }, + { + "fields": { + "age": 30, + "bio": "i'm a singer/songwriter and phd candidate in cal's english. department. two more years to go...yes!!!", + "img": "user_pixel/m-284328-1000x672.jpg", + "preference": "straight", + "sex": "Male", + "user": 259 + }, + "model": "earlydating.Profile", + "pk": 259 + }, + { + "fields": { + "age": 32, + "bio": "i love the beach and surfing a lot..i love to just kick it on the. beach at night chillin under the stars listening to the sea crash. on the shore..motocross..snowboarding..mountain biking..i love cars. ..dogs are rad... im totally honest and am very approachable..in fact i love when a. girl approaches me to show an interest..im not like ur other or old. boyfriend bringing u drama and bs..so not about it..save the drama. for ur ex or ur next..i just want to be that guy u come to when ur. over the other guy..ill just love u and make love to u..if we hit. it off like that..im a gentleman so u know i know how to treat a. lady..im also a bad boy so u know ill hit it right bb..oops i didnt. just say that..lol..im not minute man..i love to make love for. hours pleasing u and making u feel like the woman u are..im 420. friendly but im not trippin if ur not..so anyway please hit me up. if u wanna know anything..ok? peace. . i am hella cool, fun 2 b wit, and sexy baby..!i", + "img": "user_pixel/m-223710-900x593.jpg", + "preference": "straight", + "sex": "Male", + "user": 260 + }, + "model": "earlydating.Profile", + "pk": 260 + }, + { + "fields": { + "age": 25, + "bio": "lets get started about how incredibly exceptional i am! not only am. i beautiful, intelligent, charming, and witty, but humble and. modest as well. i excel at pretty much everything in life and while. i truly hate to admit it, i am better than amazing! just in case. you can't tell i am a bit sarcastic and do enjoy a hyperbole here. and there! i revel in my hilarity, basically i just like to goof. around and smile. however, i am very passionate about my ideals and. my future goals but i try not to take life too seriously, it's too. short for consistency i love change!. . aside from being hilarious, i love the outdoors. nothing beats. being in the sun all day long, on a nice long hike through. uncharted forests, mountains, or deserts. i am a thrill seeker and. explorer, my main problem is i am not scared of heights, so i think. that i can basically climb or jump out of or off of anything, this. mentality has not failed me yet, but i may have broken a few bones. along the way!. . i am vivacious, whimsical, and progressive", + "img": "user_pixel/f-371515-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 261 + }, + "model": "earlydating.Profile", + "pk": 261 + }, + { + "fields": { + "age": 30, + "bio": "ripping through life with spontanity, wit and a tmpermental \"e\" key. on my laptop...can you hang with that? i get up and go at a moments. notice, and bounce off walls like a good add gener should...come. keep up i dare ya, add your styl and grace to fun activities and. we'll put together something noteworthy at the very least if not. downright chaotic and hilarious, come play!", + "img": "user_pixel/m-191706-900x600.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 262 + }, + "model": "earlydating.Profile", + "pk": 262 + }, + { + "fields": { + "age": 28, + "bio": "this is important:. . i'm leaving the country for two months. if you message me, i'm. probably not going to answer you. i'll have the interesting profile. stuff back on okc when i get back.. . solong suckers!!!", + "img": "user_pixel/f-2039406-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 263 + }, + "model": "earlydating.Profile", + "pk": 263 + }, + { + "fields": { + "age": 39, + "bio": "i keep hearing about this site and decided to give it a whirl! i. have a short attention-span, so of course i think that anyone. reading this will too. i tend to just scan these bio's for the. important stuff and to me the most important thing about you is. that you are smart and funny! (oh yeah and your pic!). . important stuff about me: sweet, direct, down-to-earth, honest (to. a fault), smart, independent, love dogs, like to try new things,. love to laugh... and much much more!. . i'm originally from the east coast, moved here in 1993 and have. moved back a few times, but keep ending up in san francisco.. . ask me anything else you'd like to know about me!", + "img": "user_pixel/f-1799387-1200x691.jpg", + "preference": "straight", + "sex": "Female", + "user": 264 + }, + "model": "earlydating.Profile", + "pk": 264 + }, + { + "fields": { + "age": 22, + "bio": "live, laugh, and enjoy life to the fullest.", + "img": "user_pixel/m-261962-900x593.jpg", + "preference": "gay", + "sex": "Male", + "user": 265 + }, + "model": "earlydating.Profile", + "pk": 265 + }, + { + "fields": { + "age": 25, + "bio": "i'm constantly reevaluating, but i know i'm one for numerous. detours and occasional back tracks - they're a pretty good source. of perspective and humility.. . my glass is half full, i love a dynamic city as much as i love the. back country, shufflin'... erryday, i generally give a frick about. what's going on around me and around the world too, and i'm quite. into impromptu adventures - alone or in good company is all fine by. me.", + "img": "user_pixel/f-371561-1200x674.jpg", + "preference": "straight", + "sex": "Female", + "user": 266 + }, + "model": "earlydating.Profile", + "pk": 266 + }, + { + "fields": { + "age": 25, + "bio": "you're here? isn't the photos tab the real draw? back button now.. don't make a mess, you bleeding hearts.. . ok. two years ago i jaunted across the coast to become a famous. stand up comic. always a prudent choice out of college. i rubbed. elbows with the best of the west's famous and got disillusioned. who'da thunk?. . chilling in my eclectic apartment now, moby's softly bubbling on. the stereo, watching a friend study new quartz crystals he brought. back from the mountains. wine's on the left, cat on the right.. life's good.. . everything that i'm supported by, from my job to my friends to my. high spirit, keep me level enough so that i push my comfort zones.. specifically, in artistic, communal, sexual, social, emotional, and. spiritual categories.. . so, let's be honest, i'm exactly like every other well-adjusted. white dude in this town that's looking for a bigger picture. we're. not all ascendent masters, i still drink redbull at parties for. god's sake. and i swing both ways, so if that's icky, adios, my. sister. my best friends say i have \"fomo,\" or fear of missing out.. they're always right.. . but that's where i think the honey's found. not in aisle 6, in. folks who are wise, opened up from experience. i flow best with. friends that test their creative and mental barriers (and it's as. tough as it reads).. i back them, they back me, we all get better at jamming away at. life, just like drummers back guitarists when it's time to rip open. a solo.. . i spend my week nights teaching folks ballroom dancing, salsa, the. whole enchilada that you see on tv. naturally i take well to other. creative teachers. i'm putting the gas on a deeper look into life. via dancing, music during my mornings and afternoons. any media has. potential.. . i'm a million different people from one day to the next, but each. one's a little ballsier and wiser than the last. but my cat run's. sideways and can be a lil b**** when she's ragging, so please check. out someone else's profile. maiabs4u <--- seems like a classy. amateur dj & second time round scholar.", + "img": "user_pixel/m-245365-900x570.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 267 + }, + "model": "earlydating.Profile", + "pk": 267 + }, + { + "fields": { + "age": 21, + "bio": "well here i go to make myself sound genuine and interesting.. lol.. . in all honesty i can't summarize myself in a way that makes sense.. i'm just random. the numbers say i'm young, but my mentality is a. lot more mature. i love to love, laugh, and just live. at first i. may come off as a little reserved- but i'm still talkative and. friendly. i guess you can say the things i've been through have. taught me to be careful with who i let within my walls.. . on a less serious note, i'm just a down *** girl. i can be girly. and flirty and love to get dolled up for a night on the town. and i. can also be 'one of the dudes' and just kick back, talk shit and. have some fun. i'm really just looking for friends on here, but que. sera, sera. as far as friends go, i'm really not picky- as long as. you're not too obnoxious and rude, i like all kinds of people.. relationships and dating are on a completely different level. i'm. super picky about who i commit to and it takes a lot for me to want. to be exclusive with someone. i'll admit i'm a bit shallow and my. partner has to have it all- looks, personality, humor, emotional. connection, financial stability, intelligence and wit, dreams and. goals, and the determination to make it happen.", + "img": "user_pixel/f-2039406-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 268 + }, + "model": "earlydating.Profile", + "pk": 268 + }, + { + "fields": { + "age": 22, + "bio": "just another guy looking for mr.right. get to know me. it could be. worth your time.", + "img": "user_pixel/m-218536-363x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 269 + }, + "model": "earlydating.Profile", + "pk": 269 + }, + { + "fields": { + "age": 28, + "bio": "hey! so i've recently moved to the usa from australia. i came here. for work as all the studios back home have shut down due to the. global financial crisis. awsome.. . but here i am in sunny california!. . i work in the video game industry as a 3d artist and settling in to. american life. i'm a friendly, easy going guy. i probably come off. as a bit reserved at first but will open up once i suss you. out.. . more to come as i find the time to update this...", + "img": "user_pixel/m-2325089-300x375.jpg", + "preference": "straight", + "sex": "Male", + "user": 270 + }, + "model": "earlydating.Profile", + "pk": 270 + }, + { + "fields": { + "age": 30, + "bio": "i'm a relaxing, easy-going guy who works too much.. i'm pretty good at making people laugh.. and i'm soulful, dammit. i got soul.", + "img": "user_pixel/m-1862356-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 271 + }, + "model": "earlydating.Profile", + "pk": 271 + }, + { + "fields": { + "age": 29, + "bio": "i am a fun, easy going person who really values honesty and. openness.. . i'm an actress, stand-up comedian, and writer. i've traveled to 23. different countries, my favorites were bosnia, serbia, and. guatemala.. . i'm looking for a fun companion for going to plays, cooking good. food, or exploring art openings. i like going to the park.", + "img": "user_pixel/f-371907-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 272 + }, + "model": "earlydating.Profile", + "pk": 272 + }, + { + "fields": { + "age": 28, + "bio": "lover of all things positive, beautiful and enriching.", + "img": "user_pixel/f-371785-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 273 + }, + "model": "earlydating.Profile", + "pk": 273 + }, + { + "fields": { + "age": 27, + "bio": "i moved to the sf area recently and am looking to connect with. people here- preferably around the peninsula. i'm an introvert with. extroverted tendencies... i like talking, reading, aerial. acrobatics, hiking, motorcycles, dancing to good music, and other. adventures. i work in green tech and am passionate about it - so. i'm interested in anything eco. i have a male love/life partner. with whom i am in a polyamorous relationship.", + "img": "user_pixel/f-371743-666x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 274 + }, + "model": "earlydating.Profile", + "pk": 274 + }, + { + "fields": { + "age": 27, + "bio": "i never know what to say on these self summary type deals. i like. to dance. i can do several types of victorian ballroom style. dances, but i wouldn't say that i'm anywhere near an expert at. them. i like video. games, and i love hanging out with my friends, but. responsibility comes first and too often gets in the way. i've. never met a renaissance faire i didn't. like, and i both visit and work them whenever i can. i'm kind of a. nerd that way.. . i collect random stuff sometimes. i really like fun crazy socks. i. like socks more than i should, given the fact that 85% of the year. i wear sandals. i love coffee.. . i am nerdy, fun, and complicated", + "img": "user_pixel/f-1732575-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 275 + }, + "model": "earlydating.Profile", + "pk": 275 + }, + { + "fields": { + "age": 25, + "bio": "24 years old, brazilian, love learning new languages and meeting. new people.", + "img": "user_pixel/f-371887-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 276 + }, + "model": "earlydating.Profile", + "pk": 276 + }, + { + "fields": { + "age": 28, + "bio": "mostly looking for conversations, or friends to hang out with. love. having conversations on books, movies, politics, arts, designs,. etc. not really looking for anything too serious, but anticipate. surprises when i least expect it.. . into guys around my height, and age. don't have any racial. hung-ups, just like scruffier slim guys.", + "img": "user_pixel/m-245365-900x570.jpg", + "preference": "straight", + "sex": "Male", + "user": 277 + }, + "model": "earlydating.Profile", + "pk": 277 + }, + { + "fields": { + "age": 38, + "bio": "i'm a passionate, fun-loving, caring, sarcastic, sensitive,. creative, and humble (although you wouldn't be able to tell from. this description) girl who likes to travel, cook, hike, bike, and. ski.. . i like trying new things, and some of them stick. yoga,. photography, guitar, poetry, scuba, drawing, html, and sailing have. all taken their place as my passion de jour.. . none of my passions are much fun if i have no one to share them. with, so i have lots of friends, all over the country who inspire. me and play with me.. . i think that humor and flexibility can make most situations. better.. . i believe in quality not quantity.. . i love the color chartreuse.", + "img": "user_pixel/f-371675-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 278 + }, + "model": "earlydating.Profile", + "pk": 278 + }, + { + "fields": { + "age": 28, + "bio": "i am a gamer, but don't let that fool you. a recent ph.d graduate. from uc berkeley in chemistry, i usually spend my time with. scientific research. the rest of the time is spent either out. dancing with friends or snuggled at home with some games.. . i'm big into singing and dancing. people say i'm pretty good, so. i dont get many complaints about it. i'm a huge fan of musicals. my favorites. right now are next to normal, in the heights, and the last 5 years.. but of course i love wicked, rent, avenue q, etc. and as far as. dancing is concerned, i used to study ballet folklorico for 4. years, and used to love performing dance. with that in mind, i. adore going to dance clubs and rocking out to lady gaga and other. great dance music :d. . i'm also a kind of guy that many people love to hang out with. i. have a very fun outlook on life, and rarely have a bad day. its all. about thinking about the good things in life and enjoying those.. i'm currently loving living in san francisco, and never want to. leave :d. . i am happy, optimistic, and intelligent", + "img": "user_pixel/m-245261-900x675.jpg", + "preference": "gay", + "sex": "Male", + "user": 279 + }, + "model": "earlydating.Profile", + "pk": 279 + }, + { + "fields": { + "age": 28, + "bio": "i don't think i summarize well.", + "img": "user_pixel/f-372023-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 280 + }, + "model": "earlydating.Profile", + "pk": 280 + }, + { + "fields": { + "age": 24, + "bio": "i don't like trying to describe my self. i'm still figuring it. out.. . i am dirty, i don't buy things, and i am often homeless. because i. like it.", + "img": "user_pixel/m-282376-1000x666.jpg", + "preference": "straight", + "sex": "Male", + "user": 281 + }, + "model": "earlydating.Profile", + "pk": 281 + }, + { + "fields": { + "age": 31, + "bio": "single guy, looking for other single guys who are interested in. meeting and seeing how things evolve. i was born and brought. up abroad. i have been a traveler most of life, moving every few. years to a different city. i enjoy traveling and visiting places in. new countries. it has been over two years since i moved to san. francisco from upstate ny, and i really like it here. sometimes, i. wonder if it is time to stop moving and just continue living here.. i enjoy meeting new people and hearing their stories. i also enjoy. spending time talking / hearing about / understanding different. cultures. needless to say, that has shaped my outlook of the world. around us. i am fairly liberal (politically speaking) and like to. follow things in the news that are currently shaping the. world.. i am a scientist (research / biotech) by profession and i really. like what i do.. . i eat well (mostly) and work out 2-4 times a week to keep fit and. healthy. i really enjoy good food, and can be quite critical (and. comical..) in rating food at restaurants.. . i am pretty happy with my life, and would love to meet someone. special (for lack of a better word.) to share it with.. intelligence is sexy. nice-ness is attractive. playfulness is. desirable.", + "img": "user_pixel/m-199906-725x483.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 282 + }, + "model": "earlydating.Profile", + "pk": 282 + }, + { + "fields": { + "age": 29, + "bio": "so i have been on this website for a long time, and i haven't had. too much luck yet. i am also on other websites and haven't had much. luck with those. am i bad at internet dating?? is it really me and. not you?. . anyway, i'm shy, so i tend to get along better with people who are. open and extroverted. it takes me a little while to warm up to. people, but once i do i'll tell you anything. i'm not exactly the. girl next door, but i'm not a total freak either. people tend to. mistake me for things i am not. i've been told many times that, \"i. don't look like the type of girl who would do ________\". . fun facts:. . i've lived in california my whole life. . i am a registered nurse (it feels so good to say that!). . i have saved the ticket stubs from every concert i've been to. . i played the drums in a few rock bands in high school. . i'm a bit of a beer snob. . i mud wrestled in college (not as a career, just once for fun)", + "img": "user_pixel/f-371739-1200x792.jpg", + "preference": "straight", + "sex": "Female", + "user": 283 + }, + "model": "earlydating.Profile", + "pk": 283 + }, + { + "fields": { + "age": 29, + "bio": "i'm originally from sacramento, moved to the bay area for college,. and decided to stay and work. i'm a third grade teacher and love. every moment of it! i'm very family oriented and love hanging out. with my family as much as going out with friends. i love traveling. and exploring new places.", + "img": "user_pixel/f-371905-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 284 + }, + "model": "earlydating.Profile", + "pk": 284 + }, + { + "fields": { + "age": 28, + "bio": "i am a secret softy. i wear an armor of steel over my heart of. mush. i'm working on letting myself be vulnerable.. . i recently moved to sf from nyc for no real reason and am loving. every second of it. i have been amazed at the scope of heart and. talent this city has to offer and want to soak up as much of it as. i can.. . i am not particularly outdoorsy or too cool for school. i like. simple and sometimes nerdy things. comic shops and science museums. are high on my lists of enjoyable destinations. however, i also. like to talk dirty and can't get enough dancing or tattoos. i'm. complex.", + "img": "user_pixel/f-371919-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 285 + }, + "model": "earlydating.Profile", + "pk": 285 + }, + { + "fields": { + "age": 32, + "bio": "i'm a lot of things, and i love to have a good time no matter if. i'm out on the town or watching stupid movies with friends. i'm. easy going, and looking to make new friends or maybe more. i am. ambitious, hard working, an artist, a musician, and a writer. i am. also a bit of an eccentric, but that just makes me a little more. fun than normal. i am not really into one night stands (but. sometimes she's just really that hot), nor am i looking to get. married right now. something in between. . . .. . i am looking for some people who can leave stupid at the door,. laugh at themselves, sing badly and still enjoy it, see the forest. and the trees, has some belief in something, has ambition,. compassion and doesn't run shit scared from a challenge.", + "img": "user_pixel/f-371795-1200x674.jpg", + "preference": "straight", + "sex": "Female", + "user": 286 + }, + "model": "earlydating.Profile", + "pk": 286 + }, + { + "fields": { + "age": 35, + "bio": "i recently relocated to the bay area from l.a. i love reading, horseback riding,. skiing, traveling, the tango, the salsa, and the. waltz. american. chocolate is. evil. real chocolate is imported...unless it's scharffen berger.. can i have a crate of that \"gu\" pudding they serve on virgin. atlantic, please?. . oh, see that \"education\" information over there?. ----------->. i really did!. . i am playful, strong-willed, and shy", + "img": "user_pixel/f-371785-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 287 + }, + "model": "earlydating.Profile", + "pk": 287 + }, + { + "fields": { + "age": 25, + "bio": "i have a few tattoos. i have a kazoo, i have a coffee cup, i have. the word \"enough,\" i have a peace sign, and i have \"i love parker. posey.\" that's it. that's all you need to know. no, the \"enough\". isn't some deep shit. it actually means, \"please. please shut up.. don't say anything else. enough.\" i want so badly for you to stop. talking if you're not saying anything or if you're saying. everything.. . i've seen \"eternal sunshine of the spotless mind\" once. i'm aware. that this makes me okcupid-worthy and considerably more attractive. to those lonely members of my generation. that's why i just wrote. it. i can add some more of that kind of stuff too. let's see. here...oh yes: i love avocados, i'm a vegan, i stopped doing yoga a. year ago but i still say i do it when people publically ask me, i. like netflix, i read books by people whose names everyone. pronounces differently, i own shoes made out of recycled. materials.. . you can't tell me you don't love me now. no, i know you do.", + "img": "user_pixel/f-1742194-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 288 + }, + "model": "earlydating.Profile", + "pk": 288 + }, + { + "fields": { + "age": 40, + "bio": "my friends are like family to me and even better, my family (4. sisters) are my friends as well! i have 12 nieces/nephews and i am. considered the \"cool auntie\".. i am genuine, and social, and complicated.. i confess, i am really quite nervous about this on-line dating. thing, but it seems like it's everywhere so am giving this a shot.", + "img": "user_pixel/f-2454938-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 289 + }, + "model": "earlydating.Profile", + "pk": 289 + }, + { + "fields": { + "age": 42, + "bio": "i am intelligent, funny, active, creative, vital, spiritual,. passionate. i love to travel, dance, play and love. i have an. adventurous spirit and curious mind.", + "img": "user_pixel/f-1929452-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 290 + }, + "model": "earlydating.Profile", + "pk": 290 + }, + { + "fields": { + "age": 26, + "bio": "i'm currently engaged to xiley though we are both polyamorous.. . i don't know how many times i've looked at my own profile and. realized it says nothing really about me. but it's always hard to. give you a good picture without you actually just experiencing me.. i'm brilliant but unapplied. i love anyone who takes the time to. try and talk to me and i love exceedingly deep without needing much. warrant, but i intentionally screen people to keep the amount of. people i actively love within a manageable range. i give you all. the bad news first, if you can survive that then i might actually. believe you could actually value another human being. i'm cynical. but trusting. i'm jaded but naive. i'm guarded, reserved, and. introverted but i can be as carefree as a child, as warm as a sandy. beach after a hot day, and as comforting as a warm bath and soft. sheets.. . i love, love, love music. and i hope someday to at least have a. friend who connects to music in a similar fashion to what i do,. because i would love to share it. which leads to my next. point.. . i love to share. more specifically, my time and my life. i am. always looking for people to connect to and share some of me and be. shared with by them some of themselves.", + "img": "user_pixel/m-199906-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 291 + }, + "model": "earlydating.Profile", + "pk": 291 + }, + { + "fields": { + "age": 28, + "bio": "i (no longer \"recently\" =p) graduated college in mathematics and statistics. i am. interested in pursuing biostatistics and epidemiology research in the. public. health field. love writing my train of thoughts/solving. number problems and would be happy with just a paper and pen.. (Just read it already!)-(Just read it already!). . love to travel. though i have only been to belgium, germany, netherlands, france. and japan. i love. japan! its craziness, its yumminess. trying/learning new things and. having fun like salsa-ing, skiing and paragliding! any physical. adventure and. intellectual. stimulation.. . challenges and. doing new things --- like quick hobbies such as design ... check. out (fun started years ago back in the day!):. . . want to learn how to. do so many things like computer program (python,. etc), speak korean. or german, boulder,. play the piano,. etc.. . i am shy, wacky, and introspective", + "img": "user_pixel/f-2267811-300x225.jpg", + "preference": "straight", + "sex": "Female", + "user": 292 + }, + "model": "earlydating.Profile", + "pk": 292 + }, + { + "fields": { + "age": 32, + "bio": "i just moved to san francisco recently and am loving the city.. don't know much, but i do know there are tons of things to do in. the city. it would be great to meet someone cool to spend time with. and experience all that sf has to offer.", + "img": "user_pixel/m-245667-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 293 + }, + "model": "earlydating.Profile", + "pk": 293 + }, + { + "fields": { + "age": 29, + "bio": "rather than attempt to explain myself in a couple paragraphs, here. are a few things about me. . - i'm an east coast transplant and have made san francisco my home. over the last 4 years.. - i am passionate, affectionate, kind, communicative and the kind. of person that many feel like they can confide in qualities i'm. also looking for in a partner.. - i'm also very lighthearted and easy going. i find humor in many. things and it's very important that i'm with someone who laughs. often and can make me laugh.. - i enjoy traveling, road-trips, flea markets, farmers markets,. comedy clubs, concerts, dive bars, the park, the beach (yes, and. long walks on the beach), playing tourist for a day in sf,. juicing, thinking i can ski and my mac.. - i was taking yoga classes at the gym but recently switched to a. spin class. the group classes have been great because they push me. to work out harder than i normally would.. - i've also started playing pool again and joined a league. i look. like a pro, showing up with my own cue in it's case, but don't let. that fool you. skill level: amateur!. - i like going fast: roller coasters, water slides, zip lines,. motorcycles...i have not been skydiving yet and am actually pretty. afraid of heights, but i'd like to try it!. - i love a guy who loves to cook. i'm learning to cook though don't. have the passion for it that i have seen in others (looking for a. sous chef?). i think it's pretty awesome when people have a natural. understanding of flavors and how they work together. i always clean. when people cook for me. :). - i really value profound relationships, platonic or romantic, that. mature over time relationships in which communication is strong. and conversations have depth. having a few strong, long-lasting. friendships is more important to me than several acquaintances. the. friends i make usually have uniquely different personalities from. one another and don't fall into the same social circle.. - initially i'm looking for someone to go out with, but i've done. my share of casual dating so am ready for a relationship. i'd like. to marry eventually and have kids, but it's not a race. with the. right person at the right time! life is for fun and it's more fun. with people we love by our side.. . if you're still reading, i'm glad you made it this far!", + "img": "user_pixel/f-372037-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 294 + }, + "model": "earlydating.Profile", + "pk": 294 + }, + { + "fields": { + "age": 20, + "bio": "hi, i'm sarah! i am just looking to meet new people. school just. got out for summer and i'm super excited to be staying in the bay. area. i'm from monterey, ca but got a live-in nanny position...so. i'm here to stay! however, all of my friends left to return home! i. could really use some new friends or potential love interests!. message me if you want to talk! :)", + "img": "user_pixel/f-371517-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 295 + }, + "model": "earlydating.Profile", + "pk": 295 + }, + { + "fields": { + "age": 39, + "bio": "i'm a well-rounded, fun-loving, city-dweller from canada with a. passion for music, art, dance, food, photography and many things. trendy. but don't let my urban nature fool you. i ski black. diamonds, hike steep hills, travel the globe, hit forehands and. backhands, and am learning to surf.", + "img": "user_pixel/f-371519-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 296 + }, + "model": "earlydating.Profile", + "pk": 296 + }, + { + "fields": { + "age": 40, + "bio": "i am smart, funny, compassionate, fun, intense person that has a. wild side that must be exercised occationally. i am handsome,. generous, and a gentlemen.", + "img": "user_pixel/m-2436119-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 297 + }, + "model": "earlydating.Profile", + "pk": 297 + }, + { + "fields": { + "age": 27, + "bio": "some have told me that this video is me at my best. i hope so. it's. certainly me doing what i love to do the most - selling myself to. (potential) students.. .", + "img": "user_pixel/m-211526-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 298 + }, + "model": "earlydating.Profile", + "pk": 298 + }, + { + "fields": { + "age": 32, + "bio": "ok. this profile will self-destruct on july 9, 2012. i am a theater. artist working in sf for the month of june and the first week of. july. i would like to meet some nice folks who would be interested. in hanging out and showing me around. so simple! so uncomplicated!", + "img": "user_pixel/f-2193929-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 299 + }, + "model": "earlydating.Profile", + "pk": 299 + }, + { + "fields": { + "age": 35, + "bio": "(originally from bombay, in the bay area since last 5 1/2. years). . \"'when one does not love too much, one does not love enough.\". blaise pascal. . i am deeply moved by compassionate beings!. . i thrive on love and care,giving as well as receiving- a lot of. it. : ). . nature makes my soul feel at home....... . creativity feeds my deepest hunger for self-expression..... . children bring out the bessssssssst in me : ). . art makes my life seem most meaningful,purposeful...... . i love loving,dancing,playing,laughing,crying..... with reckless. abandon.... . i have too many passions, but dancing and singing top the list.... i'm also a trained yoga instructor and hold a master's degree in. philosophy.... . am vegetarian...into- meditation,watching plays/concerts etc,. stimulating discussions,eye-gazing,people watching, five rhythms,. tickling,volunteering,massages,wandering in the himalaya mountains. etc...", + "img": "user_pixel/f-2451613-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 300 + }, + "model": "earlydating.Profile", + "pk": 300 + }, + { + "fields": { + "age": 52, + "bio": "i'm an architect, astronomer and dad. currently i'm working on a. large project in shanghai, 3 towers and a large retail building,. very exciting. i travel over there every couple of months. also,. i'm on the board of the san francisco amateur astronomers and last. year i stepped down as president. i also do public astronomy. programs around the bay area to show the public the rings of. saturn, the cloud tops on jupiter, star clusters and galaxies. i. ride my bike to work in the morning to get extercise and i go on. bike rides with my boys every weekend. i read quite a bit and i'm. currently re-reading many of the books i read growing up.", + "img": "user_pixel/m-48271-361x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 301 + }, + "model": "earlydating.Profile", + "pk": 301 + }, + { + "fields": { + "age": 26, + "bio": "hello!. . i am a 24 years old and i like to make fun of people on reality tv. and try to wear clothing that does not give me a camel toe. i like. doing anything active, and try to keep in shape as much as i can to. prevent getting a fupa (points if you know what that is). i am. currently an emt, but i am looking to go to paramedic school to. become a firefighter once i stop being lazy and make enough money. to put myself through school. my goal in life is to help people,. and i love every moment of my job when i can make a difference in. someone's life when they are freaked out and need help.. . i just got a haircut, and i specifically said 'do not cut my hair. like justin bieber,' and she cut my hair like justin bieber. so. then i got another haircut because my friends told me to stop going. to supercuts and now i look like my brother. so it all works. out.. . i also have a hedgehog, which is a total babe magnet until they. realize that he's actually kind of douchey and a triple threat :. spiking, biting and shitting. but i love him more than anything and. he was worth smuggling into california and risking felony. charges.. . that's it for now.. ", + "img": "user_pixel/f-1742194-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 302 + }, + "model": "earlydating.Profile", + "pk": 302 + }, + { + "fields": { + "age": 34, + "bio": "hello charming ladies. it's a pleasure to be here.. . regretfully, i won't be selecting any more stunning beauties. the. clones around la were fun, but i'm here to meet the right girl for. me.. . please do not holler at me if any of the following apply:. 1. smoke a lot of weed. 2. usually wear flannel. 3. need more than 1 hand to count your tattoos/piercings. 4. emotionally unavailable. 5. immature (i will administer spankings). . otherwise, i'd love to hear from you ;). . ok, here's me:. http://youtu.be/gr5zljnjmfk", + "img": "user_pixel/m-2436019-300x200.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 303 + }, + "model": "earlydating.Profile", + "pk": 303 + }, + { + "fields": { + "age": 29, + "bio": "i am a passionate driven spunky 29 year old book lover. i love. traveling, cooking and puli's. you can catch me working out at the. gym, surfing or running.", + "img": "user_pixel/f-372037-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 304 + }, + "model": "earlydating.Profile", + "pk": 304 + }, + { + "fields": { + "age": 36, + "bio": "traveler, dancer, eater of good food.... i never lived anywhere more that 5 years but i think sf may finally. be it for me", + "img": "user_pixel/m-45602-723x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 305 + }, + "model": "earlydating.Profile", + "pk": 305 + }, + { + "fields": { + "age": 31, + "bio": "i'm sensual, voluptuous, worldly, carnal and irreverent. yet when. it comes to matters of the senses i'm religious.. . i am tricky.", + "img": "user_pixel/f-2267811-300x225.jpg", + "preference": "straight", + "sex": "Female", + "user": 306 + }, + "model": "earlydating.Profile", + "pk": 306 + }, + { + "fields": { + "age": 33, + "bio": "i am a mom first and foremost. currently separated and filing for. divorce. i am also a good, hardworking, outgoing person. i love. animals, baseball (giants), video games and meeting new people.", + "img": "user_pixel/f-1929452-1200x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 307 + }, + "model": "earlydating.Profile", + "pk": 307 + }, + { + "fields": { + "age": 29, + "bio": "i love to laugh (especially to inane, random, quirky family guy. references or about favorite stand-up comedians) and smile. people. usually joke that i never stop smiling. i sometimes wish i had my. own cutaways like they do in family guy. i have a love/hate. relationship with grammar and oakland. i spend lots of time doing. yoga, hiking, dancing, and meditating. i'm a high school teacher. and am passionately driven to give to our youth however possible. i. try to do something new every week. i question texting as a form of. communication. i love people and mannerisms. i secretly miss the. east coast even though i love california and i think i'm here to. stay. i appreciate genuine, bold, brave, spontaneous, grounded,. funny people.. . what else? it's funny to write a self-summary when i think to truly. know yourself you have to surrender to the idea that there is no. self.. . so this is a self-summary in progress like everything else in. life....", + "img": "user_pixel/f-2275812-300x200.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 308 + }, + "model": "earlydating.Profile", + "pk": 308 + }, + { + "fields": { + "age": 31, + "bio": "i'll be honest - i'm made up of contradictions. i have a serious. job (m&a lawyer) and can be a bit of a hardass at work, but i'm. also known for smiling all the time (i've even been called perky. once or twice). i love to run in the rain, sing in the shower and. celebrate any sort of excuse for a holiday (christmas is my. favorite, and i always manage to fit a big tree in my apartment).. i'm more comfortable in 4 inch stilettos than flats (although i've. learned to carry a pair of flats for the 2 mile walk to/from work),. but i couldn't live without my running shoes. you're just as likely. to find me with my nose in a book as out hiking in the mud. i'm. sarcastic, but rarely mean (you have to seriously, seriously piss. me off first, and even then, what i consider mean, my friends laugh. at). and as much as i love watching sports (my family has season. tix to the giants and i'm a fan of lazy sundays watching football),. i tend not to play them much (i'm a major klutz - ask me later how. i've managed to break both my nose and my cheekbone in two separate. running accidents).", + "img": "user_pixel/f-371983-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 309 + }, + "model": "earlydating.Profile", + "pk": 309 + }, + { + "fields": { + "age": 32, + "bio": "i work hard, play hard, and am a exhaustive go-getter packing as. much into each day as possible, because, we don't know if there. will even be a tomorrow. a rare bay area native, i'm firmly planted. in the berkeley hills. fully employed and even halfway stable, i'm. looking to settle into a grove with someone and let life take a. direction. i'm into the idea of a family, and not into the idea of. dating multiple partners. i've had an active and fulfilling 20s,. now is time to starting building.", + "img": "user_pixel/m-45820-573x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 310 + }, + "model": "earlydating.Profile", + "pk": 310 + }, + { + "fields": { + "age": 32, + "bio": "i'm originally from indiana and moved to sf in 2005. love the city. and love my neighborhood (cow hollow). i'm a laid back sports lover. (go giants and colts) and though it may be a bit cliche, i try to. live life to the fullest.", + "img": "user_pixel/m-284328-1000x672.jpg", + "preference": "straight", + "sex": "Male", + "user": 311 + }, + "model": "earlydating.Profile", + "pk": 311 + }, + { + "fields": { + "age": 26, + "bio": "i love life, my dog, my career, rock climbing, hiking, canoeing,. kayaking, cars, motorcycles, spelunking, exploring ancient ruins,. listening to music, playing music, programming, working out, going. to concerts, and meeting new people (in no particular order).. . i'm italian, passionate, adventurous, spontaneous, and love being. with good company.. . i'm not very well traveled and finally have the means to do so, so. i'm excited to get my travel on. my ideal companion would be down. to leave the country on a given weekend without notice just for. fun.", + "img": "user_pixel/m-219004-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 312 + }, + "model": "earlydating.Profile", + "pk": 312 + }, + { + "fields": { + "age": 34, + "bio": "i am adventurous, fun and loving and i have been told that i have a. good sense of humor. i moved to california last year from atlanta. and i love it. i meditate daily, and i practice reiki.", + "img": "user_pixel/f-371999-595x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 313 + }, + "model": "earlydating.Profile", + "pk": 313 + }, + { + "fields": { + "age": 30, + "bio": "sf is my hometown and i absolutely love it here. been to nyc and,. although it is a great city and its massively huge, i couldn't. possibly think of moving there and never coming back to the. bay.. . graduated from uc davis in psychology (something i am no where near. working in...i think it's been so long i should probably give back. the diploma haha) and a minor in english. after i finished up my. studies i returned to the city and have been here since then.. . i am hilarious, laid back, and a great listener", + "img": "user_pixel/m-230206-540x675.jpg", + "preference": "gay", + "sex": "Male", + "user": 314 + }, + "model": "earlydating.Profile", + "pk": 314 + }, + { + "fields": { + "age": 23, + "bio": "my name is (Just read it already!) and i'm from russia,i've been living in us for 3. years, i'm working and studying engineering at Jojo college!", + "img": "user_pixel/m-282484-1000x667.jpg", + "preference": "straight", + "sex": "Male", + "user": 315 + }, + "model": "earlydating.Profile", + "pk": 315 + }, + { + "fields": { + "age": 19, + "bio": "* carolina~. - nineteen years young. - pre-med undergrad @ sfsu. - photography amazes me and i'm obsessed with it.. - i think the happiest people are the most attractive. - i love to laugh~. - receiving flowers never gets old*. - i'm a sucker for spontaneity :3. - family guy never fails to make me laugh. - i am probably one of the least judging people ever.. - to me, there is no truth only perspective. - winter is awesome...but so is spring, summer & fall ;). - i love the color red!. - negativity annoys me instantly. - i love to lounge on lazy days :p. - i believe everything happens for a reason. - i think if you're still reading this, you might as well say hi~. :)", + "img": "user_pixel/f-2282604-6000x4000.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 316 + }, + "model": "earlydating.Profile", + "pk": 316 + }, + { + "fields": { + "age": 24, + "bio": "what are three apropos adjectives to describe me? inscrutable,. perspicacious and intense are three that immediately come to mind.. if you can't tell, i read the thesaurus in my spare time. out loud.. did i mention that i have a voice that can bring morgan freeman to. tears? let's just say i have a personality so magnetic, i can't. carry credit cards in my pocket. i may or may not have stolen that. line from a dos equis commercial. i hope this self-summary doesn't. come off as cocky...", + "img": "user_pixel/m-283081-1000x667.jpg", + "preference": "gay", + "sex": "Male", + "user": 317 + }, + "model": "earlydating.Profile", + "pk": 317 + }, + { + "fields": { + "age": 20, + "bio": "i'm a student, and a wanderer. i've lived in three countries and. stumbled into the bay area recently, which i'm in the process of. rediscovering.. . right now i'm one of those people who says he writes but hasn't. produced anything in months. i'm hoping to reverse that trend.. maybe something will come to me as i wander through san francisco,. or ride the caltrain up and down all day. if you'd be down for. journeys like that, then we'll get along fine :). . at the moment, i'm looking forward to two things: 1) going on a. research trip to cuba this summer for six weeks. 2) getting a pet. hedgehog next year. just because.. . -i'm in cuba right now. responses will be sporadic!", + "img": "user_pixel/m-245667-900x600.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 318 + }, + "model": "earlydating.Profile", + "pk": 318 + }, + { + "fields": { + "age": 26, + "bio": "my best friend's description of me in 5 words. sporty, accident. prone, motherly, weird, perfectionist", + "img": "user_pixel/f-2398381-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 319 + }, + "model": "earlydating.Profile", + "pk": 319 + }, + { + "fields": { + "age": 35, + "bio": "i am a 34-year old virgin looking to give up the gold. nothing. serious, just want to know what it's like to get rocked like a. hurricane. i'm left handed and love slayer. i work alot and have. lots of money. i don't like jersey shore. i like to party.", + "img": "user_pixel/m-199906-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 320 + }, + "model": "earlydating.Profile", + "pk": 320 + }, + { + "fields": { + "age": 32, + "bio": "i love- painting & film, reading voraciously, riding my. bicycle, drinking an afternoon beer in the sun, wandering around. art museums, dolores park, live music, podcasts, road trips,. strumming my geetar, absurdity, scrabble, and whiskey.", + "img": "user_pixel/f-1938271-1200x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 321 + }, + "model": "earlydating.Profile", + "pk": 321 + }, + { + "fields": { + "age": 32, + "bio": "i am a study in contradictions.. . i'm a country girl who moved to the big city for adventure and. excitement, yet often finds herself relaxing around the house with. a good book.. . i'm a workaholic who loves to goof off.. . i revel in intellectual discussions, and am very analytical, but. covet simplicity.. . i relish lazy days filled with wandering about, but i often prefer. being active and biking all over the place.. . eating and drinking are two of my primary pleasures, but i wouldn't. consider myself a \"foodie\". cheap eats are just as good as fancy. ones, as long as the ingredients are fresh.. . i have a lot of creative impulses, and am an artist of many media.. my projects often go unfinished.. . i try to be kind to everyone, but am often cynical and. judgemental.. . i'm gregarious and loud, but really pretty shy.", + "img": "user_pixel/f-371517-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 322 + }, + "model": "earlydating.Profile", + "pk": 322 + }, + { + "fields": { + "age": 42, + "bio": "intelligent, independent, well grounded woman seeking experienced. male for occasional kink playtime. currently in between. relationships, i'm looking for one or perhaps two regular partners. for a little whisky sharing, conversation, and some kinky. adventures along the way. no one night stands please.. . petite, 5 feet tall, 105 lbs, athletic, red hair, green eyes, fair. soft skinned, and i must say, i have a great ass.. . the kink: i'm primarily submissive, and i like a little pain thrown. into the mix--other than that, i won't get too technical. i would. probably make a terrible dom, but i'm open to ideas. fetlife kinda. freaks me out, so i'm here instead. not a lifestyle--more of a. hobby.", + "img": "user_pixel/f-372023-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 323 + }, + "model": "earlydating.Profile", + "pk": 323 + }, + { + "fields": { + "age": 28, + "bio": "hi! i'm nicole.. . i have a lot of trouble with this self summary thing, as i. generally describe myself based on what i'm doing, what i'm. building and. such. i enjoy making art and it's a big part of my life. i'm. relentless about learning new skills and exploring my. world further. i really enjoy fabricating and making things, both. physical and otherwise. i enjoy travel and haven't been to nearly enough. countries for my liking. i'm constantly working on understanding. myself and what is best for me.", + "img": "user_pixel/f-321470-1100x811.jpg", + "preference": "straight", + "sex": "Female", + "user": 324 + }, + "model": "earlydating.Profile", + "pk": 324 + }, + { + "fields": { + "age": 36, + "bio": "new to this online dating thing. so i'm gonna go ahead and start. with a clich about how new i am to this online dating thing.. . i've been in san francisco for 2 1/2 years, after spending the. prior three years in san diego. the only thing i miss is the. weather. and the mexican food. it really is better down there.. better dim sum here, though. life is all about trade-offs.. . i came here to complete an mba in sustainable management. i've. worked in sustainability for many years, after a 5-6 year career as. a professional musician. i miss being on stage; i don't miss. struggling to make a living doing all the other things that were. necessary to achieve the stage buzz.. . born and raised on the freeways of los angeles, i went to college. in wisconsin, lived in tahoe for a few years, back to la for music. school, up to portland for a couple years, down to san diego then. here. i am the living embodiment of what can be achieved when. californians bridge the north-south chasm and come together as. one.. . i am very politically, socially and environmentally conscious. one. thing i love about sf is the elevated level of consciousness here,. compared to my native socal. i love to have fun. i love live music.. i have a pretty wicked sense of humor, i'm goofy, silly, playful,. intense, creative, sarcastic, chill, funky, boisterous, warm,. passionate, engaging and alive. and humble. totally, unabashedly. humble. probably the most humble person you'll ever meet.", + "img": "user_pixel/m-196717-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 325 + }, + "model": "earlydating.Profile", + "pk": 325 + }, + { + "fields": { + "age": 39, + "bio": "how to describe my life? i've been traveling, learning, pursuing my. career, building friendships, and just really enjoying the life i. lead. and i want someone to share it with, to support each other's. dreams, to love and to laugh.. . my friends say i'm friendly, happy, adventurous, contemplative,. trustworthy, considerate, affectionate, and intelligent. and just a. little goofy too. i like to be challenged, to encounter alternative. ways of thinking, to talk philosophy, politics and the questions of. life over a glass of zin. i went to turkey a few months ago, a. beautiful country with a rich and super-long history. interests. include just about anything outdoors, exploring the secrets of san. francisco, hanging out with friends, dancing, learning, cultural. events, reading.", + "img": "user_pixel/f-2176117-300x200.jpg", + "preference": "gay", + "sex": "Female", + "user": 326 + }, + "model": "earlydating.Profile", + "pk": 326 + }, + { + "fields": { + "age": 38, + "bio": "i am beginner, slow starter, kind, have a big heart.", + "img": "user_pixel/m-199906-725x483.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 327 + }, + "model": "earlydating.Profile", + "pk": 327 + }, + { + "fields": { + "age": 24, + "bio": "i want to live without regrets. to that end i have always pushed my. comfort zone in pursuing things that i thought i could do but felt. self conscious about like truly opening up to my friends, learning. spanish, or cycling long distances. though at times it may be. difficult to initially convince me to try something new, you'll. find, more often than not, that i have an open mind.. . i firmly believe in leading a life in pursuit of building a better. world. in creating a place that we are not just proud to call home. but that, through our actions, we continually improve for ourselves. and others.. . likes: social justice, political activism, hugs, cookies, great. discussions, eloquent speakers, great books, and fine. cooking.. . dislikes: being put into a box, apathy, cynicism, misanthropes,. olives, constant negativity.", + "img": "user_pixel/m-46889-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 328 + }, + "model": "earlydating.Profile", + "pk": 328 + }, + { + "fields": { + "age": 30, + "bio": "i'm playful, a dreamer, enthusiastic about to my creative life,. smart in a specialized way. i am a dedicated friend and i love. deeply. i'm a listener, and people frequently feel comfortable. opening up to me quickly. my friends have described me as the man. who fell to earth or someone born in the wrong century.. . i was once the shy boy who draws in the corner, and i am making a. long pilgrimage toward being something more social. i do still draw. in the corner sometimes on special occasions.. . right now i'm putting most of my effort into meeting people. offline, but i thought i'd make a profile here as well. perhaps. it's a weird sort of long shot.", + "img": "user_pixel/m-218536-363x544.jpg", + "preference": "gay", + "sex": "Male", + "user": 329 + }, + "model": "earlydating.Profile", + "pk": 329 + }, + { + "fields": { + "age": 37, + "bio": "a bit of a nerd. more of a control freak than i'd like to. admit. perfectionist, but trying not to. let things get to me when they don't go right. sometimes depressed (ok, that's. probably too strong of a word. \"is the glass half-full? or. half-empty? or just twice as big as it needs to be?\"the fortune. that appeared on my terminal captures my feelings about being an. optimist/pessimist better, i think), but hoping for fun, enjoyable,. stable life. love running, hiking, rock climbing (mostly bouldering. at city beach), biking, flying kites, etc. (who doesn't,. especially in bay area).. . ph.d. in physics.. my job has a pretty good mixture of physics and engineering, and i. consider myself very lucky, having a chance to learn something. newand be paid for that! probably spend too much time with. computers, at. work and at home (read about okc on slashdoti guess it tells. something :) ). if i didn't have to sleep, i would spend more. nights out with my telescope.. . pretty clueless about dating. my college was practically all-guys. school, all physics nerds, in a small town; so, made very good. friends there (and luckily, most of them after all these years. gathered in bay area), and being too serious about school didn't. leave much time for meeting new people, especially girls. (not. that asocial, just it takes long time to make new friends.). the few relationships were mostly long-distance, with one leading. to wedding (this one is now over) (and no, we didn't have to. get married, waited for 4 years to have our kid). above all, lack. of communication (surprise!), was the biggest problem, so, i am. trying to crawl out of my shell more often. i am amazed, how many. beautiful and moving journals are posted here. and even the. sometimes silly tests and questions help putting things you think. you know about yourself into words.. . it's very encouraging, to see so many interesting people here.. would be great to find new friends, and i know that it is. possible to be just friends with a girl and be very happy about. that. yes, i am okay being single, but i still do think that i'd be. happier being with that special one, with whom we'd have fun,. dream, and grow old together. and who knows, crazy things like that. do happen. . i am patient, geeky, and insensitive bastard?", + "img": "user_pixel/m-2358801-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 330 + }, + "model": "earlydating.Profile", + "pk": 330 + }, + { + "fields": { + "age": 31, + "bio": "originally from seattle, via a long while in nyc, live in dc,. spending the summer in sf. i like dogs, cats, trees and anarchists.", + "img": "user_pixel/m-196186-900x600.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 331 + }, + "model": "earlydating.Profile", + "pk": 331 + }, + { + "fields": { + "age": 27, + "bio": "i'm a easygoing fun loving gentleman. i love to make people smile. and can act goofy at times.", + "img": "user_pixel/m-46889-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 332 + }, + "model": "earlydating.Profile", + "pk": 332 + }, + { + "fields": { + "age": 27, + "bio": "i inspired by many things. self improvement and reflection is. important to me as well. i seem to be in this compartmental life. and i tend to focus on many things in a day. i like to instead let. things come up like a light bulb, \"ahh hah!\" moments.. . my social life is at a cafe, a gallery, school, or online. i like. to keep my myself stimulated with music, film, sex, nature,. sociology, writing in my journal, enjoying stand-up comedy and. laughing my *** off! i like that part! new age spirituality has. been a side practice in my past life.", + "img": "user_pixel/m-1822763-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 333 + }, + "model": "earlydating.Profile", + "pk": 333 + }, + { + "fields": { + "age": 23, + "bio": "hmm.. i've changed more in the past year than i have in the previous. 22.. i believe in taking the time to figure out what the hell you want. to do with your life.. it took me a loooong time to realize that happiness is way more. important than being on some straight and narrow path to. \"success.\". i have a soft spot for science, but i really want to work with. people when i \"grow up.\" social work? psychology? all of the. above?. i like to dance. like, at a studio. and also sometimes in clubs,. but sometimes i'm too lame for going out.. i like witty humor, coffee and good conversation.. laughing is the most important part of my day (and hopefully, yours. too!)", + "img": "user_pixel/f-372023-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 334 + }, + "model": "earlydating.Profile", + "pk": 334 + }, + { + "fields": { + "age": 34, + "bio": "for some reason i have an urge to start with \"multidisciplinary. individual seeking a position that will harbor self-growth...\" but. no, that belongs to the resume that i need to update. the summary. section is usually the hardest to write yet this is the first thing. they ask you to write. :/. . better start from the beginning then. i'm originally from taiwan,. and have lived in schaumburg (suburb of chicago), fullerton (part. of o.c.) and now here in the bay area. i don't think i'm a suburban. girl even though it seems that way. moving around makes it that. much harder to make friends which is why i'm here. my friends would. say that i'm funny, intellectually curious, and easy-going. in a. dorky kind of way, i might add.. . i work in the city for an investment management firm. we manage. institutional funds. it's only natural for a dorky girl who's good. with numbers to go on this track.. . at the moment i'm looking for someone fun to hang out with. no. agenda is the agenda.", + "img": "user_pixel/f-2422908-300x450.jpg", + "preference": "gay", + "sex": "Female", + "user": 335 + }, + "model": "earlydating.Profile", + "pk": 335 + }, + { + "fields": { + "age": 25, + "bio": "update: for the time being, please no new messages from. guys who haven't yet started a conversation with me. i know there's. an infinite number of great guys who i haven't connected with yet,. but my inbox is getting a bit out of control and i don't wish to. overlook people who have already sent me messages.. . the exception to this is if you want to send me a scary message. about how you'd like to strangle a kitten while watching me sleep,. or something. keep those coming, they're great!. . keen sense of the bizarre, finger on the pulse of weirdness?. anyway, i'm an outwardly normal person who yet delights in totally. strange, involved jokes, which i hope my future partner will help. bring to their utter loopiest. i have been described as silly -. often. in fact, my entire family is silly, and now you know. no. turning back!. . while spinning my ridiculous nonsense, i enjoy doing such diverse. and original activities as eating, hiking, drinking, and dancing.. also, reading - especially internet blogs and news sources. there's. a nerd-shaped spot on my bed.. . as well as silly, i have been called independent and idealistic.. and i identify as a feminist who frequently does not live up to my. own standards.. . i've been told that, personality-wise, i am sort of like hermione. from harry potter. make of that what you will.. . also, okcupid thinks that drug-friendliness is my most extreme. personality trait, but it's not. not sure which questions i. answered to produce that result.", + "img": "user_pixel/f-371695-1048x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 336 + }, + "model": "earlydating.Profile", + "pk": 336 + }, + { + "fields": { + "age": 24, + "bio": "hi, let me introduce myself. my name is Jolyne Cujoh, i am 24 years. old and in grad school. i love to travel and i love working with. kids. i love trying things at least once. i am shy at first, but. once you get to know me, i am easy to get along with for the most. part. life is too short to be dwelling on the past; hopefully, i. can meet interesting people on this site and build new. relationships.", + "img": "user_pixel/f-371729-1200x801.jpg", + "preference": "straight", + "sex": "Female", + "user": 337 + }, + "model": "earlydating.Profile", + "pk": 337 + }, + { + "fields": { + "age": 33, + "bio": "i'm originally a southern guy, went to college in dc, and i've been. in sf for almost five years now. looking to meet guys interested in. something meaningful.", + "img": "user_pixel/m-2325089-300x375.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 338 + }, + "model": "earlydating.Profile", + "pk": 338 + }, + { + "fields": { + "age": 24, + "bio": "well, i went to college on the east coast in new haven, ct and. majored in economics. yes, i scream of excitement, i know!! i. joined this site on a whim via a friend's recommendation and have. been hooked since. for now i am single and looking for a special. someone. she will preferably be intelligent, funny, open minded,. inquisitive, attractive, and tall. am i asking too much?!. haha.. . anyways, ask me about anything. really. seriously. try me.. . some hobbies and 'skills' of mine are sports (football, baseball in. hs) and music (jazz sax). in the end, i'm really open to anything.. i love trying new things (such as camping for the first time in the. boundary waters for 7 whole days with college buddies! it was. awesome!). . i also like to be witty and ridiculous most the time. i love being. silly when life calls for it, plus people are way too serious most. of the time and need to chill out!. . ! (just proving i'm korean ... yeah, yeah i love dramas and kpop,. haha okok not really just sort of?)", + "img": "user_pixel/m-1862356-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 339 + }, + "model": "earlydating.Profile", + "pk": 339 + }, + { + "fields": { + "age": 28, + "bio": "i'm happy, smiley, loud and outgoing. i'd like to think i bring the. fun wherever i go. i love to laugh. i love to dance. i love meeting. new people. i love kids. i love to cook, and i'm a total foodie. i. love to travel, and i absolutely love spain (barcelona most of all). and everything it has to offer.. . i'm a daredevil and don't mind jumping off planes and cliffs to get. that rush, but that's about as far as it goes. i am otherwise. pretty risk averse in every other aspect of life.. . i consider myself very strong and independent. i don't do cliques. and i don't drink the kool-aid. i guess you can say i refuse to do. anything i don't want to do.. . i've worked hard to get where i am and will continue to go for what. i want, but i refuse to step over people to get there.. . i'm sure there's a lot more that i haven't touched on, but i guess. that's for you to find out. :)", + "img": "user_pixel/f-2422908-300x450.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 340 + }, + "model": "earlydating.Profile", + "pk": 340 + }, + { + "fields": { + "age": 30, + "bio": "from australia originally, pretty easy-going. looking for people to. chat and hang out with, maybe more if it's the right chemistry. i'm. generally attracted to someone who is interested in exploring the. city, the world and has a variety of interests. physically, i. prefer someone who i can hug and cuddle! someone with a little bit. of meat is nice :). . i like to eat, watch movies, play tennis, hang out and road trips!. i'm pretty open to anything and would love someone to go explore. with me. i think i'm relatively intelligent and am able to have a. conversation about anything. i'm a good listener too :). . i am easy going, passionate, and open minded", + "img": "user_pixel/m-199910-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 341 + }, + "model": "earlydating.Profile", + "pk": 341 + }, + { + "fields": { + "age": 25, + "bio": "i kind of feel like this site is built incorrectly. it seems to be. more number based (the more people you message, the more pictures. from flattering angles, etc) and attracting random people to your. page, than actually filtering good successful matches. (though, i. guess if you're just using this site to hook up with people, then. it serves it's purpose.) if the world doesn't end this year, then i. believe that online dating for single people will eventually be. integrated into the norm of our society. as soon as it's done. properly anyway :). . as of now though, how many people are actually self-aware enough to. describe themselves accurately? let alone what their tastes are.. haha, point being, i'm going to use this section to describe what. i'm looking for, so if i send you a clever message, you know why i. did so.. . i've spent the last few years building my life. i kind of missed. out on the fun aspects of early relationships (at least my ideas of. what they would have been like), because i was set on building a. strong foundation for myself/ promising future. i don't come from a. rich family, or know people personally that can guide me down the. path i've chosen to take. i've never been given anything more than. opportunity. so it's been a difficult journey, but i wouldn't have. it any other way.. . i'm searching for someone that adds more balance to my lifestyle,. shows me new avenues i haven't taken before, or understands and. sees me differently than i see myself. someone youthful, warm. hearted, and has seemingly impossible dreams. i don't believe. anything is impossible, and that much i can show you.", + "img": "user_pixel/m-48143-361x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 342 + }, + "model": "earlydating.Profile", + "pk": 342 + }, + { + "fields": { + "age": 25, + "bio": "i am goofy, outgoing, outdoorsy and creative. i like to go on. adventures, to dress up in silly costumes and go to parties, and to. stay in and hang out with friends. i love to talk about education,. politics, and current events.", + "img": "user_pixel/f-2439495-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 343 + }, + "model": "earlydating.Profile", + "pk": 343 + }, + { + "fields": { + "age": 35, + "bio": "i just moved to sf and want to meet someone who will show me the. city. i've done a bit of exploring on my own, but it would be nice. to have someone to share it with. so far i love going to the beach. and the balboa theater for foriegn films.. so contact me with the must sees of the city, maybe you could be. the one to show me?. . oh, about me...i'm too educated for my own good, read a lot, can. tend to be rather introspective but have a good sense of humor and. love to laugh - who doesn't right? but i'm one of those loud. laughers so be forwarned.. . i am inquisitive, gregarious, and perceptive.", + "img": "user_pixel/f-2267811-300x225.jpg", + "preference": "straight", + "sex": "Female", + "user": 344 + }, + "model": "earlydating.Profile", + "pk": 344 + }, + { + "fields": { + "age": 24, + "bio": "so honestly have been against online dating sites (for myself at. least) for sometime, but i feel like, \"hey why not, frick it!\" as. for who, what, where, when, whatever i am, like any human being i'm. multi faceted. so let's see what i can come up with. have an older. brother, parents split up when young, of japanese, korean, spanish,. native american, mexican descent. work at an art supply store, been. doing all types of art since i was very little, with a particular. interest in character design. love to dance when i can, wherever. and whenever i can, usually very impromptu. been in the kitchen. since i was very little as well, and used to work as a line cook,. and i continue to love doing cookouts for friends. self proclaimed. comic geek, love tattoos (need more!), watch a lot of movies. spanning many genres, as of late though many very strange, indie,. mind changing, gut wrenching, though provoking, and titillating. films seem to come up. i've come to realize i'm a creature of. habit, order, repetition and ritual. though i do have the need to. break out every now and then. i like to smoke/and smoke and. drink(particularly whiskey and beer) music has always been a part. of my life (dad's a conductor, brother has been in many. \"rock\"oriented bands and i've even had the pleasure of going on. tour before) i like adventure, and yet i also love being a. homebody. i have a history of depression, but 90% of the time,. that's quite in control. i love my family, and my friends (many who. make up my \"family\") even despite their little quirks and. discrepencies. (i know that's misspelled but i'm too lazy to fix. it) i've lived in five different states, including this current. one. i can take a lot of shit, but if you frick with my friends,. that's a different story. well this has been quite filled out, and. i'm sure there's more i could write about myself and such like. most, but this i think gives a pretty honest and baseline portrayal. of me. i'll leave the rest to you to find out.", + "img": "user_pixel/m-45622-725x544.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 345 + }, + "model": "earlydating.Profile", + "pk": 345 + }, + { + "fields": { + "age": 35, + "bio": "i'm like a fortune cookie. hard but sweet. always a pleasant. surprise waiting for you inside.", + "img": "user_pixel/f-2363787-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 346 + }, + "model": "earlydating.Profile", + "pk": 346 + }, + { + "fields": { + "age": 47, + "bio": "my favorite things this year: discovering this new artisan. chocolate that has cocoa nibs in it; knocking on this ancient door. in rome, which made my sister fall over in laughter and run up the. street; laying on the beach in south beach (where i used to live);. doing yoga; walking by the ocean here on the pacific coast trail;. seeing cirque du soleil; a five day mostly silent meditation. retreat. (fair warning: i am not silent that often, and people who. know me well sometimes think i must go off to some decadent party. for days when i claim to be on retreat.). . but, no matter what i'm doing, the most important thing is who i'm. doing it with. i have a wonderful boyfriend/partner i met here two. years ago, but i'm very interested in fun, loyal, and adventurous. friends. loyal is a must! as em forster said, \"if i had to choose. between my country and my friends, i'd choose my friends.\" not that. i'm a bad boy often, but i'd rather have empathy than. preaching.. . i am a little zany, encouraging, and nice", + "img": "user_pixel/m-1732853-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 347 + }, + "model": "earlydating.Profile", + "pk": 347 + }, + { + "fields": { + "age": 40, + "bio": "i'm honest, considerate, smart, well mannered, young at heart, and. fun with a wide range of interests.. i am looking for someone who is confident, intelligent, friendly,. honest, caring, funny, goofy, and not afraid to laugh at. themselves.. someone who is not afraid to try new things, and to share in new. adventures. most of all, i am looking for a partner in life that. enjoys good conversation, loves to laugh and that i can connect. with.", + "img": "user_pixel/f-2058609-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 348 + }, + "model": "earlydating.Profile", + "pk": 348 + }, + { + "fields": { + "age": 21, + "bio": "i dont really use this but message me if u want too", + "img": "user_pixel/m-52533-361x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 349 + }, + "model": "earlydating.Profile", + "pk": 349 + }, + { + "fields": { + "age": 24, + "bio": "i'm originally from long island, new york, but i've been living in. the bay area for nearly two years. i really love music and i'm. extremely passionate about music journalism, seeing concerts,. arguing about bands, scrutinizing new music technology and just. obsessing over the industry in general.. . other than that, i love people watching, vegetarian cooking,. hiking, running, backpacking, reality tv, sitcoms, twitter, gossip. blogs, yankee baseball, learning hebrew, being a proud cornell alum. and seeing movies in the cinema.. . i'm looking for someone who is down to cuddle a lot, who wants to. take weekend trips around the bay and who likes to see way more. concerts and movies than the average person.", + "img": "user_pixel/f-371781-740x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 350 + }, + "model": "earlydating.Profile", + "pk": 350 + }, + { + "fields": { + "age": 22, + "bio": "hi there. those who know me well may describe me as complex, full-of-life,. kind, creative ,. open-minded,. artistic,. sensual.. . for now i'm a college student studying web design and new. media. some people seem to not be very interested in finding. themselves but i definitely am.. . i have been writing poetry for quite awhile and always try to keep. my mind sharp by being creative. i love watching movies, long hot. steamy kisses that leave you hungry, strong hands, brown. eyes.. . go ahead and tell me i cant do something. that will just make me. want to prove you wrong. i honestly believe i'm going to change the. world one day. how i will do that i don't exactly know. but i'm not. going to let people stand in my way.. . but hopefully i'll have someone that makes me happy by my side to. share everything with. for so long i was just looking for. \"whatever\" but now i think i deserve a little happiness i think i. deserve someone to treat me right.. . i am openminded, outstanding, and artsy", + "img": "user_pixel/f-371981-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 351 + }, + "model": "earlydating.Profile", + "pk": 351 + }, + { + "fields": { + "age": 30, + "bio": "i recently moved back to san francisco, the \"love of my life\" and. the greatest city in the world! i'm a true city boy who appreciates. and enjoys the food, events, and culture that a metropolitan city. has to offer.. . gym, work, play sums up the majority of my daily life. i do enjoy. my occasional artsy fartsy moments where i read, write, and. artrhythmatic.. . loves (just to name a few): family/friends, bball, poetry, hip hop,. travel, ketchup, and kids.. . i love meeting people from all walks of life because i believe. everyone has a story to tell. i'm up to try anything and i can hold. my own in any situation. i thrive off of new and random. experiences, because you have to get out of your comfort zone or. you will never grow dammit!. . humor is a must, no exceptions! there is nothing sexier than a. sarcastic woman who can take a joke and dish one out too. if you. don't have thick skin, you need not apply.. . some of the traits that are important to me are: honesty, passion,. motivation, caring, being true to yourself, and. open-mindedness.. . taking care of yourself is a must! i'm not looking for a perfect. body, but you have to have take pride in yourself and stay. physically active. you are what you eat, so put some quality food. in your belly. the inner fat kid in me enjoys junk food on. occasion, but i try not to make it a habit.. . i truly believe (through experience) that great friends make the. best lovers.. . a hopeless romantic and an advocate of chivalry, once you get. through my sarcastic exterior of course.", + "img": "user_pixel/m-2383498-300x200.jpg", + "preference": "gay", + "sex": "Male", + "user": 352 + }, + "model": "earlydating.Profile", + "pk": 352 + }, + { + "fields": { + "age": 26, + "bio": "i'm originally from indiana, i just moved to the city about 6. months ago - still enjoying it's relative warmth and awesomeness.", + "img": "user_pixel/m-191706-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 353 + }, + "model": "earlydating.Profile", + "pk": 353 + }, + { + "fields": { + "age": 32, + "bio": "** feb 2012: not really looking right now, and not logging in very. often, so please don't take it personal if i don't respond **. . i've been an organizer and activist most of my life, grounded in. movements for social, racial, economic, and environmental. justice.. . my other love is photography and i almost always have my nikon in. hand. i do mostly documentary photography of the communities,. struggles, and protests that are important to me.. . i believe in fighting hard and playing hard. when i'm not. organizing, i'm out hiking a trail with my dog, biking up tunnel rd. with my friends, hitting the climbing gym, running the lake under. the stars, camping and/or backpacking, whipping up some vegan baked. goods, studying spanish, kicking it with my crew at a bbq or. potluck, or geeking out with a good book or documentary.", + "img": "user_pixel/f-1929452-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 354 + }, + "model": "earlydating.Profile", + "pk": 354 + }, + { + "fields": { + "age": 41, + "bio": "yes, i luv bacon (despite my jewish heritage)! and other meats too,. no vegan, veggie gal here. i do try to balance indulgent food with. healthy eating and living a relatively healthy lifestyle with road. cycling, yoga, visits to the gym and taking my dog on \"urban\". hikes. originally from chicago but after 14 years, call san. francisco home now. prefer coffee over tea. red wine over white.. i'm a dog person, not a cat person.", + "img": "user_pixel/f-371739-1200x792.jpg", + "preference": "straight", + "sex": "Female", + "user": 355 + }, + "model": "earlydating.Profile", + "pk": 355 + }, + { + "fields": { + "age": 41, + "bio": "ok, i really don't know what (if anything) i'm looking for. impress. me. i am a singer, songwriter, poet, amateur photographer and. single mom to a brilliant four-year-old boy. i am a massage. therapist and aesthetician by trade, though i am in the process of. switching careers and becoming an ultrasound tech. i am christian. but also liberal, open-minded and non-judgmental, and i prefer to. be around people like myself. i am somewhat of a homebody but i do. occasionally enjoy going out to karaoke or to check out local. talent. would love to go to a poetry slam or comedy show as well.. at times, i have a rather sick, un-pc sense of humor. i love to. laugh and be silly. friends would describe me as goofy, funny,. generous and loyal.. . i was born and raised in santa cruz and come from a liberal,. down-to-earth family. most of my family members are really into. politics and current events. i am somewhat ashamed to admit that at. the ripe old age of 41, i am only just now beginning to educate. myself on what's going on in the world. i marched with my son in. the occupy oakland rally, and i'm now reading howard zinn's. \"peoples' history of the united states\". i would love to meet. someone who would like to discuss current events with a beginner. and wouldn't be judgmengtal about my lack of knowledge.. . one new developement in my life as of late is that i am in the. process of obtaining my foster care license. i am hoping to foster. one child up to the age of six. eventually, i would like to. adopt.. . as far as relationships go, i am not sure what i'm looking for, to. be honest, but i know it ain't a quick hook up. i am a true. romantic and hope to find my forever man one day, but right now i'm. not sure i'm ready for anything too serious. i'd settle for a fun. local friend to go out with. we can take it slow and see if. anything developes.. . so that's me. send a hello if you feel so inclined.", + "img": "user_pixel/f-2264232-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 356 + }, + "model": "earlydating.Profile", + "pk": 356 + }, + { + "fields": { + "age": 59, + "bio": "hmm what am i doing on this site - i guess the best part are those. darn tests - i think i am addicted to them - they are soooo silly,. and fun, and silly still. i am back on this site after spending. much of the past year elsewhere. now i am meeting new people, and. enjoying being back in ca. guess i shall stick around a bit longer. - perhaps one day i will have taken all the tests this site offers. - lol!!. . i do not own a television - i read almost anything (except gothic. romance or anything about cyberborgs)- i have a wicked sense of humour - i prefer jeans, but silk. wears well too - i am direct and to the point - animals are a huge. part of my life - i do not tolerate dishonesty well at all; i. prefer to be outdoors but i spend way too much time doing computer. work - i love seeing new places, sex, trying new foods, more sex,. making new friends - i was born and reared in africa - i have travelled to most. places except the far east. i live for music too - mostly classic. rock and mostly queen. i certainly enjoy the newer folks and music. - train, mraz, k'naan, macdonald , mars, etc. and of course i rock. to anything by queen who is my all time favourite group - -i can. make hot dogs on buns or a seven-course formal dinner - i can camp. out on the ground in a tent or in a five-star hotel - don't bet. which one is my favourite - you would lose. . i am articulate, humourous, and generous with a wicked sense of. humour and a very - very sensual outlook on llife.. . update: yes, back in the us for good now. and, i have an hd. television now too - alas, it sat unplugged for many moons and. recently was turned on for the first time. i still cannot make the. time to sit still long enough to watch anything. i continue to. adore the music by queen as it is so very orgasmic.", + "img": "user_pixel/f-371999-595x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 357 + }, + "model": "earlydating.Profile", + "pk": 357 + }, + { + "fields": { + "age": 21, + "bio": "hey! so, i'm currently living in oakland, ca where i'm going to. school for my majors in studio art and psychology. my hometown is. honolulu, hi. my heart will always belong there, but my future is. elsewhere.. i'm looking for new friends and also dating partners. i'm usually. into feminine girls but i'm not opposed to others. c; it'd be great. if you'd just like to meet up and grab some coffee. it's nice to. talk on okcupid but getting to know someone is just so much easier. in person.. i'm pretty chill and usually up for anything. i used to play. softball but i don't anymore because my school doesn't have a team.. let me know if you want to throw sometime though, cause i'd totally. be down! i kind of also play the cello, but i'm not very good. anymore. i'd still be down for having a jam sesh if you've got. anything to go with a cello. i'd also like to explore the bay area. more. i've been here for two and a half years and i hardly know. anything about oakland and its culture. i love adventures! if you. do too, let's go on one!", + "img": "user_pixel/f-2439551-300x450.jpg", + "preference": "straight", + "sex": "Female", + "user": 358 + }, + "model": "earlydating.Profile", + "pk": 358 + }, + { + "fields": { + "age": 24, + "bio": "i love to travel, explore, and hit up yummy hole-in-the-wall. places.. . my favorite neighborhood in sf is the castro with the mission being. a close second. probably because there's a bookstore and a cafe on. every corner.. . i complain about taking the muni like everyone else but i secretly. love people-watching on the ride. even if there are a lot of. crazies that like to ride back and forth.", + "img": "user_pixel/f-371887-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 359 + }, + "model": "earlydating.Profile", + "pk": 359 + }, + { + "fields": { + "age": 29, + "bio": "i am a wholesome, happy, healthy, and fearless adventurer. this is. my affirmation for the moment. it is who i am striving to be. the. main things in life that are important to me are creation,. connection, spirituality, health, and adventure. i am a bit of a. contradiction in ways. i am an athletic artist, an analytical. dreamer, a spiritual pragmatist. i have an interesting balance of. unlikely qualities.. . travel and adventure is extremely important to me. this is an area. i have not nourished in the last few years as i have been working. to establish a killer life. i am ready to see more of the world and. have some incredible experiences.", + "img": "user_pixel/m-2325089-300x375.jpg", + "preference": "straight", + "sex": "Male", + "user": 360 + }, + "model": "earlydating.Profile", + "pk": 360 + }, + { + "fields": { + "age": 25, + "bio": "in 1959 i was a tin can on the side of a dust choked colorado. road.. now i am a rodeo clown.. i'm going to school to be a clocktower repairwoman.. my calling, however, is ostrich racing.", + "img": "user_pixel/f-1757570-797x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 361 + }, + "model": "earlydating.Profile", + "pk": 361 + }, + { + "fields": { + "age": 23, + "bio": "my name is Leone Abbachio. i am an electrician and a tax preparer. i work. for(and will some day own) my family's tax service. i am also a. part time student at dvc. i value good conversation so if you have. anything to say or if you just want to say hi don't hesitate to. send me a message. i am a religious jew currently studying,. learning, and experiencing the many positive effects of meditation. and the buddhist spiritual path. i enjoy telling and hearing. stories about life experiences and i find that often it leads to. true personal connection.. . i try to avoid the 'club' seen in favor of more chill outings like. jazz clubs, classical concerts, and anywhere not to loud to have a. good conversation.", + "img": "user_pixel/m-2325089-300x375.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 362 + }, + "model": "earlydating.Profile", + "pk": 362 + }, + { + "fields": { + "age": 45, + "bio": "just getting started, need a minute more.", + "img": "user_pixel/f-371977-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 363 + }, + "model": "earlydating.Profile", + "pk": 363 + }, + { + "fields": { + "age": 30, + "bio": "i'm super fun, love to laugh and make others laugh! i enjoy. spending time with my sister & nephew when i can. i paint,. study, bake and always try to better myself.", + "img": "user_pixel/f-371623-1200x800.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 364 + }, + "model": "earlydating.Profile", + "pk": 364 + }, + { + "fields": { + "age": 31, + "bio": "well it seems about time to update this thing. . i'm a normal guy from the midwest who moved to california 12 years. ago on a vacation that just kept going. i have a sense of humor. that's so dry it's been described as evaporated. i'm pretty. reserved until you get to know me. i have a handful of really good. friends for whom i would do anything. i prefer quality over. quantity in pretty much everything i do.. . i really want to find a sweet guy who likes cuddling and values. spending simple time together. i'd like nothing more than to come. home to someone who's happy being together watching videos or just. chatting about nothing. i'm your average romantic guy who enjoys. doing things for people more than anything. i'd love sending. someone special off to work with fresh cup of coffee and a sack. lunch with one of those sickeningly sweet napkins that doubles as a. notepad. just like mom used to write but without the lipstick. kisses.. . i'm not really into the gay scene, it's not my thing and i can't. dance so clubbing never held any appeal. i sit on my duff working. at a computer and have a d***bag of a spine who tried to stop. working a couple years ago so i'm a bit out of shape. i'm not a tub. of lard but couldn't be in an abercrombie ad. if you're looking for. washboard abs i'm afraid you're out of luck. sorry, it's a bummer. for both of us. . i'm a designer and software engineer who works in the south bay. i. live what some might call boring life, spending most of my time. working or reading news and the occasional book. i enjoy the. academy of sciences in golden gate park, easily my favorite spot in. the city. i like going there with a sketch pad and watching the. jellyfish while they change colors gliding around their tank. i. enjoy writing and painting, the latter is a lot of fun even though. i'm not terribly good at it.. . a few more random tidbits:. i don't tolerate egregious grammar errors but am a horrible. spellar.. i've, been, called, a, commakazi.. i only wear sandals. i don't care if it's snowing, i can't stand. normal shoes.. i can quote arrested development and golden girls lines from memory. in my sleep.. i know a little about a lot of stuff and can spend hours droning on. about pretty much any topic.. drag queens make me nervous. i don't know why.. i fancy myself an artist in everything i do.. i've worked for the same company for over 10 years. i'm fortunate. to love my job enough that i'd do it for free (on most days).. i like volvos but not vulvas. i do enjoy confusing the two in. conversation.. given the choice between cuddling or a million dollars i wouldn't. hesitate to chose the former.. i'm an excessive tipper.. i have a thing for dudes with noses. no nose, no reply. sorry if. that seems shallow.. i enjoy pronouncing merlot phonetically.", + "img": "user_pixel/m-1938445-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 365 + }, + "model": "earlydating.Profile", + "pk": 365 + }, + { + "fields": { + "age": 42, + "bio": "queer(both in the 'gay' sense and in the 'oddball' sense), ocd,. likes (ok, loves) to wear ties, perpetually financially challenged. (yet surprisingly solvent), excellent third wheel, natural night. owl (but being stifled by new work schedule), abysmal long-distance. friend, relatively successful close-quarters friend, usually quiet. unless very comfortable or drunk (which doesn't really happen. anymore), spiritually bankrupt, embarrassingly goofy, prone to. rambling (as is evidenced here), lover of strawberry rhubarb pie,. intolerant of intolerance, orphan, worships the sun from afar (in. order to avoid lobster-like appearance), hardcore procrastinator,. detail oriented, allergic to cats (oooh, the profound sadness),. unenthusiastic about dogs (mostly the drooling, jumping, barking,. needing to be walked part (although there have been exceptions or. exceptional puppies who have won me over), pool shark wannabe,. petter of fuzzy plants and moss (the next step after stopping to. smell the roses), depressive tendencies (mostly thwarted by regular. exercise), national geographic junkie, despiser of george bush -. all of them... and trustfund brats in general, a fan of dark. chocolate, gear junkie (but trying to reform), roller coaster. enthusiast, a tad too easily entertained, sarcastic bastard, sugar. addict, master toaster of marshmallows (it's that ocd thing), user. of the most foul language- quite possibly my worst habit (well,. after crack smoking), chemical abuse virgin (i was totally kidding. about the crack smoking), red bull addict, orally fixated, very. typically gemini (kinda schizophrenic), extremely pee shy, snuggle. whore (some would just say whore), tidepool explorer, poorly. informed stargazer, sea creature geek, and delicate flower where. chilly/breezy weather is concerned (hence, the move to cali and the. dream of being deserted on a tropical isle)...", + "img": "user_pixel/f-1732741-1200x801.jpg", + "preference": "straight", + "sex": "Female", + "user": 366 + }, + "model": "earlydating.Profile", + "pk": 366 + }, + { + "fields": { + "age": 33, + "bio": "i am an artist who lives in san francisco. its an awesome town what. can i say. when i travel i could only last for like a week away. from san francisco before i start to freak out. unless its new. orleans. i love new orleans . id move there but i am afraid that if. i ever did i would never leave - id be trapped! nope not ready to. give up on san francisco just yet. i do not wish to feel any. regrets as i want to know for certain that i gave it all i had here. while having done everything i could in accomplishing my goals.", + "img": "user_pixel/m-246009-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 367 + }, + "model": "earlydating.Profile", + "pk": 367 + }, + { + "fields": { + "age": 27, + "bio": "i just moved to the bay area from oregon, with a 20 month layover. in connecticut while embarking on the first leg of my last degree. (probably). i generally don't announce exactly what i do. and study to people i don't know, but lets just say that i am a. social scientist for now :). . at this moment in time i am in a really big transitional phase and. don't know precisely what i am doing. i have basically been on. hiatus from having a real life or relationships for the last two. years while living in rural ct, but did have some enjoyable flings.. moving to california and the city is definitely a shock to my. system, but a welcome one. it's just going to take me some time to. figure out what exactly what i am doing with myself.. . i am bi, but i do not have much experience with people who are not. cis male. i love a nice d***, what can i say? regardless, i would. be more than open to dating an open lady (etc.) if the fit is. right. regardless of your gender identity, not being completely. straight is a nice bonus in my view, though not required.. . i have a really inappropriate sense of humor. i am disturbed by the. world enough that i have to make fun of it in ways that would be. horrifying if i wasn't joking. despite my questionable taste in. humor, i am a third wave feminist, fight for social justice, and. will tear apart bigoted assholes.. . with few exceptions, i tend to have great difficulty with. classifying things as wholly one thing or another.", + "img": "user_pixel/f-371585-1200x674.jpg", + "preference": "straight", + "sex": "Female", + "user": 368 + }, + "model": "earlydating.Profile", + "pk": 368 + }, + { + "fields": { + "age": 24, + "bio": "i'm a local native who's back in the bay after a 5 year stint in. the northeast.", + "img": "user_pixel/f-372027-1200x795.jpg", + "preference": "gay", + "sex": "Female", + "user": 369 + }, + "model": "earlydating.Profile", + "pk": 369 + }, + { + "fields": { + "age": 33, + "bio": "i'm really bad at filling out these boxes in cyber space.i'm so. much better in person.. just moved here and loving it so far but do feel that my. northeastern style of communication and sarcasm is a bit shocking. for folks here. i've lived and worked in many cities and countries. and have learned a lot in each place. i tend to think very deeply. about the world on a regular basis and i'm very sensitive to energy. around me, so i love to balance that with laughter - laughing out. loud till your stomach hurts or laughing with a stranger on the bus. or in the street during carnival. i'm very diverse in my tastes,. opinions, experiences, and skills. i gravitate towards witty,. smart, independent people who are comfortable with themselves. i. can accept and love lots of different types of people, but i also. need to be myself and feel loved and respected for who i am too.", + "img": "user_pixel/f-371695-1048x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 370 + }, + "model": "earlydating.Profile", + "pk": 370 + }, + { + "fields": { + "age": 21, + "bio": "i enjoy people watching. internet people watching is better than. coffee shop people watching.", + "img": "user_pixel/f-2383504-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 371 + }, + "model": "earlydating.Profile", + "pk": 371 + }, + { + "fields": { + "age": 26, + "bio": "na", + "img": "user_pixel/m-1938307-300x225.jpg", + "preference": "straight", + "sex": "Male", + "user": 372 + }, + "model": "earlydating.Profile", + "pk": 372 + }, + { + "fields": { + "age": 34, + "bio": "i have moved around the country a lot, but recently finished my. graduate training and want to grow some roots. i'm very social and. value my relationships above all else. i will go the extra mile for. my friends and family. i have disguised myself for a surprise visit. more than once (it helps if it's around halloween, otherwise it can. be a little awkward). i also love hiking, skiing, all things. mountain (except for lions, i have an irrational fixation/fear of. them), traveling and exploring new places, long walks, movies,. checking out restaurants, and live music. i work in research and. education, and hope to improve health care systems. my back up plan. is to be an extra in a comedic web series.", + "img": "user_pixel/f-377791-600x900.jpg", + "preference": "gay", + "sex": "Female", + "user": 373 + }, + "model": "earlydating.Profile", + "pk": 373 + }, + { + "fields": { + "age": 43, + "bio": "i am a new yorker who now lives in california. sports, cooking and. movies are some of my favorite activities. i am a graduate of. california culinary academy in san franciso, but i work in the. technology industry now. the joys in my life are my children,. watching/playing sports and cooking. i love all types of food... i. am an omnivore with a taste for adventure. people say i have a. great sense of humor, but you would have to judge for yourself.", + "img": "user_pixel/m-187210-725x483.jpg", + "preference": "straight", + "sex": "Male", + "user": 374 + }, + "model": "earlydating.Profile", + "pk": 374 + }, + { + "fields": { + "age": 25, + "bio": "the dreaded self summary. i am a traveler, reader, idealist and. flanuer with an intense curiosity in the world.. . infp personality type if thats of interest.", + "img": "user_pixel/m-45820-573x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 375 + }, + "model": "earlydating.Profile", + "pk": 375 + }, + { + "fields": { + "age": 30, + "bio": "well for starters my name is joe mamma. i am a recent transplant to the. bay area from the east coast and could not be happier. i love it. here and think i'll stick around for a while. my days are spent. working at a tech start up and my free time is spent rock climbing,. cooking, exploring. the city, and getting out into nature as often as possible.. . i love staying active not only physically but also mentally. when i. am not climbing rocks or hiking, i am usually taking on a new. project or trying to learn a new skill. recently i've become. interested in learning ballet. i blame my parents for taking me to. the shows back in ny.. . i have a wonderful family and friends that continue to inspire me. to be the best i can. i've also become an uncle recently, which is. the most awesome thing ever! my nephew is going to be a total. badass... just like his uncle ;)", + "img": "user_pixel/m-227699-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 376 + }, + "model": "earlydating.Profile", + "pk": 376 + }, + { + "fields": { + "age": 35, + "bio": "my self summary:. hey everyone!. . what im doing with my life:. right now i am in school, majoring in managerial business. it's fun. and interesting, but i'll be glad to get done!. . i'm about to go on a trip to armenia and lebanon, i'm pretty. excited. tons of history, family to see, and it's fun to be. somewhere so different. :)", + "img": "user_pixel/f-2363787-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 377 + }, + "model": "earlydating.Profile", + "pk": 377 + }, + { + "fields": { + "age": 25, + "bio": "just moved to oakland from chicago for work, new to the area and. don't know anybody. i'm awesome, find out.", + "img": "user_pixel/m-2436019-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 378 + }, + "model": "earlydating.Profile", + "pk": 378 + }, + { + "fields": { + "age": 20, + "bio": "i am the greatest pansexual polyamorous anarchist captain-academic. space has ever known.. . or. . if you'll allow me to outright steal from my favorite author, i am. \"the last and best of the peter pans.\"", + "img": "user_pixel/m-260895-900x675.jpg", + "preference": "straight", + "sex": "Male", + "user": 379 + }, + "model": "earlydating.Profile", + "pk": 379 + }, + { + "fields": { + "age": 27, + "bio": "i travel every opportunity i get, by bike, by plane, by train, by. boat. i have yet to go by space shuttle, but i bet you that will. happen one day. for now, i've been hanging out in the bay area. working on projects, but i still sneak in a bit of travel when i. can.. . in germany, i worked in the beer industry. go figure. then, in the. netherlands, i discovered all the weird places that not even many. dutch people know about. i also like studying obscure german and. dutch dialects. don't ask why, i don't know myself.. . now i do the startupy thing and i'm discovering exactly how many. cool things you can do in life without bothering to have a college. degree. everyone there has a my little pony doll the cto handed out. on their desk. mine is rarity.. . i am a beer and food snob. it's obnoxious, yes i know, but you have. to draw the line somewhere. it's not good unless it's some obscure. yak's cheese from the himalaya's served with a peruvian wheat ale. with a wedge of lemon from morocco.. . i have an addictive personality; i'm addicted to spaghetti and. pesto. i will nibble on spaghetti right after it's cooked and eat. half the jar of pesto with a spoon. any dish with both of them goes. straight to my heart, then my stomach, then my intestines. the rest. of the story is rather sordid.. . i bike everywhere. it is the single best way to get around. i do. not entertain other opinions on the matter. unless you have a space. shuttle; then i'll reconsider.. . i love the rain. when i moved to the netherlands, the rain greeted. me with one of the biggest thunderstorms seen there in a couple of. years. i had a loft bed with a sunroof i could open up and see the. lightening around me 360 on the farm i was living on. this was one. of the most amazing things i've seen in my life.. . apparently, i'm pretty decent at starting consecutive paragraphs. with the singular first person pronoun.", + "img": "user_pixel/m-47951-361x544.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 380 + }, + "model": "earlydating.Profile", + "pk": 380 + }, + { + "fields": { + "age": 34, + "bio": "um, well hi. i'm a lot. a lot of brains, a lot of sex, a lot of. fun, a lot of leg :)", + "img": "user_pixel/f-371907-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 381 + }, + "model": "earlydating.Profile", + "pk": 381 + }, + { + "fields": { + "age": 37, + "bio": "i like traveling, reading, and being sockless in the sunshine on a. sandy beach full of soft warm waves and salty air. the world is. small and i've spent quite a bit of time exploring it - still have. a ways to go, but i'm not in a hurry. i like to spend time at the. pottery studio, run, read, take long walks, check out a play, a. band, a film, a good eatery. enjoy san francisco, really. if you've. traveled, been lost, made mistakes and are not shy to admit it send. me a message.", + "img": "user_pixel/f-2264232-300x200.jpg", + "preference": "straight", + "sex": "Female", + "user": 382 + }, + "model": "earlydating.Profile", + "pk": 382 + }, + { + "fields": { + "age": 33, + "bio": "i am a realist, a sarcasm-enthusiast and a lover of both. high-brow and the low-brow culture. i enjoy being snobby about my. pop culture tastes, but claiming i am not a snob.. . i like internet memes, comedy, comedy writing, improv, a good book,. a good conversation and doing things. i like just hanging out and. chatting, but i would much rather go/see a cool. event/play/movie/speaker, etc.. . i work in higher education but really want to write for a. living...we'll see about that.. . the people i enjoy most are ones that can make fun of themselves,. who have really specific interests or passions that they truly care. about (and not just spoon fed by society) and someone who maybe. doesn't totally consider themselves and adult (yet).", + "img": "user_pixel/f-371853-600x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 383 + }, + "model": "earlydating.Profile", + "pk": 383 + }, + { + "fields": { + "age": 23, + "bio": "im a why not kinda guy.", + "img": "user_pixel/m-209311-725x483.jpg", + "preference": "gay", + "sex": "Male", + "user": 384 + }, + "model": "earlydating.Profile", + "pk": 384 + }, + { + "fields": { + "age": 22, + "bio": "my name is Akon. born and raised in new jersey and just moved to. san francisco. i am a singer/songwriter. i absolutely love. traveling and will take advantage of it whenever i'm given the. chance to. i try to keep myself busy majority of the time because. it keeps me motivated and content. i am honest and forward with. everyone that i meet. after personal experiences, there is no need. to hold back. i am constantly moving forward and won't let anything. get in my way. to some i might come off as a b****, but i just know. what i want. i really am nice, though.", + "img": "user_pixel/f-371957-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 385 + }, + "model": "earlydating.Profile", + "pk": 385 + }, + { + "fields": { + "age": 22, + "bio": "for the most part i'm pretty laid back, unpretentious, honest, and. sometimes spontaneous. i like to stay active and spend time. outdoors (ultimate frisbee, anyone?). some activities that i enjoy. include salsa dancing and intense board games.. . i love being out on warm summer nights.. . i'm also kind of a nerd--i really appreciate people who can keep me. interested with an intelligent conversation (i'm not a genius, but. i really don't care if you were beer pong champion!). for anyone. who's familiar with myers-briggs types, i'm an istp.", + "img": "user_pixel/f-371957-1200x900.jpg", + "preference": "straight", + "sex": "Female", + "user": 386 + }, + "model": "earlydating.Profile", + "pk": 386 + }, + { + "fields": { + "age": 37, + "bio": "i really enjoy any outdoor activities. anything from a walk in the. park to playing sports outside. mostly, i bicycle, hike, snowboard,. and play casual sports games. i'm a fan of great food and wine. i. enjoy cooking and exploring different flavors, while still trying. to be healthy about it all. along with sharing these experiences. with friends and family. lastly, i can say that i love anything. with creative energy. exploring the arts and culture of the world.", + "img": "user_pixel/m-261962-900x593.jpg", + "preference": "straight", + "sex": "Male", + "user": 387 + }, + "model": "earlydating.Profile", + "pk": 387 + }, + { + "fields": { + "age": 23, + "bio": "i was history major. this means i find many things interesting that. others... do not. in general, i'm a huge geek, but it's kind of. hidden to the average person, you have to get to know me to see the. full extent of it. i have a pretty upbeat attitude towards life. my. default is to be happy and if i'm sad... i try to be happy again. i. absolutely can't stand the smell of eggs or ketchup. i tend to like. most people, unless they give me a big reason not to. i use. ellipses way too much in online communication, and i had to make a. conscious effort not to use too many of them in writing this.", + "img": "user_pixel/f-1776084-1200x800.jpg", + "preference": "gay", + "sex": "Female", + "user": 388 + }, + "model": "earlydating.Profile", + "pk": 388 + }, + { + "fields": { + "age": 27, + "bio": "cool. good looking. fashionable. european. chocolate lover.. ambitious. multilingual. friendly. focused. adventurous.. analytical. artistic. traveller....", + "img": "user_pixel/m-196717-900x600.jpg", + "preference": "straight", + "sex": "Male", + "user": 389 + }, + "model": "earlydating.Profile", + "pk": 389 + }, + { + "fields": { + "age": 31, + "bio": "*please don't write if you haven't read my profile. ask a question. that is answered and you will not get a response.*. . barely a week left before brc! i know this profile will be out of. date shortly as the time is rapidly approaching, i can hardly. wait.. . please start with a message and don't im me randomly, i prefer to. know a bit of background and context in advance. best to approach. as a friend since i am content with my current status and prefer to. connect with people without an agenda.. . i live in la, and love it, but the when i do a search within. 1000km, i get pages and pages of people from no cal. i figured to. make a profile that connects me to this area. fyi, some of you keep. talking to me like i live in sf... frankly it makes a good weeder. to find the attentive.. . i'm open ended to where that might go. i have work and a lifestyle. down in so cal that keeps me committed to living there, but i love. visiting sf as a break from the normal grind. i am always open to. those i make friends with to do a sf <-> la arrangement where. i tour sf with said friend(s) and tour them in kind through. la.. . you can find my rather belligerent la profile ... ladykayura. apparently there is an. age discrepancy between profiles. as strange as it sounds, they are. both true - though that's a bit of a story... hint: before okcupid. blanked out my answer to \"sign\" i wrote \"----\" and laughing about. it. note: it's better to write the la profile as i am more active. on it.. . i am whimsical, adaptable, and fembot", + "img": "user_pixel/f-371513-1082x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 390 + }, + "model": "earlydating.Profile", + "pk": 390 + }, + { + "fields": { + "age": 42, + "bio": "in some ways i'm a traditional asian woman and find that the. happiness of others is truly my happiness as well. i have a deep. heart and always go out of my way to make sure others are in a good. place too.", + "img": "user_pixel/f-297029-1100x731.jpg", + "preference": "gay", + "sex": "Female", + "user": 391 + }, + "model": "earlydating.Profile", + "pk": 391 + }, + { + "fields": { + "age": 48, + "bio": "i'm not like other girls.. . i can talk to you about torque curves and the advantages of an. inline 4 over a v-twin (or vice-versa) or the latest racing motogp. drama (did you see rossi take out stoner in jerez?). i've been a. motorcycle enthusiast for almost 30 years and feel the need to. apologize to my speed triple if i don't ride her for a few days.. the isle of mann is on my bucket list.. . the good news is that i clean up well, look great in a dress and. can keep up with the younger girls on the dance floor.. . i enjoy the odd, cerebral and absurd side of life. i'm passionate. about my opinions & interests. politics, motorcycles, current. events, pets/animals, friends. note to the religious: i am an. unrepentant atheist/agnostic (move along...nothing to see here!). i. love the outdoors, camping, fishing etc, but i'm not overly. athletic...nor do i have a \"rock hard\" physique.. . i'm looking for a confident, open-minded, slightly cerebral,. stable, funny, intelligent guy who...you guessed it..preferably. rides a motorcycle. need someone who either loves animals or, at. least, understands animal lovers. prefer someone on the left side. of the political spectrum.", + "img": "user_pixel/f-1742318-1200x747.jpg", + "preference": "straight", + "sex": "Female", + "user": 392 + }, + "model": "earlydating.Profile", + "pk": 392 + }, + { + "fields": { + "age": 27, + "bio": "i'm a simple down to earth and laid back person.", + "img": "user_pixel/f-2439551-300x450.jpg", + "preference": "gay", + "sex": "Female", + "user": 393 + }, + "model": "earlydating.Profile", + "pk": 393 + }, + { + "fields": { + "age": 20, + "bio": "i don't have much to say... i'd like to meet new people here,. preferably who like cats, burritos, and bad tv as much as i do. i'm. open to being friends with anyone, but i'm not looking for anything. more than that.", + "img": "user_pixel/f-371907-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 394 + }, + "model": "earlydating.Profile", + "pk": 394 + }, + { + "fields": { + "age": 22, + "bio": "i'm easy to talk to and worth getting to know. i'm pretty open to. trying new things and a good example would be trying this? haha umm. anything that u would like to know bout message me and hey we'll go. from there cause the fun part of getting to know someone is the. mystery behind it. =) i do like meeting new ppl and making new. friends is a great thing and if anything else happens we'll see.", + "img": "user_pixel/m-2358791-300x200.jpg", + "preference": "straight", + "sex": "Male", + "user": 395 + }, + "model": "earlydating.Profile", + "pk": 395 + }, + { + "fields": { + "age": 44, + "bio": "hi there, i'm dan. i've lived here in beautiful san francisco since. the turn of the century, thanks to the tech mecca that is silicon. valley. i bask in the rich diversity of experience that i find here. -- art, theatre, music, fashion, code -- all that and so much. more. . i was originally born in erie pa, and my family hopped around the. country for most of my grownin'-up years until i ended up in the. boston area. i did lots of fun stuff there -- stage shows of rocky. horror picture show, hanging with the crazy folks at m.i.t -- and. then i skedaddled to seattle. . i've lived out at the beach ever since i moved down here to the bay. area. eight years of seattle weather built me an immunity to fog,. and it's so peaceful to be near to such a immense open natural. space. quiet waves + no city lights = serenity win !", + "img": "user_pixel/m-45820-573x544.jpg", + "preference": "straight", + "sex": "Male", + "user": 396 + }, + "model": "earlydating.Profile", + "pk": 396 + }, + { + "fields": { + "age": 34, + "bio": "i like pina coladas and getting caught in the rain. when it's not. raining, i like hiking around mt. tam, going to the beach. (especially in hawaii), heading up to sonoma county, and traveling. to fun cities (la, denver, mpls, chicago, boston, nyc) to visit. family and friends.", + "img": "user_pixel/m-48143-361x544.jpg", + "preference": "bisexual", + "sex": "Male", + "user": 397 + }, + "model": "earlydating.Profile", + "pk": 397 + }, + { + "fields": { + "age": 37, + "bio": "i am usually laid-back & low-key. i keep drama to a minimum. i. try to live a basic life with appreciation of what i have and focus. on the current moment. i always enjoy helping others, esp. others. who are considered \"underdogs.\" i aim to learn more about myself. and change what i feel needs improvements. i am introspective &. enjoy deep conversations with others.. . my interests vary, but the main ones are sports, outdoor. activities, photography, and traveling. i love to learn about new. things, esp. psychology, neuropsychology, computer, and animal. related. yeah, i can be a bit of a geek.. . family and friends are very important to me. being in a loving and. supportive environment is a great feeling.. . i identify as genderqueer/queer/boi. i don't believe gender is. binary & it exists on a spectrum, which most things seem to be.. i'm usually attracted to people who view gender as such.", + "img": "user_pixel/f-377791-600x900.jpg", + "preference": "bisexual", + "sex": "Female", + "user": 398 + }, + "model": "earlydating.Profile", + "pk": 398 + }, + { + "fields": { + "age": 49, + "bio": "howdy, thanks for checking out my profile.. . let me introduce myself. i'm deep, intense, smart, playful, and. maybe a little kinky. and i'm looking for similar kinds of people,. largely for friendship, although more would be just fine.. . i love to be active and doing things. my favorite activities. include; motorcycle riding, bike riding, dancing, camping and. hiking, boating, flying, hiking, inline skating, building things. and hopefully soon, kiteboarding.. . i am playful, energetic, and artistic", + "img": "user_pixel/f-371519-1200x800.jpg", + "preference": "straight", + "sex": "Female", + "user": 399 + }, + "model": "earlydating.Profile", + "pk": 399 + }, + { + "fields": { + "age": 29, + "bio": "im a small furry mammal that roams the deserts of life, and doesn't. care what or who she stirs up.", + "img": "user_pixel/f-372027-1200x795.jpg", + "preference": "straight", + "sex": "Female", + "user": 400 + }, + "model": "earlydating.Profile", + "pk": 400 + }, + { + "fields": { + "age": 22, + "bio": "always in progress.", + "img": "user_pixel/m-282376-1000x666.jpg", + "preference": "straight", + "sex": "Male", + "user": 401 + }, + "model": "earlydating.Profile", + "pk": 401 + } ] \ No newline at end of file diff --git a/proud-puffins/djangoProject/earlydating/forms.py b/proud-puffins/djangoProject/earlydating/forms.py index 341b09b13..7daf13eb4 100644 --- a/proud-puffins/djangoProject/earlydating/forms.py +++ b/proud-puffins/djangoProject/earlydating/forms.py @@ -5,12 +5,14 @@ class CreateUserForm(UserCreationForm): + """Registration/Sign-up Form""" class Meta: model = User fields = ['username', 'first_name', 'last_name', 'email', 'password1', 'password2'] class UserUpdateForm(forms.ModelForm): + """Form for editing information in User table fields""" first_name = forms.CharField() last_name = forms.CharField() email = forms.EmailField() @@ -21,6 +23,7 @@ class Meta: class ProfileUpdateForm(forms.ModelForm): + """Form for editing information in Profile table fields""" class Meta: model = Profile fields = ['age', 'bio', 'img', 'sex', 'preference'] diff --git a/proud-puffins/djangoProject/earlydating/migrations/0001_initial.py b/proud-puffins/djangoProject/earlydating/migrations/0001_initial.py deleted file mode 100644 index ec06bffcb..000000000 --- a/proud-puffins/djangoProject/earlydating/migrations/0001_initial.py +++ /dev/null @@ -1,44 +0,0 @@ -# Generated by Django 3.0.8 on 2020-08-09 08:57 - -from django.conf import settings -from django.db import migrations, models -import django.db.models.deletion -import earlydating.puffin_functions - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - migrations.swappable_dependency(settings.AUTH_USER_MODEL), - ] - - operations = [ - migrations.CreateModel( - name='Profile', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('age', models.PositiveSmallIntegerField(null=True)), - ('img', models.ImageField(default='images/Proud_Puffin_default_user.jpg', null=True, upload_to='user_pixel', validators=[earlydating.puffin_functions.validate_file_size])), - ('sex', models.CharField(blank=True, choices=[('Male', 'Male'), ('Female', 'Female')], max_length=10, null=True)), - ('preference', models.CharField(blank=True, choices=[('straight', 'straight'), ('gay', 'gay'), ('bisexual', 'bisexual')], max_length=10, null=True)), - ('bio', models.TextField(default='')), - ('upper_age', models.PositiveSmallIntegerField(null=True)), - ('lower_age', models.PositiveSmallIntegerField(null=True)), - ('user', models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), - ], - ), - migrations.CreateModel( - name='UserVote', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('vote', models.BooleanField(default=False)), - ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), - ('voter', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='given_vote', to=settings.AUTH_USER_MODEL)), - ], - options={ - 'unique_together': {('user', 'voter')}, - }, - ), - ] diff --git a/proud-puffins/djangoProject/earlydating/models.py b/proud-puffins/djangoProject/earlydating/models.py index 29b4a4b61..c9ba9d552 100644 --- a/proud-puffins/djangoProject/earlydating/models.py +++ b/proud-puffins/djangoProject/earlydating/models.py @@ -4,6 +4,8 @@ # Create your models here. + +# Make email field necessary while signing up User._meta.get_field('email')._unique = True User._meta.get_field('email').blank = False User._meta.get_field('email').null = False @@ -20,13 +22,12 @@ class Profile(models.Model): sex = models.CharField(max_length=10, null=True, blank=True, choices=Gender_Choices) preference = models.CharField(max_length=10, null=True, blank=True, choices=Pref_Choices) bio = models.TextField(default="") - upper_age = models.PositiveSmallIntegerField(null=True) - lower_age = models.PositiveSmallIntegerField(null=True) def __str__(self): return str(self.user) def save(self, *args, **kwargs): + """Saves imgloc whenever user updates their profile pic.""" if 'user_pixel' in self.img.path: pass else: @@ -36,6 +37,12 @@ def save(self, *args, **kwargs): class UserVote(models.Model): + """Table that stores the votes/likes + + user -> profile that is being voted + voter -> profile that votes + vote -> boolean field with default as False + """ user = models.ForeignKey(User, on_delete=models.CASCADE) voter = models.ForeignKey(User, related_name='given_vote', on_delete=models.CASCADE) vote = models.BooleanField(default=False) diff --git a/proud-puffins/djangoProject/earlydating/puffin_functions.py b/proud-puffins/djangoProject/earlydating/puffin_functions.py index a9b8f87b6..8829c63d3 100644 --- a/proud-puffins/djangoProject/earlydating/puffin_functions.py +++ b/proud-puffins/djangoProject/earlydating/puffin_functions.py @@ -6,6 +6,7 @@ def imageTrans(image): + """Reduces image quality by resizing back and forth""" try: _, file_extension = os.path.splitext(image.name) file_extension = file_extension.split(".")[-1] @@ -31,6 +32,7 @@ def imageTrans(image): def validate_file_size(value): + """Raise error if file size exceed 10MB""" filesize = value.size if filesize > 10485760: diff --git a/proud-puffins/djangoProject/earlydating/signals.py b/proud-puffins/djangoProject/earlydating/signals.py index 26dd5bfd8..e3f57d92f 100644 --- a/proud-puffins/djangoProject/earlydating/signals.py +++ b/proud-puffins/djangoProject/earlydating/signals.py @@ -4,13 +4,15 @@ from .models import Profile -# Listen to Users table and crete a new profile whenever new user is created def create_profile(sender, instance, created, **kwargs): + """Listen to Users table and create a new profile whenever a user is created""" + # If the user is created and not by loading a fixture if created and not kwargs.get('raw', False): try: group = Group.objects.get(name='profile') except Group.DoesNotExist: group = Group.objects.create(name='profile') + # Add user to profile group and create profile object instance.groups.add(group) Profile.objects.create(user=instance) diff --git a/proud-puffins/djangoProject/earlydating/templates/dating/bothlikes.html b/proud-puffins/djangoProject/earlydating/templates/dating/bothlikes.html index 2fbadf5d6..d095f73ce 100644 --- a/proud-puffins/djangoProject/earlydating/templates/dating/bothlikes.html +++ b/proud-puffins/djangoProject/earlydating/templates/dating/bothlikes.html @@ -10,14 +10,19 @@

You Both Liked Eachother

{% for item in both_liked %}
-

{{ item.user.username }}


-
-

{{item.user.profile.bio }}

+

{{ item.username }}


+
+

{{item.profile.bio }}


+

Chat With Me! {{item.email}}

- {% endfor %} - +


+ {% empty %}

Keep fishing, plenty of fish in the sea.

+ + + {% endfor %} + {% endblock %} diff --git a/proud-puffins/djangoProject/earlydating/templates/dating/mylikes.html b/proud-puffins/djangoProject/earlydating/templates/dating/mylikes.html index dfe66eeb2..1923a058a 100644 --- a/proud-puffins/djangoProject/earlydating/templates/dating/mylikes.html +++ b/proud-puffins/djangoProject/earlydating/templates/dating/mylikes.html @@ -7,7 +7,7 @@ {% csrf_token %}

Your Likes

- +
{% for item in obj_liked %} @@ -19,7 +19,7 @@

Your Likes



{{item.user.profile.bio}}

-

Chat With Me! {{item.user.email}}

+

Chat With Me! {{item.user.email}}

diff --git a/proud-puffins/djangoProject/earlydating/views.py b/proud-puffins/djangoProject/earlydating/views.py index c88f4ed60..8272815fc 100644 --- a/proud-puffins/djangoProject/earlydating/views.py +++ b/proud-puffins/djangoProject/earlydating/views.py @@ -18,12 +18,17 @@ def home(request): return render(request, 'dating/home.html') +def about(request): + return render(request, 'dating/about.html') + + @unauthenticated_user def login_page(request): if request.method == 'POST': username = request.POST.get('username') password = request.POST.get('password') user = authenticate(request, username=username, password=password) + # If the user is logging for the first time, redirect them to setup their profile if user is not None and user.last_login is None: login(request, user) return redirect('earlydating-editprofile') @@ -55,13 +60,10 @@ def logoutUser(request): return redirect('earlydating-login') -def about(request): - return render(request, 'dating/about.html') - - @login_required(login_url='earlydating-login') @allowed_users(allowed_roles=['profile']) def editprofile(request): + """Page for editing/setting up their profile""" if request.method == 'POST': u_form = UserUpdateForm(request.POST, instance=request.user) p_form = ProfileUpdateForm(request.POST, request.FILES, instance=request.user.profile) @@ -86,53 +88,73 @@ def editprofile(request): @login_required(login_url='earlydating-login') @allowed_users(allowed_roles=['profile']) -def DateMatcher(request): +def profile(request, pk): logged_user = request.user - if request.method == 'POST': - print(request.POST) - if like_pk := request.POST.get('Like'): - voted = User.objects.get(pk=like_pk) - vote, _ = UserVote.objects.get_or_create(user=voted, voter=logged_user) - vote.vote = True - elif like_pk := request.POST.get('Unlike'): - voted = User.objects.get(pk=like_pk) - vote, _ = UserVote.objects.get_or_create(user=voted, voter=logged_user) - vote.vote = False - vote.save() - return redirect('earlydating-profile', pk=like_pk) - elif request.method == 'GET': - user = get_unvoted(logged_user)[0] - return redirect('earlydating-profile', pk=user.pk) + # Get profile user based on the primary_key(pk) in their url + user = User.objects.get(pk=pk) + # To display the like status of the profile + try: + like = UserVote.objects.get(user=user, voter=logged_user).vote + except UserVote.DoesNotExist: + like = False + context = {'current': user, 'like': like} + return render(request, 'dating/profile.html', context) + + +@login_required(login_url='earlydating-login') +@allowed_users(allowed_roles=['profile']) +def your_profile(request): + """Load your profile and randomly pick relevant fake profiles to like you""" + profile = request.user + # 2 to 5 random profiles will have their vote changed on the user + num_likebacks = randint(2, 5) + other_users = get_unvoted(profile, num_likebacks) + for other_user in other_users: + votes, created = UserVote.objects.get_or_create(user=profile, voter=other_user, vote=True) + # Change vote if the profile has already voted + if created: + votes.vote = not votes.vote + context = {'profile': profile} + return render(request, 'dating/YourProfile.html', context) def getfilters(user): + """Return filter(Q) objects for a user based on their sex and orientation""" u_sex = user.profile.sex - gender = ['Male', 'Female'] + opp_sex = 'Male' if u_sex == 'Female' else 'Female' try: + # If the user is straight fetch straight/bisexual users of the opposite sex if user.profile.preference == 'straight': - Q1 = Q(profile__sex=gender[int(not gender.index(u_sex))]) + Q1 = Q(profile__sex=opp_sex) Q2 = Q(profile__preference__in=['straight', 'bisexual']) return Q1 & Q2 + # If the user is gay fetch gay/bisexual users of the same sex elif user.profile.preference == 'gay': Q1 = Q(profile__sex=u_sex) Q2 = Q(profile__preference__in=['gay', 'bisexual']) return Q1 & Q2 elif user.profile.preference == 'bisexual': + # Get gay users of the same sex Q1 = Q(profile__sex=u_sex) Q2 = Q(profile__preference='gay') - Q3 = Q(profile__sex=gender[int(not gender.index(u_sex))]) + # Get straight users of the opposite sex + Q3 = Q(profile__sex=opp_sex) Q4 = Q(profile__preference='straight') + # Get bisexual users Q5 = Q(profile__preference='bisexual') return (Q1 & Q2) | (Q3 & Q4) | Q5 except Exception as e: + # if user provided no preference print(e) return None def get_unvoted(voter, num=1): + """Get unmatched profiles for the user""" + # Fetch users you voted for, including yourself try: votes = UserVote.objects.filter(voter=voter, vote=True) if not isinstance(votes, Iterable): @@ -140,65 +162,65 @@ def get_unvoted(voter, num=1): voted_pk = [vote.user.pk for vote in votes] + [voter.pk] except UserVote.DoesNotExist: voted_pk = [voter.pk] + # Get all the users you didn't vote for unvoted = User.objects.exclude(pk__in=voted_pk) + # Filter them based on your sex and preference if (filter := getfilters(voter)) is not None: unvoted = unvoted.filter(filter) + # Shuffle them and return the specified amount return unvoted.order_by('?')[:num] +@login_required(login_url='earlydating-login') +@allowed_users(allowed_roles=['profile']) +def DateMatcher(request): + """Manage user likes on a profile""" + logged_user = request.user + if request.method == 'POST': + # If the user clicked on the Like button on a profile. + if like_pk := request.POST.get('Like'): + voted = User.objects.get(pk=like_pk) + vote, _ = UserVote.objects.get_or_create(user=voted, voter=logged_user) + vote.vote = True + # Reset vote if the user pressed Unlike button on a profile. + elif like_pk := request.POST.get('Unlike'): + voted = User.objects.get(pk=like_pk) + vote, _ = UserVote.objects.get_or_create(user=voted, voter=logged_user) + vote.vote = False + vote.save() + return redirect('earlydating-profile', pk=like_pk) + elif request.method == 'GET': + # Redirect to a new random profile if the user pressed next button. + user = get_unvoted(logged_user)[0] + return redirect('earlydating-profile', pk=user.pk) + + @login_required(login_url='earlydating-login') @allowed_users(allowed_roles=['profile']) def likedmatches(request): + """Page for the profiles you liked""" logged_user = request.user - liked_you = UserVote.objects.filter(user=logged_user, vote=1).exclude(voter=logged_user) you_liked = UserVote.objects.filter(voter=logged_user, vote=1).exclude(user=logged_user) - page_likes = Paginator(liked_you, 9) page_liked = Paginator(you_liked, 9) page_number = request.GET.get('page') - page_obj_likes = page_likes.get_page(page_number) page_obj_liked = page_liked.get_page(page_number) - context = {'liked_you': liked_you, 'you_liked': you_liked, - 'obj_liked': page_obj_liked, 'obj_likes': page_obj_likes} + context = {'you_liked': you_liked, 'obj_liked': page_obj_liked} return render(request, 'dating/mylikes.html', context) @login_required(login_url='earlydating-login') @allowed_users(allowed_roles=['profile']) def bothliked(request): + """Page for your matches (both liked eachother)""" logged_user = request.user - liked_you = UserVote.objects.filter(user=logged_user, vote=True).exclude(voter=logged_user) - you_liked = UserVote.objects.filter(voter=logged_user, vote=True).exclude(user=logged_user) + liked_you = UserVote.objects.filter(user=logged_user, vote=True).exclude(voter=logged_user).values_list('voter') + you_liked = UserVote.objects.filter(voter=logged_user, vote=True).exclude(user=logged_user).values_list('user') both_liked = liked_you.intersection(you_liked) - whole_list = liked_you.union(you_liked) - context = {'liked_you': liked_you, 'you_liked': you_liked, 'both_liked': both_liked, 'everyone': whole_list} + matches = [] + for ele in both_liked: + matches.append(User.objects.get(pk=ele[0])) + context = {'both_liked': matches} return render(request, 'dating/bothlikes.html', context) - - -@login_required(login_url='earlydating-login') -@allowed_users(allowed_roles=['profile']) -def profile(request, pk): - logged_user = request.user - user = User.objects.get(pk=pk) - try: - like = UserVote.objects.get(user=user, voter=logged_user).vote - except UserVote.DoesNotExist: - like = False - context = {'current': user, 'like': like} - return render(request, 'dating/profile.html', context) - - -@login_required(login_url='earlydating-login') -@allowed_users(allowed_roles=['profile']) -def your_profile(request): - profile = request.user - num_likebacks = randint(2, 5) - other_users = get_unvoted(profile, num_likebacks) - for other_user in other_users: - votes, created = UserVote.objects.get_or_create(user=profile, voter=other_user, vote=True) - if created: - votes.vote = not votes.vote - context = {'profile': profile} - return render(request, 'dating/YourProfile.html', context) diff --git a/proud-puffins/djangoProject/puffin_setup.py b/proud-puffins/djangoProject/puffin_setup.py index 00694d75e..05ce9435c 100644 --- a/proud-puffins/djangoProject/puffin_setup.py +++ b/proud-puffins/djangoProject/puffin_setup.py @@ -6,6 +6,7 @@ # If an error happens during loading data, empties the table and returns. def tablewipe(): + """Clears all tables in earlydating app.""" conn = sqlite3.connect("mysqlite.db") c = conn.cursor() @@ -27,6 +28,7 @@ def tablewipe(): os.chdir("../") subprocess.run(["pip", "install", "-r", "requirements.txt"], shell=True) os.chdir("./djangoProject") + # Migrate and load initial data subprocess.run(["python", "manage.py", "makemigrations"], shell=True) subprocess.run(["python", "manage.py", "migrate"], shell=True) subprocess.run(["python", "manage.py", "loaddata", "users.json"], shell=True) @@ -37,7 +39,7 @@ def tablewipe(): except Exception: tablewipe() subprocess.run(["python", "manage.py", "loaddata", "profiles.json"], shell=True) - + # runserver subprocess.run(["python", "manage.py", "runserver"], shell=True) # Runs for linux and mac @@ -45,6 +47,7 @@ def tablewipe(): os.chdir("../") subprocess.run(["pip", "install", "-r", "requirements.txt"]) os.chdir("./djangoProject") + # Migrate and load initial data subprocess.run(["python", "manage.py", "makemigrations"]) subprocess.run(["python", "manage.py", "migrate"]) subprocess.run(["python", "manage.py", "loaddata", "users.json"]) @@ -55,5 +58,5 @@ def tablewipe(): except Exception: tablewipe() subprocess.run(["python", "manage.py", "loaddata", "profiles.json"]) - + # runserver subprocess.run(["python", "manage.py", "runserver"]) diff --git a/proud-puffins/djangoProject/tools/raw.json b/proud-puffins/djangoProject/tools/raw.json deleted file mode 100644 index 45b45a2fd..000000000 --- a/proud-puffins/djangoProject/tools/raw.json +++ /dev/null @@ -1,4002 +0,0 @@ -[ - { - "model": "earlydating.Profile", - "pk": 1, - "fields": { - "gender": "Male", - "first_name": "Michael", - "age": 22, - "last_name": "Smith" - } - }, - { - "model": "earlydating.Profile", - "pk": 2, - "fields": { - "gender": "Male", - "first_name": "Christopher", - "age": 48, - "last_name": "Johnson" - } - }, - { - "model": "earlydating.Profile", - "pk": 3, - "fields": { - "gender": "Male", - "first_name": "Jason", - "age": 50, - "last_name": "Williams" - } - }, - { - "model": "earlydating.Profile", - "pk": 4, - "fields": { - "gender": "Male", - "first_name": "David", - "age": 33, - "last_name": "Brown" - } - }, - { - "model": "earlydating.Profile", - "pk": 5, - "fields": { - "gender": "Male", - "first_name": "James", - "age": 21, - "last_name": "Jones" - } - }, - { - "model": "earlydating.Profile", - "pk": 6, - "fields": { - "gender": "Male", - "first_name": "John", - "age": 45, - "last_name": "Garcia" - } - }, - { - "model": "earlydating.Profile", - "pk": 7, - "fields": { - "gender": "Male", - "first_name": "Robert", - "age": 43, - "last_name": "Miller" - } - }, - { - "model": "earlydating.Profile", - "pk": 8, - "fields": { - "gender": "Male", - "first_name": "Brian", - "age": 36, - "last_name": "Davis" - } - }, - { - "model": "earlydating.Profile", - "pk": 9, - "fields": { - "gender": "Male", - "first_name": "William", - "age": 32, - "last_name": "Rodriguez" - } - }, - { - "model": "earlydating.Profile", - "pk": 10, - "fields": { - "gender": "Male", - "first_name": "Matthew", - "age": 43, - "last_name": "Martinez" - } - }, - { - "model": "earlydating.Profile", - "pk": 11, - "fields": { - "gender": "Male", - "first_name": "Joseph", - "age": 43, - "last_name": "Hernandez" - } - }, - { - "model": "earlydating.Profile", - "pk": 12, - "fields": { - "gender": "Male", - "first_name": "Daniel", - "age": 30, - "last_name": "Lopez" - } - }, - { - "model": "earlydating.Profile", - "pk": 13, - "fields": { - "gender": "Male", - "first_name": "Kevin", - "age": 28, - "last_name": "Gonzalez" - } - }, - { - "model": "earlydating.Profile", - "pk": 14, - "fields": { - "gender": "Male", - "first_name": "Eric", - "age": 36, - "last_name": "Wilson" - } - }, - { - "model": "earlydating.Profile", - "pk": 15, - "fields": { - "gender": "Male", - "first_name": "Jeffrey", - "age": 34, - "last_name": "Anderson" - } - }, - { - "model": "earlydating.Profile", - "pk": 16, - "fields": { - "gender": "Male", - "first_name": "Richard", - "age": 19, - "last_name": "Thomas" - } - }, - { - "model": "earlydating.Profile", - "pk": 17, - "fields": { - "gender": "Male", - "first_name": "Scott", - "age": 37, - "last_name": "Taylor" - } - }, - { - "model": "earlydating.Profile", - "pk": 18, - "fields": { - "gender": "Male", - "first_name": "Mark", - "age": 37, - "last_name": "Moore" - } - }, - { - "model": "earlydating.Profile", - "pk": 19, - "fields": { - "gender": "Male", - "first_name": "Steven", - "age": 26, - "last_name": "Jackson" - } - }, - { - "model": "earlydating.Profile", - "pk": 20, - "fields": { - "gender": "Male", - "first_name": "Thomas", - "age": 36, - "last_name": "Martin" - } - }, - { - "model": "earlydating.Profile", - "pk": 21, - "fields": { - "gender": "Male", - "first_name": "Timothy", - "age": 18, - "last_name": "Lee" - } - }, - { - "model": "earlydating.Profile", - "pk": 22, - "fields": { - "gender": "Male", - "first_name": "Anthony", - "age": 47, - "last_name": "Perez" - } - }, - { - "model": "earlydating.Profile", - "pk": 23, - "fields": { - "gender": "Male", - "first_name": "Charles", - "age": 41, - "last_name": "Thompson" - } - }, - { - "model": "earlydating.Profile", - "pk": 24, - "fields": { - "gender": "Male", - "first_name": "Joshua", - "age": 22, - "last_name": "White" - } - }, - { - "model": "earlydating.Profile", - "pk": 25, - "fields": { - "gender": "Male", - "first_name": "Ryan", - "age": 23, - "last_name": "Harris" - } - }, - { - "model": "earlydating.Profile", - "pk": 26, - "fields": { - "gender": "Male", - "first_name": "Jeremy", - "age": 49, - "last_name": "Sanchez" - } - }, - { - "model": "earlydating.Profile", - "pk": 27, - "fields": { - "gender": "Male", - "first_name": "Paul", - "age": 39, - "last_name": "Clark" - } - }, - { - "model": "earlydating.Profile", - "pk": 28, - "fields": { - "gender": "Male", - "first_name": "Andrew", - "age": 18, - "last_name": "Ramirez" - } - }, - { - "model": "earlydating.Profile", - "pk": 29, - "fields": { - "gender": "Male", - "first_name": "Gregory", - "age": 44, - "last_name": "Lewis" - } - }, - { - "model": "earlydating.Profile", - "pk": 30, - "fields": { - "gender": "Male", - "first_name": "Chad", - "age": 27, - "last_name": "Robinson" - } - }, - { - "model": "earlydating.Profile", - "pk": 31, - "fields": { - "gender": "Male", - "first_name": "Kenneth", - "age": 21, - "last_name": "Walker" - } - }, - { - "model": "earlydating.Profile", - "pk": 32, - "fields": { - "gender": "Male", - "first_name": "Jonathan", - "age": 36, - "last_name": "Young" - } - }, - { - "model": "earlydating.Profile", - "pk": 33, - "fields": { - "gender": "Male", - "first_name": "Stephen", - "age": 18, - "last_name": "Allen" - } - }, - { - "model": "earlydating.Profile", - "pk": 34, - "fields": { - "gender": "Male", - "first_name": "Shawn", - "age": 22, - "last_name": "King" - } - }, - { - "model": "earlydating.Profile", - "pk": 35, - "fields": { - "gender": "Male", - "first_name": "Aaron", - "age": 46, - "last_name": "Wright" - } - }, - { - "model": "earlydating.Profile", - "pk": 36, - "fields": { - "gender": "Male", - "first_name": "Adam", - "age": 30, - "last_name": "Scott" - } - }, - { - "model": "earlydating.Profile", - "pk": 37, - "fields": { - "gender": "Male", - "first_name": "Patrick", - "age": 29, - "last_name": "Torres" - } - }, - { - "model": "earlydating.Profile", - "pk": 38, - "fields": { - "gender": "Male", - "first_name": "Justin", - "age": 20, - "last_name": "Nguyen" - } - }, - { - "model": "earlydating.Profile", - "pk": 39, - "fields": { - "gender": "Male", - "first_name": "Sean", - "age": 41, - "last_name": "Hill" - } - }, - { - "model": "earlydating.Profile", - "pk": 40, - "fields": { - "gender": "Male", - "first_name": "Edward", - "age": 37, - "last_name": "Flores" - } - }, - { - "model": "earlydating.Profile", - "pk": 41, - "fields": { - "gender": "Male", - "first_name": "Todd", - "age": 41, - "last_name": "Green" - } - }, - { - "model": "earlydating.Profile", - "pk": 42, - "fields": { - "gender": "Male", - "first_name": "Donald", - "age": 32, - "last_name": "Adams" - } - }, - { - "model": "earlydating.Profile", - "pk": 43, - "fields": { - "gender": "Male", - "first_name": "Ronald", - "age": 46, - "last_name": "Nelson" - } - }, - { - "model": "earlydating.Profile", - "pk": 44, - "fields": { - "gender": "Male", - "first_name": "Benjamin", - "age": 47, - "last_name": "Baker" - } - }, - { - "model": "earlydating.Profile", - "pk": 45, - "fields": { - "gender": "Male", - "first_name": "Keith", - "age": 46, - "last_name": "Hall" - } - }, - { - "model": "earlydating.Profile", - "pk": 46, - "fields": { - "gender": "Male", - "first_name": "Bryan", - "age": 50, - "last_name": "Rivera" - } - }, - { - "model": "earlydating.Profile", - "pk": 47, - "fields": { - "gender": "Male", - "first_name": "Gary", - "age": 27, - "last_name": "Campbell" - } - }, - { - "model": "earlydating.Profile", - "pk": 48, - "fields": { - "gender": "Male", - "first_name": "Jose", - "age": 29, - "last_name": "Mitchell" - } - }, - { - "model": "earlydating.Profile", - "pk": 49, - "fields": { - "gender": "Male", - "first_name": "Nathan", - "age": 23, - "last_name": "Carter" - } - }, - { - "model": "earlydating.Profile", - "pk": 50, - "fields": { - "gender": "Male", - "first_name": "Douglas", - "age": 40, - "last_name": "Roberts" - } - }, - { - "model": "earlydating.Profile", - "pk": 51, - "fields": { - "gender": "Male", - "first_name": "Nicholas", - "age": 44, - "last_name": "Gomez" - } - }, - { - "model": "earlydating.Profile", - "pk": 52, - "fields": { - "gender": "Male", - "first_name": "Brandon", - "age": 26, - "last_name": "Phillips" - } - }, - { - "model": "earlydating.Profile", - "pk": 53, - "fields": { - "gender": "Male", - "first_name": "George", - "age": 37, - "last_name": "Evans" - } - }, - { - "model": "earlydating.Profile", - "pk": 54, - "fields": { - "gender": "Male", - "first_name": "Travis", - "age": 41, - "last_name": "Turner" - } - }, - { - "model": "earlydating.Profile", - "pk": 55, - "fields": { - "gender": "Male", - "first_name": "Peter", - "age": 31, - "last_name": "Diaz" - } - }, - { - "model": "earlydating.Profile", - "pk": 56, - "fields": { - "gender": "Male", - "first_name": "Craig", - "age": 48, - "last_name": "Parker" - } - }, - { - "model": "earlydating.Profile", - "pk": 57, - "fields": { - "gender": "Male", - "first_name": "Bradley", - "age": 41, - "last_name": "Cruz" - } - }, - { - "model": "earlydating.Profile", - "pk": 58, - "fields": { - "gender": "Male", - "first_name": "Larry", - "age": 42, - "last_name": "Edwards" - } - }, - { - "model": "earlydating.Profile", - "pk": 59, - "fields": { - "gender": "Male", - "first_name": "Dennis", - "age": 34, - "last_name": "Collins" - } - }, - { - "model": "earlydating.Profile", - "pk": 60, - "fields": { - "gender": "Male", - "first_name": "Shane", - "age": 41, - "last_name": "Reyes" - } - }, - { - "model": "earlydating.Profile", - "pk": 61, - "fields": { - "gender": "Male", - "first_name": "Raymond", - "age": 40, - "last_name": "Stewart" - } - }, - { - "model": "earlydating.Profile", - "pk": 62, - "fields": { - "gender": "Male", - "first_name": "Troy", - "age": 42, - "last_name": "Morris" - } - }, - { - "model": "earlydating.Profile", - "pk": 63, - "fields": { - "gender": "Male", - "first_name": "Jerry", - "age": 23, - "last_name": "Morales" - } - }, - { - "model": "earlydating.Profile", - "pk": 64, - "fields": { - "gender": "Male", - "first_name": "Samuel", - "age": 21, - "last_name": "Murphy" - } - }, - { - "model": "earlydating.Profile", - "pk": 65, - "fields": { - "gender": "Male", - "first_name": "Frank", - "age": 48, - "last_name": "Cook" - } - }, - { - "model": "earlydating.Profile", - "pk": 66, - "fields": { - "gender": "Male", - "first_name": "Jesse", - "age": 47, - "last_name": "Rogers" - } - }, - { - "model": "earlydating.Profile", - "pk": 67, - "fields": { - "gender": "Male", - "first_name": "Jeffery", - "age": 37, - "last_name": "Gutierrez" - } - }, - { - "model": "earlydating.Profile", - "pk": 68, - "fields": { - "gender": "Male", - "first_name": "Juan", - "age": 19, - "last_name": "Ortiz" - } - }, - { - "model": "earlydating.Profile", - "pk": 69, - "fields": { - "gender": "Male", - "first_name": "Terry", - "age": 31, - "last_name": "Morgan" - } - }, - { - "model": "earlydating.Profile", - "pk": 70, - "fields": { - "gender": "Male", - "first_name": "Corey", - "age": 21, - "last_name": "Cooper" - } - }, - { - "model": "earlydating.Profile", - "pk": 71, - "fields": { - "gender": "Male", - "first_name": "Phillip", - "age": 38, - "last_name": "Peterson" - } - }, - { - "model": "earlydating.Profile", - "pk": 72, - "fields": { - "gender": "Male", - "first_name": "Marcus", - "age": 42, - "last_name": "Bailey" - } - }, - { - "model": "earlydating.Profile", - "pk": 73, - "fields": { - "gender": "Male", - "first_name": "Derek", - "age": 20, - "last_name": "Reed" - } - }, - { - "model": "earlydating.Profile", - "pk": 74, - "fields": { - "gender": "Male", - "first_name": "Rodney", - "age": 28, - "last_name": "Kelly" - } - }, - { - "model": "earlydating.Profile", - "pk": 75, - "fields": { - "gender": "Male", - "first_name": "Joel", - "age": 28, - "last_name": "Howard" - } - }, - { - "model": "earlydating.Profile", - "pk": 76, - "fields": { - "gender": "Male", - "first_name": "Carlos", - "age": 25, - "last_name": "Ramos" - } - }, - { - "model": "earlydating.Profile", - "pk": 77, - "fields": { - "gender": "Male", - "first_name": "Randy", - "age": 28, - "last_name": "Kim" - } - }, - { - "model": "earlydating.Profile", - "pk": 78, - "fields": { - "gender": "Male", - "first_name": "Jacob", - "age": 22, - "last_name": "Cox" - } - }, - { - "model": "earlydating.Profile", - "pk": 79, - "fields": { - "gender": "Male", - "first_name": "Jamie", - "age": 45, - "last_name": "Ward" - } - }, - { - "model": "earlydating.Profile", - "pk": 80, - "fields": { - "gender": "Male", - "first_name": "Tony", - "age": 47, - "last_name": "Richardson" - } - }, - { - "model": "earlydating.Profile", - "pk": 81, - "fields": { - "gender": "Male", - "first_name": "Russell", - "age": 33, - "last_name": "Watson" - } - }, - { - "model": "earlydating.Profile", - "pk": 82, - "fields": { - "gender": "Male", - "first_name": "Brent", - "age": 19, - "last_name": "Brooks" - } - }, - { - "model": "earlydating.Profile", - "pk": 83, - "fields": { - "gender": "Male", - "first_name": "Antonio", - "age": 24, - "last_name": "Chavez" - } - }, - { - "model": "earlydating.Profile", - "pk": 84, - "fields": { - "gender": "Male", - "first_name": "Billy", - "age": 18, - "last_name": "Wood" - } - }, - { - "model": "earlydating.Profile", - "pk": 85, - "fields": { - "gender": "Male", - "first_name": "Derrick", - "age": 42, - "last_name": "James" - } - }, - { - "model": "earlydating.Profile", - "pk": 86, - "fields": { - "gender": "Male", - "first_name": "Kyle", - "age": 25, - "last_name": "Bennett" - } - }, - { - "model": "earlydating.Profile", - "pk": 87, - "fields": { - "gender": "Male", - "first_name": "Erik", - "age": 40, - "last_name": "Gray" - } - }, - { - "model": "earlydating.Profile", - "pk": 88, - "fields": { - "gender": "Male", - "first_name": "Johnny", - "age": 28, - "last_name": "Mendoza" - } - }, - { - "model": "earlydating.Profile", - "pk": 89, - "fields": { - "gender": "Male", - "first_name": "Marc", - "age": 47, - "last_name": "Ruiz" - } - }, - { - "model": "earlydating.Profile", - "pk": 90, - "fields": { - "gender": "Male", - "first_name": "Philip", - "age": 42, - "last_name": "Hughes" - } - }, - { - "model": "earlydating.Profile", - "pk": 91, - "fields": { - "gender": "Male", - "first_name": "Carl", - "age": 21, - "last_name": "Price" - } - }, - { - "model": "earlydating.Profile", - "pk": 92, - "fields": { - "gender": "Male", - "first_name": "Roger", - "age": 41, - "last_name": "Alvarez" - } - }, - { - "model": "earlydating.Profile", - "pk": 93, - "fields": { - "gender": "Male", - "first_name": "Bobby", - "age": 33, - "last_name": "Castillo" - } - }, - { - "model": "earlydating.Profile", - "pk": 94, - "fields": { - "gender": "Male", - "first_name": "Brett", - "age": 30, - "last_name": "Sanders" - } - }, - { - "model": "earlydating.Profile", - "pk": 95, - "fields": { - "gender": "Male", - "first_name": "Danny", - "age": 49, - "last_name": "Patel" - } - }, - { - "model": "earlydating.Profile", - "pk": 96, - "fields": { - "gender": "Male", - "first_name": "Curtis", - "age": 27, - "last_name": "Myers" - } - }, - { - "model": "earlydating.Profile", - "pk": 97, - "fields": { - "gender": "Male", - "first_name": "Jon", - "age": 18, - "last_name": "Long" - } - }, - { - "model": "earlydating.Profile", - "pk": 98, - "fields": { - "gender": "Male", - "first_name": "Vincent", - "age": 45, - "last_name": "Ross" - } - }, - { - "model": "earlydating.Profile", - "pk": 99, - "fields": { - "gender": "Male", - "first_name": "Cory", - "age": 42, - "last_name": "Foster" - } - }, - { - "model": "earlydating.Profile", - "pk": 100, - "fields": { - "gender": "Male", - "first_name": "Jimmy", - "age": 31, - "last_name": "Jimenez" - } - }, - { - "model": "earlydating.Profile", - "pk": 101, - "fields": { - "gender": "Male", - "first_name": "Victor", - "age": 29, - "last_name": "Powell" - } - }, - { - "model": "earlydating.Profile", - "pk": 102, - "fields": { - "gender": "Male", - "first_name": "Lawrence", - "age": 29, - "last_name": "Jenkins" - } - }, - { - "model": "earlydating.Profile", - "pk": 103, - "fields": { - "gender": "Male", - "first_name": "Dustin", - "age": 40, - "last_name": "Perry" - } - }, - { - "model": "earlydating.Profile", - "pk": 104, - "fields": { - "gender": "Male", - "first_name": "Gerald", - "age": 48, - "last_name": "Russell" - } - }, - { - "model": "earlydating.Profile", - "pk": 105, - "fields": { - "gender": "Male", - "first_name": "Walter", - "age": 25, - "last_name": "Sullivan" - } - }, - { - "model": "earlydating.Profile", - "pk": 106, - "fields": { - "gender": "Male", - "first_name": "Alexander", - "age": 35, - "last_name": "Bell" - } - }, - { - "model": "earlydating.Profile", - "pk": 107, - "fields": { - "gender": "Male", - "first_name": "Joe", - "age": 24, - "last_name": "Coleman" - } - }, - { - "model": "earlydating.Profile", - "pk": 108, - "fields": { - "gender": "Male", - "first_name": "Christian", - "age": 49, - "last_name": "Butler" - } - }, - { - "model": "earlydating.Profile", - "pk": 109, - "fields": { - "gender": "Male", - "first_name": "Chris", - "age": 28, - "last_name": "Henderson" - } - }, - { - "model": "earlydating.Profile", - "pk": 110, - "fields": { - "gender": "Male", - "first_name": "Alan", - "age": 18, - "last_name": "Barnes" - } - }, - { - "model": "earlydating.Profile", - "pk": 111, - "fields": { - "gender": "Male", - "first_name": "Shannon", - "age": 39, - "last_name": "Gonzales" - } - }, - { - "model": "earlydating.Profile", - "pk": 112, - "fields": { - "gender": "Male", - "first_name": "Wayne", - "age": 25, - "last_name": "Fisher" - } - }, - { - "model": "earlydating.Profile", - "pk": 113, - "fields": { - "gender": "Male", - "first_name": "Jared", - "age": 34, - "last_name": "Vasquez" - } - }, - { - "model": "earlydating.Profile", - "pk": 114, - "fields": { - "gender": "Male", - "first_name": "Gabriel", - "age": 22, - "last_name": "Simmons" - } - }, - { - "model": "earlydating.Profile", - "pk": 115, - "fields": { - "gender": "Male", - "first_name": "Martin", - "age": 45, - "last_name": "Romero" - } - }, - { - "model": "earlydating.Profile", - "pk": 116, - "fields": { - "gender": "Male", - "first_name": "Jay", - "age": 24, - "last_name": "Jordan" - } - }, - { - "model": "earlydating.Profile", - "pk": 117, - "fields": { - "gender": "Male", - "first_name": "Luis", - "age": 23, - "last_name": "Patterson" - } - }, - { - "model": "earlydating.Profile", - "pk": 118, - "fields": { - "gender": "Male", - "first_name": "Willie", - "age": 45, - "last_name": "Alexander" - } - }, - { - "model": "earlydating.Profile", - "pk": 119, - "fields": { - "gender": "Male", - "first_name": "Micheal", - "age": 24, - "last_name": "Hamilton" - } - }, - { - "model": "earlydating.Profile", - "pk": 120, - "fields": { - "gender": "Male", - "first_name": "Henry", - "age": 37, - "last_name": "Graham" - } - }, - { - "model": "earlydating.Profile", - "pk": 121, - "fields": { - "gender": "Male", - "first_name": "Wesley", - "age": 42, - "last_name": "Reynolds" - } - }, - { - "model": "earlydating.Profile", - "pk": 122, - "fields": { - "gender": "Male", - "first_name": "Randall", - "age": 21, - "last_name": "Griffin" - } - }, - { - "model": "earlydating.Profile", - "pk": 123, - "fields": { - "gender": "Male", - "first_name": "Brad", - "age": 44, - "last_name": "Wallace" - } - }, - { - "model": "earlydating.Profile", - "pk": 124, - "fields": { - "gender": "Male", - "first_name": "Darren", - "age": 19, - "last_name": "Moreno" - } - }, - { - "model": "earlydating.Profile", - "pk": 125, - "fields": { - "gender": "Male", - "first_name": "Roy", - "age": 40, - "last_name": "West" - } - }, - { - "model": "earlydating.Profile", - "pk": 126, - "fields": { - "gender": "Male", - "first_name": "Albert", - "age": 41, - "last_name": "Cole" - } - }, - { - "model": "earlydating.Profile", - "pk": 127, - "fields": { - "gender": "Male", - "first_name": "Arthur", - "age": 47, - "last_name": "Hayes" - } - }, - { - "model": "earlydating.Profile", - "pk": 128, - "fields": { - "gender": "Male", - "first_name": "Ricky", - "age": 45, - "last_name": "Bryant" - } - }, - { - "model": "earlydating.Profile", - "pk": 129, - "fields": { - "gender": "Male", - "first_name": "Lance", - "age": 19, - "last_name": "Herrera" - } - }, - { - "model": "earlydating.Profile", - "pk": 130, - "fields": { - "gender": "Male", - "first_name": "Allen", - "age": 32, - "last_name": "Gibson" - } - }, - { - "model": "earlydating.Profile", - "pk": 131, - "fields": { - "gender": "Male", - "first_name": "Lee", - "age": 18, - "last_name": "Ellis" - } - }, - { - "model": "earlydating.Profile", - "pk": 132, - "fields": { - "gender": "Male", - "first_name": "Andre", - "age": 33, - "last_name": "Tran" - } - }, - { - "model": "earlydating.Profile", - "pk": 133, - "fields": { - "gender": "Male", - "first_name": "Bruce", - "age": 41, - "last_name": "Medina" - } - }, - { - "model": "earlydating.Profile", - "pk": 134, - "fields": { - "gender": "Male", - "first_name": "Mario", - "age": 19, - "last_name": "Aguilar" - } - }, - { - "model": "earlydating.Profile", - "pk": 135, - "fields": { - "gender": "Male", - "first_name": "Frederick", - "age": 46, - "last_name": "Stevens" - } - }, - { - "model": "earlydating.Profile", - "pk": 136, - "fields": { - "gender": "Male", - "first_name": "Louis", - "age": 44, - "last_name": "Murray" - } - }, - { - "model": "earlydating.Profile", - "pk": 137, - "fields": { - "gender": "Male", - "first_name": "Darrell", - "age": 22, - "last_name": "Ford" - } - }, - { - "model": "earlydating.Profile", - "pk": 138, - "fields": { - "gender": "Male", - "first_name": "Damon", - "age": 41, - "last_name": "Castro" - } - }, - { - "model": "earlydating.Profile", - "pk": 139, - "fields": { - "gender": "Male", - "first_name": "Shaun", - "age": 45, - "last_name": "Marshall" - } - }, - { - "model": "earlydating.Profile", - "pk": 140, - "fields": { - "gender": "Male", - "first_name": "Nathaniel", - "age": 41, - "last_name": "Owens" - } - }, - { - "model": "earlydating.Profile", - "pk": 141, - "fields": { - "gender": "Male", - "first_name": "Zachary", - "age": 45, - "last_name": "Harrison" - } - }, - { - "model": "earlydating.Profile", - "pk": 142, - "fields": { - "gender": "Male", - "first_name": "Casey", - "age": 42, - "last_name": "Fernandez" - } - }, - { - "model": "earlydating.Profile", - "pk": 143, - "fields": { - "gender": "Male", - "first_name": "Adrian", - "age": 29, - "last_name": "Mcdonald" - } - }, - { - "model": "earlydating.Profile", - "pk": 144, - "fields": { - "gender": "Male", - "first_name": "Jesus", - "age": 44, - "last_name": "Woods" - } - }, - { - "model": "earlydating.Profile", - "pk": 145, - "fields": { - "gender": "Male", - "first_name": "Jeremiah", - "age": 47, - "last_name": "Washington" - } - }, - { - "model": "earlydating.Profile", - "pk": 146, - "fields": { - "gender": "Male", - "first_name": "Jack", - "age": 31, - "last_name": "Kennedy" - } - }, - { - "model": "earlydating.Profile", - "pk": 147, - "fields": { - "gender": "Male", - "first_name": "Ronnie", - "age": 18, - "last_name": "Wells" - } - }, - { - "model": "earlydating.Profile", - "pk": 148, - "fields": { - "gender": "Male", - "first_name": "Dale", - "age": 24, - "last_name": "Vargas" - } - }, - { - "model": "earlydating.Profile", - "pk": 149, - "fields": { - "gender": "Male", - "first_name": "Tyrone", - "age": 39, - "last_name": "Henry" - } - }, - { - "model": "earlydating.Profile", - "pk": 150, - "fields": { - "gender": "Male", - "first_name": "Manuel", - "age": 23, - "last_name": "Chen" - } - }, - { - "model": "earlydating.Profile", - "pk": 151, - "fields": { - "gender": "Male", - "first_name": "Ricardo", - "age": 20, - "last_name": "Freeman" - } - }, - { - "model": "earlydating.Profile", - "pk": 152, - "fields": { - "gender": "Male", - "first_name": "Harold", - "age": 25, - "last_name": "Webb" - } - }, - { - "model": "earlydating.Profile", - "pk": 153, - "fields": { - "gender": "Male", - "first_name": "Kelly", - "age": 38, - "last_name": "Tucker" - } - }, - { - "model": "earlydating.Profile", - "pk": 154, - "fields": { - "gender": "Male", - "first_name": "Barry", - "age": 30, - "last_name": "Guzman" - } - }, - { - "model": "earlydating.Profile", - "pk": 155, - "fields": { - "gender": "Male", - "first_name": "Ian", - "age": 29, - "last_name": "Burns" - } - }, - { - "model": "earlydating.Profile", - "pk": 156, - "fields": { - "gender": "Male", - "first_name": "Reginald", - "age": 32, - "last_name": "Crawford" - } - }, - { - "model": "earlydating.Profile", - "pk": 157, - "fields": { - "gender": "Male", - "first_name": "Glenn", - "age": 47, - "last_name": "Olson" - } - }, - { - "model": "earlydating.Profile", - "pk": 158, - "fields": { - "gender": "Male", - "first_name": "Ernest", - "age": 30, - "last_name": "Simpson" - } - }, - { - "model": "earlydating.Profile", - "pk": 159, - "fields": { - "gender": "Male", - "first_name": "Steve", - "age": 33, - "last_name": "Porter" - } - }, - { - "model": "earlydating.Profile", - "pk": 160, - "fields": { - "gender": "Male", - "first_name": "Seth", - "age": 18, - "last_name": "Hunter" - } - }, - { - "model": "earlydating.Profile", - "pk": 161, - "fields": { - "gender": "Male", - "first_name": "Eugene", - "age": 41, - "last_name": "Gordon" - } - }, - { - "model": "earlydating.Profile", - "pk": 162, - "fields": { - "gender": "Male", - "first_name": "Clinton", - "age": 22, - "last_name": "Mendez" - } - }, - { - "model": "earlydating.Profile", - "pk": 163, - "fields": { - "gender": "Male", - "first_name": "Miguel", - "age": 41, - "last_name": "Silva" - } - }, - { - "model": "earlydating.Profile", - "pk": 164, - "fields": { - "gender": "Male", - "first_name": "Tommy", - "age": 25, - "last_name": "Shaw" - } - }, - { - "model": "earlydating.Profile", - "pk": 165, - "fields": { - "gender": "Male", - "first_name": "Eddie", - "age": 26, - "last_name": "Snyder" - } - }, - { - "model": "earlydating.Profile", - "pk": 166, - "fields": { - "gender": "Male", - "first_name": "Leonard", - "age": 50, - "last_name": "Mason" - } - }, - { - "model": "earlydating.Profile", - "pk": 167, - "fields": { - "gender": "Male", - "first_name": "Maurice", - "age": 37, - "last_name": "Dixon" - } - }, - { - "model": "earlydating.Profile", - "pk": 168, - "fields": { - "gender": "Male", - "first_name": "Roberto", - "age": 45, - "last_name": "Munoz" - } - }, - { - "model": "earlydating.Profile", - "pk": 169, - "fields": { - "gender": "Male", - "first_name": "Dwayne", - "age": 29, - "last_name": "Hunt" - } - }, - { - "model": "earlydating.Profile", - "pk": 170, - "fields": { - "gender": "Male", - "first_name": "Jerome", - "age": 24, - "last_name": "Hicks" - } - }, - { - "model": "earlydating.Profile", - "pk": 171, - "fields": { - "gender": "Male", - "first_name": "Ralph", - "age": 25, - "last_name": "Holmes" - } - }, - { - "model": "earlydating.Profile", - "pk": 172, - "fields": { - "gender": "Male", - "first_name": "Marvin", - "age": 43, - "last_name": "Palmer" - } - }, - { - "model": "earlydating.Profile", - "pk": 173, - "fields": { - "gender": "Male", - "first_name": "Jorge", - "age": 43, - "last_name": "Wagner" - } - }, - { - "model": "earlydating.Profile", - "pk": 174, - "fields": { - "gender": "Male", - "first_name": "Francisco", - "age": 39, - "last_name": "Black" - } - }, - { - "model": "earlydating.Profile", - "pk": 175, - "fields": { - "gender": "Male", - "first_name": "Neil", - "age": 47, - "last_name": "Robertson" - } - }, - { - "model": "earlydating.Profile", - "pk": 176, - "fields": { - "gender": "Male", - "first_name": "Alex", - "age": 41, - "last_name": "Boyd" - } - }, - { - "model": "earlydating.Profile", - "pk": 177, - "fields": { - "gender": "Male", - "first_name": "Dean", - "age": 43, - "last_name": "Rose" - } - }, - { - "model": "earlydating.Profile", - "pk": 178, - "fields": { - "gender": "Male", - "first_name": "Kristopher", - "age": 27, - "last_name": "Stone" - } - }, - { - "model": "earlydating.Profile", - "pk": 179, - "fields": { - "gender": "Male", - "first_name": "Calvin", - "age": 32, - "last_name": "Salazar" - } - }, - { - "model": "earlydating.Profile", - "pk": 180, - "fields": { - "gender": "Male", - "first_name": "Kurt", - "age": 32, - "last_name": "Fox" - } - }, - { - "model": "earlydating.Profile", - "pk": 181, - "fields": { - "gender": "Male", - "first_name": "Theodore", - "age": 39, - "last_name": "Warren" - } - }, - { - "model": "earlydating.Profile", - "pk": 182, - "fields": { - "gender": "Male", - "first_name": "Ruben", - "age": 41, - "last_name": "Mills" - } - }, - { - "model": "earlydating.Profile", - "pk": 183, - "fields": { - "gender": "Male", - "first_name": "Jermaine", - "age": 33, - "last_name": "Meyer" - } - }, - { - "model": "earlydating.Profile", - "pk": 184, - "fields": { - "gender": "Male", - "first_name": "Tracy", - "age": 31, - "last_name": "Rice" - } - }, - { - "model": "earlydating.Profile", - "pk": 185, - "fields": { - "gender": "Male", - "first_name": "Edwin", - "age": 28, - "last_name": "Schmidt" - } - }, - { - "model": "earlydating.Profile", - "pk": 186, - "fields": { - "gender": "Male", - "first_name": "Stanley", - "age": 33, - "last_name": "Garza" - } - }, - { - "model": "earlydating.Profile", - "pk": 187, - "fields": { - "gender": "Male", - "first_name": "Melvin", - "age": 31, - "last_name": "Daniels" - } - }, - { - "model": "earlydating.Profile", - "pk": 188, - "fields": { - "gender": "Male", - "first_name": "Howard", - "age": 39, - "last_name": "Ferguson" - } - }, - { - "model": "earlydating.Profile", - "pk": 189, - "fields": { - "gender": "Male", - "first_name": "Mitchell", - "age": 35, - "last_name": "Nichols" - } - }, - { - "model": "earlydating.Profile", - "pk": 190, - "fields": { - "gender": "Male", - "first_name": "Duane", - "age": 21, - "last_name": "Stephens" - } - }, - { - "model": "earlydating.Profile", - "pk": 191, - "fields": { - "gender": "Male", - "first_name": "Trevor", - "age": 40, - "last_name": "Soto" - } - }, - { - "model": "earlydating.Profile", - "pk": 192, - "fields": { - "gender": "Male", - "first_name": "Jeff", - "age": 49, - "last_name": "Weaver" - } - }, - { - "model": "earlydating.Profile", - "pk": 193, - "fields": { - "gender": "Male", - "first_name": "Geoffrey", - "age": 32, - "last_name": "Ryan" - } - }, - { - "model": "earlydating.Profile", - "pk": 194, - "fields": { - "gender": "Male", - "first_name": "Hector", - "age": 36, - "last_name": "Gardner" - } - }, - { - "model": "earlydating.Profile", - "pk": 195, - "fields": { - "gender": "Male", - "first_name": "Terrence", - "age": 47, - "last_name": "Payne" - } - }, - { - "model": "earlydating.Profile", - "pk": 196, - "fields": { - "gender": "Male", - "first_name": "Terrance", - "age": 20, - "last_name": "Grant" - } - }, - { - "model": "earlydating.Profile", - "pk": 197, - "fields": { - "gender": "Male", - "first_name": "Oscar", - "age": 19, - "last_name": "Dunn" - } - }, - { - "model": "earlydating.Profile", - "pk": 198, - "fields": { - "gender": "Male", - "first_name": "Jaime", - "age": 40, - "last_name": "Kelley" - } - }, - { - "model": "earlydating.Profile", - "pk": 199, - "fields": { - "gender": "Male", - "first_name": "Clifford", - "age": 41, - "last_name": "Spencer" - } - }, - { - "model": "earlydating.Profile", - "pk": 200, - "fields": { - "gender": "Male", - "first_name": "Harry", - "age": 34, - "last_name": "Hawkins" - } - }, - { - "model": "earlydating.Profile", - "pk": 201, - "fields": { - "gender": "Female", - "first_name": "Jennifer", - "age": 30, - "last_name": "Arnold" - } - }, - { - "model": "earlydating.Profile", - "pk": 202, - "fields": { - "gender": "Female", - "first_name": "Amy", - "age": 44, - "last_name": "Pierce" - } - }, - { - "model": "earlydating.Profile", - "pk": 203, - "fields": { - "gender": "Female", - "first_name": "Melissa", - "age": 39, - "last_name": "Vazquez" - } - }, - { - "model": "earlydating.Profile", - "pk": 204, - "fields": { - "gender": "Female", - "first_name": "Michelle", - "age": 30, - "last_name": "Hansen" - } - }, - { - "model": "earlydating.Profile", - "pk": 205, - "fields": { - "gender": "Female", - "first_name": "Kimberly", - "age": 18, - "last_name": "Peters" - } - }, - { - "model": "earlydating.Profile", - "pk": 206, - "fields": { - "gender": "Female", - "first_name": "Lisa", - "age": 35, - "last_name": "Santos" - } - }, - { - "model": "earlydating.Profile", - "pk": 207, - "fields": { - "gender": "Female", - "first_name": "Angela", - "age": 23, - "last_name": "Hart" - } - }, - { - "model": "earlydating.Profile", - "pk": 208, - "fields": { - "gender": "Female", - "first_name": "Heather", - "age": 39, - "last_name": "Bradley" - } - }, - { - "model": "earlydating.Profile", - "pk": 209, - "fields": { - "gender": "Female", - "first_name": "Stephanie", - "age": 21, - "last_name": "Knight" - } - }, - { - "model": "earlydating.Profile", - "pk": 210, - "fields": { - "gender": "Female", - "first_name": "Nicole", - "age": 42, - "last_name": "Elliott" - } - }, - { - "model": "earlydating.Profile", - "pk": 211, - "fields": { - "gender": "Female", - "first_name": "Jessica", - "age": 40, - "last_name": "Cunningham" - } - }, - { - "model": "earlydating.Profile", - "pk": 212, - "fields": { - "gender": "Female", - "first_name": "Elizabeth", - "age": 40, - "last_name": "Duncan" - } - }, - { - "model": "earlydating.Profile", - "pk": 213, - "fields": { - "gender": "Female", - "first_name": "Rebecca", - "age": 23, - "last_name": "Armstrong" - } - }, - { - "model": "earlydating.Profile", - "pk": 214, - "fields": { - "gender": "Female", - "first_name": "Kelly", - "age": 18, - "last_name": "Hudson" - } - }, - { - "model": "earlydating.Profile", - "pk": 215, - "fields": { - "gender": "Female", - "first_name": "Mary", - "age": 37, - "last_name": "Carroll" - } - }, - { - "model": "earlydating.Profile", - "pk": 216, - "fields": { - "gender": "Female", - "first_name": "Christina", - "age": 49, - "last_name": "Lane" - } - }, - { - "model": "earlydating.Profile", - "pk": 217, - "fields": { - "gender": "Female", - "first_name": "Amanda", - "age": 32, - "last_name": "Riley" - } - }, - { - "model": "earlydating.Profile", - "pk": 218, - "fields": { - "gender": "Female", - "first_name": "Julie", - "age": 42, - "last_name": "Andrews" - } - }, - { - "model": "earlydating.Profile", - "pk": 219, - "fields": { - "gender": "Female", - "first_name": "Sarah", - "age": 42, - "last_name": "Alvarado" - } - }, - { - "model": "earlydating.Profile", - "pk": 220, - "fields": { - "gender": "Female", - "first_name": "Laura", - "age": 30, - "last_name": "Ray" - } - }, - { - "model": "earlydating.Profile", - "pk": 221, - "fields": { - "gender": "Female", - "first_name": "Shannon", - "age": 45, - "last_name": "Delgado" - } - }, - { - "model": "earlydating.Profile", - "pk": 222, - "fields": { - "gender": "Female", - "first_name": "Christine", - "age": 22, - "last_name": "Berry" - } - }, - { - "model": "earlydating.Profile", - "pk": 223, - "fields": { - "gender": "Female", - "first_name": "Tammy", - "age": 33, - "last_name": "Perkins" - } - }, - { - "model": "earlydating.Profile", - "pk": 224, - "fields": { - "gender": "Female", - "first_name": "Tracy", - "age": 39, - "last_name": "Hoffman" - } - }, - { - "model": "earlydating.Profile", - "pk": 225, - "fields": { - "gender": "Female", - "first_name": "Karen", - "age": 44, - "last_name": "Johnston" - } - }, - { - "model": "earlydating.Profile", - "pk": 226, - "fields": { - "gender": "Female", - "first_name": "Dawn", - "age": 24, - "last_name": "Matthews" - } - }, - { - "model": "earlydating.Profile", - "pk": 227, - "fields": { - "gender": "Female", - "first_name": "Susan", - "age": 24, - "last_name": "Pena" - } - }, - { - "model": "earlydating.Profile", - "pk": 228, - "fields": { - "gender": "Female", - "first_name": "Andrea", - "age": 29, - "last_name": "Richards" - } - }, - { - "model": "earlydating.Profile", - "pk": 229, - "fields": { - "gender": "Female", - "first_name": "Tina", - "age": 50, - "last_name": "Contreras" - } - }, - { - "model": "earlydating.Profile", - "pk": 230, - "fields": { - "gender": "Female", - "first_name": "Patricia", - "age": 43, - "last_name": "Willis" - } - }, - { - "model": "earlydating.Profile", - "pk": 231, - "fields": { - "gender": "Female", - "first_name": "Cynthia", - "age": 36, - "last_name": "Carpenter" - } - }, - { - "model": "earlydating.Profile", - "pk": 232, - "fields": { - "gender": "Female", - "first_name": "Lori", - "age": 19, - "last_name": "Lawrence" - } - }, - { - "model": "earlydating.Profile", - "pk": 233, - "fields": { - "gender": "Female", - "first_name": "Rachel", - "age": 32, - "last_name": "Sandoval" - } - }, - { - "model": "earlydating.Profile", - "pk": 234, - "fields": { - "gender": "Female", - "first_name": "April", - "age": 32, - "last_name": "Guerrero" - } - }, - { - "model": "earlydating.Profile", - "pk": 235, - "fields": { - "gender": "Female", - "first_name": "Maria", - "age": 24, - "last_name": "George" - } - }, - { - "model": "earlydating.Profile", - "pk": 236, - "fields": { - "gender": "Female", - "first_name": "Wendy", - "age": 29, - "last_name": "Chapman" - } - }, - { - "model": "earlydating.Profile", - "pk": 237, - "fields": { - "gender": "Female", - "first_name": "Crystal", - "age": 33, - "last_name": "Rios" - } - }, - { - "model": "earlydating.Profile", - "pk": 238, - "fields": { - "gender": "Female", - "first_name": "Stacy", - "age": 41, - "last_name": "Estrada" - } - }, - { - "model": "earlydating.Profile", - "pk": 239, - "fields": { - "gender": "Female", - "first_name": "Erin", - "age": 25, - "last_name": "Ortega" - } - }, - { - "model": "earlydating.Profile", - "pk": 240, - "fields": { - "gender": "Female", - "first_name": "Jamie", - "age": 32, - "last_name": "Watkins" - } - }, - { - "model": "earlydating.Profile", - "pk": 241, - "fields": { - "gender": "Female", - "first_name": "Carrie", - "age": 42, - "last_name": "Greene" - } - }, - { - "model": "earlydating.Profile", - "pk": 242, - "fields": { - "gender": "Female", - "first_name": "Tiffany", - "age": 18, - "last_name": "Nunez" - } - }, - { - "model": "earlydating.Profile", - "pk": 243, - "fields": { - "gender": "Female", - "first_name": "Tara", - "age": 45, - "last_name": "Wheeler" - } - }, - { - "model": "earlydating.Profile", - "pk": 244, - "fields": { - "gender": "Female", - "first_name": "Sandra", - "age": 29, - "last_name": "Valdez" - } - }, - { - "model": "earlydating.Profile", - "pk": 245, - "fields": { - "gender": "Female", - "first_name": "Monica", - "age": 49, - "last_name": "Harper" - } - }, - { - "model": "earlydating.Profile", - "pk": 246, - "fields": { - "gender": "Female", - "first_name": "Danielle", - "age": 42, - "last_name": "Burke" - } - }, - { - "model": "earlydating.Profile", - "pk": 247, - "fields": { - "gender": "Female", - "first_name": "Stacey", - "age": 22, - "last_name": "Larson" - } - }, - { - "model": "earlydating.Profile", - "pk": 248, - "fields": { - "gender": "Female", - "first_name": "Pamela", - "age": 40, - "last_name": "Santiago" - } - }, - { - "model": "earlydating.Profile", - "pk": 249, - "fields": { - "gender": "Female", - "first_name": "Tonya", - "age": 34, - "last_name": "Maldonado" - } - }, - { - "model": "earlydating.Profile", - "pk": 250, - "fields": { - "gender": "Female", - "first_name": "Sara", - "age": 37, - "last_name": "Morrison" - } - }, - { - "model": "earlydating.Profile", - "pk": 251, - "fields": { - "gender": "Female", - "first_name": "Michele", - "age": 29, - "last_name": "Franklin" - } - }, - { - "model": "earlydating.Profile", - "pk": 252, - "fields": { - "gender": "Female", - "first_name": "Teresa", - "age": 38, - "last_name": "Carlson" - } - }, - { - "model": "earlydating.Profile", - "pk": 253, - "fields": { - "gender": "Female", - "first_name": "Denise", - "age": 26, - "last_name": "Austin" - } - }, - { - "model": "earlydating.Profile", - "pk": 254, - "fields": { - "gender": "Female", - "first_name": "Jill", - "age": 39, - "last_name": "Dominguez" - } - }, - { - "model": "earlydating.Profile", - "pk": 255, - "fields": { - "gender": "Female", - "first_name": "Katherine", - "age": 46, - "last_name": "Carr" - } - }, - { - "model": "earlydating.Profile", - "pk": 256, - "fields": { - "gender": "Female", - "first_name": "Melanie", - "age": 21, - "last_name": "Lawson" - } - }, - { - "model": "earlydating.Profile", - "pk": 257, - "fields": { - "gender": "Female", - "first_name": "Dana", - "age": 35, - "last_name": "Jacobs" - } - }, - { - "model": "earlydating.Profile", - "pk": 258, - "fields": { - "gender": "Female", - "first_name": "Holly", - "age": 43, - "last_name": "Obrien" - } - }, - { - "model": "earlydating.Profile", - "pk": 259, - "fields": { - "gender": "Female", - "first_name": "Erica", - "age": 35, - "last_name": "Lynch" - } - }, - { - "model": "earlydating.Profile", - "pk": 260, - "fields": { - "gender": "Female", - "first_name": "Brenda", - "age": 40, - "last_name": "Singh" - } - }, - { - "model": "earlydating.Profile", - "pk": 261, - "fields": { - "gender": "Female", - "first_name": "Deborah", - "age": 42, - "last_name": "Vega" - } - }, - { - "model": "earlydating.Profile", - "pk": 262, - "fields": { - "gender": "Female", - "first_name": "Tanya", - "age": 29, - "last_name": "Bishop" - } - }, - { - "model": "earlydating.Profile", - "pk": 263, - "fields": { - "gender": "Female", - "first_name": "Sharon", - "age": 38, - "last_name": "Montgomery" - } - }, - { - "model": "earlydating.Profile", - "pk": 264, - "fields": { - "gender": "Female", - "first_name": "Donna", - "age": 31, - "last_name": "Oliver" - } - }, - { - "model": "earlydating.Profile", - "pk": 265, - "fields": { - "gender": "Female", - "first_name": "Amber", - "age": 34, - "last_name": "Jensen" - } - }, - { - "model": "earlydating.Profile", - "pk": 266, - "fields": { - "gender": "Female", - "first_name": "Emily", - "age": 44, - "last_name": "Harvey" - } - }, - { - "model": "earlydating.Profile", - "pk": 267, - "fields": { - "gender": "Female", - "first_name": "Robin", - "age": 28, - "last_name": "Williamson" - } - }, - { - "model": "earlydating.Profile", - "pk": 268, - "fields": { - "gender": "Female", - "first_name": "Linda", - "age": 46, - "last_name": "Gilbert" - } - }, - { - "model": "earlydating.Profile", - "pk": 269, - "fields": { - "gender": "Female", - "first_name": "Kathleen", - "age": 19, - "last_name": "Dean" - } - }, - { - "model": "earlydating.Profile", - "pk": 270, - "fields": { - "gender": "Female", - "first_name": "Leslie", - "age": 40, - "last_name": "Sims" - } - }, - { - "model": "earlydating.Profile", - "pk": 271, - "fields": { - "gender": "Female", - "first_name": "Christy", - "age": 46, - "last_name": "Espinoza" - } - }, - { - "model": "earlydating.Profile", - "pk": 272, - "fields": { - "gender": "Female", - "first_name": "Kristen", - "age": 22, - "last_name": "Howell" - } - }, - { - "model": "earlydating.Profile", - "pk": 273, - "fields": { - "gender": "Female", - "first_name": "Catherine", - "age": 42, - "last_name": "Li" - } - }, - { - "model": "earlydating.Profile", - "pk": 274, - "fields": { - "gender": "Female", - "first_name": "Kristin", - "age": 33, - "last_name": "Wong" - } - }, - { - "model": "earlydating.Profile", - "pk": 275, - "fields": { - "gender": "Female", - "first_name": "Misty", - "age": 18, - "last_name": "Reid" - } - }, - { - "model": "earlydating.Profile", - "pk": 276, - "fields": { - "gender": "Female", - "first_name": "Barbara", - "age": 36, - "last_name": "Hanson" - } - }, - { - "model": "earlydating.Profile", - "pk": 277, - "fields": { - "gender": "Female", - "first_name": "Heidi", - "age": 31, - "last_name": "Le" - } - }, - { - "model": "earlydating.Profile", - "pk": 278, - "fields": { - "gender": "Female", - "first_name": "Nancy", - "age": 41, - "last_name": "Mccoy" - } - }, - { - "model": "earlydating.Profile", - "pk": 279, - "fields": { - "gender": "Female", - "first_name": "Cheryl", - "age": 39, - "last_name": "Garrett" - } - }, - { - "model": "earlydating.Profile", - "pk": 280, - "fields": { - "gender": "Female", - "first_name": "Theresa", - "age": 35, - "last_name": "Burton" - } - }, - { - "model": "earlydating.Profile", - "pk": 281, - "fields": { - "gender": "Female", - "first_name": "Brandy", - "age": 20, - "last_name": "Fuller" - } - }, - { - "model": "earlydating.Profile", - "pk": 282, - "fields": { - "gender": "Female", - "first_name": "Alicia", - "age": 39, - "last_name": "Wang" - } - }, - { - "model": "earlydating.Profile", - "pk": 283, - "fields": { - "gender": "Female", - "first_name": "Veronica", - "age": 48, - "last_name": "Weber" - } - }, - { - "model": "earlydating.Profile", - "pk": 284, - "fields": { - "gender": "Female", - "first_name": "Gina", - "age": 34, - "last_name": "Welch" - } - }, - { - "model": "earlydating.Profile", - "pk": 285, - "fields": { - "gender": "Female", - "first_name": "Jacqueline", - "age": 19, - "last_name": "Rojas" - } - }, - { - "model": "earlydating.Profile", - "pk": 286, - "fields": { - "gender": "Female", - "first_name": "Rhonda", - "age": 43, - "last_name": "Lucas" - } - }, - { - "model": "earlydating.Profile", - "pk": 287, - "fields": { - "gender": "Female", - "first_name": "Anna", - "age": 38, - "last_name": "Marquez" - } - }, - { - "model": "earlydating.Profile", - "pk": 288, - "fields": { - "gender": "Female", - "first_name": "Renee", - "age": 48, - "last_name": "Fields" - } - }, - { - "model": "earlydating.Profile", - "pk": 289, - "fields": { - "gender": "Female", - "first_name": "Megan", - "age": 35, - "last_name": "Park" - } - }, - { - "model": "earlydating.Profile", - "pk": 290, - "fields": { - "gender": "Female", - "first_name": "Tamara", - "age": 36, - "last_name": "Yang" - } - }, - { - "model": "earlydating.Profile", - "pk": 291, - "fields": { - "gender": "Female", - "first_name": "Melinda", - "age": 40, - "last_name": "Little" - } - }, - { - "model": "earlydating.Profile", - "pk": 292, - "fields": { - "gender": "Female", - "first_name": "Kathryn", - "age": 42, - "last_name": "Banks" - } - }, - { - "model": "earlydating.Profile", - "pk": 293, - "fields": { - "gender": "Female", - "first_name": "Debra", - "age": 35, - "last_name": "Padilla" - } - }, - { - "model": "earlydating.Profile", - "pk": 294, - "fields": { - "gender": "Female", - "first_name": "Sherry", - "age": 47, - "last_name": "Day" - } - }, - { - "model": "earlydating.Profile", - "pk": 295, - "fields": { - "gender": "Female", - "first_name": "Allison", - "age": 32, - "last_name": "Walsh" - } - }, - { - "model": "earlydating.Profile", - "pk": 296, - "fields": { - "gender": "Female", - "first_name": "Valerie", - "age": 21, - "last_name": "Bowman" - } - }, - { - "model": "earlydating.Profile", - "pk": 297, - "fields": { - "gender": "Female", - "first_name": "Diana", - "age": 45, - "last_name": "Schultz" - } - }, - { - "model": "earlydating.Profile", - "pk": 298, - "fields": { - "gender": "Female", - "first_name": "Paula", - "age": 37, - "last_name": "Luna" - } - }, - { - "model": "earlydating.Profile", - "pk": 299, - "fields": { - "gender": "Female", - "first_name": "Kristina", - "age": 32, - "last_name": "Fowler" - } - }, - { - "model": "earlydating.Profile", - "pk": 300, - "fields": { - "gender": "Female", - "first_name": "Ann", - "age": 33, - "last_name": "Mejia" - } - }, - { - "model": "earlydating.Profile", - "pk": 301, - "fields": { - "gender": "Female", - "first_name": "Margaret", - "age": 41, - "last_name": "Davidson" - } - }, - { - "model": "earlydating.Profile", - "pk": 302, - "fields": { - "gender": "Female", - "first_name": "Victoria", - "age": 21, - "last_name": "Acosta" - } - }, - { - "model": "earlydating.Profile", - "pk": 303, - "fields": { - "gender": "Female", - "first_name": "Cindy", - "age": 30, - "last_name": "Brewer" - } - }, - { - "model": "earlydating.Profile", - "pk": 304, - "fields": { - "gender": "Female", - "first_name": "Jodi", - "age": 29, - "last_name": "May" - } - }, - { - "model": "earlydating.Profile", - "pk": 305, - "fields": { - "gender": "Female", - "first_name": "Natalie", - "age": 44, - "last_name": "Holland" - } - }, - { - "model": "earlydating.Profile", - "pk": 306, - "fields": { - "gender": "Female", - "first_name": "Brandi", - "age": 31, - "last_name": "Juarez" - } - }, - { - "model": "earlydating.Profile", - "pk": 307, - "fields": { - "gender": "Female", - "first_name": "Suzanne", - "age": 25, - "last_name": "Newman" - } - }, - { - "model": "earlydating.Profile", - "pk": 308, - "fields": { - "gender": "Female", - "first_name": "Kristi", - "age": 40, - "last_name": "Pearson" - } - }, - { - "model": "earlydating.Profile", - "pk": 309, - "fields": { - "gender": "Female", - "first_name": "Samantha", - "age": 50, - "last_name": "Curtis" - } - }, - { - "model": "earlydating.Profile", - "pk": 310, - "fields": { - "gender": "Female", - "first_name": "Beth", - "age": 42, - "last_name": "Cortez" - } - }, - { - "model": "earlydating.Profile", - "pk": 311, - "fields": { - "gender": "Female", - "first_name": "Tracey", - "age": 22, - "last_name": "Douglas" - } - }, - { - "model": "earlydating.Profile", - "pk": 312, - "fields": { - "gender": "Female", - "first_name": "Regina", - "age": 20, - "last_name": "Schneider" - } - }, - { - "model": "earlydating.Profile", - "pk": 313, - "fields": { - "gender": "Female", - "first_name": "Vanessa", - "age": 43, - "last_name": "Joseph" - } - }, - { - "model": "earlydating.Profile", - "pk": 314, - "fields": { - "gender": "Female", - "first_name": "Kristy", - "age": 44, - "last_name": "Barrett" - } - }, - { - "model": "earlydating.Profile", - "pk": 315, - "fields": { - "gender": "Female", - "first_name": "Carolyn", - "age": 20, - "last_name": "Navarro" - } - }, - { - "model": "earlydating.Profile", - "pk": 316, - "fields": { - "gender": "Female", - "first_name": "Yolanda", - "age": 37, - "last_name": "Figueroa" - } - }, - { - "model": "earlydating.Profile", - "pk": 317, - "fields": { - "gender": "Female", - "first_name": "Deanna", - "age": 32, - "last_name": "Keller" - } - }, - { - "model": "earlydating.Profile", - "pk": 318, - "fields": { - "gender": "Female", - "first_name": "Carla", - "age": 48, - "last_name": "Avila" - } - }, - { - "model": "earlydating.Profile", - "pk": 319, - "fields": { - "gender": "Female", - "first_name": "Sheila", - "age": 34, - "last_name": "Wade" - } - }, - { - "model": "earlydating.Profile", - "pk": 320, - "fields": { - "gender": "Female", - "first_name": "Laurie", - "age": 36, - "last_name": "Molina" - } - }, - { - "model": "earlydating.Profile", - "pk": 321, - "fields": { - "gender": "Female", - "first_name": "Anne", - "age": 37, - "last_name": "Stanley" - } - }, - { - "model": "earlydating.Profile", - "pk": 322, - "fields": { - "gender": "Female", - "first_name": "Shelly", - "age": 39, - "last_name": "Hopkins" - } - }, - { - "model": "earlydating.Profile", - "pk": 323, - "fields": { - "gender": "Female", - "first_name": "Diane", - "age": 40, - "last_name": "Campos" - } - }, - { - "model": "earlydating.Profile", - "pk": 324, - "fields": { - "gender": "Female", - "first_name": "Sabrina", - "age": 22, - "last_name": "Barnett" - } - }, - { - "model": "earlydating.Profile", - "pk": 325, - "fields": { - "gender": "Female", - "first_name": "Janet", - "age": 43, - "last_name": "Bates" - } - }, - { - "model": "earlydating.Profile", - "pk": 326, - "fields": { - "gender": "Female", - "first_name": "Erika", - "age": 32, - "last_name": "Chambers" - } - }, - { - "model": "earlydating.Profile", - "pk": 327, - "fields": { - "gender": "Female", - "first_name": "Katrina", - "age": 38, - "last_name": "Caldwell" - } - }, - { - "model": "earlydating.Profile", - "pk": 328, - "fields": { - "gender": "Female", - "first_name": "Courtney", - "age": 40, - "last_name": "Beck" - } - }, - { - "model": "earlydating.Profile", - "pk": 329, - "fields": { - "gender": "Female", - "first_name": "Colleen", - "age": 35, - "last_name": "Lambert" - } - }, - { - "model": "earlydating.Profile", - "pk": 330, - "fields": { - "gender": "Female", - "first_name": "Carol", - "age": 22, - "last_name": "Miranda" - } - }, - { - "model": "earlydating.Profile", - "pk": 331, - "fields": { - "gender": "Female", - "first_name": "Julia", - "age": 31, - "last_name": "Byrd" - } - }, - { - "model": "earlydating.Profile", - "pk": 332, - "fields": { - "gender": "Female", - "first_name": "Jenny", - "age": 25, - "last_name": "Craig" - } - }, - { - "model": "earlydating.Profile", - "pk": 333, - "fields": { - "gender": "Female", - "first_name": "Jaime", - "age": 48, - "last_name": "Ayala" - } - }, - { - "model": "earlydating.Profile", - "pk": 334, - "fields": { - "gender": "Female", - "first_name": "Kathy", - "age": 31, - "last_name": "Lowe" - } - }, - { - "model": "earlydating.Profile", - "pk": 335, - "fields": { - "gender": "Female", - "first_name": "Felicia", - "age": 45, - "last_name": "Frazier" - } - }, - { - "model": "earlydating.Profile", - "pk": 336, - "fields": { - "gender": "Female", - "first_name": "Alison", - "age": 48, - "last_name": "Powers" - } - }, - { - "model": "earlydating.Profile", - "pk": 337, - "fields": { - "gender": "Female", - "first_name": "Lauren", - "age": 20, - "last_name": "Neal" - } - }, - { - "model": "earlydating.Profile", - "pk": 338, - "fields": { - "gender": "Female", - "first_name": "Kelli", - "age": 30, - "last_name": "Leonard" - } - }, - { - "model": "earlydating.Profile", - "pk": 339, - "fields": { - "gender": "Female", - "first_name": "Leah", - "age": 24, - "last_name": "Gregory" - } - }, - { - "model": "earlydating.Profile", - "pk": 340, - "fields": { - "gender": "Female", - "first_name": "Ashley", - "age": 23, - "last_name": "Carrillo" - } - }, - { - "model": "earlydating.Profile", - "pk": 341, - "fields": { - "gender": "Female", - "first_name": "Kim", - "age": 22, - "last_name": "Sutton" - } - }, - { - "model": "earlydating.Profile", - "pk": 342, - "fields": { - "gender": "Female", - "first_name": "Traci", - "age": 25, - "last_name": "Fleming" - } - }, - { - "model": "earlydating.Profile", - "pk": 343, - "fields": { - "gender": "Female", - "first_name": "Kristine", - "age": 42, - "last_name": "Rhodes" - } - }, - { - "model": "earlydating.Profile", - "pk": 344, - "fields": { - "gender": "Female", - "first_name": "Tricia", - "age": 37, - "last_name": "Shelton" - } - }, - { - "model": "earlydating.Profile", - "pk": 345, - "fields": { - "gender": "Female", - "first_name": "Joy", - "age": 38, - "last_name": "Schwartz" - } - }, - { - "model": "earlydating.Profile", - "pk": 346, - "fields": { - "gender": "Female", - "first_name": "Krista", - "age": 24, - "last_name": "Norris" - } - }, - { - "model": "earlydating.Profile", - "pk": 347, - "fields": { - "gender": "Female", - "first_name": "Kara", - "age": 44, - "last_name": "Jennings" - } - }, - { - "model": "earlydating.Profile", - "pk": 348, - "fields": { - "gender": "Female", - "first_name": "Terri", - "age": 24, - "last_name": "Watts" - } - }, - { - "model": "earlydating.Profile", - "pk": 349, - "fields": { - "gender": "Female", - "first_name": "Sonya", - "age": 30, - "last_name": "Duran" - } - }, - { - "model": "earlydating.Profile", - "pk": 350, - "fields": { - "gender": "Female", - "first_name": "Aimee", - "age": 25, - "last_name": "Walters" - } - }, - { - "model": "earlydating.Profile", - "pk": 351, - "fields": { - "gender": "Female", - "first_name": "Natasha", - "age": 39, - "last_name": "Cohen" - } - }, - { - "model": "earlydating.Profile", - "pk": 352, - "fields": { - "gender": "Female", - "first_name": "Cassandra", - "age": 49, - "last_name": "Mcdaniel" - } - }, - { - "model": "earlydating.Profile", - "pk": 353, - "fields": { - "gender": "Female", - "first_name": "Bridget", - "age": 46, - "last_name": "Moran" - } - }, - { - "model": "earlydating.Profile", - "pk": 354, - "fields": { - "gender": "Female", - "first_name": "Anita", - "age": 42, - "last_name": "Parks" - } - }, - { - "model": "earlydating.Profile", - "pk": 355, - "fields": { - "gender": "Female", - "first_name": "Kari", - "age": 24, - "last_name": "Steele" - } - }, - { - "model": "earlydating.Profile", - "pk": 356, - "fields": { - "gender": "Female", - "first_name": "Nichole", - "age": 40, - "last_name": "Vaughn" - } - }, - { - "model": "earlydating.Profile", - "pk": 357, - "fields": { - "gender": "Female", - "first_name": "Christie", - "age": 20, - "last_name": "Becker" - } - }, - { - "model": "earlydating.Profile", - "pk": 358, - "fields": { - "gender": "Female", - "first_name": "Marie", - "age": 41, - "last_name": "Holt" - } - }, - { - "model": "earlydating.Profile", - "pk": 359, - "fields": { - "gender": "Female", - "first_name": "Virginia", - "age": 43, - "last_name": "Deleon" - } - }, - { - "model": "earlydating.Profile", - "pk": 360, - "fields": { - "gender": "Female", - "first_name": "Connie", - "age": 26, - "last_name": "Barker" - } - }, - { - "model": "earlydating.Profile", - "pk": 361, - "fields": { - "gender": "Female", - "first_name": "Martha", - "age": 27, - "last_name": "Terry" - } - }, - { - "model": "earlydating.Profile", - "pk": 362, - "fields": { - "gender": "Female", - "first_name": "Carmen", - "age": 33, - "last_name": "Hale" - } - }, - { - "model": "earlydating.Profile", - "pk": 363, - "fields": { - "gender": "Female", - "first_name": "Stacie", - "age": 38, - "last_name": "Leon" - } - }, - { - "model": "earlydating.Profile", - "pk": 364, - "fields": { - "gender": "Female", - "first_name": "Lynn", - "age": 35, - "last_name": "Hail" - } - }, - { - "model": "earlydating.Profile", - "pk": 365, - "fields": { - "gender": "Female", - "first_name": "Katie", - "age": 23, - "last_name": "Benson" - } - }, - { - "model": "earlydating.Profile", - "pk": 366, - "fields": { - "gender": "Female", - "first_name": "Monique", - "age": 38, - "last_name": "Haynes" - } - }, - { - "model": "earlydating.Profile", - "pk": 367, - "fields": { - "gender": "Female", - "first_name": "Kristie", - "age": 37, - "last_name": "Horton" - } - }, - { - "model": "earlydating.Profile", - "pk": 368, - "fields": { - "gender": "Female", - "first_name": "Shelley", - "age": 21, - "last_name": "Miles" - } - }, - { - "model": "earlydating.Profile", - "pk": 369, - "fields": { - "gender": "Female", - "first_name": "Sherri", - "age": 47, - "last_name": "Lyons" - } - }, - { - "model": "earlydating.Profile", - "pk": 370, - "fields": { - "gender": "Female", - "first_name": "Angel", - "age": 46, - "last_name": "Pham" - } - }, - { - "model": "earlydating.Profile", - "pk": 371, - "fields": { - "gender": "Female", - "first_name": "Bonnie", - "age": 43, - "last_name": "Graves" - } - }, - { - "model": "earlydating.Profile", - "pk": 372, - "fields": { - "gender": "Female", - "first_name": "Mandy", - "age": 25, - "last_name": "Bush" - } - }, - { - "model": "earlydating.Profile", - "pk": 373, - "fields": { - "gender": "Female", - "first_name": "Jody", - "age": 44, - "last_name": "Thornton" - } - }, - { - "model": "earlydating.Profile", - "pk": 374, - "fields": { - "gender": "Female", - "first_name": "Shawna", - "age": 28, - "last_name": "Wolfe" - } - }, - { - "model": "earlydating.Profile", - "pk": 375, - "fields": { - "gender": "Female", - "first_name": "Kerry", - "age": 18, - "last_name": "Warner" - } - }, - { - "model": "earlydating.Profile", - "pk": 376, - "fields": { - "gender": "Female", - "first_name": "Annette", - "age": 30, - "last_name": "Cabrera" - } - }, - { - "model": "earlydating.Profile", - "pk": 377, - "fields": { - "gender": "Female", - "first_name": "Yvonne", - "age": 28, - "last_name": "Mckinney" - } - }, - { - "model": "earlydating.Profile", - "pk": 378, - "fields": { - "gender": "Female", - "first_name": "Toni", - "age": 38, - "last_name": "Mann" - } - }, - { - "model": "earlydating.Profile", - "pk": 379, - "fields": { - "gender": "Female", - "first_name": "Meredith", - "age": 31, - "last_name": "Zimmerman" - } - }, - { - "model": "earlydating.Profile", - "pk": 380, - "fields": { - "gender": "Female", - "first_name": "Molly", - "age": 33, - "last_name": "Dawson" - } - }, - { - "model": "earlydating.Profile", - "pk": 381, - "fields": { - "gender": "Female", - "first_name": "Kendra", - "age": 18, - "last_name": "Lara" - } - }, - { - "model": "earlydating.Profile", - "pk": 382, - "fields": { - "gender": "Female", - "first_name": "Joanna", - "age": 21, - "last_name": "Fletcher" - } - }, - { - "model": "earlydating.Profile", - "pk": 383, - "fields": { - "gender": "Female", - "first_name": "Sonia", - "age": 47, - "last_name": "Page" - } - }, - { - "model": "earlydating.Profile", - "pk": 384, - "fields": { - "gender": "Female", - "first_name": "Janice", - "age": 23, - "last_name": "Mccarthy" - } - }, - { - "model": "earlydating.Profile", - "pk": 385, - "fields": { - "gender": "Female", - "first_name": "Robyn", - "age": 20, - "last_name": "Love" - } - }, - { - "model": "earlydating.Profile", - "pk": 386, - "fields": { - "gender": "Female", - "first_name": "Brooke", - "age": 42, - "last_name": "Robles" - } - }, - { - "model": "earlydating.Profile", - "pk": 387, - "fields": { - "gender": "Female", - "first_name": "Kerri", - "age": 48, - "last_name": "Cervantes" - } - }, - { - "model": "earlydating.Profile", - "pk": 388, - "fields": { - "gender": "Female", - "first_name": "Sheri", - "age": 35, - "last_name": "Solis" - } - }, - { - "model": "earlydating.Profile", - "pk": 389, - "fields": { - "gender": "Female", - "first_name": "Becky", - "age": 35, - "last_name": "Erickson" - } - }, - { - "model": "earlydating.Profile", - "pk": 390, - "fields": { - "gender": "Female", - "first_name": "Gloria", - "age": 42, - "last_name": "Reeves" - } - }, - { - "model": "earlydating.Profile", - "pk": 391, - "fields": { - "gender": "Female", - "first_name": "Mindy", - "age": 41, - "last_name": "Chang" - } - }, - { - "model": "earlydating.Profile", - "pk": 392, - "fields": { - "gender": "Female", - "first_name": "Tracie", - "age": 43, - "last_name": "Klein" - } - }, - { - "model": "earlydating.Profile", - "pk": 393, - "fields": { - "gender": "Female", - "first_name": "Angie", - "age": 49, - "last_name": "Salinas" - } - }, - { - "model": "earlydating.Profile", - "pk": 394, - "fields": { - "gender": "Female", - "first_name": "Kellie", - "age": 44, - "last_name": "Fuentes" - } - }, - { - "model": "earlydating.Profile", - "pk": 395, - "fields": { - "gender": "Female", - "first_name": "Claudia", - "age": 40, - "last_name": "Baldwin" - } - }, - { - "model": "earlydating.Profile", - "pk": 396, - "fields": { - "gender": "Female", - "first_name": "Ruth", - "age": 44, - "last_name": "Daniel" - } - }, - { - "model": "earlydating.Profile", - "pk": 397, - "fields": { - "gender": "Female", - "first_name": "Wanda", - "age": 49, - "last_name": "Simon" - } - }, - { - "model": "earlydating.Profile", - "pk": 398, - "fields": { - "gender": "Female", - "first_name": "Jeanette", - "age": 30, - "last_name": "Velasquez" - } - }, - { - "model": "earlydating.Profile", - "pk": 399, - "fields": { - "gender": "Female", - "first_name": "Cathy", - "age": 37, - "last_name": "Hardy" - } - }, - { - "model": "earlydating.Profile", - "pk": 400, - "fields": { - "gender": "Female", - "first_name": "Adrienne", - "age": 30, - "last_name": "Higgins" - } - } -] \ No newline at end of file diff --git a/proud-puffins/djangoProject/tools/user_gen.py b/proud-puffins/djangoProject/tools/user_gen.py deleted file mode 100644 index fa6312d71..000000000 --- a/proud-puffins/djangoProject/tools/user_gen.py +++ /dev/null @@ -1,70 +0,0 @@ -from numpy.random import choice -from random import choice as c2 -from random import randint, getrandbits -import json -import sys - -password = ( - "pbkdf2_sha256$180000$rIY0NVmswzaj$CHEAdXxSdOcKF6m1McG51wWWNrJ6Ynl6nGLxEnhqqoA=" -) - - -MG = ["Male", "Other"] -FG = ["Female", "Other"] - -PREF = ["straight", "gay", "bisexual"] - -with open("raw.json", "r") as f: - raw = json.load(f) - - -def email_gen(row): - first = row["fields"]["first_name"] - last = row["fields"]["last_name"] - first = first.title() if booler() else first - last = last.title() if booler() else last - domains = ["aol", "msn", "hotmail"] - separator = ["_", ""] - num = randint(1, 999) - return f"{first}{c2(separator)}{last}{num}@{c2(domains)}.com" - - -def genusers(): - for row in raw: - del row["fields"]["age"] - del row["fields"]["gender"] - row["pk"] += 1 - row["model"] = "auth.user" - row["fields"][ - "username" - ] = f"{row['fields']['first_name']} {row['fields']['last_name']}" - row["fields"]["password"] = password - row["fields"]["email"] = email_gen(row) - with open("users.json", "w") as f: - json.dump(raw, f, indent=4) - - -def genprofiles(): - for ind, row in enumerate(raw): - if ind < 200: - row["fields"]["sex"] = "Male" - row["fields"]["preference"] = PREF[choice(3, 1, p=[0.6, 0.2, 0.2])[0]] - else: - row["fields"]["sex"] = "Female" - row["fields"]["preference"] = PREF[choice(3, 1, p=[0.6, 0.2, 0.2])[0]] - del row["fields"]["first_name"] - del row["fields"]["last_name"] - del row["fields"]["gender"] - row["pk"] += 1 - row["fields"]["user"] = row["pk"] - with open("profiles.json", "w") as f: - json.dump(raw, f, indent=4) - - -if __name__ == "__main__": - if sys.argv[1] == "-u": - genusers() - elif sys.argv[1] == "-p": - genprofiles() - else: - print("Use -u or -p") diff --git a/proud-puffins/requirements-dev.txt b/proud-puffins/requirements-dev.txt deleted file mode 100644 index 0115ccc8e..000000000 --- a/proud-puffins/requirements-dev.txt +++ /dev/null @@ -1,2 +0,0 @@ -pre-commit -numpy