<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Who are you?</title>
		<link>http://www.allegro.cc/forums/view/509845</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Thu, 21 Jul 2005 06:39:20 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>People are used to talk about allegro conventions that unfortunately are too hard to organise. I am curious about who the people around here are. For 95 % of them I would say I only know them by nickname. </p><p>The interest for an allegro convention shows that people are also interested in the people behind the nicknames. I know there are lots of you who love it to stay anonymous, and it is your good right to do that, but for the rest it would be interesting if you could post some pictures of you and your city you live in. I will do that as well when I get my new data cable for my digi cam.</p><p>edit: While waiting for your posts: I can&#39;t figure out why that doesn&#39;t work!
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td>       <span class="k1">int</span> sedateTileset<span class="k2">(</span> <span class="k1">char</span> <span class="k3">*</span>filename <span class="k2">)</span></td></tr><tr><td class="number">2</td><td>       <span class="k2">{</span></td></tr><tr><td class="number">3</td><td>           <span class="c">// Maybe it'll be useful to change these later on</span></td></tr><tr><td class="number">4</td><td>           <span class="p">#define TILEW 32</span></td></tr><tr><td class="number">5</td><td>           <span class="p">#define TILEH 32</span></td></tr><tr><td class="number">6</td><td>           <span class="c">// Let us use the standard Allegro functions for processing since</span></td></tr><tr><td class="number">7</td><td>           <span class="c">// these are easier to use and in the next step convert these to</span></td></tr><tr><td class="number">8</td><td>           <span class="c">// the Bitmap format OpenGL uses</span></td></tr><tr><td class="number">9</td><td>           <a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a> <span class="k3">*</span>bmp, <span class="k3">*</span>cutout<span class="k2">;</span></td></tr><tr><td class="number">10</td><td>           <span class="c">// Even if we don't use a palette we should declare one</span></td></tr><tr><td class="number">11</td><td>           <a href="http://www.allegro.cc/manual/PALETTE" target="_blank"><span class="a">PALETTE</span></a> pal<span class="k2">;</span> </td></tr><tr><td class="number">12</td><td>           <span class="c">// use a counter to store the tiles. More control and preventing</span></td></tr><tr><td class="number">13</td><td>           <span class="c">// getting over the size of the tileset      </span></td></tr><tr><td class="number">14</td><td>           <span class="k1">int</span> count<span class="k3">=</span><span class="n">0</span><span class="k2">;</span>          </td></tr><tr><td class="number">15</td><td>          </td></tr><tr><td class="number">16</td><td>           <span class="c">// let allegro choose which method to use - more work safe ;)</span></td></tr><tr><td class="number">17</td><td>           bmp <span class="k3">=</span> <a href="http://www.allegro.cc/manual/load_bitmap" target="_blank"><span class="a">load_bitmap</span></a><span class="k2">(</span> filename, pal <span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">18</td><td>  </td></tr><tr><td class="number">19</td><td>           <span class="c">// use memory bitmap to process faster</span></td></tr><tr><td class="number">20</td><td>           <span class="c">// WARNING: POTENTIAL ERROR SOURCE!</span></td></tr><tr><td class="number">21</td><td>           cutout <span class="k3">=</span> <a href="http://www.allegro.cc/manual/create_bitmap" target="_blank"><span class="a">create_bitmap</span></a><span class="k2">(</span> TILEW, TILEH <span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">22</td><td>    </td></tr><tr><td class="number">23</td><td>           <span class="c">// Cutting out tile by tile</span></td></tr><tr><td class="number">24</td><td>           <span class="k1">for</span><span class="k2">(</span> <span class="k1">int</span> x<span class="k3">=</span><span class="n">0</span><span class="k2">;</span> x<span class="k3">&lt;</span>bmp-&gt;w<span class="k2">;</span> x<span class="k3">+</span><span class="k3">=</span>TILEW <span class="k2">)</span></td></tr><tr><td class="number">25</td><td>           <span class="k1">for</span><span class="k2">(</span> <span class="k1">int</span> y<span class="k3">=</span><span class="n">0</span><span class="k2">;</span> y<span class="k3">&lt;</span>bmp-&gt;h<span class="k2">;</span> y<span class="k3">+</span><span class="k3">=</span>TILEH <span class="k2">)</span></td></tr><tr><td class="number">26</td><td>           <span class="c">// as long as there is space left, fill the set</span></td></tr><tr><td class="number">27</td><td>           <span class="k1">if</span><span class="k2">(</span> count <span class="k3">&lt;</span> SIZE_TILESET <span class="k2">)</span></td></tr><tr><td class="number">28</td><td>           <span class="k2">{</span>                  </td></tr><tr><td class="number">29</td><td>                <span class="c">// from x, y to the temporary bitmap...</span></td></tr><tr><td class="number">30</td><td>                <a href="http://www.allegro.cc/manual/blit" target="_blank"><span class="a">blit</span></a><span class="k2">(</span> bmp, cutout, x, y, <span class="n">0</span>, <span class="n">0</span>, TILEW, TILEH <span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">31</td><td>                </td></tr><tr><td class="number">32</td><td>                <span class="p">#ifdef SETRECTSINTS</span></td></tr><tr><td class="number">33</td><td>                 <a href="http://www.allegro.cc/manual/rect" target="_blank"><span class="a">rect</span></a><span class="k2">(</span>bmp,<span class="n">0</span>,<span class="n">0</span>,TILEW-1,TILEH-1, <a href="http://www.allegro.cc/manual/makecol" target="_blank"><span class="a">makecol</span></a><span class="k2">(</span><span class="n">255</span>,<span class="n">0</span>,<span class="n">0</span><span class="k2">)</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">34</td><td>                <span class="p">#endif</span></td></tr><tr><td class="number">35</td><td>                </td></tr><tr><td class="number">36</td><td>                <span class="c">// ...and convert:</span></td></tr><tr><td class="number">37</td><td>                cTileset<span class="k2">[</span>count<span class="k2">]</span>.bmpBmp.Load<span class="k2">(</span> cutout <span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">38</td><td>                <span class="c">// forward the counter</span></td></tr><tr><td class="number">39</td><td>                count<span class="k3">+</span><span class="k3">+</span><span class="k2">;</span>     </td></tr><tr><td class="number">40</td><td>           <span class="k2">}</span></td></tr><tr><td class="number">41</td><td>        </td></tr><tr><td class="number">42</td><td>           <span class="c">// now free the memory of  the temporary bitmaps</span></td></tr><tr><td class="number">43</td><td>           <a href="http://www.allegro.cc/manual/destroy_bitmap" target="_blank"><span class="a">destroy_bitmap</span></a><span class="k2">(</span> bmp <span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">44</td><td>           <a href="http://www.allegro.cc/manual/destroy_bitmap" target="_blank"><span class="a">destroy_bitmap</span></a><span class="k2">(</span> cutout <span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">45</td><td>           </td></tr><tr><td class="number">46</td><td>           <span class="k1">return</span> NULLONSUCCESS<span class="k2">;</span></td></tr><tr><td class="number">47</td><td>       <span class="k2">}</span></td></tr></tbody></table></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mordredd)</author>
		<pubDate>Sun, 17 Jul 2005 19:50:21 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I don&#39;t even know who I am <img src="http://www.allegro.cc/forums/smileys/cry.gif" alt=":&#39;(" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Sun, 17 Jul 2005 19:52:59 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
See profile.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Sun, 17 Jul 2005 19:53:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>A.CC people look scary in photographs. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> [EDIT: No offense, X-G. I wrote this before seeing your post.]<br />How about everyone just draws a picture of themselves? <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Sporus)</author>
		<pubDate>Sun, 17 Jul 2005 19:55:59 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
