<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	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/"
	>

<channel>
	<title>Flexistentialism &#187; Metacrap</title>
	<atom:link href="http://flexistentialist.org/blog/archives/category/metacrap/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexistentialist.org/blog</link>
	<description></description>
	<lastBuildDate>Mon, 31 Oct 2011 03:34:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Broken Computers</title>
		<link>http://flexistentialist.org/blog/archives/2004/12/07/broken-computers/</link>
		<comments>http://flexistentialist.org/blog/archives/2004/12/07/broken-computers/#comments</comments>
		<pubDate>Wed, 08 Dec 2004 01:00:10 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=418</guid>
		<description><![CDATA[I&#8217;m lucky I have four computers at my disposal, otherwise I&#8217;d be screwed. Yesterday two of them broke. The Sawtooth mac was upgrading its OS when it crashed. Now it kernel panics whenever it boots up. It wouldn&#8217;t be a big deal, but I can&#8217;t find my 10.3 CDs at the moment. Then, my old [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m lucky I have four computers at my disposal, otherwise I&#8217;d be screwed. Yesterday two of them broke. The Sawtooth mac was upgrading its OS when it crashed. Now it kernel panics whenever it boots up. It wouldn&#8217;t be a big deal, but I can&#8217;t find my 10.3 CDs at the moment.</p>
<p>Then, my old PC (the music server), died again. It had a hard drive failure on its system drive a few months ago, and Berg kindly gave me a brand new drive to replace it. Unfortunately, that new drive has now failed. Curses! The drive is still under warranty, but I have to pack it up, ship it in, and wait for a replacement, all pains in my ass.</p>
<p>Fortunately my other Mac and my media PC are both functioning. For the moment.</p>
<p>In the world of improved computer stuff, I have a small announcement. I bit the bullet and upgraded this blog to MovableType 3.12. This is the version with more restrictive licensing, which is frustrating. However, it also has some major enhancements, particularly in the realm of spam-blocking. In the last week, I&#8217;ve been hit with over 3000 spam comments. The existing system for blacklisting and removing spam was functioning, but the overwhelming deluge of spam was beginning to expose the software&#8217;s weaknesses. It was time for an upgrade.</p>
<p>Now, comments to posts older than three weeks will be moderated, meaning I must approve them before they appear. If this happens to you, don&#8217;t worry, I&#8217;ll approve your comment as long as you aren&#8217;t selling penis pills. Also, comments with more than two URLs in them will be moderated. If you have to post a lot of links, go ahead and do so, but know that your comment won&#8217;t appear on the website right away, I&#8217;ll have to approve it (which, again, I&#8217;ll do as long as you aren&#8217;t selling penis pills). The amount of spam actually appearing on the website should decrease drastically from this point on, though one may occasionally slip through my ever-tightening nets.</p>
<p>If you feel like you have been blocked or needlessly moderated, or I seem to have forgotten to approve your legit comment, please &#8220;contact me&#8221;:/contact.shtml.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2004/12/07/broken-computers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Towers of Hanoi</title>
		<link>http://flexistentialist.org/blog/archives/2003/12/18/towers-of-hanoi/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/12/18/towers-of-hanoi/#comments</comments>
		<pubDate>Thu, 18 Dec 2003 09:13:40 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>
		<category><![CDATA[Misc. Technical]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=365</guid>
		<description><![CDATA[Two tiny updates: On the &#8220;About&#8221;:/about.shtml page, there is now a tiny bit of additional info, namely, the total number of posts, total number of comments, and overall comments per entry (currently 1.9), in addition to the month-to-month data. You don&#8217;t care, but I do! It is like a running log of how interesting I [...]]]></description>
			<content:encoded><![CDATA[<p>Two tiny updates:</p>
<p>On the &#8220;About&#8221;:/about.shtml page, there is now a tiny bit of additional info, namely, the total number of posts, total number of comments, and overall comments per entry (currently 1.9), in addition to the month-to-month data. You don&#8217;t care, but I do! It is like a running log of how interesting I am.</p>
<p>Second, there is a little &#8220;Towers of Hanoi solver&#8221;:/hanoi.php running. Thanks to &#8220;Amit Singh&#8217;s Hanoimania&#8221;:http://www.kernelthread.com/hanoi/ I have been tweaking some PHP code to solve the classic puzzle. His code is great, and deserves all the credit, however, I&#8217;ve made a few tweaks to improve the interface, and add additional information such as the number of moves required to solve the puzzle.</p>
<p>For anyone who isn&#8217;t familiar, the Towers of Hanoi is a classic puzzle consisting of three posts with a tower of disks placed on one of the posts. The disks are stacked according to size, with the smallest disk on top, descending to the largest disk on the bottom. To solve the puzzle you must move the entire tower from the starting post to a different post. You can only move one disk at a time, and no disk may be placed upon a disk smaller than itself, IE, disks can only move to empty posts, or on top of larger disks. It turns out that the puzzle has a very simple algorithmic solution, which Amit implements in 108 different programming languages, a truly heroic effort. I&#8217;m playing with the PHP one for the heck of it.</p>
<p>There is a little legend associated with the puzzle, whereupon a monastery deep under the mountains contains a version of this puzzle with diamond posts and golden disks. There are monks there who are solving the puzzle. The puzzle began with 64 disks, and they started solving the puzzle, one movement per second, at the beginning of the universe. When they finish the puzzle, the universe will end. Solving a 5 disk puzzle is fairly easy, and once you figure out the system, the movements come quickly. However, with a little calculation you can see that the number of moves needed to solve the puzzle goes up very quickly. It turns out that it will take the monks somewhere around 580 billion years to finish the puzzle with only 64 disks.</p>
<p>Bonus points to anyone who can figure out the equation to calculate the optimal number of moves required to solve the puzzle with a given number of disks (N). Hint, check out the solution for &#8220;1 disk&#8221;:/hanoi.php?1, &#8220;2 disks&#8221;:/hanoi.php?2, &#8220;3 disks&#8221;:/hanoi.php?3, and &#8220;4 disks&#8221;:/hanoi.php?4. Seeing a pattern yet? Try to predict the number of moves required for &#8220;5 disks&#8221;:/hanoi.php?5, and see if you can formulate an equation based on that pattern.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/12/18/towers-of-hanoi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extended Downtime</title>
		<link>http://flexistentialist.org/blog/archives/2003/12/09/extended-downtime/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/12/09/extended-downtime/#comments</comments>
		<pubDate>Tue, 09 Dec 2003 20:23:48 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=361</guid>
		<description><![CDATA[I hate having a downed server. In this case, my host&#8217;s name server went down, and stayed down for several days, which is why you couldn&#8217;t read this site, or send me (or any other cowboy) mail. Now you can! So go nuts. There are a lot of interesting things that happened over the week, [...]]]></description>
			<content:encoded><![CDATA[<p>I hate having a downed server. In this case, my host&#8217;s name server went down, and stayed down for several days, which is why you couldn&#8217;t read this site, or send me (or any other cowboy) mail. Now you can! So go nuts.</p>
<p>There are a lot of interesting things that happened over the week, but I&#8217;m afraid that you won&#8217;t be hearing about them, because I&#8217;m no longer in the mood to write about them. Maybe I&#8217;ll get in the mood, but maybe not. I suppose we&#8217;ll just count this as a week lost to the void. Bye bye, week.</p>
<p>Anyway, I&#8217;ve got some correspondence to catch up with, now that I have email again. More interesting posts will follow, I promise.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/12/09/extended-downtime/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Experimental Wiki</title>
		<link>http://flexistentialist.org/blog/archives/2003/10/30/experimental-wiki/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/10/30/experimental-wiki/#comments</comments>
		<pubDate>Thu, 30 Oct 2003 08:15:40 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=344</guid>
		<description><![CDATA[After playing with many different wiki engines until far too late at night, I&#8217;ve decided to try out &#8220;WikkiTikkiTavi&#8221;:http://tavi.sourceforge.net. &#8220;TWiki&#8221;:http://twiki.org is far too complicated, and &#8220;PHPWiki&#8221;:http://phpwiki.sourceforge.net does not seem to be under good development at the moment, and has been fairly buggy for me (which is in fact, why I&#8217;m switching), and &#8220;MoinMoinWiki&#8221;:http://moin.sourceforge.net, which seems [...]]]></description>
			<content:encoded><![CDATA[<p>After playing with many different wiki engines until far too late at night, I&#8217;ve decided to try out &#8220;WikkiTikkiTavi&#8221;:http://tavi.sourceforge.net. &#8220;TWiki&#8221;:http://twiki.org is far too complicated, and &#8220;PHPWiki&#8221;:http://phpwiki.sourceforge.net does not seem to be under good development at the moment, and has been fairly buggy for me (which is in fact, why I&#8217;m switching), and &#8220;MoinMoinWiki&#8221;:http://moin.sourceforge.net, which seems to require a really silly amount of installation and confusion for a python script.</p>
<p>WikkiTikkiTavi is in early stages of development, but has a simple templating system, and seems to be fairly powerful, without being overly complex. In fact, it is quite simple.</p>
<p>If you don&#8217;t know much about Wiki, let me just tell you that it is a website that anyone can edit. Yes, even you. Each page has a link at the bottom that says &#8220;Edit this page&#8221;. You can click there, and edit the page, using simple markup instead of full HTML. New pages are produced anytime you put two words together and capitalize them, LikeSo. As soon as you do that, the page is produced, and you can begin editing the new page. Wiki&#8217;s live on soft security, and evolve as a function of their user base.</p>
<p>One thing a wiki does as part of &#8216;soft security&#8217; is remember all changes made to itself. Say someone comes along and trashes something (which is actually very rare in the wiki world), some other kind soul can just come along and restore from the change log. Its a very unique thing.</p>
<p>Anyway, please give what may become the &#8220;new CowboyWiki&#8221;:/wiki/ a try, and let me know how you like it. If you aren&#8217;t used to wiki, I suggest reading a bit more about it, and them come play around. If you ARE used to wiki (&#8220;Andrew&#8221;:http://www.andrewsw.com, Will, &#8220;Dustin&#8221;:http://radioactiveantimatter.com/blog/ I&#8217;m looking in your direction), please let me know how you think of things. There are some nice features, for instance, just click Preferences to identify yourself, and your name now becomes a WikiWord. The sidebar is actually its own wiki page as well, so is editable. You can double click on the page to instantly open the Edit window, if you don&#8217;t want to click the link at the bottom. Many interesting features, but still deliciously simple. I want to hear your feedback!</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/10/30/experimental-wiki/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>More Little Changes</title>
		<link>http://flexistentialist.org/blog/archives/2003/10/16/more-little-changes/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/10/16/more-little-changes/#comments</comments>
		<pubDate>Thu, 16 Oct 2003 06:35:07 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=336</guid>
		<description><![CDATA[Made a few more small changes to the site. Firstly, the search page is now wrapped comfortably within a PHP script. Handy, because it lets me control more of its appearance and behavior with PHP, which I couldn&#8217;t do before, when it was just a lowly perl CGI script. Namely, use includes to put in [...]]]></description>
			<content:encoded><![CDATA[<p>Made a few more small changes to the site. Firstly, the search page is now wrapped comfortably within a PHP script. Handy, because it lets me control more of its appearance and behavior with PHP, which I couldn&#8217;t do before, when it was just a lowly perl CGI script. Namely, use includes to put in standard header and footer elements. It also gave me the ability to finally generate truly compliant code on the search system. Not too shabby.</p>
<p>The other change utilizes the nice &#8220;MT&#8221;:http://www.movabletype.org plugin &#8220;MTRelativeDate&#8221;:http://www.rayners.org/archives/000107.php. Its a very simple plugin that works exactly like the normal date template tags, but gives the option of using &#8220;Today&#8221; and &#8220;Yesterday&#8221; to describe the date on entries where it is appropriate. Look for its use! Clever huh? It also affects the comment date/time information. Very nice. At least, I think so.</p>
<p>More little tweaks coming soon. Why? Because I enjoy it! Huzzah!</p>
<p>Oh, and some real entries containing stuff you actually give a crap about are coming soon too!</p>
<p><b>Update</b>: MTRelativeDate, while an elegant solution, isn&#8217;t working properly for me. It only updates the date when I post a new entry, so things get out of date (pun unintentional) pretty fast. So, I reverted to a more verbose, but ultimately more effective solution, which is a snippet of PHP code. The code gets today&#8217;s date, yesterday&#8217;s date, and the date the post was made. Then it compares them and decides whether it should print &#8220;Today&#8221;, &#8220;Yesterday&#8221; or the day of the week, such as &#8220;Wednesday&#8221;.</p>
<pre>
";

if ($entrydate==$today) {
echo "Today,";
}
elseif ($entrydate==$yesterday) {
echo "Yesterday,";
}
else {
echo(",");
}
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/10/16/more-little-changes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Comment Spam, the Hot Topic of the Minute</title>
		<link>http://flexistentialist.org/blog/archives/2003/10/15/comment-spam-the-hot-topic-of-the-minute/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/10/15/comment-spam-the-hot-topic-of-the-minute/#comments</comments>
		<pubDate>Thu, 16 Oct 2003 01:52:47 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=335</guid>
		<description><![CDATA[Many blogs have been hit with a new type of spam. Comment spam. This site has gotten a few, but you probably haven&#8217;t noticed because I&#8217;ve removed them in short order. However, some automated bots are in action, and some sites have been hit with hundreds of spam comments in short order. A few tools [...]]]></description>
			<content:encoded><![CDATA[<p>Many blogs have been hit with a new type of spam. Comment spam. This site has gotten a few, but you probably haven&#8217;t noticed because I&#8217;ve removed them in short order. However, some automated bots are in action, and some sites have been hit with hundreds of spam comments in short order. A few tools are being looked into to supplement the basic IP banning concept. Some are rather unique, such as attempting to &#8220;steal pagerank from spammers&#8221;:http://jeremy.zawodny.com/blog/archives/001000.html (which I don&#8217;t feel will be effective (&#8220;Andrew agrees&#8221;:http://www.andrewsw.com/news/index.php?p=368&amp;c=1), but at least it is thinking &#8216;outside the box&#8217;), to more traditional solutions like &#8220;blacklisting&#8221;:http://www.jayallen.org/journey/2003/10/mtblacklist_stop_spam_now, whitelisting, &#8220;distributed blacklisting&#8221;:http://www.feedster.com/blog/archives/187_OPML_in_Action__Updates_to_the_Comment_Spammer_BlackList.html, &#8220;bayesian filtration&#8221;:http://james.seng.cc/archives/000152.html (which he set up in response to concerns about accessibilty stemming from his previous solution, discussed below), and more.</p>
<p>One interesting method, and something I&#8217;ve been thinking about recently, and has was &#8220;implemented by James Seng&#8221;:http://james.seng.cc/archives/000145.html (who also wrote the Bayesian plugin noted above) is a &#8216;captcha&#8217; that provides a very basic turing test. In order to make a comment, you have to look at an image, and then type the numbers seen in the image into a form field. You may have seen these in some places where you are making online orders and they wish to verify that a human is reading, not a machine.</p>
<p>One problem with this, that is noted heavily in his comments for the entry, is accessibility. If you can&#8217;t see, you can&#8217;t complete the test. Now, I admit that there aren&#8217;t many blind people reading the web, but they are out there, and they use browsers that are basically a text-only browser with the addition of special navigation tools, and a text-to-speech engine. Accessibility is a big deal now, and tools like this that hamper accessibility should be avoided in my opinion. Some may argue that sometimes you have to make a sacrifice in order to block the scourge of automated comment spam, but I&#8217;m inclined to believe that there is a better way. Until other solutions have been exhausted, I&#8217;m going to avoid this route.</p>
<p>Some people have suggested text based turing tests. For instance, you might have to answer a question like, &#8220;What is the third letter of the word &#8216;Banana&#8217;?&#8221; However, the basic problem is that even if this question is randomly generated, pulling from a set of predefined questions and answers, or even pulling random words and random numbers (third, fifth, seventh, etc.), it will ineveitably be parsable by a computer. If a script can create it, a script can parse it and get the answer. The benefit of images is that it is largely one-way. You can create an image with a script, but it is very hard to get text back out of that image. If only there was a way to do it without an image, but still retaining a level of unparsability.</p>
<p>If you have any great ideas, let me know! Until then, I&#8217;ll be using some basic tools, bayesian filtration primarily, to control comment spam. If it gets out of hand, I&#8217;ll put more thought into these other interesting possibilities. It may turn out that basic methods are sufficient, but the concept of developing a proper turing test is very interesting to me, and is worth considering, if only as a mental exercise. Its obvious the human brain is different from our computers, but it is difficult to pinpoint exactly how, and to produce tests that a computer can use, but that can only be answered correctly by a human.</p>
<p>Also, as a side note, this post sends more trackback pings than any other post I&#8217;ve made. Link-tastic!</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/10/15/comment-spam-the-hot-topic-of-the-minute/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Archive URLs</title>
		<link>http://flexistentialist.org/blog/archives/2003/10/12/new-archive-urls/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/10/12/new-archive-urls/#comments</comments>
		<pubDate>Mon, 13 Oct 2003 02:05:41 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=332</guid>
		<description><![CDATA[In case you are interested, there is a new format for the archive URLs. Instead of looking like http://www.flexistentialist.org/archives/000325.shtml, which gives you no information whatsoever, they now look something like this: &#8220;http://www.flexistentialist.org/archives/2003/10/12/new_archive_urls.shtml&#8221;:http://www.flexistentialist.org/archives/2003/10/12/new_archive_urls.shtml (which is the link to this entry). This includes the date, and the first 16 characters of the entry title, which makes much [...]]]></description>
			<content:encoded><![CDATA[<p>In case you are interested, there is a new format for the archive URLs. Instead of looking like http://www.flexistentialist.org/archives/000325.shtml, which gives you no information whatsoever, they now look something like this: &#8220;http://www.flexistentialist.org/archives/2003/10/12/new_archive_urls.shtml&#8221;:http://www.flexistentialist.org/archives/2003/10/12/new_archive_urls.shtml (which is the link to this entry). This includes the date, and the first 16 characters of the entry title, which makes much more sense.</p>
<p>If you&#8217;ve linked to entries before, using the old style, please change the links to the new style. However, if you don&#8217;t change it, its not the end of the world, because there is a redirect set up to move you to the correct entry.</p>
<p>For information on how to do this sort of thing, check out the following links:</p>
<p>* &#8220;Mamamusings.net&#8217;s solutions.&#8221;:http://mamamusings.net/archives/2003/07/24/redirection_solution.php<br />
* &#8220;Future-proof URLs in Movable Type&#8221;:http://mar.anomy.net/entry/2003/06/22/17.15.00/</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/10/12/new-archive-urls/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Esoteric quotes, most frightening!</title>
		<link>http://flexistentialist.org/blog/archives/2003/10/05/esoteric-quotes-most-frightening/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/10/05/esoteric-quotes-most-frightening/#comments</comments>
		<pubDate>Sun, 05 Oct 2003 23:57:58 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=329</guid>
		<description><![CDATA[I&#8217;ve got a few quotes that randomly appear beneath the navigation bar at the top of the page. Instead of choosing from the regular fare of inspiring quotes, I&#8217;ve chosen to focus specifically on quotes from interesting hip-hop songs. Some of them are funny, others quite serious. I see much hip hop as a sort [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a few quotes that randomly appear beneath the navigation bar at the top of the page. Instead of choosing from the regular fare of inspiring quotes, I&#8217;ve chosen to focus specifically on quotes from interesting hip-hop songs. Some of them are funny, others quite serious. I see much hip hop as a sort of poetry, and most of it quotes quite nicely. Here is a little list of the quotes you might see on the top of the page, and where they are from.</p>
<p>* &#8220;Muthafuckas better realize! NOW is the time to self actualize!&#8221; This quote is from Saul Williams and DJ Krust&#8217;s bizarre diatribe &#8220;Coded Language&#8221;, found on the album of the same name by DJ Krust. Saul Williams is a unique and powerful urban beat poet who&#8217;s passionate voice and penetrating words stand out amongst the rampaging beats of DJ Krust. The whole song is quite a trip to absorb, and this line stands out as one of the more odd.<br />
* &#8220;High velocity verbal atrocities.&#8221; This quote is from Deltron 3030&#8242;s song &#8220;Things You Can Do&#8221; from the self titled album &#8220;Deltron 3030&#8243;. The MC is Del, who manages to mix his special brand of humor with political commentary in a science fiction setting. The line is attractive to me because it describes what I think many blogs consist of. You can post a lot of stuff, some of it very bad, as fast as you can type it. High velocity, verbal atrocities.<br />
* &#8220;I&#8217;m seein&#8217; robots!&#8221; Kool Keith is always seeing robots, and I&#8217;m afraid that sometimes, just sometimes, I see a few also.<br />
* &#8220;Rat-atat-tata and all the cops scatta&#8217;ed!&#8221; This quote is from Slick Rick&#8217;s song &#8220;Children&#8217;s Story&#8221; about a man who makes some bad decisions. Slick Rick has a great story telling voice, and the song is quite interesting. I like this line because of how it just flows out of his mouth, and because I find it sort of humorous for some reason.<br />
* &#8220;I don&#8217;t mind if you use this, but when you abuse this, you&#8217;ll feel the rough side of my smoothness.&#8221; This is from Black Rob&#8217;s song &#8220;Smoothness&#8221;. It would be a rather typical rap song if it weren&#8217;t for Black Rob&#8217;s precision, and Dan the Automator&#8217;s unmatched beatsmithing. I think this line is hilarious. The whole song is pretty funny actually.<br />
* &#8220;Fuck the First Amendment, my speech was Free the day that my Soul decended.&#8221; From the Jurassic 5 song &#8220;Jayou&#8221;. Jurassic 5 produces some of the most pure hip hop out there. Top quality DJs, simple but precise beats, and old fashioned, no bullshit, rhyme till you drop MCs. I like this line, because it expresses a sentiment that I&#8217;ve always held. Freedom is something you are, not something you are given. The First Amendment is something to be protected, but my freedom is something inherent to myself. The body can be held, but your voice is your own.<br />
* &#8220;Tested and scarred, pressed through the storm, found who we are, with true desire.&#8221; From &#8220;Aural Pleasure&#8221; by Blackalicious. The song is pretty good, but when it ends, attached to the end of the same track is a little freestyle by two rappers whom I can&#8217;t identify (bonus points to whoever can identify these guys). The part at the end is my favorite part of the track, since the flows are perfect, and the subject matter is quite enlightening.<br />
* &#8220;As if the heartbeat wasn&#8217;t enough&#8230; They got us using drum machines now.&#8221; Another Saul Williams, this is from the track &#8220;Twice the First Time&#8221;. The song isn&#8217;t like most hip hop, but has a powerful but sad message. This song helped turn me on to hip hop in the first place.<br />
* &#8220;Apathetic, therapeutic and extremely addictive. The methadone metronome.&#8221; What is the methadone metronome? Why, its television! This line is from the Disposable Heroes of Hiphoprisy song &#8220;Television, the Drug of a Nation&#8221;. The song is quite funny and poignant.</p>
<p>Finally, the title of this post is also a quote from a hip hop song. Bonus points to whoever can name the song and artist! Also, any suggestions for quote additions would be welcome, or even just songs that you think have a great message are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/10/05/esoteric-quotes-most-frightening/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Random Photo</title>
		<link>http://flexistentialist.org/blog/archives/2003/09/30/random-photo/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/09/30/random-photo/#comments</comments>
		<pubDate>Tue, 30 Sep 2003 06:11:00 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=325</guid>
		<description><![CDATA[I stayed up later than I should enabling the random photo that you see on the main page now. Refresh the page to see another one. Go ahead, refresh again. And again. Then one more time. Each time you refresh, a new image appears! Crazy!! You can just click that silly little refresh button all [...]]]></description>
			<content:encoded><![CDATA[<p>I stayed up later than I should enabling the random photo that you see on the main page now. Refresh the page to see another one. Go ahead, refresh again. And again. Then one more time. Each time you refresh, a new image appears! Crazy!! You can just click that silly little refresh button all damn day, and you&#8217;ll see nothing but random images. Of course, there are only about 148 images in the pot right now, so you&#8217;d get repeats soon enough.</p>
<p>As usual, &#8220;contact me&#8221;:/contact.shtml if you want to know more about how I did that.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/09/30/random-photo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New RSS Feed!</title>
		<link>http://flexistentialist.org/blog/archives/2003/09/25/new-rss-feed/</link>
		<comments>http://flexistentialist.org/blog/archives/2003/09/25/new-rss-feed/#comments</comments>
		<pubDate>Thu, 25 Sep 2003 04:48:28 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Metacrap]]></category>

		<guid isPermaLink="false">http://flexistentialist.org/wordpress/?p=324</guid>
		<description><![CDATA[This is a note to all those using RSS feeds to view this site. There is now an RSS 2.0 feed with _comments included_, if you desire it. The url for the feed is &#8220;http://www.flexistentialist.org/index-comments.xml&#8221;:/index-comments.xml if you would like to subscribe. Using this feed, your aggregator will show an entry as new if it has [...]]]></description>
			<content:encoded><![CDATA[<p>This is a note to all those using RSS feeds to view this site. There is now an RSS 2.0 feed with _comments included_, if you desire it. The url for the feed is &#8220;http://www.flexistentialist.org/index-comments.xml&#8221;:/index-comments.xml if you would like to subscribe. Using this feed, your aggregator will show an entry as new if it has a comment posted. You can then read the entry to see the comment listed at the bottom. Its handy for keeping up with the discussion that often ensues from my entries.</p>
<p>Of course, if you think the comments are nothing more than mindless blabbery, and you don&#8217;t want to have entries you&#8217;ve already read show up as new just so you can read the comment, then stick with the regular RSS feeds.</p>
<p>If you don&#8217;t know what RSS is, then read this handy article titled &#8220;All About RSS&#8221;:http://www.faganfinder.com/search/rss.shtml. In short, RSS is a method by which the content of this website is sent out in a generic news format that programs called aggregators can read. The aggregator downloads the RSS file on a set interval (once an hour, once a day, etc.), and checks to see if there is a new entry. If so, it highlights the entry, and makes it easy for you to browse. I have about 30 websites in my aggregator, and whenever any of them make an update, I am informed within the hour. It makes keeping up with a lot of blogs and news sites very easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexistentialist.org/blog/archives/2003/09/25/new-rss-feed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

