<?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>Untwisted Vortexsoftware</title>
	<atom:link href="http://www.untwistedvortex.com/tag/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.untwistedvortex.com</link>
	<description>An American Living in the Philippines</description>
	<lastBuildDate>Sat, 20 Mar 2010 08:19:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
<script type="text/javascript">
window.google_analytics_uacct = "UA-1273697-12";
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1273697-12']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
</script>
	<item>
		<title>PHPText Blogger: Pre-Alpha Software Notes</title>
		<link>http://www.untwistedvortex.com/2008/07/29/phptext-blogger-pre-alpha-software-notes/</link>
		<comments>http://www.untwistedvortex.com/2008/07/29/phptext-blogger-pre-alpha-software-notes/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 16:05:30 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[minions]]></category>
		<category><![CDATA[niche]]></category>
		<category><![CDATA[noads]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=2350</guid>
		<description><![CDATA[I&#039;m working on a programming project as the sole developer of a browser-based software application. I&#039;ve dubbed it &#034;PHPText Blogger&#034; as a working name because it&#039;s only using PHP and text files formatted specifically for this application.
In order to use this browser-based application on Windows or Linux, I only need to have a web server [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p>I&#039;m working on a programming project as the sole developer of a browser-based software application. I&#039;ve dubbed it &#034;<strong><a style="color:#000;" href="http://www.untwistedvortex.com/2008/07/29/phptext-blogger-pre-alpha-software-notes/">PHPText Blogger</a></strong>&#034; as a working name because it&#039;s only using PHP and text files formatted specifically for this application.</p>
<p>In order to use this browser-based application on Windows or Linux, I only need to have a web server installed which includes the PHP software. I&#039;m using <a href="http://www.apachefriends.org/en/xampp.html" title="XAMPP" target="_blank">XAMPP</a> for Windows right now.</p>
<p><strong>Design Goals</strong></p>
<p>The main goal of the project is to create an application that runs on the local computer and not the online web server. The data and pages created by the software are to be transferred to the online server at the click of a button. The online server would only host the minimally-required files to run a full-featured blog. Pretty permalinks won&#039;t be required since the blog will live in whatever directory it gets installed on, pulling the data files and pages from a subdirectory of where it lives.</p>
<p>This application will be perfectly suited for small, niche blogs that don&#039;t require constant updates. It will run extremely fast since the bloat that WordPress is now famous for won&#039;t be there. It would probably work well for a blog containing thousands of posts, but transferring the information from a MySQL database would be daunting.</p>
<p>I would like to incorporate caching and compression from the start but until I get to the final stages, I can&#039;t be sure how to implement it all. Caching may not increase the speed or reduce the HTTP connections since a database is not being continually queried. Compression shouldn&#039;t be a problem, but I won&#039;t need to add that part until the back end is nearly finished.</p>
<p>The final product is going to be designed to be fast and portable, working with PHP4 as well as PHP5 and on Windows or Linux. Specific PHP5 functions will be emulated for PHP4, such as &#034;file_put_contents&#034; and &#034;date_default_timezone_set&#034;.</p>
<p><strong>The Reasons for my Madness</strong></p>
<p>I&#039;ve been using WordPress for this blog for more than 2 years. I&#039;ve been examining other applications, such as <a href="http://b2evolution.net/" title="b2evolution" target="_blank">b2evolution</a>, but all of them have similar overhead bloat in the software which defeats the idea of simplicity.</p>
<p>WordPress started out as the perfect software for self-hosted blogs but as it progressed, it started catering to too many different kinds of bloggers. It&#039;s an all-in-one kind of package with bloat that&#039;s starting to look like something I&#039;d expect from Microsoft.</p>
<p>WordPress now includes a lot of features that a lot of us (meaning bloggers) neither want nor need. Many of the features require plugins or changes to the configuration file to either change the behavior or disable it completely. Including features that can&#039;t be turned off from any of the main administration panels is the straw that broke the camel&#039;s back, my back.</p>
<p><strong>Status Updates</strong></p>
<p>I&#039;ve already completed the basic framework and I&#039;m working on the main administration page (blog titles, descriptions, timezone settings, etc.) with most of it already done.</p>
<p>Rather than writing about it at every stage, I prefer to keep quiet about it for the foreseeable future, keeping only my <a href="http://www.untwistedvortex.com/2008/07/26/how-to-become-a-noble-uv-minion-and-like-it/" title="How to Become a Noble UV Minion and Like it">noble UV minions</a> apprised of the continuing development.</p>
<p>The alpha version should be completed by the end of August (probably sooner) and the first beta version should be ready within days of that milestone. I&#039;m in a hurry to get it done because I plan to use it for some new blogs I haven&#039;t starting working on yet. I&#039;m not sure at this point how good it&#039;s going to be, but one thing it won&#039;t be is WordPress.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/12/27/writing-website-software/" title="Writing Website Software Again">Writing Website Software Again</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/03/24/sandbox-your-wordpress-blog/" title="Sandbox Your WordPress Blog">Sandbox Your WordPress Blog</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/07/28/basic-tips-speed-windows-pc/" title="Basic Tips to Speed Up a Windows PC">Basic Tips to Speed Up a Windows PC</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/09/13/add-google-search-to-your-wordpress-blog/" title="Add Google Search to Your WordPress Blog">Add Google Search to Your WordPress Blog</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/03/30/flat-files-versus-databases/" title="Flat Files Versus Databases">Flat Files Versus Databases</a></li>
</ul>
<p><!-- Similar Posts took 0.041 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/07/29/phptext-blogger-pre-alpha-software-notes/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>My Final Windows Upgrade</title>
		<link>http://www.untwistedvortex.com/2008/05/12/my-final-windows-upgrade/</link>
		<comments>http://www.untwistedvortex.com/2008/05/12/my-final-windows-upgrade/#comments</comments>
		<pubDate>Mon, 12 May 2008 10:28:31 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=1842</guid>
		<description><![CDATA[ I&#039;m a little slow on the uptake today. While going through a website for a review on my Blog &#038; Article Reviews blog, I remembered that this PC needed to be updated with service pack 3 for Windows XP.
I stopped what I was doing, closed all my open windows and proceeded with the update. [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p><img style="float:left;padding:0 15px 10px 0;" alt="Windows XP" title="Windows XP" width="100" height="73" src="http://steadyoffload.com:8080/XVYSRDZ7FP.aHR0cDovL3d3dy51bnR3aXN0ZWR2b3J0ZXguY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDA4LzA1L3dpbmRvd3NfeHAuZ2lm...."/> I&#039;m a little slow on the uptake today. While going through a website for a review on my <strong>Blog &#038; Article Reviews</strong> blog, I remembered that this PC needed to be updated with service pack 3 for Windows XP.</p>
<p>I stopped what I was doing, closed all my open windows and proceeded with the update. Well, at least I tried to do the update. Before I could, Windows Update forced me to upgrade to Microsoft Update (because of my Office software, I suppose) which took well over an hour. Then another hour passed while service pack 3 was downloading and another half of an hour waiting for the installation to be completed.</p>
<p>Even if I&#039;m offered the ultimate Windows Vista edition at a dirt cheap price, would someone please remind me to never buy Windows again?</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/04/12/get-the-full-edition-of-microsoft-windows-vista-for-the-price-of-an-upgrade/" title="Get the Full Edition of Microsoft Windows Vista for the Price of an Upgrade">Get the Full Edition of Microsoft Windows Vista for the Price of an Upgrade</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/12/22/pain-installing-ubuntu-linux-desktop-computer/" title="The Pain of Installing Ubuntu Linux on my Desktop Computer">The Pain of Installing Ubuntu Linux on my Desktop Computer</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/02/07/upgrading-to-windows-vista-just-say-no/" title="Upgrading to Windows Vista? Just Say No!">Upgrading to Windows Vista? Just Say No!</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/05/12/desktop-pc-memory-upgrade-long/" title="My Desktop PC Memory Upgrade &#8212; What Took Me So Long?">My Desktop PC Memory Upgrade &#8212; What Took Me So Long?</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/01/27/do-you-really-want-windows-vista/" title="Do You Really Want Windows Vista?">Do You Really Want Windows Vista?</a></li>
</ul>
<p><!-- Similar Posts took 0.034 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/05/12/my-final-windows-upgrade/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Website Review: technoNix</title>
		<link>http://www.untwistedvortex.com/2008/05/12/website-review-technonix/</link>
		<comments>http://www.untwistedvortex.com/2008/05/12/website-review-technonix/#comments</comments>
		<pubDate>Sun, 11 May 2008 17:48:59 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Website Reviews]]></category>
		<category><![CDATA[alexa]]></category>
		<category><![CDATA[e107 CMS]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=2533</guid>
		<description><![CDATA[At first glance, I thought technoNix was a blog using one of several blogging platforms. Upon closer scrutiny, I found out it was a complete content management system (CMS).
What is &#034;technoNix&#034; all about?
The answer to this question required that I look around a bit. Not all technology-related websites are alike. I looked for what this [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p style="text-align:center;padding:20px 0 20px 0;"><a href="http://www.technonix.com/" target="_blank"></a></p>
<p>At first glance, I thought <a href="http://www.technonix.com/" title="technoNix" target="_blank">technoNix</a> was a blog using one of several blogging platforms. Upon closer scrutiny, I found out it was a complete content management system (CMS).</p>
<p><strong>What is &#034;technoNix&#034; all about?</strong></p>
<p>The answer to this question required that I look around a bit. Not all technology-related websites are alike. I looked for what this website focused on and I found it in the forums: Software, hardware, gaming, mobile technologies, and other Internet-related technologies.</p>
<p>The focus seems to be more on the forums than the blog portion of the CMS.</p>
<p><strong>Site Design</strong></p>
<p>Not being familiar with the e107 CMS, I don&#039;t know how much of the design is customized and how much comes straight out of the box, so to speak. I do know one thing. Moving objects in the sidebar are virtual targets for my virtual sights. What I mean to say is that they&#039;re annoying and they&#039;re an annoying part of Reshadat&#039;s sidebar. I&#039;m sorry, but the latest forum topics are not important enough to be in the sidebar and displayed on all of the blog pages.</p>
<p>I always look for an &#034;about&#034; page, even on non-blog websites. I couldn&#039;t find one here.</p>
<p><strong>Article and Post Content</strong></p>
<p>While browsing through the news archive, I chanced upon &#034;<a href="http://www.technonix.com/news.php?item.127" title="XP is Faster Than VISTA" target="_blank">XP is Faster Than VISTA</a>&#034;, stopped what I was doing, closed all my open windows and then went through the process of updating my Windows XP installation with service pack 3. It was the one thing I overlooked the last time I cleaned the clutter from my PC.</p>
<p>I didn&#039;t dig any deeper for anything else because that one cost me more than 2 hours on my crappy DSL connection. I have other things to do, like eat.</p>
<p><strong>My Overall Opinion</strong></p>
<p>Reshadat&#039;s website is old enough that it should be drawing a lot of traffic. I can&#039;t tell how well it&#039;s doing because the PageRank is sitting at 0 and the Alexa rank is at 932,813. The rankings should be much better for a tech-oriented website. Either his website got slapped by Google or the CMS isn&#039;t as SEO-friendly as it should be.</p>
<p>The website is interesting, even if most of the topics aren&#039;t personally interesting for me. I&#039;m not a gamer and some of the tech stuff talked about isn&#039;t available locally here in the Philippines at a reasonable price, if at all. An iPhone, for example, is useless here.</p>
<p><strong>Would you like a Review?</strong></p>
<p>My reviews aren&#039;t the best. They aren&#039;t even close. They are one thing, though. They&#039;re <strong>free</strong>! No refunds and no exchanges. Make your blog the very best you can make it and then submit it on my <a href="http://www.untwistedvortex.com/request-a-blog-review/" title="Request A Blog Review">Request A Blog Review</a> page and I&#039;ll try to make my review the best I can make it.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/05/19/website-review-mytvtalk/" title="Website Review: MyTvTalk">Website Review: MyTvTalk</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/05/31/website-review-nomadic-matts-travel-site/" title="Website Review: Nomadic Matt&#039;s Travel Site">Website Review: Nomadic Matt&#039;s Travel Site</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/07/28/website-review-smartcine/" title="Website Review: SmartCine">Website Review: SmartCine</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/01/21/website-review-av-enthusiast/" title="Website Review: AV Enthusiast">Website Review: AV Enthusiast</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/04/10/website-review-web-articles/" title="Website Review: Web Articles">Website Review: Web Articles</a></li>
</ul>
<p><!-- Similar Posts took 0.037 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/05/12/website-review-technonix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>But I Only Want QuickTime!</title>
		<link>http://www.untwistedvortex.com/2008/04/13/but-i-only-want-quicktime/</link>
		<comments>http://www.untwistedvortex.com/2008/04/13/but-i-only-want-quicktime/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 18:22:51 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[alternatives]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Media Player Classic]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[QuickTime]]></category>
		<category><![CDATA[Real Player]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=1759</guid>
		<description><![CDATA[ After seeing the image to your left (click it for the full size) pop up on my screen for the umpteenth time, I decided I&#039;d had enough.
When I set up this PC a few months ago, I made sure I installed QuickTime. I didn&#039;t install iTunes or Safari. Every so often since then, the [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p><a href="http://steadyoffload.com:8080/XVYSRDZ7FP.aHR0cDovL3d3dy51bnR3aXN0ZWR2b3J0ZXguY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDA4LzA0L2FwcGxlLXNvZnR3YXJlLXVwZGF0ZS5naWY=...."><img style="float:left;padding-right:15px;padding-bottom:15px;" alt="Apple Software Update" title="Apple Software Update" width="150" height="150" src="http://steadyoffload.com:8080/XVYSRDZ7FP.aHR0cDovL3d3dy51bnR3aXN0ZWR2b3J0ZXguY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDA4LzA0L2FwcGxlLXNvZnR3YXJlLXVwZGF0ZS0xNTB4MTUwLmdpZg==...."/></a> After seeing the image to your left (click it for the full size) pop up on my screen for the umpteenth time, I decided I&#039;d had enough.</p>
<p>When I set up this PC a few months ago, I made sure I installed QuickTime. I didn&#039;t install iTunes or Safari. Every so often since then, the download image would pop up on my screen telling me I needed to upgrade it. Until the last two or three times, it only showed QuickTime and iTunes. In all cases, the checkboxes were always checked. I would have to uncheck the boxes for iTunes and Safari in order to update only what I wanted to update. It&#039;s ridiculous.</p>
<p><strong>The QuickTime Alternative</strong></p>
<p>I remembered from a couple of years ago that there were alternatives available, so I &#034;Googled&#034; for &#034;alt quicktime&#034;. The results brought up what I wanted as the first choice: <a href="http://www.free-codecs.com/download/quicktime_alternative.htm" title="QuickTime Alternative" target="_blank">Free-Codecs.com : QuickTime Alternative &#8230;</a></p>
<p>Before I did anything else, I made sure to uninstall Apple&#039;s QuickTime and then run <a href="http://www.ccleaner.com/" title="CCleaner, formerly Crap Cleaner" target="_blank">CCleaner</a> to remove any references to it from my hard drive and registry.</p>
<p>I installed the QuickTime Alternative along with Media Player Classic, which I had forgotten to install. I much prefer Media Player Classic over just about any other player, including Windows Media Player.</p>
<p><strong>The Real Player Alternative</strong></p>
<p>Remembering that I hadn&#039;t installed Real Player or anything to play those types of videos, I installed the &#034;Real Alternative&#034; from the Tools menu in their left sidebar, <a href="http://www.free-codecs.com/download/Real_Alternative.htm" title="Real Alternative" target="_blank">Free-Codecs.com : Download Real Player Alternative &#8230;</a>.</p>
<p>This time, I had to tell the installer to ignore Media Player Classic.</p>
<p><strong>Surprising Results</strong></p>
<p>Okay, so I already knew I could install all of these software items and they&#039;d still be lighter (less software bloat) than just having Apple&#039;s QuickTime installed. What I didn&#039;t know was how much more responsive my Firefox browser had become. At first, I thought a reboot (after uninstalling Apple&#039;s QuickTime) was responsible. I must&#039;ve been wrong.</p>
<p>I&#039;ve now been browsing without a reboot for more than 12 hours (not including breaks) and I haven&#039;t seen the sluggishness that I previously experienced. I can probably attribute that to the original QuickTime browser plugin. I even surfed on over to watch the trailer for <a href="http://trailers.apple.com/trailers/paramount/ironman/" rel="nofollow" target="_blank">Iron Man</a> (due out it May 2008) from Apple&#039;s site. The last time I went there, the video loaded slowly and my connection was fine. This time, it loaded really fast and my connection is flaky.</p>
<p>If you should choose to go down this path, your mileage may vary. I don&#039;t have a lot of things installed that I see on other people&#039;s computers, so I can tell the difference between two different pieces of software designed to do the same thing.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/03/24/sandbox-your-wordpress-blog/" title="Sandbox Your WordPress Blog">Sandbox Your WordPress Blog</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/05/12/my-final-windows-upgrade/" title="My Final Windows Upgrade">My Final Windows Upgrade</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/10/14/im-stuck/" title="I&#039;m Stuck">I&#039;m Stuck</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/07/28/basic-tips-speed-windows-pc/" title="Basic Tips to Speed Up a Windows PC">Basic Tips to Speed Up a Windows PC</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/12/22/pain-installing-ubuntu-linux-desktop-computer/" title="The Pain of Installing Ubuntu Linux on my Desktop Computer">The Pain of Installing Ubuntu Linux on my Desktop Computer</a></li>
</ul>
<p><!-- Similar Posts took 0.038 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/04/13/but-i-only-want-quicktime/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Get the Full Edition of Microsoft Windows Vista for the Price of an Upgrade</title>
		<link>http://www.untwistedvortex.com/2008/04/12/get-the-full-edition-of-microsoft-windows-vista-for-the-price-of-an-upgrade/</link>
		<comments>http://www.untwistedvortex.com/2008/04/12/get-the-full-edition-of-microsoft-windows-vista-for-the-price-of-an-upgrade/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 18:11:30 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[retail]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=1757</guid>
		<description><![CDATA[ Sometimes I come across some information that makes me to want to explode if I don&#039;t tell everyone I know about it. It doesn&#039;t have to be a secret; all it has to be is something that isn&#039;t well known yet.
While I&#039;m no Windows proponent in any shape of the word, I consider it [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p><img style="float:left;padding-right:15px;" alt="Windows Vista" title="Windows Vista" width="100" height="73" src="http://steadyoffload.com:8080/XVYSRDZ7FP.aHR0cDovL3d3dy51bnR3aXN0ZWR2b3J0ZXguY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDA4LzA0L3dpbmRvd3MtdmlzdGEuZ2lm...."/> Sometimes I come across some information that makes me to want to explode if I don&#039;t tell everyone I know about it. It doesn&#039;t have to be a secret; all it has to be is something that isn&#039;t well known yet.</p>
<p>While I&#039;m no Windows proponent in any shape of the word, I consider it my duty to tell you how to get Microsoft Windows Vista for less than full retail price. That is, if you don&#039;t already have Vista installed.</p>
<div style="clear:both;"></div>
<p><strong>The Scoop</strong></p>
<p>You can buy the Microsoft Windows Vista &#034;upgrade edition&#034; (with Service Pack 1 even) and install it on any PC as the more expensive &#034;full edition&#034;, without paying the full price.</p>
<p>It&#039;s crazy, but I wouldn&#039;t lie about a thing like this. You can always check my source.</p>
<p><strong>The Source</strong></p>
<p>The latest <a href="http://windowssecrets.com/" title="Windows Secrets" target="_blank">Windows Secret</a> newsletter includes an article by the editorial director, Brian Livingston, which gives us the dirty low down in &#034;<a href="http://windowssecrets.com/2008/04/10/02-Article-on-Vista-upgrade-trick-rattles-the-cages" title="Article on Vista upgrade trick rattles the cages" target=_blank">Article on Vista upgrade trick rattles the cages</a>&#034;.</p>
<p>It all started with his article in 2007, &#034;<a href="http://windowssecrets.com/2007/02/01/01-Get-Vista-upgrade-never-pay-full-price" title="Get Vista upgrade, never pay full price" target="_blank">Get Vista upgrade, never pay full price</a>&#034;, which explained a procedure which is supported by several built-in dialog boxes, indicating it was deliberately included by the developers.</p>
<p>A second article written by Scott Dunn about a week ago, &#034;<a href="http://windowssecrets.com/2008/04/03/01-Its-official-upgrade-hack-included-in-Vista-SP1" title="It's official: upgrade hack included in Vista SP1" target="_blank">It&#039;s official: upgrade hack included in Vista SP1</a>&#034;, shed some more light on the subject.</p>
<p><strong>The Reverse Bait-and-Switch</strong></p>
<p>As Brian explains in his latest article, Microsoft sells Windows Vista for an incredibly high price knowing full well that consumers who are tech-savvy will use the workaround and save a substantial amount, on any edition.</p>
<p>It&#039;s like going to a new car dealer and he shows you something expensive, which makes you wince. Then he shows you something a lot cheaper and you decide to buy it. The cheaper model is always easier to sell when it&#039;s done like that. Imagine if the dealer had used cars as well. Why would he show you the used cars first, being the cheapest of the lot, when he could get much more out of new car even if it isn&#039;t the top of the line?</p>
<p>It&#039;s a stupid analogy, but I&#039;ve seen it in practice. I believe Microsoft is doing the same thing without admitting to it.</p>
<p><strong>Never Mind, I Don&#039;t Do Windows</strong></p>
<p>Regardless of their marketing tactics, I will never buy another version of Windows. Vista is too damned expensive for the average consumer. Here in the Philippines, unless we want to buy an expensive computer system, we have to buy the operating system separately.</p>
<p>Here&#039;s my war cry: Give me Linux or give me death! Well, not that extreme, but you get the point.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/05/12/my-final-windows-upgrade/" title="My Final Windows Upgrade">My Final Windows Upgrade</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/02/07/upgrading-to-windows-vista-just-say-no/" title="Upgrading to Windows Vista? Just Say No!">Upgrading to Windows Vista? Just Say No!</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/01/27/do-you-really-want-windows-vista/" title="Do You Really Want Windows Vista?">Do You Really Want Windows Vista?</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/05/14/microsoft-and-the-do-more-evil-slogan/" title="Microsoft and the &#039;Do More Evil&#039; Slogan">Microsoft and the &#039;Do More Evil&#039; Slogan</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/12/22/pain-installing-ubuntu-linux-desktop-computer/" title="The Pain of Installing Ubuntu Linux on my Desktop Computer">The Pain of Installing Ubuntu Linux on my Desktop Computer</a></li>
</ul>
<p><!-- Similar Posts took 0.030 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/04/12/get-the-full-edition-of-microsoft-windows-vista-for-the-price-of-an-upgrade/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Blog Review: Hari&#039;s Corner</title>
		<link>http://www.untwistedvortex.com/2008/04/04/blog-review-haris-corner-2/</link>
		<comments>http://www.untwistedvortex.com/2008/04/04/blog-review-haris-corner-2/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 16:53:11 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Blog Reviews]]></category>
		<category><![CDATA[b2evolution]]></category>
		<category><![CDATA[cartoons]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=2525</guid>
		<description><![CDATA[This is a re-review of Hari&#039;s Corner. The first time was here: Blog Review: Hari&#039;s Corner. Hari asked for the re-review since he noticed I was becoming more critical when doing the reviews.
What is &#034;Hari&#039;s Corner&#034; all about?
In his own words, it&#039;s about his &#034;humour, cartoons, tech, software, reviews, essays, articles and HOWTOs intermingled with [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p style="text-align:center;padding:20px 0 20px 0;"><a href="http://harishankar.org/blog/" title="Hari's Corner" target="_blank"></a></p>
<p>This is a re-review of <a href="http://harishankar.org/blog/" target="_blank">Hari&#039;s Corner</a>. The first time was here: <a href="http://www.untwistedvortex.com/2007/08/22/blog-review-haris-corner/" target="_blank">Blog Review: Hari&#039;s Corner</a>. Hari asked for the re-review since he noticed I was becoming more critical when doing the reviews.</p>
<p><strong>What is &#034;Hari&#039;s Corner&#034; all about?</strong></p>
<p>In his own words, it&#039;s about his &#034;humour, cartoons, tech, software, reviews, essays, articles and HOWTOs intermingled with random philosophy now and then&#034;.</p>
<p>Hari seems to write in spurts, continuing on for days on end, and then taking a break for days on end. That&#039;s his way and he won&#039;t change for anyone. He&#039;s a little busy these days, working on things for his blogging software.</p>
<p><strong>Site Design</strong></p>
<p>The blog is attractive, both in color scheme and design. Hari created the skin himself. The sidebar has no clutter and no slow-loading widgets to contend with.</p>
<p>Since my last review of his site, Hari has switched from the WordPress platform to the b2evolution platform for blogging. He even wrote the code for importing the database.</p>
<p>The key elements I look for in a blog are there. I don&#039;t agree, however, with the placement of his &#034;contact&#034; link in the footer. It&#039;s the last place most people would look for it.</p>
<p><strong>Article and Post Content</strong></p>
<p>There&#039;s so much good stuff on Hari&#039;s blog, it&#039;s hard to point out any one article as being better than another. Since I&#039;m a link loving fool, I&#039;ll pick a recent one.</p>
<p>One of Hari&#039;s noms de plume (go ahead, look it up), Papa Hari, has declared the <a href="http://harishankar.org/blog/entry.php/papa-hari-world-government-bans-hyperlin" target="_blank">Papa Hari World Government bans hyperlinks</a>. Well now, aren&#039;t we in a pickle?</p>
<p><strong>My Overall Opinion</strong></p>
<p>I really like Hari&#039;s blog. I really like Hari. When Hari doesn&#039;t visit any of my blogs for weeks at a time, I feel as if something is amiss. When Hari writes consistently, it&#039;s one of my favorite (or favourite since he likes the British form) blogs to visit.</p>
<p>Hari is Indian. No, not what the U.S. Native Americans were formerly called, but a true Indian. You&#039;d never know it from his writings, however, because he commands the British form of English better than many people who write English as their first language.</p>
<p><strong>Would you like a Review?</strong></p>
<p>My reviews are not the best, and I won&#039;t pretend they&#039;re even close to being the best, but they&#039;re <strong>free</strong>! You can&#039;t beat that with a stick. Submit your blog on my <a href="http://www.untwistedvortex.com/request-a-blog-review/">Request A Blog Review</a> page and I&#039;ll see if I can do your blog justice.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/08/22/blog-review-haris-corner/" title="Blog Review: Hari&#039;s Corner">Blog Review: Hari&#039;s Corner</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/09/06/blog-review-cathys-capers/" title="Blog Review: Cathy&#039;s Capers">Blog Review: Cathy&#039;s Capers</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/05/15/blog-review-generate-freetraffic-online-money-paid-to-review-blogging-tips-promotion-marketing/" title="Blog Review: Generate FreeTraffic Online Money Paid to Review Blogging Tips Promotion &amp; Marketing">Blog Review: Generate FreeTraffic Online Money Paid to Review Blogging Tips Promotion &amp; Marketing</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/08/22/blog-review-pro-blog-design/" title="Blog Review: Pro Blog Design">Blog Review: Pro Blog Design</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/01/19/blog-review-marketing-tools-review/" title="Blog Review: Marketing Tools Review">Blog Review: Marketing Tools Review</a></li>
</ul>
<p><!-- Similar Posts took 0.044 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/04/04/blog-review-haris-corner-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Woes</title>
		<link>http://www.untwistedvortex.com/2008/03/30/wordpress-woes/</link>
		<comments>http://www.untwistedvortex.com/2008/03/30/wordpress-woes/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 02:57:56 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Blog Changes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/?p=1708</guid>
		<description><![CDATA[I just spent the last 24 hours upgrading WordPress on 3 blogs. Things broke. Some people were blamed, others were shot.
I could have saved myself a whole lot of headaches if I&#039;d disabled the cache on each of them while changing the widgets. Mine kept disappearing on me. If you haven&#039;t upgraded yet, do yourself [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p>I just spent the last 24 hours upgrading WordPress on 3 blogs. Things broke. Some people were blamed, others were shot.</p>
<p>I could have saved myself a whole lot of headaches if I&#039;d disabled the cache on each of them while changing the widgets. Mine kept disappearing on me. If you haven&#039;t upgraded yet, do yourself a favor and do that first. </p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/10/03/upgrade-to-wordpress-version-23-complete/" title="Upgrade to WordPress Version 2.3 Complete!">Upgrade to WordPress Version 2.3 Complete!</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/06/09/experimentation-tweaking-and-more/" title="Experimentation, Tweaking and More">Experimentation, Tweaking and More</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/05/25/saying-goodbye-to-my-javascript-widgets/" title="Saying Goodbye To My JavaScript Widgets">Saying Goodbye To My JavaScript Widgets</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/04/13/a-wordpress-discovery/" title="A WordPress Discovery">A WordPress Discovery</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/05/07/ch-ch-ch-ch-changes-me-and-google/" title="Ch-ch-ch-ch-changes: Me and Google">Ch-ch-ch-ch-changes: Me and Google</a></li>
</ul>
<p><!-- Similar Posts took 0.034 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/03/30/wordpress-woes/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Bypass WordPress Content Plugins with a Simple Hack</title>
		<link>http://www.untwistedvortex.com/2008/03/04/bypass-wordpress-content-plugins-with-a-simple-hack/</link>
		<comments>http://www.untwistedvortex.com/2008/03/04/bypass-wordpress-content-plugins-with-a-simple-hack/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:16:12 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[noads]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/2008/03/04/bypass-wordpress-content-plugins-with-a-simple-hack/</guid>
		<description><![CDATA[There are a few WordPress plugins that add text to the main content, such as &#034;Related Entries&#034; and &#034;Similar Posts&#034;. (I prefer the latter due it being updated frequently.)
Other types of of plugins are available, but for my example I want to use Similar Posts. The proper way to include the plugin, in addition to [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p>There are a few WordPress plugins that add text to the main content, such as &#034;<a href="http://wasabi.pbwiki.com/Related%20Entries" target="_blank">Related Entries</a>&#034; and &#034;<a href="http://rmarsh.com/plugins/similar-posts/" target="_blank">Similar Posts</a>&#034;. (I prefer the latter due it being updated frequently.)</p>
<p>Other types of of plugins are available, but for my example I want to use <strong>Similar Posts</strong>. The proper way to include the plugin, in addition to the initial installation, is to add a line of code to single.php and/or index.php, similar to this:</p>
<blockquote><p><strong>&lt;?php if (function_exists(&#039;similar_posts&#039;)) similar_posts(); ?&gt;</strong></p></blockquote>
<p>By including the code in the theme, the plugin affects every post. How do you prevent it from affecting a specific post? Change that line to:</p>
<blockquote><p><strong>&lt;?php if (function_exists(&#039;similar_posts&#039;) &#038;&#038; !stristr($post->post_content, &#039;&lt;!&#8211; No Similar Posts &#8211;&gt;&#039;)) similar_posts(); ?&gt;</strong></p></blockquote>
<p>When you write or edit a post, you would simply add &nbsp;&nbsp;<strong>&lt;!&#8211; No Similar Posts &#8211;&gt;</strong> to the end of the post, which would basically tell the post to ignore that plugin.</p>
<p>This kind of hack will work for any plugin that adds text onto the content. Sometimes it&#039;s easier to do it this way than to try to use the options available with the plugins.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/08/11/hacking-the-shylock-adsense-plugin-for-wordpress/" title="Hacking the &#039;Shylock Adsense Plugin&#039; for WordPress">Hacking the &#039;Shylock Adsense Plugin&#039; for WordPress</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/04/01/wp-plugins-exec-php-smart-archives-and-wp-categories-and-posts/" title="WP Plugins: Exec-PHP, Smart Archives, and WP Categories and Posts">WP Plugins: Exec-PHP, Smart Archives, and WP Categories and Posts</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/05/27/wordpress-plugin-srg-clean-archives/" title="WordPress Plugin: SRG Clean Archives">WordPress Plugin: SRG Clean Archives</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/11/29/gettin-jiggy-wit-it-wordpress-widgets-that-is/" title="Gettin&#039; Jiggy wit It &#8211; WordPress Widgets, that is">Gettin&#039; Jiggy wit It &#8211; WordPress Widgets, that is</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/04/11/playing-with-the-wordpress-more-tag/" title="Playing with the WordPress &#039;More&#039; Tag">Playing with the WordPress &#039;More&#039; Tag</a></li>
</ul>
<p><!-- Similar Posts took 0.041 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/03/04/bypass-wordpress-content-plugins-with-a-simple-hack/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Experimentating for the Mooses</title>
		<link>http://www.untwistedvortex.com/2008/01/30/experimentating-for-the-mooses/</link>
		<comments>http://www.untwistedvortex.com/2008/01/30/experimentating-for-the-mooses/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 18:46:01 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[natural]]></category>
		<category><![CDATA[originality]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/2008/01/30/experimentating-for-the-mooses/</guid>
		<description><![CDATA[If you think the article title is convoluted and confusing, you should see the inside of my head right about now. Don&#039;t worry; I&#039;ll make some kind of a point real soon.
The fact of the matter is that words are power. How you use them can make a huge difference in how you&#039;re perceived by [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p><img style="float:right;padding-left:15px;" alt="Moose" src="http://steadyoffload.com:8080/XVYSRDZ7FP.aHR0cDovL3d3dy51bnR3aXN0ZWR2b3J0ZXguY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDA4LzAxL2J1bGx3aW5rbGUuZ2lm...."/>If you think the article title is convoluted and confusing, you should see the inside of my head right about now. Don&#039;t worry; I&#039;ll make some kind of a point real soon.</p>
<p>The fact of the matter is that words are power. How you use them can make a huge difference in how you&#039;re perceived by others. Is that man over there a smart man or is he a moron? Your first impression, before the man speaks, may be completely different than your impression once he does.</p>
<p>The words we use and how we use them, in any language, can color the perceptions of those around us, specifically their perceptions of us. If we talk like idiots, we&#039;ll be perceived as idiots, it&#039;s really that simple.</p>
<p>A lot of people write differently than they speak. Some of you may be thinking &#034;duh&#034;, but a lot of people also write EXACTLY how they speak. If we write like idiots, we&#039;ll be perceived as idiots. Would you want to read something written by an idiot (excluding me, of course, because I&#039;m awesome)?</p>
<p>If you wanted to venture a guess, would you think that the article title was meant to read &#034;Experimenting for the Moose&#034;, &#034;Experimenting for the Missus&#034;, &#034;Experimenting for the Masses&#034;, or something completely unrelated? In this case, it&#039;s meaningless, as I meant it to be.</p>
<p>I will, however, be experimenting with something in the next couple of months: <a href="http://www.nuance.com/naturallyspeaking/" rel="nofollow" target="_blank">Dragon NaturallySpeaking</a> (No, I&#039;m not being paid for this dammit!) I have the software sitting on a shelf in a cabinet here somewhere. I don&#039;t even know which version it is and I&#039;ve never used it before. Since I&#039;m convinced that <a href="http://www.untwistedvortex.com/2007/02/28/natural-writing-helps-with-originality/">natural writing helps with originality</a>, I&#039;m hoping it will help me to write more like I speak.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/02/12/a-personal-guide-to-proper-post-titles/" title="A Personal Guide To Proper Post Titles">A Personal Guide To Proper Post Titles</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/08/14/connecting-words/" title="Connecting Words | English">Connecting Words | English</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/04/24/producing-quality-versus-quantity/" title="Producing Quality Versus Quantity">Producing Quality Versus Quantity</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/07/26/grammar-spelling-and-punctuation-are-important-when-writing-a-blog-post/" title="Grammar, Spelling and Punctuation ARE Important When Writing a Blog Post">Grammar, Spelling and Punctuation ARE Important When Writing a Blog Post</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2007/03/30/when-anonymity-trumps-transparency/" title="When Anonymity Trumps Transparency">When Anonymity Trumps Transparency</a></li>
</ul>
<p><!-- Similar Posts took 0.033 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2008/01/30/experimentating-for-the-mooses/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Students: Don&#039;t Pay Full Price for Microsoft Office</title>
		<link>http://www.untwistedvortex.com/2007/11/23/students-dont-pay-full-price-for-microsoft-office/</link>
		<comments>http://www.untwistedvortex.com/2007/11/23/students-dont-pay-full-price-for-microsoft-office/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 10:53:40 +0000</pubDate>
		<dc:creator>RT Cunningham</dc:creator>
				<category><![CDATA[Shopping]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.untwistedvortex.com/2007/11/23/students-dont-pay-full-price-for-microsoft-office/</guid>
		<description><![CDATA[ The last time I purchased Microsoft Office, I paid the full price. I never even thought to buy it for my son, who was a full-time student back then. As a matter of fact, he&#039;s still a full-time student, only now he&#039;s a full-time college student.
Microsoft sells several different versions of their office product [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><!-- google_ad_section_start --><p><a href="http://www.costcaptain.com/" rel="nofollow" target="_blank"></a> The last time I purchased <a href="http://www.thepinkc.net/technology/microsoft-office-ultimate-for-5995/" title="ultimate geek girl » Microsoft Office Ultimate for $59.95!" target="_blank">Microsoft Office</a>, I paid the full price. I never even thought to buy it for my son, who was a full-time student back then. As a matter of fact, he&#039;s still a full-time student, only now he&#039;s a full-time college student.</p>
<p>Microsoft sells several different versions of their office product through resellers. If you&#039;re going to buy it anyway, why not buy it through <a href="http://www.costcaptain.com/Merchant2/merchant.mvc?Screen=CTGY&#038;Category_Code=ms" rel="nofollow" target="_blank">CostCaptain.com</a>, where you&#039;re guaranteed the real deal and with any applicable discounts? Students only need to prove their academic statuses to get the discount.</p>
<p>I&#039;m not going to compare prices here because prices change. I can tell you this though: The student version is about the same price as Microsoft Office Standard and doesn&#039;t have all the standard features. Why not get the better of the two? Use your student discount and get what I got for a lot less.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/11/14/people-selling-ebook-readers-clueless/" title="The People Selling the E-Book Readers are Clueless">The People Selling the E-Book Readers are Clueless</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/12/25/buy-online-save-time-and-money-and-satisfy-your-geek-needs-with-clearance-sales/" title="Buy Online &#8212; Save Time and Money and Satisfy Your Geek Needs with Clearance Sales">Buy Online &#8212; Save Time and Money and Satisfy Your Geek Needs with Clearance Sales</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2008/11/30/how-to-save-money-while-holiday-shopping/" title="How to Save Money While Holiday Shopping">How to Save Money While Holiday Shopping</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/08/28/women-coach-handbags/" title="What is it with Women and Coach Handbags?">What is it with Women and Coach Handbags?</a></li>
<li><a style="font-size:8pt;padding:0;" href="http://www.untwistedvortex.com/2009/10/04/clothing-catalog-shopping-philippines/" title="Clothing Catalog Shopping in the Philippines">Clothing Catalog Shopping in the Philippines</a></li>
</ul>
<p><!-- Similar Posts took 0.038 ms (cached) --></p>
<!-- google_ad_section_end --><!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://www.untwistedvortex.com/2007/11/23/students-dont-pay-full-price-for-microsoft-office/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
