<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CEUNQ30ycSp7ImA9WhVUFUw.&quot;"><id>tag:blogger.com,1999:blog-5374017</id><updated>2012-05-20T06:11:32.399-05:00</updated><category term="Personal" /><category term="LINQ" /><category term="Visual Studio" /><category term="Vista" /><category term="Contest" /><category term="ESRB" /><category term="FW: FW: FW:" /><category term="World of Warcraft" /><category term="Amazon.com" /><category term="Cute" /><category term="Windows Identity Foundation" /><category term="Sitefinity" /><category term="Workarounds" /><category term="Management" /><category term="Employment" /><category term="Blogger" /><category term="Game Development" /><category term="XNA" /><category term="ASP.NET" /><category term="Politics" /><category term="Testing" /><category term="C++" /><category term="Piracy" /><category term="Ektron CMS" /><category term="Development" /><category term="PDC2008" /><category term="Games" /><category term="Atheism" /><category term="DallasTechFest" /><category term="Terraria" /><category term="RomTerraria" /><category term="Song Parodies" /><category term="Consoles" /><category term="OpenAL" /><category term="Visual Basic" /><category term="Humor" /><category term="Rant" /><category term="ESA" /><category term="DarkGDK" /><category term="Content Pipeline" /><category term="Real-Life Bugs" /><category term="Blog" /><category term="Automation" /><category term="SiN Episodes" /><title>Rom's Rants</title><subtitle type="html">Free-Roaming Hostility From A QA/Developer Perspective.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://romsteady.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>1180</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/cbBeZ" /><feedburner:info uri="blogspot/cbbez" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;A0INQHg8fCp7ImA9WhVWFE0.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-4926917279866505294</id><published>2012-04-25T22:06:00.000-05:00</published><updated>2012-04-25T22:06:31.674-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-25T22:06:31.674-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ASP.NET" /><title>HOWTO: POST a file to an .ASHX generic handler</title><content type="html">&lt;b&gt;Problem:&lt;/b&gt;&lt;br /&gt;
You want to be able to POST a file from a generic HTML form to a generic ASP.NET handler (.ashx).&lt;br /&gt;
&lt;br /&gt;
Solution:&lt;br /&gt;
First, make sure that your file input control on your HTML form has a name.&amp;nbsp; If it doesn't have a name, you won't be able to access the file on the server side and it will appear not to have uploaded.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;input &lt;b&gt;name="uploadedFile"&lt;/b&gt; id="uploadedFile" type="file" /&amp;gt; &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Second, make sure that your form action has an enctype parameter set to "multipart/form-data."&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;form action="Upload.ashx" method="post" &lt;b&gt;enctype="multipart/form-data"&lt;/b&gt; /&amp;gt; &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Now in your HTTP handler, you can either access that file by the name you provided it on the form:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;context.Request.Files["uploadedFile"]&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
...or you can iterate through the files by key...&lt;br /&gt;
&lt;br /&gt;

