<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Vershun's Brain Dump</title>
	<atom:link href="http://www.vershun.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vershun.com</link>
	<description>Worthless Mind Excretion</description>
	<lastBuildDate>Fri, 02 Sep 2011 02:25:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Boid Algorithm in 10 Dimensions</title>
		<link>http://www.vershun.com/computers/visualizing-swarms/boid-algorithm-in-10-dimensions.html</link>
		<comments>http://www.vershun.com/computers/visualizing-swarms/boid-algorithm-in-10-dimensions.html#comments</comments>
		<pubDate>Thu, 01 Sep 2011 06:36:08 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Visualizing Swarms]]></category>
<category>boids</category><category>emergent behavior</category><category>flex</category>
		<guid isPermaLink="false">http://www.vershun.com/?p=338</guid>
		<description><![CDATA[Click here to the see the visualization &#160; Basic idea and behavior rules I&#8217;ve been interested in emergent behavior since early college.  One of the first algorithms I learned for emergent behavior was the Boid flocking algorithm, created by Craig Reynolds in 1986.   I&#8217;ve always wanted to model this, but I never had any experience <a href='http://www.vershun.com/computers/visualizing-swarms/boid-algorithm-in-10-dimensions.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<h2 style="padding-left: 30px; text-align: center;"><strong><a title="Boids in ten dimensions" href="http://www.vershun.com/projects/boids/Boids.html"><br />
Click here</a> to the see the visualization</strong></h2>
<p>&nbsp;</p>
<p><strong>Basic idea and behavior rules</strong></p>
<p>I&#8217;ve been interested in emergent behavior since early college.  One of the first algorithms I learned for emergent behavior was the Boid flocking algorithm, created by Craig Reynolds in 1986.   I&#8217;ve always wanted to model this, but I never had any experience in 3d programming until very recently.</p>
<p>The idea behind the boid algorithm (and emergent behavior in general) is complex behavior arises from fairly simple interaction rules.  For this implementation, I applied the following behavior rules to each of the boids (dots):</p>
<ol>
<li>Move toward the center of the mass of the swarm</li>
<li>Avoid other boids</li>
<li>Try to match velocities with other boids</li>
<li>Stay within bounds (I just used a cube for this)</li>
</ol>
<p>Descriptions of these rules and pseudocode to implement it can be found here: <a href="http://www.vergenet.net/~conrad/boids/pseudocode.html">http://www.vergenet.net/~conrad/boids/pseudocode.html</a></p>
<p><strong>Adding more dimensions</strong></p>
<p>At my 9-5 I&#8217;ve been thinking a lot about how to represent  multidimensional data.  I realized the boid behaviors could be easily extended into multiple dimensions if the other dimensions provided good visual cues.  I decided to go with three different 3 dimensional spaces, with each axis a continuous numerical value that could be translated into a visual construct.  The 3D graphs always map the positional locations of the boids, but the 10D graph only pulls the positional elements from the XYZ space.  The following images show the max/min of all the axes.</p>
<p>First 3d space:  positional X, Y, and Z</p>
<div id="attachment_339" class="wp-caption alignnone" style="width: 232px"><img class="size-full wp-image-339 " title="xyzspace" src="http://www.vershun.com/wp-content/uploads/2011/08/xyzspace.jpg" alt="" width="222" height="176" /><p class="wp-caption-text">Positional X, Y, and Z</p></div>
<p>This works exactly as you would imagine.  The coordinates here are simply the 3d positions you&#8217;re used to dealing with.</p>
<p>Second 3d space: Red, Green, and Blue</p>
<div id="attachment_340" class="wp-caption alignnone" style="width: 232px"><img class="size-full wp-image-340 " title="Red, Green, and Blue space" src="http://www.vershun.com/wp-content/uploads/2011/08/rgbspace.jpg" alt="" width="222" height="176" /><p class="wp-caption-text">RGB Space</p></div>
<p>For RGB space, X represents the amount of red in the color (0-255), Y represents the amount of green in the color (0-255), and Z represents the amount of blue in the color (0-255).</p>
<p>Third 3d space: alpha, size, and number of shape vertices</p>
<div id="attachment_341" class="wp-caption alignnone" style="width: 232px"><img class="size-full wp-image-341" title="Alpha Size Vertices" src="http://www.vershun.com/wp-content/uploads/2011/08/asvspace.jpg" alt="" width="222" height="176" /><p class="wp-caption-text">Alpha, Size, and Vertices Space</p></div>
<p>For this space, I used alpha (transparency) for the x value.  You can see the boid on the left is completely black while the one on the right (the minimum negative x value) is faded out.  The y axis scales the size of the boid.  The z axis determines the number of vertices the node shape has (from 3 &#8211; 6).  You can see the minimum z value has a vertex count of 3 (triangle), while the max z almost looks circular (hexagon).</p>
<p>For this example, I&#8217;m running 3 separate boid algorithms on each of the spaces and then combining the output into one 9 dimensional space.  The tenth dimension is time.</p>
<div>
<dl id="attachment_342" class="wp-caption alignnone" style="width: 224px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-342" title="Nine dimensional space" src="http://www.vershun.com/wp-content/uploads/2011/09/allspaces.jpg" alt="" width="214" height="158" /></dt>
<dd class="wp-caption-dd">Combined dimensions</dd>
</dl>
</div>
<p>&nbsp;</p>
<p>To see it all in action, <a title="Boids in ten dimensions" href="http://www.vershun.com/projects/boids/Boids.html">click here</a>.</p>
<p>View sourcehas been enabled.</p>
<div>To compile this yourself, you&#8217;ll need <a href="http://www.away3d.com/download/away3d_3.6.0">Away3D 3.6</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/computers/visualizing-swarms/boid-algorithm-in-10-dimensions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annoying to join&#8230; and quit!</title>
		<link>http://www.vershun.com/random/annoying-to-join-and-quit.html</link>
		<comments>http://www.vershun.com/random/annoying-to-join-and-quit.html#comments</comments>
		<pubDate>Tue, 31 Aug 2010 06:04:35 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=328</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.vershun.com/wp-content/uploads/2010/08/BallyFitness.jpg"><img class="aligncenter size-full wp-image-330" title="BallyFitness" src="http://www.vershun.com/wp-content/uploads/2010/08/BallyFitness.jpg" alt="" width="560" height="469" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/random/annoying-to-join-and-quit.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sometimes I Get Bored</title>
		<link>http://www.vershun.com/random/comics/sometimes-i-get-bored.html</link>
		<comments>http://www.vershun.com/random/comics/sometimes-i-get-bored.html#comments</comments>
		<pubDate>Thu, 08 Jul 2010 01:38:08 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[comics]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=321</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.vershun.com/images/random/frogstew.jpg" alt="" width="585" height="424" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/random/comics/sometimes-i-get-bored.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Fast Compiler Update</title>
		<link>http://www.vershun.com/computers/flex-fast-compiler-update.html</link>
		<comments>http://www.vershun.com/computers/flex-fast-compiler-update.html#comments</comments>
		<pubDate>Sat, 01 May 2010 08:25:35 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[fast compilation]]></category>
		<category><![CDATA[fast compile times]]></category>
		<category><![CDATA[fcsh]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=319</guid>
		<description><![CDATA[Since this app seemed to be fairly well received, I made a few changes and threw the code up on github. I fixed a few issues regarding doing thread-unsafe things.  I also put in functionality for your compilation defaults to load from a file.  Disabled the use of multiple tabs (1 FCSH per instance of <a href='http://www.vershun.com/computers/flex-fast-compiler-update.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Since this app seemed to be fairly well received, I made a few changes and threw the code up on github.</p>
<p>I fixed a few issues regarding doing thread-unsafe things.  I also put in functionality for your compilation defaults to load from a file.  Disabled the use of multiple tabs (1 FCSH per instance of the app).</p>
<p>Github project URL: <a href="http://github.com/EvanMGates/Flex-FCSH-Frontend">http://github.com/EvanMGates/Flex-FCSH-Frontend</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/computers/flex-fast-compiler-update.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Fast Compiler (FCSH frontend)</title>
		<link>http://www.vershun.com/computers/flex-fast-compiler-fcsh-frontend.html</link>
		<comments>http://www.vershun.com/computers/flex-fast-compiler-fcsh-frontend.html#comments</comments>
		<pubDate>Sun, 14 Mar 2010 07:39:06 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[fcsh]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[Flex Builder 3]]></category>
		<category><![CDATA[slow compile]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=310</guid>
		<description><![CDATA[Fast Flex Compiler (GUI frontend to FCSH with incremental compiling). SOURCE JAR Unzip source with 7-Zip, run jar with java -jar FastFlexCompile.jar. So if you&#8217;ve been working on large-scale projects in Flex (especially if they&#8217;re monolithic beasts), you have undoubtably noticed how slow the compiler is in Flex Builder 3. This is because (from what <a href='http://www.vershun.com/computers/flex-fast-compiler-fcsh-frontend.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Fast Flex Compiler (GUI frontend to FCSH with incremental compiling).</strong></p>
<p><a href="http://www.vershun.com/projects/FastFlexCompiler/FastFlexCompileSource.7z">SOURCE</a> <a href="http://www.vershun.com/projects/FastFlexCompiler/FastFlexCompile.jar">JAR</a></p>
<p>Unzip source with 7-Zip, run jar with java -jar FastFlexCompile.jar.</p>
<p>So if you&#8217;ve been working on large-scale projects in Flex (especially if they&#8217;re monolithic beasts), you have undoubtably noticed how slow the compiler is in Flex Builder 3.  This is because (from what I could find) Flex Builder 3 doesn&#8217;t allow incremental compilations, which drastically speeds up compiling.</p>
<p><a href="http://www.vershun.com/wp-content/uploads/2010/03/FastFlexCompile.jpg"><img class="aligncenter size-medium wp-image-315" title="FastFlexCompile" src="http://www.vershun.com/wp-content/uploads/2010/03/FastFlexCompile-300x238.jpg" alt="" width="300" height="238" /></a></p>
<p>FCSH, which comes with the Flex SDK, does.  The problem with FCSH is it&#8217;s a pain in the ass to get setup and when you do every time you want to recompile you have to type &#8220;compile {target number},&#8221; it does not support the up arrow key for last command.</p>
<p>To make things a bit easier and to add highlighting, which I find useful, I made a quick Java Swing frontend to FCSH so you can enjoy quick compilation without dealing with FCSH directly.</p>
<p>To start:  Run the app by using the command:</p>
<blockquote><p>java -jar FlexFastCompile.jar</p></blockquote>
<p>Put in your SDK path using forward slashes for a Windows machine, making sure to omit the trailing &#8220;/&#8221;<br />
e.g.</p>
<blockquote><p>C:/Development/Flex Builder 3/sdks/3.5.0</p></blockquote>
<p>Put in your mxmlc command line arguments.  If you&#8217;re unfamiliar with the switches, check out the documentation <a title="MXMLC options" href="http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_13.html">here</a>.  The common ones are: -o (output swf), -file-specs=(application file), -libarary-path+=(library path) for library directories, and -sp+=(path) for source paths.</p>
<p>Click &#8220;Spawn New Compiler.&#8221;  This will execute FCSH and hold the session open in the tabbed window below.  To recompile that instance, hit the &#8220;Recompile&#8221; button.</p>
<p>You can change your sdk and arguments and open up multiple FCSH sessions in the tabbed windows.  Be sure to watch your memory usage as too many FCSH sessions can eat up your RAM right quick.</p>
<p><strong>Developer Notes</strong></p>
<p>The GUI and class skeletons was thrown together in NetBeans using Swing components.  The projects was then transferred into Eclipse because I&#8217;m more familiar with it.  There are probably still some artifacts from NetBeans in the source.</p>
<p>So the implementation ain&#8217;t pretty, and I&#8217;m actually passing the Swing JTextArea component down to the output reader threads directly (didn&#8217;t feel like messing with thread management much for such a quick and dirty project).  To avoid the possibility of race conditions, I&#8217;m using the JTextArea as a lock for the synchronized block that handles the highlighting (:cringe:).  If you want to customize this code for further development, that would be the first place I&#8217;d start.</p>
<p>To change the highlighting just edit the wordToLinePainter map in the FCSHOutputDump class.  Changing the colors can be done in FCSHOutputDump by editing the DefaultHighlightPainter instantiations.</p>
<p>Feel free to use the code for whateverthehell you want.  There&#8217;s no license on here and no warranties as well.  I ask if you do use or modify the code shoot me an e-mail or comment (I like to know if projects are useful or not).  Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/computers/flex-fast-compiler-fcsh-frontend.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decentralized Distributed Flash Proof of Concept</title>
		<link>http://www.vershun.com/computers/decentralized-distributed-flash-proof-of-concept.html</link>
		<comments>http://www.vershun.com/computers/decentralized-distributed-flash-proof-of-concept.html#comments</comments>
		<pubDate>Sun, 14 Feb 2010 02:45:22 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[decentralized]]></category>
		<category><![CDATA[distributed computing]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=304</guid>
		<description><![CDATA[Finished my lil&#8217; project I&#8217;ve been working on. You can view it by clicking the link below. View the app and participate in the network. It doesn&#8217;t really have a name, but for the purposes of this post I&#8217;ll refer to it as DDFPOC (Decentralized Distributed Flash Proof-Of-Concept). DDFPOC is a prototype for a new <a href='http://www.vershun.com/computers/decentralized-distributed-flash-proof-of-concept.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Finished my lil&#8217; project I&#8217;ve been working on.  You can view it by clicking the link below.</p>
<p><a href="http://www.vershun.com/projects/decentralizedpoc/ui/DecentralizedProcessing.html">View the app and participate in the network.</a></p>
<p>It doesn&#8217;t really have a name, but for the purposes of this post I&#8217;ll refer to it as DDFPOC (Decentralized Distributed Flash Proof-Of-Concept).</p>
<p>DDFPOC is a prototype for a new way of utilizing web traffic for computational purposes.  Inspired by projects like <a href="http://boinc.berkeley.edu/">BOINC</a> and <a href="http://folding.stanford.edu/">Folding@Home</a>, I wanted to find a way to have casual web surfers participate in a computational network just by visiting a webpage.  Deviating from the BOINC and Folding@Home models and my prior <a href="http://www.vershun.com/computers/hidden-flash-applications-as-distributed-computing-clients.html">Flash-based distributed computing POC</a>, I also wanted information sharing across the clients as opposed to a central location that aggregates all the separate work units together.  Finally, I wanted to have a visual representation of the network so the users could see what&#8217;s happening within the network and what the work units were doing.</p>
<p><strong>Implementation Details</strong></p>
<p>The client-side application was programmed entirely in Flex and uses the awesome dependency graph provided with <a href="http://flare.prefuse.org/">Flare</a>.  The server-side code is in PHP5.  The Flash application makes framework and worker requests to the server in set intervals.  The framework requests are to get the status of the network &#8212; who is currently in the network, who&#8217;s connected to who, and statistics.  The worker messages are for sending and receiving messages about the current worker.</p>
<p>Spoiler: it&#8217;s not really decentralized.  I didn&#8217;t make the program to do Flash-to-Flash communication, so messages passed between clients are routed through the server.</p>
<div id="attachment_305" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.vershun.com/wp-content/uploads/2010/02/implementationNetwork.jpg"><img class="size-medium wp-image-305" title="implementationNetwork" src="http://www.vershun.com/wp-content/uploads/2010/02/implementationNetwork-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">Green is a message in, red is that same message out.</p></div>
<p>There are 2 main parts to both the Flex and the PHP: the framework and the worker.  For Flex, the worker module only has to implement an interface.  If this project continues forward (which I doubt due to my project ADD), I would like to be able to add and remove worker modules during runtime.  That way the client could choose which project they would like to donate their CPU cycles to (much like BOINC).  The PHP is a bit more messy, and there&#8217;s a couple places where the implementation of the worker is coupled with the user management (such as clearing out expired users).  Aside from these few places, though, the PHP worker is pretty encapsulated and I don&#8217;t think it would be much work to make it entirely so.</p>
<p><strong>What&#8217;s With The Number Guesser?</strong></p>
<p>I chose to implement a random number guesser as the first POC worker for the following reasons: it&#8217;s easy to understand, the knowledge sharing is trivial, it didn&#8217;t have to be very visual.</p>
<p>On the PHP side: if there is no work unit out (a number had recently been found), the PHP worker generates a new number between 1-1000 and informs the client that there&#8217;s a new work unit.</p>
<p>On the Flash side: keep guessing numbers between 1-1000 until you find the answer or someone else does.</p>
<p>The knowledge sharing works as follows:  keep track of the numbers you guess and tell the neighbors you&#8217;re linked to what numbers you&#8217;ve tried.  When a neighbor informs you of their guesses, add them to your &#8220;already guessed&#8221; pile.  Forward on to your neighbor&#8217;s guesses to your neighbors.  Eventually the network will guess the number using all of the clients&#8217; memory of guessed numbers.</p>
<p><strong>In The Future</strong></p>
<p>This project was made to be throw-away, but if it were to continue forward I&#8217;d first like to completely decouple the framework and worker on the server side.  Next would be making the Flash worker load dynamically.</p>
<p>What I&#8217;d love to see is an actual application for this.</p>
<p><strong>Notes</strong></p>
<p>Keep in mind this is a POC and isn&#8217;t well tested, I expect bugs <img src='http://www.vershun.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
<p>Also, if there&#8217;s any interest I&#8217;d be happy to release the source code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/computers/decentralized-distributed-flash-proof-of-concept.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick update</title>
		<link>http://www.vershun.com/uncategorized/quick-update.html</link>
		<comments>http://www.vershun.com/uncategorized/quick-update.html#comments</comments>
		<pubDate>Sat, 16 Jan 2010 09:14:58 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=302</guid>
		<description><![CDATA[Once again, an &#8220;I&#8217;m sorry I haven&#8217;t posted in forever&#8221; post. My weight-gaining fun is over. It started out great, and over the course of 2 weeks I gained around 12 pounds and I could express my joy with both my smile and the smile-shape my blossoming second chin made. Disaster struck when I started <a href='http://www.vershun.com/uncategorized/quick-update.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Once again, an &#8220;I&#8217;m sorry I haven&#8217;t posted in forever&#8221; post.</p>
<p>My weight-gaining fun is over.</p>
<p>It started out great, and over the course of 2 weeks I gained around 12 pounds and I could express my joy with both my smile and the smile-shape my blossoming second chin made.  Disaster struck when I started putting on a pair of jeans and had to squeeze to get that button in the hole.  I signed up to be a fatty, not to replace all my clothing.</p>
<p>So now I&#8217;m back to being scrawny (thanks cigs) and I&#8217;m quite comfortable with it.  I suppose in life one has to give up some dreams in order to obtain more important ones (never shopping for clothes).</p>
<p>I&#8217;m working on a project now that I&#8217;m aiming to be out before Feb.  It&#8217;s just a toy POC flash app that demonstrates pseudo-decentralized distributed computing visually from within a browser, but the nerd in me is excited about it.</p>
<p>P.S.  I&#8217;m sorry I haven&#8217;t posted in forever.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/uncategorized/quick-update.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Random Blog (More Trash On The Internet)</title>
		<link>http://www.vershun.com/random/another-random-blog-more-trash-on-the-internet.html</link>
		<comments>http://www.vershun.com/random/another-random-blog-more-trash-on-the-internet.html#comments</comments>
		<pubDate>Wed, 09 Dec 2009 01:20:57 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=297</guid>
		<description><![CDATA[So I found a domain I owned and forgot to do anything with, so I&#8217;m going to try to do some longer posts on this site and reserve my other site for short, random, and girlie/emo shit. Anyway, if anyone is interested it&#8217;s at http://www.aleatorics.com Also, if you&#8217;re a gamer and play Modern Warfare 2 <a href='http://www.vershun.com/random/another-random-blog-more-trash-on-the-internet.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>So I found a domain I owned and forgot to do anything with, so I&#8217;m going to try to do some longer posts on this site and reserve my other site for short, random, and girlie/emo shit.</p>
<p>Anyway, if anyone is interested it&#8217;s at <a href="http://www.aleatorics.com">http://www.aleatorics.com</a></p>
<p>Also, if you&#8217;re a gamer and play Modern Warfare 2 a friend and I have compiled a <a href="http://www.mw2titles.com">list of modern warfare 2 titles</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/random/another-random-blog-more-trash-on-the-internet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>November and December:  A Warning</title>
		<link>http://www.vershun.com/uncategorized/november-and-december-a-warning.html</link>
		<comments>http://www.vershun.com/uncategorized/november-and-december-a-warning.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 03:17:41 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=294</guid>
		<description><![CDATA[I will fucking eat you. With my 25th birthday nearing (hint: I like Qdoba gift certificates. And hookers), my metabolism has decided that it has tortured me enough and it&#8217;s time for it to die in a deliciously blubbery coffin. My goal is straightforward and simple: to become jolly big in time for Christmas. This <a href='http://www.vershun.com/uncategorized/november-and-december-a-warning.html'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I will fucking eat you.</p>
<p>With my 25th birthday nearing (hint: I like Qdoba gift certificates.  And hookers), my metabolism has decided that it has tortured me enough and it&#8217;s time for it to die in a deliciously blubbery coffin.  My goal is straightforward and simple: to become jolly big in time for Christmas.  This will be accomplished by maximizing my caloric intake, minimizing my tobacco usage (farewell once again my sweet, sweet&#8230; sweet&#8230; sweet fire sticks), and participating in a whole lotta sitting-around-doing-shittism.</p>
<p>My last cigarette was Saturday, when I weighed 166.  I&#8217;m currently weighing in at a 170 and sky is the limit (or a cardiac arrest).</p>
<p>I&#8217;ll keep this blog a bit more updated for the next month while I, much like a bear preparing for hibernation, stuff myself full of hot, dense meat (nohomo) for the winter.</p>
<p>Also, check out this site for <a href="http://www.modernwarfare2titles.com">Modern Warfare 2 Titles</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/uncategorized/november-and-december-a-warning.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Counterfeit Food</title>
		<link>http://www.vershun.com/signs/counterfeit-food.html</link>
		<comments>http://www.vershun.com/signs/counterfeit-food.html#comments</comments>
		<pubDate>Mon, 26 Oct 2009 03:23:47 +0000</pubDate>
		<dc:creator>Vershun</dc:creator>
				<category><![CDATA[Signs]]></category>

		<guid isPermaLink="false">http://www.vershun.com/?p=285</guid>
		<description><![CDATA[For reasons best left unsaid, I took a 6-7 mile walk home this Saturday starting at 3 AM. I did run across this though, which made the walk a little more enjoyable.]]></description>
			<content:encoded><![CDATA[<p>For reasons best left unsaid, I took a 6-7 mile walk home this Saturday starting at 3 AM.</p>
<p>I did run across this though, which made the walk a little more enjoyable.</p>
<p><img src="http://www.vershun.com/wp-content/uploads/2009/10/counterfeit-country-buffet-300x225.jpg" alt="Well that explains their ham." title="Well that explains their ham." width="300" height="225" class="aligncenter size-medium wp-image-286" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vershun.com/signs/counterfeit-food.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

