<?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>Steve T&#039;s Semi-Coherant Ramblings</title>
	<atom:link href="http://www.darkrune.org/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.darkrune.org/blog</link>
	<description>What this country needs is a good five dollar plasma weapon.</description>
	<lastBuildDate>Wed, 04 Aug 2010 05:25:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Changing User Names in Confluence</title>
		<link>http://www.darkrune.org/blog/?p=480</link>
		<comments>http://www.darkrune.org/blog/?p=480#comments</comments>
		<pubDate>Mon, 02 Aug 2010 18:03:44 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Geek Out]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=480</guid>
		<description><![CDATA[At the office we use Atlassian Confluence as our internal Wiki system. I do like it, but it has some idiosyncrasies. Similar to JIRA there is no internal way to change user names. Not too long ago, I wrote a &#8230; <a href="http://www.darkrune.org/blog/?p=480">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At the office we use <a href="http://www.atlassian.com/software/confluence/">Atlassian Confluence</a> as our internal Wiki system.  I do like it, but it has some idiosyncrasies.  Similar to JIRA there is no internal way to change user names.  Not too long ago, I wrote a <a href="http://www.darkrune.org/blog/?p=459">post</a> giving the SQL needed to update JIRA.  Here is the SQL needed to update Confuence.</p>
<p>This is a bit cleaner than the JIRA SQL because you really only need to update the first two lines.<br />
<code><br />
SET @oldusername = "OLD_USER_NAME";<br />
SET @newusername = "NEW_USER_NAME";<br />
SET @tildedoldusername = CONCAT('~', @oldusername);<br />
SET @tildednewusername = CONCAT('~', @newusername);<br />
SET @locoldusername = CONCAT('LOC_', @oldusername);<br />
SET @locnewusername = CONCAT('LOC_', @newusername);<br />
-- Attachments<br />
update ATTACHMENTS set creator = @newusername where creator = @oldusername;<br />
update ATTACHMENTS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
-- Bandana<br />
update BANDANA set bandanacontext = @newusername where bandanacontext = @oldusername;<br />
-- Content<br />
update CONTENT set creator = @newusername where creator = @oldusername;<br />
update CONTENT set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
update CONTENT set username = @newusername where username = @oldusername;<br />
update CONTENT set draftspacekey = @tildednewusername where draftspacekey = @tildeoldusername;<br />
-- content_label<br />
update CONTENT_LABEL set owner = @newusername where owner = @oldusername;<br />
-- update CONTENT_LABEL set spacekey = @tildednewusername where owner = @tildedoldusername;<br />
-- content_perl<br />
update CONTENT_PERM set creator = @newusername where creator = @oldusername;<br />
update CONTENT_PERM set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
update CONTENT_PERM set username = @newusername where username = @oldusername;<br />
-- contentlock<br />
update CONTENTLOCK set creator = @newusername where creator = @oldusername;<br />
update CONTENTLOCK set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
-- decorator<br />
update DECORATOR set SPACEKEY = @tildednewusername where SPACEKEY = @tildedoldusername;<br />
-- extrnlnks<br />
update EXTRNLNKS set creator = @newusername where creator = @oldusername;<br />
update EXTRNLNKS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
-- label<br />
update LABEL set owner = @newusername where owner = @oldusername;<br />
-- links<br />
update LINKS set creator = @newusername where creator = @oldusername;<br />
update LINKS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
update LINKS set destspacekey = @tildednewusername where destspacekey = @tildedoldusername;<br />
update LINKS set destpagetitle = @tildednewusername where destpagetitle = @tildedoldusername;<br />
-- notifications<br />
update NOTIFICATIONS set creator = @newusername where creator = @oldusername;<br />
update NOTIFICATIONS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
update NOTIFICATIONS set username = @newusername where username = @oldusername;<br />
-- os_propertyEntry<br />
update OS_PROPERTYENTRY set entity_name = @locnewusername where entity_name = @locoldusername;<br />
update OS_PROPERTYENTRY set string_val = @tildednewusername where entity_name = @tildedoldusername;<br />
-- pagetemplates<br />
update PAGETEMPLATES set creator = @newusername where creator = @oldusername;<br />
update PAGETEMPLATES set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
-- spacegrouppermissions<br />
update SPACEGROUPPERMISSIONS set permusername = @newusername where permusername = @oldusername;<br />
-- spacegroups<br />
update SPACEGROUPS set creator = @newusername where creator = @oldusername;<br />
update SPACEGROUPS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
-- spacepermissions<br />
update SPACEPERMISSIONS set creator = @newusername where creator = @oldusername;<br />
update SPACEPERMISSIONS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
update SPACEPERMISSIONS set permusername = @newusername where permusername = @oldusername;<br />
-- spaces<br />
update SPACES set creator = @newusername where creator = @oldusername;<br />
update SPACES set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
update SPACES set spacekey = @tildednewusername where lastmodifier = @tildedoldusername;<br />
-- trackbacklinks<br />
update TRACKBACKLINKS set creator = @newusername where creator = @oldusername;<br />
update TRACKBACKLINKS set lastmodifier = @newusername where lastmodifier = @oldusername;<br />
-- os_user and users<br />
update os_user set username = @newusername where username = @oldusername;<br />
update users set name = @newusername where name = @oldusername;<br />
<code></p>
<p>I used this code on about 50 users recently and did not have any problems.</p>
<p>Here are the steps I did:</p>
<ul>
<li>I took the template above and made copies for each user that needed to be changed.  Each was edited as needed.</li>
<li>I shutdown Confluence</li>
<li>I used the mysql command line utility to connect to my confluence database</li>
<li>I loaded each SQL file by hand, which will update the database</li>
<li>I relocated the cache which is in the data directory and called <b>index</b>.</li>
<li>I restarted confluence and rebuilt the cache</li>
</ul>
<p>Everything went pretty well.  After I did the user migration, I then integrated LDAP to our AD and every user now has one less password to remember.</p>
<p>Hope this helps someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=480</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung Captivate</title>
		<link>http://www.darkrune.org/blog/?p=466</link>
		<comments>http://www.darkrune.org/blog/?p=466#comments</comments>
		<pubDate>Fri, 23 Jul 2010 14:45:36 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Geek Out]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=466</guid>
		<description><![CDATA[So, I lied in my last post. My newest toy is a Samsung Captivate smart phone. It is powered by Android. I do like it, but all it does take some getting used to the touch screen. My biggest annoyance &#8230; <a href="http://www.darkrune.org/blog/?p=466">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, I lied in my last post.  My newest toy is a Samsung Captivate smart phone.  It is powered by Android.</p>
<p>I do like it, but all it does take some getting used to the touch screen.</p>
<p>My biggest annoyance is the bloatware, shovelware, crapware, whatever you want to call it.  AT&#038;T installs a ton of stuff.  Time to get rid of it!</p>
<p>First you need to gain super-user privileges.  Here is how to do that:</p>
<ol>
<li>Download and install the Android SDK (<a href="http://developer.android.com/sdk/index.html">download and install guide</a>)</li>
<li>Install the Samsung Drivers (<a href="http://androidforums.com/samsung-captivate/123644-captivate-usb-drivers-links-here.html">download location</a>)</li>
<li>Set your phone to connect in Mass Storage mode (Settings->Applications->USB Settings->Mass storage)</li>
<li>Connect the phone via USB.  Mount the drive (select Mount from the USB drop down notification).</li>
<li>Download the <a href="http://www.box.net/shared/jrlqei92q6">Root Update Zip</a> and rename it <strong>update.zip</strong></li>
<li>Copy the update.zip to your internal SD card on the phone</li>
<li>Disconnect your phone&#8217;s USB</li>
<li>Turn on USB Debugging Mode (Settings->Applications->Development->USB Debugging)</li>
<li>Connect the phone via USB again</li>
<li>Use a command prompt to cd to the SDK&#8217;s tools directory.  Mine is c:\android\tools.</li>
<li>Run the recovery mode reboot command: <strong>adb reboot recovery</strong></li>
<li>The phone will reboot into recovery mode.  Select <strong>Reinstall Packages</strong> on the phone&#8217;s menu using the Volume Up/Down buttons and select using the Power button.  The phone will install the update and reboot.</li>
<li>You should now see a <strong>Superuser Permission</strong> application in the Applications panels.</li>
</ol>
<p>Now it is time to remove some crap!</p>
<ol>
<li>Make sure your phone is connected via USB and the USB Debugging mode is still turned on.</li>
<li>From a command prompt, cd to the SDK&#8217;s tools directory.</li>
<li>Run the SDK shell: <strong>adb shell</strong></li>
<li>Become root: <strong>su</strong></li>
<li>To remove apps, we will just rename them.  For example this removes the AT&#038;T Nav app: <strong>mv /system/app/ATTNav-Samsung-Vega-1488.apk /system/app/ATTNav-Samsung-Vega-1488.tmp</strong></li>
<li> Here is a list of applications and their actual application file names:
<ul>
<li>AT&#038;T Nav &#8212; /system/app/ATTNav-Samsung-Vega-1488.apk</li>
<li>AT&#038;T Radio &#8212; /system/app/ATT_Radio_2.1.07.apk</li>
<li>MobiTV &#8212;  /system/app/MobiTV_800x480_320_20100610_1.0.0.15-118829.apk</li>
<li>MobileBanking &#8212; mv /system/app/MobileBanking.apk</li>
<li>AT&#038;T Maps &#8212; /system/app/attmaps20-1094.apk</li>
<li>Where &#8212; /system/app/WHERE_Samsung_GT-I900_Vegas_EN_1.9.3_GM_06112010.apk</li>
<li>AT&#038;T Hotspots &#8212; /system/app/WISPr_v41.apk /system/app/WISPr_v41.tmp</li>
<li>AT&#038;T FamilyMap &#8212; mv /system/app/androidlauncher2.1-61x612010_06_11t15_49.apk</li>
<li>AT&#038;T Music mv /system/app/ATT-P11_PROD.apk</li>
<li>Instant Messaging &#8212; /system/app/IM-Signed.apk</li>
<li>AllShare &#8212; /system/app/Dlna.apk</li>
</ul>
<li>Disconnect your USB, turn off USB Debugging and see how your apps are missing!</li>
</ol>
<p>Here are the list of sources I used to get this going:</p>
<ul>
<li>Android Site &#8212; <a href="http://theandroidsite.com/2010/07/18/how-to-root-your-samsung-vibrant-or-captivate/">How to root your Captivate</a></li>
<li>Android Forums &#8212; <a href="http://androidforums.com/samsung-captivate/124736-t-bloatware-getting-your-way-delete-some.html">Delete some bloatware</a></li>
<li>Into Mobile &#8212; <a href="http://www.intomobile.com/2010/07/21/root-the-att-samsung-captivate-galaxy-s-tutorial/">Root the Captivate</a></li>
<li>XDA Developers &#8212; <a href="http://forum.xda-developers.com/archive/index.php/t-712546.html">Applications Pre-installed List</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=466</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I think this will be my next toy&#8230;</title>
		<link>http://www.darkrune.org/blog/?p=463</link>
		<comments>http://www.darkrune.org/blog/?p=463#comments</comments>
		<pubDate>Wed, 14 Jul 2010 19:47:16 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Random Rants]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=463</guid>
		<description><![CDATA[I am thinking about getting a Henry Repeating Arms H001T lever action rifle. Here is the beauty. Bud&#8217;s wants $320 (plus fees) for it. Not a bad price. Yeah, it is a 22LR. Yeah, it is just a plinker. But &#8230; <a href="http://www.darkrune.org/blog/?p=463">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am thinking about getting a Henry Repeating Arms H001T lever action rifle.</p>
<p>Here is the <a href="http://www.henryrepeating.com/h001t_leveroctagon.cfm">beauty</a>.</p>
<p>Bud&#8217;s wants $320 (plus fees) for it.  Not a bad price.</p>
<p>Yeah, it is a 22LR.  Yeah, it is just a plinker.  But my 30-06 cost a buck a shell to fire and that is a bit steep for lots of practice.</p>
<p>I still need to get to the range and get some time in with existing toys, so I will probably wait until fall.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=463</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming JIRA Users</title>
		<link>http://www.darkrune.org/blog/?p=459</link>
		<comments>http://www.darkrune.org/blog/?p=459#comments</comments>
		<pubDate>Fri, 02 Jul 2010 18:56:42 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Geek Out]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=459</guid>
		<description><![CDATA[So you use JIRA do you? Nice, so do I. Ever have someone get married? divorced? a typo in their user name? Every try and change it? Yeah, not so easy. Atlassian has not set a release where there will &#8230; <a href="http://www.darkrune.org/blog/?p=459">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you use <a href="http://www.atlassian.com/software/jira/">JIRA</a> do you?  Nice, so do I.</p>
<p>Ever have someone get married? divorced? a typo in their user name?  Every try and change it?  Yeah, not so easy.</p>
<p>Atlassian has not set a release where there will be a fix, so we humble JIRA administrators have to make due with what we can.  At this current job we are using version 4.0 (with plans to upgrade this summer).  We also used email addresses as the user name rather than the AD based user name.  If you want to use AD integration, it is best to match user names.  So we had a pressing need to rename everyone.  What is the right way?  Atlassian tells us to export, search and replace, then import. Yep. Kludgey.  Plus my import was not working for some reason.  What else can we do?  Database Updates!  Yeah!</p>
<p>I found my first SQL example in the <a href="http://jira.atlassian.com/browse/JRA-1549">7 year old rename user bug</a>.  It was published by Jeff Turner.  It mostly works on the 4.0 scheme.  Some updates are needed.</p>
<p>Here is the updated SQL for a 4.0 schema:</p>
<p><code>update jiraissue set reporter='newuser' where reporter='olduser@example.com';<br />
update jiraissue set assignee='newuser' where assignee='olduser@example.com';<br />
update jiraaction set AUTHOR='newuser' where AUTHOR='olduser@example.com';<br />
update changegroup set AUTHOR='newuser' where AUTHOR='olduser@example.com';<br />
update changeitem set OLDVALUE='newuser' where OLDVALUE='olduser@example.com' and FIELD='assignee';<br />
update changeitem set NEWVALUE='newuser' where NEWVALUE='olduser@example.com' and FIELD='assignee';<br />
update searchrequest set authorname='newuser' where authorname='olduser@example.com';<br />
update searchrequest set username='newuser' where username='olduser@example.com';<br />
update schemepermissions set perm_parameter='newuser' where perm_parameter='olduser@example.com' and perm_type="user";<br />
update schemepermissions set perm_parameter='newuser' where perm_parameter='olduser@example.com' and perm_type="user";<br />
update searchrequest set authorname='newuser' where authorname='olduser@example.com';<br />
update membershipbase set USER_NAME='newuser' where USER_NAME='olduser@example.com';<br />
update OS_CURRENTSTEP set owner='newuser' where owner='olduser@example.com';<br />
update OS_CURRENTSTEP set caller='newuser' where caller='olduser@example.com';<br />
update OS_HISTORYSTEP set owner='newuser' where owner='olduser@example.com';<br />
update OS_HISTORYSTEP set caller='newuser' where caller='olduser@example.com';<br />
update fileattachment set author='newuser' where author='olduser@example.com';<br />
update filtersubscription set username='newuser' where username='olduser@example.com';<br />
update project set lead='newuser' where lead='olduser@example.com';<br />
update userbase set username='newuser' where username='olduser@example.com';<br />
update customfieldvalue set stringvalue='newuser' where stringvalue='olduser@example.com';<br />
update columnlayout set username='newuser' where username='olduser@example.com';<br />
update portalpage set username='newuser' where username='olduser@example.com';<br />
update userhistoryitem set USERNAME='newuser' where USERNAME='olduser@example.com';<br />
update worklog set AUTHOR='newuser' where AUTHOR='olduser@example.com';<br />
update worklog set UPDATEAUTHOR='newuser' where UPDATEAUTHOR='olduser@example.com';<br />
update notification set notif_parameter='newuser' where notif_parameter='olduser@example.com';<br />
update component set lead='newuser' where lead='olduser@example.com';<br />
update columnlayout set username='newuser' where username='olduser@example.com';</code></p>
<p>Once you update your DB with all of those update statements you need to refresh your JIRA indexes.  This is done via the JIRA Administrator->Indexes page.</p>
<p>I have done this for a couple of users today and everything looks OK so far.  I will be doing it for bunches of users in the next couple of days and will update this post if needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=459</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wednesday Funny</title>
		<link>http://www.darkrune.org/blog/?p=453</link>
		<comments>http://www.darkrune.org/blog/?p=453#comments</comments>
		<pubDate>Wed, 26 May 2010 15:43:56 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Random Rants]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=453</guid>
		<description><![CDATA[An old Italian lived alone in New Jersey . He wanted to plant his annual tomato garden, but it was very difficult work, as the ground was hard. His only son, Vincent, who used to help him, was in prison. &#8230; <a href="http://www.darkrune.org/blog/?p=453">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An old Italian lived alone in New Jersey . He wanted to plant his annual tomato garden, but it was very difficult work, as the ground was hard. His only son, Vincent, who used to help him, was in prison. The old man wrote a letter to his son and described his predicament:</p>
<p>Dear Vincent,<br />
I am feeling pretty sad, because it looks like I won&#8217;t be able to plant my tomato garden this year. I&#8217;m just getting too old to be digging up a garden plot. I know if you were here my troubles would be over. I know you would be happy to dig the plot for me, like in the old days.<br />
Love, Papa</p>
<p>A few days later he received a letter from his son.</p>
<p>Dear Pop,<br />
Don&#8217;t dig up that garden. That&#8217;s where the bodies are buried..<br />
Love,<br />
Vinnie</p>
<p>At 4 a.m. the next morning, FBI agents and local police arrived and dug up the entire area without finding any bodies. They apologized to the old man and left.<br />
That same day the old man received another letter from his son.</p>
<p>Dear Pop,<br />
Go ahead and plant the tomatoes now. That&#8217;s the best I could do under the circumstances.<br />
Love you,<br />
Vinnie </p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=453</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu eSATA Configuration</title>
		<link>http://www.darkrune.org/blog/?p=447</link>
		<comments>http://www.darkrune.org/blog/?p=447#comments</comments>
		<pubDate>Mon, 24 May 2010 23:15:41 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Geek Out]]></category>
		<category><![CDATA[esata ubuntu]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=447</guid>
		<description><![CDATA[We use a couple of external hard drive enclosures for offline backups at work. The best connectivity is via eSATA (USB being a bit flakier and much slower). It works great on my Ubuntu 10.04 install on my Dell laptop, &#8230; <a href="http://www.darkrune.org/blog/?p=447">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We use a couple of external hard drive enclosures for offline backups at work.  The best connectivity is via eSATA (USB being a bit flakier and much slower).</p>
<p>It works great on my Ubuntu 10.04 install on my Dell laptop, but that is my personal box.  I was able to provision a Dell desktop and a PCI SATA card with two eSATA ports.  It is a Rosewill RC-209-EX with the SIL3114 chipset.</p>
<p>After plugging it all in, my drives were just not recognized.  No matter the boot order or what I did- no go.  So, I buckled and read the directions.  <img src='http://www.darkrune.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />    As it turns out, this card can only do four total SATA ports and the four internal are on by default and the two external are off.  I reset the jumpers to turn on both external and two internal.</p>
<p>Now it detects the drives.  Well, actually it detects one drive.  There are two in the enclosure.</p>
<p>So far I have had no luck getting the other drive in the enclosure detected.  This is quite frustrating.</p>
<p>If anyone happens to read this and know what I can do to solve this, please leave a comment.  If I fix it, I will add and update to this post.</p>
<p>UPDATE:  I have emailed Rosewill (no response yet).  I also set the jumpers on the WD drives to force them to be 150 MB/s.  This had no effect either.  I am still without a solution and am pretty frustrated.</p>
<p>UPDATE 2: I heard back from Rosewill.  No assistance at all, I responded- but no word back yet.  I have now also tried a SIL-3512 eSATA card (the only eSATA card Fry&#8217;s had) and it does not work either.  This is very frustrating.</p>
<p>UPDATE 3: I returned the SIL-3512 to Fry&#8217;s (no problems there) and hit up NewEgg for a <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16816710001 ">SNT SNT-PCIX Card Silicon Image 3132 SATA II PCI Express 2 x eSATA Port Multiplier RAID Controller Card</a>.  It is PCI-E but I have a slot (it appears anyway) and it works with a drive array with multiple drives.  About the same price as the other two as well.  Why is this so hard?  I should get it next week.  I also ordered an additional eSATA cable so I have two.  This looks really cool as well if you just need eSATA ports and you have spare SATA ones <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16812816068">eSATA bracket</a>.</p>
<p>UPDATE 4: The card I ordered from NewEgg works.  Well mostly.  Sometimes I do not get both drives showing up.  I re-seat the cables, and power the enclosure back on and all is well.  This was pretty darn annoying if I say so myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=447</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Flush Privileges Error</title>
		<link>http://www.darkrune.org/blog/?p=443</link>
		<comments>http://www.darkrune.org/blog/?p=443#comments</comments>
		<pubDate>Thu, 06 May 2010 19:16:08 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Geek Out]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=443</guid>
		<description><![CDATA[I spent a little time recently creating a new blog to act as a business landing page. To make it simple, I am going to use WordPress. Actually installing WordPress is very simple; just unzip it in the right place &#8230; <a href="http://www.darkrune.org/blog/?p=443">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I spent a little time recently creating a new blog to act as a business landing page.</p>
<p>To make it simple, I am going to use WordPress.  Actually installing WordPress is very simple; just unzip it in the right place and follow the wizard to create a wp-config.php file.</p>
<p>The trick I had was creating the database and user.  I ran these commands:<br />
mysql> CREATE DATABASE newdatabase;<br />
mysql> GRANT ALL PRIVILEGES ON newusername.* TO &#8220;newdatabase&#8221;@&#8221;localhost&#8221;<br />
    -> IDENTIFIED BY &#8220;somepassword&#8221;;<br />
mysql> FLUSH PRIVILEGES;</p>
<p>The FLUSH PRIVILEGES command had an error:<br />
ERROR 1146 (42S02): Table &#8216;mysql.servers&#8217; doesn&#8217;t exist</p>
<p>A bit of google-fu revealed some SQL to run.  My supposition is that during a recent upgrade of mysql server, this table became a requirement but was not created as part of the upgrade.</p>
<p>Here is the SQL to create an empty table in the mysql database.<br />
<code>CREATE TABLE `servers` (<br />
`Server_name` char(64) NOT NULL,<br />
`Host` char(64) NOT NULL,<br />
`Db` char(64) NOT NULL,<br />
`Username` char(64) NOT NULL,<br />
`Password` char(64) NOT NULL,<br />
`Port` int(4) DEFAULT NULL,<br />
`Socket` char(64) DEFAULT NULL,<br />
`Wrapper` char(64) NOT NULL,<br />
`Owner` char(64) NOT NULL,<br />
PRIMARY KEY (`Server_name`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=utf8<br />
COMMENT='MySQL Foreign Servers table';</code></p>
<p>Once I created that table, the FLUSH PRIVILEGES command worked without error and WordPress did all the DB work needed without complaint.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=443</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free WiFi at Select Airports</title>
		<link>http://www.darkrune.org/blog/?p=422</link>
		<comments>http://www.darkrune.org/blog/?p=422#comments</comments>
		<pubDate>Tue, 10 Nov 2009 13:34:27 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Geek Out]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=422</guid>
		<description><![CDATA[I just found out that there will be free wifi at about 40 airports this holiday season. (via LifeHacker). It is offered by Google. Check out the details here: http://www.freeholidaywifi.com/ I am traveling for Thanksgiving but I probably will not &#8230; <a href="http://www.darkrune.org/blog/?p=422">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just found out that there will be free wifi at about 40 airports this holiday season.  (via <a href="http://lifehacker.com/5401140/google-makes-airport-wi+fi-free-during-the-holidays">LifeHacker</a>).</p>
<p>It is offered by Google.  Check out the details here: <a href="http://www.freeholidaywifi.com/">http://www.freeholidaywifi.com/</a></p>
<p>I am traveling for Thanksgiving but I probably will not carry a laptop.  Others may find the list useful though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=422</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Apology</title>
		<link>http://www.darkrune.org/blog/?p=420</link>
		<comments>http://www.darkrune.org/blog/?p=420#comments</comments>
		<pubDate>Thu, 20 Aug 2009 20:14:11 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Random Rants]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=420</guid>
		<description><![CDATA[I recently received an email about a rant I made several years ago after the shootings at Virginia Tech. You can read it here. The individual who wrote the email was connected to the wedding party that I made a &#8230; <a href="http://www.darkrune.org/blog/?p=420">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently received an email about a rant I made several years ago after the shootings at Virginia Tech.  You can read it <a href="/blog/?p=152">here</a>.</p>
<p>The individual who wrote the email was connected to the wedding party that I made a passing reference too.  I should probably have been clearer with my words because I referred to them as a &#8220;drunk wedding party&#8221;.  I will readily admit I was not there and I do not know how drunk they were.  I am very clear on the fact that the Scales brothers were the ones with guns and were the ones who did the shooting.  The wedding party will forever have to deal with the tragedy of that night and I apologize for my characterization of the party as a whole.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=420</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Galileoscope Arrived</title>
		<link>http://www.darkrune.org/blog/?p=415</link>
		<comments>http://www.darkrune.org/blog/?p=415#comments</comments>
		<pubDate>Fri, 17 Jul 2009 00:18:58 +0000</pubDate>
		<dc:creator>stevet</dc:creator>
				<category><![CDATA[Random Rants]]></category>

		<guid isPermaLink="false">http://www.darkrune.org/blog/?p=415</guid>
		<description><![CDATA[Awhile back I posted about a program to bring telescopes to schools. Specifically the Galileoscope. Well this was on my stoop today: I unpacked it on my dining table and this is what I ended up with: I tried to &#8230; <a href="http://www.darkrune.org/blog/?p=415">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Awhile back I <a href="http://www.darkrune.org/blog/?p=401">posted</a> about a program to bring telescopes to schools.  Specifically the <a href="https://www.galileoscope.org/gs/">Galileoscope</a>.  Well this was on my stoop today:</p>
<p><a href="http://www.flickr.com/photos/darkrune/3727440387/" title="Galileoscope Box by denver_bumps, on Flickr"><img src="http://farm4.static.flickr.com/3472/3727440387_7742c44ee5_m.jpg" width="240" height="180" alt="Galileoscope Box" /></a></p>
<p>I unpacked it on my dining table and this is what I ended up with:</p>
<p><a href="http://www.flickr.com/photos/darkrune/3727438303/" title="Galileoscope Unpacked by denver_bumps, on Flickr"><img src="http://farm3.static.flickr.com/2581/3727438303_cecaace3d0_m.jpg" width="240" height="180" alt="Galileoscope Unpacked" /></a></p>
<p>I tried to follow the paper instructions, which are decent.  But I highly recommend the PDF on the Galileoscope site.  You can download it here: <a href="https://www.galileoscope.org/gs/content/downloads">PDF Download Page</a></p>
<p>When all was done, this is what I ended up:</p>
<p><a href="http://www.flickr.com/photos/darkrune/3727439353/" title="Galileoscope Assembled by denver_bumps, on Flickr"><img src="http://farm4.static.flickr.com/3527/3727439353_c648af87c9_m.jpg" width="240" height="180" alt="Galileoscope Assembled" /></a></p>
<p>It is still light out, so I cannot check out any stars yet- but it is pretty clear in Austin today so I am hopefully I can check out some stars or the moon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darkrune.org/blog/?feed=rss2&amp;p=415</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