http://old.heybryan.org/camera/IMG_4494_2.JPG</p><p><img src="http://www.allegro.cc/forums/smileys/cool.gif" alt="8-)" /></p><p><b>Edit</b>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>How about everyone just draws a picture of themselves? <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /></p></div></div><p>
Ungrateful f*tz#$!@.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Sun, 17 Jul 2005 20:06:13 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I just took a photo of myself and resized it to 80x80. It&#39;s in my profile.</p><p>And my nick is my name.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Sun, 17 Jul 2005 20:14:20 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Hey! I have found that on my HDD. That is what I am usually looking like when I am home alone <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /> </p><p>http://www.jray.de/me.jpg</p><p>[edit]<br />I love wearing black shirts, don&#39;t ask me why <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /><br />[/edit]</p><p>Resizing a real pic is a good idea...</p><p>[edit2]</p><p>Aye, and my name is Jacob...<br />[/edit2]
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mordredd)</author>
		<pubDate>Sun, 17 Jul 2005 20:14:57 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Home alone? What the hell do you look like when your parents are around?  Scary thoughts.</p><p>My pic is in my profile too, the freakish head growing out of my neck is the cat, that was taken a year ago though, I&#39;ve since ditched the goatee and had some hair issues (the hair has grown back though, except on my chin <img src="http://www.allegro.cc/forums/smileys/sad.gif" alt=":(" />)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Sun, 17 Jul 2005 20:16:56 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><a href="http://cphoton.mysharedphotos.com/Uruguay%20photos/">Home pics</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Crazy Photon)</author>
		<pubDate>Sun, 17 Jul 2005 20:48:16 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Is this a lame attempt to get the girls of a.cc to post even more pics of themselves?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve++)</author>
		<pubDate>Sun, 17 Jul 2005 21:31:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Is this a lame attempt to get the girls of a.cc to post even more pics of themselves? 
