<?xml version="1.0" encoding="utf-8"?>
<!-- If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/ -->
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:lj="http://www.livejournal.com">
  <id>urn:lj:livejournal.com:atom1:adaptivesystems</id>
  <title>Aren't we all just computer programs?</title>
  <subtitle>Aren't we all just computer programs?</subtitle>
  <author>
    <name>adaptivesystems</name>
  </author>
  <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/"/>
  <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom"/>
  <updated>2005-02-09T02:47:16Z</updated>
  <lj:journal userid="5797911" username="adaptivesystems" type="personal"/>
  <link rel="service.feed" type="application/x.atom+xml" href="http://adaptivesystems.livejournal.com/data/atom" title="Aren't we all just computer programs?"/>
  <link rel="hub" href="http://pubsubhubbub.appspot.com/"/>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:279506</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/279506.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=279506"/>
    <title>Catharsis</title>
    <published>2005-02-09T02:45:33Z</published>
    <updated>2005-02-09T02:47:16Z</updated>
    <content type="html">libGrouphug.py:
&lt;pre&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; string&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; httplib&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; sgmlStripper&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;def&lt;/b&gt;&lt;/span&gt; getRandomGrouphug():&lt;br&gt;        &lt;span style="color: rgb(17, 85, 17);"&gt;&lt;/span&gt;
        connection = httplib.HTTPConnection(&lt;span style="color: rgb(17, 85, 17);"&gt;"grouphug.us"&lt;/span&gt;)&lt;br&gt;        connection.request(&lt;span style="color: rgb(17, 85, 17);"&gt;"GET"&lt;/span&gt;,&lt;span style="color: rgb(17, 85, 17);"&gt;"/random"&lt;/span&gt;)&lt;br&gt;        response = connection.getresponse()&lt;br&gt;        data = response.read()&lt;br&gt;&lt;br&gt;        startPos = string.find(data,&lt;span style="color: rgb(17, 85, 17);"&gt;'&amp;lt;td class=\"conf-text\"&amp;gt;'&lt;/span&gt;) + 22&lt;br&gt;        data = data[startPos:]&lt;br&gt;        endPos = string.find(data,&lt;span style="color: rgb(17, 85, 17);"&gt;'&amp;lt;/td&amp;gt;'&lt;/span&gt;)&lt;br&gt;        data = data[:endPos]&lt;br&gt;&lt;br&gt;        stripper = sgmlStripper.Stripper()&lt;br&gt;&lt;br&gt;        &lt;span style="color: rgb(17, 17, 204);"&gt;##warning, two different strip functions here&lt;/span&gt;

        &lt;span style="color: rgb(17, 17, 204);"&gt;#Note, this is a strip function from sgmlStripper to strip tags&lt;/span&gt;
        hug = stripper.strip(data)

        &lt;span style="color: rgb(17, 17, 204);"&gt;#this is the strip from string to strip beginning and trailing whitespace&lt;/span&gt;
        hug = string.strip(hug)

        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;return&lt;/b&gt;&lt;/span&gt; hug;&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;if&lt;/b&gt;&lt;/span&gt; __name__ == &lt;span style="color: rgb(17, 85, 17);"&gt;'__main__'&lt;/span&gt;:&lt;br&gt;        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;print&lt;/b&gt;&lt;/span&gt; getRandomGrouphug()&lt;br&gt;&lt;/pre&gt;
          
&lt;br&gt;&lt;br&gt;&lt;br&gt;
ljPoster.py:

&lt;pre&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; time&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; urllib&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; urllib2&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;class&lt;/b&gt;&lt;/span&gt; ljPoster:&lt;br&gt;        &lt;span style="color: rgb(17, 85, 17);"&gt;"""class to create an object that can log into and post on Livejournal.com and other sites which use&lt;br&gt;           the same code such as Deadjournal.com"""&lt;/span&gt;
        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;def&lt;/b&gt;&lt;/span&gt; __init__(self,username,password,server=&lt;span style="color: rgb(17, 85, 17);"&gt;"http://www.livejournal.com"&lt;/span&gt;):&lt;br&gt;                &lt;span style="color: rgb(17, 85, 17);"&gt;"""constructor requires username and password"""&lt;/span&gt;
                self.username = username
                self.password = password
                self.server = server

        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;def&lt;/b&gt;&lt;/span&gt; post(self,subject,body):&lt;br&gt;                &lt;span style="color: rgb(17, 85, 17);"&gt;"""Post to livejournal"""&lt;/span&gt;
                &lt;span style="color: rgb(17, 17, 204);"&gt;#subject may only be 255 chars&lt;/span&gt;
                subject = subject[:255]

                &lt;span style="color: rgb(17, 17, 204);"&gt;#lets get the date in the tuple since LJ.com wants the local date or they won't post&lt;/span&gt;
                dateTuple = time.localtime()

                &lt;span style="color: rgb(17, 17, 204);"&gt;#lets create a dict&lt;/span&gt;
                self.ljRequest = { &lt;span style="color: rgb(17, 85, 17);"&gt;'user'&lt;/span&gt;:self.username,&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'password'&lt;/span&gt;:self.password,&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'mode'&lt;/span&gt;:&lt;span style="color: rgb(17, 85, 17);"&gt;"postevent"&lt;/span&gt;,&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'lineendings'&lt;/span&gt;:&lt;span style="color: rgb(17, 85, 17);"&gt;'\n'&lt;/span&gt;,&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'subject'&lt;/span&gt;:subject,&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'event'&lt;/span&gt;:body,&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'year'&lt;/span&gt;:dateTuple[0],&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'mon'&lt;/span&gt;:dateTuple[1],&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'day'&lt;/span&gt;:dateTuple[2],&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'hour'&lt;/span&gt;:dateTuple[3],&lt;br&gt;                                                   &lt;span style="color: rgb(17, 85, 17);"&gt;'min'&lt;/span&gt;:dateTuple[4]&lt;br&gt;                                                   }&lt;br&gt;                &lt;span style="color: rgb(17, 17, 204);"&gt;#doing the actual posting&lt;/span&gt;
                data = urllib.urlencode(self.ljRequest)
                post = urllib2.urlopen(&lt;span style="color: rgb(17, 85, 17);"&gt;"http://www.livejournal.com/interface/flat"&lt;/span&gt;,data)&lt;br&gt;                &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;return&lt;/b&gt;&lt;/span&gt; post&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;if&lt;/b&gt;&lt;/span&gt; __name__ == &lt;span style="color: rgb(17, 85, 17);"&gt;"__main__"&lt;/span&gt;:&lt;br&gt;        &lt;span style="color: rgb(17, 85, 17);"&gt;"""user should never invoke this as __main__ ..."""&lt;/span&gt;
        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;print&lt;/b&gt;&lt;/span&gt; &lt;span style="color: rgb(17, 85, 17);"&gt;"This is a library"&lt;/span&gt;
&lt;/pre&gt;
            
&lt;br&gt;&lt;br&gt;&lt;br&gt;
sgmlStripper.py:

                  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 204);"&gt;#SGML stripper class, inherited from SGMLParser&lt;/span&gt;

&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; sgmllib&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;class&lt;/b&gt;&lt;/span&gt; Stripper(sgmllib.SGMLParser):&lt;br&gt;&lt;br&gt;        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;def&lt;/b&gt;&lt;/span&gt; __init__(self):&lt;br&gt;             sgmllib.SGMLParser.__init__(self)&lt;br&gt;&lt;br&gt;        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;def&lt;/b&gt;&lt;/span&gt; strip(self, some_html):&lt;br&gt;                 &lt;span style="color: rgb(17, 85, 17);"&gt;"""Given a SGML/HTML string, strip tags"""&lt;/span&gt;
                 self.theString = &lt;span style="color: rgb(17, 85, 17);"&gt;""&lt;/span&gt;
                 self.feed(some_html)
                 self.close()
                 &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;return&lt;/b&gt;&lt;/span&gt; self.theString&lt;br&gt;&lt;br&gt;        &lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;def&lt;/b&gt;&lt;/span&gt; handle_data(self, data):&lt;br&gt;                &lt;span style="color: rgb(17, 85, 17);"&gt;"""Given a string, append to Stripper object's current data"""&lt;/span&gt;
                self.theString += data

&lt;/pre&gt;
                  
                  
                  &lt;br&gt;&lt;br&gt;&lt;br&gt;

adaptiveSystems.py:

