<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/serendipity/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://www.jory.info/serendipity/feeds/atom.xml" rel="self" title="Jory Stone's Place" type="application/atom+xml" />
    <link href="http://www.jory.info/serendipity/"                        rel="alternate"    title="Jory Stone's Place" type="text/html" />
    <link href="http://www.jory.info/serendipity/rss.php?version=2.0"     rel="alternate"    title="Jory Stone's Place" type="application/rss+xml" />
    <title type="html">Jory Stone's Place</title>
    <subtitle type="html">A little fish in the big pond...</subtitle>
    
    <id>http://www.jory.info/serendipity/</id>
    <updated>2009-05-31T00:54:51Z</updated>
    <generator uri="http://www.s9y.org/" version="1.4.1">Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://www.jory.info/serendipity/archives/30-PostgreSQL-Out-of-Memory-with-large-INSERT.html" rel="alternate" title="PostgreSQL - Out of Memory with large INSERT" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2009-05-30T22:34:42Z</published>
        <updated>2009-05-31T00:54:51Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=30</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=30</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/2-Software" label="Software" term="Software" />
    
        <id>http://www.jory.info/serendipity/archives/30-guid.html</id>
        <title type="html">PostgreSQL - Out of Memory with large INSERT</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I’ve been working with moving large databases in PostgreSQL and have found that PostgreSQL is a true memory hog when inserting millions of rows in one statement. If the target table has a number of foreign key references PostgreSQL seems to choke horribly and use insane amounts of memory, 1GB per million rows in my original case.<br />
We have a rather simple table that is composed of six integer columns, two timestamps, and one boolean. I first ran into this issue when inserting with a select statement that had a simple join and where clause. Initially I thought the select statement was the one causing the out of memory issues. But I found running the select alone worked and changing the statement to a select into piped the data into a new table without any issues.<br />
<br />
I created a simple test case to reproduce this with the following schema,<br />
<blockquote>CREATE TABLE table1 (<br />
    table1_id integer NOT NULL,<br />
    name character varying NOT NULL,<br />
    PRIMARY KEY(table1_id)<br />
);<br />
CREATE TABLE table2 (<br />
    table2_id integer NOT NULL,<br />
    name character varying NOT NULL,<br />
    PRIMARY KEY(table2_id)<br />
);<br />
CREATE TABLE table3 (<br />
    table3_id integer NOT NULL,<br />
    name character varying NOT NULL,<br />
    PRIMARY KEY(table3_id)<br />
);<br />
CREATE TABLE table4 (<br />
    table4_id integer NOT NULL,<br />
    name character varying NOT NULL,<br />
    PRIMARY KEY(table4_id)<br />
);<br />
CREATE TABLE test_target (<br />
    table1_id integer NOT NULL,<br />
    table2_id integer NOT NULL,<br />
    visible boolean NOT NULL,<br />
    date_added timestamp with time zone NOT NULL,<br />
    date_updated timestamp with time zone NOT NULL,<br />
    table3_id1 integer NOT NULL,<br />
    table3_id2 integer NOT NULL,<br />
    table4_id1 integer NOT NULL,<br />
    table4_id2 integer NOT NULL,<br />
FOREIGN KEY (table1_id) REFERENCES table1(table1_id),<br />
FOREIGN KEY (table2_id) REFERENCES table2(table2_id),<br />
FOREIGN KEY (table3_id1) REFERENCES table3(table3_id),<br />
FOREIGN KEY (table3_id2) REFERENCES table3(table3_id),<br />
FOREIGN KEY (table4_id1) REFERENCES table4(table4_id),<br />
FOREIGN KEY (table4_id2) REFERENCES table4(table4_id)<br />
);<br />
</blockquote><br />
<br />
Running this INSERT / SELECT below can cause the PostgreSQL to keep expanding in memory usage. On a 32-bit machine it  aborts due to an out of memory error around 2GB, but on a 64-bit Linux machine it keeps using memory until all of the main memory and swap is full and then the oom-killer process is spawned and starts killing processes.<br />
<br />
<blockquote>INSERT INTO test_target <br />
(<br />
table1_id, table2_id, visible,<br />
        	date_added, date_updated, <br />
table3_id1, table3_id2, <br />
table4_id1, table4_id2<br />
)<br />
SELECT<br />
    0 as table1_id, 0 as table2_id,<br />
    TRUE as visible,<br />
    now() as date_added,<br />
    now() as date_updated,<br />
    0 as table3_id1, 0 as table3_id2,<br />
    0 as table4_id1, 0 as table4_id2<br />