</p></div></div><p>

No. But the idea isn&#39;t bad, indeed.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mordredd)</author>
		<pubDate>Sun, 17 Jul 2005 21:34:46 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Crazy Photon: Did no one tell you that you have to hold the camera still when taking photos?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Sun, 17 Jul 2005 21:35:07 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>[url <a href="http://irc-galleria.net/view.php?nick=fatso">http://irc-galleria.net/view.php?nick=fatso</a>-]
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (jhuuskon)</author>
		<pubDate>Sun, 17 Jul 2005 21:40:58 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
I&#39;ll post a picture of my workstation soon enough. I call it &quot;Mount Bishop&quot;.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Sun, 17 Jul 2005 21:41:26 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I don&#39;t like the idea of other people looking at pictures of me. It&#39;s creepy.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Jonny Cook)</author>
		<pubDate>Sun, 17 Jul 2005 21:47:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>http://trezker.bafserv.net/pics/avatar/face2005.jpg<br />That&#39;s the latest picture of me, taken this summer.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Trezker)</author>
		<pubDate>Sun, 17 Jul 2005 21:50:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I don&#39;t like the idea of other people looking at pictures of me. It&#39;s creepy. 
</p></div></div><p>

That is what everyone thinks. The more people post their pictures the easier it will be to post yours.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mordredd)</author>
		<pubDate>Sun, 17 Jul 2005 21:53:13 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><span class="remote-thumbnail"><span class="json">{"name":"kir-red-bike.jpg","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/b\/0\/b035217c50a3bf506940ef460e8d0d44.jpg","w":450,"h":504,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/b\/0\/b035217c50a3bf506940ef460e8d0d44"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/b/0/b035217c50a3bf506940ef460e8d0d44-240.jpg" alt="kir-red-bike.jpg" width="240" height="268" /></span></p><p><img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /></p><div class="quote_container"><div class="title">Sporus said:</div><div class="quote"><p>
How about everyone just draws a picture of themselves?
</p></div></div><p>
I can imagine that would be real scary.</p><div class="quote_container"><div class="title">Micah Crow said:</div><div class="quote"><p>
           // let allegro choose which method to use - more work safe <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /><br />           bmp = load_bitmap( filename, pal );
</p></div></div><p>
You may want to check if it failed.</p><p>Trezker, don&#39;t you feel hot in summer?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kirr)</author>
		<pubDate>Sun, 17 Jul 2005 21:56:55 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I don&#39;t know if I should, it might provoke peadofiles <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dthompson)</author>
		<pubDate>Sun, 17 Jul 2005 21:57:16 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>...and your city you live in...</p></div></div><p>
Attached is a picture of how it looks like if I look out my window. The second part from the left stands out for some reason becasue I didn&#39;t bother to correct the colour balance...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Sun, 17 Jul 2005 22:05:18 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Iowa kind of looks like that. Wait, no... no it doesn&#39;t. <img src="http://www.allegro.cc/forums/smileys/cry.gif" alt=":&#39;(" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Jonny Cook)</author>
		<pubDate>Sun, 17 Jul 2005 22:27:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Looks like quite a hobbit-land.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kirr)</author>
		<pubDate>Sun, 17 Jul 2005 22:37:41 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>Trezker, don&#39;t you feel hot in summer?</p></div></div><p>