&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
foreach (string f in context.Request.Files.AllKeys)&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;context.Request.Files[f].SaveAs(&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;HttpContext.Current.Server.MapPath("~/App_Data/" + ...));&lt;br /&gt;
}&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-4926917279866505294?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fPQ5htN33DCWJTWyxtnxo6o_xLA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fPQ5htN33DCWJTWyxtnxo6o_xLA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fPQ5htN33DCWJTWyxtnxo6o_xLA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fPQ5htN33DCWJTWyxtnxo6o_xLA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/KtRhBbBdvdU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/4926917279866505294/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=4926917279866505294" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4926917279866505294?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4926917279866505294?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/KtRhBbBdvdU/howto-post-file-to-ashx-generic-handler.html" title="HOWTO: POST a file to an .ASHX generic handler" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/04/howto-post-file-to-ashx-generic-handler.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEINRns4cCp7ImA9WhVRGEo.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-8062357073478745393</id><published>2012-03-27T14:29:00.000-05:00</published><updated>2012-03-27T14:29:57.538-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-27T14:29:57.538-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>Forgive the silence...</title><content type="html">Sorry that I've been so silent this month.&amp;nbsp; Between my grandmother passing at the beginning of the month and me scrambling to catch up from work after getting back from the funeral, I'm not exactly on top of my game.&lt;br /&gt;
&lt;br /&gt;
I'm hoping to return in force in April.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-8062357073478745393?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/XfNJU0-2l9w7CB5Bn0el57Y2sLk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XfNJU0-2l9w7CB5Bn0el57Y2sLk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/XfNJU0-2l9w7CB5Bn0el57Y2sLk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XfNJU0-2l9w7CB5Bn0el57Y2sLk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/0uzQ0W4GmMc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/8062357073478745393/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=8062357073478745393" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/8062357073478745393?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/8062357073478745393?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/0uzQ0W4GmMc/forgive-silence.html" title="Forgive the silence..." /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/03/forgive-silence.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUMR3k4fCp7ImA9WhRbF0g.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-1483417551096655052</id><published>2012-02-08T09:33:00.003-06:00</published><updated>2012-02-08T19:51:26.734-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-08T19:51:26.734-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Minor RomTerraria Update</title><content type="html">In this release:&lt;br /&gt;
&lt;br /&gt;
- Fixes some minor incompatibilities with 1.1.2.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-1483417551096655052?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ylWiCKc53u11--OZamqodWVES1Y/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ylWiCKc53u11--OZamqodWVES1Y/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ylWiCKc53u11--OZamqodWVES1Y/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ylWiCKc53u11--OZamqodWVES1Y/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/3H_osSwIzGk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/1483417551096655052/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=1483417551096655052" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1483417551096655052?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1483417551096655052?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/3H_osSwIzGk/minor-romterraria-update.html" title="Minor RomTerraria Update" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/02/minor-romterraria-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUMR3k_fSp7ImA9WhRbF0g.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-9217659864425941732</id><published>2012-02-08T08:51:00.002-06:00</published><updated>2012-02-08T19:51:26.745-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-08T19:51:26.745-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Back In Action</title><content type="html">My machine is set up in a temporary location in the new condo now, and I've already found the root cause for several of the issues that have been affecting people in RomTerraria.&lt;br /&gt;
&lt;br /&gt;
I'll have the patch up either tonight or tomorrow.&amp;nbsp; Keep those auto-updaters ready...&lt;br /&gt;
&lt;br /&gt;
Also, does anyone know if the retail version of Terraria will require Steam or not?&amp;nbsp; I need to know so I can properly update my protection mechanism to work with retail.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-9217659864425941732?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KIHnbOZP9bO621yAJ46yW-GboY4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KIHnbOZP9bO621yAJ46yW-GboY4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KIHnbOZP9bO621yAJ46yW-GboY4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KIHnbOZP9bO621yAJ46yW-GboY4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/fSokIkuVKp8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/9217659864425941732/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=9217659864425941732" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/9217659864425941732?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/9217659864425941732?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/fSokIkuVKp8/back-in-action.html" title="Back In Action" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/02/back-in-action.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MNRX47cCp7ImA9WhRUFE8.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-7878968455797706483</id><published>2012-01-24T12:24:00.002-06:00</published><updated>2012-01-24T12:24:54.008-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-24T12:24:54.008-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>Move (Almost) Complete</title><content type="html">The movers will be at my condo sometime within the next hour to unload the truck containing all my belongings.&amp;nbsp; It will take a few additional days to get unpacked and settled, but I can't wait to get back into the swing of things.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-7878968455797706483?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jTcblMt9bdKWpAlJcpYTz3w2FjM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jTcblMt9bdKWpAlJcpYTz3w2FjM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jTcblMt9bdKWpAlJcpYTz3w2FjM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jTcblMt9bdKWpAlJcpYTz3w2FjM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/XDg-htaWGJk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/7878968455797706483/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=7878968455797706483" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/7878968455797706483?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/7878968455797706483?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/XDg-htaWGJk/move-almost-complete.html" title="Move (Almost) Complete" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/01/move-almost-complete.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MNRX47eCp7ImA9WhRUFE8.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-4994424595181738056</id><published>2012-01-20T12:22:00.002-06:00</published><updated>2012-01-24T12:24:54.000-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-24T12:24:54.000-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>Ad Hominem</title><content type="html">I love ad hominem attacks against me.&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
When I get attacked for who I am or what I do for a living rather than getting the substance of my argument attacked, I consider it a win.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-4994424595181738056?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/A-0n9YF49Z4XkVqTHlxStdutsQM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/A-0n9YF49Z4XkVqTHlxStdutsQM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/A-0n9YF49Z4XkVqTHlxStdutsQM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/A-0n9YF49Z4XkVqTHlxStdutsQM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/ZhZenWrx1MY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/4994424595181738056/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=4994424595181738056" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4994424595181738056?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4994424595181738056?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/ZhZenWrx1MY/ad-hominem.html" title="Ad Hominem" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/01/ad-hominem.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMNQnwyeyp7ImA9WhRVGE4.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-4662606132327088571</id><published>2012-01-17T15:08:00.000-06:00</published><updated>2012-01-17T15:08:13.293-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-17T15:08:13.293-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Terraria 1.1.2 and RomTerraria</title><content type="html">I have no idea if the &lt;a href="http://www.terrariaonline.com/threads/terraria-1-1-2.76786/" target="_blank"&gt;1.1.2 release of Terraria&lt;/a&gt; that was released today is compatible with RomTerraria or not.&lt;br /&gt;
&lt;br /&gt;
If it isn't compatible, I can't fix it until February 1. I'm not going to even have a broadband connection at home until Thursday night, and my computer won't be in up here from Dallas until January 30.&lt;br /&gt;
&lt;br /&gt;
Sorry about the inconvenience.&amp;nbsp; If there are bugs out there that I'm not aware of, please reply to this post with them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-4662606132327088571?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Xd36nzfB1bGFzmYq_fdayyIkW6w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Xd36nzfB1bGFzmYq_fdayyIkW6w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Xd36nzfB1bGFzmYq_fdayyIkW6w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Xd36nzfB1bGFzmYq_fdayyIkW6w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/51-m1Cjw9_E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/4662606132327088571/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=4662606132327088571" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4662606132327088571?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4662606132327088571?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/51-m1Cjw9_E/terraria-112-and-romterraria.html" title="Terraria 1.1.2 and RomTerraria" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>4</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/01/terraria-112-and-romterraria.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEAARX04cCp7ImA9WhRWGU0.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-616868965209548015</id><published>2012-01-06T21:25:00.003-06:00</published><updated>2012-01-06T21:25:44.338-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-06T21:25:44.338-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Stealth Update</title><content type="html">Minor update tonight to allow smaller maps.&lt;br /&gt;
&lt;br /&gt;
See you guys in Seattle.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-616868965209548015?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-HOiiMukB75aqA9qAIYreuEAaOA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-HOiiMukB75aqA9qAIYreuEAaOA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-HOiiMukB75aqA9qAIYreuEAaOA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-HOiiMukB75aqA9qAIYreuEAaOA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/vjuV4YEj0yI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/616868965209548015/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=616868965209548015" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/616868965209548015?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/616868965209548015?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/vjuV4YEj0yI/stealth-update.html" title="Stealth Update" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/01/stealth-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YESX84cSp7ImA9WhRWF04.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-5238158114992080100</id><published>2012-01-04T22:51:00.003-06:00</published><updated>2012-01-04T22:51:48.139-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-04T22:51:48.139-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Last RomTerraria Update Before The Move</title><content type="html">&lt;a href="http://www.romsteady.net/rtinstall/publish.htm" target="_blank"&gt;In this build&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
- Higher quality minimap&lt;br /&gt;
- Minimap remains centered on all resolutions&lt;br /&gt;
- Minimap colors of solid bricks are now a closer representation of the actual color &lt;br /&gt;
&lt;br /&gt;
As a reminder, after you install RomTerraria, it does appear in your Start menu inside the "Michael Russell" folder.&lt;br /&gt;
&lt;br /&gt;
Also, &lt;a href="http://hosted.romsteady.net/RomTerraria2-01042012.zip" target="_blank"&gt;the source code has been updated&lt;/a&gt;.&amp;nbsp; No new updates until after January 24.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-5238158114992080100?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/65tp6WAmYhrIg_BAEz-X2L_3MOI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/65tp6WAmYhrIg_BAEz-X2L_3MOI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/65tp6WAmYhrIg_BAEz-X2L_3MOI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/65tp6WAmYhrIg_BAEz-X2L_3MOI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/4F5TdVlMWBk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/5238158114992080100/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=5238158114992080100" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/5238158114992080100?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/5238158114992080100?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/4F5TdVlMWBk/last-romterraria-update-before-move.html" title="Last RomTerraria Update Before The Move" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/01/last-romterraria-update-before-move.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEFRngyfip7ImA9WhRWFU8.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-2325944336649425526</id><published>2012-01-02T10:43:00.001-06:00</published><updated>2012-01-02T10:43:37.696-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-02T10:43:37.696-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>January's Minimal Posting Schedule</title><content type="html">Here's my tentative schedule for this month.&lt;br /&gt;
&lt;br /&gt;
Wednesday night, I'm going to post my most recent source code for RomTerraria.&amp;nbsp; The reason being is that after Friday, I won't be able to make any further changes to RomTerraria or make any updates to the software until almost February.&lt;br /&gt;
&lt;br /&gt;
Saturday, I fly up to Seattle to start my new job.&amp;nbsp; I'll still have net access, but only from the office and from my mobile phone for two to three weeks, plus my machine won't arrive until February 1 when the movers get up there.&lt;br /&gt;
 &lt;br /&gt;