FROM generate_series(1, 13000000);<br />
</blockquote><br />
<br />
I've tried this on PostgreSQL 8.3.7 under Linux and I found the same behavior in PostgreSQL 8.4 Beta for Windows.<br />
<br />
A simple workaround I found is to simply drop the foreign keys before the insert, and re-add the foreign keys after the data is loaded into the table. 
            </div>
        </content>
        <dc:subject>postgresql</dc:subject>
<dc:subject>software</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/29-Registered-Project-on-SourceForge.html" rel="alternate" title="Registered Project on SourceForge" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2009-02-20T00:42:25Z</published>
        <updated>2009-02-20T00:42:25Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=29</wfw:comment>
    
        <slash:comments>4</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=29</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/4-Munin-Node" label="Munin Node" term="Munin Node" />
    
        <id>http://www.jory.info/serendipity/archives/29-guid.html</id>
        <title type="html">Registered Project on SourceForge</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I have registered a project for Munin Node for Windows on SourceForge and am awaiting approval.<br />
<a href="http://sourceforge.net/projects/munin-nodewin32/">http://sourceforge.net/projects/munin-nodewin32/</a><br />
<br />
Once it is approved I'll upload the source code to the Subversion repo for public access. 
            </div>
        </content>
        <dc:subject>MuninNode</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/27-Munin-Node-for-Windows-v1.5.html" rel="alternate" title="Munin Node for Windows v1.5" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2008-06-02T21:00:08Z</published>
        <updated>2008-06-03T10:29:45Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=27</wfw:comment>
    
        <slash:comments>65</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=27</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/4-Munin-Node" label="Munin Node" term="Munin Node" />
    
        <id>http://www.jory.info/serendipity/archives/27-guid.html</id>
        <title type="html">Munin Node for Windows v1.5</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I've posted v1.5 of Munin Node for Windows.<br />
<br />
<strong>Summary</strong><br />
Munin Node for Windows AKA munin-node-win32, is a Windows client for the Munin monitoring system.<br />
<br />
It is written in C++ with most plugins built into the executable. Which is different from the standard munin-node client, which only uses external plugins written as shell and Perl scripts.<br />
<br />
<strong>Change Log for v1.5</strong><br />
+ Added readme documentation<br />
+ Updated -install / -uninstall switches to handle Window Firewall exceptions<br />
+ Added SpeedFan plugin<br />
+ Added External Plugins plugin, external plugins are now supported<br />
+ Added Generic Performance Counter plugin<br />
+ Removed Uptime, Disktime plugins. Replaced with the Generic Performance Counter plugin<br />
+ Improved error handling in Cpu plugin<br />
+ Now Unicode compatible<br />
+ Fixed memory leaks<br />
+ Improved multi-thread safety<br />
+ Added better Event Log support<br />
<br />
<strong>Download</strong><br />
<a href="/downloads/munin-node/munin-node-win32-v1.5.1942.msi">MSI Installer</a> (225KB)<br />
<a href="/downloads/munin-node/munin-node-win32-v1.5.1942-bin.zip">Binary</a> (135KB)<br />
<a href="/downloads/munin-node/munin-node-src-r1942.zip">Source Code</a> (423KB) 
            </div>
        </content>
        <dc:subject>MuninNode</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/25-foo_playcount_db-v0.4-for-Foobar2000.html" rel="alternate" title="foo_playcount_db v0.4 for Foobar2000" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2008-05-20T01:07:58Z</published>
        <updated>2008-05-20T01:18:57Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=25</wfw:comment>
    
        <slash:comments>2</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/5-Foobar2000" label="Foobar2000" term="Foobar2000" />
    
        <id>http://www.jory.info/serendipity/archives/25-guid.html</id>
        <title type="html">foo_playcount_db v0.4 for Foobar2000</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I've created a plugin for foobar2000 v0.9, it stores all your plays in a SQLite database.<br />
<br />
In addition to storing details on every play, the time and duration, this plugin automatically scores every played track. It uses a formula similar to AmroK scoring with a range of 0-100.<br />
You can access the score for each track via the %score% title formatting string.<br />
<br />
I'm hoping to create a viewer for the database so that you can see detailed trends as every play is stored in the database.<br />
<br />
Here are the downloads,<br />
foo_playcount_db v0.4 <a href="/downloads/foo_playcount_db-v0.4.zip">Binary</a> (253KB)<br />
foo_playcount_db v0.4 <a href="/downloads/foo_playcount_db-src-v0.4.zip">Source Code + Binary</a> (1.31MB) 
            </div>
        </content>
        <dc:subject>foobar2000</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/21-Munin-Node-for-Windows-v1.4.html" rel="alternate" title="Munin Node for Windows v1.4" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2008-05-19T02:49:07Z</published>
        <updated>2008-06-03T01:13:56Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=21</wfw:comment>
    
        <slash:comments>12</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=21</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/4-Munin-Node" label="Munin Node" term="Munin Node" />
    
        <id>http://www.jory.info/serendipity/archives/21-guid.html</id>
        <title type="html">Munin Node for Windows v1.4</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I've released a new version of munin-node-win32 today.<br />
