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

<channel>
	<title>techallica</title>
	<atom:link href="http://techallica.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techallica.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 11 Mar 2009 18:06:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Remove link to comment authors website from wordpress Comments</title>
		<link>http://techallica.com/remove-link-to-comment-authors-websiteite-from-wordpress-comments/</link>
		<comments>http://techallica.com/remove-link-to-comment-authors-websiteite-from-wordpress-comments/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 02:26:39 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[What I learnt]]></category>

		<guid isPermaLink="false">http://techallica.com/remove-link-to-comment-authors-websiteite-from-wordpress-comments/</guid>
		<description><![CDATA[Are you tired of moderating, removing or editing the URLs of people who post comments in your wordpress blog? Are you sick of all the comment spammers who post those cookie cutter comments using scripts in your blog just to post links in your blog via the comment links to comment authors site? Well I [...]]]></description>
			<content:encoded><![CDATA[<p>Are you tired of moderating, removing or editing the URLs of people who post comments in your wordpress blog? Are you sick of all the comment spammers who post those cookie cutter comments using scripts in your blog just to post links in your blog via the comment links to comment authors site? Well I was! And thatâ€™s when I decided that I would hack the wordpress code a little bit to totally disable linking to commenterâ€™s site from the comments posted in the blog.<span id="more-21"></span></p>
<p>The link to commenterâ€™s site does serve some good purposes like letting the comment poster link to his/her blog/site which might have good resources and also allows free publicity and exchange of traffic between genuine blogs and sites via the comment links, but there is way too much nuisance and problems which weigh down these advantages.</p>
<p>Well this is what you need to do if you want to remove these links. Go to the wp-includes directory in your wordpress installation via ftp, locate a file called comment-template.php (in older versions of wordpress you would need to find comment-functions.php) , download the file, create a backup of the file to make sure you can upload a working copy in case you mess up.<br />
Open the php file with notepad (any text editor) or any code editing software you may have.  Now in the file at around line 106 you would locate a function called get_comment_author_link() (around line 347 if you are editing comment-functions.php) . The line number might vary from wordpress versions, but the code within the function is the same for all versions of wordpress after 1.5, so this hack will work for all versions of wordpress 1.5 and up. Within the function you would see the following lines</p>
<pre class="syntax-highlight:php">
$url    = get_comment_author_url();
$author = get_comment_author();
if ( empty( $url ) || &#039;http://&#039; == $url )
   $return = $author;
else
   $return = &quot;&lt;a href=&#039;$url&#039; rel=&#039;external nofollow&#039;&gt;$author&lt;/a&gt;&quot;;
   return apply_filters(&#039;get_comment_author_link&#039;, $return);
</pre>
<p>What this function does is, check if the comment author posted a URL when he/she posted a comment, if there is no url it just prints the author name, if there is an URL with the comment then wordpress prints the authorâ€™s name as a link to the authorâ€™s website. We are going to modify the function to just print the authorâ€™s name (without a link) even if a URL is present with the comment. For that just replace</p>
<pre class="syntax-highlight:php">
$return = &quot;&lt;a href=&#039;$url&#039; rel=&#039;external nofollow&#039;&gt;$author&lt;/a&gt;&quot;;
</pre>
<p>With</p>
<pre class="syntax-highlight:php">
$return = $author;
</pre>
<p>And you are done! Just save the file, upload the file back into the server and you should get comments with links removed with just the authorâ€™s name throughout the website!</p>
<p>Next I am going to try to totally remove the URL field while posting comments into the blog to save the hassle of commenterâ€™s entering a URL. Will get back with a quick guide for that when I succeed.</p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/remove-link-to-comment-authors-websiteite-from-wordpress-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Move or Rename your windows profile folder</title>
		<link>http://techallica.com/how-to-move-or-rename-your-windows-profile-folder/</link>
		<comments>http://techallica.com/how-to-move-or-rename-your-windows-profile-folder/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 16:08:48 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techallica.com/how-to-move-or-rename-your-windows-profile-folder/</guid>
		<description><![CDATA[You may want to rename or move the folder in which Windows stores your profile information for one of the following reasons
â€¢You have renamed your user account via computer management and windows still uses the folder with the old username to store your profile information.
â€¢You want to move the profile folder from its default location [...]]]></description>
			<content:encoded><![CDATA[<p>You may want to rename or move the folder in which Windows stores your profile information for one of the following reasons</p>
<p>â€¢You have renamed your user account via computer management and windows still uses the folder with the old username to store your profile information.<br />
â€¢You want to move the profile folder from its default location to a different location for reasons like backing up, making up space in the drive windows is installed etc.<br />
<span id="more-20"></span><br />
Moving or renaming your windows profile folder has 2 steps<br />
1.Locating and renaming or moving your profile folder: You can locate your profile folder in your  %SystemDrive%\Documents and Settings\Username . for example for a normail windows installation and for username â€˜techallicaâ€™ the profile folder would be c:\Documents and Settings\techalllica. Now you may proceed to rename your username folder (in our case â€˜techallicaâ€™) to your new username or move the username folder to another location say  for ex. D:\profiles\techallica</p>
<p>2.Let windows know your changes: Once you have moved or renamed the folder, the next step is to register the changes in the windows registry system so that Windows knows where to locate your profile folder. To do so you need to open the registry editor by clicking on â€˜runâ€™ from the start menu and typing â€˜regeditâ€™ in the â€˜runâ€™ window. This will open up the registry editor. In the registry editor navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList<br />
To make things complicated windows employes something called â€˜SIDâ€™ to uniquely identify user accounts. Each user account in the windows system is allotted an unique â€˜SIDâ€™. You need to know the unique â€˜SIDâ€™ of the user account whose profile folder you just renamed or moved. To locate the â€˜SIDâ€™ just download the following script by clicking here and run it. The script will output the unique â€˜SIDâ€™ of all the accounts in the system. Just note down the SID of the account being modified, get back to the registry editor, and select the correct userid. Now in the right pane, double click on â€˜ProfileImagePathâ€™ (which stores the path to the profile folder of the username) and set the correct path to the profile folder. Our case d:\profiles\techallica. If you have just renamed your profile folder then it would be C:\Documents and Settings\newusername (assuming windows is installed in C:\)</p>
<p>3.Done: You are done now. Just close the editor, log out of windows and login back and see if you can log back in successfully (which you most probably should)</p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/how-to-move-or-rename-your-windows-profile-folder/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Local business [India] date bug</title>
		<link>http://techallica.com/google-local-business-india-date-bug/</link>
		<comments>http://techallica.com/google-local-business-india-date-bug/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 06:37:17 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://techallica.com/google-local-business-india-date-bug/</guid>
		<description><![CDATA[Few moments ago submitted my organization&#8217;s listing to Google [India] Local business(still in Beta).&#xA0; Located a silly bug which should have never been carried on till the beta phase. Note the &#8216;posted date&#8217; which shows Jan 1, 1970 (in the picture). Well neither Google nor me were there way back in 1970:). I guess when [...]]]></description>
			<content:encoded><![CDATA[<p>Few moments ago submitted my organization&#8217;s listing to <a href="http://local.google.co.in/">Google [India] Local business</a>(still in Beta).&#xA0; Located a silly bug which should have never been carried on till the beta phase.<span id="more-19"></span> Note the &#8216;posted date&#8217; which shows Jan 1, 1970 (in the picture). Well neither Google nor me were there way back in 1970:). I guess when you insert blank data in a date field of the database, it automatically defaults the date to be Jan 1, 1970 (if I am not wrong).</p>
<p>&#xA0;</p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/Google-Local-Business-Cente.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="335" alt="Google Bug" src="http://techallica.com/wp-content/uploads/2007/09/Google-Local-Business-Cente_thumb.jpg" width="494" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/google-local-business-india-date-bug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internet Explorer : Clearing temporary internet files automatically</title>
		<link>http://techallica.com/internet-explorer-clearing-temporary-internet-files-automatically/</link>
		<comments>http://techallica.com/internet-explorer-clearing-temporary-internet-files-automatically/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 05:43:16 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://techallica.com/internet-explorer-clearing-temporary-internet-files-automatically/</guid>
		<description><![CDATA[Smart way to delete your internet explorer temporary internet files automatically so that you need not manually clear the temporary internet files manually every time you finish browsing to protect your privacy]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://techallica.com/clearing-temporary-internet-files-and-cookies/">previous post</a> I described how you can <a href="http://techallica.com/clearing-temporary-internet-files-and-cookies/">clear temporary internet files to protect your privacy</a>. But doesnâ€™t it become too much of an hassle to clear the temporary internet files manually every time you finish browsing? Yes, it does and thatâ€™s why windows offers a nifty option of automatically deleting/removing temporary internet files</p>
<p><span id="more-17"></span><br />
every time you finish a browsing session i.e. every time you close internet explorer.&nbsp; Enabling this option is quite simple and once done you need not bother anymore of clearing your temporary internet files and thus worry about breach of your privacy.
</p>
<p>Follow these simple steps: <br />Open up the internet options window from the tools menu in internet explorer, click on the advanced tab. Tick on the option which says â€œEmpty temporary internet files folder when browser is closedâ€ and click on ok to save settings and close the window. Now windows automatically clears temporary internet files every time you finish browsing.</p>
<p><strong>Step1: Open Internet options window of Internet Explorer</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171638.jpg" target="_blank"><img id="id" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="400" alt="Internet Options Window" src="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171638_thumb.jpg" width="354" border="0"></a></p>
<p><strong>Step 2: Click on advanced tab and you will see the following window</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171534.jpg" target="_blank"><img id="id" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="400" alt="Internet Options  advanced tab" src="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171534_thumb.jpg" width="354" border="0"></a></p>
<p><strong>Step 3: Tick on option &#8220;Empty Temporary Internet Files folder when browser is closed&#8221; then click on Ok to close the Internet options window. DONE!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/internet-explorer-clearing-temporary-internet-files-automatically/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clearing temporary internet files and cookies</title>
		<link>http://techallica.com/clearing-temporary-internet-files-and-cookies/</link>
		<comments>http://techallica.com/clearing-temporary-internet-files-and-cookies/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 03:01:00 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

		<guid isPermaLink="false">http://techallica.com/clearing-temporary-internet-files-and-cookies/</guid>
		<description><![CDATA[Temporary internet files and cookies compromise your privacy. Anybody who has acesss to your computer can learn about your browsing habits and sites that you visit by seeing your temporary internet files and cookies. This post explains how to clear temporary internet files and delete cookies to protect your privacy]]></description>
			<content:encoded><![CDATA[<p>Every time you visit a website, part of the website like html, images etc are downloaded and stored in your hard disk. These downloaded files are called temporary internet files. Temporary internet files are stored to speed up your browsing experience. When you visit a website that you have visited already, parts of the website that have been stored as temporary internet files are loaded from your hard disk directly instead of being downloaded one more time, thus this saves time and increases your browsing performance<span id="more-18"></span>.<br />But temporary internet files have a major drawback. They are not secure, and anybody who has access to your computer can browse through your temporary internet files directory and learn about the websites you visited and your browsing habits. So, itâ€™s important that temporary internet files must be cleared periodically to maintain privacy of your browsing habits and browsing history. </p>
<p>Cookies even though always deemed evil are harmless bits of information stored by websites on your computer. Cookies are similar in some ways to temporary internet files. Cookies usually have information like site preferences, automatic login details etc and are saved by the sites you visit into your computer. Cookies also are a big privacy concern because anybody having access to your computer can browse your cookies folder and learn about the sites you visit. Therefore clearing the cookies folder is as important as clearing the temporary internet files.&nbsp; Clearing both the temporary internet files and cookies is a simple task.</p>
<p>Open up internet explorer, On the tools menu choose internet options Under temporary internet files section, click on the &#8220;Delete Files&#8221; button, confirm your delete action (check&nbsp; â€œdelete offline filesâ€ box also) and the internet options screen is shown again. Now click on &#8220;Delete Cookies&#8221;, on the confirmation pop up click &#8220;ok&#8221;. You will be taken back to the internet options screen, click Ok to close the screen.</p>
<p>Please be advised that it may take a while for the temporary internet files to get deleted especially if you havenâ€™t done it before recently and there are lots of files to delete. The computer may go un-responsive for a few seconds, donâ€™t panic, its normal.&nbsp;You have now&nbsp;successfully deleted both cookies and temporary internet files from your computer and thus compromise of privacy due to these files is no longer possible. </p>
<p><strong>Step 1: Open internet options window and click on Delete Files</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171335.jpg" target="_blank" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="396" alt="Internet options window" src="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171335_thumb.jpg" width="350" border="0"></a> </p>
<p><strong>Step 2: Confirm deletion</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171353.jpg" target="_blank" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="182" alt="Delete Files Confirm" src="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171353_thumb.jpg" width="350" border="0"></a> </p>
<p><strong>Step 3: Click on Delete Cookies button</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171423.jpg" target="_blank" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="396" alt="Delete Cookies" src="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171423_thumb.jpg" width="350" border="0"></a> </p>
<p><strong>Step 4: Confirm cookie delete</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171406.jpg" target="_blank" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="144" alt="Confirm Delete Cookies" src="http://techallica.com/wp-content/uploads/2007/09/capture_19092007_171406_thumb.jpg" width="350" border="0"></a> </p>
<p>&nbsp;</p>
<p>P.S Tired of clearing temporary internet files every time you complete browsing? There is a way of <a href="http://techallica.com/internet-explorer-clearing-temporary-internet-files-automatically/" target="_blank">deleting internet files automatically</a>, read the <a href="http://techallica.com/internet-explorer-clearing-temporary-internet-files-automatically/">next post.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/clearing-temporary-internet-files-and-cookies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clearing the visited websites history from Internet Explorer</title>
		<link>http://techallica.com/clearing-the-visited-websites-history-from-internet-explorer/</link>
		<comments>http://techallica.com/clearing-the-visited-websites-history-from-internet-explorer/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 17:01:26 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://techallica.com/clearing-the-visited-websites-history-from-internet-explorer/</guid>
		<description><![CDATA[Simple steps to clear internet websites history to protect your privacy and keep your browsing habits secret]]></description>
			<content:encoded><![CDATA[<p>Internet explorer by default stores and records all websites that you visit for a 30 day period. This websites history is easily available to all users and any user of your computer can easily see the complete list of websites that you have visited in the past does breaching your privacy.</p>
</p>
<p><span id="more-15"></span></p>
<p>To prevent such things to happen, it&#x2019;s advisable to clear the browser history on a regular basis, preferably at the end of every browsing session to maintain privacy. The only downside of deleting the browser history would be that if you forget the URL or address of the website you have visited in the past, you wouldn&#x2019;t be able to go to your browser history and easily locate it.</p>
<p>To clear websites history is straight forward process.    <br />1.&#xA0;&#xA0;&#xA0; Open up internet explorer,    <br />2.&#xA0;&#xA0;&#xA0; Once its open, in the menu, click on tools and then select Internet options    <br />3.&#xA0;&#xA0;&#xA0; Then click on clear history button.</p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/clear-internet-history.jpg"><img id="id" height="453" alt="Clear internet history internet explorer" src="http://techallica.com/wp-content/uploads/2007/09/clear-internet-history_thumb.jpg" width="400" /></a> </p>
<p>This clears your internet history. You can also adjust the number of days internet explorer maintains your browser history. By default it&#x2019;s 30 days.&#xA0; Click ok to save the changes and exit the screen. With your internet history under control, your windows privacy control is much easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/clearing-the-visited-websites-history-from-internet-explorer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internet Explorer : Removing address bar suggestions (auto complete)</title>
		<link>http://techallica.com/internet-explorer-removing-address-bar-suggestions-auto-complete/</link>
		<comments>http://techallica.com/internet-explorer-removing-address-bar-suggestions-auto-complete/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 16:32:10 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://techallica.com/internet-explorer-removing-address-bar-suggestions-auto-complete/</guid>
		<description><![CDATA[Windows XP like other versions of windows has a feature called auto complete in internet explorer which is activated by default. Auto complete (auto suggestions) is very helpful because it tries to complete the web address you are typing in the address bar by providing suggestions automatically based on the words you type.

These suggestions are [...]]]></description>
			<content:encoded><![CDATA[<p>Windows XP like other versions of windows has a feature called auto complete in internet explorer which is activated by default. Auto complete (auto suggestions) is very helpful because it tries to complete the web address you are typing in the address bar by providing suggestions automatically based on the words you type.</p>
<p><span id="more-14"></span><br />
These suggestions are populated based upon your internet browsing history. For example when you type in www.tec windows will automatically complete the address as <a href="http://www.techallica.com/">www.techallica.com</a> if you had visited techallica.com previously. If more than one match occurs a small list is provided and you can select your desired address from that list.
</p>
<p>&#xA0; <br />Now how are these suggestions made? Simple, by remembering all the websites that you have visited in the past i.e. maintaining your browser history.&#xA0; This is a potential breach of your privacy. Anybody who has access to your computer can view the complete list websites you have browsed in the past simply by typing in a few letters in the internet explorer address bar and seeing the auto completed list of websites which are nothing but the list of websites you have visited in the past.</p>
<p>The only way to stop this from happening is to clear this list of stored browser history. This list is stored in the file called index.dat located in your cookies directory which is usually located at C:\Documents and Settings\username\Cookies\ (replace &#x201C;username&#x201D; with your windows username, if your username is jack then your cookies folder is C:\Documents and Settings\jack\Cookies\).</p>
<p>You simply have to delete this file to clear your auto suggestions history, but the deletion a bit tricky. Why? Because windows does not allow a file which is being currently used and index.dat automatically gets loaded when windows starts normally. You either have to start windows in safe mode, locate the file and delete the file or use a small nifty utility like Dr.Delete which can be downloaded <a href="http://www.docsdownloads.com/download/DD.zip" target="_blank">here</a>.</p>
<p>Once you download and install Dr.Delete, using the software, browse and select index.dat located at C:\Documents and Settings\username\Cookies\ folder and press confirm. Once you have done that, the file will automatically be deleted when you reboot your computer. Once you reboot your computer, the browsing history used for the address auto complete feature located at index.dat is deleted.</p>
<p align="center"><strong>Step by Step Walk through</strong> </p>
<p><strong>Step1: Start the Dr.Delete software/application</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/1drdeletebrowse1.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="261" alt="1drdeletebrowse" src="http://techallica.com/wp-content/uploads/2007/09/1drdeletebrowse_thumb1.jpg" width="354" border="0" /></a> </p>
<p><strong>Step 2: Browse to C:\Documents and Settings\username\Cookies\ folder and select the index.dat file and click on Open</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/2drdeleteselectfile1.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="264" alt="2drdeleteselectfile" src="http://techallica.com/wp-content/uploads/2007/09/2drdeleteselectfile_thumb1.jpg" width="354" border="0" /></a> </p>
<p><strong>Step 3: After selecting the file, click on Delete button</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/3dedeletefileselected1.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="261" alt="3dedeletefileselected" src="http://techallica.com/wp-content/uploads/2007/09/3dedeletefileselected_thumb1.jpg" width="354" border="0" /></a> </p>
<p><strong>Step 4: Click on Yes in the confirmation window that pops up</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/4confirmdelete1.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="150" alt="4confirmdelete" src="http://techallica.com/wp-content/uploads/2007/09/4confirmdelete_thumb1.jpg" width="354" border="0" /></a> </p>
<p><strong>Step 5: Click Ok in the window that pops up next. This is a standard window that pops up if you are using windows XP or Windows 2000, don&#8217;t worry, nothing to bother here</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/5standardwindowsmessage1.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="134" alt="5standardwindowsmessage" src="http://techallica.com/wp-content/uploads/2007/09/5standardwindowsmessage_thumb1.jpg" width="354" border="0" /></a> </p>
<p><strong>Step 6: Click Ok on the information window</strong></p>
<p><a href="http://techallica.com/wp-content/uploads/2007/09/6deleteonreboot1.jpg" target="_blank"><img id="id" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="164" alt="6deleteonreboot" src="http://techallica.com/wp-content/uploads/2007/09/6deleteonreboot_thumb1.jpg" width="354" border="0" /></a> </p>
<p><strong>Step 7: Restart your computer. The file will be deleted automatically when your computer restarts/reboots</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/internet-explorer-removing-address-bar-suggestions-auto-complete/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Writing a killer website sales copy</title>
		<link>http://techallica.com/writing-a-killer-website-sales-copy/</link>
		<comments>http://techallica.com/writing-a-killer-website-sales-copy/#comments</comments>
		<pubDate>Sat, 11 Aug 2007 05:38:44 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://techallica.com/writing-a-killer-website-sales-copy/</guid>
		<description><![CDATA[This post briefly explains the importance of a good sales copy in your website, which will convert casual visitors to clients]]></description>
			<content:encoded><![CDATA[<p>A professional looking website is a very important part of making sales. However, without effective sales copy your website will be useless. Words make sales, not fancy websites.<span id="more-12"></span></p>
<p>Your words are the entire foundation of your business. Your product, your website and your marketing strategies all depend on your words. You must learn how to write persuasive words specifically written for your targeted customer. You must feel your customers needs and write your copy with passion, excitement and benefit.</p>
<p>Your text should be written in a black, legible font with a light background. Avoid using fancy fonts or backgrounds that will make your text difficult to read. When you begin writing, write in small blocks of text with a space between each block. There is nothing that will make your visitor click away faster than a sea of black text &#8212; so make sure you use plenty of white space.</p>
<p>Begin your sales letter with a powerful headline that demands attention. This headline is the most important part of your entire sales letter. If it doesn&#8217;t grab your potential customer&#8217;s attention, they won&#8217;t bother to read the rest of your letter. Your headline should be displayed in a larger bold font and demand your potential customer&#8217;s attention to intrigue them to read on.</p>
<p>Use subheadings (headlines) throughout your letter to capture the attention of those who just scan your text. Your subheadings should provide highlights of each section of your sales letter. And, should be displayed in a larger, bold font.</p>
<p>Once you&#8217;ve captured your potential customer&#8217;s attention with your powerful headline, you should now direct their attention to your introduction. Write a brief paragraph about your product to let them know exactly what you have to offer them. Keep your introduction brief and to the point with no filler content.</p>
<p>Once you&#8217;ve written your introduction, continue to write and tell your potential customer why your product is the solution to their problem. Tell them exactly how your product will benefit them. Identify a specific problem and promote your product as the solution. This can be accomplished with the use of questions that identify a specific problem that your product will solve. Ask questions that you know they can identify with &#8212; feel their needs.</p>
<p>Every word, sentence and headline should have one specific purpose &#8212; to lead your potential customer to your order page. When writing your sales copy, direct your words towards one specific person. Use words like &#8220;you&#8221; and &#8220;your&#8221; rather than &#8220;them&#8221; or &#8220;their.&#8221; Write as if you are speaking with just one person &#8212; one on one. Write to persuade, that&#8217;s the bottom line.</p>
<p>Use the following formula when writing your website sales letter:</p>
<p><strong>A</strong> - Attention - Use a powerful headline that demands attention<br />
<strong>I</strong> - Interest - Intrigue interest and create curiosity<br />
<strong>D</strong> - Detail - Provide details about your product or service<br />
<strong>A</strong> - Action - Call for action</p>
<p>Many Internet users are apprehensive when it comes to making a purchase on the Internet. You must put their mind at ease by displaying your full name, company name and contact information. In addition, you must completely remove their risk. Provide your potential customers with a solid, no risk, money back guarantee. This will put their mind at ease by building their confidence in you and your product. In addition, include some of your testimonials within your sales letter. Make sure you don&#8217;t create a separate page for your testimonials, as they most likely won&#8217;t be read. Place your testimonials throughout your sales letter to ensure their visibility.</p>
<p>Studies have shown that long sales copy out-sells short sales copy. However, some visitors do prefer a short sales letter. To accommodate both types of preferences, you can provide both. For those visitors who prefer a short sales letter, provide them with an opportunity to click through to your sales page throughout your sales letter.</p>
<p>When writing a long sales letter, keep in mind, with each additional click, you will lose a percentage of your visitors. Have you ever read a sales page that forced you to click through several pages to continue reading the sales letter? Many Internet users find this very frustrating and click away. Try to keep your sales letter all on one page for the best results. Your visitors would much rather scroll through a long sales letter than click through and load another page. Their time is very valuable &#8212; accommodate them.</p>
<p>Once you&#8217;ve written your sales letter and packed it with all of the benefits your product has to offer, your next step will be to &#8220;call for action.&#8221; Ask for the order and provide an easy ordering process. Continue to reassure your visitor by reminding them of your personal guarantee and lead them to your order page.</p>
<p>For those whom still aren&#8217;t convinced, provide them with free bonuses just for purchasing your product. Many times, you&#8217;ll find that customers purchase your product just for the free bonuses.</p>
<p>Your final step will be to close your sales letter with a PostScript. When your visitor scans your sales message, chances are, they&#8217;ll read your headline, subheadings and your PostScript message. Place your most important benefits within your P.S. message &#8212; it will get read.</p>
<p>Write your words so that they seamlessly flow together from your beginning headline through to your order page. Pack your copy with all the benefits your product has to offer and keep it simple. The simple, well designed sites with great copy make the sales.</p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/writing-a-killer-website-sales-copy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Make Windows Vista look and feel like Windows XP</title>
		<link>http://techallica.com/make-windows-vista-look-and-feel-like-windows-xp/</link>
		<comments>http://techallica.com/make-windows-vista-look-and-feel-like-windows-xp/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 12:07:17 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techallica.com/make-windows-vista-look-and-feel-like-windows-xp/</guid>
		<description><![CDATA[Some people crave Vistaâ€™s new interface; others feel like theyâ€™re looking at a rental carâ€™s unfamiliar dashboard. Follow these steps to make Vista look almost like Windows XP:
1. Start by changing the Start menu: Right-click the Start button, choose Properties, select Classic Start Menu, and click OK.
2. Next, bring back the desktop: Right-click a blank [...]]]></description>
			<content:encoded><![CDATA[<p>Some people crave Vistaâ€™s new interface; others feel like theyâ€™re looking at a rental carâ€™s unfamiliar dashboard. Follow these steps to make Vista look almost like Windows XP:<span id="more-11"></span></p>
<p>1. Start by changing the Start menu: Right-click the Start button, choose Properties, select Classic Start Menu, and click OK.</p>
<p>2. Next, bring back the desktop: Right-click a blank part of the desktop and choose Personalize. Choose Theme and then choose Windows Classic from the Theme pull-down menu. Click OK.</p>
<p>3. Finally, put the menus back on top of each folder: Open your Documents folder from the Start menu. Then click the Organize button, choose Folder and Search Options, and choose Use Windows Classic Folders. Click OK.</p>
<p>The above steps not only brings back the old Windows XP look and feel but also reduces the load off an old PC struggling with vista&#8217;s fancy graphics and layers.</p>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/make-windows-vista-look-and-feel-like-windows-xp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>View and Print E-Mail Without the &#8220;&gt;&#8221; Symbol</title>
		<link>http://techallica.com/view-and-print-e-mail-without-the-symbol/</link>
		<comments>http://techallica.com/view-and-print-e-mail-without-the-symbol/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 17:47:51 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techallica.com/view-and-print-e-mail-without-the-symbol/</guid>
		<description><![CDATA[Often the e-mail you receive is full of annoying â€œgreater thanâ€ symbols (&#62;), which can be a nuisance when you are trying to read or print your messages.
Here is an easy way to rid yourself of that pesky symbol:
1. Select all of the text inside an e-mail, and then simultaneously press the Ctrl key and [...]]]></description>
			<content:encoded><![CDATA[<p>Often the e-mail you receive is full of annoying â€œgreater thanâ€ symbols (&gt;), which can be a nuisance when you are trying to read or print your messages.<br />
Here is an easy way to rid yourself of that pesky symbol:<span id="more-10"></span></p>
<p>1. Select all of the text inside an e-mail, and then simultaneously press the Ctrl key and the C key.</p>
<p>2. Open a new, blank document inside a word-processing program like Microsoft Word.</p>
<p>3. Paste the text of your e-mail into the new document by simultaneously pressing the Ctrl key and the V key.</p>
<blockquote><p>4. Use the programâ€™s Find and Replace feature to locate all of the &gt; symbols in your text and replace them with a blank space.To do this in Microsoft Word:</p>
<ul>
<li>Click the Edit drop-down menu.</li>
<li>Select Replace.</li>
<li>A window opens.Type &gt; (the â€œgreater thanâ€ symbol) in the Find What box.</li>
<li>In the Replace With box, do not type anything (leave it blank)</li>
<li>Click the Replace All button.</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://techallica.com/view-and-print-e-mail-without-the-symbol/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