I will not be as responsive as I'd like over the next month, but I'm looking forward to coming back re-energized in February.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-2325944336649425526?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ofjB9vEmV-A0itUc6ZZwoL5S04w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ofjB9vEmV-A0itUc6ZZwoL5S04w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ofjB9vEmV-A0itUc6ZZwoL5S04w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ofjB9vEmV-A0itUc6ZZwoL5S04w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/-GUFZcj47hk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/2325944336649425526/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=2325944336649425526" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/2325944336649425526?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/2325944336649425526?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/-GUFZcj47hk/januarys-minimal-posting-schedule.html" title="January's Minimal Posting Schedule" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2012/01/januarys-minimal-posting-schedule.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUMSH8zfCp7ImA9WhRWEE4.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-1012301172168072968</id><published>2011-12-27T19:54:00.006-06:00</published><updated>2011-12-27T19:54:49.184-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-27T19:54:49.184-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>RomTerraria Update (Now With Lava Cleanup)</title><content type="html">Update for &lt;a href="http://www.romsteady.net/rtinstall/publish.htm" target="_blank"&gt;RomTerraria&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
- Stronger warning if you try to enable lava rain.&lt;br /&gt;
- Option to remove all lava in the top quarter of your map.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-1012301172168072968?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aUN6EBMzhgnx1TCLMiOKGnVy0Oc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aUN6EBMzhgnx1TCLMiOKGnVy0Oc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aUN6EBMzhgnx1TCLMiOKGnVy0Oc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aUN6EBMzhgnx1TCLMiOKGnVy0Oc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/9qrZPGBvPLE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/1012301172168072968/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=1012301172168072968" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1012301172168072968?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1012301172168072968?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/9qrZPGBvPLE/romterraria-update-now-with-lava.html" title="RomTerraria Update (Now With Lava Cleanup)" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>5</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/romterraria-update-now-with-lava.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIER3s-eip7ImA9WhRXFks.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-2941348292688721771</id><published>2011-12-23T12:21:00.001-06:00</published><updated>2011-12-23T12:21:46.552-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-23T12:21:46.552-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Song Parodies" /><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>Twisted Christmas Carols</title><content type="html">I like writing off-kilter song parodies.&amp;nbsp; It's a fun hobby.&amp;nbsp; Here's one that I wrote yesterday and posted to &lt;a href="http://www.shacknews.com/chatty?id=27326173#item_27326173" target="_blank"&gt;Shacknews&lt;/a&gt; which I find rather seasonal...&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;span class="jt_lime"&gt;Time To Bury Christmas&lt;/span&gt;&lt;/i&gt; - to the tune of "A Holly Jolly Christmas"
&lt;br /&gt;
&lt;br /&gt;
Now it's time to bury Christmas,
&lt;br /&gt;
It's the best time of the year,
&lt;br /&gt;
Stash his toe beneath the snow
&lt;br /&gt;
And get me another beer
&lt;br /&gt;
&lt;br /&gt;
Now it's time to bury Christmas
&lt;br /&gt;
Dragging Saint Nick by the feet
&lt;br /&gt;
Broke my axe off in his ass
&lt;br /&gt;
Now he's just dead meat
&lt;br /&gt;
&lt;br /&gt;
Oh ho
&lt;br /&gt;
The sled does glow
&lt;br /&gt;
Burning so brightly;
&lt;br /&gt;
Reindeer will fly no more;
&lt;br /&gt;
Deer jerky for me!
&lt;br /&gt;
Now it's time to bury Christmas
&lt;br /&gt;
And in case you didn't hear,
&lt;br /&gt;
Tell the coppers
&lt;br /&gt;
And we're gonna
&lt;br /&gt;
Bury your ass next year!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-2941348292688721771?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/iKdj6LlJH4fXgd65eqF_SShXlN8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iKdj6LlJH4fXgd65eqF_SShXlN8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/iKdj6LlJH4fXgd65eqF_SShXlN8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iKdj6LlJH4fXgd65eqF_SShXlN8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/aWGj-BDigs8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/2941348292688721771/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=2941348292688721771" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/2941348292688721771?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/2941348292688721771?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/aWGj-BDigs8/twisted-christmas-carols.html" title="Twisted Christmas Carols" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/twisted-christmas-carols.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQCSXwyeip7ImA9WhRXFUs.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-3479824285768786691</id><published>2011-12-21T17:03:00.000-06:00</published><updated>2011-12-22T09:39:28.292-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-22T09:39:28.292-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Employment" /><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>Replace Me</title><content type="html">Since I'm leaving &lt;a href="http://www.mpiweb.org/"&gt;MPI&lt;/a&gt;, I need a replacement.&amp;nbsp; Well, two actually, but they're focusing on the development side at the moment.&amp;nbsp; If you're interested in applying and live in the Dallas/Fort Worth area, &lt;a href="http://tbe.taleo.net/NA7/ats/careers/requisition.jsp?org=MPIWEB&amp;amp;cws=4&amp;amp;rid=20&amp;amp;source=indeed"&gt;go to Taleo and apply&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
[Updated 12/22 9:33am with a link.]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-3479824285768786691?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RDj6q7TuhwjLj9s4HRwsAoG51aw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RDj6q7TuhwjLj9s4HRwsAoG51aw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RDj6q7TuhwjLj9s4HRwsAoG51aw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RDj6q7TuhwjLj9s4HRwsAoG51aw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/n7aTIMM0YRQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/3479824285768786691/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=3479824285768786691" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3479824285768786691?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3479824285768786691?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/n7aTIMM0YRQ/replace-me.html" title="Replace Me" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/replace-me.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQARn44eSp7ImA9WhRXFUs.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-1984703995440989866</id><published>2011-12-17T17:23:00.002-06:00</published><updated>2011-12-22T09:39:07.031-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-22T09:39:07.031-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Yes, I'm Aware...</title><content type="html">RomTerraria currently launches 1.1 instead of 1.1.1.