It is an Windows client for the <a href="http://munin.projects.linpro.no/">Munin</a> monitoring system. It supports getting disk usage, HDD temperatures, memory usage, and uptime. If you have <a href="http://en.wikipedia.org/wiki/Motherboard_Monitor">Motherboard Monitor</a> installed and running, munin-node-win32 can query it for system temperatures, voltages, and fan speeds.<br />
<br />
The major new feature for this release is the addition of a cpu monitoring plugin and a configuration file that allows disabling and enabling plugins.<br />
<br />
<a href="/downloads/munin-node/munin-node-win32-v1.4.zip">Binary + Source Code ZIP</a> (141KB)<br />
Beta MSI <a href="/downloads/munin-node/munin-node-win32-v1.4.msi">Installer</a> (168KB)<br />
<br />
I'm current working on embedding Python so Python scripts can be used to write new plugins for munin-node-win32. 
            </div>
        </content>
        <dc:subject>MuninNode</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/26-Moved-Blog.html" rel="alternate" title="Moved Blog" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2008-05-19T00:49:00Z</published>
        <updated>2008-05-23T00:52:28Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=26</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=26</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/26-guid.html</id>
        <title type="html">Moved Blog</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I've moved my blog to my primary domain, <a href="http://www.jory.info/">www.jory.info</a>, with hosting by 1and1, a fairly decent host with good prices. 
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/23-Munin-Node-for-Windows-v1.1.html" rel="alternate" title="Munin Node for Windows v1.1" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2007-01-16T05:21:00Z</published>
        <updated>2008-05-19T13:22:33Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=23</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=23</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/4-Munin-Node" label="Munin Node" term="Munin Node" />
    
        <id>http://www.jory.info/serendipity/archives/23-guid.html</id>
        <title type="html">Munin Node for Windows v1.1</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <a href="http://prdownloads.sourceforge.net/jorydownloader/munin-node-win32-20070116100034.zip?download">munin-node-win32 v1.1</a> (30KB)<br />
<br />
An Windows client for the <a href="http://munin.projects.linpro.no/">Munin</a> monitoring system. Supports getting disk usage, HDD temperatures, memory usage, and uptime. If you have <a href="http://mbm.livewiredev.com/">Motherboard Monitor</a> installed and running, munin-node-win32 can query it for system temperatures, voltages, and fan speeds.<br />
<br />
Binary and Source Code included.<br />
<br />
Use the <i>-install</i> command line switch to install as<br />
a service, <i>-uninstall</i> will remove the service. 
            </div>
        </content>
        <dc:subject>MuninNode</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/24-Munin-Node-for-Windows-v0.1.html" rel="alternate" title="Munin Node for Windows v0.1" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2006-12-12T05:24:00Z</published>
        <updated>2008-05-20T23:31:59Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=24</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/4-Munin-Node" label="Munin Node" term="Munin Node" />
    
        <id>http://www.jory.info/serendipity/archives/24-guid.html</id>
        <title type="html">Munin Node for Windows v0.1</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <a href="http://prdownloads.sourceforge.net/jorydownloader/munin-node-win32-20061222220622.zip?download">munin-node-win32 v0.1</a> (30KB)<br />
<br />
An Windows client for the <a href="http://munin.projects.linpro.no/">Munin</a><br />
monitoring system. Supports getting disk usage, memory usage, and<br />
uptime. If you have <a href="http://mbm.livewiredev.com/">Motherboard<br />
Monitor</a> installed and running, munin-node-win32 can query it<br />
for system temperatures, voltages, and fan speeds.<br />
<br />
Binary and Source Code included.<br />
<br />
Use the <i>-install</i> command line switch to install as<br />
a service, <i>-uninstall</i> will remove the service. 
            </div>
        </content>
        <dc:subject>MuninNode</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/15-Yet-another-new-website.html" rel="alternate" title="Yet another new website" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2006-09-23T03:59:30Z</published>
        <updated>2008-05-23T00:49:18Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=15</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=15</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/15-guid.html</id>
        <title type="html">Yet another new website</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I've setup yet another website.<br />
