<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/wordpress-mu-1.2.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>B^2 - Billdar's Blog</title>
	<link>http://blogs.ydl.net/billdar</link>
	<description>Just another TSS Staff weblog</description>
	<pubDate>Wed, 05 Mar 2008 06:10:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.2.5</generator>
	<language>en</language>
			<item>
		<title>Quick and Dirty GUI Text Configuration Editor</title>
		<link>http://blogs.ydl.net/billdar/2008/03/05/quick-and-dirty-gui-text-configuration-editor/</link>
		<comments>http://blogs.ydl.net/billdar/2008/03/05/quick-and-dirty-gui-text-configuration-editor/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 06:09:14 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2008/03/05/quick-and-dirty-gui-text-configuration-editor/</guid>
		<description><![CDATA[Aaron and I have been kicking around the idea of an elevated privilege GUI flat text editor for normal users to easily modify text configuration files.  Using Vi, emacs (yuck), or nano from the command line is too much to ask for newbie on something as basic as configuring yum.
Well, turns out the answer [...]]]></description>
			<content:encoded><![CDATA[<p>Aaron and I have been kicking around the idea of an elevated privilege GUI flat text editor for normal users to easily modify text configuration files.  Using Vi, emacs (yuck), or nano from the command line is too much to ask for newbie on something as basic as configuring yum.</p>
<p>Well, turns out the answer <a href="http://www.linuxcommand.org/man_pages/consolehelper8.html" title="man consolehelper">may already exist</a>.  YDL already uses console helper to elevate the privileges of all the current system-config-* graphical utilities, and it looks like with a little work we take regular ol&#8217; gedit Text Editor and make it into the configuration editor we&#8217;re looking for:</p>
<p>This is just a testing example so I don&#8217;t forget what I did:</p>
<blockquote><p>1. First, copy the regular gedit to our new gedit-root</p>
<blockquote>
<h5>bash# cp /usr/bin/gedit /usr/sbin/gedit-root</h5>
</blockquote>
<p>2. Create link for console helper</p>
<blockquote>
<h5>bash# ln -s /usr/bin/consolehelper /usr/bin/gedit-root</h5>
</blockquote>
<p>3. Based on the system-config-services file, create a PAM entry</p>
<blockquote>
<h5>bash# vi /etc/pam.d/gedit-root</p>
<p><em>#%PAM-1.0<br />
auth        include     config-util<br />
account     include     config-util<br />
session     include     config-util</em></h5>
</blockquote>
<p>4. Create console security console.app entry</p>
<blockquote>
<h5>bash# vi /etc/security/console.app/gedit-root<em></p>
<p>USER=root<br />
PROGRAM=/usr/sbin/gedit-root<br />
SESSION=true</em></h5>
</blockquote>
<p>5. Create YDL Menu entry based on existing gedit entry.  I just copied the existing file into a new version and edited the following lines:</p>
<blockquote>
<h5>bash# cp /usr/share/applications/gnome-gedit.desktop /usr/share/applications/gedit-root.desktop</p>
<p>bash# vi /usr/share/applications/gedit-root.desktop</h5>
<h5><em>Name=Configuration Text Editor<br />
Comment=Edit Configuration Files<br />
Exec=gedit-root</em></h5>
</blockquote>
</blockquote>
<p>That should place the icon under Menu -&gt; Application -&gt; Accessories -&gt; Configuration Text Editor.  With a little digging, probably could put it under system tools like it belongs.</p>
<p>Anyhow, now when you are a regular user and click it, you will be prompted to enter the root password.  From there you can edit yum.conf, yaboot.conf, smbconf or whatever in a simple GUI environment.</p>
<p>You can even drag the file from nautilus and drop it on the editor and it will open automagically to edit.</p>
<blockquote>
<blockquote></blockquote>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2008/03/05/quick-and-dirty-gui-text-configuration-editor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HOWTO: Solving YDL 6.0 resolution issue (nv driver)</title>
		<link>http://blogs.ydl.net/billdar/2008/02/20/howto-solving-ydl-60-resolution-issue-nv-driver/</link>
		<comments>http://blogs.ydl.net/billdar/2008/02/20/howto-solving-ydl-60-resolution-issue-nv-driver/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 06:13:57 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2008/02/20/howto-solving-ydl-60-resolution-issue-nv-driver/</guid>
		<description><![CDATA[I have an old dual G5 powermac with an nvidia graphics card that I&#8217;m building up for a YDL 6.0 development box.    The problem I was having was that regardless of the resolution I set my display to, I was always getting a 1440&#215;900 @ 54Hz desktop.
The solution turns out to be relatively simple.  [...]]]></description>
			<content:encoded><![CDATA[<p>I have an old dual G5 powermac with an nvidia graphics card that I&#8217;m building up for a YDL 6.0 development box.    The problem I was having was that regardless of the resolution I set my display to, I was always getting a 1440&#215;900 @ 54Hz desktop.</p>
<p>The solution turns out to be relatively simple.  So, if you too are stuck with an ill-fitted desktop here is how to fix it:</p>
<blockquote><p>1.  Log in and open a terminal window (or press &lt;CTRL+ALT+F2&gt; if you can&#8217;t see your desktop)</p>
<p>2.  edit the file /etc/X11/xorg.conf</p>
<blockquote><p><strong><em> [billdar@mr-blue ~]$ vi /etc/X11/xorg.conf</em></strong></p></blockquote>
<p>3.  scroll down and find the Device section.  press &#8220;i&#8221; to start editing and add the following line:</p>
<blockquote><p><em>  Section &#8220;Device&#8221;<br />
Identifier      &#8220;Card0&#8243;<br />
Driver  &#8220;nv&#8221;<br />
Option &#8220;HWCursor&#8221; &#8220;true&#8221;<br />
</em><em><strong>Option &#8220;ModeValidation&#8221; &#8220;NoEdidDFPMaxSizeCheck&#8221;</strong><br />
EndSection</em></p></blockquote>
<p>4.  Press &lt;ESC&gt; to exit edit mode, then type &#8220;:wq&#8221; to save and quit</p>
<p>5.  Restart X by either rebooting or pressing &lt;CTRL+ALT+BACKSPACE&gt;</p></blockquote>
<p>That should fix it.  Now you can use the display utility to set your desired resolution.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2008/02/20/howto-solving-ydl-60-resolution-issue-nv-driver/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash Plugin for YDL (using Gnash)</title>
		<link>http://blogs.ydl.net/billdar/2008/02/02/flash-for-ydl-using-gnash/</link>
		<comments>http://blogs.ydl.net/billdar/2008/02/02/flash-for-ydl-using-gnash/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 03:28:15 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/09/12/flash-for-ydl-using-gnash/</guid>
		<description><![CDATA[UPDATE (2008-02-24): Andrew pointed out to me that this howto has been obsoleted by YDL 6.0.  First, check to see if it is already installed.  Open firefox and type: &#8220;about:plugins&#8221;.  If you see shockwave/flash, it is already installed correctly.
 If not, To add gnash support, click YDL -&#62; Applications -&#62; System Tools [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>UPDATE (2008-02-24): Andrew pointed out to me that this howto has been obsoleted by</em> YDL 6.0.</strong>  <em>First, check to see if it is already installed.  Open firefox and type: &#8220;about:plugins&#8221;.  If you see shockwave/flash, it is already installed correctly.</em></p>
<p><em> If not, To add gnash support, click YDL -&gt; Applications -&gt; System Tools -&gt; Add/Remove Programs.  Under the search tab, enter &#8220;gnash&#8221; and click search.  Click the check boxes and hit apply, the plugin will install automatically.  Thanks for the tip Andrew.</em></p>
<p>Kai had me try to get gnash working, a GNU flash player with a firefox plugin.  It was a pain in the ass to get<br />
going, but I got a couple rough rpms together that seem to work well here:</p>
<p><a href="http://cvs.terraplex.com/~billdar/gnash/gnash-0.8.1-2.ppc.rpm">http://cvs.terraplex.com/~billdar/gnash/gnash-0.8.1-2.ppc.rpm</a><br />
<a href="http://cvs.terraplex.com/~billdar/gnash/gnash-plugin-0.8.1-2.ppc.rpm">http://cvs.terraplex.com/~billdar/gnash/gnash-plugin-0.8.1-2.ppc.rpm</a></p>
<p>There are a couple more in that directory you may or may not need.  To install, just run:<br />
rpm -Uvh gnash-0.8.1-2.ppc.rpm</p>
<p>You&#8217;ll get a list of packages you may not have already installed.  I used yum to get the deps satisfied.  Just type:</p>
<p>yum install [missing package]</p>
<p>Might take a couple iterations to clear them all.  There are a ton of warnings from the gnash-0.8.1 rpm when it finally installs.  They appear to not break anything though, and can be ignored for now.</p>
<p>For the plugin, I messed up a bit and you have to create the directory:</p>
<p>/usr/lib64/mozilla/plugins</p>
<p>And install the rpm with the &#8211;nodeps option.  Then copy the libgnashplugin.so file to /usr/lib/mozilla/plugins.  Don&#8217;t forget to close/restart firefox to make it work.</p>
<p><a href="http://www.youtube.com">Youtube</a> and <a href="http://homestarrunner.com/sbemail.html">Homestar Runner </a>seems to work ok, though the load times are longer than they should be.  The stand alone swf player I tested with the file:</p>
<p><a href="http://www.beetlebailey.com/images/flag.swf">http://www.beetlebailey.com/images/flag.swf</a></p>
<p>It seems to work better on my ibook than the PS3 for some reason, so I&#8217;m interested in seeing how it works for you all.</p>
<p>Oh yeah, thanks to whoever packaged the original srpm.  It was tough to get all the deps, and the spec needed a little tweaking, but it made things a lot simpler.</p>
<p>-Bill</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2008/02/02/flash-for-ydl-using-gnash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PS3 Performance increase tests</title>
		<link>http://blogs.ydl.net/billdar/2007/08/08/ps3-performance-increase-tests/</link>
		<comments>http://blogs.ydl.net/billdar/2007/08/08/ps3-performance-increase-tests/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 01:16:44 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/08/08/ps3-performance-increase-tests/</guid>
		<description><![CDATA[Saw this article on slashdot, and while reading through the full thread this comment stood out from Ingo:
   "i've got no real complaint about ext3 - with the obligatory
    qualification that "noatime,nodiratime" in /etc/fstab is a
    must ...  So for most file workloads we give Windows [...]]]></description>
			<content:encoded><![CDATA[<p>Saw this <a href="http://linux.slashdot.org/article.pl?sid=07/08/08/1810243">article on slashdot</a>, and while reading through the full thread this comment stood out from Ingo:</p>
<pre>   "i've got no real complaint about ext3 - with the obligatory
    qualification that "noatime,nodiratime" in /etc/fstab is a
    must ...  So for most file workloads we give Windows a
    20%-30% performance edge, for almost nothing. (for RAM-starved
    kernel builds theperformance difference between atime and
    noatime+nodiratime setups is more on the order of 40%)"</pre>
<p>I&#8217;d consider the PS3 to have RAM constraints.  So I tried out the noatime options in my /etc/fstab with some mixed results (below).  First, here is what my default fstab looked like:</p>
<pre>/dev/sda2        /           ext3       defaults  1 1
/dev/sda3        swap        swap       defaults  0 0</pre>
<p>This I changed to:</p>
<pre>/dev/sda2        /           ext3       noatime,nodiratime,defaults  1 1
/dev/sda3        swap        swap       noatime,nodiratime,defaults  0 0</pre>
<p>So, first thing I did was the test suggested in the thread in compiling the  kernel sources:</p>
<pre>make distclean
echo 1 &gt; /proc/sys/vm/drop_caches
echo 2 &gt; /proc/sys/vm/drop_caches
echo 3 &gt; /proc/sys/vm/drop_caches
make allnoconfig
time make</pre>
<p>The results, minimal change:</p>
<p>defaults: real= 4m2.331s, user 3m27.480s, sys 0m28.352s<br />
noatime:rea= 4m1.176s, user 3m26.680s, sys 0m27.512s</p>
<p>Given the guy who made the test experienced little to no increase with  the same test, and Ingo insisted the improvements were significant, I tried a couple more little (very unscientific) tests.</p>
<p>Opening firefox, then closing window once up (time firefox)</p>
<p>default(noncached)- real= 9.259s, user= 2.624s, sys= 0.296s<br />
default(cached)- real=  4.177s, user= 2.52s, sys= 0.308s</p>
<p>noatime(noncached) real=8.887s, user- 2.604s, sys=0.380s<br />
noatime(cached)       real= 3.907s, user = 2.504s, sys=0.336s</p>
<p>It &#8220;felt&#8221; faster, but the numbers are too close together given human reaction time to close the window to be significant.</p>
<p>Then I tried Open Office writer, and the increase was huge:</p>
<p>default = real=27.381s, user 4.512s, sys= 0.804s<br />
noatime = real=15.100s, user=4.352s, sys=0.732s</p>
<p>When the splash screen popped up with noatime, it went right through the loading phase and popped up a working window fairly quickly.</p>
<p><strong>Conclusions:</strong></p>
<p>I will leave noatime in my /etc/fstab.  Even though I couldn&#8217;t get any numbers to  prove it, the system did seem noticeably faster.  I&#8217;m thinking the numbers are more an indication that I don&#8217;t know how to properly test for these performance increases.</p>
<p>Ah well, I&#8217;ll follow up when I can do proper testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/08/08/ps3-performance-increase-tests/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blog Comments&#8230;</title>
		<link>http://blogs.ydl.net/billdar/2007/07/15/blog-comments/</link>
		<comments>http://blogs.ydl.net/billdar/2007/07/15/blog-comments/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 04:19:53 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/07/15/blog-comments/</guid>
		<description><![CDATA[I&#8217;ve temporarily disabled accepting comments to my articles until I can figure  out the spam filter stuff.
I got to say, blog spam is at least 45% more annoying than regular spam.  Not only do you have to moderate through 60+ comments on clothing or pr0n sites, I get an email reminding me to delete it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve temporarily disabled accepting comments to my articles until I can figure  out the spam filter stuff.</p>
<p>I got to say, blog spam is at least 45% more annoying than regular spam.  Not only do you have to moderate through 60+ comments on clothing or pr0n sites, I get an email reminding me to delete it <img src='http://blogs.ydl.net/billdar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>When I figure it out, I&#8217;ll re-enable comments and post a howto to set it up yourselves.</p>
<p>-Bill</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/07/15/blog-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Independance Day&#8230;</title>
		<link>http://blogs.ydl.net/billdar/2007/07/04/independance-day/</link>
		<comments>http://blogs.ydl.net/billdar/2007/07/04/independance-day/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 01:23:51 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/07/04/independance-day/</guid>
		<description><![CDATA[Today is Independence Day, the day we told the red coats to leave&#8230; then all sh*t broke loose.
In that spirit, I am declaring independence from my old Via micro-ATX based Myth TV box and switching over some similar function to the PS3 (I know I&#8217;ve said it before, but I&#8217;m doing it this time).
There are [...]]]></description>
			<content:encoded><![CDATA[<p>Today is Independence Day, the day we told the red coats to leave&#8230; then all sh*t broke loose.</p>
<p>In that spirit, I am declaring independence from my old Via micro-ATX based Myth TV box and switching over some similar function to the PS3 (I know I&#8217;ve said it before, but I&#8217;m doing it this time).</p>
<p>There are plenty of <a href="http://ps3mods.blogspot.com/2007/01/mythtv-for-ps3-turn-your-ps3-into.html"> howtos</a> and <a href="http://www.dcemu.co.uk/vbulletin/archive/index.php/t-41258.html">articles</a> out there to get it all set up, but I&#8217;m more interested in getting it to act like a slingbox.  I have a dual tuner DVR from my satellite company that I can feed a dedicated input into the PS3.  From there, I can encode TV, store it on a network share, and make it available to my other computers at home and on the internet.</p>
<p>Got my USB TV tuner card on order.  So I&#8217;ll keep you all posted on my progress and post up a full howto when I&#8217;ve got it running.</p>
<p>I&#8217;ll probably not use Myth TV, and just make some hacked frontend to do what I want.  If anyone has any suggestions, now&#8217;s the time to speak up.</p>
<ul></ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/07/04/independance-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I am a terrible Sys Admin&#8230;</title>
		<link>http://blogs.ydl.net/billdar/2007/07/01/i-am-a-terrible-sys-admin/</link>
		<comments>http://blogs.ydl.net/billdar/2007/07/01/i-am-a-terrible-sys-admin/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 04:52:02 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/07/01/i-am-a-terrible-sys-admin/</guid>
		<description><![CDATA[I really should take lessons from chrish, because I suck ass trying to be the sys admin my sites.  Got a little story for all you like me, wanna-be admins putting up your first apache server to show your friends and family pictures of your kids, pets, or bare body parts:
I used to get [...]]]></description>
			<content:encoded><![CDATA[<p>I really should take lessons from chrish, because I suck ass trying to be the sys admin my sites.  Got a little story for all you like me, wanna-be admins putting up your first apache server to show your friends and family pictures of your kids, pets, or bare body parts:</p>
<p>I used to get hacked once every three months, like clockwork.  I&#8217;d be sitting at my desk late at night, enjoying an adult beverage and all the sudden my router would light up like a christmas tree.  The load on my cpu would spike and the fans would fire up to cool the system down.</p>
<p>Being the sophisticated admin, I yanked the ethernet cord and tried doing an autopsy.  Twice, I found nothing other than a couple new users created.  Once I found a 1.4 gig flat text file with IP addresses and SMB user name/password combos some automated script kiddie tool that someone was running on my machine was generating.</p>
<p>Only once did a hack do any damage.  I was testing some YDL stuff with Mr. Owen, and I lost use of the basic &#8216;ls&#8217;, &#8216;grep&#8217;, &#8216;ps&#8217;, etc commands.  With his help, found out some dude/script exploited a hole I created and replaced all the commands with hacked equivalents.  The funny part, the hacked commands were x86 binaries!   (they don&#8217;t run well on a PPC machine)</p>
<p>Ok, so back to the every three month thing.  Turns out during an argument with Kai (our CEO) over passwords, someone brought up Jack the Ripper complete with a table of password complexity vs. hack time.   Yep, my passwords took ~3 months to brute force.   Now my passwords are 20+ character phrases, convoluted to use a little bit of the entire ASCII set.  I still don&#8217;t dig on random passwords, but am all for complex ones.</p>
<p>So now all my hacks are from exploits that I either created or didn&#8217;t keep some service updated.  But I&#8217;m getting better.  Since I think I&#8217;ve been hit again, found a cool little posting that is good quick overview of a forensic deconstruction.  Enjoy:</p>
<p>http://www.fedora-linux.org/content/view/26/33/</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/07/01/i-am-a-terrible-sys-admin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The most dangerous BB gun&#8230;</title>
		<link>http://blogs.ydl.net/billdar/2007/06/26/the-most-dangerous-bb-gun/</link>
		<comments>http://blogs.ydl.net/billdar/2007/06/26/the-most-dangerous-bb-gun/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 01:20:31 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/06/26/the-most-dangerous-bb-gun/</guid>
		<description><![CDATA[ I&#8217;ve grown up around guns, been privy to all sorts of shooting,
but this weekend I procured by far the most dangerous bb gun I&#8217;ve
ever seen.
It&#8217;s a Walther PPK replica (James Bond&#8217;s old gun).  It sports a metal
slide, composite frame, and the slide blows back after each shot.
Firing it feels just like a little [...]]]></description>
			<content:encoded><![CDATA[<p> I&#8217;ve grown up around guns, been privy to all sorts of shooting,<br />
but this weekend I procured by far the most dangerous bb gun I&#8217;ve<br />
ever seen.</p>
<p>It&#8217;s a Walther PPK replica (James Bond&#8217;s old gun).  It sports a metal<br />
slide, composite frame, and the slide blows back after each shot.<br />
Firing it feels just like a little .22 semi-auto pistol.</p>
<p>In and of itself, it is a nice little CO2 semi-auto bb gun. The<br />
dangerous part: I modified it to &#8220;Slam fire&#8221;.  By disassembling the<br />
action and a little spacer behind the firing pin, you can make it so<br />
that every time the slide comes forward the CO2 valve actuates.</p>
<p>The result is the ability to fire 15 shots @400fps in just over<br />
1 second.  The drawback: &#8220;Slam Firing&#8221; removes the normal requirement<br />
of actually pulling the trigger <img src='http://blogs.ydl.net/billdar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Once it starts firing, it doesn&#8217;t<br />
stop until the clip is empty.</p>
<p>Or, as my dad found out, if you pull back the slide (with safety on)<br />
and let it go, it will go into full auto mode.</p>
<p>As cool as it is, I think it might be a little too dangerous.  It may<br />
be that I&#8217;m finally getting old enough to take heed to that gut feeling<br />
that I&#8217;m going to seriously injure myself.</p>
<p>Then again, it could just be the realization that at that rate of fire,<br />
any accident will result in multiple gunshot wounds&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/06/26/the-most-dangerous-bb-gun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Never can find a good golf ball review&#8230;</title>
		<link>http://blogs.ydl.net/billdar/2007/06/20/never-can-find-a-good-golf-ball-review/</link>
		<comments>http://blogs.ydl.net/billdar/2007/06/20/never-can-find-a-good-golf-ball-review/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 04:11:49 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/06/20/never-can-find-a-good-golf-ball-review/</guid>
		<description><![CDATA[Nothing terribly technical been going down lately, but  I haven&#8217;t been idle.  Playing a lot of golf this year and finally brought my handi-cap down from 30 to 18  
Thats about when you start noticing the little things.  Things like, there is a difference between my 6 and 7 irons.  One biggie that can [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing terribly technical been going down lately, but  I haven&#8217;t been idle.  Playing a lot of golf this year and finally brought my handi-cap down from 30 to 18 <img src='http://blogs.ydl.net/billdar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thats about when you start noticing the little things.  Things like, there is a difference between my 6 and 7 irons.  One biggie that can be solved with a little $$ upfront is the type of ball you use.</p>
<p>With no review geared to the mid-high handi-cap geek golfer easily available, by buddy and I have been testing quite a few types of balls in the $15 - $28 /dozen range.  Any less is a range ball, any more and you&#8217;ll tear up when your shank is lost in the trees.</p>
<p>Given that, here are the balls we&#8217;ve tried so far, ranked from my favorite to poorest performance:<br />
<strong>Callaway CX8 Hots <em>($25)</em> </strong>- Triple core ball with Iomer cover.  Not sure what that means, but the marketing material on the package says it is &#8220;Hot off the clubface&#8221;.  And it definatly seems to be.  It does stretch the distance about 10% for all clubs, but it is really soft to hit.  By soft I mean it feels weird not to have much feedback on my driver to 6 irons.  But it is plush with 8 to wedges, a lot of control to where I can get the ball to &#8217;stick&#8217; to the green.  Gives me the chance to 2 putt a par.</p>
<p><strong>Bridgestone E6 <em>($25)</em></strong> - Another triple core ball like the Hot, has even better feel with the short irons.  The cover also can take a cart path or chopping wood without scuffing.  The drawback seems to be off the driver, woods, and hybrid.  No tactile feedback and seems to come up short.  Might have just been the two rounds I shot with these balls, but just didn&#8217;t seem to have that pop the Hots did.</p>
<p><strong>Callaway Warbirds <em>($16) - </em></strong>My old favorite ball, but they are getting phased out I hear.  So you can find them on sale for &lt; $10 some places.  This ball is the baseline for my driving (~250 - 270).  Just seems to do the job everywhere, and it won&#8217;t break the bank to come up short and hit the water.</p>
<p><strong>Noodle Long and Soft <em>($16)</em> -</strong> This is my go-to ball if I am running low.  Proshops stock this ball and don&#8217;t seem to mark them up as bad as the others.  These are on-par with the Warbirds, but the name is much cooler <img src='http://blogs.ydl.net/billdar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Nike Powerdistance, Power Control, etc.. <em>($15)</em> </strong>- Other than the package color, I can&#8217;t feel any difference between them.  They seem to want to be placed in the Noodle/Warbird class, but just not there for me.  Not a bad ball, and if I have a bad day I&#8217;d rather drop one of these than the above.</p>
<p><strong>Nike Juice (aka Ginormous) ($21)</strong> - I really wanted to like this ball.  The packaging is funny as hell, and the ball numbers are all Ginormous^2 or Ginormous^4, etc..  But the ball is as hard as a rock.  I use this ball to validate my spending time writing/talking about golf balls.  You putt a Hot or E6 then imediatly putt a Juice, and anyone will feel the difference.  The plus for this ball is off the driver.  When hit well, it is rediculous the feel and distance you get off it.  This is the only ball I&#8217;ve broken 300 yards with.  But is not enough for me to want to play with it.</p>
<p><strong>Wilson Hyper-Ti Performance ($9) -  </strong>Nice packaging, and with that many adjatives it must be good.  I bought 4 boxes at a 2 for $10 deal.  What I got is a bunch of range balls.  They hit poorly, and the sound they make off the club some how sounds&#8230; sick.  As in, diseased.  The upside is that if you can&#8217;t hit over water, or trying out that driver next to ravine, this is the ball to reach for.  Belive me, you&#8217;ll be glad you lost it.</p>
<p>There has been other balls I&#8217;ve tested that I&#8217;m still deciding on.  Nike Mojo&#8217;s, Pinacle XT, Titliest NXT, and Nike NX&#8217;s are in my bag now.  But after finding the Hots and a deal on cheap logo overruns, I can&#8217;t say I&#8217;m looking that hard now.</p>
<p>Well, better get back to this computer stuff now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/06/20/never-can-find-a-good-golf-ball-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>B^2 has Arrived&#8230;</title>
		<link>http://blogs.ydl.net/billdar/2007/06/12/b2-has-arrived/</link>
		<comments>http://blogs.ydl.net/billdar/2007/06/12/b2-has-arrived/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 03:23:14 +0000</pubDate>
		<dc:creator>billdar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ydl.net/billdar/2007/06/12/b2-has-arrived/</guid>
		<description><![CDATA[B^2 has arrived, and I&#8217;ve yet to produce any content (yet)&#8230;
There are several little projects I&#8217;m working on with the PS3 and other YDL-based endevors that may have a nugget or two of knowledge that, when indexed properly, may help some poor b*stard looking for that last hint to get something else working.
Thats about as [...]]]></description>
			<content:encoded><![CDATA[<p>B^2 has arrived, and I&#8217;ve yet to produce any content (yet)&#8230;</p>
<p>There are several little projects I&#8217;m working on with the PS3 and other YDL-based endevors that may have a nugget or two of knowledge that, when indexed properly, may help some poor b*stard looking for that last hint to get something else working.</p>
<p>Thats about as good of an introduction I have in me, so here&#8217;s to me keeping the content fresh.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ydl.net/billdar/2007/06/12/b2-has-arrived/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