&lt;pre&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; libGrouphug&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; ljPoster&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; time&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;import&lt;/b&gt;&lt;/span&gt; random&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(17, 85, 17);"&gt;"""Create a livejournal robot"""&lt;/span&gt;
&lt;span style="color: rgb(17, 17, 204);"&gt;#paste your LJ login info here&lt;/span&gt;
myLivejournal = ljPoster.ljPoster(&lt;span style="color: rgb(17, 85, 17);"&gt;"AdaptiveSystems"&lt;/span&gt;,&lt;span style="color: rgb(17, 85, 17);"&gt;"mypassword"&lt;/span&gt;)&lt;br&gt;&lt;br&gt;&lt;span style="color: rgb(51, 51, 204);"&gt;&lt;b&gt;while&lt;/b&gt;&lt;/span&gt; (1):&lt;br&gt;        myLivejournal.post(&lt;span style="color: rgb(17, 85, 17);"&gt;" "&lt;/span&gt;,libGrouphug.getRandomGrouphug())&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;          &lt;/pre&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:279157</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/279157.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=279157"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:52Z</published>
    <updated>2005-02-08T20:13:52Z</updated>
    <content type="html">I used to order CD's from columbia house and bmg using vacant addresses and fake names so I wouldn't have to pay.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:278801</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/278801.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=278801"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:51Z</published>
    <updated>2005-02-08T20:13:51Z</updated>
    <content type="html">when i was driving around a few days ago i was backing up and barely hit this van. i got out and looked at the damage. no body damage just some scratches. so i left without telling anyone</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:278544</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/278544.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=278544"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:49Z</published>
    <updated>2005-02-08T20:13:49Z</updated>
    <content type="html">ok confession....&lt;br /&gt;i used a marker to draw onto my chinese teacher's when she walks by my desk...but she nv knew...</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:278391</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/278391.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=278391"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:48Z</published>
    <updated>2005-02-08T20:13:48Z</updated>
    <content type="html">I stole a book from WH Smiths. I could easily afford it but there was no-one watching and they'd just bagged some 14 year-old moron for trying to leave the store with CD's with tags attached (beep!-beep!-beep!) and I figured there was no way they were looking at a 35 year-old guy in a business suit...</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:278125</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/278125.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=278125"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:46Z</published>
    <updated>2005-02-08T20:13:46Z</updated>
    <content type="html">when i was in 7th grade this girl died in a car accident and my friend and i would go to the room where everyone wrote poems to the girl just to get out of class</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:277891</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/277891.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=277891"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:44Z</published>
    <updated>2005-02-08T20:13:44Z</updated>
    <content type="html">I've been with my girlfriend for nearly 3 years, I love her and want to marry her but I've got this strange compulsion to have sex with an older woman before the end of the year.  Just once.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:277517</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/277517.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=277517"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:42Z</published>
    <updated>2005-02-08T20:13:42Z</updated>
    <content type="html">i have a strange obsession with eds mom</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:277281</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/277281.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=277281"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:41Z</published>
    <updated>2005-02-08T20:13:41Z</updated>
    <content type="html">i?m not as happy as my friend think i am. and i really miss to have someone to hold hands with.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:277080</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/277080.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=277080"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:39Z</published>
    <updated>2005-02-08T20:13:39Z</updated>
    <content type="html">i have to confess so much i dunno where to begin.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:276841</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/276841.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=276841"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:38Z</published>
    <updated>2005-02-08T20:13:38Z</updated>
    <content type="html">i can only talk to people when i'm drunk. i can't remember the last time i went to sleep sober.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:276657</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/276657.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=276657"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:37Z</published>
    <updated>2005-02-08T20:13:37Z</updated>
    <content type="html">I was pregnant and miscarried without telling my boyfriend...</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:276283</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/276283.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=276283"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:35Z</published>
    <updated>2005-02-08T20:13:35Z</updated>
    <content type="html">i harbor feelings of discontent towards people that don't know what a confession is.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:275970</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/275970.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=275970"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:34Z</published>
    <updated>2005-02-08T20:13:34Z</updated>
    <content type="html">I was tutoring some 8th graders and one of them kept challenging me. Somehow I just blurted out, "Don't fuck with me." I still can't believe I said that. I didn't apologize, either. Actually, he's been behaving a lot better since then, but I still feel guilty about it.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:275915</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/275915.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=275915"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:34Z</published>
    <updated>2005-02-08T20:13:34Z</updated>
    <content type="html">I once hacked into a churches website and slaped "|-|@X0RED" in bold across the front...&lt;br /&gt;&lt;br /&gt;...along with a dirty photo of the priest.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:275706</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/275706.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=275706"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:33Z</published>
    <updated>2005-02-08T20:13:33Z</updated>
    <content type="html">I brought home my boyfriend for the holidays.  My parents hated him.  Actually told me NEVER to see him again.  He's black.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:275248</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/275248.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=275248"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:32Z</published>
    <updated>2005-02-08T20:13:32Z</updated>
    <content type="html">I'm a teacher.  Once, a student left her wallet on the floor in my room.  I opened it and found $80, which I took.  She came back later that day and asked if I had seen the wallet.  I handed it to her, and said that another student found it on the floor.  She saw that her money was gone, and started to cry.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:274959</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/274959.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=274959"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:31Z</published>
    <updated>2005-02-08T20:13:31Z</updated>
    <content type="html">I can't believe i finally did it. I finally had sex with a girl that I have always thought was the most beautiful girl on earth. The only problem is that i promised myself that i would hold myself pure until I married. I really don't know how it all happened either. We were so crazy about each other for that one week. I guess usually people would call it a "one night stand" or something. But it wasn't just one of those. It was my first time. I found myself wondering if she was being for real or if she wasn't. I kept on being so self concious i really - I dunno. I can't describe it, I still have so many feelings for her, and i can't do anything about it because she lives so far away. I miss her so much I can hardly keep these tears back. Now i know what it is like to be attached forever. I still want to be pure for my one-day wife, but now there is always going to be that "one time" that I'm going to have to tell her about when we talk about getting married. Just like I am writing now. I hope she understands.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:274938</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/274938.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=274938"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:29Z</published>
    <updated>2005-02-08T20:13:29Z</updated>
    <content type="html">when i was young my grandfather had this little mexican dog named Buddy. He loved the dog so much and he had him for over fifteen years.  I used to hate the dog and i would beat him constantly just because he was  annoying me.  Sometimes I would put liqour in his doggy bowl.  Then one day I was practicing shooting my dads rifle and buddy was outside.  I used him for target practice and I did pretty good because i killed the little shit deader than  a doornail. I never told my grandpa and he took a long time to get over it.  He was such a fucking pussy.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:274463</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/274463.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=274463"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:28Z</published>
    <updated>2005-02-08T20:13:28Z</updated>
    <content type="html">I am in love with a guy from my Earth and Space Sciences class. I'm too shy to talk to him and will never get past staring at him wistfully from a few seats away.&lt;br /&gt;I've become extremely insecure since my last boyfriend dumped me and I'm afraid I will never have a boyfriend again.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:274428</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/274428.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=274428"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:26Z</published>
    <updated>2005-02-08T20:13:26Z</updated>
    <content type="html">I consistently pretend I don?t know what going to happen when my ex calls and asks me to hang out.  I also pretend he doesn?t have a boyfriend.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:273996</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/273996.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=273996"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:25Z</published>
    <updated>2005-02-08T20:13:25Z</updated>
    <content type="html">When someone pisses me off, I become obsessed and consumed by my hatred for them. It is really crippling. I will spend hours at work just looking them up on the internet trying to find as much information on them as possible, and I won't get anything else done all day. What I do with all this information I acquire? Nothing. Just sit around and hate them even more, wishing zits and scars on them. I know that I am only wasting my own time and that this person doesn't care enough about me to hate me back, but I can't stop stalking her. I can barely even remember why I hate her so much to begin with.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:273722</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/273722.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=273722"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:24Z</published>
    <updated>2005-02-08T20:13:24Z</updated>
    <content type="html">When I was 15 and living at a boarding school, there was a huge spider in my bathroom. I was afraid to shower and go to class so I stayed in my room all day. Eventually I had to pee but was still scared of the spider, so I pissed inside an empty apple juice container and quickly poured it down the sink. My roommate later figured out what I did and laughed.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:273443</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/273443.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=273443"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:22Z</published>
    <updated>2005-02-08T20:13:22Z</updated>
    <content type="html">I fancy my dead friends sister.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:adaptivesystems:273342</id>
    <link rel="alternate" type="text/html" href="http://adaptivesystems.livejournal.com/273342.html"/>
    <link rel="self" type="text/xml" href="http://adaptivesystems.livejournal.com/data/atom/?itemid=273342"/>
    <title>adaptivesystems @ 2005-02-08T14:14:00</title>
    <published>2005-02-08T20:13:21Z</published>
    <updated>2005-02-08T20:13:21Z</updated>
    <content type="html">i have stolen from my friends lots of times, usually to pay for drugs</content>
  </entry>
</feed>
