<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/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://muddylemon.com/feeds/atom.xml" rel="self" title="muddylemon" type="application/atom+xml" />
    <link href="http://www.muddylemon.com/"                        rel="alternate"    title="muddylemon" type="text/html" />
    <link href="http://www.muddylemon.com/rss.php?version=2.0"     rel="alternate"    title="muddylemon" type="application/rss+xml" />
    <title type="html">muddylemon</title>
    <subtitle type="html">we put the blah in blog</subtitle>
    
    <id>http://www.muddylemon.com/</id>
    <updated>2010-04-30T16:26:17Z</updated>
    <generator uri="http://www.s9y.org/" version="1.5.1">Serendipity 1.5.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://www.muddylemon.com/archives/338-Ideas-are-a-dime-a-dozen.html" rel="alternate" title="Ideas are a dime a dozen" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-04-30T16:23:51Z</published>
        <updated>2010-04-30T16:26:17Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=338</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=338</wfw:commentRss>
    
            <category scheme="http://www.muddylemon.com/categories/2-coding" label="coding" term="coding" />
    
        <id>http://www.muddylemon.com/archives/338-guid.html</id>
        <title type="html">Ideas are a dime a dozen</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>It's common for the &quot;business&quot; people to have an idea and think that's what they're bringing to the table. I've had guys approach me to offer 5-25% equity in their imaginary company if I'll just build the product for free.
</p> 
<p>My response is, generally, &quot;How about I build this and hire you when I'm done to sell it?&quot; They'll protest &quot;But this is my idea!&quot; Who cares? Ideas are worth absolutely nothing. I have stacks of ideas that are gathering dust because I haven't had the time to do anything with them. Why should I suddenly stop everything and try to make you rich with my skills and then, inevitably, watch you try to screw me later if it works? Because you had an idea? Awesome - go to the library and check out PHP for Dummies and see if you can execute it.
</p> 
<p>Sales that haven't occurred are also worth nothing. If you want me to work for you, you need to bring something to the table - a paycheck, capital in the bank, connections or contracts that have been signed on the line that is dotted. Otherwise you're just a loser in a suit looking for a handout.</p> 
<p>Reposted from a <a href="http://www.reddit.com/r/PHP/comments/bw72c/im_working_for_equity_in_a_start_up_anyone_have_a/c0owi8b">comment on reddit&#160;</a></p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/334-Coders-Vocab-1-Idempotent.html" rel="alternate" title="Coder's Vocab #1 : Idempotent" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-04-09T16:00:01Z</published>
        <updated>2010-04-23T16:09:48Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=334</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=334</wfw:commentRss>
    
            <category scheme="http://www.muddylemon.com/categories/8-Vocab" label="Vocab" term="Vocab" />
    
        <id>http://www.muddylemon.com/archives/334-guid.html</id>
        <title type="html">Coder's Vocab #1 : Idempotent</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>In programming, the term idempotent describes a method that can be called multiple times without changing the result. Sometimes it can be a symptom of madness or incompetence - I've seen code where a save() method was called repeatedly &quot;just in case.&quot;&#160;</p> 
<p>Besides scratching the itch of the insane among us, idempotent routines are important. For a simple example, consider the &quot;Checkout Button&quot; on a typical ecommerce form. Often you will see strong language around the button asking the user to only click the button once - otherwise multiple orders will be placed and all sorts of pain and confusion may result. A common &quot;solution&quot; to this is disabling the button after the first click. A better solution would be writing the routine that is saving the order as an idempotent operation. In other words, it shouldn't matter how many times you save the order, you're just saving the same thing. This can be accomplished in myriad ways, from using a &quot;replace into&quot; database query or creating the key once and updating the database against that key.&#160;</p> 
<p> </p> 
<p> </p> 
<p> </p> 
<p> </p> 
<p> </p> 
<p>Quiz Time! Which of the methods could be described as idempotent?</p> 
<p>&#160;1.</p> 
<code class="syntax php">function double($x) {
    return $x * 2;
}</code> 
<p>2.</p> 
<code class="syntax php">$x = 2;</code> 
<p>3.</p> 
<p> </p> 
<code class="syntax php">$x = md5($x);</code> 
<p>&#160;4.&#160;</p> 
<code class="syntax php">function append($x,$y){
    $x[] = $y
}</code> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/333-The-difference-between-perl-and-python.html" rel="alternate" title="The difference between perl and python" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-03-22T14:36:11Z</published>
        <updated>2010-03-22T14:36:11Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=333</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=333</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/333-guid.html</id>
        <title type="html">The difference between perl and python</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>I like this quote from &quot;Dreaming In Code,&quot; a book I'm reading this week:</p>
