<?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>EveryJoe &#187; Advanced</title>
	<atom:link href="http://www.everyjoe.com/tag/advanced/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.everyjoe.com</link>
	<description>Sports News - Tech Reviews - Entertainment - Life Tips for EveryJoe</description>
	<lastBuildDate>Wed, 09 Dec 2009 08:13:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google Your PC Using Find</title>
		<link>http://www.everyjoe.com/articles/google-your-pc-using-find-2/</link>
		<comments>http://www.everyjoe.com/articles/google-your-pc-using-find-2/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 12:00:56 +0000</pubDate>
		<dc:creator>Sravan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Cool Software]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[Google desktop search]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[piping]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search file content]]></category>
		<category><![CDATA[search inside files]]></category>
		<category><![CDATA[Windows desktop search]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/?p=1290</guid>
		<description><![CDATA[find is an elaborate search program with a number of features. Unlike the Google Desktop Search and locate, it doesn’t index anything but processes the request on the fly. Thus it is slower.
find is one of the most useful commands when you also have to search within unknown files and make further operations on the result set. It does a recursive search, looking in all subdirectories.
The first set of arguments is always the paths where the search should initiate. $ find /home /tmp &#60;remaining arguments&#62; would search based on the remaining arguments in /home, /tmp and all their subdirectories. If [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/google-your-pc-using-find-2/">Google Your PC Using Find</a></p>
]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Lucida Console;">find</span> is an elaborate search program with a number of features. Unlike the Google Desktop Search and <span style="font-family: Lucida Console;"><a title="That Damn PC: Locate, A Desktop Search Alternative" href="http://www.everyjoe.com/locate-a-desktop-search-alternative/" target="_self">locate</a></span>, it doesn’t index anything but processes the request on the fly. Thus it is slower.</p>
<p><span style="font-family: Lucida Console;">find</span> is one of the most useful commands when you also have to search within unknown files and make further operations on the result set. It does a recursive search, looking in all subdirectories.</p>
<p>The first set of arguments is always the paths where the search should initiate. <span style="font-family: Lucida Console;">$ find /home /tmp &lt;remaining arguments&gt;</span> would search based on the remaining arguments in /home, /tmp and all their subdirectories. If unspecified, the default path is taken as ‘.’, the current working directory.</p>
<p>To search for a specific filename pattern, <span style="font-family: Lucida Console;">–name &lt;regexp&gt;</span> is used as the next argument. <span style="font-family: Lucida Console;">$ find /home /tmp –name *.sh</span> returns all .SH files present in /home, /tmp and their subdirectories.</p>
<p>Instead of piping, to perform any operation on each of the results returned, <span style="font-family: Lucida Console;">–exec</span> is used. <span style="font-family: Lucida Console;">$ find /home /tmp –name *.sh –exec grep todo ‘{}’ \; –print</span><span style="font-family: verdana;"> searches for the string todo in the above returned files. </span><span style="font-family: Lucida Console;">grep</span> does the search and ‘{}’ implies that all results need to be processed. The <span style="font-family: Lucida Console;">–print</span> prints the final output, the actual lines containing the specified string in the files.</p>
<p><span style="font-family: verdana;">Instead of </span><span style="font-family: Lucida Console;">grep</span>, it could be <span style="font-family: Lucida Console;">chmod</span> or <span style="font-family: Lucida Console;">chown</span> or any operation that can be done of files. These above options are the most common use cases of <span style="font-family: Lucida Console;">find</span>.</p>
<p><span style="font-family: verda;">There are</span> a number of other options to refine the search like complex expressions with boolean operators, the maximum and minimum depth of subdirectories that need to be traversed, the modification times and permissions on files, the file types, etc. You can read about all these in the <a title="Unix Find Manual Page" href="http://unixhelp.ed.ac.uk/CGI/man-cgi?find">manual page</a>.</p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/google-your-pc-using-find-2/">Google Your PC Using Find</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/google-your-pc-using-find-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sysinternals Suite For Troubleshooting PCs</title>
		<link>http://www.everyjoe.com/articles/sysinternals-suite-for-troubleshooting-pcs-2/</link>
		<comments>http://www.everyjoe.com/articles/sysinternals-suite-for-troubleshooting-pcs-2/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 15:15:05 +0000</pubDate>
		<dc:creator>Sravan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Damn Blog]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Mark Russinovich]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Sysinternals]]></category>
		<category><![CDATA[Sysinternals suite]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[Troubleshooting PCs]]></category>
		<category><![CDATA[Troubleshooting Windows]]></category>
		<category><![CDATA[Windows Tips]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/?p=1236</guid>
		<description><![CDATA[Microsoft offers a suite of utilities called Sysinternals for free for troubleshooting your PC. The suite is far superior to many of the alternate freewares that are available.
Mark Russinovich, now a Fellow in Microsoft, originally developed them along with Bryce Cogswell when they were in the company Winternals Software. The company subsequently was acquired by Microsoft in mid 2006. Initially, many of the tools were not just freeware but were also accompanied with the source code. No longer, of course.
The utilities are categorized under File and Disk utilities, Networking utilities, Process utilities, Security utilities, System information, etc. The Windows Sysinternals [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/sysinternals-suite-for-troubleshooting-pcs-2/">Sysinternals Suite For Troubleshooting PCs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Microsoft offers a suite of utilities called Sysinternals for free for troubleshooting your PC. The suite is far superior to many of the alternate freewares that are available.</p>
<p>Mark Russinovich, now a Fellow in Microsoft, originally developed them along with Bryce Cogswell when they were in the company Winternals Software. The company subsequently was acquired by Microsoft in mid 2006. Initially, many of the tools were not just freeware but were also accompanied with the source code. No longer, of course.</p>
<p>The utilities are categorized under File and Disk utilities, Networking utilities, Process utilities, Security utilities, System information, etc. The <a title="Microsoft Windows Sysinternals" href="http://technet.microsoft.com/en-us/sysinternals/0e18b180-9b7a-4c49-8120-c47c5a693683.aspx" target="_blank">Windows Sysinternals website</a> is one of the rare treasure troves of the Microsoft Website that is rich with learning resources and regular updates.</p>
<p>The suite at 9.6 MB includes close to 70 tools and every PC user should own them. <a title="Download Sysinternals Suite" href="http://download.sysinternals.com/Files/SysinternalsSuite.zip">Download the Sysinternal Suite now.</a> Why not, when they are freely available?</p>
<p>I will try to give you a detailed overview of various of these tools regularly from now on, so keep watching this space.</p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/sysinternals-suite-for-troubleshooting-pcs-2/">Sysinternals Suite For Troubleshooting PCs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/sysinternals-suite-for-troubleshooting-pcs-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Microsoft Windows 7 Beta</title>
		<link>http://www.everyjoe.com/articles/download-microsoft-windows-7-beta-2/</link>
		<comments>http://www.everyjoe.com/articles/download-microsoft-windows-7-beta-2/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 04:03:46 +0000</pubDate>
		<dc:creator>Sravan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Beta software]]></category>
		<category><![CDATA[Beta Testing]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Download Windows 7]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Partner Program]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Microsoft Windows 7]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/?p=1211</guid>
		<description><![CDATA[A couple of weeks ago, the Microsoft Windows 7 Beta Demo got leaked. One week ago, Jason wrote on the Microsoft Weblog that Windows 7 Beta is now available to Microsoft Partner Program.
On Jan 9, 2009, Microsoft Windows 7 Beta became available to all beta testers of the world with a catch that only 2.5 million complete downloads will be allowed (or something of that kind).
But now, unlimited number of people can download Windows 7 Beta from their website until 24th Jan, 2009 according to the Windows 7 Team blog.
If you want to try the beta software, be warned about the risks. [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/download-microsoft-windows-7-beta-2/">Download Microsoft Windows 7 Beta</a></p>
]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago, the <a title="That Damn PC: Microsoft Windows 7 Demo Leaked" href="http://www.everyjoe.com/articles/microsoft-windows-7-demo-leaked-2/">Microsoft Windows 7 Beta Demo</a> got leaked. One week ago, Jason wrote on the Microsoft Weblog that <a title="Microsoft Weblog: Windows 7 Now Available to Microsoft Partner Program" href="http://www.microsoftweblog.com/windows-7-now-available-to-microsoft-partner-program/" target="_blank">Windows 7 Beta is now available to Microsoft Partner Program</a>.</p>
<p>On Jan 9, 2009, Microsoft Windows 7 Beta became <strong>available to all beta testers</strong> of the world with a catch that only 2.5 million complete downloads will be allowed (or something of that kind).</p>
<p>But now, unlimited number of people can download Windows 7 Beta from their <a title="Microsoft Windows 7" href="http://www.microsoft.com/windows/windows-7/" target="_blank">website</a> until 24th Jan, 2009 according to <a title="Windows 7 Team Blog: Here is Where We Stand" href="http://windowsteamblog.com/blogs/windows7/archive/2009/01/10/here-s-where-we-stand.aspx" target="_blank">the Windows 7 Team blog</a>.</p>
<p>If you want to try the beta software, be warned about the risks. Your computer could crash and you could lose important files. The <a title="Microsoft Windows 7 Beta FAQ" href="http://www.microsoft.com/windows/windows-7/beta-faq.aspx" target="_blank">Windows 7 Beta FAQ</a> says that other risks are:</p>
<blockquote><p>Software that doesn’t install or work correctly, including anti-virus or security programs<br />
Printers, video cards, or other hardware that doesn’t work<br />
Problems accessing corporate or home networks<br />
Files may become corrupted</p></blockquote>
<p>Beta testing is not recommended to everyone, especially not to beginners. Read the FAQ and the Release Notes if you are interested.</p>
<p>I am downloading a copy right now.</p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/download-microsoft-windows-7-beta-2/">Download Microsoft Windows 7 Beta</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/download-microsoft-windows-7-beta-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Introducing Cygwin</title>
		<link>http://www.everyjoe.com/articles/introducing-cygwin-2/</link>
		<comments>http://www.everyjoe.com/articles/introducing-cygwin-2/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 12:00:27 +0000</pubDate>
		<dc:creator>Sravan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Cygwin & Unix]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix-based OSs]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows CE]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/introducing-cygwin/</guid>
		<description><![CDATA[Previously, I wrote that Cygwin provides an alternative to the windows shell, makes Unix-lovers feel more at home with Windows and vice-versa. That is only the partial truth.
The truth is Cygwin emulates Linux on Windows. If you replace the Windows background with any of the open-source wallpapers, hide the Windows task bar, and only run the cygwin terminal, you can almost cheat yourself that you&#8217;re running a Unix-based OS. This is thanks to a DLL named cygwin1.dll which is the actual Linux API emulation layer.
Cygwin is different from other utility packages providing Unix-like functionality like, say, UnxUtils because of the [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/introducing-cygwin-2/">Introducing Cygwin</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Previously, I wrote that <a href="http://www.everyjoe.com/windows-other-operating-systems-cygwin/" title="Windows, Other Operating Systems, Cygwin">Cygwin provides an alternative to the windows shell</a>, makes Unix-lovers feel more at home with Windows and vice-versa. That is only the partial truth.</p>
<p>The truth is Cygwin emulates Linux on Windows. If you replace the Windows background with any of the open-source wallpapers, hide the Windows task bar, and only run the cygwin terminal, you can almost cheat yourself that you&#8217;re running a Unix-based OS. This is thanks to <a href="http://www.everyjoe.com/fix-those-dll-errors/" title="Fix Those DLL Errors">a DLL</a> named cygwin1.dll which is the actual Linux API emulation layer.</p>
<p>Cygwin is different from other utility packages providing Unix-like functionality like, say, UnxUtils because of the emulation layer. Cygwin is not using the native Windows libraries directly for Unix-like utilities. That could mean a difference in the speeds of their execution, but we are not benchmarking anything here. This works better to learn Unix-based OSs.</p>
<p>There are also a number of Linux packages that can be installed on Cygwin after rebuilding them from source. These are the Windows-alternatives to the corresponding Linux tools and are not always available on utility packages that are similar to UnxUtils.</p>
<p>You can download the <a href="http://www.cygwin.com/setup.exe" title="Cygwin Setup">Cygwin setup file</a> from their home page. We&#8217;ll <a href="http://www.everyjoe.com/how-to-install-cygwin/" title="That Damn PC: How to Install Cygwin">run through the installation</a> next time; it should work on most Windows OSs except Windows CE (handheld). I&#8217;ve heard about Cygwin-Vista compatibility issues but that could mean errors here and there and not complete incompatibility.</p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/introducing-cygwin-2/">Introducing Cygwin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/introducing-cygwin-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Windows, Other Operating Systems, Cygwin</title>
		<link>http://www.everyjoe.com/articles/windows-other-operating-systems-cygwin-2/</link>
		<comments>http://www.everyjoe.com/articles/windows-other-operating-systems-cygwin-2/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 13:30:38 +0000</pubDate>
		<dc:creator>Sravan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Cygwin & Unix]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Red Hat Linux]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[SUSE]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Unix-based OSs]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/windows-other-operating-systems-cygwin/</guid>
		<description><![CDATA[The Windows operating system is very different from most other operating systems. Red Hat Linux, GNU/Linux, Ubuntu, Debian, SUSE share some core philosophies with UNIX, and are thus called Unix-based OSs. In that way, they all follow a common set of standards which are very unlike Windows&#8217; own and that is one of the reasons for the wide-spread anti-Windows sentiment.
Windows is primarily popular for its apparent user-friendliness. Unix-based OSs are chosen for their open and active communities. Windows is sufficient for &#8216;general purposes&#8217; like listening to songs, playing games, making documents, sending mail, browsing the Internet. Unix-based OSs may seem more [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/windows-other-operating-systems-cygwin-2/">Windows, Other Operating Systems, Cygwin</a></p>
]]></description>
			<content:encoded><![CDATA[<p>The Windows operating system is very different from most other operating systems. Red Hat Linux, GNU/Linux, Ubuntu, Debian, SUSE share some core philosophies with UNIX, and are thus called Unix-based OSs. In that way, they all follow a common set of standards which are very unlike Windows&#8217; own and that is one of the reasons for the wide-spread anti-Windows sentiment.</p>
<p>Windows is primarily popular for its apparent user-friendliness. Unix-based OSs are chosen for their open and active communities. Windows is sufficient for &#8216;general purposes&#8217; like listening to songs, playing games, making documents, sending mail, browsing the Internet. Unix-based OSs may seem more convenient for &#8216;geeky purposes&#8217; like tweaking with the computer, writing programs, and pushing boundaries.</p>
<p>One feature that strongly separates Windows and Unix-based OSs is the shell. Windows has a command prompt from where various programs can be run using commands. It is more powerful than what most realize but is rarely used. On the contrary, users of Unix-based OSs greatly depend on their very powerful shell (which is run through a computer terminal or console) and run most programs through it.</p>
<p>Users forced to switch to Windows are commonly peeved by the limitations of the command prompt. Nevertheless there is an alternative to make them feel more at home: <strong>Cygwin</strong>. In fact, there are a few other alternatives, but Cygwin is what I&#8217;m very comfortable with and is also, IMHO, more exhaustive than others. Learning Cygwin is very useful even for Windows users to feel more comfortable when they ever encounter Unix-based OSs, or work in a multi-platform environment where you might have to <a title="Mixing UNIX With Windows" href="http://www.everyjoe.com/mixing-unix-with-windows/">mix Unix with Windows</a>.</p>
<p>From here on, we shall regularly try to <a title="That Damn PC: Introducing Cygwin" href="http://www.everyjoe.com/introducing-cygwin/">learn Cygwin</a>, a nibble at a time. Share this news to your friends who are interested in learning UNIX or Cygwin. We&#8217;ll decide on the bite-size based on the community response.</p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/windows-other-operating-systems-cygwin-2/">Windows, Other Operating Systems, Cygwin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/windows-other-operating-systems-cygwin-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What is the difference between SATA and IDE drives?</title>
		<link>http://www.everyjoe.com/articles/what-is-the-difference-between-sata-and-ide-drives-2/</link>
		<comments>http://www.everyjoe.com/articles/what-is-the-difference-between-sata-and-ide-drives-2/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 14:58:22 +0000</pubDate>
		<dc:creator>Kiven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/what-is-the-difference-between-sata-and-ide-drives/</guid>
		<description><![CDATA[You might be wondering what is the difference between SATA and traditional IDE hard drives? The first thing you&#8217;ll notice is the interface/connectors of the drive itself. SATA drives have a single cable with a small connector, while an IDE drive will have a wider flat ribbon cable. SATA drives also boast faster data transfer rate but read your motherboard&#8217;s manual if it does support SATA drives. Otherwise, you&#8217;re stuck with an IDE drive.

Source
Post from: EveryJoe
What is the difference between SATA and IDE drives?
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/what-is-the-difference-between-sata-and-ide-drives-2/">What is the difference between SATA and IDE drives?</a></p>
]]></description>
			<content:encoded><![CDATA[<p>You might be wondering what is the difference between SATA and traditional IDE hard drives? The first thing you&#8217;ll notice is the interface/connectors of the drive itself. SATA drives have a single cable with a small connector, while an IDE drive will have a wider flat ribbon cable. SATA drives also boast faster data transfer rate but read your motherboard&#8217;s manual if it does support SATA drives. Otherwise, you&#8217;re stuck with an IDE drive.</p>
<p><span id="more-898"></span></p>
<p><a href="http://www.pctechbytes.com/faqs/hard-drive.htm">Source</a></p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/what-is-the-difference-between-sata-and-ide-drives-2/">What is the difference between SATA and IDE drives?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/what-is-the-difference-between-sata-and-ide-drives-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build Your Own High Definition PC</title>
		<link>http://www.everyjoe.com/articles/build-your-own-high-definition-pc-2/</link>
		<comments>http://www.everyjoe.com/articles/build-your-own-high-definition-pc-2/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 13:44:54 +0000</pubDate>
		<dc:creator>Kiven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/build-your-own-high-definition-pc/</guid>
		<description><![CDATA[In case you havent noticed, We&#8217;re living in a high-definition world. From games to movies and with a new generation of affordable, high-quality HD components flooding into the world of PCs, it&#8217;s about time your very own PC gets into the world of High Definition.
Unfortunately, great HD systems still cost a fortune. However, if you&#8217;ve got the skills to assemble your own machine, you can save a bundle by building an HD-capable Media Center PC that can bring you pristine video plus amazing gaming. 

Whether you&#8217;re recording free, over-the-air HDTV, playing Blu-ray Disc movies, or making light edits to your [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/build-your-own-high-definition-pc-2/">Build Your Own High Definition PC</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In case you havent noticed, We&#8217;re living in a high-definition world. From games to movies and with a new generation of affordable, high-quality HD components flooding into the world of PCs, it&#8217;s about time your very own PC gets into the world of High Definition.</p>
<p>Unfortunately, great HD systems still cost a fortune. However, if you&#8217;ve got the skills to assemble your own machine, you can save a bundle by building an HD-capable Media Center PC that can bring you pristine video plus amazing gaming. <span id="more-873"></span></p>
<blockquote><p>
Whether you&#8217;re recording free, over-the-air HDTV, playing Blu-ray Disc movies, or making light edits to your HD home videos, a well-built high-def system does it all. For this demonstration, I&#8217;m building a PC that will complement my living room entertainment system. Feel free to mix and match choices for your own needs. Heavy gamers, especially, should aim higher on the video card and processor.</p></blockquote>
<p>Read the full article via <a href="http://www.pcworld.com/article/id,143531/article.html">PC World</a></p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/build-your-own-high-definition-pc-2/">Build Your Own High Definition PC</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/build-your-own-high-definition-pc-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PC Heat Management</title>
		<link>http://www.everyjoe.com/articles/pc-heat-management-2/</link>
		<comments>http://www.everyjoe.com/articles/pc-heat-management-2/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 16:30:22 +0000</pubDate>
		<dc:creator>Kiven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/pc-heat-management/</guid>
		<description><![CDATA[Some of you may have, unfortunately, experienced this on your older system that have been working fine for a long time. One day, it just randomly locks up, requiring a hard reboot. You hit the reset button, and things go smoothly for another few hours (or even days), then it locks up again. The system &#8220;hangs&#8221; become more frequent over time. You may be having heat management issues due to, yes, dust in your chassis and parts.


What you&#8217;re experiencing might be a computer allergy. At least, that&#8217;s what we used to call it in the shop I worked in. Computers, [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/pc-heat-management-2/">PC Heat Management</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Some of you may have, unfortunately, experienced this on your older system that have been working fine for a long time. One day, it just randomly locks up, requiring a hard reboot. You hit the reset button, and things go smoothly for another few hours (or even days), then it locks up again. The system &#8220;hangs&#8221; become more frequent over time. You may be having heat management issues due to, yes, dust in your chassis and parts.</p>
<p><span id="more-870"></span></p>
<blockquote><p>
What you&#8217;re experiencing might be a computer allergy. At least, that&#8217;s what we used to call it in the shop I worked in. Computers, it seems, are allergic to dust.</p>
<p>Dust buildup, or even constant use, can lead to heat-related, or thermal, failures. You should take a good look at the computer, inside and out, and eliminate any and all dust you find.</p>
<p>If your computer&#8217;s case has dust covers over its fans, unplug the PC and use a Shop-Vac to clean them. You can also use the Vac, assisted by a can of compressed air, to suck all the dust out of the inside of the case. Use the air to blast the dust free, and hold the nozzle of the Vac close to the tip of the air can&#8217;s blaster. Be careful not to get the Vac nozzle too close to the PC&#8217;s internals, as you might accidentally suck up a jumper or, if the Vac isn&#8217;t grounded, cause a discharge of static and blow a chip.</p>
<p>With your can of air, pay special attention to fans on the graphics card, the CPU cooler, and the chipset (if any). If air alone can&#8217;t clean the parts, you might have to remove them and flush them clean with an aerosol can of electronics cleaner (available at most self-respecting electronics stores).</p>
<p>If you do remove the CPU cooler, take care to clean all of the thermal compound from the top of the CPU and the contact plate of the cooler. Apply a new glob of thermal compound to the top of the CPU and spread it around evenly before replacing the cooler.</p>
<p>If that solves your lockups, you&#8217;re all set. </p></blockquote>
<p><a href="http://www.extremetech.com/article2/0,1697,2270414,00.asp">Source</a></p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/pc-heat-management-2/">PC Heat Management</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/pc-heat-management-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix those DLL Errors</title>
		<link>http://www.everyjoe.com/articles/fix-those-dll-errors-2/</link>
		<comments>http://www.everyjoe.com/articles/fix-those-dll-errors-2/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 15:50:49 +0000</pubDate>
		<dc:creator>Kiven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/fix-those-dll-errors/</guid>
		<description><![CDATA[DLL errors are some of the most common, frustrating, and complicated windows errors to troubleshoot and resolve. Fixing a DLL error is rarely as easy as replacing the DLL, something that I don&#8217;t recommend doing even if it does fix the problem.

Below is a list of the 5 most common DLL errors that computer users are seeing right now with links to easy to follow, step-by-step solutions that anyone can handle! 
Hal.dll &#8211; &#8220;Missing Or Corrupt Hal.dll&#8221;
The error &#8220;Missing or corrupt hal.dll&#8221; and other hal.dll errors like it are often caused by boot.ini or hal.dll file issues. This error message [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/fix-those-dll-errors-2/">Fix those DLL Errors</a></p>
]]></description>
			<content:encoded><![CDATA[<p>DLL errors are some of the most common, frustrating, and complicated windows errors to troubleshoot and resolve. Fixing a DLL error is rarely as easy as replacing the DLL, something that I don&#8217;t recommend doing even if it does fix the problem.</p>
<p><span id="more-862"></span></p>
<p>Below is a list of the 5 most common DLL errors that computer users are seeing right now with links to easy to follow, step-by-step solutions that anyone can handle! </p>
<p>Hal.dll &#8211; &#8220;Missing Or Corrupt Hal.dll&#8221;<br />
The error &#8220;Missing or corrupt hal.dll&#8221; and other hal.dll errors like it are often caused by boot.ini or hal.dll file issues. This error message usually appears as &#8220;Windows could not start because the following file is missing or corrupt &#8211; Windows root\system32\hal.dll. Please re-install a copy of the above file.&#8221; </p>
<p>Ntdll.dll &#8211; &#8220;Unknown Hard Error Ntdll.dll&#8221;<br />
In almost all cases, ntdll.dll errors are caused by software programs, not the operating system. Common error messages include &#8220;STOP: C0000221 unknown hard error \SystemRoot\System32\ntdll.dll&#8221;, &#8220;NTDLL.DLL Error!&#8221; and others. </p>
<p><a href="http://pcsupport.about.com/od/findtheproblem/tp/most-common-dll-errors.htm">Read the fill article here.</a></p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/fix-those-dll-errors-2/">Fix those DLL Errors</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/fix-those-dll-errors-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Drive Imaging</title>
		<link>http://www.everyjoe.com/articles/drive-imaging-2/</link>
		<comments>http://www.everyjoe.com/articles/drive-imaging-2/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 15:54:28 +0000</pubDate>
		<dc:creator>Kiven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.thatdamnpc.com/drive-imaging/</guid>
		<description><![CDATA[It is a scary thought but your hard drive could stop functioning at any moment. Will you be ready? If you&#8217;ve got a drive image, you&#8217;ll save not only your data but your apps, drivers, and all the settings that make your machine personal.
You may never have experienced a drive failure or become so corrupted that your data was beyond retrieval, but that doesn&#8217;t mean you never will. And think of this: If your system ever fails in a hardware or software disaster, will you really have time to reinstall Windows and all your applications and tweak all your OS [...]<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/drive-imaging-2/">Drive Imaging</a></p>
]]></description>
			<content:encoded><![CDATA[<p>It is a scary thought but your hard drive could stop functioning at any moment. Will you be ready? If you&#8217;ve got a drive image, you&#8217;ll save not only your data but your apps, drivers, and all the settings that make your machine personal.</p>
<p>You may never have experienced a drive failure or become so corrupted that your data was beyond retrieval, but that doesn&#8217;t mean you never will. And think of this: If your system ever fails in a hardware or software disaster, will you really have time to reinstall Windows and all your applications and tweak all your OS and application settings? I&#8217;m guessing the answer is no. I certainly don&#8217;t. This is why you need a drive-imaging program that backs up your complete system—including all your data and applications—and can restore it all in minutes.</p>
<p><span id="more-843"></span></p>
<blockquote><p>
Traditional backup programs (we&#8217;ll be looking at those in the near future) back up your documents, photos, music, and spreadsheets. Drive-imaging programs do much more. They do back up your data, of course, but they also back up your applications, your whole Windows system, and all the low-level drivers and software that you normally never notice but without which Windows can&#8217;t manage. An ordinary backup program copies your files. A drive-imaging program makes a byte-by-byte duplicate of your full hard drive (or of one or more partitions if you&#8217;ve divided your physical drive into multiple logical drives), maintaining the identical data structure.</p>
<p>Hence, if your drive fails, you can pop in a new drive and restore your system to exactly the state it was in when you made the drive image. For that matter, if your system becomes unstable because you installed software that won&#8217;t uninstall cleanly, you simply write over the drive (or partition) with the stable system you were using a few days ago. You&#8217;ve probably noticed that Windows&#8217; System Restore often doesn&#8217;t restore your system because it doesn&#8217;t image your drive. Instead, it performs fancy tricks with the Windows Registry and other Windows files—tricks that work on a clean, simple system but are too complicated to perform reliably on a heavily used real-world system. Drive-imaging software, by contrast, always restores your system. </p></blockquote>
<p><a href="http://www.pcmag.com/article2/0,2817,2259168,00.asp"><br />
Read the full article here</a></p>
<p>Post from: <a href="http://www.everyjoe.com">EveryJoe</a></p>
<p><a href="http://www.everyjoe.com/articles/drive-imaging-2/">Drive Imaging</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.everyjoe.com/articles/drive-imaging-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>