<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5" -->
<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/"
>

<channel>
	<title>Idling User</title>
	<link>http://idlinguser.com</link>
	<description></description>
	<pubDate>Sun, 05 Jun 2005 16:06:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5</generator>
	<language>en</language>

		<item>
		<title>expand your tabs</title>
		<link>http://idlinguser.com/gnulinux-stuff/expand-your-tabs/</link>
		<comments>http://idlinguser.com/gnulinux-stuff/expand-your-tabs/#comments</comments>
		<pubDate>Sun, 05 Jun 2005 11:04:27 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>gnu/linux stuff</category>
	<category>quick scripts</category>
	<category>open source</category>
	<category>coding</category>
		<guid>http://idlinguser.com/gnulinux-stuff/expand-your-tabs/</guid>
		<description><![CDATA[
I've been back and forth between tabs and spaces for code indentation in recent years. My exposure to Python lead me down the path of spaces, while in the past I had stuck to tabs in my PHP, Perl &#038; Java.  When its my own code it's fine to use whichever I feel is [...]]]></description>
			<content:encoded><![CDATA[	<p>
I&#8217;ve been back and forth between tabs and spaces for code indentation in recent years. My exposure to Python lead me down the path of spaces, while in the past I had stuck to tabs in my PHP, Perl &#038; Java.  When its my own code it&#8217;s fine to use whichever I feel is right at the time; I&#8217;m only possibly bothering myself. But when working on a team project with coding standards, that doesn&#8217;t cut it.  Of course, my editor isn&#8217;t always set right given the task requirements - a not so bad problem for 1 or 2 new files but a huge pain for a few dozen new files.  I learned about a pair of tools that made the conversion process so much easier: expand and unexpand.  They simply convert from tabs to spaces and back, with the added functionality of being able to handle tabstops - a key feature that have put these tools in my permanent toolbox, where a simple regex in vim, sed or Perl would not have done the trick.  Ain&#8217;t the CLI grand?
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/gnulinux-stuff/expand-your-tabs/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>MySQL 4.1 on Gentoo</title>
		<link>http://idlinguser.com/gnulinux-stuff/mysql-41-on-gentoo/</link>
		<comments>http://idlinguser.com/gnulinux-stuff/mysql-41-on-gentoo/#comments</comments>
		<pubDate>Tue, 24 May 2005 16:45:56 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>gnu/linux stuff</category>
	<category>technology</category>
	<category>open source</category>
	<category>coding</category>
		<guid>http://idlinguser.com/gnulinux-stuff/mysql-41-on-gentoo/</guid>
		<description><![CDATA[
I've been running MySQL 4.1 on Gentoo on my dev machines for a little while now without any major hangups.  A few people have asked me how to get it emerged because they got hungup by the masks in Gentoo whic prevent them from emerging 4.1 and they gave up after the usual ~x86 [...]]]></description>
			<content:encoded><![CDATA[	<p>
I&#8217;ve been running MySQL 4.1 on Gentoo on my dev machines for a little while now without any major hangups.  A few people have asked me how to get it emerged because they got hungup by the masks in Gentoo whic prevent them from emerging 4.1 and they gave up after the usual ~x86 keyword failed.  The usual trick of adding &#8220;dev-db/mysql ~x86&#8243; to your /etc/portage/package.keywords still applies.  But then it is still masked.  And this is the key: add &#8220;dev-db/mysql&#8221; to /etc/portage/package.unmask.  Voila!  Enjoy.
</p>
	<p>
P.S.  Mind the messages from emerge about updating from previous versions of MySQL.  And, of course, don&#8217;t do this on a production box without testing it first <img src='http://idlinguser.com/wp-images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .
</p>
	</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/gnulinux-stuff/mysql-41-on-gentoo/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>M$ $QL $erver</title>
		<link>http://idlinguser.com/technology/ms-sql-server-change-object-owner-script/</link>
		<comments>http://idlinguser.com/technology/ms-sql-server-change-object-owner-script/#comments</comments>
		<pubDate>Wed, 06 Apr 2005 16:15:21 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>technology</category>
		<guid>http://idlinguser.com/technology/ms-sql-server-change-object-owner-script/</guid>
		<description><![CDATA[
Yes, that dirty word.  MS SQL Server.  Never thought you'd hear that one here did you?  Its been about 6 years since I'd last touched the beast, and of course I'm loving every minute of it.



I was handed a DB to work on that I should have been able to attach right [...]]]></description>
			<content:encoded><![CDATA[	<p>
Yes, that dirty word.  MS SQL Server.  Never thought you&#8217;d hear that one here did you?  Its been about 6 years since I&#8217;d last touched the beast, and of course I&#8217;m loving every minute of it.
</p>
	<p>
I was handed a DB to work on that I should have been able to attach right into my instance.  No problem.  Except many of the objects were owned by users in the newly attached DB that didn&#8217;t have a login on my instance and this was a problem.  And, well, wouldn&#8217;t you know, there doesn&#8217;t seem to be a way to assign a login to an existing DB user, at least not without dissecting the system tables.  Go figure.
</p>
	<p>
I found <a href="http://weblogs.asp.net/owscott/archive/2004/01/30/65229.aspx">this little SQL script</a> from <a href="http://weblogs.asp.net/owscott/">Scott Forsyth</a> and <a href="http://davidpenton.com/">David Penton</a> handy in resurrecting my orphaned tables quickly w/o manually running sp_changeobjectowner over and over.  Now they&#8217;re happily owned again and healthy.  Scott and David, you rock.  Thanks.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/technology/ms-sql-server-change-object-owner-script/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>New Lives, New Blog</title>
		<link>http://idlinguser.com/technology/new-lives-new-blog/</link>
		<comments>http://idlinguser.com/technology/new-lives-new-blog/#comments</comments>
		<pubDate>Fri, 18 Mar 2005 01:10:49 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>technology</category>
	<category>twins</category>
		<guid>http://idlinguser.com/technology/new-lives-new-blog/</guid>
		<description><![CDATA[
Our twins were born last month on Valentine's Day, Zo&euml; at 5lbs. 2oz. and Theodore at 6lbs. 9oz.  Well, its more than a month later, and I'm blogging about it between feedings.  Not only that but I've converted from Movable Type to WordPress.  Oh, what fun that was! Really, it was.  [...]]]></description>
			<content:encoded><![CDATA[	<p>
Our twins were born last month on Valentine&#8217;s Day, Zo&euml; at 5lbs. 2oz. and Theodore at 6lbs. 9oz.  Well, its more than a month later, and I&#8217;m blogging about it between feedings.  Not only that but I&#8217;ve converted from <a href="http://www.sixapart.com/movabletype/">Movable Type</a> to <a href="http://wordpress.org/">WordPress</a>.  Oh, what fun that was! Really, it was.  The most satisfying part was generating the <a href="http://httpd.apache.org/docs/mod/mod_rewrite.html">mod_rewrite</a> rules to convert all my old archive urls to my new shortened human-friendly semantic urls using a variation on <a href="http://wiki.wordpress.org/MT-Redirect">other&#8217;s published methods</a> and formats.
</p>
	<p>
Enough about this blog stuff, let&#8217;s talk babies.  They&#8217;re awesome.  Theo is incredible cute as he sings his songs, chugging away at a bottle or looking around at the magnificent ceiling from the comfort of his bouncy seat.  Zo&euml; is an angelic  perfect little girl. Innocent, gentle, calm and content in most any situation.   Theo is the eater, always demanding more from his milk slaves, IMMEDIATELY!, but he takes his sweet time in finishing the bottle!  Zo&euml; is much more easy going about eating, but she&#8217;s quite speedy&#8230; far faster than Theo.  The two of them are so very distinctly different!
</p>
	<p>
The best thing about them is how happy they&#8217;ve made Amy and me.    It&#8217;s gonna be a heck of a ride!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/technology/new-lives-new-blog/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>gentoo + gcc + libtool</title>
		<link>http://idlinguser.com/open-source/gentoo-gcc-libtool/</link>
		<comments>http://idlinguser.com/open-source/gentoo-gcc-libtool/#comments</comments>
		<pubDate>Mon, 17 Jan 2005 14:03:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>open source</category>
		<guid>http://idlinguser.com/open-source/gentoo-gcc-libtool/</guid>
		<description><![CDATA[
I had a nasty problem w/ libtool failing because it was looking for the old 3.3.4 gcc version of my libstd++.la instead of 3.3.5.  After many hours of mucking around with things trying to find a fix or fix it myself, I finally found this thread which answered my problems:
&nbsp;&nbsp;&nbsp;&nbsp;http://forums.gentoo.org/viewtopic.php?t=279136&#038;highlight=libtool+gcc+fail
Basically, running "fix_libtool_files.sh 3.3.4" did [...]]]></description>
			<content:encoded><![CDATA[	<p>
I had a nasty problem w/ libtool failing because it was looking for the old 3.3.4 gcc version of my libstd++.la instead of 3.3.5.  After many hours of mucking around with things trying to find a fix or fix it myself, I finally found this thread which answered my problems:<br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://forums.gentoo.org/viewtopic.php?t=279136&#038;highlight=libtool+gcc+fail">http://forums.gentoo.org/viewtopic.php?t=279136&#038;highlight=libtool+gcc+fail</a><br/><br />
Basically, running &#8220;fix_libtool_files.sh 3.3.4&#8243; did the trick. Argh! Hope that helps someone else.
</p>
	<p>
There are many other things to write about&#8230; like our new house and the babies that are to arrive soon&#8230; but this blog takes a back seat to all of that.  :-/
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/open-source/gentoo-gcc-libtool/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>I&#8217;m a Zend Certified Engineer</title>
		<link>http://idlinguser.com/coding/im-a-zend-certified-engineer/</link>
		<comments>http://idlinguser.com/coding/im-a-zend-certified-engineer/#comments</comments>
		<pubDate>Mon, 15 Nov 2004 23:40:41 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>coding</category>
		<guid>http://idlinguser.com/coding/im-a-zend-certified-engineer/</guid>
		<description><![CDATA[



I'm a Zend Ceritifed Engineer. My paper Zend Certified Engineer certificate arrived in the mail today.  I actually took the test back on July 1st during the beta and got word of my passing by mail a few months later.  Now Zend is providing the means to authenticate your certification online so I [...]]]></description>
			<content:encoded><![CDATA[	<div align="center">
<a href="https://www.zend.com/store/education/certification/authenticate.php?ClientCandidateID=ZEND001021&#038;RegistrationID=208745918"><img src="/images/certified_engineer_logo.gif" border="0"/></a>
</div>
	<p>
I&#8217;m a <a href="http://zend.com/store/education/certification/authenticate.php?ClientCandidateID=ZEND001021&#038;RegistrationID=208745918">Zend Ceritifed Engineer</a>. My paper Zend Certified Engineer certificate arrived in the mail today.  I actually took the test back on July 1st during the beta and got word of my passing by mail a few months later.  Now Zend is providing the means to authenticate your certification online so I decided to put up the logo linked to my info.  Nifty.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/coding/im-a-zend-certified-engineer/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Charlie&#8217;s first kill</title>
		<link>http://idlinguser.com/random/charlies-first-kill/</link>
		<comments>http://idlinguser.com/random/charlies-first-kill/#comments</comments>
		<pubDate>Wed, 27 Oct 2004 16:00:25 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>random</category>
		<guid>http://idlinguser.com/random/charlies-first-kill/</guid>
		<description><![CDATA[



I think it is appropriate to resurrect this infamous photoshopped picture today as last night Charlie officially made his first kill.  For a week or so we've been tormented by a mouse stealing our food and driving Charlie nuts by leaving scent trails around the apartment.  His chase even left Charlie on top [...]]]></description>
			<content:encoded><![CDATA[	<div align="center">
<img src="/archives/photos/charlie/DSCN2867.jpg" width="500" height="392" />
</div>
	<p>
I think it is appropriate to resurrect this infamous photoshopped picture today as last night Charlie officially made his first kill.  For a week or so we&#8217;ve been tormented by a mouse stealing our food and driving Charlie nuts by leaving scent trails around the apartment.  His chase even left Charlie on top of our dining room table when we arrived home the other night.  Well, the hunt came to a close last night when Charlie cornered the mouse and turned it into a pile of bloody mouse guts.  Unfortunately, I was not there to photograph the event, but I imagine it looked something like the scene above.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/random/charlies-first-kill/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Comments are OFF!</title>
		<link>http://idlinguser.com/random/comments-are-off/</link>
		<comments>http://idlinguser.com/random/comments-are-off/#comments</comments>
		<pubDate>Thu, 30 Sep 2004 07:32:25 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>random</category>
		<guid>http://idlinguser.com/random/comments-are-off/</guid>
		<description><![CDATA[
Comment spammers suck.
 ]]></description>
			<content:encoded><![CDATA[	<p>
Comment spammers suck.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/random/comments-are-off/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Sex? Yes, please.</title>
		<link>http://idlinguser.com/twins/sex-yes-please/</link>
		<comments>http://idlinguser.com/twins/sex-yes-please/#comments</comments>
		<pubDate>Fri, 24 Sep 2004 16:33:09 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>twins</category>
		<guid>http://idlinguser.com/twins/sex-yes-please/</guid>
		<description><![CDATA[
So, the ultrasound was great. It took a little while longer than we expected because those little ones were being slightly camera shy when it came to some important shots.  I'll take care of that as soon as they're delivered!  It was really cool to see them rolling around, sucking their thumbs and [...]]]></description>
			<content:encoded><![CDATA[	<p>
So, the ultrasound was great. It took a little while longer than we expected because those little ones were being slightly camera shy when it came to some important shots.  I&#8217;ll take care of that as soon as they&#8217;re delivered!  It was really cool to see them rolling around, sucking their thumbs and waving at us.
</p>
	<p>
So, we waited through this whole process of measuring their little craniums, brain segments, arms, legs, hearts, etc. while we anxiously awaited the most important news of the day&#8230; their sex!  The technician was &#8220;very sure&#8221; that baby A was a boy and &#8220;80% sure&#8221; that baby B is a girl!  Awesome!  No matter what they are, I&#8217;d still be high as a kite.  It was so fun just to see them dancing around!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/twins/sex-yes-please/feed/</wfw:commentRSS>
	</item>
		<item>
		<title></title>
		<link>http://idlinguser.com/random//</link>
		<comments>http://idlinguser.com/random//#comments</comments>
		<pubDate>Fri, 24 Sep 2004 08:25:03 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
	<category>random</category>
	<category>twins</category>
	<category>house</category>
		<guid>http://idlinguser.com/random//</guid>
		<description><![CDATA[
Its been forever since I've posted something.  Things have been pretty busy lately and I just haven't gotten to it.  I actually haven't read any blogs regularly or even irregularly for a month or more.  I'm sure the next time I open Bloglines it'll say something like "your unread posts are about [...]]]></description>
			<content:encoded><![CDATA[	<p>
Its been forever since I&#8217;ve posted something.  Things have been pretty busy lately and I just haven&#8217;t gotten to it.  I actually haven&#8217;t read any blogs regularly or even irregularly for a month or more.  I&#8217;m sure the next time I open Bloglines it&#8217;ll say something like &#8220;your unread posts are about to explode&#8221; &#8230; just like my head has been lately! Well, here&#8217;s a few of the more exciting things going on&#8230;
</p>
	<p>
In a few hours we&#8217;ll find out the sex of both of the twins.  We&#8217;re going for an anatomical ultrasound where they measure limbs, spine, etc. for proper growth, and of course check out for sex organs.  I&#8217;m psyched!
</p>
	<p>
And then, we&#8217;re buying a house.  We just had the engineer&#8217;s inspection yesterday.  It was very cool to have someone who knows the ins and outs of a houses mechanics take you through a house and tell you how it works and whats wrong with it.  Fortunately for us, there was very little wrong with the house.  We also met the current owners who were very nice and spent a good bit of time talking about the house, Brooklyn, sports and various other things with us. Now comes the contract &#8230;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://idlinguser.com/random//feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>
