<?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>jaimerios.com</title>
	<atom:link href="http://www.jaimerios.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.jaimerios.com</link>
	<description>My thoughts saved in UTF8</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:11:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>KVM, MacOSX and Windows</title>
		<link>http://www.jaimerios.com/?p=304</link>
		<comments>http://www.jaimerios.com/?p=304#comments</comments>
		<pubDate>Mon, 26 Jul 2010 17:11:29 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Black monitor]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=304</guid>
		<description><![CDATA[Windows Vista doesn't play well with KVM's when your screensaver locks out your computer and it's not the currently selected computer...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using a KVM to switch between my two workstations, but occasionally, Windows Vista kills one or both of my monitors.</p>
<p>I have two workstations at my office and I thought it would be nice to use one monitor, one keyboard and one mouse to switch between my two powerhouse computers: a Xeon 16-core MacPro and another 16-core Xeon HP Z800 computer.</p>
<p>Many months, and hours, have gone by using this contraption and I can say that I don&#8217;t think I would do this again unless I really had to.</p>
<p>The problem, which I found out seems to be a Windows issue, is that as soon as the computer locks out the user, it attempts to re-query for the monitor and if you happen to be on the other workstation, which is what usually happens if you have the security settings turned on, then the PC gets all freaked out.</p>
<p>You select the PC on the KVM and viola! &#8230; the PC is no longer viewable. When this happens to me, I have to use Remote Desktop to log into the PC and reboot it.</p>
<p>After a couple incidents, I learned quickly, not to have the computer lock me out while I am not logged in. It&#8217;s okay though to lock the computer or log out while you have the PC selected, just don&#8217;t do it while you are on the other computer.</p>
<p>There were a couple of posts on the Microsoft support site, stating that you need an Active KVM and not a passive one, which is what I have, but for my setup, no one makes an Active KVM that supports dual DVI (<a href="http://social.answers.microsoft.com/Forums/en-US/w7hardware/thread/84f41660-1933-4109-9b13-1ea8a1c27be7" target="_blank">MS Support Site Thread</a>).</p>
<p>My Mac on the other hand doesn&#8217;t seem to be suffering the same problem the PC has. Hopefully, Microsoft will fix this. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=304</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning house</title>
		<link>http://www.jaimerios.com/?p=305</link>
		<comments>http://www.jaimerios.com/?p=305#comments</comments>
		<pubDate>Sat, 26 Jun 2010 18:17:44 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=305</guid>
		<description><![CDATA[Today I am actually taking time to clean the house. And with that, I traded in my Xbox 360 games.
I finally bought myself a PS3 and I &#8230; Love &#8230; It!
The only games I have left for the Xbox is Halo and Gears of War. The only reason why I haven&#8217;t sold off the beige [...]]]></description>
			<content:encoded><![CDATA[<p>Today I am actually taking time to clean the house. And with that, I traded in my Xbox 360 games.</p>
<p>I finally bought myself a PS3 and I &#8230; Love &#8230; It!</p>
<p>The only games I have left for the Xbox is Halo and Gears of War. The only reason why I haven&#8217;t sold off the beige game console is because of GOW.</p>
<p>Now that I have the PS3&#8230; which has been a couple of weeks now, I haven&#8217;t turned on the Xbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=305</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning up those CRT warnings in Visual Studio</title>
		<link>http://www.jaimerios.com/?p=301</link>
		<comments>http://www.jaimerios.com/?p=301#comments</comments>
		<pubDate>Thu, 17 Jun 2010 14:43:49 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CRT]]></category>
		<category><![CDATA[printf]]></category>
		<category><![CDATA[templated]]></category>
		<category><![CDATA[_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=301</guid>
		<description><![CDATA[When you need to clean up the CRT warnings about unsecure functions, like printf or sprintf, in favor for secure functions like printf_s or sprintf_s, you don&#8217;t have to scour through all of your code to clean up the warnings. 
You can declare the following for Visual Studio builds and the functions are overridden with [...]]]></description>
			<content:encoded><![CDATA[<p>When you need to clean up the CRT warnings about unsecure functions, like printf or sprintf, in favor for secure functions like printf_s or sprintf_s, you don&#8217;t have to scour through all of your code to clean up the warnings. </p>
<p>You can declare the following for Visual Studio builds and the functions are overridden with templated versions that are secure:<br />
#ifdef _MSC_VER<br />
	#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1<br />
#endif</p>
<p>This is useful if you have a C++ cross platform file where you don&#8217;t want to create macros to have one function for the Mac and the other version for Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=301</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using regex to replace a path</title>
		<link>http://www.jaimerios.com/?p=240</link>
		<comments>http://www.jaimerios.com/?p=240#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:42:57 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[TextWrangler]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=240</guid>
		<description><![CDATA[This is for me, not you, a reference for me. So if you are wondering why I wrote this&#8230; it&#8217;s because it&#8217;s for me.
Here is a regex string I used in TextWrangler to search and replace paths in a Xcode project file&#8230; you know, the one that is inside the .xcodeproj bundle&#8230;
Search string:
\.\./\.\./development/.+/mac/macos_10\.4/dylib/
Replace with:
Whatever you [...]]]></description>
			<content:encoded><![CDATA[<p>This is for me, not you, a reference for me. So if you are wondering why I wrote this&#8230; it&#8217;s because it&#8217;s for me.</p>
<p>Here is a regex string I used in TextWrangler to search and replace paths in a Xcode project file&#8230; you know, the one that is inside the .xcodeproj bundle&#8230;</p>
<p>Search string:<br />
\.\./\.\./development/.+/mac/macos_10\.4/dylib/</p>
<p>Replace with:<br />
Whatever you like&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=240</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Aaaagh!</title>
		<link>http://www.jaimerios.com/?p=274</link>
		<comments>http://www.jaimerios.com/?p=274#comments</comments>
		<pubDate>Mon, 08 Feb 2010 17:09:28 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=274</guid>
		<description><![CDATA[
Oh, and if that wasn&#8217;t enough&#8230;.

]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/632pCs5rLDw&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/632pCs5rLDw&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p>Oh, and if that wasn&#8217;t enough&#8230;.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/MQ3wgX2Oruo&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/MQ3wgX2Oruo&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=274</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s gonna work?</title>
		<link>http://www.jaimerios.com/?p=217</link>
		<comments>http://www.jaimerios.com/?p=217#comments</comments>
		<pubDate>Mon, 08 Feb 2010 02:19:56 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[What's New]]></category>
		<category><![CDATA[Project planning]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=217</guid>
		<description><![CDATA[How do you make team-work work?]]></description>
			<content:encoded><![CDATA[<p>My son used to love the TV show, &#8220;The Wonder Pets&#8221;. In that show they have a recurring theme and a song to go along with it: &#8220;What&#8217;s gonna work&#8230; team-work!&#8221;.</p>
<p>Now for those who are new here, or who don&#8217;t already know, I work in software development. These days, almost all types of development require some form of team work, except for the poor guys who used to work at 3D Realms that were expected to code like they were living in the 90&#8217;s.</p>
<p>Splitting work between team members who have the same skill set is an difficult task. The reason being is that most developers tend to have a different style of programming between one another. So when one developer encounters another developers code, they may break &#8220;Rule 0&#8243; from the &#8220;C++ Coding Standards : Rules, Guidelines, and Best Practices&#8221; book, written by Herb Shutter and Andrei Alexandrescu.</p>
<p><b>Rule 0: Don&#8217;t sweat the small stuff</b><br />
Wow! This rule is so simple&#8230; so powerful&#8230; So, why is it so hard to live by?</p>
<p>My guess is that for many developers perusing through code, the setup and layout of the code makes it easy, or hard, to read. So, if you are used to prefixing your pointer variables with a lower-case p and someone on your team is using plain words to describe the variable, I can understand how it hurts trying to read someone else&#8217;s code that may or may not jive with your brain. Comfy code formatting is like the cozy blue blanket for developers&#8230; Stop sucking your thumb!</p>
<p>Dev&#8217;ies are willing to spend the time, and shamefully submit code, that is may only be different by a couple of spaces or tabs. I will admit that I have broken this rule myself&#8230; with a big grin on my face while I&#8217;m committing such offense, but in the few cases where I have done this, it has been with code that has had it&#8217;s ownership transferred to me and I have authoritative rights to do with it as I please <img src='http://www.jaimerios.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So there!</p>
<p>Now back to team-work&#8230;</p>
<p>Working with other team members can be tough since it means we have to give up a part of ourselves to work with others and sometimes compromise our workflow so that everyone is happy and that no one feels negated.</p>
<p>Likewise, the &#8216;OTHERS&#8217; have to give a little to receive a little&#8230; but remember that they can&#8217;t read your mind, so, you too have to let them know how you feel and respectfully tell them your ideas. I&#8217;m not suggesting that you have a Jerry Springer like meeting where people show how they feel deep down inside when you altered their code or comments and start flinging chairs at each other. Save that for TV where you can get paid for doing that! </p>
<p>I&#8217;m suggesting that if something doesn&#8217;t jive, let your team know, but think before you speak&#8230; Ask yourself, was there a good reason that developer took out your code or changed your comments or decided to change the spacing? You may be surprised with the answer. And if the answer is in violation of Rule 0, then smack them over the head with official &#8220;Offenses to Coding&#8221; baseball bat! It&#8217;s both fun and theraputic <img src='http://www.jaimerios.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Till next time, happy batting&#8230; I mean&#8230; Happy Coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=217</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I like this!</title>
		<link>http://www.jaimerios.com/?p=267</link>
		<comments>http://www.jaimerios.com/?p=267#comments</comments>
		<pubDate>Thu, 14 Jan 2010 18:43:56 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[What's New]]></category>
		<category><![CDATA[ACR]]></category>
		<category><![CDATA[Remington ACR]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=267</guid>
		<description><![CDATA[I found this on the www.thefirearmblog.com website and I like it! 
]]></description>
			<content:encoded><![CDATA[<p>I found this on the <a href="http://www.thefirearmblog.com/blog" target=-"_blank">www.thefirearmblog.com</a> website and I like it! <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/dLy3xABAsEc&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/dLy3xABAsEc&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=267</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sniffing paint primer</title>
		<link>http://www.jaimerios.com/?p=264</link>
		<comments>http://www.jaimerios.com/?p=264#comments</comments>
		<pubDate>Thu, 14 Jan 2010 02:30:44 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Not-so-funny]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[stepwise.com]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=264</guid>
		<description><![CDATA[How do you morn the loss of a website you like? You blog about it while listening to Cinderella.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m battling the smell of paint primer. My guest room is getting redone and the walls have just been treated with primer, making my whole house smell.</p>
<p>So, I wanted to spend a few minutes browsing some of my favorite sites. Something I haven&#8217;t done in 8 months being inundated with C++ work.</p>
<p>So, I figure that I can only handle maybe 20 minutes of this smell before I get too sick, being that my office is right next to the room that is getting worked on.</p>
<p>Well, guess what. I just discovered today, that stepwise.com is down. Where have I been? I felt sad. I actually liked that site, and now, it&#8217;s gone.</p>
<p>Goodbye stepwise.com. I loved you like a distant relative. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=264</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPodRip</title>
		<link>http://www.jaimerios.com/?p=259</link>
		<comments>http://www.jaimerios.com/?p=259#comments</comments>
		<pubDate>Mon, 23 Nov 2009 15:29:57 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Not-so-funny]]></category>
		<category><![CDATA[Apple Developer]]></category>
		<category><![CDATA[iPodRip]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=259</guid>
		<description><![CDATA[I came across this article about iPodRip, where the owner of the company actually sent a passionate letter directly to Steve Jobs. To my surprise, Steve actually replied; read more about it here
]]></description>
			<content:encoded><![CDATA[<p>I came across this article about iPodRip, where the owner of the company actually sent a passionate letter directly to Steve Jobs. To my surprise, Steve actually replied; <a href="http://gizmodo.com/5408729/steve-jobs-responds-to-passionate-app-developer-curtly" target="_blank">read more about it here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=259</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;If the comments are ugly, the code is ugly&#8221;</title>
		<link>http://www.jaimerios.com/?p=256</link>
		<comments>http://www.jaimerios.com/?p=256#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:06:45 +0000</pubDate>
		<dc:creator>Jaime</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://www.jaimerios.com/?p=256</guid>
		<description><![CDATA[I read this and said to myself, this is so true. 
Thinking about this, if you don&#8217;t take the time to think about the comments, there is a good chance that the code below/next to/above the comments wasn&#8217;t well thought out either.
]]></description>
			<content:encoded><![CDATA[<p>I read this and said to myself, <a href="http://www.itworld.com/development/84780/if-comments-are-ugly-code-ugly" target="_blank">this is so true. </a></p>
<p>Thinking about this, if you don&#8217;t take the time to think about the comments, there is a good chance that the code below/next to/above the comments wasn&#8217;t well thought out either.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaimerios.com/?feed=rss2&amp;p=256</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