I get very hot in the summer, but it has nothing to do with my hair.<br />The head is actually my coolest part...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Trezker)</author>
		<pubDate>Sun, 17 Jul 2005 22:43:39 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>The head is actually my coolest part...</p></div></div><p>
I would be worried in your place. According to Discovery the head is supposed to be the hottest part. Maybe there&#39;s something wrong with you. Perhaps you&#39;re brain dead.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Sun, 17 Jul 2005 22:44:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Bring out the mower and trim that beard <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc ( Arvidsson)</author>
		<pubDate>Sun, 17 Jul 2005 22:52:18 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>My real name is Fabio and as for a picture you can check my profile <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /></p><p>Micah, i think this might interest you: <a href="http://www.allegro.cc/forums/view_thread.php?_id=388493">http://www.allegro.cc/forums/view_thread.php?_id=388493</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (FMC)</author>
		<pubDate>Sun, 17 Jul 2005 23:12:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
<i>That</i> Fabio? <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" /></p><p>http://www.utac.org/images/celebs/Fabio.jpg
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Sun, 17 Jul 2005 23:18:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Heh and my real name is Elvis <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Sun, 17 Jul 2005 23:23:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I always knew I would fit in here perfectly <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" /> <img src="http://www.allegro.cc/forums/smileys/cool.gif" alt="8-)" /></p><p><img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mordredd)</author>
		<pubDate>Sun, 17 Jul 2005 23:24:31 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/e/6/e6fcb98f5e6eea153f04a89329712569.jpg" alt="jp02.jpg" width="160" height="90" /></p><p>http://www.tomassaxborn.o.se/upload/A4-6.jpg
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Johan Peitz)</author>
		<pubDate>Sun, 17 Jul 2005 23:29:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">X-G said:</div><div class="quote"><p>That Fabio?</p></div></div><p>Excuse my ignorance, but i don&#39;t know him <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p>Who is he?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (FMC)</author>
		<pubDate>Sun, 17 Jul 2005 23:48:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Oh well, if I must...<br />http://www.reflectedgames.com/pirate.jpg</p><p>Arrrrr!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Sun, 17 Jul 2005 23:50:08 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>WHA! RUN! <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /> </p><p>RP = Rough Pirate, eh?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mordredd)</author>
		<pubDate>Sun, 17 Jul 2005 23:53:58 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
<a href="http://en.wikipedia.org/wiki/Fabio_(model)">Fabio</a>.</p><p>Richard Phipps:<br />http://www.ados.fr/IMG/arton281.jpg
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Sun, 17 Jul 2005 23:55:35 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><a href="http://www.fenixblade.allegronetwork.com/images/kenny.jpg">It&#39;s-a-me, Mario!</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Sirocco)</author>
		<pubDate>Mon, 18 Jul 2005 01:55:15 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
What happened to the hair?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Mon, 18 Jul 2005 02:04:01 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Too bad I don&#39;t have access to some of my pictures right now. They are in the other PC and I can&#39;t use it until tomorrow.</p><p>Until then I&#39;ll give you a representation of myself of how I look when drawn by someone with no drawing skills in two minutes using KolourPaint (see attachment)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (HoHo)</author>
		<pubDate>Mon, 18 Jul 2005 02:12:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Me after not shaving for a while:</p><p>http://img.photobucket.com/albums/v702/sonshadowcat/151317218_l.jpg
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 02:19:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Brilliant product placement, SonShadowCat. Maybe that can be your new job.. <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Mon, 18 Jul 2005 02:23:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Yeah...ignore that particular product <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 02:28:04 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>HoHo, i made a portrait of your portrait <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /><br />(attachment)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (FMC)</author>
		<pubDate>Mon, 18 Jul 2005 02:28:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>HoHo is a Tiki god? <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Mon, 18 Jul 2005 02:29:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Whats with all of you and your balding hair o.o?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 02:34:15 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