<p> </p>
<blockquote class="webkit-indent-blockquote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
<p>In one observer's characterization of the two languages' partisans, Perlites are &quot;chaotic/good trickster archetypes&quot; where &quot;Pythonistas are peaceful, have-their-glasses-on-a-little-string types, like hobbits or the Dutch.&quot;&#160;</p>
</blockquote> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/332-Im-looking-at-you-Zend.html" rel="alternate" title="I'm looking at you Zend" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-03-11T23:24:28Z</published>
        <updated>2010-03-11T23:24:28Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=332</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=332</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/332-guid.html</id>
        <title type="html">I'm looking at you Zend</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <meta http-equiv="content-type" content="text/html; charset=utf-8" /><span style="color: #707558; font-family: 'Lucida Grande', sans-serif; font-size: 14px; line-height: 16px; ">Sometimes I throw exceptions; sometimes I throw punches. It's your call, code.</span> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/331-Now-you-have-1000-problems.html" rel="alternate" title="Now you have 1000 problems" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-02-12T16:59:01Z</published>
        <updated>2010-02-12T17:00:22Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=331</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=331</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/331-guid.html</id>
        <title type="html">Now you have 1000 problems</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Behold, the world's greatest collection of &quot;<a href="http://us.php.net/manual/en/function.preg-match.php" title="The user contributed notes, in particular">you're doing it wrong</a>&quot; examples. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/330-Pecan-Crusted-Pork-Chops.html" rel="alternate" title="Pecan Crusted Pork Chops" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-02-10T16:27:30Z</published>
        <updated>2010-02-24T06:39:32Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=330</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=330</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/330-guid.html</id>
        <title type="html">Pecan Crusted Pork Chops</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Made these last night - Amanda has demanded an encore so they must be pretty good.</p> 
<p> </p> 
<h2> Instructions:</h2> 
<p>Preheat the oven to 350f. In a food processor, process a handful (about a cup) of pecans, a small handful (maybe 1/8 cup) for dried dates and about 10-12 wheat thins into a coarse meal.</p> 
<p>Season pork chops with salt and pepper and pat dry. Dip the chops into an egg wash (one egg beaten with a tablespoon of water) and press into the crust mixture. </p> 
<p>Cook the chops over medium heat in a pan that is just coated with a bit of olive oil for four minutes on the first side, and one minute on the second. Remove from the heat and put into the oven for about 10 minutes or until cooked through.</p> 
<p>Let them rest on a rack under a foil tent for a few minutes and serve.</p> 
<p> I also made a sauce with a sweet red wine and some frozen cherries and blackberries. It was good but the pork didn't need it - and they didn't last long enough to try it.<br /></p> 
<p> </p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/329-Jumping-the-grooveshark.html" rel="alternate" title="Jumping the grooveshark" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-02-01T17:50:14Z</published>
        <updated>2010-02-01T17:50:14Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=329</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=329</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/329-guid.html</id>
        <title type="html">Jumping the grooveshark</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>For the last year my work tunes have been provided by <a href="http://pandora.com">pandora</a>. I had a couple stations that I had pruned and edited to my liking - to the point that I was seriously considering subscribing. I didn't mind the unobtrusive ads and the 40 hour a month limit just reminded how much I relied on it and inspired me to drop some cash their way.&#160;</p>
