<?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>High Tech Sorcery &#187; specialj</title>
	<atom:link href="http://hightechsorcery.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://hightechsorcery.com</link>
	<description>technology indistinguishable from magic</description>
	<lastBuildDate>Wed, 18 Jan 2012 21:02:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing Windows GPLPV Drivers in Xen</title>
		<link>http://hightechsorcery.com/2012/01/installing-windows-gplpv-drivers-in-xen/</link>
		<comments>http://hightechsorcery.com/2012/01/installing-windows-gplpv-drivers-in-xen/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 21:02:21 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[virtualization]]></category>
		<category><![CDATA[bcdedit]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[gplpv]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=370</guid>
		<description><![CDATA[I&#8217;ve done this enough times to know it by heart but I remember when I tried to find documentation on this step I ran into countless inaccurate and outdated examples.  So here&#8217;s what I do to get the Windows GPL PV drivers installed under Xen. Download the drivers from meadowcourt.org.  As of 1/18/2012 the latest [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve done this enough times to know it by heart but I remember when I tried to find documentation on this step I ran into countless inaccurate and outdated examples.  So here&#8217;s what I do to get the Windows GPL PV drivers installed under Xen.</p>
<ol>
<li>Download the drivers from <a href="http://www.meadowcourt.org/downloads/">meadowcourt.org</a>.  As of 1/18/2012 the latest version is 0.11.0.308.  You&#8217;ll need to get the appropriate drivers for your OS.</li>
<li>turn testsigning off on Windows</li>
<ol>
<li>bcedit</li>
<ul>
<li>I like to check out the config first</li>
</ul>
<li>bcdedit /set {current} testsigning on</li>
<ul>
<li>this turns testsigning on</li>
</ul>
<li>bcdedit</li>
</ol>
<ul>
<ul>
<li>I usually run this again to make sure &#8220;testsigning Yes&#8221; appears</li>
</ul>
</ul>
<li>restart windows. upon restart the system should indicate it is in &#8220;Test Mode&#8221;</li>
<li>install the drivers msi file that was downloaded. I always choose &#8220;Typical&#8221; installation. I choose not to restart at this point.</li>
<li>create new default boot option</li>
<ol>
<li>bcdedit /copy {current} /d &#8220;GPLPV</li>
<ul>
<li>this will copy the current boot setup into a new one called GPLPV</li>
<li>pay attention to the id returned here</li>
</ul>
<li>bcdedit /default ID</li>
<ul>
<li>replace ID with the id from the copy command</li>
<li>this sets the new menu to be the default</li>
</ul>
<li>bcdedit /set {default} loadoptions GPLPV</li>
<ul>
<li>this makaes this option use GPLPV drivers</li>
</ul>
<li>bcdedit</li>
<ul>
<li>double check everything</li>
</ul>
</ol>
<li>restart windows</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2012/01/installing-windows-gplpv-drivers-in-xen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Researching Redis on Rails</title>
		<link>http://hightechsorcery.com/2012/01/researching-redis-on-rails/</link>
		<comments>http://hightechsorcery.com/2012/01/researching-redis-on-rails/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 09:34:38 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Ruby On Rails]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=347</guid>
		<description><![CDATA[I&#8217;ve been researching how good a fit Redis might be for a project or 2.  One project needs a memory based key-value store generally without persistence, which would seem to suggest memcached.  However, there may be times where persistence across reboots may be desirable and Redis&#8217; atomic operations and data types may also be useful.  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been researching how good a fit Redis might be for a project or 2.  One project needs a memory based key-value store generally without persistence, which would seem to suggest memcached.  However, there may be times where persistence across reboots may be desirable and Redis&#8217; atomic operations and data types may also be useful.  Here&#8217;s some links I&#8217;ve been checking out:</p>
<ul>
<li>Software</li>
<ul>
<li><a href="http://redis.io/">redis</a> &#8211; obviously</li>
<li><a href="https://github.com/ezmobius/redis-rb">redis-rb</a> &#8211; gem for accessing redis from ruby</li>
<li><a href="https://github.com/nateware/redis-objects">redis-objects</a> &#8211; gem for mapping Redis types to Ruby objects</li>
<li><a href="https://github.com/soveran/ohm">ohm</a> &#8211; gem for creating Redis based object models</li>
<li><a href="https://github.com/maccman/supermodel">supermodel</a> &#8211; gem for ActiveModel descendant that can store to Redis<a href="https://github.com/maccman/supermodel"><br />
</a></li>
</ul>
<li>Information</li>
<ul>
<li><a href="http://jimneath.org/2011/03/24/using-redis-with-ruby-on-rails.html">Using Redis with Ruby on Rails</a></li>
<li><a href="http://carlopecchia.eu/blog/2010/04/30/redis-and-ohm-part1/">Datastores with ruby: Redis and Ohm (part 1)</a></li>
<li><a href="http://www.engineyard.com/blog/2009/key-value-stores-for-ruby-part-4-to-redis-or-not-to-redis/">To Redis or Not To Redis? (Key-Value Stores Part 4) | Engine Yard Blog</a></li>
<li><a href="http://masonoise.wordpress.com/2010/01/30/comparing-mongodb-and-redis-part-1/">Comparing MongoDB and Redis, Part 1 « While I Pondered…</a></li>
<li><a href="http://masonoise.wordpress.com/2010/02/02/comparing-mongodb-and-redis-part-2/">Comparing MongoDB and Redis, Part 2 « While I Pondered…</a></li>
<li><a href="http://blog.grayproductions.net/articles/where_redis_is_a_good_fit">where_redis_is_a_good_fit</a></li>
<li><a href="http://blog.grayproductions.net/articles/using_keyvalue_stores_from_ruby ">using_keyvalue_stores_from_ruby</a></li>
</ul>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2012/01/researching-redis-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evaluating open source web control panels again</title>
		<link>http://hightechsorcery.com/2012/01/evaluating-open-source-web-control-panels-again/</link>
		<comments>http://hightechsorcery.com/2012/01/evaluating-open-source-web-control-panels-again/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 09:22:08 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=360</guid>
		<description><![CDATA[Here is what I&#8217;m looking at: ISPConfig &#8211; been around a long time, seems quite mature Froxlor &#8211; an active fork of SysCP which has a decent reputation I-MSCP &#8211; a fork of ispCP which was a fork of VHCS which I know several people who supported]]></description>
			<content:encoded><![CDATA[<p>Here is what I&#8217;m looking at:</p>
<ul>
<li>ISPConfig &#8211; been around a long time, seems quite mature</li>
<li>Froxlor &#8211; an active fork of SysCP which has a decent reputation</li>
<li>I-MSCP &#8211; a fork of ispCP which was a fork of VHCS which I know several people who supported</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2012/01/evaluating-open-source-web-control-panels-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The sad state of linux desktop environments</title>
		<link>http://hightechsorcery.com/2011/12/the-sad-state-of-linux-desktop-environments/</link>
		<comments>http://hightechsorcery.com/2011/12/the-sad-state-of-linux-desktop-environments/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 23:51:17 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=353</guid>
		<description><![CDATA[I run Ubuntu on my desktop and have since Ubuntu&#8217;s first release (4.10) and the current release, 11.10, is the first that I am going to skip over entirely.  The reason is that the choice of desktop environments is poor.  I upgraded my HTPC to 11.10 and tried every desktop environment available: Gnome Shell, Unity, [...]]]></description>
			<content:encoded><![CDATA[<p>I run Ubuntu on my desktop and have since Ubuntu&#8217;s first release (4.10) and the current release, 11.10, is the first that I am going to skip over entirely.  The reason is that the choice of desktop environments is poor.  I upgraded my HTPC to 11.10 and tried every desktop environment available: Gnome Shell, Unity, KDE 4, XFCE, LXDE.  Not 1 of them seemed like it would fit my desktop needs.  I have a nice Gnome 2 desktop with plenty of customizations to fit how I work but upgrading to from 11.04 to 11.10 would cause me to lose all of that and force me to learn how to be as productive in a new desktop environment.  I really cannot afford to take that time when I have so many projects going.</p>
<p><span id="more-353"></span>It&#8217;s easy, and common, to pick on Ubuntu but the truth is there is many distributions are making the same errors of not providing a path forward for the existing desktop environment.  My advice to all distros regarding Gnome 3 is the same as I would have given for KDE 4: don&#8217;t switch to the latest DE until it has matured.  Any distro shipping Gnome 3 right now has made a mistake in my opinion.  Right now Gnome 2 is mature, stable, polished, and most importantly has a large existing user base.  Ubuntu in particular should have shipped Gnome 2 through it&#8217;s 12.04 release.  There are a lot of business users on 10.04 and if 12.04 breaks their desktops they will not be happy, or they may choose to simply not upgrade and you end up with a situation similar to Windows XP.</p>
<p>I understand that the Gnome developers wanted to work on something new and exciting, just like the KDE developers.  I think the Gnome 3 work is good and useful as is the KDE 4 work.  However, without the resources of a Microsoft or an Apple to do user testing a linux distribution should not switch quickly to a new, relatively untested and immature desktop environment.  I&#8217;ve used all of the desktop alternatives out there and my choice for my desktop is to continue using Gnome 2.  When Apple rolled out OS X it was after a ton of user testing that no one who used it wanted to go back.  Gnome 3 has not yet reached that level, and until it does it should not be shipped in any distro catering to a large user base with a goal of stability and productivity.  There is, of course, a place for distros who want to be more cutting edge to include such software for people to experiment with.</p>
<p>So Ubuntu, Fedora, Mint, are all making a mistake shipping Gnome 3 in their latest release.  If it were up to me to set the direction for their next releases I would include Gnome 2 or MATE and make that the default desktop for people upgrading from releases prior to their latest.  In the case of Ubuntu that means 12.04 would give a seamless upgrade to everyone running 11.04 and earlier.  I would also recommend including Unity and Gnome Shell as options for people to try out so that they can make the switch on their time and terms.  I think that would be a policy of mine: continue to support how users are working now but give them options to change how they work if they so choose.</p>
<p>Would that be a lot of work, asking that every distro maintain every desktop environment that has ever been released.  Not so much effort I think, and largely what has happened with window managers in the past.  With forks of Gnome 2 and KDE 3 being maintained by developers including them as an option in a distro is certainly a benefit to the end user.  The DE landscape might become more fragmented but that is still preferable to forced upgrades for people who are satisfied with their current DE.</p>
<p>On December 1st, 2011 the Gnome Shell Extensions website went live for version 3.2.  So distros that shipped Gnome 3.0 are out of luck, like Ubuntu 11.10.  But to me this is the sort of thing that should have been in place long before anyone was shipping this software, particularly as the default desktop.  By mid-2012 Gnome 3 will probably be in a place where it could be shipped in a distro, but shipping it before then is just asking for user complaints as they struggle with the forced upgrade, bugs, and inconsistencies common in early releases of new software.</p>
<p>As for Unity, I think it&#8217;s too early to know if that development effort was a mistake.  The Canonical folks tried Gnome 3 Shell and didn&#8217;t like it.  So they decided to build Unity.  Well, first of all, this should have been a clue that Gnome 3 wasn&#8217;t ready to be shipped.  They could have shipped Gnome 2 and Unity as an option for people to try.  And I do think that people have raised a good point that the Unity development may have sapped development from other parts of Ubuntu 11.10, leaving Ubuntu 11.10 unpolished compared to previous releases.  I do not care for Unity and I would not use it on my desktop or laptop or HTPC but it may be a good effort if it proves to be a good DE choice for netbooks, tablets, and similarly sized devices.  In the long run that could be a big win for Ubuntu, but enough to offset the short-term loss of users upset by being forced to switch to Unity, that remains to be seen.</p>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/12/the-sad-state-of-linux-desktop-environments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSD Recomendation</title>
		<link>http://hightechsorcery.com/2011/11/ssd-recomendation/</link>
		<comments>http://hightechsorcery.com/2011/11/ssd-recomendation/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 00:26:24 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=343</guid>
		<description><![CDATA[I&#8217;ve bought a number of solid state drives and I&#8217;ve had to return most of them due to problems.  I&#8217;ve taken from that experience that a lot of the manufacturers don&#8217;t quite know what they are doing yet.  There are plenty of places on the internet you can read about the bugs in many of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve bought a number of solid state drives and I&#8217;ve had to return most of them due to problems.  I&#8217;ve taken from that experience that a lot of the manufacturers don&#8217;t quite know what they are doing yet.  There are plenty of places on the internet you can read about the bugs in many of the released drives.  I&#8217;m hoping the acquisition of Indilinx by OCZ and SandForce by LSI will improve the reliability of drives based on those controllers.  However, my SSD purchases have been narrowing to Crucial who&#8217;s RealSSD C300 and M4 have been far more reliable than average and extremely well performing.  A recent review of the OCZ Octane drive shows the Crucial M4 as one of the better drives in server performance:</p>
<ul>
<li>http://techreport.com/articles.x/22078/8</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/11/ssd-recomendation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing ALSA sound issues</title>
		<link>http://hightechsorcery.com/2011/11/fixing-alsa-sound-issues/</link>
		<comments>http://hightechsorcery.com/2011/11/fixing-alsa-sound-issues/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 10:09:24 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=339</guid>
		<description><![CDATA[Ony my desktop I&#8217;ve removed pulseaudio because I found it to be more trouble than it was worth.  So I use ALSA, which works pretty well.  However, sometimes my audio dies and produces chirps and squeaks only.  I found the easiest way to fix this is the following command: sudo alsa force-reload]]></description>
			<content:encoded><![CDATA[<p>Ony my desktop I&#8217;ve removed pulseaudio because I found it to be more trouble than it was worth.  So I use ALSA, which works pretty well.  However, sometimes my audio dies and produces chirps and squeaks only.  I found the easiest way to fix this is the following command:</p>
<ul>
<li>sudo alsa force-reload</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/11/fixing-alsa-sound-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to disable Rack::Cache in Rails 3.1</title>
		<link>http://hightechsorcery.com/2011/09/disable-rackcache-in-rails-3-1/</link>
		<comments>http://hightechsorcery.com/2011/09/disable-rackcache-in-rails-3-1/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 23:46:47 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[rack]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rails 3.1]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=321</guid>
		<description><![CDATA[Couldn&#8217;t find this anywhere but what I found worked was to put this in config/application.rb: require 'rack/cache' config.middleware.delete Rack::Cache This did fix the issue that sent me to this, as many people are likely to run into. The issue was that since Rack::Cache uses the default Rails FileStore that lots and lots of small files [...]]]></description>
			<content:encoded><![CDATA[<p>Couldn&#8217;t find this anywhere but what I found worked was to put this in config/application.rb:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">    require 'rack/cache'
    config.middleware.delete Rack::Cache</pre></div></div>

<p>This did fix the issue that sent me to this, as many people are likely to run into. The issue was that since Rack::Cache uses the default Rails FileStore that lots and lots of small files were being created in lots and lots of directories.  I don&#8217;t think Rack::Cache offers me much for this application, but if it did I would look into switching from a file store to a memory or memcached store.</p>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/09/disable-rackcache-in-rails-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with LXC</title>
		<link>http://hightechsorcery.com/2011/08/playing-with-lxc/</link>
		<comments>http://hightechsorcery.com/2011/08/playing-with-lxc/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 07:04:45 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=313</guid>
		<description><![CDATA[I&#8217;ve been wanting to explore the OS-level virtualization space again.  For a long time I was running linux-verser on a number of servers.  I switched to Xen because I really like the aesthetic of being able to run each virtual machine with it&#8217;s own kernel.  But I wonder if this is not too heavy a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wanting to explore the OS-level virtualization space again.  For a long time I was running linux-verser on a number of servers.  I switched to Xen because I really like the aesthetic of being able to run each virtual machine with it&#8217;s own kernel.  But I wonder if this is not too heavy a solution when all you really want is a super-chroot.  LXC has a lot of support since it&#8217;s in the kernel but it&#8217;s difficult to tell how big a community there is.  Thus far I&#8217;ve been pretty disappointed with LXC and I&#8217;ve had trouble getting information.  For example there is very little information as to whether capabilities are changed in different kernel versions.  Here are some of the major difficulties I&#8217;ve found so far:</p>
<p><span id="more-313"></span></p>
<ul>
<li>Isolation &#8211; The LXC home page mentions isolation repeatedly, as does the README.  I was disappointed to find running dmesg on my container displayed the messages from the host system.  That&#8217;s not isolated enough for me.</li>
<li>Networking &#8211; While you can assign multiple ip addresses you can only have 1 interface which is on 1 bridge.  With Xen I have several virtual machines with multiple devices, usually one on a public bridge and another on a vpn.  Also on Ubuntu guests since udev does not work the network/interfaces file is not run and there is not routing until ifup -a is run from the guest.</li>
<li>No udev &#8211; This could be ok except for ubuntu guests which, as noted above, use upstart which depends on udev notifications to start networking and other services.  Basically it&#8217;s safe to assume that with an ubuntu guest many services will not be started.  This will not be the case for guests using sysvinit or systemd as far as I know.</li>
</ul>
<div>Resources:</div>
<div>
<ul>
<li><a href="http://lxc.sourceforge.net/">lxc Linux Containers</a></li>
<li><a href="http://en.gentoo-wiki.com/wiki/LXC">LXC &#8211; Gentoo Linux Wiki</a></li>
<li><a href="https://wiki.archlinux.org/index.php/Linux_Containers">Linux Containers &#8211; ArchWiki</a></li>
<li><a href="http://wiki.debian.org/LXC">LXC &#8211; Debian Wiki</a></li>
<li><a href="https://help.ubuntu.com/community/LXC">LXC &#8211; Community Ubuntu Documentation</a></li>
<li><a href="http://lxc.teegra.net/">LXC HOWTO</a></li>
</ul>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=1760428">[ubuntu] LXC container network strange behaviour &#8211; Ubuntu Forums</a></li>
<li><a href="http://www.mail-archive.com/lxc-users@lists.sourceforge.net/msg01287.html">Re: [Lxc-users] ubuntu / lucid container not starting / mountall not sen</a></li>
<li><a href="http://www.mail-archive.com/lxc-users@lists.sourceforge.net/msg01297.html">Re: [Lxc-users] ubuntu / lucid container not starting / mountall not sen</a></li>
<li><a href="http://www.mail-archive.com/lxc-users@lists.sourceforge.net/msg02217.html">Re: [Lxc-users] Network problem on start</a></li>
<li><a href="http://jinntech.blogspot.com/2011/04/lxc-interface-bonding-vlans-macvlan-and.html">/var/log/sysnote: LXC, interface bonding, vlans, macvlan and communication with host</a></li>
<li><a href="http://blog.bodhizazen.net/linux/lxc-configure-ubuntu-lucid-containers/">LXC Configure Ubuntu Lucid Containers | Shadows of epiphany</a></li>
<li><a href="http://blog.bodhizazen.net/linux/lxc-configure-ubuntu-karmic-containers/">LXC Configure Ubuntu Karmic Containers | Shadows of epiphany</a></li>
<li><a href="http://blog.foaa.de/2010/05/lxc-on-debian-squeeze/">Foaa » Blog Archive » LXC on Debian Squeeze</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/08/playing-with-lxc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patriot Torqx 2 vs Patriot Warp</title>
		<link>http://hightechsorcery.com/2011/08/patriot-torqx-2-vs-patriot-warp/</link>
		<comments>http://hightechsorcery.com/2011/08/patriot-torqx-2-vs-patriot-warp/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 02:18:44 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=301</guid>
		<description><![CDATA[I&#8217;m replacing a Patriot Torqx drive which failed and Patriot has given me the options of replacing it with a Torqx 2 or a Warp drive. Drives and Controllers: Torqx &#8211; Indilinx Barefoot controller &#8211; not stuttering like with the older jmicron controllers but not very reliable in my experience Torqx 2 - phison controller &#8211; relatively [...]]]></description>
			<content:encoded><![CDATA[<p><span>I&#8217;m replacing a Patriot <span>Torqx</span> drive which failed and Patriot has given me the options of replacing it with a <span>Torqx</span> 2 or a Warp drive.</span></p>
<p><span id="more-301"></span></p>
<h2>Drives and Controllers:</h2>
<ul>
<li><span><span>Torqx</span> &#8211; <span>Indilinx</span> Barefoot controller &#8211; not stuttering like with the older <span>jmicron</span> controllers but not very reliable in my experience</span></li>
<li>Torqx 2 - phison controller &#8211; relatively new</li>
<li><span>Warp &#8211; <span>jmicron</span> JMF602 &#8211; known for random pauses</span></li>
</ul>
<p><span>From the reviews I&#8217;ve read it seems like the <span>Torqx</span> 2 is faster but it&#8217;s difficult to discern as the Warp reviews are very favorable because it came out 3 years ago while the <span>Torqx</span> 2 reviews are unfavorable because it was released recently but cannot compete with other recent drives.  Both drives show poor performance in iometer, even worse than the Torqx which is a big problem.</span></p>
<div>
<ul>
<li>Torqx 2</li>
<ul>
<li><a href="http://www.patriotmemory.com/products/detailp.jsp?prodline=8&amp;catid=84&amp;prodgroupid=207&amp;id=1064&amp;type=17">Patriot Memory</a> - 128GB Torqx 2 Solid State Drive</li>
<li><span><a href="http://benchmarkreviews.com/index.php?option=com_content&amp;task=view&amp;id=701&amp;Itemid=60&amp;limit=1&amp;limitstart=7">Patriot <span>Torqx</span> 2 <span>Phison</span> Solid State Drive &#8211; Iometer IOPS Performance</a></span></li>
<li><a href="http://www.hitechlegion.com/reviews/storage/hdd/10273-patriot-torqx-2-128gb-sata-ii-ssd-review?start=11">Patriot Torqx 2 128GB SATA II SSD Review-Hi Tech Legion-Patriot Torqx 2 128GB SATA II SSD Review</a></li>
<li><a href="http://www.storagereview.com/patriot_torqx_2_review">Patriot Torqx 2 Review | StorageReview.com</a></li>
<li><a href="http://www.tweaktown.com/reviews/4230/patriot_torqx_2_256gb_solid_state_drive_review/index7.html">Patriot Torqx 2 256GB Solid State Drive Review &#8211; Benchmarks &#8211; AIDA64 Random Access Time :: TweakTown USA Edition</a></li>
</ul>
<li>Warp</li>
<ul>
<li><a href="http://www.patriotmemory.com/products/detailp.jsp?prodline=8&amp;catid=84&amp;prodgroupid=83&amp;id=742&amp;type=17">Patriot Memory</a> - Patriot Warp</li>
<li><a href="http://www.hardwarecanucks.com/forum/hardware-canucks-reviews/15230-patriot-warp-v2-128gb-ssd-review-12.html">Patriot Warp v2 128GB SSD Review &#8211; Page 12</a></li>
<li><a href="http://www.anandtech.com/show/2738/17">AnandTech &#8211; The SSD Anthology: Understanding SSDs and New Drives from OCZ</a></li>
<li><a href="http://www.cdrinfo.com/Sections/Reviews/Specific.aspx?ArticleId=25045&amp;PageId=2">PatriotMemory Warp v2 128GB SSD</a></li>
<li><a href="http://www.tweaktown.com/reviews/1639/patriot_warp_v2_128gb_2_5_solid_state_drive/index9.html">Patriot Warp V2 128GB 2.5” Solid State Drive &#8211; Final Thoughts :: TweakTown USA Edition</a></li>
</ul>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/08/patriot-torqx-2-vs-patriot-warp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>various ways of escaping content in ruby</title>
		<link>http://hightechsorcery.com/2011/08/various-ways-of-escaping-content-in-ruby/</link>
		<comments>http://hightechsorcery.com/2011/08/various-ways-of-escaping-content-in-ruby/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 11:08:39 +0000</pubDate>
		<dc:creator>specialj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hightechsorcery.com/?p=296</guid>
		<description><![CDATA[It&#8217;s difficult to keep these all straight: CGI::escapeHMTL ERB::Util::html_escape CGI::escape - replaces URI::escape URI::encode_www_form URI::encode_www_form_component String::inspect]]></description>
			<content:encoded><![CDATA[<div>It&#8217;s difficult to keep these all straight:</div>
<ul>
<li><a href="http://www.ruby-doc.org/stdlib/libdoc/cgi/rdoc/classes/CGI.html#M000095">CGI::escapeHMTL</a></li>
<li><a href="http://api.rubyonrails.org/classes/ERB/Util.html#method-c-html_escape">ERB::Util::html_escape</a></li>
<li><a href="http://www.ruby-doc.org/stdlib/libdoc/cgi/rdoc/classes/CGI.html#M000093">CGI::escape</a> - replaces URI::escape</li>
<li><a href="http://www.ruby-doc.org/stdlib/libdoc/uri/rdoc/classes/URI.html#M009393">URI::encode_www_form</a></li>
<li><a href="http://www.ruby-doc.org/stdlib/libdoc/uri/rdoc/classes/URI.html#M009391">URI::encode_www_form_component</a></li>
<li><a href="http://ruby-doc.org/core/classes/String.html#M001153">String::inspect</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hightechsorcery.com/2011/08/various-ways-of-escaping-content-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