That drawing Looks more native american than hispanic. <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Mon, 18 Jul 2005 02:34:58 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>That drawing Looks more native american than hispanic. <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /></p></div></div><p>
Why would it have to look hispanic? HoHo is Estonian.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Mon, 18 Jul 2005 02:36:31 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
It looks more like a drawing of SSC to me. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Mon, 18 Jul 2005 02:41:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I didn&#39;t know I was red.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 02:45:39 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>http://www.orbitalmindsoft.com/stuff/Picture006.jpg<br />That&#39;s me today, it&#39;s been hot and windy so my hair is all screwed up (not that it isn&#39;t anyway).  However I do not have balding spots anymore <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /> ... well excluding my chin <img src="http://www.allegro.cc/forums/smileys/cry.gif" alt=":&#39;(" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Mon, 18 Jul 2005 02:47:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Wheres the black cat on your shoulder, you need the black cat!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 02:47:57 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>He was a kitten before, now he&#39;s all grown up, and lazy.  He&#39;s sleeping on the floor at the moment <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Mon, 18 Jul 2005 02:49:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>HoHo, i made a portrait of your portrait <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /></p></div></div><p>Actually I think your picture reminds me more than the one I drew myself <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /></p><p>And no, I&#39;m not a Tiki god(unfortunately). I&#39;m a native Estonian.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (HoHo)</author>
		<pubDate>Mon, 18 Jul 2005 02:51:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Nice bike Kirr!  Even if it is a Trek... <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p><a href="http://www.geocities.com/nonnus29/me1.jpg">Here&#39;s me in france.</a></p><p><a href="http://www.geocities.com/nonnus29/UNIONSTATION.PNG">This is were I live.</a>  (Note these are professional photos a got off a website...)</p><p><a href="http://www.geocities.com/nonnus29/MYSTREET.PNG">This is my street.</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (nonnus29)</author>
		<pubDate>Mon, 18 Jul 2005 03:37:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>None of them work nonnus.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 03:42:40 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>The third one works for me. The other tow are either completely white or don&#39;t work.</p><p>EDIT: Now none of the works anymore.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Mon, 18 Jul 2005 03:45:19 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Use photobucket nonnus <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 03:46:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Speaking of cats..</p><p>http://old.heybryan.org/camera/IMG_4056_3.JPG</p><p>We call him `poot&#39;.<br />He&#39;s currently cowering under the bed. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Mon, 18 Jul 2005 03:50:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I&#39;ll call him adorable.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 03:51:46 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>My cat would just beat him up... but he&#39;s evil like that <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Mon, 18 Jul 2005 03:53:50 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Actually, heh, poot is a playtoy for <a href="http://old.heybryan.org/camera/IMG_1540.JPG">this guy</a> (&quot;nemo&quot;). We have since given him another nick name, this time perhaps more suitable: <i>rat face</i>. <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Mon, 18 Jul 2005 03:59:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I take back my words &mdash; Steve Terry, your eyes are <i>so pretty</i>! Nothing scary there. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /></p><p>This thread is something of a shock. I guess I really have been thinking of people as their avatars.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Sporus)</author>
		<pubDate>Mon, 18 Jul 2005 05:03:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
What happened to the hair?
</p></div></div><p>

Casualty of the job. I miss my hair... <b>sniff</b>.  At least my hairline isn&#39;t receding!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Sirocco)</author>
		<pubDate>Mon, 18 Jul 2005 05:25:56 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>http://img141.imageshack.us/img141/7350/mdycntower8ww.jpg</p><p>I&#39;m the one on the right, Manjula is in the middle, and Yves is on the left. This picture was taken in downtown Toronto (the big pointy thing behind us is the CN Tower).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (wearetheborg)</author>
		<pubDate>Mon, 18 Jul 2005 05:38:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I don&#39;t get it ... women go absolutely crazy over my eyes... I just don&#39;t see it <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Mon, 18 Jul 2005 05:40:14 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Your eyes are lopsided. <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Matthew Leverton)</author>
		<pubDate>Mon, 18 Jul 2005 06:23:19 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Sometimes I think I&#39;m the only one actually developing games:)</p><p>You can read my profile if you like... I&#39;ve updated it with somewhat relevant content (imagine that).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ashteth)</author>
		<pubDate>Mon, 18 Jul 2005 06:34:05 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>Sometimes I think I&#39;m the only one actually developing games:)</p></div></div><p>
