<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>journal</title>
        <link>http://www.20seven.org/journal/</link>
        <description>...not so private reflections of greg.newman</description>
        <language>en</language>
        <copyright>Copyright 2010</copyright>
        <lastBuildDate>Wed, 13 Sep 2006 18:32:32 -0500</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Happy Programmer&apos;s Day</title>
            <description><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Programmer's_day" title="Programmer's Day">Happy Programmer's Day, or what's left of it!</a></p>]]></description>
            <link>http://www.20seven.org/journal/2006/09/happy-programmers-day.html</link>
            <guid>http://www.20seven.org/journal/2006/09/happy-programmers-day.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Apple</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Hacks</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Mac</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">PHP</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Ruby on Rails</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">javascript</category>
            
            
            <pubDate>Wed, 13 Sep 2006 18:32:32 -0500</pubDate>
        </item>
        
        <item>
            <title>Ruby &amp; FastCGI Problems Resolved</title>
            <description><![CDATA[<p>Well we finally got it working, otherwise you wouldn't be reading this!  As we struggled to locate what the actual problem was, all we found was other people with similar problems but no one had answers.  Finally the problem is solved.  Here's what we found to be the correct installation order (obviously D/L &amp; install applies to each step):</p>

<blockquote>
<li>1. Ruby</li>
<li>2. Ruby Gems</li>
<li>3. Rails</li>
<li>4. MySQL-Ruby C Bindings</li>
<li>5. FastCGI Developers Kit (Muy Importante!!!!)</li>
<li>6. Ruby-fastcgi bindings (0.8.6 or higher due to mem leak issue in older versions)</li>
<li>7. Install <span class="caps">DSO </span>for mod_fastcgi (Apache 1.3)</li>
<br /><br /><br />
<span class="caps">NOTE</span>: For Apache 2 &amp; lighttpd step 7 is different but since we're using Apache 1.3 I'll digress.<br />
</blockquote>
This is just a quick reference so if you don't know how to use curl, wget or how to run make, I suggest some more reading before attempting this. Hope this helps everyone out there having setup issues similar to ours. ]]></description>
            <link>http://www.20seven.org/journal/2006/03/ruby-fastcgi-problems-resolved.html</link>
            <guid>http://www.20seven.org/journal/2006/03/ruby-fastcgi-problems-resolved.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Ruby on Rails</category>
            
            
            <pubDate>Wed, 15 Mar 2006 08:55:00 -0500</pubDate>
        </item>
        
        <item>
            <title>HP PSC 1410 printer installation in Suse</title>
            <description><![CDATA[<p>The HP <span class="caps">PSC</span> 1410 all-in-one printer is not really supported in the linux community, and very little information is available; practically none on HPâ€™s website.</p>

<p>Hereâ€™s how I got it working in Suse 10.0 <span class="caps">RC1</span>:</p>

<p>By default the <span class="caps">HPLIP </span>drivers were installed with Suse.<br />
If you need the drivers they can be downloaded from the sourceforge HP project: http://hpinkjet.sourceforge.net/</p>

<p>Download the HP 1400 series <span class="caps">PPD </span>from here:<br />
http://www.linuxprinting.org/</p>

Now you need to copy the <span class="caps">PPD </span>file into the right directory. In my case (as root):<br />
From the terminal, su to root and type the following.<br />
<blockquote>
cp HP-PSC_1400-hpijs.ppd /usr/share/cups/model/HP</blockquote>

<p>Go into <span class="caps">YAST,</span> Hardware, and printers. From there you can select the HP 1400 ppd for the printer, and you should be up and printing pretty pictures. </p>]]></description>
            <link>http://www.20seven.org/journal/2006/03/hp-psc-1410-all-in-one-printer-installation-in-suse.html</link>
            <guid>http://www.20seven.org/journal/2006/03/hp-psc-1410-all-in-one-printer-installation-in-suse.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Linux</category>
            
            
            <pubDate>Wed, 15 Mar 2006 01:48:00 -0500</pubDate>
        </item>
        
        <item>
            <title>hal.dll missing on dual boot with linux</title>
            <description><![CDATA[<p>I received the error on Windows XP startup that my hal.dll file (hardware abstraction layer) was missing and Windows would not boot. Hereâ€™s how I fixed it.</p>
<p>Boot from your Windows CD and follow the directions to start the Recovery Console. When asked for your Administrator password, enter that in. In my case I didnâ€™t have one so I left it blank.</p>
<p>I then navigate to the system32 folder by typing â€œcd windows/system32? to get into the system32 directory and type â€œdirâ€ to get a list of directory files to confirm that the hal.dll file was there. In which case it was. This tells me that there is a problem with my boot.ini file.</p>
<p>
I then typed the following:<br />
<blockquote>cd C:/<br />
Attrib -H -R -S C:\Boot.ini<br /><br />
<span class="caps">DEL</span> C:\Boot.ini<br /><br />
BootCfg /Rebuild<br /><br />
Fixboot<br /><br />
exit<br />
</blockquote></p><p>
The Attrib command I entered made the file editable. The <span class="caps">DEL </span>command deleted the Boot.ini file and the BootCfg /Rebuild created a new Boot.ini file based on my partition tables. The exit command reboots the <span class="caps">PC.</span><br />
</p><p>
If you ever run into this and the hal.dll file is truely missing, you can extract a copy from your Windows CD by typing the following from the recovery console.<blockquote>
expand d:\i386\hal.dll_c:\windows\system32\hal.dll</blockquote>
This will copy the file from the CD to your system32 directory and reboot. You should be up and running again.</p>
<p>
I hope this helps someone that has the same problems I encountered with Windows and hal.<br />
</p>]]></description>
            <link>http://www.20seven.org/journal/2006/03/hal-dll-missing-on-dual-boot-with-linux.html</link>
            <guid>http://www.20seven.org/journal/2006/03/hal-dll-missing-on-dual-boot-with-linux.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Linux</category>
            
            
            <pubDate>Wed, 15 Mar 2006 01:22:00 -0500</pubDate>
        </item>
        
    </channel>
</rss>