My previous host Dreamhost deleted my host account without warning and hasn't responded to my questions yet.<br />
<br />
Now I've moved my site to <a href="http://silenceisdefeat.org/">silenceisdefeat.org</a>, which is quite an awesome free service ($1 donation required to get an account). They've been stable for over 2yrs and provide 50MB of free space.<br />
<br />
My site is also now in blog format, hopefully it will make it easier to update <img src="http://www.jory.info/serendipity/templates/default/img/emoticons/wink.png" alt=";-)" style="display: inline; vertical-align: bottom;" class="emoticon" /> 
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/1-New-Website.html" rel="alternate" title="New Website" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2006-04-02T05:00:00Z</published>
        <updated>2006-04-02T05:00:00Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=1</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=1</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/1-guid.html</id>
        <title type="html">New Website</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Well, I've redone my website. Gone is the Mambo CMS PHP and back to nice lean XHTML and CSS. The Mambo CMS was easy to use, but required being online to make any changes. It also was a pain to backup, you had to backup both the files and the MySQL database. Also it was exploitable, being PHP, I really should have keep it updated to the latest Mambo version but that was too much work for a website as small as mine. 
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/18-The-Life-of-Jory-Stone-in-Pictures.html" rel="alternate" title="The Life of Jory Stone in Pictures" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2006-01-01T05:00:00Z</published>
        <updated>2008-05-19T02:42:28Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=18</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=18</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/18-guid.html</id>
        <title type="html">The Life of Jory Stone in Pictures</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <small>Also called The Advancement of Jory Stone</small><br />
<hr /><br />
Cicra Prehistoric times: An Amstrad, believed to have a 2x86 CPU.<br />
<em>&lt;No Picture&gt;</em><br />
<br />
Cicra 1996: An IBM 486 50Mhz with 20MB RAM and a 2x CD-ROM.<br />
<img border="0" src="uploads/oncomputer01.jpg" width="503" height="448" /><br />
<br />
Cicra 1998: Then on a 6x86 133Mhz with 96MB of RAM.<br />
<img border="0" src="uploads/oncomputer02.jpg" width="417" height="300" /><br />
<br />
Cicra 2000: Now with a M2 250Mhz with 160MB of RAM.<br />
<img border="0" src="uploads/oncomputer03.jpg" width="416" height="300" /><br />
<br />
2003: Then a T-Bird 650Mhz with 320MB of RAM.<br />
<em>&lt;No Picture&gt;</em><br />
<br />
2005: After that a Athlon 64 2800+ with 512MB of RAM.<br />
<em>&lt;No Picture&gt;</em><br />
<br />
2006: Currently with a Intel Core 2 E6300 with 1GB of RAM.<br />
<em>&lt;No Picture&gt;</em> <br /><a href="http://www.jory.info/serendipity/archives/18-The-Life-of-Jory-Stone-in-Pictures.html#extended">Continue reading "The Life of Jory Stone in Pictures"</a>
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/2-New-Tires.html" rel="alternate" title="New Tires" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2005-07-27T04:00:00Z</published>
        <updated>2008-05-19T02:42:36Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=2</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=2</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/2-guid.html</id>
        <title type="html">New Tires</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Dad had new tires put on the van today. The old tires were well worn, one was balding so bad you could see the metal mesh underneath. Another slowly leaked air and had to be aired up everyday before driving anywhere.<br />
<br />
I spent most of today outside cleaning Mom's AC and playing with Lily. I didn't plan on playing in the pool but I slipped and fell into the pool, and so since I was already wet I went ahead and played with Lily for a while. Took me quite some time to dry even though it was scorching outside today. I think a have a light sunburn, it doesn't hurt but my skin is visibly red.<br />
<br />
In the computer side of things, I setup my local Linux box to act as a caching http proxy using squid. It was very easy to configure and setup and it actually does seem to help. I expect with all four computers using the proxy we should benefit from visiting the same sites.<br />
<br />
After setting up the proxy I thought about RAID-5, the Linux box is also our backup server. Every night all our systems do a daily backup via ftp to the Linux box. RAID-5 would make me feel much safer and would actually be very easy to setup.<br />
<br />
After googling a little bit I found this interesting article on Tom's Hardware about using Software RAID-5 in Windows XP Pro, http://www.tomshardware.com/storage/20041119/.<br />
<br />
After reading that I think software RAID is much better than hardware RAID for the recovery aspect, as with hardware if your RAID controller fails you will need to buy another one of the same model if you still can. With software RAID all you need is a system that has enough IDE (or SATA) connections.<br />
<br />
The cost of software RAID isn't high either, just the cost of the hard drives. Buying three 160GB hard drives for a total of 320GB of storage in RAID-5 comes out to almost $200. 
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/22-XChat-Welcome-Back-Plugin-0.5-Win32.html" rel="alternate" title="XChat Welcome Back Plugin 0.5 Win32" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2005-07-26T03:08:00Z</published>
        <updated>2008-05-19T03:14:07Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=22</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/2-Software" label="Software" term="Software" />
    
        <id>http://www.jory.info/serendipity/archives/22-guid.html</id>
        <title type="html">XChat Welcome Back Plugin 0.5 Win32</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I compiled a version of the Welcome Back Plugin for XChat for Windows users.<br />