Games <img src="http://www.allegro.cc/forums/smileys/huh.gif" alt="???" /> <img src="http://www.allegro.cc/forums/smileys/sad.gif" alt=":(" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Mon, 18 Jul 2005 08:10:13 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/e/0/e0c06d888a5a7b49a252b31e768cbec9.jpg" alt="io.jpg" width="200" height="150" /><br />This is me (to the right).<br /><span class="remote-thumbnail"><span class="json">{"name":"lovisa.jpg","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/2\/1\/21a6d7c6ec3007d4b4f5d2e29da5aa92.jpg","w":243,"h":300,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/2\/1\/21a6d7c6ec3007d4b4f5d2e29da5aa92"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/2/1/21a6d7c6ec3007d4b4f5d2e29da5aa92-240.jpg" alt="lovisa.jpg" width="240" height="296" /></span><br />This is my home town Loviisa. A red circle marks my house. (Went out in the neighbourhood, painted the circle, logged into Google, took the picture, went out and washed the paint away. Phew!).</p><p>Attached is an image inside my nice red wooden house built 1930. My kid plays Game Boy in the kitchen.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Johan Halmén)</author>
		<pubDate>Mon, 18 Jul 2005 08:58:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Why do you have a pigeon on your shoulder? <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Mon, 18 Jul 2005 11:20:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>He&#39;s Birdman.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Mon, 18 Jul 2005 11:26:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
&quot;I shall call him.. Pohan!&quot;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Mon, 18 Jul 2005 11:29:12 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Whoa; Steve shaved. <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (23yrold3yrold)</author>
		<pubDate>Mon, 18 Jul 2005 13:13:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><u>Me:</u>(the picture is about two weeks old)<br />http://homepages.compuserve.de/DennisTapier/allegroforum/ME.JPG<br />(I was totally depressed on that day, that&#39;s why the smile looks so unnaturally forced.&gt;:()8-)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Dennis)</author>
		<pubDate>Mon, 18 Jul 2005 13:40:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>A pigeon!? That lousy salesman said it was a parrot!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Johan Halmén)</author>
		<pubDate>Mon, 18 Jul 2005 16:05:39 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Hey, you were lucky, it could have been a dead parrot <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" /></p><p><span class="remote-thumbnail"><span class="json">{"name":"_463071_parrot1.jpg","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/c\/7c30c372bd16fab63dbf1b47bdcc7f49.jpg","w":300,"h":180,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/c\/7c30c372bd16fab63dbf1b47bdcc7f49"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/7/c/7c30c372bd16fab63dbf1b47bdcc7f49-240.jpg" alt="_463071_parrot1.jpg" width="240" height="144" /></span>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Mon, 18 Jul 2005 16:27:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Hey, I&#39;ve seen that once, what&#39;s it called?</p><p>Mr. Praline: &#39;E&#39;s not pinin&#39;! &#39;E&#39;s passed on! This parrot is no more! He has ceased to be! &#39;E&#39;s expired and gone to meet &#39;is maker! &#39;E&#39;s a stiff! Bereft of life, &#39;e<br />     rests in peace! If you hadn&#39;t nailed &#39;im to the perch &#39;e&#39;d be pushing up the daisies! &#39;Is metabolic processes are now &#39;istory! &#39;E&#39;s off the twig! &#39;E&#39;s kicked the<br />     bucket, &#39;e&#39;s shuffled off &#39;is mortal coil, run down the curtain and joined the bleedin&#39; choir invisibile!! THIS IS AN EX-PARROT!!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Trezker)</author>
		<pubDate>Mon, 18 Jul 2005 16:32:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>the parrot sketch, iirc.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (deps)</author>
		<pubDate>Mon, 18 Jul 2005 16:34:31 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>by Monty Python. (edit fixed a typo)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Dennis)</author>
		<pubDate>Mon, 18 Jul 2005 18:31:08 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>http://img245.imageshack.us/img245/1916/newyear2005201hk.jpg</p><p>I don&#39;t look like that now.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (manjula)</author>
		<pubDate>Mon, 18 Jul 2005 21:19:17 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Okay, I put the pics in an html page; it seems to go over my bandwidth limit at geocities pretty quickly though...</p><p><a href="http://www.geocities.com/nonnus29/about.htm">click</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (nonnus29)</author>
		<pubDate>Mon, 18 Jul 2005 21:27:49 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Dammit! Nonnus get some damn webspace NOW!!! Geocities sucks.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Mon, 18 Jul 2005 22:01:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Photobucket, perhaps?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kanzure)</author>
		<pubDate>Mon, 18 Jul 2005 22:49:39 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>bafserv is nice.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Trezker)</author>
		<pubDate>Tue, 19 Jul 2005 00:25:35 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>manjula is teh h07n355 <img src="http://www.allegro.cc/forums/smileys/kiss.gif" alt=":-*" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Paul Pridham)</author>
		<pubDate>Tue, 19 Jul 2005 01:33:20 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
