<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Light Fiction</title>
	
	<link>http://blog.quodlibetor.com</link>
	<description>ain't that the truth</description>
	<lastBuildDate>Mon, 09 Apr 2012 21:31:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/lightfiction" /><feedburner:info uri="lightfiction" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>PHP debugging addendum</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/KiSYqZNkQrY/</link>
		<comments>http://blog.quodlibetor.com/2012/04/php-debugging-addendum/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 21:31:47 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=334</guid>
		<description><![CDATA[In case anybody out there is actually getting PHP tips from me (hint: that&#8217;s not a good idea) I should point out that you should be using Xdebug. My last tip works plenty-fine with it, but additionally it gives you pretty-printed backtraces in the browser. Sort of like Django&#8217;s error screen, but not nearly as [...]]]></description>
				<content:encoded><![CDATA[<p>In case anybody out there is actually getting PHP tips from me (hint: that&#8217;s not a good idea) I should point out that you should be using <a title="xdebug" href="www.xdebug.org/">Xdebug</a>.</p>
<p>My last tip works plenty-fine with it, but additionally it gives you pretty-printed backtraces in the browser. Sort of like Django&#8217;s error screen, but not nearly as nice.</p>
<p>Don&#8217;t be like me. Don&#8217;t spend <em>two years</em> manually emitting backtraces to the system log. In Ubuntu (11.10, at least) getting Xdebug is as simple as:</p>
<pre>sudo apt-get install php5-xdebug
sudo service apache2 restart
</pre>
<p>I&#8217;m sure your distro&#8217;s package manager is as simple as mine.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2012%2F04%2Fphp-debugging-addendum%2F';
  addthis_title  = 'PHP+debugging+addendum';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/KiSYqZNkQrY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2012/04/php-debugging-addendum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2012/04/php-debugging-addendum/</feedburner:origLink></item>
		<item>
		<title>PHP: Display errors, but also hide them</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/4akgwpMsyic/</link>
		<comments>http://blog.quodlibetor.com/2012/03/php-display-errors-but-also-hide-them/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 19:25:45 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=321</guid>
		<description><![CDATA[I develop php with the correct php.ini settings: error_reporting = E_ALL &#124; E_STRICT display_errors = On log_errors = On But, this has the problem of occasionally showing me errors that I care about, but not right now. Which is unacceptable. Hence, my new error_{prepend,append}_string: error_prepend_string = &#34;&#60;pre style=&#34;color: #ff0000; cursor: pointer;&#34; ondblclick=&#34;\&#34;this.style.display='none';\&#34;&#62;&#34; error_append_string = &#34;&#38;lt;/pre&#62;&#34; [...]]]></description>
				<content:encoded><![CDATA[<p>I develop php with the correct <code>php.ini</code> settings:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000099;">error_reporting</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #000066; font-weight:bold;"><span style="color: #660066;"> E_ALL | E_STRICT</span></span>
<span style="color: #000099;">display_errors</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> On</span>
<span style="color: #000099;">log_errors</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> On</span></pre></td></tr></table></div>

<p>But, this has the problem of occasionally showing me errors that I care about, but not <em>right</em> now.</p>
<p>Which is unacceptable. Hence, my new <code>error_{prepend,append}_string</code>:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000099;">error_prepend_string</span> <span style="color: #000066; font-weight:bold;">=</span> <span style="color: #933;">&quot;&lt;pre style=&quot;</span>color: #ff0000<span style="color: #666666; font-style: italic;">; cursor: pointer;&quot; ondblclick=&quot;\&quot;this.style.display='none';\&quot;&gt;&quot;</span>
<span style="color: #000099;">error_append_string</span> <span style="color: #000066; font-weight:bold;">=</span> <span style="color: #933;">&quot;&amp;lt;/pre&gt;&quot;</span></pre></td></tr></table></div>

<p>(Substitute &#8216;&lt;&#8217; for &#8216;&amp;lt;&#8217;. Sorry: WordPress is silly.)</p>
<p>Now I can doubleclick on errors to dismiss them. I like it.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2012%2F03%2Fphp-display-errors-but-also-hide-them%2F';
  addthis_title  = 'PHP%3A+Display+errors%2C+but+also+hide+them';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/4akgwpMsyic" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2012/03/php-display-errors-but-also-hide-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2012/03/php-display-errors-but-also-hide-them/</feedburner:origLink></item>
		<item>
		<title>I’m a columnist</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/XV3oJtC-bZY/</link>
		<comments>http://blog.quodlibetor.com/2012/03/im-a-columnist/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 22:01:09 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[fiction]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=319</guid>
		<description><![CDATA[I totally wrote for my school paper. If you were wondering what kind of resources the Internet has for students, well, boy, you should check this out.]]></description>
				<content:encoded><![CDATA[<p>I totally wrote for my school paper.</p>
<p>If you were wondering what kind of resources the Internet has for students, well, boy, you should <a title="First Post!" href="http://hunterenvoy.com/features/technically-correct/">check this out</a>.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2012%2F03%2Fim-a-columnist%2F';
  addthis_title  = 'I%26%238217%3Bm+a+columnist';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/XV3oJtC-bZY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2012/03/im-a-columnist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2012/03/im-a-columnist/</feedburner:origLink></item>
		<item>
		<title>My extremely specific DNS settings</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/kIK1Fsl5a0g/</link>
		<comments>http://blog.quodlibetor.com/2012/03/my-extremely-specific-dns-settings/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 16:55:01 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=312</guid>
		<description><![CDATA[As previously mentioned, I recently got a Dreamplug which I am using as a media server. Hopefully. One of my requirements for something as general purpose as a media server is that I be able to tell people &#8220;feel free to play some of my music, just go to carsonella.home and look around.&#8221; (My smallest [...]]]></description>
				<content:encoded><![CDATA[<p>As previously mentioned, I recently got a Dreamplug which I am using as a media server. Hopefully.</p>
<p>One of my requirements for something as general purpose as a media server is that I be able to tell people &#8220;feel free to play some of my music, just go to carsonella.home and look around.&#8221; (My smallest computer is called <a title="Candidatus Carsonella Rudii" href="http://en.wikipedia.org/wiki/Candidatus_Carsonella_ruddii">carsonella</a>, get it?) I specifically <em>don&#8217;t</em> want to have to tell people &#8220;Go to&#8230; oh wait let me check what IP carsonella is on&#8230; [3 minutes later] 192.168.0.108. No, that&#8217;s a web address, just put it in your browser. Yeah, Firefox is actually a web browser.&#8221; And etc.</p>
<p>So: I want names. Mapped to IPs. I&#8217;m used to doing this for my (linux) computer with /etc/hosts, so I thought I would be able to do this for my local network via some magic setting in my router, but <a title="ServerFault says &quot;RTFM&quot;" href="http://serverfault.com/q/368442/22229">it turns out</a> I just want my own DNS server. Also I&#8217;m not an IT professional, who knew?</p>
<p>I&#8217;ve got a D-Link DIR-655 (HW version B1, firmware 2.00NA) router and a Dreamplug Running Debian Squeeze. And no JTAG adapter, so I really don&#8217;t want to mess anything up.</p>
<p>This should work for any Debian/D-Link setup, but caveat emptor.</p>
<p>It turns out that there are only a couple of things that need to happen to make this work, but they&#8217;re independent of each other so I couldn&#8217;t find any tutorials that collect it all in one place. Basically:</p>
<ol>
<li>install dnsmasq on the plug</li>
<li>configure dnsmasq on the same</li>
<li>configure my D-Link to use the plug as the DNS server</li>
<li><strong>and</strong>, separately, tell it not to use the ISP&#8217;s DNS settings.</li>
</ol>
<p>That last point really bit me.</p>
<p><strong>1) </strong>Installing dnsmasq is as easy as install anything on debian:</p>
<pre>apt-get update
apt-get install dnsmasq</pre>
<p><strong>2)</strong> Configuring it involves editing a couple of files: I set my <code>/etc/resolve.conf</code> to look like:</p>
<pre>domain .home
search home
nameserver 127.0.0.1
nameserver 208.67.222.222
nameserver 208.67.220.220</pre>
<p>I think that <strong>the first two lines</strong> tell this computer that it&#8217;s responsible for handling everything that ends with a <code>.home</code> pseudo-TLD. Honestly this is just cargo-cult server setup and I would appreciate any comments or corrections, and <em>don&#8217;t take my word for this.</em></p>
<p><em></em> I know it&#8217;s appealing to make computers on your network have <em>no</em> dots in them, but all kinds of services (e.g. Firefox, and apparently most of Windows) will assume that you messed up your url if you didn&#8217;t put in at least one dot and will try to &#8220;fix&#8221; it for you.</p>
<p>The <strong>third line</strong> is essential: it tells the plug that it is its own nameserver, and to check itself before it checks anything else for a real name. It also, apparently, sets up local caching&#8211; hopefully this will improve DNS lookup times for common sites by a few ms. (I&#8217;ve noticed mine go from 18-20ms down to 2, when I&#8217;m plugged into my ethernet.)</p>
<p>The <strong>last two lines</strong> configure it to use <a title="OpenDNS" href="http://www.opendns.com/business-solutions/premium-dns/benefits/">opendns</a>, a great (better than your ISP&#8217;s) DNS service. A problem with it, though, is that by default if you try to visit a nonexistent domain it will show you an OpenDNS &#8220;search&#8221; page filled with ads. You can follow <a title="Get OpenDNS to respect 404s" href="http://www.labnol.org/internet/stop-opendns-from-redirecting-domain-typos/4112/">these instructions</a> to get proper 404 behavior. If that&#8217;s too much work you can use <a title="Google Public DNS" href="http://code.google.com/speed/public-dns/">Google&#8217;s public DNS</a>, which does the right thing by default, but then Google will know Even More about you.</p>
<p>Onward!</p>
<p>I then modified /etc/hosts to look like:</p>
<pre>127.0.0.1 localhost
192.168.0.100 carsonella.home</pre>
<p>I am reasonably certain that the <code>.home</code> part of <code>carsonella.home</code> there <strong>must</strong> match what is set as the domain in resolv.conf</p>
<p><strong>3) </strong>Configuring the D-Link to use the plug as the DNS server isn&#8217;t terrible, if you know where to look.</p>
<p>The first thing that I needed to do was to get my dreamplug to have a static IP. Since I didn&#8217;t want to mess with network settings on the plug (no JTAG means no debugging if things go to hell) I just used the D-Link&#8217;s &#8220;reserve IP&#8221; functionality.</p>
<p>You find the reserve IP settings at the bottom of the &#8220;Setup ? Network Settings&#8221; page in the D-Link admin. One bug there was that I needed to click &#8220;Save Settings&#8221; at the top for the settings to take effect, even though they <em>looked</em> saved <em>and</em> the DIR-655 told me that there was &#8220;nothing new to save.&#8221;</p>
<p>Choose some IP to reserve for the dreamplug, for example 192.168.0.128.</p>
<p>To tell the D-Link that it needs to use your plug for DNS you need to go to &#8220;Setup ? Internet&#8221; and click on the &#8220;Manual Internet Connection Setup&#8221; button.</p>
<p>Here you need to fill in the IP you chose for your plug as the Primary DNS Address. I also recommend putting in one of the IPs you used as a nameserver as the secondary DNS addres in case your computer goes down.</p>
<p>Save these settings.</p>
<p>Almost done!</p>
<p>4) Go back to &#8220;Setup ? Network Settings&#8221; and <strong>make sure <code>Enable DNS Relay</code> is unchecked</strong>. Without this your router will ignore all of your settings and just assign your local computers DNS settings as provided by your ISP.<strong><br />
</strong></p>
<p>Save these settings. (I&#8217;m pretty sure you don&#8217;t want to do this before you&#8217;ve configured a new nameserver, because changing settings on the D-Link has some random chance of renewing your DHCP lease, and if you do that without a DNS server you won&#8217;t be able to find any damned thing.)</p>
<p>You&#8217;re done!</p>
<p>Or at least I am, this was supposed to be a quick reminder in case I ever needed to do this again.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2012%2F03%2Fmy-extremely-specific-dns-settings%2F';
  addthis_title  = 'My+extremely+specific+DNS+settings';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/kIK1Fsl5a0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2012/03/my-extremely-specific-dns-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2012/03/my-extremely-specific-dns-settings/</feedburner:origLink></item>
		<item>
		<title>Using getopts with required args in a posix shell</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/YW6FR1SRkT8/</link>
		<comments>http://blog.quodlibetor.com/2012/03/using-getopts-with-required-args-in-a-posix-shell/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 17:20:32 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[zsh]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=304</guid>
		<description><![CDATA[I recently wanted to add a verbose flag to a script. My script required some arguments, and I didn&#8217;t want to change the (very limited) already existing logic. Because programming in bash sucks enough that I am willing to spend 6 hours googling &#8220;getopts options with args&#8221; rather than re-arrange 3 lines of code. This [...]]]></description>
				<content:encoded><![CDATA[<p>I recently wanted to add a verbose flag to <a title="A ping monitor log compressor." href="https://github.com/quodlibetor/pingmonitor/blob/master/pinglogcompress">a script</a>. My script required some arguments, and I didn&#8217;t want to change the (very limited) already existing logic. Because programming in bash sucks enough that I am willing to spend 6 hours googling &#8220;getopts options with args&#8221; rather than re-arrange 3 lines of code.</p>
<p>This seems like such a common need that I figured it would be easily googlable, but based on the number of unanswered forum posts that I found, it isn&#8217;t.</p>
<p>It turns out that the <a title="Advanced Bash Scripting Guide Root." href="http://tldp.org/LDP/abs/">advanced bash scripting</a> guide does talk about this! Casually, and without any kind of callout. On page 203. As part of <a title="Bash internal commands" href="http://tldp.org/LDP/abs/html/internal.html">the discussion of internal commands</a>.</p>
<p>It turns out that what I wanted was to use the standard <a title="man getopts" href="http://ss64.com/bash/getopts.html"><code>getopts</code></a> loop, followed by a call to <a title="man shift" href="http://ss64.com/bash/shift.html"><code>shift</code></a>:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">OPTIND</span>=<span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #7a0874; font-weight: bold;">getopts</span> <span style="color: #ff0000;">&quot;k:vh&quot;</span> o ; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #666666; font-style: italic;"># set $o to the next passed option</span>
  <span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$o</span>&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
    v<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #666666; font-style: italic;"># set &quot;v&quot; flag</span>
       <span style="color: #000000; font-weight: bold;">;;</span>
    k<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #666666; font-style: italic;"># do something with &quot;k&quot; and $OPTARG, the arg to this opt</span>
       <span style="color: #000000; font-weight: bold;">;;</span>
    h<span style="color: #7a0874; font-weight: bold;">&#41;</span> print <span style="color: #ff0000;">&quot;<span style="color: #007800;">$usage</span>&quot;</span>
       <span style="color: #7a0874; font-weight: bold;">exit</span>
       <span style="color: #000000; font-weight: bold;">;;</span>
  <span style="color: #000000; font-weight: bold;">esac</span>
<span style="color: #000000; font-weight: bold;">done</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">shift</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">$OPTIND</span> - <span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #666666; font-style: italic;"># $1 is now the first non-option argument, $2 the second, etc</span></pre></td></tr></table></div>

<p>You see, <code>getopts</code> sets the <code>$OPTIND</code> POSIX variable to the index of the option that it should process next every time it&#8217;s called, and <code>shift <em>arg</em></code> shifts <em>arg</em> arguments off the argument list.</p>
<p>Combining those two facts, and using the <code>$(( ))</code> numeric context, lets you set a bunch of options and then act as though your script has only arguments in any POSIX-compliant shell.</p>
<p>I think. This is working for me in bash and zsh, and it&#8217;s part of the POSIX standard, so it should be true for you.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2012%2F03%2Fusing-getopts-with-required-args-in-a-posix-shell%2F';
  addthis_title  = 'Using+getopts+with+required+args+in+a+posix+shell';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/bash' rel='tag' target='_self'>bash</a>, <a class='technorati-link' href='http://technorati.com/tag/linux' rel='tag' target='_self'>linux</a>, <a class='technorati-link' href='http://technorati.com/tag/zsh' rel='tag' target='_self'>zsh</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/YW6FR1SRkT8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2012/03/using-getopts-with-required-args-in-a-posix-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2012/03/using-getopts-with-required-args-in-a-posix-shell/</feedburner:origLink></item>
		<item>
		<title>Apt-cache search errors on Debian (in a dreamplug)</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/GLR5SC5HLwU/</link>
		<comments>http://blog.quodlibetor.com/2012/03/apt-cache-search-errors-on-debian-in-a-dreamplug/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 03:01:43 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dreamplug]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=299</guid>
		<description><![CDATA[I just got a Dreamplug and have been playing around with it, when for some reason apt-cache search started failing weirdly. Sometimes I got segmentation faults, sometimes it would just run with no output, taking up to a few minutes. My apt version is 0.8.10.3, so a couple of old Debian bugs that recommended rm [...]]]></description>
				<content:encoded><![CDATA[<p>I just got a Dreamplug and have been playing around with it, when for some reason apt-cache search started failing weirdly. Sometimes I got segmentation faults, sometimes it would just run with no output, taking up to a few minutes.</p>
<p>My apt version is 0.8.10.3, so a couple of old Debian bugs that recommended <code>rm /var/cache/apt/*.bin</code> (which has since the taken to filesystem name randomization since the time of the bug, so I actually needed to <code>rm /var/cache/apt/*.bin*</code>) seemed like it probably wouldn&#8217;t work. And indeed it didn&#8217;t.</p>
<p>There was also <a href="http://codehunk.wordpress.com/2009/06/25/apt_cache_problem_and_fix/">this guy&#8217;s &#8220;delete everything and let apt cache it out&#8221; solution</a>, which also didn&#8217;t work.</p>
<p>Then I tried <code>man apt-cache</code> which almost immediately told me about <code>apt-cache gencaches</code>:</p>
<blockquote><p>gencaches performs the same operation as <strong>apt-get check</strong>. It builds the source and package caches from the sources in sources.list(5) and from /var/lib/dpkg/status.</p></blockquote>
<p><code>apt-get</code> check fixed it. Possibly it wouldn&#8217;t have if I hadn&#8217;t deleted practically everything  apt ever created, though, so I told you about my journey.</p>
<p>And, yes, I <code>rm -rf</code>&#8216;d entire file structures almost blindly. <em>Don&#8217;t do that</em>.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2012%2F03%2Fapt-cache-search-errors-on-debian-in-a-dreamplug%2F';
  addthis_title  = 'Apt-cache+search+errors+on+Debian+%28in+a+dreamplug%29';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/debian' rel='tag' target='_self'>debian</a>, <a class='technorati-link' href='http://technorati.com/tag/dreamplug' rel='tag' target='_self'>dreamplug</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/GLR5SC5HLwU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2012/03/apt-cache-search-errors-on-debian-in-a-dreamplug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2012/03/apt-cache-search-errors-on-debian-in-a-dreamplug/</feedburner:origLink></item>
		<item>
		<title>I’m sick of crazy people lying about “secular thought” in major newspapers</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/5yxC8gC8Qpg/</link>
		<comments>http://blog.quodlibetor.com/2010/02/im-sick-of-crazy-people-lying-about-secular-thought-in-major-newspapers/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 06:58:48 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[fiction]]></category>
		<category><![CDATA[atheism]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[nytimes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[religion]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=282</guid>
		<description><![CDATA[Why have people got to go around continuously misstating and, well, lying about the implications and demands of a secular worldview? For example, take this sentence: Once the world is &#8230; thought of as being “composed of atomic particles randomly colliding and . . . sometimes evolving into more and more complicated systems and entities [...]]]></description>
				<content:encoded><![CDATA[<p>Why have people got to go around continuously misstating and, well, lying about the implications and demands of a secular worldview? For example, take this sentence:</p>
<blockquote><p>Once the world is &#8230; thought of as being  “composed of atomic particles randomly colliding and . . . sometimes  evolving into more and more complicated systems and entities including  ourselves”</p></blockquote>
<p>OK, completely aside from calling some of the most elegant and impressive discoveries of humankind (friggin&#8217; fundamental laws of physics and evolution, ladies and gentlemen) &#8220;particles randomly colliding and sometimes evolving into complicated shit,&#8221; (<em><a title="Author link, I guess?" href="http://www.hup.harvard.edu/catalog/SMIDIS.html">The Disenchantment of Secular Discourse</a></em>, Stephen &#8220;I Hate and Fear History&#8221; Smith) this description of secular thought ignores <em>hundreds of years of secular thought. </em>Which, don&#8217;t worry, Stanly Fish will continue to misrepresent and misunderstand for a good <a title="Are there Secular Reasons" href="http://opinionator.blogs.nytimes.com/2010/02/22/are-there-secular-reasons/">1776 words</a>, in the end arguing that there are no non-spiritual reasons for doing anything. And, no, I did not make that number up.</p>
<p>This fundamental misunderstanding of what &#8220;secular&#8221; means is important because the article is all ab out how we make public decisions: what appeals is it legitimate for a member of government to make? Fish starts off by saying that &#8220;policy decisions  should be made on the basis of  secular reasons,&#8221; which &#8212; given a minimally good definition of &#8220;secular&#8221; &#8212; I agree with. Policy decisions should be made based on the effects they will have on the world, not on of many imaginary deities. Unfortunately I edited that to make him look like less of an idiot, this is is a more complete version: &#8220;policy decisions  should be made on the basis of  secular reasons, reasons that, &#8230; do not reflect the commitments or agendas of   any religion, <strong>morality or ideology</strong>&#8220;. (emphasis mine)</p>
<p>Allow me to provide you with a selection of the most popular <a title="More Detail than my brief misrepresentations" href="http://www.woodrow.org/teachers/bi/1992/ethical_systems.html">ethical systems</a> around today, the systems that most inform current American morality according to my incompetent analysis:</p>
<ul>
<li>Utilitarian Ethics (do what makes the most people the most happy)</li>
<li>Respect Ethics (do unto others as though they deserve the best you can reasonably do. This is a mild reformulation of the golden rule, and based on the fact that you have probably never given a homeless person your credit card, the version of it that you actually follow. Usually called duty ethics.)</li>
<li>Fulfillment Ethics (do things because they will help you or others be the best people that you/they can be. Usually called Virtue ethics, because that&#8217;s what they called things back when <em>Aristotle</em> was writing.)</li>
</ul>
<p>Know what those fundamental systems of morality all have in common? They are <em>secular</em>. Which is to say they do not depend on unjustified assumptions that threaten you with eternal torture for their basis. Oh, wait, that reminds me, I forgot one:</p>
<ul>
<li>Ignoring <em>all of the effects</em> of my system, because I don&#8217;t care about how people live. (Usually called religion.)</li>
</ul>
<p>That one <em>does</em> depend on unjustified assumptions about the fundamental nature of reality, assumptions which (often) conveniently involve your horrible pain for a literally meaningless amount of time.</p>
<p>Quickly take a look at those four systems, tell me if I have misunderstood any of them, recognize which ones you actually use to make decisions. And then think about how you don&#8217;t actually need to incorporate anything non-secular to reach those same decisions. <em>Every worthwhile moral theory is secular</em>. Seriously Stan, don&#8217;t be a jerk.</p>
<p>Oh no here he goes again:</p>
<blockquote><p>While secular discourse, in the form of statistical analyses, controlled  experiments and rational decision-trees, can yield banks of data that  can then be subdivided and refined  in more ways than we can count, it  cannot tell us what that data means or what to do with it. No matter how  much information you pile up and how sophisticated are the analytical  operations you perform, you will never get one millimeter closer to the  moment when you can move from the piled-up information to some lesson or  imperative it points to; for it doesn’t point anywhere; it just sits  there, inert and empty.</p></blockquote>
<p>If he was going to be so technical about it I&#8217;d think he&#8217;d want to bound us a little tighter and say &#8220;nanometer&#8221; at least. He is so insanely incorrect I can think of about 7 things before I type the number &#8220;7&#8243; to use to argue against him. Let me lay out for you a simple example of secular reasoning that I don&#8217;t care if anyone disagrees with, because they suck:</p>
<ol>
<li>Getting raped sucks big time.</li>
<li>We should prevent people from raping other people.</li>
</ol>
<p>OK? Stan and Steve, would you say that I have stayed within the bounds of the &#8220;truncated discursive resources available within the downsized domain of  ‘public reason’&#8221;? And, if I haven&#8217;t, could you please explain you me why (2) requires me to appeal to some fundamental teleological aspect of the universe instead of just pointing out that we should keep things that suck from happening, if we can help it?</p>
<p>Oh, wait, you never address that.</p>
<p>Here&#8217;s some more gibberish, loosely related!</p>
<blockquote><p>If [secular] reason has “deprived” the natural world of “its normative  dimension” by conceiving of it as free-standing and tethered to nothing  higher than or prior to itself, how, Smith asks, “could one squeeze  moral values or judgments about justice . . . out of brute empirical  facts?”</p></blockquote>
<p>Well, because one of the empirical facts is <strong>getting raped sucks</strong>. That is a fairly well-acknowledged and -documented fact. There are a variety of other <em>observations of the human condition</em> that count as facts that allow us to make a wide variety of other well-formed and non-arbitrary arguments about how to behave.</p>
<blockquote><p>No way that is not a sleight of hand.</p></blockquote>
<p>Sweet. I expect my invitation to perform at <a title="Heck Yeah!" href="http://www.magiccastle.com/">the Magic Castle</a> by the end of the week.</p>
<blockquote><p>This is the cul de sac  Enlightenment philosophy traps itself in when it renounces metaphysical  foundations in favor of the “pure” investigation of “observable facts.”  It must somehow bootstrap or engineer itself back up to meaning and the  possibility of justified judgment, but it has deliberately jettisoned  the resources that would enable it do so.</p></blockquote>
<p>I wasn&#8217;t going to include that, but I really love the use of scare quotes around &#8220;observable facts.&#8221; And I felt like it was only fair to make him look like even more of an idiot, because the article really pissed me off.</p>
<p>He goes on for awhile with some other minor misunderstandings and lies about <a title="Because dictionary definitions are really the final arbiter, right?" href="http://dictionary.reference.com/browse/secular?r=66">the definition of &#8220;secular,&#8221;</a> as well as some truly interesting problems &#8212; what does freedom mean? to whom do we owe what? &#8212; unfortunately the only case that he makes against secular thought is that it seems to be incapable of observing humanity. Which is, you know, <em>false</em>.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2010%2F02%2Fim-sick-of-crazy-people-lying-about-secular-thought-in-major-newspapers%2F';
  addthis_title  = 'I%26%238217%3Bm+sick+of+crazy+people+lying+about+%26%238220%3Bsecular+thought%26%238221%3B+in+major+newspapers';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/atheism' rel='tag' target='_self'>atheism</a>, <a class='technorati-link' href='http://technorati.com/tag/ethics' rel='tag' target='_self'>ethics</a>, <a class='technorati-link' href='http://technorati.com/tag/nytimes' rel='tag' target='_self'>nytimes</a>, <a class='technorati-link' href='http://technorati.com/tag/politics' rel='tag' target='_self'>politics</a>, <a class='technorati-link' href='http://technorati.com/tag/religion' rel='tag' target='_self'>religion</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/5yxC8gC8Qpg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2010/02/im-sick-of-crazy-people-lying-about-secular-thought-in-major-newspapers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2010/02/im-sick-of-crazy-people-lying-about-secular-thought-in-major-newspapers/</feedburner:origLink></item>
		<item>
		<title>happydays.txt</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/yVHxdAUX-qU/</link>
		<comments>http://blog.quodlibetor.com/2010/02/happydays-txt/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 05:38:30 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[fiction]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=279</guid>
		<description><![CDATA[hi there. my name is brandon. I come to write to you a memorabilia. A short memory, that is to say. Something fun for everyone, the whole family. I was walking through the park one day, and I stumbled. Fell down, didn&#8217;t see the path, tripped, choked my way into blackness. As it were. This, [...]]]></description>
				<content:encoded><![CDATA[<p>hi there. my name is brandon. I come to write to you a memorabilia. A short memory, that is to say. Something fun for everyone, the whole family.</p>
<p>I was walking through the park one day, and I stumbled. Fell down, didn&#8217;t see the path, tripped, choked my way into blackness.</p>
<p>As it were.</p>
<p>This, being a short memory, you&#8217;ll forgive me if i don&#8217;t elaborate. It is like swimming in cold water: you&#8217;re pretty sure you should be panicked, or at least your body thinks it should be. Freezing water, the kind you can see ice float past. When you swim: you can see ice float when you swim. It&#8217;s a bad idea to dwell in it. Cramps, nausea, a violent retribution; people say stay away with good reason. But there are places to swim, people to see. Or avoid. These things are here for a reason, don&#8217;t let them tell you they&#8217;re not. There are good reasons for saying that they&#8217;re not, but, that&#8217;s not the reason to let them not tell you that they&#8217;re not. Just keep swimming, is the thing.</p>
<p>Your body can only panic for so long, is the thing. Keep this in mind: panic is useful, it keeps you swimming. Without a continuous flow of adrenaline you would give up. That, as you can imagine, is fatal when walking through a park. Do not give up; walk through the darkness and the bracken. There is only so far that you can walk in the middle of a city before you meet someone of like mind, similar vocation, maybe a hint of hypothermia.</p>
<p>It&#8217;s the blue lips that you should look for.</p>
<p>What, no plot? Plot assumes a point: a place to go, something teleological. Law and the word &#8212; the end word &#8212; the word transported. Useless like pink lips.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2010%2F02%2Fhappydays-txt%2F';
  addthis_title  = 'happydays.txt';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/yVHxdAUX-qU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2010/02/happydays-txt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2010/02/happydays-txt/</feedburner:origLink></item>
		<item>
		<title>New mathematical model shows stupid is highly contagious</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/MRBqjVTn7Uw/</link>
		<comments>http://blog.quodlibetor.com/2009/05/new-mathematical-model-shows-stupid-is-highly-contagious/#comments</comments>
		<pubDate>Tue, 05 May 2009 02:06:51 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[fiction]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[woo]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/?p=152</guid>
		<description><![CDATA[Or: Homeopathy is famous because it doesn&#8217;t work. The article is interesting, and the gist of it is: people do things they see other people doing people spend more time on medicines that don&#8217;t work than medicines that do medicines that don&#8217;t work have more time to convince people to try them Now, completely aside [...]]]></description>
				<content:encoded><![CDATA[<p>Or: Homeopathy is famous<em> because</em> it doesn&#8217;t work. <a title="Homeopathy: Totally Bogus" href="http://www.newscientist.com/article/dn17064-quack-remedies-spread-by-virtue-of-being-useless.html">The article</a> is interesting, and the gist of it is:</p>
<ul>
<li> people do things they see other people doing</li>
<li>people spend more time on medicines that don&#8217;t work than medicines that do</li>
<li>medicines that don&#8217;t work have more time to convince people to try them</li>
</ul>
<p>Now, completely aside from how horribly depressing that is &#8212; and how interesting it is that somebody used the mathematical models used to understand the spread of disease to the spread of crazy &#8212; it clarifies and provides a metaphor for a thought that I&#8217;ve sort of had knocking around the back of my head for awhile now.</p>
<p>Worldviews (Weltanschauung?  nah.) seem to spread in similar ways to crackpot ideas; I mean, you understand the world in ways that come from the people you interact with. The more strongly that people express a worldview the stronger the effect it has on you. Not necessarily positively, of course. But who is going to believe the most passionately about their WV? People who <em>really need</em> something to believe in. And, of course, if your philosophy is just really fundamentally not working out for you &#8212; as, for example, it wouldn&#8217;t if you just expect everything to work out because somebody somewhere loves you / hates your coworkers &#8212; then you are going to need <em>a</em> philosophy all the more. And especially if it doesn&#8217;t lead obviously to gratuitous horrors you are more likely to tell your friends and coworkers (whom your deity/world energy/doctor doesn&#8217;t like)  that it is the thing that makes the world OK.</p>
<p>So, point is, think carefully when you tell people that ______ is always there for you/around you/touching you with his noodly appendage, because sometimes even an imaginary touch is inappropriate.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2009%2F05%2Fnew-mathematical-model-shows-stupid-is-highly-contagious%2F';
  addthis_title  = 'New+mathematical+model+shows+stupid+is+highly+contagious';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/math' rel='tag' target='_self'>math</a>, <a class='technorati-link' href='http://technorati.com/tag/religion' rel='tag' target='_self'>religion</a>, <a class='technorati-link' href='http://technorati.com/tag/science' rel='tag' target='_self'>science</a>, <a class='technorati-link' href='http://technorati.com/tag/woo' rel='tag' target='_self'>woo</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/MRBqjVTn7Uw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2009/05/new-mathematical-model-shows-stupid-is-highly-contagious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2009/05/new-mathematical-model-shows-stupid-is-highly-contagious/</feedburner:origLink></item>
		<item>
		<title>Starry McFlamingpantserson, and other remnants.</title>
		<link>http://feedproxy.google.com/~r/lightfiction/~3/NX4YUUQDwoA/</link>
		<comments>http://blog.quodlibetor.com/2009/04/starry-mcflamingpantserson-and-other-remnants/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 18:43:12 +0000</pubDate>
		<dc:creator>quodlibetor</dc:creator>
				<category><![CDATA[fiction]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[memes]]></category>
		<category><![CDATA[snowclone]]></category>

		<guid isPermaLink="false">http://blog.quodlibetor.com/2009/04/26/starry-mcflamingpantserson-and-other-remnants/</guid>
		<description><![CDATA[Well, an hour ago I didn&#8217;t know what a snowclone was, but then this guy but now I&#8217;m going to share some links with you. I&#8217;m going to share some links with you so hard. Actually, all links to the ADS-L, because this one thread beat my hours of research, or it was the end [...]]]></description>
				<content:encoded><![CDATA[<p>Well, an hour ago I didn&#8217;t know what a <a title="THE definition" href="http://158.130.17.5/~myl/languagelog/archives/002555.html">snowclone</a> was, but then <a title="not really sure who he is" href="http://whereswalden.com/2009/04/24/dear-lazyweb/">this guy</a> but now I&#8217;m going to share some links with you. I&#8217;m going to share some links with you <em>so hard</em></a>.</p>
<p>Actually, all links to the <a href="http://listserv.linguistlist.org/">ADS-L</a>, because this <a href="cgi-bin/wa?A2=ind0705D&#038;L=ADS-L&#038;D=0&#038;I=-3&#038;P=12757&#038;F=P">one thread</a> beat my hours of research, or it was the end of it (why are the keys always in the last place I look?) [also, because their icons are meaningless and have no alt-text, the lightbulb with the right arrow seems to mean "next in thread"]<br />
.</p>
<p>OK, first, if you consider &#8220;&#8216;McLintock!&#8217; is McNificent!&#8221; to be the origin, than this dates back to <a href="cgi-bin/wa?A2=ind0705D&#038;L=ADS-L&#038;D=0&#038;I=-3&#038;P=12757&#038;F=P">1948</a>. I don&#8217;t.</p>
<p>Then there&#8217;s &#8220;Marian McPartland&#8217;s Mcmagic&#8221;. (<a href="http://listserv.linguistlist.org/cgi-bin/wa?A2=ind0705D&#038;L=ADS-L&#038;D=0&#038;F=P&#038;I=-3&#038;P=13582">1956</a>) That&#8217;s better, but still kind of lousy.</p>
<p>There&#8217;s a, an, ah, <a href="http://forum.myspace.com/index.cfm?fuseaction=messageboard.viewThread&#038;entryID=34982051&#038;groupID=102278042&#038;adTopicID=12">myspace forum</a> dedicated to what people have started &#8220;Mc-y-ing&#8221;, in honor of greys anatomy. It&#8217;s not Xy McYerson, though it <em>is</em> horrible. And it&#8217;s from 2007, so by this point we know it&#8217;s from between 1956 and 2007.</p>
<p>ah! :</p>
<blockquote><p>
So far I haven&#8217;t been able to find anything<br />
earlier than Nov. 1, 2001 &#8212; the first appearance of Hottie<br />
McHotterson (on rec.games.video.sony) (<a href="http://listserv.linguistlist.org/cgi-bin/wa?A2=ind0705D&#038;L=ADS-L&#038;D=0&#038;F=P&#038;I=-3&#038;P=23860&#038;F=">hmmm</a>)
</p></blockquote>
<p>OK, even better:</p>
<blockquote><p>
These may have been inspired by Bill Maher, who took to calling Bush<br />
&#8220;Drinky McDumbass&#8221; as early as 2000 (when his show &#8220;Politically<br />
Incorrect&#8221; was still on the air).</p>
<p><a href="http://listserv.linguistlist.org/cgi-bin/wa?A2=ind0705D&#038;L=ADS-L&#038;D=0&#038;I=-3&#038;P=23970">&#8211;Ben Zimmer</a>
</p></blockquote>
<p>That seems about right for the recent surge in them, although I also remember saying it in highschool. Wait, highschool, that means&#8230;</p>
<blockquote><p>
<a href="http://listserv.linguistlist.org/cgi-bin/wa?A2=ind0705D&#038;L=ADS-L&#038;D=0&#038;F=P&#038;I=-3&#038;P=23528&#038;F=">Tipsy McStagger</a> from &#8220;Flaming Moe&#8217;s&#8221; (Season 3,<br />
aired Nov 21, 1991). In the episode, a representative from Tipsy<br />
McStagger&#8217;s Good Time Drinking and Eating Emporium tries to get the<br />
recipe for the &#8220;Flaming Moe&#8221; drink from Moe the bartender.
</p></blockquote>
<p>the simpsons. Of course.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.quodlibetor.com%2F2009%2F04%2Fstarry-mcflamingpantserson-and-other-remnants%2F';
  addthis_title  = 'Starry+McFlamingpantserson%2C+and+other+remnants.';
  addthis_pub    = 'quodlibetor';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/history' rel='tag' target='_self'>history</a>, <a class='technorati-link' href='http://technorati.com/tag/memes' rel='tag' target='_self'>memes</a>, <a class='technorati-link' href='http://technorati.com/tag/snowclone' rel='tag' target='_self'>snowclone</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://feeds.feedburner.com/~r/lightfiction/~4/NX4YUUQDwoA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.quodlibetor.com/2009/04/starry-mcflamingpantserson-and-other-remnants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.quodlibetor.com/2009/04/starry-mcflamingpantserson-and-other-remnants/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 1.451 seconds -->
