<?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>BorkWeb</title>
	<atom:link href="http://borkweb.com/feed" rel="self" type="application/rss+xml" />
	<link>http://borkweb.com</link>
	<description>Some People Are Squirrel Handed.</description>
	<lastBuildDate>Tue, 17 Jan 2012 22:00:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Preparing a Site for SOPA Blackout with .htaccess</title>
		<link>http://borkweb.com/story/preparing-a-site-for-sopa-blackout-with-htaccess</link>
		<comments>http://borkweb.com/story/preparing-a-site-for-sopa-blackout-with-htaccess#comments</comments>
		<pubDate>Tue, 17 Jan 2012 21:56:37 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blackout]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[protest]]></category>
		<category><![CDATA[rewritecond]]></category>
		<category><![CDATA[sopa]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=951</guid>
		<description><![CDATA[BorkWeb, like a number of other sites, will be going black this Wednesday as a protest to SOPA.  Legends of the Sun Pig has an excellent article on this exact topic.  Martin writes: Google recommends using HTTP 503 &#8220;Service Unavailable&#8221; status codes. The 503 code indicates that the service (or page, or site) is temporarily [...]]]></description>
			<content:encoded><![CDATA[<p>BorkWeb, like a number of other sites, will be going black this Wednesday as a protest to SOPA.  <a href="http://www.sunpig.com/martin/archives/2012/01/17/site-protest-blackouts-with-htaccess.html">Legends of the Sun Pig</a> has an excellent article on this exact topic.  Martin writes:</p>
<blockquote><p><a href="https://plus.google.com/115984868678744352358/posts/Gas8vjZ5fmB">Google recommends using HTTP 503 &#8220;Service Unavailable&#8221; status codes</a>. The 503 code indicates that the service (or page, or site) is temporarily unavailable, but that it is expected back again soon. This is better than using the 404 (not found), 302 ( moved temporarily), or 301 (moved permanently) codes, because it tells web crawlers that they should just come back and try again later.</p></blockquote>
<p>Because I have no desire to manually make the cut-over to a SOPA Blackout .htaccess file at midnight (because I&#8217;m lazy), I took his .htaccess settings and made a modification to enable the settings for the tomorrow.  Here&#8217;s what I have:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;IfModule mod_rewrite.c&gt;

# =====================
# SOPA Blackout
# =====================

# Set a custom error document for 503 errors
ErrorDocument 503 /503_sopa.html

# Cause all requests (except images) to generate a 503 error,
# which will produce the custom 503 error document
RewriteEngine on
RewriteBase /
RewriteCond %{ENV:REDIRECT_STATUS} !=503
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif) [NC]
RewriteCond %{REQUEST_URI} !robots\.txt$ [NC]
RewriteCond %{TIME_YEAR} ^2012
RewriteCond %{TIME_MON} ^01
RewriteCond %{TIME_DAY} ^18
RewriteRule ^ - [L,R=503]

# =====================
# NOT SOPA Blackout
# =====================

# My other rewrite magic goes here.
&lt;/IfModule&gt;
</pre>
<p>Additionally, I&#8217;ve shamelessly stolen the <a href="http://php.net">php.net</a> SOPA <a href="http://borkweb.com/503_sopa.html">503 page</a> because it is awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/preparing-a-site-for-sopa-blackout-with-htaccess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim Undo Magic</title>
		<link>http://borkweb.com/story/vim-undo-magic</link>
		<comments>http://borkweb.com/story/vim-undo-magic#comments</comments>
		<pubDate>Thu, 12 Jan 2012 15:23:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[undo]]></category>
		<category><![CDATA[undolist]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=936</guid>
		<description><![CDATA[Ever have a time when you are happily editing a script in vim and you realize you made a mistake over the course of editing? Luckily, Vim supports back in time undos. You want to go back 10 minutes? :earlier 10m You want to go forward in time by 5 seconds? :later 5s Sweet cuppin&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>Ever have a time when you are happily editing a script in vim and you realize you made a mistake over the course of editing? Luckily, Vim <strong>supports back in time undos</strong>.</p>
<p>You want to go back 10 minutes?</p>
<p><code>:earlier 10m</code></p>
<p>You want to go forward in time by 5 seconds?</p>
<p><code>:later 5s</code></p>
<p>Sweet cuppin&#8217; cakes that&#8217;s ballsy. Armed with this tool, you step forward and backwards in your undo/redo adventure, you make an accidental edit. Whoops. Now all the code you&#8217;ve edited in the 10 minutes that you rolled back with the handy-dandy &lt;code&gt;:earlier&lt;/code&gt; command is gone&#8230;right?</p>
<p>Nope! <strong>Undo branching</strong> is where the real awesomeness of Vim shines. If you realize your mistake, you can find a list of undo branches like so:</p>
<p><code>:undolist</code></p>
<p>Which will show you something like this:</p>
<pre>number changes when saved

3 3 08:59:35
4 2 09:00:13</pre>
<p>To jump to one of those branches, you can type:</p>
<p><code>:undo 3</code> or <code>:undo 4</code></p>
<p>I &lt;3 Vim</p>
<p>(via <a href="http://lifehacker.com/202093/go-back-in-text-file-time-with-vim-70">Life Hacker</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/vim-undo-magic/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites Not Reachable After Linode Restart</title>
		<link>http://borkweb.com/story/sites-not-reachable-after-linode-restart</link>
		<comments>http://borkweb.com/story/sites-not-reachable-after-linode-restart#comments</comments>
		<pubDate>Wed, 25 Aug 2010 02:21:41 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=906</guid>
		<description><![CDATA[I have recently moved the majority of my sites over to my CentOS Linode VPS and I was experience some load issues that prevented me from gaining SSH access.  As such, I decided to restart my VPS.  After the restart, I found that my sites were not reachable&#8230;lame. First, I checked the firewall found here: /usr/bin/system-config-securitylevel-tui So&#8230;the [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently moved the majority of my sites over to my CentOS <a href="http://www.linode.com/?r=67b76e7b2339fe51bea3d34c3e419fa78038e44f">Linode VPS</a> and I was experience some load issues that prevented me from gaining SSH access.  As such, I decided to restart my VPS.  After the restart, I found that my sites were not reachable&#8230;lame.</p>
<p>First, I checked the firewall found here:</p>
<blockquote><p>/usr/bin/system-config-securitylevel-tui</p></blockquote>
<p>So&#8230;the firewall was fine.  Next, I attempted to restart the network via:</p>
<blockquote><p>/etc/init.d/network restart</p></blockquote>
<p>I was surprised to receive the following error:</p>
<blockquote><p>Bringing up interface eth0: Device eth0 has different MAC address than expected, ignoring. [FAILED]</p></blockquote>
<p>Alrighty&#8230;bizarre.  So with the help of <a href="http://technotes.twosmallcoins.com/?p=97">this article</a>, I was able to determine that eth0&#8242;s MAC address:</p>
<blockquote><p>/sbin/ifconfig eth0</p></blockquote>
<p>was different than the MAC address found in:</p>
<blockquote><p>/etc/sysconfig/network-scripts/ifcfg-eth0</p></blockquote>
<p>A simple edit to the above file and a quick network restart solved my problem and brought my sites back up! w00t!</p>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/sites-not-reachable-after-linode-restart/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web Programming Guest Lecture: JavaScript</title>
		<link>http://borkweb.com/story/web-programming-guest-lecture-javascript</link>
		<comments>http://borkweb.com/story/web-programming-guest-lecture-javascript#comments</comments>
		<pubDate>Mon, 07 Dec 2009 21:37:00 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[dougless crockford]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[plymouth state]]></category>
		<category><![CDATA[psu]]></category>

		<guid isPermaLink="false">http://borkweb.com/story/web-programming-guest-lecture-javascript</guid>
		<description><![CDATA[I have once again given a JavaScript guest lecture to Zach&#8216;s Web Programming class. This year I have taken the liberty of swiping some of Douglas Crockford&#8217;s &#8220;JavaScript: The Good Parts&#8221; presentation for the leading slides. Here&#8217;s the presentation: Javascript 2009 View more presentations from borkweb.]]></description>
			<content:encoded><![CDATA[<p>I have once again given a JavaScript guest lecture to <a href="http://nosheep.net">Zach</a>&#8216;s Web Programming class.  This year I have taken the liberty of swiping some of Douglas Crockford&#8217;s &#8220;<a href="http://googlecode.blogspot.com/2009/03/doug-crockford-javascript-good-parts.html">JavaScript: The Good Parts</a>&#8221; presentation for the leading slides.</p>
<p>Here&#8217;s the presentation:</p>
<div style="width:425px;text-align:left" id="__ss_2668223"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/borkweb/javascript-2009" title="Javascript 2009">Javascript 2009</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=javascript2009-091207131734-phpapp01&#038;stripped_title=javascript-2009" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=javascript2009-091207131734-phpapp01&#038;stripped_title=javascript-2009" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/borkweb">borkweb</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/web-programming-guest-lecture-javascript/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Star Wars: Death Troopers</title>
		<link>http://borkweb.com/story/star-wars-death-troopers</link>
		<comments>http://borkweb.com/story/star-wars-death-troopers#comments</comments>
		<pubDate>Fri, 09 Oct 2009 14:37:27 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[death troopers]]></category>
		<category><![CDATA[del ray]]></category>
		<category><![CDATA[joe schreiber]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[starwars]]></category>
		<category><![CDATA[zombies]]></category>

		<guid isPermaLink="false">http://borkweb.com/story/star-wars-death-troopers</guid>
		<description><![CDATA[Death Troopers, a novel by Joe Schreiber will be released on Tuesday (October 13, 2009) and takes place just before &#8220;A New Hope&#8221;. What is it? A Star Wars horror book. That is something that I didn&#8217;t expect to ever see. I&#8217;m interested enough that I just might read it. Here&#8217;s the plot: When the [...]]]></description>
			<content:encoded><![CDATA[<p>Death Troopers, a novel by <a href="http://starwars.wikia.com/wiki/Joe_Schreiber">Joe Schreiber</a> will be released on Tuesday (October 13, 2009) and takes place just before &#8220;A New Hope&#8221;.  What is it?  A Star Wars horror book.  That is something that I didn&#8217;t expect to <em>ever</em> see.  I&#8217;m interested enough that I just might read it.  Here&#8217;s the plot:</p>
<blockquote><p>
When the Imperial prison barge Purge breaks down in a distant, uninhabited part of space, its only hope seems to lie with a Star Destroyer found drifting, derelict and seemingly abandoned. But when a boarding party is sent to scavenge for parts, only half of them come back &#8212; bringing with them a horrific disease so lethal that within hours, nearly all aboard the Purge will die. And death is only the beginning.</p>
<p>For aboard the Star Destroyer, amid its vast creaking emptiness that isn&#8217;t really empty at all, the dead are rising, soulless, unstoppable, and unspeakably hungry. </p></blockquote>
<p>What is awesome is that there are a number of fans that have come up with trailers for the book.  <a href="http://geektyrant.com/2009/10/star-wars-death-troopers-fan-trailers/">This post</a> has a large number of them, but here&#8217;s my favorite.</p>
<p>Pretty creepy.</p>
<div style="text-align:center;">
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/U-ZqAymW7S4&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/U-ZqAymW7S4&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/star-wars-death-troopers/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Heroes of Newerth: Patch 0.1.39 Released</title>
		<link>http://borkweb.com/story/heroes-of-newerth-patch-0-1-39-released</link>
		<comments>http://borkweb.com/story/heroes-of-newerth-patch-0-1-39-released#comments</comments>
		<pubDate>Sat, 22 Aug 2009 12:30:49 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Art, Gaming, & Fun]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[General Gaming]]></category>
		<category><![CDATA[DotA]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[heroes]]></category>
		<category><![CDATA[heroes of newerth]]></category>
		<category><![CDATA[hon]]></category>
		<category><![CDATA[patch]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=752</guid>
		<description><![CDATA[Heroes of Newerth has released patch 0.1.39 that brings in 2 new heroes (I&#8217;ve updated my HoN/DotA equivalents post appropriately)! Wretched Hag Equivalent of the Queen of Pain in DotA Succubus Equivalent of the Bane Elemental in DotA For those interested, the full changeset is as follows: Version 0.1.39 &#8212;&#8212;&#8212;&#8212;&#8211; General: - Added PSR and [...]]]></description>
			<content:encoded><![CDATA[<p>Heroes of Newerth has released patch 0.1.39 that brings in 2 new heroes (I&#8217;ve updated my <a href="http://borkweb.com/story/heroes-of-newerth-dota-hero-equivalents">HoN/DotA equivalents post</a> appropriately)!</p>
<div style="text-align:center;">
<img src="http://farm3.static.flickr.com/2555/3844593853_e98f7af71d_o.jpg"/><br />
Wretched Hag<br />
<em>Equivalent of the Queen of Pain in DotA</em>
</div>
<div style="text-align:center;">
<img src="http://farm3.static.flickr.com/2626/3844593879_77b040e652_o.jpg"/><br />
Succubus<br />
<em>Equivalent of the Bane Elemental in DotA</em>
</div>
<p>For those interested, the full changeset is as follows:</p>
<blockquote><p>
Version 0.1.39<br />
&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>General:<br />
- Added PSR and clan information to the in-game player stats screen<br />
- Changed requirements for Remake vote to pass<br />
* It now requires the total number of players minus 2 to vote yes. If less than 4 people are voting, it requires<br />
* If more than 4 people are voting, (total players &#8211; 2) votes are required to pass. If more than 2 people are voting, (total players &#8211; 1) votes required. Otherwise, 100% required to pass.<br />
- Restricted game data not relevant to a players&#8217; team<br />
* This will prevent map hacks from working in HoN<br />
- Fixed several effects showing up through the fog of war<br />
- Updated Portuguese translation</p>
<p>New heroes:<br />
- Wretched Hag, based on DOTA&#8217;s Akasha, the Queen of Pain<br />
- Succubus, based on DOTA&#8217;s Bane Elemental</p>
<p>General Gameplay:<br />
- Added team-based skills, Demonic Fortification for Hellbourne and Fortification of Sol for Legion<br />
* These skills are accessed by clicking on any team structure then clicking on the corresponding button in the info pane in the lower right of the screen<br />
* These skills share a global cool down time. Anyone on the team may activate them, but then they go into cool down for everyone<br />
* When used, these skills apply +9999 armor to all allied structures</p>
<p>Arachna:<br />
- Slightly increased visual size of the Spiderling<br />
- Fixed a bug causing Spider Sting to not hit stealth units if they go stealth before the projectile hits them</p>
<p>Behemoth:<br />
- Fixed some issues with fissure not impacting properly on higher level terrain or impacting units standing near the behemoth</p>
<p>Magmus:<br />
- Added more detailed cast effects to Eruption and modified the animation. It should now be clearer when Magmus starts this skill</p>
<p>Pebbles:<br />
- Reworked Chuck, it should now deal its damage consistently<br />
- Units affected by Chuck will now take double the damage from Stalagmites<br />
- Chuck will no longer be greyed out when no valid units are nearby to throw<br />
- Reworked Stalagmites to properly delay based on distance<br />
- Stalagmites now has a 600 base cast range, to match its DOTA counter-part<br />
* Enlarge still increases the range of this skill by 50/100/150, making the maximum range now 750, from 700</p>
<p>Pestilence:<br />
- Fixed a bug causing Swarm to not hit stealth units if they go stealth before the projectile hits them</p>
<p>Swiftblade:<br />
- Swift Slashes will no longer hit siege units or gadgets</p>
<p>Bug fixes:<br />
- Fixed a missing icon for Kongor&#8217;s Cheese
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/heroes-of-newerth-patch-0-1-39-released/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Heroes of Newerth: DotA Hero Equivalents</title>
		<link>http://borkweb.com/story/heroes-of-newerth-dota-hero-equivalents</link>
		<comments>http://borkweb.com/story/heroes-of-newerth-dota-hero-equivalents#comments</comments>
		<pubDate>Sat, 08 Aug 2009 18:58:43 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Art, Gaming, & Fun]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[General Gaming]]></category>
		<category><![CDATA[DotA]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[heroes of newerth]]></category>
		<category><![CDATA[hon]]></category>
		<category><![CDATA[s2games]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=724</guid>
		<description><![CDATA[As I&#8217;ve posted many times on this blog, I&#8217;m a huge fan of DotA (Defense of the Ancients). It is only right that I suddenly become enamored with Heroes of Newerth (HoN), a game by S2Games currently in beta that matches the functionality of DotA and adds a layer of awesomeness on top. I&#8217;ve played [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><a title="Heroes of Newerth" href="http://heroesofnewerth.com/"><img src="http://farm3.static.flickr.com/2473/3800655753_8757d47109_o.png" alt="hon_logo" width="336" height="300" /></a></div>
<p>As I&#8217;ve posted many times on this blog, I&#8217;m a huge fan of DotA (Defense of the Ancients).  It is only right that I suddenly become enamored with <a title="Heroes of Newerth" href="http://heroesofnewerth.com/">Heroes of Newerth</a> (HoN), a game by S2Games currently in beta that matches the functionality of DotA and adds a layer of awesomeness on top.</p>
<p>I&#8217;ve played a number of games so far and have found one of my biggest hurdles is re-learning the heroes in HoN.  Luckily, many of the heroes are simply ports of DotA heroes but learning who is who is also a slow process.  Here are heroes in HoN with their DotA equivalents:</p>
<h2 id="724_quick-links_1" >Quick Links</h2>
<p>Legion: <a href="#724_legion-agility-heroe_1">Agility</a> | <a href="#724_legion-intelligence-_1">Intelligence</a> | <a href="#724_legion-strength-hero_1">Strength</a></p>
<p>Hellbourne: <a href="#724_hellbourne-agility-h_1">Agility</a> | <a href="#724_hellbourne-intellige_1">Intelligence</a> | <a href="#724_hellbourne-strength-_1">Strength</a></p>
<h2 id="724_legion-agility-heroe_1" >Legion Agility Heroes</h2>
<p><a href="#724_quick-links_1" style="font-size:0.9em;">Back To Quick Links</a></p>
<table style="margin-bottom: 40px;">
<tr>
<th width="120">
<h3 id="724_hon-hero_1" >HoN Hero</h3>
</th>
<th width="50"></th>
<th width="120">
<h3 id="724_dota-hero_1" >DotA Hero</h3>
</th>
</tr>
<tr id="night_hound">
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3442/3801515854_1d6131999f_s.jpg"/><br />
			Night Hound
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/69/165704234_e075ea295d_s.jpg"/><br />
			Stealth Assassin
		</td>
</tr>
<tr id="swiftblade">
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3432/3801515884_d7772c4f68_s.jpg"/><br />
			Swiftblade
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/73/165703752_d4d62aa8a8_s.jpg"/><br />
			Juggernaut
		</td>
</tr>
<tr id="magebane">
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2471/3800695813_0e192853c6_s.jpg"/><br />
			Magebane
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/75/165703979_4bfa7794f1_s.jpg"/><br />
			Anti-Mage
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2643/3800695859_38145a5cf5_s.jpg"/><br />
			Moon Queen
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/57/165704063_581316626d_s.jpg"/><br />
			Moon Rider (Luna)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3444/3801516046_5f99734791_s.jpg"/><br />
			Valkyrie
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3576/3800735061_bce5634430_s.jpg"/><br />
			Priestess of The Moon (Mirana)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2630/3801516104_58fcb147b5_s.jpg"/><br />
			Wildsoul
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/54/165703794_485ac8ab09_s.jpg"/><br />
			Lone Druid (Syllabear)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3175/3800695913_25e7d5cc2d_s.jpg"/><br />
			Scout
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
</table>
<h2 id="724_legion-intelligence-_1" >Legion Intelligence Heroes</h2>
<p><a href="#724_quick-links_1" style="font-size:0.9em;">Back To Quick Links</a></p>
<table style="margin-bottom: 40px;">
<tr>
<th width="120">
<h3 id="724_hon-hero_2" >HoN Hero</h3>
</th>
<th width="50"></th>
<th width="120">
<h3 id="724_dota-hero_2" >DotA Hero</h3>
</th>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2442/3801520826_4809eb4312_s.jpg"/><br />
			Blacksmith
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/52/165704187_f7ef28b66e_s.jpg"/><br />
			Ogre Magi
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2595/3801520924_10c30c06e6_s.jpg"/><br />
			Thunderbringer
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2648/3800778149_e41a671a22_s.jpg"/><br />
			Lord of Olympia (Zeus)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3513/3800700733_2aed11ff1a_s.jpg"/><br />
			Ophelia
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/56/165704015_5aa2ca3a3a_s.jpg"/><br />
			Holy Knight (Chen)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2508/3800700779_41ea8b2e7a_s.jpg"/><br />
			Pollywog Priest
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/71/165704261_389ffddee6_s.jpg"/><br />
			Rhasta
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2582/3800700817_9c9b64bbee_s.jpg"/><br />
			Pyromancer
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/66/165704305_153c2182b2_s.jpg"/><br />
			Slayer (Lina Inverse)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2528/3801521092_4ebd7b9efb_s.jpg"/><br />
			Tempest
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/46/165704517_f1a0aeba06_s.jpg"/><br />
			Enigma
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2524/3801520880_15cda8dcc7_s.jpg"/><br />
			Nymphora
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2458/3801521132_b7a22a059d_s.jpg"/><br />
			Zephyr (Owlman)
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
</table>
<h2 id="724_legion-strength-hero_1" >Legion Strength Heroes</h2>
<p><a href="#724_quick-links_1" style="font-size:0.9em;">Back To Quick Links</a></p>
<table style="margin-bottom: 40px;">
<tr>
<th width="120">
<h3 id="724_hon-hero_3" >HoN Hero</h3>
</th>
<th width="50"></th>
<th width="120">
<h3 id="724_dota-hero_3" >DotA Hero</h3>
</th>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3424/3801521498_79f283501f_s.jpg"/><br />
			Armadon
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/44/165704199_e5d2833977_s.jpg"/><br />
			Bristleback
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2617/3801521564_256fa33f3c_s.jpg"/><br />
			Behemoth
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/71/165705032_b14c32e07b_s.jpg"/><br />
			Earthshaker
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2676/3801521640_5dcc6a6dd0_s.jpg"/><br />
			Hammerstorm
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/67/165703825_876df601c4_s.jpg"/><br />
			Rogue Knight (Sven)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3438/3801521702_a4a3c51c09_s.jpg"/><br />
			Jereziah
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/73/165703691_3f31715a51_s.jpg"/><br />
			Omniknight
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2516/3801521742_bcbb0c74ed_s.jpg"/><br />
			Legionnaire
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/57/165703757_2e129cbbd7_s.jpg"/><br />
			Axe
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3513/3800701547_238b6c021e_s.jpg"/><br />
			Pebbles
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/78/165704118_cb35f04a15_s.jpg"/><br />
			Stone Giant (Tiny)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2483/3800701595_6b3a64e8b4_s.jpg"/><br />
			Keeper of the Forest
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/64/165705057_576542c375_s.jpg"/><br />
			Treant Protector
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2538/3801521782_3097aeba73_s.jpg"/><br />
			Predator
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
</table>
<h2 id="724_hellbourne-agility-h_1" >Hellbourne Agility Heroes</h2>
<p><a href="#724_quick-links_1" style="font-size:0.9em;">Back To Quick Links</a></p>
<table style="margin-bottom: 40px;">
<tr>
<th width="120">
<h3 id="724_hon-hero_4" >HoN Hero</h3>
</th>
<th width="50"></th>
<th width="120">
<h3 id="724_dota-hero_4" >DotA Hero</h3>
</th>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2652/3800696081_c9c7e559e3_s.jpg"/><br />
			Chronos
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/50/165703812_40d28603fb_s.jpg"/><br />
			Faceless Void
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2521/3801516220_2526846bfc_s.jpg"/><br />
			Slither
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/46/165704073_d62f17ff5d_s.jpg"/><br />
			Venomancer
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3512/3800696167_137f82fda9_s.jpg"/><br />
			Blood Hunter
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/55/165704278_2b48571aa1_s.jpg"/><br />
			Bloodseeker
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3586/3800696267_d98f80b0f4_s.jpg"/><br />
			Soulstealer
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/50/165704254_832302b216_s.jpg"/><br />
			Shadow Fiend
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3468/3801516156_d5230ef1dd_s.jpg"/><br />
			Arachna
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2536/3800696203_ae7c4c47a1_s.jpg"/><br />
			The Madman
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2671/3800696311_433f9b0dbe_s.jpg"/><br />
			The Dark Lady
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
</table>
<h2 id="724_hellbourne-intellige_1" >Hellbourne Intelligence Heroes</h2>
<p><a href="#724_quick-links_1" style="font-size:0.9em;">Back To Quick Links</a></p>
<table style="margin-bottom: 40px;">
<tr>
<th width="120">
<h3 id="724_hon-hero_5" >HoN Hero</h3>
</th>
<th width="50"></th>
<th width="120">
<h3 id="724_dota-hero_5" >DotA Hero</h3>
</th>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2588/3800701023_03f7bc7cec_s.jpg"/><br />
			Defiler
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/71/165703714_b572d3ef9c_s.jpg"/><br />
			Death Prophet (Krobelus)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2433/3800701177_2e7412653b_s.jpg"/><br />
			Demented Shaman
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2570/3800894671_dcc7d4b000_s.jpg"/><br />
			Shadow Priest
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3418/3800701067_279ba22799_s.jpg"/><br />
			Glacius
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/66/165704088_ed403d213f_s.jpg"/><br />
			Crystal Maiden
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3450/3801521274_02c390507b_s.jpg"/><br />
			Hellbringer
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3555/3800888499_da4ec95028_s.jpg"/><br />
			Warlock
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2626/3844593879_8121caaf1f_s.jpg"/><br />
			Succubus
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/63/165705148_a64cd6a7e5_s.jpg"/><br />
			Bane Elemental
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2626/3801521444_59a6c63d00_s.jpg"/><br />
			Torturer
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/49/165704095_47b5a74369_s.jpg"/><br />
			Tormented Soul (Leshrac)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2523/3800701219_1b25604174_s.jpg"/><br />
			Voodoo Jester
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">~=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/76/165705196_8e015f3a5a_s.jpg"/><br />
			Witch Doctor
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2555/3844593853_eb4f46fffc_s.jpg"/><br />
			Wretched Hag
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/64/165703729_792f1c7950_s.jpg"/><br />
			Queen of Pain
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2431/3801521318_1801a773a3_s.jpg"/><br />
			Puppet Master
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
</table>
<h2 id="724_hellbourne-strength-_1" >Hellbourne Strength Heroes</h2>
<p><a href="#724_quick-links_1" style="font-size:0.9em;">Back To Quick Links</a></p>
<table style="margin-bottom: 40px;">
<tr>
<th width="120">
<h3 id="724_hon-hero_6" >HoN Hero</h3>
</th>
<th width="50"></th>
<th width="120">
<h3 id="724_dota-hero_6" >DotA Hero</h3>
</th>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3514/3800701645_cc324aa301_s.jpg"/><br />
			Accursed
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/58/165703970_1da07a3f4c_s.jpg"/><br />
			Lord of Avernus (Abaddon)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2627/3800701673_ffc933f754_s.jpg"/><br />
			Devourer
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/57/165703674_b393b31ad2_s.jpg"/><br />
			Butcher (Pudge)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2608/3845359996_007c5a8361_s.jpg"/><br />
			Magmus
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/57/165703686_1974ef5315_s.jpg"/><br />
			Sand King
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2600/3801522162_221f2d23a1_s.jpg"/><br />
			Pharaoh
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3481/3800924099_75fe7a1354_s.jpg"/><br />
			Clockwerk Goblin
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3580/3800701907_a300b2bfe4_s.jpg"/><br />
			Pestilence
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/69/165704145_171fbc8ab1_s.jpg"/><br />
			Slithereen Guard (Slardar)
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2658/3800701943_ff0b96b1e0_s.jpg"/><br />
			Warbeast
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			<img src="http://farm1.static.flickr.com/70/165704105_be53f39a80_s.jpg"/><br />
			Lycanthrope
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm3.static.flickr.com/2610/3800701735_162865c6ee_s.jpg"/><br />
			Electrician
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
<tr>
<td valign="middle" style="text-align:center;">
			<img src="http://farm4.static.flickr.com/3436/3801522080_a8c52b75da_s.jpg"/><br />
			Kraken
		</td>
<td valign="middle" style="font-size:2em;text-align:center;">=</td>
<td valign="middle" style="text-align:center;">
			No Equivalent
		</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/heroes-of-newerth-dota-hero-equivalents/feed</wfw:commentRss>
		<slash:comments>148</slash:comments>
		</item>
		<item>
		<title>Art: Self Portrait</title>
		<link>http://borkweb.com/story/art-self-portrait</link>
		<comments>http://borkweb.com/story/art-self-portrait#comments</comments>
		<pubDate>Wed, 29 Jul 2009 04:34:51 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Art, Gaming, & Fun]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[intuos3]]></category>
		<category><![CDATA[matt]]></category>
		<category><![CDATA[matthew batchelder]]></category>
		<category><![CDATA[portrait]]></category>
		<category><![CDATA[self portrait]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=717</guid>
		<description><![CDATA[I have finally decided to join the countless others out there and draw a self-portrait. Overall I don&#8217;t think it turned out too bad. Drawn with an Intuos 3 in Photoshop. Self Portrait by =borkweb on deviantART]]></description>
			<content:encoded><![CDATA[<p>I have finally decided to join the countless others out there and draw a self-portrait.  Overall I don&#8217;t think it turned out too bad.  Drawn with an Intuos 3 in Photoshop.</p>
<div style="text-align:center;">
<object width="450" height="492"><param name="movie" value="http://backend.deviantart.com/embed/view.swf" /><param name="flashvars" value="id=131294755&#038;width=1337" /><param name="allowScriptAccess" value="always" /><embed src="http://backend.deviantart.com/embed/view.swf" type="application/x-shockwave-flash" width="450" flashvars="id=131294755&#038;width=1337" height="492" allowscriptaccess="always"></embed></object><br /><a href="http://www.deviantart.com/deviation/131294755/">Self Portrait</a> by =<a class="u" href="http://borkweb.deviantart.com/">borkweb</a> on <a href="http://www.deviantart.com">deviant</a><a href="http://www.deviantart.com">ART</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/art-self-portrait/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Star Wars: The Old Republic E3 Trailer</title>
		<link>http://borkweb.com/story/star-wars-the-old-republic-e3-trailer</link>
		<comments>http://borkweb.com/story/star-wars-the-old-republic-e3-trailer#comments</comments>
		<pubDate>Tue, 02 Jun 2009 00:19:41 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Art, Gaming, & Fun]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[General Gaming]]></category>
		<category><![CDATA[bioware]]></category>
		<category><![CDATA[e3]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[lucasarts]]></category>
		<category><![CDATA[mmo]]></category>
		<category><![CDATA[mmorpg]]></category>
		<category><![CDATA[old republic]]></category>
		<category><![CDATA[star]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[trailer]]></category>
		<category><![CDATA[wars]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=700</guid>
		<description><![CDATA[Wow. Just wow. This cinematic trailer for Star Wars: The Old Republic looks awesome. Featured within the trailer are the Sith, Jedi, Bounty Hunter, and Soldier classes. I am seriously looking forward to this Massively Multi-player Online Game and have serious faith in Bioware&#8216;s capabilities.]]></description>
			<content:encoded><![CDATA[<p>Wow.  Just wow.  This cinematic trailer for <a href="http://www.swtor.com/">Star Wars: The Old Republic</a> looks awesome.  Featured within the trailer are the Sith, Jedi, Bounty Hunter, and Soldier classes.  I am seriously looking forward to this Massively Multi-player Online Game and have serious faith in <a href="http://www.bioware.com">Bioware</a>&#8216;s capabilities.</p>
<div class="gametrailers_embed_container" style="text-align:center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="gtembed" width="480" height="392"><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="true" /><param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=49936"/><param name="quality" value="high" /><embed src="http://www.gametrailers.com/remote_wrap.php?mid=49936" swLiveConnect="true" name="gtembed" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="480" height="392"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/star-wars-the-old-republic-e3-trailer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Literal Translation Music Videos</title>
		<link>http://borkweb.com/story/literal-translation-music-videos</link>
		<comments>http://borkweb.com/story/literal-translation-music-videos#comments</comments>
		<pubDate>Sat, 09 May 2009 12:39:36 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Art, Gaming, & Fun]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[ah ha]]></category>
		<category><![CDATA[arms wide open]]></category>
		<category><![CDATA[creed]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[literal]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music video]]></category>
		<category><![CDATA[take on me]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://borkweb.com/?p=691</guid>
		<description><![CDATA[We all know that music videos can be quite abstract and often times downright weird&#8230;the connection to the lyrics are often a stretch. Well, the guys over at DustFilms have taken a few music videos and have changed the lyrics to describe what is happening in the video. The result? Awesomeness! Check out one of [...]]]></description>
			<content:encoded><![CDATA[<p>We all know that music videos can be quite abstract and often times downright weird&#8230;the connection to the lyrics are often a stretch.  Well, the guys over at <a href="http://www.dustfilms.com">DustFilms</a> have taken a few music videos and have changed the lyrics to describe what is happening in the video.</p>
<p>The result?  Awesomeness!  Check out one of my favorites by those guys:</p>
<div style="text-align:center;">
<object width="448" height="376" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="ordie_player_e062d7b4d5"><param name="movie" value="http://player.ordienetworks.com/flash/fodplayer.swf" /><param name="flashvars" value="key=e062d7b4d5" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always"><embed width="448" height="376" flashvars="key=e062d7b4d5" allowfullscreen="true" allowscriptaccess="always" quality="high" src="http://player.ordienetworks.com/flash/fodplayer.swf" name="ordie_player_e062d7b4d5" type="application/x-shockwave-flash"></embed></param></object>
</div>
<p>DustFilms aren&#8217;t the only guys that are doing it though&#8230;there are some that try &#8211; many of them failing &#8211; but a few are worth while.  Check out this Creed literal video translation (my favorite non-DustFilms video):</p>
<div style="text-align:center;">
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/fMlA8nQ0bXc&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fMlA8nQ0bXc&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://borkweb.com/story/literal-translation-music-videos/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