She looks tired as hell! And her purple hair distracts from her face. Get your hair cut you hippy! <img src="http://www.allegro.cc/forums/smileys/kiss.gif" alt=":-*" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Tue, 19 Jul 2005 02:26:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It&#39;s pink you insensitive clod!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Steve Terry)</author>
		<pubDate>Tue, 19 Jul 2005 02:37:57 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Manjula: Heh... rough morning, eh?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Sirocco)</author>
		<pubDate>Tue, 19 Jul 2005 03:00:01 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>Did no one tell you that you have to hold the camera still when taking photos?</p></div></div><p>
Heh, those photos from Uruguay were not taken by me but by a friend of mine <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /> (I am the one with the Intel Inside T-Shirt)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Crazy Photon)</author>
		<pubDate>Tue, 19 Jul 2005 03:00:19 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I was making a pseudo-goth pose you insensitive clods.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (manjula)</author>
		<pubDate>Tue, 19 Jul 2005 06:39:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I&#39;m not scary looking. There&#39;s a tiny picture of me in <a href="http://www.allegro.cc/members/profile.php?_id=4901">my profile</a>, and some more on <a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendID=4274175&amp;Mytoken=20050718185419">myspace</a> if anybody here uses that, which nobody here seems to. If you do, however, add me as a friend (since we&#39;re all so friendly here). <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (casey d)</author>
		<pubDate>Tue, 19 Jul 2005 06:54:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>heh
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SonShadowCat)</author>
		<pubDate>Tue, 19 Jul 2005 07:10:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Paul Pridham said:</div><div class="quote"><p>manjula is teh h07n355 <img src="http://www.allegro.cc/forums/smileys/kiss.gif" alt=":-*" /></p></div></div><p>
How convenient, you don&#39;t live too far away from Toronto... Plus Manjula goes to Kitchener quite often! <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (wearetheborg)</author>
		<pubDate>Tue, 19 Jul 2005 07:10:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>you can see a picture of my self in my profile. Its the most recent as I keep breaking cameras when they are pointed at me. That and mirrors. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p>SteveT: love the kitties I post my but like I said I broke my cameras.</p><p>for those fans of monty python: <a href="http://binarygrind.com/files/Monty_Python-The_Dead_ Parrot.mp3">The Dead Parrot Sketch</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (phate)</author>
		<pubDate>Tue, 19 Jul 2005 07:39:46 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>How convenient, you don&#39;t live too far away from Toronto... Plus Manjula goes to Kitchener quite often! <img src="http://www.allegro.cc/forums/smileys/shocked.gif" alt=":o" /></p></div></div><p>

Now we&#39;re talking... SET US UP THE BABE! <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Paul Pridham)</author>
		<pubDate>Tue, 19 Jul 2005 18:24:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><a href="http://www.jdf-events.at/Volley05/IMG_6063">http://www.jdf-events.at/Volley05/IMG_6063</a></p><p>I am the second from the right. Have had a sunburn that day, hence the red face.</p><p>edit: and maybe a bit drunk already...;)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (imaxcs)</author>
		<pubDate>Tue, 19 Jul 2005 18:33:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Finally I got a picture of myself <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /></p><p>I&#39;m to the right. To left is my little brother. The picture was taken about a month ago when me, my brother and some of my friends took a trip around Estonia and Latvia.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (HoHo)</author>
		<pubDate>Wed, 20 Jul 2005 17:28:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I&#39;m amazed that you guys look like half of my friends. Or at least did, when they were younger.</p><p>Unfortunately (like anyone <i>cares</i>), I don&#39;t have a picture of myself.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Chris Katko)</author>
		<pubDate>Wed, 20 Jul 2005 22:45:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
If I close my eyes I can see you as a WoW Gnome Chris! <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /> <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Richard Phipps)</author>
		<pubDate>Wed, 20 Jul 2005 22:51:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>That&#39;s so accurate I want to slap you. <img src="http://www.allegro.cc/forums/smileys/angry.gif" alt="&gt;:(" /> <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Chris Katko)</author>
		<pubDate>Thu, 21 Jul 2005 06:39:20 +0000</pubDate>
	</item>
</rss>