<p>&#160;Before I got a chance to do so, however, they switched up their ads to annoying audio ads that seem to show up every couple songs. The ads seemed to be louder than the music I was playing too. Around that time someone suggested I look at <a href="http://grooveshark.com">grooveshark</a>. I had tried it before but their strange UI had turned me off. It seemed to confusing to bother with. Apparently enough people thought so that they put some good work into the ui, making it much easier to parse and understand what you were doing. Grooveshark seems to have the best mix of features compared to pandora, last.fm and lala.&#160;</p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/328-The-Babies-Didnt-Cry-That-Night.html" rel="alternate" title="The Babies Didn't Cry That Night" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-01-21T16:08:44Z</published>
        <updated>2010-01-21T16:12:49Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=328</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=328</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/328-guid.html</id>
        <title type="html">The Babies Didn't Cry That Night</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>the babies didn't cry that night<br />though the wind was cold<br />and whipped through the woods where they were huddled<br />though the wind was cold<br />and flickered the torches of the men searching</p><br />
<p>a young father knew cold nights<br />when his baby would cry as he walked<br />in front of a fire that flickered in the hearth</p><br />
<p>&quot;Put the babies to breast.&quot; he whispered <br />to the women crouched behind him<br />they put their babies to breast<br />so the babies wouldn't cry that night</p><br />
<p>a boy of three crouched below his mother<br />his brother above him suckled and warm<br />he was cold and wanted to ask his mother<br />why the men searching with torches and guns<br />were in their houses<br />while they crouched in silence behind their fathers<br />who watched and shivered in the cold wind<br />that whipped about them in the woods</p><br />
<p>And the babies full with milk<br />fell asleep on their mother's breast<br />as the men with torches<br />tired of their searching<br />and turned and walked back down the road<br /></p>
<p>their torches disappeared<br />flickering in the cold wind<br />that whipped through the woods that night </p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/327-the-boring-part.html" rel="alternate" title="the boring part" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-01-13T21:18:46Z</published>
        <updated>2010-01-13T21:18:46Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=327</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=327</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/327-guid.html</id>
        <title type="html">the boring part</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                this is it. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/326-Waiting-for-the-baby.html" rel="alternate" title="Waiting for the baby" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2010-01-13T18:30:00Z</published>
        <updated>2010-01-13T18:30:00Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=326</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=326</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/326-guid.html</id>
        <title type="html">Waiting for the baby</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I'm hanging out at the hospital with Amanda waiting on this baby. Had a slightly scary moment a bit ago. After they started the epidural Sagan's heart rate slowed down to 100 bpm from 130. They flipped amanda over and gave her some oxygen and that fixed the situation. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/325-Sugar-The-Bitter-Truth.html" rel="alternate" title="Sugar: The Bitter Truth" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2009-12-23T16:20:12Z</published>
        <updated>2009-12-23T16:20:12Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=325</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=325</wfw:commentRss>
    
            <category scheme="http://www.muddylemon.com/categories/5-science" label="science" term="science" />
    
        <id>http://www.muddylemon.com/archives/325-guid.html</id>
        <title type="html">Sugar: The Bitter Truth</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/dBnniua6-oM&hl=en_US&fs=1&rel=0&color1=0xe1600f&color2=0xfebd01&border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dBnniua6-oM&hl=en_US&fs=1&rel=0&color1=0xe1600f&color2=0xfebd01&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/324-as-the-drain-swirls.html" rel="alternate" title="as the drain swirls" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2009-12-18T09:47:28Z</published>
        <updated>2009-12-18T09:47:28Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=324</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=324</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/324-guid.html</id>
        <title type="html">as the drain swirls</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>We have a system in place that rewards power with power; corporations, political parties, the media all feed off each other in a vicious cycle of corruption. Change is their real enemy. In the same way that citizens (tend) to get more conservative as they age, our institutions gain more power and wealth over time and, having more to lose, become more and more intolerant of change and progress.</p>

<p>I really thought there was a chance -- after the orgy of corruption and excess the republicans fomented over the past decade -- that we could save this country without falling to pieces, that we could have a soft reboot and rejoin the rest of the developed world in rational conversation. It seems like that was an illusion. I don't know if we can put off pulling the plug soon.</p>

<p>With global climate change, rapid development draining the worlds resources faster than innovation can keep up, increasingly polarized politics, declining critical thinking and education among the celebrity addled public, the entrenchment of immortal and amoral corporations in positions of power and regulatory (and legislator) capture, corporate media drowning out all discourse with fluff and misdirection -- what hope do we have?</p>