<br />
<a href="/downloads/wb-0.5-win32.zip">Welcome Back Plugin 0.5 Win32 Build</a> (07/25/2005, 4KB)<br />
<br />
Homepage: <a href="http://tuxserve.sourceforge.net/wb.php">http://tuxserve.sourceforge.net/wb.php</a> 
            </div>
        </content>
        <dc:subject>Software</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/3-Long-time-no-see.html" rel="alternate" title="Long time no see" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2005-07-25T04:00:00Z</published>
        <updated>1969-12-31T23:00:00Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=3</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=3</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/3-guid.html</id>
        <title type="html">Long time no see</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Wow, I haven't written a blog entry for quite sometime.<br />
<br />
I've been busy looking for my own car and working to have enough money to actually pay for the car <img src="http://www.jory.info/serendipity/templates/default/img/emoticons/wink.png" alt=";-)" style="display: inline; vertical-align: bottom;" class="emoticon" /><br />
<br />
I recently bought a laptop and have been using the wireless lan. I must say a notebook is one of the coolest things I've messed with. Being able to move from room to room without any hassle. Using it in the car it sweet to, of course I only use it when I'm not driving... One thing that amazes me is hot the laptop gets whenever you really start using the cpu. I don't know how it compares to other laptops, but it gets hot enough that it actually burns my bare legs. You have to wear some jeans to keep your legs intact while doing heavy processing. Light processing like surfing the internet, listening to mp3s, chatting, and compiling doesn't heat it up very much so those tasks work very well on it. However I'm afraid to do any video encoding for fear that it would melt itself. <br /><a href="http://www.jory.info/serendipity/archives/3-Long-time-no-see.html#extended">Continue reading "Long time no see"</a>
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>
    <entry>
        <link href="http://www.jory.info/serendipity/archives/4-Semester-Ending.html" rel="alternate" title="Semester Ending" />
        <author>
            <name>Jory Stone</name>
                    </author>
    
        <published>2005-05-04T04:00:00Z</published>
        <updated>2008-05-19T02:42:46Z</updated>
        <wfw:comment>http://www.jory.info/serendipity/wfwcomment.php?cid=4</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.jory.info/serendipity/rss.php?version=atom1.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    
            <category scheme="http://www.jory.info/serendipity/categories/1-Life" label="Life" term="Life" />
    
        <id>http://www.jory.info/serendipity/archives/4-guid.html</id>
        <title type="html">Semester Ending</title>
        <content type="xhtml" xml:base="http://www.jory.info/serendipity/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Only a week left of college this semester. It has has just flown by.<br />
<br />
I managed to apply for FA early enough so that this Fall I will be getting some aid. But I had still missed the deadline for the extra scholarships offered through the college. I had only missed the deadline by two weeks <img src="http://www.jory.info/serendipity/templates/default/img/emoticons/sad.png" alt=":-(" style="display: inline; vertical-align: bottom;" class="emoticon" /><br />
<br />
I've been taking my younger brother to praise team practice at the church and have been thinking about getting a laptop so I could work while there. During the summer I could really use it, since right now I'm just using that 2-3 hours we stay there to study. But when college is over I'm not going have anything useful to do.<br />
<br />
I looked at Walmart's $500 laptop, quite nice for the price. Though for me the cpu is too slow, not enough memory or hard drive space. I've read the 1Ghz VIA C3 is roughly equal to a Celeron 633Mhz which isn't too bad but it would be too much of a slow down from my current A64 1.8Ghz. I think 1Ghz should be useful. The 128MB of RAM is also much to small, 512MB would be the ideal amount as I multi-task like crazy. 20GB would barely hold all my mp3's much less my development tools and code. I think I could manage with a 40GB, of course my dream laptop would have a 120GB+. Hey I said dream laptop <img src="http://www.jory.info/serendipity/templates/default/img/emoticons/wink.png" alt=";-)" style="display: inline; vertical-align: bottom;" class="emoticon" /> 
            </div>
        </content>
        <dc:subject>life</dc:subject>

    </entry>

</feed>