It's a mistake on my part, but I cannot fix it until tomorrow night because I am 2,000 miles from my PC.

I will have the issue fixed tomorrow when I get back.&lt;br /&gt;
&lt;br /&gt;
[Update: I forgot to post that this particular issue had been fixed.&amp;nbsp; Those responsible have been sacked.]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-1984703995440989866?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pjDBJpa-VBP0cM0jj6SDl-eZeZc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pjDBJpa-VBP0cM0jj6SDl-eZeZc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pjDBJpa-VBP0cM0jj6SDl-eZeZc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pjDBJpa-VBP0cM0jj6SDl-eZeZc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/-JF4HyoR9Dk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/1984703995440989866/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=1984703995440989866" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1984703995440989866?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1984703995440989866?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/-JF4HyoR9Dk/yes-im-aware.html" title="Yes, I'm Aware..." /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/yes-im-aware.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQMQHw6cSp7ImA9WhRXFUs.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-7458863711851923670</id><published>2011-12-16T12:03:00.001-06:00</published><updated>2011-12-22T09:39:41.219-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-22T09:39:41.219-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>No Updates Until Monday</title><content type="html">Real life is intruding. Will post an update to RomTerraria as soon as I am able. In the meantime, do not use the "shrink textures" option, as it is broken in 1.1.1.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-7458863711851923670?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/piQhMX5izFidqA6t7BYfF9sX5xg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/piQhMX5izFidqA6t7BYfF9sX5xg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/piQhMX5izFidqA6t7BYfF9sX5xg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/piQhMX5izFidqA6t7BYfF9sX5xg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/uvGuJWHDLG0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/7458863711851923670/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=7458863711851923670" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/7458863711851923670?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/7458863711851923670?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/uvGuJWHDLG0/no-updates-until-monday.html" title="No Updates Until Monday" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/no-updates-until-monday.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8HR309fyp7ImA9WhRQF08.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-536228099895255835</id><published>2011-12-12T15:01:00.001-06:00</published><updated>2011-12-12T15:03:56.367-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-12T15:03:56.367-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>RomTerraria and Eyefinity</title><content type="html">I found the root cause of the ultra-wide-screen Eyefinity issues with Terraria and RomTerraria.&lt;br /&gt;
&lt;br /&gt;
If your horizontal resolution is greater than 1920 pixels, a piece of math in Terraria.Main.InitTargets() will cause the render target creation process to fail.&lt;br /&gt;
&lt;br /&gt;
I'll work on a solution tonight.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-536228099895255835?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/z7RBZcy-D-VwZyOBKyNFKupZZIA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/z7RBZcy-D-VwZyOBKyNFKupZZIA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/z7RBZcy-D-VwZyOBKyNFKupZZIA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/z7RBZcy-D-VwZyOBKyNFKupZZIA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/ie7yAoP5GFY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/536228099895255835/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=536228099895255835" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/536228099895255835?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/536228099895255835?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/ie7yAoP5GFY/romterraria-and-eyefinity.html" title="RomTerraria and Eyefinity" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>6</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/romterraria-and-eyefinity.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04GQHg5fCp7ImA9WhRQFks.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-4495795461809975866</id><published>2011-12-12T00:04:00.001-06:00</published><updated>2011-12-12T00:05:21.624-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-12T00:05:21.624-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Last RomTerraria Update of the Weekend</title><content type="html">&lt;a href="http://www.romsteady.net/rtinstall/publish.htm"&gt;In this build&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
- Stack traces will now include all inner exceptions to assist in debugging Eyefinity and other issues.&lt;br /&gt;
&lt;br /&gt;
I won't be able to look at any stack traces until late Monday, but please post them here.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-4495795461809975866?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/s2xwT66Su6jmn4haB8nRHQBT8yU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/s2xwT66Su6jmn4haB8nRHQBT8yU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/s2xwT66Su6jmn4haB8nRHQBT8yU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/s2xwT66Su6jmn4haB8nRHQBT8yU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/1d22JJVV9qQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/4495795461809975866/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=4495795461809975866" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4495795461809975866?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/4495795461809975866?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/1d22JJVV9qQ/last-romterraria-update-of-weekend.html" title="Last RomTerraria Update of the Weekend" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/last-romterraria-update-of-weekend.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8EQ38zcCp7ImA9WhRQFk4.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-3049235512888314948</id><published>2011-12-11T14:19:00.001-06:00</published><updated>2011-12-11T14:20:02.188-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-11T14:20:02.188-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Another RomTerraria Update</title><content type="html">&lt;a href="http://www.romsteady.net/rtinstall/publish.htm"&gt;In this build&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
- Additional code was put in place to remove invalid resolutions from the in-game menu.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-3049235512888314948?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vnrzFllhA9npp7374oMftxbXA1s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vnrzFllhA9npp7374oMftxbXA1s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vnrzFllhA9npp7374oMftxbXA1s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vnrzFllhA9npp7374oMftxbXA1s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/mLhMUi4Q5fg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/3049235512888314948/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=3049235512888314948" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3049235512888314948?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3049235512888314948?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/mLhMUi4Q5fg/another-romterraria-update.html" title="Another RomTerraria Update" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/another-romterraria-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkAASXo4fip7ImA9WhRQFk4.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-3499219349037255058</id><published>2011-12-11T09:24:00.001-06:00</published><updated>2011-12-11T14:19:08.436-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-11T14:19:08.436-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>Minor RomTerraria Update</title><content type="html">&lt;a href="http://www.romsteady.net/rtinstall/publish.htm"&gt;In this update&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
- Added a "Stack Traces" folder inside your My Documents\My Games\Terraria folder.&amp;nbsp; If the game crashes, a stack trace will be dropped in that folder, and you can copy the file into a response on a blog post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-3499219349037255058?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/rLRsnPXpmajCSqgbLgUbgawmgNk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rLRsnPXpmajCSqgbLgUbgawmgNk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/rLRsnPXpmajCSqgbLgUbgawmgNk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rLRsnPXpmajCSqgbLgUbgawmgNk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/XNcM3nUJJ44" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/3499219349037255058/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=3499219349037255058" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3499219349037255058?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3499219349037255058?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/XNcM3nUJJ44/minor-romterraria-update.html" title="Minor RomTerraria Update" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/minor-romterraria-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkAFRHk8eyp7ImA9WhRQFk4.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-5639816592447938397</id><published>2011-12-10T23:28:00.001-06:00</published><updated>2011-12-11T14:18:35.773-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-11T14:18:35.773-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>RomTerraria Update #2 for 1.1</title><content type="html">&lt;a href="http://www.romsteady.net/rtinstall/publish.htm"&gt;In this build&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
- Additional checkbox in place to allow you to downscale the size of the backgrounds by 75% at the expense of some visual issues for now.&amp;nbsp; The new backgrounds look great, but some of them take up to 16MB of VRAM each.&amp;nbsp; I'll work on the visual issues once I find a way to replace two behaviors.&lt;br /&gt;
&lt;br /&gt;
- Additional work to try to get Eyefinity working again.&amp;nbsp; If your Radeon card is properly set up for Eyefinity, please leave the resolution settings set to "&lt;span lang="EN"&gt;Let Terraria handle my game's resolution" and see if your resolution appears in the list.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span lang="EN"&gt;- CTRL Tooltips updated to work on new "workbench" tiles.&amp;nbsp; Still incomplete for all other tile types.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span lang="EN"&gt;Still working on map and performance enhancements.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-5639816592447938397?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RoSkuPOwWJPAdnhR3-LnHI6_vOQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RoSkuPOwWJPAdnhR3-LnHI6_vOQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RoSkuPOwWJPAdnhR3-LnHI6_vOQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RoSkuPOwWJPAdnhR3-LnHI6_vOQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/_Z_lOnaofpk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/5639816592447938397/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=5639816592447938397" title="8 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/5639816592447938397?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/5639816592447938397?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/_Z_lOnaofpk/romterraria-update-2-for-11.html" title="RomTerraria Update #2 for 1.1" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>8</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/romterraria-update-2-for-11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMASXw4fip7ImA9WhRXFUs.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-5596430342468119135</id><published>2011-12-09T09:13:00.001-06:00</published><updated>2011-12-22T09:40:48.236-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-22T09:40:48.236-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Amazon.com" /><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>Amazon.Rom</title><content type="html">Yes, the title of this post is a bad pun.&lt;br /&gt;
&lt;br /&gt;
I've accepted a position with &lt;a href="http://www.amazon.com/"&gt;Amazon.com&lt;/a&gt; in their Digital&amp;nbsp;Products division&amp;nbsp;starting January 9, 2012.&lt;br /&gt;
&lt;br /&gt;
I won't know what projects I can't continue working on until that date, but I'll be hard at work until then trying to keep my projects as up-to-date as possible.&lt;br /&gt;
&lt;br /&gt;
As you may have noticed, I've blogged very little about my &lt;a href="http://www.mpiweb.org/" target="_blank"&gt;current place of employment&lt;/a&gt; over the last five years.&amp;nbsp; I'll probably blog even less about Amazon, but I'm looking forward to the challenge.&lt;br /&gt;
&lt;br /&gt;
Also, if you consider yourself a senior level C#/ASP.NET developer who is looking for some hands-on management experience and you already live in the Dallas/Fort Worth area, &lt;a href="http://tbe.taleo.net/NA7/ats/careers/requisition.jsp?org=MPIWEB&amp;amp;cws=4&amp;amp;rid=20&amp;amp;source=indeed" target="_blank"&gt;go here and apply.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update 12/10 10:12am:&lt;/b&gt; I'm going to be moving to Seattle as well.&amp;nbsp; My last full day here in Dallas is January 6, 2012, and my wife will be following a couple of weeks later.&amp;nbsp; I also clarified the type of development experience that I'm looking for in whoever replaces me.&amp;nbsp; That should answer the questions that have been hitting my mailbox the most.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update 12/22 9:40am:&lt;/b&gt; Updated application URL.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-5596430342468119135?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WFeE5-eWRqZPLNyM2nLZpdNAprg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WFeE5-eWRqZPLNyM2nLZpdNAprg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WFeE5-eWRqZPLNyM2nLZpdNAprg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WFeE5-eWRqZPLNyM2nLZpdNAprg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/MTQ391Qt7hI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/5596430342468119135/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=5596430342468119135" title="7 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/5596430342468119135?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/5596430342468119135?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/MTQ391Qt7hI/amazonrom.html" title="Amazon.Rom" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>7</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/amazonrom.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8GQX46cSp7ImA9WhRQFk4.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-8141272114643328660</id><published>2011-12-01T14:07:00.001-06:00</published><updated>2011-12-11T14:20:20.019-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-11T14:20:20.019-06:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>RomTerraria Update #1 for Terraria 1.1</title><content type="html">I've made a simple update so that RomTerraria wouldn't crash outright with today's 1.1 release, but I haven't yet had a chance to test it because I'm at work for another four hours.&lt;br /&gt;
&lt;br /&gt;
If you get a chance to try it, reply to this post or &lt;a href="http://www.shacknews.com/chatty?id=27188734#item_27188734" target="_blank"&gt;over on ShackNews&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
If you already have it, should update automatically.&amp;nbsp; &lt;a href="http://www.romsteady.net/rtinstall/publish.htm" target="_blank"&gt;Otherwise, usual install point&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-8141272114643328660?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_GTk_jtO8WYV501Xnl4XO58b8fA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_GTk_jtO8WYV501Xnl4XO58b8fA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_GTk_jtO8WYV501Xnl4XO58b8fA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_GTk_jtO8WYV501Xnl4XO58b8fA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/ddTFHjHpvQk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/8141272114643328660/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=8141272114643328660" title="11 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/8141272114643328660?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/8141272114643328660?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/ddTFHjHpvQk/romterraria-update-1-for-terraria-11.html" title="RomTerraria Update #1 for Terraria 1.1" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>11</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/12/romterraria-update-1-for-terraria-11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE8FSHk9cCp7ImA9WhdUEEQ.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-8813225313850068551</id><published>2011-09-26T22:06:00.003-05:00</published><updated>2011-09-26T22:06:59.768-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-26T22:06:59.768-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>RomTerraria Development on Hold</title><content type="html">I'm temporarily shelving RomTerraria.&amp;nbsp; I'll still handle bugfixes and integration of select community features, but my own projects need to take priority in the short term.&lt;br /&gt;
&lt;br /&gt;
I'll resume development once Terraria 1.1 is released.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-8813225313850068551?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lWQHIr2UezwR3bxJHjblI3pdpAo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lWQHIr2UezwR3bxJHjblI3pdpAo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lWQHIr2UezwR3bxJHjblI3pdpAo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lWQHIr2UezwR3bxJHjblI3pdpAo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/UtpL2sI3z2Y" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/8813225313850068551/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=8813225313850068551" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/8813225313850068551?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/8813225313850068551?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/UtpL2sI3z2Y/romterraria-development-on-hold.html" title="RomTerraria Development on Hold" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/09/romterraria-development-on-hold.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4BQXo9cSp7ImA9WhdVGU0.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-3427981510620083917</id><published>2011-09-24T17:55:00.001-05:00</published><updated>2011-09-24T17:55:50.469-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-24T17:55:50.469-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="RomTerraria" /><category scheme="http://www.blogger.com/atom/ns#" term="Terraria" /><title>RomTerraria 2.0 Source Released</title><content type="html">You can get the &lt;a href="http://hosted.romsteady.net/RomTerraria2Src.zip"&gt;source code for RomTerraria 2.0 here&lt;/a&gt;.&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"&gt;&lt;img alt="Creative Commons License" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" style="border-width: 0;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span href="http://purl.org/dc/dcmitype/InteractiveResource" property="dct:title" rel="dct:type" xmlns:dct="http://purl.org/dc/terms/"&gt;RomTerraria&lt;/span&gt; is licensed under a &lt;a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"&gt;Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Please post and comments or fixes for the code in the comments to this post.&lt;br /&gt;
&lt;br /&gt;
Please don't hotlink to the source file.&amp;nbsp; Link to this post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-3427981510620083917?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BWbSSFFU6UIgxhwV2z3fQGuhry8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BWbSSFFU6UIgxhwV2z3fQGuhry8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BWbSSFFU6UIgxhwV2z3fQGuhry8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BWbSSFFU6UIgxhwV2z3fQGuhry8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/Q1q0F4TPFgE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/3427981510620083917/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=3427981510620083917" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3427981510620083917?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/3427981510620083917?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/Q1q0F4TPFgE/romterraria-20-source-released.html" title="RomTerraria 2.0 Source Released" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/09/romterraria-20-source-released.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkQMRHw9fyp7ImA9WhdVF08.&quot;"><id>tag:blogger.com,1999:blog-5374017.post-1572888410319928572</id><published>2011-09-22T14:39:00.002-05:00</published><updated>2011-09-22T14:39:45.267-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-22T14:39:45.267-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Sitefinity" /><title>Sitefinity 4 Control Templates Still Coming</title><content type="html">I've almost got my &lt;a href="http://romsteady.blogspot.com/2011/08/making-sitefinity-4-control-templates.html"&gt;generic Sitefinity 4 Control template&lt;/a&gt; complete.&lt;br /&gt;
&lt;br /&gt;
It will support most of the RadControl suite, and I'm ditching convention-over-configuration and shifting over to an attribute-based layout system.&amp;nbsp; For example, if you've got a string that requires HTML, you'd decorate it with:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;[FieldType(FieldType.Html)]&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
My goal is to have a revised alpha out next week and to have the component complete before &lt;a href="http://dallasgivecamp.org/"&gt;Dallas GiveCamp&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5374017-1572888410319928572?l=romsteady.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ekfDwZr0QjQx5sHQsNSs94w8oRQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ekfDwZr0QjQx5sHQsNSs94w8oRQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ekfDwZr0QjQx5sHQsNSs94w8oRQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ekfDwZr0QjQx5sHQsNSs94w8oRQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/cbBeZ/~4/5u2FMcO36PY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://romsteady.blogspot.com/feeds/1572888410319928572/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5374017&amp;postID=1572888410319928572" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1572888410319928572?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5374017/posts/default/1572888410319928572?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/cbBeZ/~3/5u2FMcO36PY/sitefinity-4-control-templates-still.html" title="Sitefinity 4 Control Templates Still Coming" /><author><name>Michael Russell</name><uri>http://www.blogger.com/profile/14404101180817070293</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://romsteady.blogspot.com/2011/09/sitefinity-4-control-templates-still.html</feedburner:origLink></entry></feed>