<p>The only thing we have right now is the internet. This is the last tool of freedom that could keep us out of the corporate powers' hands. Google and Facebook are maybe months or years from taking that away from us. They're figuring out how to buy us off with the convenience and the social pressure of their tools and gadgets. We're letting them further and further into our private lives - even our minds. Soon the internet will be AOL again, a toy we can play with at the price our privacy and attention.</p>

<p>What then? At the end of history, with an exhausted planet, our bodies and minds tools of faceless corporations furiously scrambling to find the last drop of oil and ounce of water before their competitors, we'll finally get a rest. We'll never explore the stars or evolve into new and wondrous lifeforms. We'll die thirsty and hot below a yellow sun and the universe will continue its long stretch without noticing.</p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/323-Mama-Seal.html" rel="alternate" title="Mama Seal" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2009-11-28T08:27:19Z</published>
        <updated>2009-11-28T08:27:19Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=323</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=323</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/323-guid.html</id>
        <title type="html">Mama Seal</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <object width="660" height="405"><param name="movie" value="http://www.youtube.com/v/Zxa6P73Awcg&hl=en_US&fs=1&color1=0xe1600f&color2=0xfebd01&hd=1&border=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed src="http://www.youtube.com/v/Zxa6P73Awcg&hl=en_US&fs=1&color1=0xe1600f&color2=0xfebd01&hd=1&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="405" /></object> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/322-How-to-get-Xinha-Wysiwyg-editor-to-work-in-S9y.html" rel="alternate" title="How to get Xinha Wysiwyg editor to work in S9y" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2009-11-17T04:40:58Z</published>
        <updated>2009-11-19T21:16:17Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=322</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=322</wfw:commentRss>
    
            <category scheme="http://www.muddylemon.com/categories/2-coding" label="coding" term="coding" />
    
        <id>http://www.muddylemon.com/archives/322-guid.html</id>
        <title type="html">How to get Xinha Wysiwyg editor to work in S9y</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>For some reason I hadn't been able to get any of the wysiwyg editor plugins in my serendipity install to work. It's been a minor annoyance, so I decided to figure it out tonight. Here are the steps:</p>
<ol>
<li>Go to Configure Plugins and download/install the Xinha plugin. If you're lucky, it'll just work. <br /></li>
<li>Download the Xinha package from the <a href="http://trac.xinha.org/wiki/DownloadsPage" target="_blank" title="Xinha Download page">xinha website.</a></li>
<li>Drop the file you downloaded (Xinha_0.96beta2.tar.bz2 for example) in a folder of its own.</li>
<li>Run <strong>bunzip2 Xinha0.96beta2.tar.bz2</strong> on the command line in that folder.</li>
<li>Then run: <strong>tar -xvf Xinha0.96beta2.tar </strong><br /></li>
<li>Copy the files extracted to your plugins folder at:/plugins/serendipity_event_xinha/</li>
<li>Refresh and hey - it actually works.</li>
</ol>I don't know why had such issues with it before. I had uninstalled and reinstalled that plugin from the interface several times to no affect. <br /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.muddylemon.com/archives/321-Smart-up-and-down-on-the-command-line.html" rel="alternate" title="Smart up and down on the command line" />
        <author>
            <name>Lance Kidwell</name>
                    </author>
    
        <published>2009-11-07T19:52:23Z</published>
        <updated>2009-11-07T19:56:31Z</updated>
        <wfw:comment>http://www.muddylemon.com/wfwcomment.php?cid=321</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.muddylemon.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=321</wfw:commentRss>
    
    
        <id>http://www.muddylemon.com/archives/321-guid.html</id>
        <title type="html">Smart up and down on the command line</title>
        <content type="xhtml" xml:base="http://www.muddylemon.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>I bet everyone already knows this, but I just learned it and love it:</p>

<pre>
# put this in ~/.inputrc

# By default up/down are bound to previous-history
# and next-history respectively. The following does the
# same but gives the extra functionality where if you
# type any text (or more accurately, if there is any text
# between the start of the line and the cursor), the subset 
# of the history starting with that text is searched 
# Note to get rid of a line just Ctrl-C

"\e[B": history-search-forward
"\e[A": history-search-backward
 
# Include system wide settings which are ignored
# by default if one has their own .inputrc
$include /etc/inputrc
</pre> 
            </div>
        </content>
        
    </entry>

</feed>