<?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"
	>

<channel>
	<title>The Web Guy</title>
	<atom:link href="http://www.intelliot.com/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://www.intelliot.com/tech</link>
	<description>Making technology work</description>
	<pubDate>Sun, 04 May 2008 01:22:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Word: Set 2 Columns, White Space on 2nd Half of Page, Create TM Symbol</title>
		<link>http://www.intelliot.com/tech/2008/05/03/word-set-2-columns-white-space-on-2nd-half-of-page-create-tm-symbol.html</link>
		<comments>http://www.intelliot.com/tech/2008/05/03/word-set-2-columns-white-space-on-2nd-half-of-page-create-tm-symbol.html#comments</comments>
		<pubDate>Sun, 04 May 2008 01:22:33 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Computer How To]]></category>

		<category><![CDATA[columns]]></category>

		<category><![CDATA[margins]]></category>

		<category><![CDATA[tips]]></category>

		<category><![CDATA[tm symbol]]></category>

		<category><![CDATA[whitespace]]></category>

		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/?p=172</guid>
		<description><![CDATA[In Microsoft Word&#8230;
How to set 2 columns
Click the columns button in the toolbar&#8211; it looks like 2 columns of text&#8211; and click the number of columns you want.
How to move margin up, for whitespace
On the left side, there&#8217;s a vertical ruler. Scroll to the bottom of the page, and find the margin indicator, by default [...]]]></description>
			<content:encoded><![CDATA[<p>In Microsoft Word&#8230;</p>
<p><strong>How to set 2 columns</strong></p>
<p>Click the columns button in the toolbar&#8211; it looks like 2 columns of text&#8211; and click the number of columns you want.</p>
<p><strong>How to move margin up, for whitespace</strong></p>
<p>On the left side, there&#8217;s a vertical ruler. Scroll to the bottom of the page, and find the margin indicator, by default about 1 inch from the bottom of the page. Click and drag it up to where you want.</p>
<p><strong>How to remove margin on second page</strong></p>
<p>This isn&#8217;t possible in older versions of Word. As a workaround, you can create a new document with different margins (Ctrl+N) and copy/cut and paste your content there.</p>
<p><strong>How to create TM symbol</strong></p>
<p>Type &#8482;. Open parenthesis, t, m, close parenthesis.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/05/03/word-set-2-columns-white-space-on-2nd-half-of-page-create-tm-symbol.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>C++ cin int infinite loop</title>
		<link>http://www.intelliot.com/tech/2008/05/01/c-cin-int-infinite-loop.html</link>
		<comments>http://www.intelliot.com/tech/2008/05/01/c-cin-int-infinite-loop.html#comments</comments>
		<pubDate>Fri, 02 May 2008 04:45:30 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[c]]></category>

		<category><![CDATA[cin]]></category>

		<category><![CDATA[infinite loop]]></category>

		<category><![CDATA[int]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/?p=171</guid>
		<description><![CDATA[There are some ridiculous things in C++, like the fact that there exists getc(), getch(), getche(), getchar(), and _getch() and they&#8217;re all different. Press Enter to Continue getch
If you&#8217;re doing cin of an integer, and the user enters a character, they&#8217;ll get stuck in an infinite loop. I found a good way to fix this [...]]]></description>
			<content:encoded><![CDATA[<p>There are some ridiculous things in C++, like the fact that there exists getc(), getch(), getche(), getchar(), and _getch() and they&#8217;re all different. Press Enter to Continue getch</p>
<p>If you&#8217;re doing cin of an integer, and the user enters a character, they&#8217;ll get stuck in an infinite loop. I found a good way to fix this at <a href="http://bytes.com/forum/thread63094.html" target="_blank">bytes.com</a></p>
<blockquote><p>There are several possible ways to remove the unwanted<br />
characters.  Here&#8217;s one:</p>
<p>cin.clear();  /* reset stream state to &#8216;good&#8217; */<br />
cin.ignore(numeric_limits&lt;streamsize&gt;::max(), &#8216;\n&#8217;);</p>
<p>This means: &#8220;extract and discard all characters up<br />
to the first newline character, or the maximum possible<br />
number of characters in a stream, whichever occurs first.&#8221;</p>
<p>You&#8217;ll need to add:<br />
#include &lt;limits&gt; // for declaration of &#8216;numeric_limits&#8217;<br />
#include &lt;ios&gt;    // for declaration of &#8217;streamsize&#8217;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/05/01/c-cin-int-infinite-loop.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>C++ push_back: Cannot access private member declared in class</title>
		<link>http://www.intelliot.com/tech/2008/05/01/c-push_back-cannot-access-private-member-declared-in-class.html</link>
		<comments>http://www.intelliot.com/tech/2008/05/01/c-push_back-cannot-access-private-member-declared-in-class.html#comments</comments>
		<pubDate>Fri, 02 May 2008 02:30:06 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[c]]></category>

		<category><![CDATA[ifstream]]></category>

		<category><![CDATA[iostream]]></category>

		<category><![CDATA[ofstream]]></category>

		<category><![CDATA[private member]]></category>

		<category><![CDATA[push back]]></category>

		<category><![CDATA[push_back]]></category>

		<category><![CDATA[vectors]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/?p=170</guid>
		<description><![CDATA[Answer: ifstream cannot be copied (doesn&#8217;t have a copy constructor).
Solution: Don&#8217;t store an ifstream. If you must, then declare and create a copy constructor.
This help me figure out this error: Google Groups
]]></description>
			<content:encoded><![CDATA[<p>Answer: ifstream cannot be copied (doesn&#8217;t have a copy constructor).</p>
<p>Solution: Don&#8217;t store an ifstream. If you must, then declare and create a copy constructor.</p>
<p>This help me figure out this error: <a href="http://groups.google.com/group/comp.lang.c++.moderated/browse_thread/thread/66ab0e82e953dcc9" target="_blank">Google Groups</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/05/01/c-push_back-cannot-access-private-member-declared-in-class.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordPress&#8217;s Unique Secret Keys are Unencrypted!</title>
		<link>http://www.intelliot.com/tech/2008/04/28/wordpresss-unique-secret-keys-are-unencrypted.html</link>
		<comments>http://www.intelliot.com/tech/2008/04/28/wordpresss-unique-secret-keys-are-unencrypted.html#comments</comments>
		<pubDate>Tue, 29 Apr 2008 04:49:21 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/?p=169</guid>
		<description><![CDATA[They should use SSL (https)&#8230; but they&#8217;re not. So be careful!
http://wordpress.org/development/2008/04/wordpress-251/
]]></description>
			<content:encoded><![CDATA[<p>They should use SSL (https)&#8230; but they&#8217;re not. So be careful!</p>
<p>http://wordpress.org/development/2008/04/wordpress-251/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/04/28/wordpresss-unique-secret-keys-are-unencrypted.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>SVN Reference: Meanings of letters C and G</title>
		<link>http://www.intelliot.com/tech/2008/04/28/svn-reference-meanings-of-letters-c-and-g.html</link>
		<comments>http://www.intelliot.com/tech/2008/04/28/svn-reference-meanings-of-letters-c-and-g.html#comments</comments>
		<pubDate>Mon, 28 Apr 2008 18:12:06 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[c]]></category>

		<category><![CDATA[g]]></category>

		<category><![CDATA[letters]]></category>

		<category><![CDATA[svn reference]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/?p=168</guid>
		<description><![CDATA[svn update brings changes from the            repository into your working copy.  If no revision given,             it brings your working copy up-to-date with the         [...]]]></description>
			<content:encoded><![CDATA[<p><span><strong class="command">svn update</strong></span> brings changes from the            repository into your working copy.  If no revision given,             it brings your working copy up-to-date with the             <tt class="literal">HEAD</tt> revision.  Otherwise, it             synchronizes the working copy to the revision given by the             <tt class="option">&#8211;revision</tt> switch.</p>
<p>For each updated item a line will start with a             character reporting the action taken.  These characters             have the following meaning:</p>
<div class="variablelist">
<dl>
<dt><span class="term">A</span></dt>
<dd>Added</p>
</dd>
<dt><span class="term">D</span></dt>
<dd>Deleted</p>
</dd>
<dt><span class="term">U</span></dt>
<dd>Updated</p>
</dd>
<dt><span class="term">C</span></dt>
<dd>Conflict</p>
</dd>
<dt><span class="term">G</span></dt>
<dd>Merged</p>
</dd>
</dl>
</div>
<p>A character in the first column signifies an update             to the actual file, while updates to the file&#8217;s             properties are shown in the second column.</p>
<p>via <a href="http://svnbook.red-bean.com/en/1.0/re28.html" target="_blank">red-bean.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/04/28/svn-reference-meanings-of-letters-c-and-g.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Eee PC 900</title>
		<link>http://www.intelliot.com/tech/2008/04/15/eee-pc-900.html</link>
		<comments>http://www.intelliot.com/tech/2008/04/15/eee-pc-900.html#comments</comments>
		<pubDate>Wed, 16 Apr 2008 06:58:04 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[900 series]]></category>

		<category><![CDATA[asus]]></category>

		<category><![CDATA[eee pc]]></category>

		<category><![CDATA[small laptop]]></category>

		<category><![CDATA[toshiba libretto]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/?p=167</guid>
		<description><![CDATA[I&#8217;m looking forward to the Asus Eee PC 900. I&#8217;ve always been in love with small laptops, ever since obsessing over the Toshiba Libretto many years ago. Fortunately they&#8217;re cheaper nowadays, and the technology is far better, too. Life is great  
Here&#8217;s a video on YouTube of the 900 series hands-on. It will have [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m looking forward to the Asus Eee PC 900. I&#8217;ve always been in love with small laptops, ever since obsessing over the Toshiba Libretto many years ago. Fortunately they&#8217;re cheaper nowadays, and the technology is far better, too. Life is great <img src='http://www.intelliot.com/tech/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s a <a href="http://www.youtube.com/watch?v=aY2azHo0LAU" target="_blank">video</a> on YouTube of the 900 series hands-on. It will have multi-touch gestures and use Intel&#8217;s new Atom processor. I love small computers. It would be fun to play with one over the summer. Wow, I am seriously passionate about this stuff. I&#8217;ll watch the <a href="http://en.wikipedia.org/wiki/Eee_pc" target="_blank">Wikipedia article</a> closely for updates <img src='http://www.intelliot.com/tech/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/04/15/eee-pc-900.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>5 Things You Can Do To Ditch The Cable Company</title>
		<link>http://www.intelliot.com/tech/2008/04/13/5-things-you-can-do-to-ditch-the-cable-company.html</link>
		<comments>http://www.intelliot.com/tech/2008/04/13/5-things-you-can-do-to-ditch-the-cable-company.html#comments</comments>
		<pubDate>Mon, 14 Apr 2008 00:39:18 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/2008/04/13/5-things-you-can-do-to-ditch-the-cable-company.html</guid>
		<description><![CDATA[
Hulu
Joost
Miro
Network Websites
ABC
MTV
Discovery Channel / TLC / Animal Planet
Find Internet TV

What would you add to the list?
P.S. Ditch work for a year and live your dream.
]]></description>
			<content:encoded><![CDATA[<ol>
<li><a href="http://www.hulu.com/">Hulu</a></li>
<li><a href="http://www.joost.com/">Joost</a></li>
<li><a href="http://www.getmiro.com/">Miro</a></li>
<li>Network Websites<br />
<a href="http://www.abc.com/">ABC</a><br />
<a href="http://www.mtv.com/">MTV</a><br />
<a href="http://video.discovery.com/">Discovery Channel / TLC / Animal Planet</a></li>
<li><a href="http://www.findinternettv.com/">Find Internet TV</a></li>
</ol>
<p>What would you add to the list?</p>
<p>P.S. <a href="http://hubpages.com/hub/Ditch-Work-for-a-Year-and-Live-your-dream" target="_blank">Ditch work for a year and live your dream</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/04/13/5-things-you-can-do-to-ditch-the-cable-company.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Eclipse Find and Replace Newlines Regex</title>
		<link>http://www.intelliot.com/tech/2008/04/11/eclipse-find-and-replace-newlines-regex.html</link>
		<comments>http://www.intelliot.com/tech/2008/04/11/eclipse-find-and-replace-newlines-regex.html#comments</comments>
		<pubDate>Sat, 12 Apr 2008 02:00:00 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/2008/04/11/eclipse-find-and-replace-newlines-regex.html</guid>
		<description><![CDATA[Here&#8217;s a great page discussing the topic.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.eclipsezone.com/eclipse/forums/t64270.html" target="_blank">Here&#8217;s a great page discussing the topic.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/04/11/eclipse-find-and-replace-newlines-regex.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Inside the Black Box: Technological Innovation at Google by Jonathan Rosenberg</title>
		<link>http://www.intelliot.com/tech/2008/03/23/inside-the-black-box-technological-innovation-at-google-by-jonathan-rosenberg.html</link>
		<comments>http://www.intelliot.com/tech/2008/03/23/inside-the-black-box-technological-innovation-at-google-by-jonathan-rosenberg.html#comments</comments>
		<pubDate>Mon, 24 Mar 2008 06:05:39 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[black box]]></category>

		<category><![CDATA[innovation]]></category>

		<category><![CDATA[jonathan rosenberg]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/2008/03/23/inside-the-black-box-technological-innovation-at-google-by-jonathan-rosenberg.html</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/4zIaglJNPcY&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/4zIaglJNPcY&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/03/23/inside-the-black-box-technological-innovation-at-google-by-jonathan-rosenberg.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>StarCraft Battle.net AirLink 101 Lower Ping</title>
		<link>http://www.intelliot.com/tech/2008/03/21/starcraft-battlenet-airlink-101-lower-ping.html</link>
		<comments>http://www.intelliot.com/tech/2008/03/21/starcraft-battlenet-airlink-101-lower-ping.html#comments</comments>
		<pubDate>Sat, 22 Mar 2008 06:24:45 +0000</pubDate>
		<dc:creator>Elliot</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.intelliot.com/tech/2008/03/21/starcraft-battlenet-airlink-101-lower-ping.html</guid>
		<description><![CDATA[Open port 6112, both TCP and UDP, using Port Forwarding on your router. The difference is night and day! Didn&#8217;t work AT ALL without port forwarding, works excellently with it. I used to wonder why hosting StarCraft games worked so much better on my old dial-up modem than with DSL/Cable. Port forwarding on the NAT [...]]]></description>
			<content:encoded><![CDATA[<p>Open port 6112, both TCP and UDP, using Port Forwarding on your router. The difference is night and day! Didn&#8217;t work AT ALL without port forwarding, works excellently with it. I used to wonder why hosting StarCraft games worked so much better on my old dial-up modem than with DSL/Cable. Port forwarding on the NAT router is why!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliot.com/tech/2008/03/21/starcraft-battlenet-airlink-101-lower-ping.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
