<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-15664769</id><updated>2011-12-14T18:46:37.172-08:00</updated><category term='women'/><category term='Terra Naomi'/><category term='St. Patrick&apos;s Day'/><category term='mysql'/><category term='video games'/><category term='Google Android'/><category term='butler'/><category term='five grams'/><category term='programming'/><category term='XKCD'/><category term='comics'/><category term='quote'/><category term='sound card'/><category term='Recursion'/><category term='music'/><category term='rave'/><category term='Java'/><category term='nerd'/><category term='river dance'/><category term='civil rights'/><category term='array'/><category term='band'/><category term='French'/><category term='police misconduct'/><category term='movie'/><category term='Reflection'/><category term='sql'/><category term='Ruby'/><category term='Cinco de Mayo'/><category term='Turtle Beach'/><category term='Linux'/><category term='Silversun Pickups'/><category term='dance'/><title type='text'>A boy, a blog, and stuff</title><subtitle type='html'>Glenn Jahnke's rants about his life at college, his job, computers, family, and a bunch of random pictures.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default?start-index=101&amp;max-results=100'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>126</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-15664769.post-2057239292828620246</id><published>2009-06-24T17:08:00.000-07:00</published><updated>2009-06-24T17:31:36.650-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><category scheme='http://www.blogger.com/atom/ns#' term='Google Android'/><title type='text'>Google Android is pretty super easy</title><content type='html'>I've been messing around with my new toy: a HTC Magic cellphone running Google Android. I was lucky enough to get one for free from Google IO last month and have just finally gotten around to actually writing a little app for it. I haven't done anything terribly difficult yet, but from what I have already accomplished in an hour, I can say it has been a breeze.&lt;br /&gt;&lt;br /&gt;One thing that wasn't quite as trivial as I was hoping was making an alert dialog box to do some simple runtime debugging. Understanding how it works now makes this much easier, but here is my one-liner:&lt;br /&gt;&lt;br /&gt;(new AlertDialog.Builder(this)).setTitle("An Alert")&lt;br /&gt;              .setMessage("Some message")&lt;br /&gt;              .create().show();&lt;br /&gt;&lt;br /&gt;the "this" in my case is my current Activity which is the default class you make when you start a project which extends the necessary Context class (not directly though). This was inside an event handler (which was implemented as an anonymous inner class) so I had to make a named reference to "this" inside the Activity scope so it was the Activities scoped "this" instead of the anonymous inner class's.&lt;br /&gt;&lt;br /&gt;Here is the whole relevant code:&lt;br /&gt;&lt;br /&gt;&lt;pre style="width: 100%; overflow: scroll; white-space: pre-wrap; white-space: -moz-pre-wrap !important; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"&gt;&lt;br /&gt;package com.gleenn.android;&lt;br /&gt;import android.app.Activity;&lt;br /&gt;import android.app.AlertDialog;&lt;br /&gt;import android.os.Bundle;&lt;br /&gt;import android.view.View;&lt;br /&gt;import android.view.View.OnClickListener;&lt;br /&gt;import android.widget.Button;&lt;br /&gt;import android.widget.EditText;&lt;br /&gt;&lt;br /&gt;public class GlennsFirstApp extends Activity {&lt;br /&gt;    /** Called when the activity is first created. */&lt;br /&gt;    @Override&lt;br /&gt;    public void onCreate(Bundle savedInstanceState) {&lt;br /&gt;        super.onCreate(savedInstanceState);&lt;br /&gt;        setContentView(R.layout.main);&lt;br /&gt;        Button button = (Button)findViewById(R.id.Button01);&lt;br /&gt;        final GlennsFirstApp gfa = this;&lt;br /&gt;        button.setOnClickListener(new OnClickListener() {&lt;br /&gt;            public void onClick(View v) {&lt;br /&gt;                String twitterUsername = ((EditText)findViewById(R.id.EditText_twitter_username)).getText().toString();&lt;br /&gt;                String twitterPassword = ((EditText)findViewById(R.id.EditText_twitter_password)).getText().toString();&lt;br /&gt;                String statusMessage = ((EditText)findViewById(R.id.EditText_status_message)).getText().toString();&lt;br /&gt;                (new AlertDialog.Builder(gfa)).setTitle("Test")&lt;br /&gt;                    .setMessage(twitterUsername + " " + twitterPassword + " " + statusMessage)&lt;br /&gt;                    .create().show();&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-2057239292828620246?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/2057239292828620246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/2057239292828620246'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2009/06/google-android-is-pretty-super-easy.html' title='Google Android is pretty super easy'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3242838695038736069</id><published>2009-05-17T01:58:00.000-07:00</published><updated>2009-05-17T02:12:27.600-07:00</updated><title type='text'>I &lt;3 MGMT and Finding MWE's</title><content type='html'>&lt;object width="640" height="505"&gt;&lt;param name="movie" value="http://www.youtube-nocookie.com/v/eIobf__8V2w&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x3a3a3a&amp;amp;color2=0x999999"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube-nocookie.com/v/eIobf__8V2w&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x3a3a3a&amp;amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="512" height="404"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;I'm a horrible horrible sell-out and I love this friggin MGMT video. It is so hipsterish and popular, but damn its catchy and the student who made the video did a great, albeit strange, job. I'm also enjoying &lt;span style="font-style: italic;"&gt;Electric Feel&lt;/span&gt; by them too. Both the vids are definitely helping stay awake and focus on my Python program for my linguistics class.&lt;br /&gt;&lt;br /&gt;In my ling class we are writing a program to search for MWE's, or Multi Word Expressions like "kick the bucket" or "stay on track" etc. Turns out it is really hard to get a computer to find these, but ask anyone on the street for some expressions and they'll list a good boat-load out easily. All of it is really fun though, I just wish I had more time to use MapReduce to make my program be able to divide up the work of scanning the corpus of words much faster, as Google does. Maybe in my next lifetime, or at a job in my future... ;).&lt;br /&gt;&lt;br /&gt;Here is "Electric Feel" to continue the hipster trend:&lt;br /&gt;&lt;br /&gt;&lt;object width="640" height="505"&gt;&lt;param name="movie" value="http://www.youtube-nocookie.com/v/d8fSW4dfCzQ&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube-nocookie.com/v/d8fSW4dfCzQ&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="512" height="404"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3242838695038736069?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3242838695038736069'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3242838695038736069'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2009/05/i-3-mgmt-because-im-newb.html' title='I &lt;3 MGMT and Finding MWE&apos;s'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3724718265317587365</id><published>2009-04-03T13:26:00.000-07:00</published><updated>2009-04-03T13:30:52.169-07:00</updated><title type='text'>San Jose's Death Star Hall</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_tTO7Tm_oRYE/SdZxDcPtQFI/AAAAAAAAGg8/AABR0k5rYG8/s1600-h/death_star_hall.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 267px;" src="http://3.bp.blogspot.com/_tTO7Tm_oRYE/SdZxDcPtQFI/AAAAAAAAGg8/AABR0k5rYG8/s400/death_star_hall.jpg" alt="" id="BLOGGER_PHOTO_ID_5320564313720438866" border="0" /&gt;&lt;/a&gt;What? It was just too tempting with that ominous looking City Hall structure. Maybe we'll blow up Santa Clara now and thousands of rich SCU students and all the soon-to-be-unemployed Sun workers will be put out of their misery.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3724718265317587365?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3724718265317587365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3724718265317587365'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2009/04/san-joses-death-star-hall.html' title='San Jose&apos;s Death Star Hall'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_tTO7Tm_oRYE/SdZxDcPtQFI/AAAAAAAAGg8/AABR0k5rYG8/s72-c/death_star_hall.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-6737244884927975270</id><published>2009-03-17T18:30:00.000-07:00</published><updated>2009-03-17T18:32:26.865-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='river dance'/><category scheme='http://www.blogger.com/atom/ns#' term='St. Patrick&apos;s Day'/><title type='text'>Glenn the River Dancer</title><content type='html'>&lt;div style='background-color:#e9e9e9; width: 425px;'&gt;&lt;object id='A664556' quality='high' data='http://aka.zero.jibjab.com/client/zero/ClientZero_EmbedViewer.swf?external_make_id=GhNEaYbYrgDTFTbV&amp;service=sendables.jibjab.com&amp;partnerID=JibJab' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent' height='319' width='425'&gt;&lt;param name='wmode' value='transparent'&gt;&lt;/param&gt;&lt;param name='movie' value='http://aka.zero.jibjab.com/client/zero/ClientZero_EmbedViewer.swf?external_make_id=GhNEaYbYrgDTFTbV&amp;service=sendables.jibjab.com&amp;partnerID=JibJab'&gt;&lt;/param&gt;&lt;param name='scaleMode' value='showAll'&gt;&lt;/param&gt;&lt;param name='quality' value='high'&gt;&lt;/param&gt;&lt;param name='allowNetworking' value='all'&gt;&lt;/param&gt;&lt;param name='allowFullScreen' value='true' /&gt;&lt;param name='FlashVars' value='external_make_id=GhNEaYbYrgDTFTbV&amp;service=sendables.jibjab.com&amp;partnerID=JibJab'&gt;&lt;/param&gt;&lt;param name='allowScriptAccess' value='always'&gt;&lt;/param&gt;&lt;/object&gt;&lt;div style='text-align:center; width:435px; margin-top:6px;'&gt;Try JibJab Sendables&amp;reg; &lt;a href='http://sendables.jibjab.com/ecards'&gt;eCards&lt;/a&gt; today!&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-6737244884927975270?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6737244884927975270'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6737244884927975270'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2009/03/glenn-river-dancer.html' title='Glenn the River Dancer'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-6926911589287329498</id><published>2008-12-06T00:46:00.001-08:00</published><updated>2008-12-06T00:46:29.832-08:00</updated><title type='text'>Some useful stuff I've been learning</title><content type='html'>##  Hadoop Ubuntu Setup Configuration Commands  ##&lt;br /&gt;&lt;br /&gt;# make the computer not boot graphically&lt;br /&gt;sudo chmod -x /etc/rc2.d/S30gdm&lt;br /&gt;&lt;br /&gt;# the *BAD* way to forcefully remove scrollkeeper&lt;br /&gt;sudo dpkg --force-all --remove scrollkeeper --purge&lt;br /&gt;&lt;br /&gt;# less bad way to stop scrollkeeper&lt;br /&gt;sudo mv /usr/bin/scrollkeeper-update /usr/bin/scrollkeeper-update.real&lt;br /&gt;sudo ln -s /bin/true /usr/bin/scrollkeeper-update&lt;br /&gt;sudo find /var/lib/scrollkeeper/ -name \*.xml -type f -exec rm -f '{}' \;&lt;br /&gt;sudo dpkg-divert --local --divert /usr/bin/scrollkeeper-update.real --add /usr/bin/scrollkeeper-update&lt;br /&gt;&lt;br /&gt;# make sure autocomplete in bash works&lt;br /&gt;# uncomment lines in /etc/bash.bashrc that talks about enabling autocomplete...&lt;br /&gt;&lt;br /&gt;# install openssh-server&lt;br /&gt;sudo aptitude install openssh-server&lt;br /&gt;&lt;br /&gt;# Setup Apt-cache&lt;br /&gt;sudo aptitude install apt-cacher&lt;br /&gt;config file for startup (AUTOSTART is set to 1):&lt;br /&gt;/etc/default/apt-cacher&lt;br /&gt;= or =&lt;br /&gt;just start the apt-cacher service:&lt;br /&gt;&lt;br /&gt;config file for general&lt;br /&gt;/etc/apt-cacher/apt-cacher.conf&lt;br /&gt;edit location of cache_dir&lt;br /&gt;&lt;br /&gt;to config a client:&lt;br /&gt;create file /etc/apt/apt.conf and put this inside&lt;br /&gt;Acquire::http::Proxy "http://&lt;ip of cache&gt;:3142/apt-cacher/";&lt;br /&gt;&lt;br /&gt;# turbo ssh logins&lt;br /&gt;#copy the *client's* ssh key in .ssh/id_rsa.pub to all the hosts&lt;br /&gt;scp .ssh/id_rsa.pub some_host:&lt;br /&gt;ssh some_host&lt;br /&gt;cat id_rsa.pub &gt;&gt; .ssh/authorized_keys2&lt;br /&gt;&lt;br /&gt;# execute something on a bunch of hosts&lt;br /&gt;for n in `cat slaves | grep -v "#"`; do ssh $n "hostname;uptime" ; done&lt;br /&gt;&lt;br /&gt;or make a shell script out of it&lt;br /&gt;#!/usr/bin/env bash&lt;br /&gt;HADOOP_HOME="/home/glenn/hadoop"&lt;br /&gt;for s in `cat $HADOOP_HOME/conf/slaves`;&lt;br /&gt;do&lt;br /&gt;    echo $s;&lt;br /&gt;    ssh $s "$*";&lt;br /&gt;    echo;&lt;br /&gt;done&lt;br /&gt;OR&lt;br /&gt;for s in `cat $HADOOP_HOME/conf/slaves`;&lt;br /&gt;do&lt;br /&gt;    echo $s;&lt;br /&gt;    ($*); # executes all arguments together as one string&lt;br /&gt;    echo;&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;# make certain sudoers not need a password&lt;br /&gt;if you want sudo without prompt password,&lt;br /&gt;edit /etc/sudoers&lt;br /&gt;and add:&lt;br /&gt;&lt;username&gt; ALL=(ALL) NOPASSWD: ALL&lt;br /&gt;save and that's it.&lt;br /&gt;the username is the user you want to give doing sudo without password.&lt;br /&gt;&lt;br /&gt;glenn ALL=(ALL) NOPASSWD: ALL&lt;br /&gt;&lt;br /&gt;# fork bomb ;)&lt;br /&gt;:(){ :|:&amp; };:&lt;br /&gt;&lt;br /&gt;# check daemons are running&lt;br /&gt;glenn@rufus:~/hadoop$ jps&lt;br /&gt;14593 Jps&lt;br /&gt;14422 SecondaryNameNode&lt;br /&gt;14554 TaskTracker&lt;br /&gt;7867 JobTracker&lt;br /&gt;14332 DataNode&lt;br /&gt;&lt;br /&gt;# make it so SVN ignores stuff&lt;br /&gt;&lt;br /&gt;[TargetFolder]&gt;svn propset svn:ignore bin .&lt;br /&gt;or for multiple files/folders just quote and actually hit enter between entries&lt;br /&gt;[TargetFolder]&gt;svn propset svn:ignore "bin&lt;br /&gt;dist" .&lt;br /&gt;# make sure the folder or file is not already commited, aka delete it if it is already there,&lt;br /&gt;# and make sure you actually delete or move it before ignoring it&lt;br /&gt;&lt;br /&gt;# import some files/folders into an svn repo without checking it out first&lt;br /&gt;# make sure to note that the *contents* and not the actual folder will be put into .../dev/thesis&lt;br /&gt;svn import foldername svn+ssh://someurl/home/svn/repos/dev/thesis&lt;br /&gt;&lt;br /&gt;# allow X11 ssh forwarding&lt;br /&gt;# go to /etc/ssh/ssh_config and make sure "X11Forwarding yes" is in there on the client&lt;br /&gt;# go to /etc/ssh/sshd_config and make sure "X11...Forwarding yes" is in there on the server&lt;br /&gt;&lt;br /&gt;ssh -X glenn@rufus /usr/bin/xeyes&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-6926911589287329498?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6926911589287329498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6926911589287329498'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/12/some-useful-stuff-ive-been-learning.html' title='Some useful stuff I&apos;ve been learning'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-6043597585572560905</id><published>2008-08-31T03:42:00.000-07:00</published><updated>2008-08-31T03:52:31.615-07:00</updated><title type='text'>Tim and Dave Actually Both My Dads</title><content type='html'>So my two friends, Tim and Dave, decided it would be funny to pretend they were my father. Now, the problem with this little joke on Facebook is when I post an image of both of their "Friend Detail Requests" showing them both as my father. That would definitely not imply that they were both simultaneously my dad. Definitely not. I mean, it would be ok and this world has lots of room for people like them.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_tTO7Tm_oRYE/SLp23RR_a1I/AAAAAAAAETs/yW5RgYyk3-w/s1600-h/TimAndAlvesAccidentallyGay.jpg"&gt;&lt;img style="cursor: pointer;width:95%;" src="http://1.bp.blogspot.com/_tTO7Tm_oRYE/SLp23RR_a1I/AAAAAAAAETs/yW5RgYyk3-w/s1600/TimAndAlvesAccidentallyGay.jpg" alt="" id="BLOGGER_PHOTO_ID_5240631808302738258" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-6043597585572560905?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6043597585572560905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6043597585572560905'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/08/tim-and-dave-actually-both-my-dads.html' title='Tim and Dave Actually Both My Dads'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_tTO7Tm_oRYE/SLp23RR_a1I/AAAAAAAAETs/yW5RgYyk3-w/s72-c/TimAndAlvesAccidentallyGay.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3365409128401718858</id><published>2008-08-28T03:37:00.000-07:00</published><updated>2008-08-28T04:43:00.197-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Recursion'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><category scheme='http://www.blogger.com/atom/ns#' term='Terra Naomi'/><category scheme='http://www.blogger.com/atom/ns#' term='Reflection'/><title type='text'>Sublime Santeria Cover by Terra Naomi</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/UV2lC_ksAqU&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;embed src="http://www.youtube.com/v/UV2lC_ksAqU&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;I really like this cover. My girlfriend turned me on to it and its been keeping me company while I do some random programming. I'm working on a recursive reflection program for fun and a distinct lack of anything else. Here is the ridiculous code for anyone curious...&lt;br /&gt;&lt;br /&gt;&lt;pre style="width:95%; height: 50em; overflow:auto; font-size: 12px"&gt;&lt;br /&gt;import java.lang.reflect.Field;&lt;br /&gt;import java.util.HashSet;&lt;br /&gt;&lt;br /&gt;public class RecursiveReflection {&lt;br /&gt;&amp;nbsp;&amp;nbsp;public static void main(final String[] args)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;throws ClassNotFoundException {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(args.length != 1) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.println("Usage: java " +&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"RecursiveReflection &lt;accessible Java class&gt;");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.println("for example, " +&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"try java.lang.String (it must be fully qualified)");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} else {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;try {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;recurseClassFields(Class.forName(args[0]));&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;catch (ClassNotFoundException cnfe) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.println(cnfe);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;/* Something I just threw in ;) */&lt;br /&gt;&amp;nbsp;&amp;nbsp;@SuppressWarnings(value="unused")&lt;br /&gt;&amp;nbsp;&amp;nbsp;public static void recurseSuperclass(Class klass)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;throws ClassNotFoundException {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(klass == null) return;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.println(klass.getName());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;recurseSuperclass(klass.getSuperclass());&lt;br /&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;public static void recurseClassFields(Class klass)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;throws ClassNotFoundException {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;recurseClassFields(klass, "", new HashSet&lt;String&gt;());&lt;br /&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;private static void recurseClassFields(Class klass, String indent,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;HashSet&lt;String&gt; existingClasses)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;throws ClassNotFoundException {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(existingClasses.contains(klass.getName())) return;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;else existingClasses.add(klass.getName());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.print(indent + klass.getSimpleName());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Field[] fields = klass.getDeclaredFields();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.print(" : " + fields.length +&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" members, ");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.print(" : " + klass.getMethods().length +&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" methods ");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.println();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(Field field : fields) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Class fieldClass = field.getType();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(fieldClass.isPrimitive()) continue;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;recurseClassFields(fieldClass, indent + "  ",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;existingClasses);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3365409128401718858?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3365409128401718858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3365409128401718858'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/08/sublime-santeria-cover-by-terra-naomi.html' title='Sublime Santeria Cover by Terra Naomi'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-6570074652703433761</id><published>2008-05-04T01:30:00.000-07:00</published><updated>2008-05-04T03:57:56.904-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='police misconduct'/><category scheme='http://www.blogger.com/atom/ns#' term='civil rights'/><category scheme='http://www.blogger.com/atom/ns#' term='Cinco de Mayo'/><title type='text'>City and Police Misconduct</title><content type='html'>As many of San Jose's residents know, Cinco de Mayo (5th of May) is a time of great celebration. As alcohol tends to be consumed in large quantities during such occasions, the city of San Jose went to great measures this year to prevent drunk driving and other bad behavior. They did this with check points throughout the downtown area. Police blocked nearly every other street near my neighborhood in order to focus drivers down certain streets and I presume make it difficult for drivers to escape these check points.&lt;br /&gt;&lt;br /&gt;As I drove home Friday night with my girlfriend, I dropped her off at her car in the Fourth Street Garage. Normally, I would exit the garage onto Fourth Street, and make a very quick right onto San Salvador, loop around, and be home within 1 to 2 minutes. Not this Friday though.&lt;br /&gt;&lt;br /&gt;Upon exiting this during this hectic time, I met with every single street being rigorously blocked by multiple police cars, lights blazing, and orange street cones. As many other streets were blocked, a flood of cars were pouring down Fourth Street's multiple lanes making it very difficult to change lanes, park, or do anything ad hoc. I continued driving thinking at some point they will *have* to let me turn, the won't make me enter the freeway, that would be ridiculous as I literally only have to turn around 2 blocks to get home...&lt;br /&gt;&lt;br /&gt;Let's just say I was very happy no one was in the car to hear my screaming.&lt;br /&gt;&lt;br /&gt;Now as I entered I-280N, I though "Alright, I'll just take Highway 87 North to Julian, then home, no big deal." Nope. Not tonight. Highway 87 North was blocked for "construction" which I presume was also just a way to further funnel the people to controlled streets. At this point though, I have little experience or knowledge of 87 South, but there was no looking back. I proceeded up a while, made an illegal U-turn or 2 I'm sure, and wound up barely finding my way back to San Fernando. There I though I could pass Fourth Street and make my way down to Market, but without fail, all traffic was being directed to make a left onto Fourth, which would make an excellent repeat to my past 35 minute round trip through foreign territory.&lt;br /&gt;&lt;br /&gt;After hitting a stop light, I pulled over behind a police car and attempted to wipe off my frustration before I attempted talking to the officer. I must say this officer deserves credit for being humane, civil, and understanding; quite contrary to how the next day's officer would behave. He told me to simply continue down Fourth Street, then stop and tell the closest police officer to let me through. At least I should see an end to this now.&lt;br /&gt;&lt;br /&gt;After following his instructions, I again pulled over near the closest blocked street that would get me home and beckoned an officer. At this point, I asked the officer to please let me through. He responded by requiring some form of identification that would establish my residence. To make things worse, my driver's license has my permanent address on it, not my current address.&lt;br /&gt;&lt;br /&gt;I think this was thoroughly ridiculous as the city never contacted me about the oncoming trouble that all residents around me were about to have with getting home. Did they really think that sending people on lengthy drives and being forced onto freeways is acceptable? And to assume that we must prove residence to be able to get home is also totally outrageous. What if my mother was trying to visit me? Is she somehow suppose to prove that her son lives here?&lt;br /&gt;&lt;br /&gt;The City of San Jose was very irresponsible for allowing such activities to take place, especially &lt;br /&gt;&lt;br /&gt;At least I made it home that night.&lt;br /&gt;&lt;br /&gt;===========&lt;br /&gt;&lt;br /&gt;This part of the story is the thing that really makes my blood boil. I can feel my hair standing on end even as I type it.&lt;br /&gt;&lt;br /&gt;So tonight, I was driving home and ended up in a similar predicament: many exits and streets were blocked off making it very difficult to get home. After passing 3 exits, I ended up stopped on Taylor Street. A long train of cars waited on this exit. From my lesson from the previous night, I learned you must ask if you are to return home. Following this lesson, I pulled through some orange markers, again, up behind a police car, but was greeted with polar opposite response.&lt;br /&gt;&lt;br /&gt;An officer briskly walked up to me and I began asking how to return home. He very harshly asked where I lived, and I responded. He told me very rough directions to which I asked he repeat, especially since I again have little experience with the area I ended up in. He looked noticeable annoyed and somehow this ended up at a point where I asked as to why the streets were in the condition they were in. Big No-No.&lt;br /&gt;&lt;br /&gt;With this officer, ya know, the ones who are suppose to serve and protect (they have it all over their cars anyway), I was told something very close to this:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"Never ask a policeman why, I told you your directions, and you just get back in your car and go. Do you want me to write you a $300 ticket? You are in my comb (??) and I can certainly do that for you. Never ask why. NEVER."&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;I really have to un-wrench my teeth as I continue here.&lt;br /&gt;&lt;br /&gt;This police officer crossed what I believe are my civil rights in so many critical ways that I am appalled he has a job. I was just a guy asking a simple, earnest question while very distressed and just trying to get home. This question caused me to be very disrespected by that officer, unduly threatened with questionable fines, and sternly slapped with the statement that we should never question authority. Ever.&lt;br /&gt;&lt;br /&gt;It does not take a history book to remember that authority must always be questioned. Countless events in our nation's history, as well as others', demanded that people rise up and challenge the supposed authority. The irony is this weekend's celebration which lead to these events was celebrating Mexico's victory against Spain's control in the New World. The United States' fore-fathers would definitely have agreed that challenging authority and asking "Why?" is fundamental to a free and democratic society.&lt;br /&gt;&lt;br /&gt;Having an officer of the law expect complacency in such an extreme and fear-inducing manner threatens everyones' liberty, including himself. I only wish he does not harm more free people by scaring them into the believe that government, or any authority, must have a large degree of transparency and accountability to the people they serve. The government should fear the people, not the other way around.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you have *any* comments or related stories, *please* email me with them at gleenn at gmail dot com.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here are various related quotes.&lt;br /&gt;&lt;br /&gt;There is danger from all men. The only maxim of a free government ought to be to trust no man living with power to endanger the public liberty.&lt;br /&gt;    John Adams (1735 - 1826), Journal, 1772&lt;br /&gt;&lt;br /&gt;The spirit of resistance to government is so valuable on certain occasions, that I wish it always to be kept alive.&lt;br /&gt;    Thomas Jefferson (1743 - 1826)&lt;br /&gt;&lt;br /&gt;I have sworn upon the altar of God, eternal hostility against every form of tyranny over the mind of man.&lt;br /&gt;    Thomas Jefferson (1743 - 1826)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-6570074652703433761?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/6570074652703433761/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=6570074652703433761' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6570074652703433761'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6570074652703433761'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/05/city-and-police-misconduct.html' title='City and Police Misconduct'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-5431896005671042607</id><published>2008-04-06T05:36:00.000-07:00</published><updated>2008-04-06T05:37:18.127-07:00</updated><title type='text'>YAGHQ (Yet Another Google Homepage Quote)</title><content type='html'>The road to hell is paved with adverbs.&lt;br /&gt;  - Stephen King&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-5431896005671042607?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/5431896005671042607/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=5431896005671042607' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5431896005671042607'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5431896005671042607'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/04/yaghq-yet-another-google-homepage-quote.html' title='YAGHQ (Yet Another Google Homepage Quote)'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-9016128718563020487</id><published>2008-03-04T04:19:00.000-08:00</published><updated>2008-03-04T04:57:44.546-08:00</updated><title type='text'>Ruby to the FTP Rescue</title><content type='html'>If there is any protocol I loath more, it is the horrible FTP. I've *never* found a good client that can deal with large and/or many file uploads. I've tried GUI clients, command-line clients, clients on Linux, and clients on Windows and every single one of them was just about enough to make me scream trying to transfer a large number of pictures to my web server.&lt;br /&gt;&lt;br /&gt;Between cutoff transmissions, light-weight GUIs, flat-out-lieing interfaces, and other random errors, most of the clients I tried could not even resume an upload to save their life. As FTP was designed back at the dawn of computing, it just was not designed to do as large transfers as I need, and most of the clients available today are just not capable of handling a few thousand megabyte-sized images. Pretty sad.&lt;br /&gt;&lt;br /&gt;Then along came a lightbulb in Glenn's head: use Ruby's builtin FTP functionality. After about an half hour of messing with it, I wrote a program that could upload a file to my server. Then, Ruby's welcoming API made it almost trivial to check to see if a file the program was trying to upload was already on the server. Piece of cake. Then I realized that there was a problem if a file was partially-transferred as is the case when a connection drops. If I retried using my program, it would continue to the next image, leaving a half-uploaded image in its wake. Well, with a little more reading, I found that you could trivially turn on file-resume support. Could it get better? Nope.&lt;br /&gt;&lt;br /&gt;Check out my code and feel free to steal it for your own devious purposes:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;#!/usr/bin/env&amp;nbsp;ruby&lt;br /&gt;&lt;br /&gt;require&amp;nbsp;'net/ftp'&lt;br /&gt;&lt;br /&gt;hostname&amp;nbsp;=&amp;nbsp;'ftp.hostname.com'&lt;br /&gt;username&amp;nbsp;=&amp;nbsp;'glenn'&lt;br /&gt;password&amp;nbsp;=&amp;nbsp;'topsecret'&lt;br /&gt;&lt;br /&gt;#&amp;nbsp;your&amp;nbsp;filesystem&amp;nbsp;source&amp;nbsp;directory,&amp;nbsp;whichmust&amp;nbsp;end&amp;nbsp;with&amp;nbsp;slash&lt;br /&gt;sourcedir&amp;nbsp;=&amp;nbsp;'/home/glenn/camera/canon/'&lt;br /&gt;#&amp;nbsp;destination&amp;nbsp;directory&amp;nbsp;on&amp;nbsp;ftp&amp;nbsp;server&lt;br /&gt;destdir&amp;nbsp;=&amp;nbsp;'/canon'&lt;br /&gt;&lt;br /&gt;Net::FTP.open(hostname)&amp;nbsp;do&amp;nbsp;|ftp|&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ftp.login(user=username,password=password)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ftp.passive&amp;nbsp;=&amp;nbsp;true&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ftp.resume&amp;nbsp;=&amp;nbsp;true&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ftp.chdir(destdir)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;filelist&amp;nbsp;=&amp;nbsp;ftp.nlst&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Dir::open(sourcedir)&amp;nbsp;do&amp;nbsp;|dir|&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dir.each&amp;nbsp;do&amp;nbsp;|file|&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fullpath&amp;nbsp;=&amp;nbsp;sourcedir&amp;nbsp;+&amp;nbsp;file&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;FileTest::file?(fullpath)&amp;nbsp;#and&amp;nbsp;!filelist.member?(file)&amp;nbsp;then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;print&amp;nbsp;"Transfering&amp;nbsp;"&amp;nbsp;+&amp;nbsp;file&amp;nbsp;+&amp;nbsp;"\n"&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ftp.putbinaryfile(fullpath)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;end&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://eatkittens.com/ftp_uploader.html"&gt;A syntax-highlighted version&lt;/a&gt; (Blogspot is giving me all kinds of trouble trying to paste this in.&lt;br /&gt;&lt;a href="http://eatkittens.com/ftp_uploader.rb"&gt;The actual Ruby file&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-9016128718563020487?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/9016128718563020487/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=9016128718563020487' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/9016128718563020487'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/9016128718563020487'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/03/ruby-to-ftp-rescue.html' title='Ruby to the FTP Rescue'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-252804596765506983</id><published>2008-03-01T17:01:00.000-08:00</published><updated>2008-03-01T17:02:17.610-08:00</updated><title type='text'>Good Ol' Nietzsche</title><content type='html'>The man of knowledge must be able not only to love his enemies but also to hate his friends.&lt;br /&gt;  - Friedrich Nietzsche&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-252804596765506983?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/252804596765506983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=252804596765506983' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/252804596765506983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/252804596765506983'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/03/good-ol-nietzsche.html' title='Good Ol&apos; Nietzsche'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-1391943607128573191</id><published>2008-02-16T22:50:00.000-08:00</published><updated>2008-02-16T23:06:39.132-08:00</updated><title type='text'>More Stolen Atheism Quotes from my Google Homepage</title><content type='html'>Ask a deeply religious Christian if he’d rather live next to a bearded Muslim that may or may not be plotting a terror attack, or an atheist that may or may not show him how to set up a wireless network in his house. On the scale of prejudice, atheists don’t seem so bad lately.&lt;br /&gt;  - Scott Adams&lt;br /&gt;&lt;br /&gt;I totally lol'd at the "setup a wireless network". At first you really picture some crazy-eyed terrorist figure. Then you picture him next to some nerdy looking figure in a plaid shirt, wireless router and spare ethernet cable in hand.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-1391943607128573191?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/1391943607128573191/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=1391943607128573191' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/1391943607128573191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/1391943607128573191'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/02/more-stolen-atheism-quotes-from-my.html' title='More Stolen Atheism Quotes from my Google Homepage'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-175487417089097634</id><published>2008-02-12T22:02:00.000-08:00</published><updated>2008-02-12T22:03:45.744-08:00</updated><title type='text'>Wadsyaname</title><content type='html'>Is it so wrong that I want to be a gangsta? If anyone knows how to black-out teeth, let me know.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Ho_qMFuHBCQ&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Ho_qMFuHBCQ&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-175487417089097634?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/175487417089097634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=175487417089097634' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/175487417089097634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/175487417089097634'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/02/wadsyaname.html' title='Wadsyaname'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3486542764228780014</id><published>2008-02-07T12:19:00.000-08:00</published><updated>2008-02-07T12:20:06.030-08:00</updated><title type='text'>Horstmann's Quote of the Day</title><content type='html'>Using ODBC is about as easy as eating soup with a fork.&lt;br /&gt;&lt;br /&gt;--Professor Horstmann&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3486542764228780014?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/3486542764228780014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=3486542764228780014' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3486542764228780014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3486542764228780014'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/02/horstmanns-quote-of-day.html' title='Horstmann&apos;s Quote of the Day'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-2789973093428056406</id><published>2008-02-06T23:59:00.000-08:00</published><updated>2008-02-07T00:02:58.063-08:00</updated><title type='text'>Snowflakes</title><content type='html'>I know its getting a little late in the season, but who could resist making a paper snowflake? Seriously, is there any better waste of time instead of doing homework? Didn't think so...&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.snowflakes.info/"&gt;&lt;br /&gt;&lt;img src="http://bp0.blogger.com/_tTO7Tm_oRYE/R6q62H4cXjI/AAAAAAAAAXk/QwgzHj44Wms/s400/step1.gif" alt="snowflake making step one" id="BLOGGER_PHOTO_ID_5164145361725185586" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.snowflakes.info/"&gt;http://www.snowflakes.info/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-2789973093428056406?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/2789973093428056406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=2789973093428056406' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/2789973093428056406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/2789973093428056406'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/02/snowflakes.html' title='Snowflakes'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_tTO7Tm_oRYE/R6q62H4cXjI/AAAAAAAAAXk/QwgzHj44Wms/s72-c/step1.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-828529266825598335</id><published>2008-02-03T18:46:00.000-08:00</published><updated>2008-02-03T19:01:05.298-08:00</updated><title type='text'>My New Hero from Portal</title><content type='html'>There's no sense crying over every mistake. You just keep on trying 'till you run out of cake.&lt;br /&gt;&lt;br /&gt;-GLaDOS&lt;br /&gt;&lt;br /&gt;&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Y6ljFaKRTrI&amp;amp;rel=1"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/Y6ljFaKRTrI&amp;amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.planetfortress.com/dfa/portal-recipe.html"&gt;Hidden Cake Recipe&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.myspace.com/gladosaperturescience"&gt;GLaDOS's MySpace page&lt;/a&gt;&lt;br /&gt;&lt;a href="http://half-life.wikia.com/wiki/GLaDOS"&gt;http://half-life.wikia.com/wiki/GLaDOS&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-828529266825598335?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/828529266825598335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=828529266825598335' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/828529266825598335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/828529266825598335'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/02/my-new-hero-from-portal.html' title='My New Hero from Portal'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-7897635401020653960</id><published>2008-02-03T16:50:00.000-08:00</published><updated>2008-02-03T16:56:00.904-08:00</updated><title type='text'>Some Atheist Propaganda</title><content type='html'>I've never came to any strong conclusion as to the existence of a God. As for my beliefs on organized religion, that's another story. Here are some pretty pointed quotes from some influential people:&lt;br /&gt;&lt;br /&gt;"It appears to me (whether rightly or wrongly) that direct arguments against christianity and theism produce hardly any effect on the public; and freedom of thought is best promoted by the gradual illumination of men's minds which follows from the advance of science." [Darwin] &lt;p&gt;"If we believe absurdities, we shall commit atrocities." [Voltaire] &lt;/p&gt;&lt;p&gt;"I cannot imagine a God who rewards and punishes the objects of his creation, whose purposes are modeled after our own -- a God, in short, who is but a reflection of human frailty. Neither can I believe that the individual survives the death of his body, although feeble souls harbor such thoughts through fear or ridiculous egotism." [Einstein] &lt;/p&gt;&lt;p&gt; "Faith means not wanting to know what is true." [Nietzsche] &lt;/p&gt;&lt;p&gt; "I cannot believe in the immortality of the soul.... No, all this talk of an existence for us, as individuals, beyond the grave is wrong. It is born of our tenacity of life – our desire to go on living … our dread of coming to an end." [Edison] &lt;/p&gt;&lt;p&gt;"The Bible is not my book nor Christianity my profession. I could never give assent to the long, complicated statements of Christian dogma." [Lincoln] &lt;/p&gt;&lt;p&gt;"Religion is a byproduct of fear. For much of human history, it may have been a necessary evil, but why was it more evil than necessary? Isn't killing people in the name of God a pretty good definition of insanity?" [Arthur C. Clarke] &lt;/p&gt;&lt;p&gt; "Religions are all alike – founded upon fables and mythologies." [Thomas Jefferson] &lt;/p&gt;&lt;p&gt;"Say what you will about the sweet miracle of unquestioning faith, I consider a capacity for it terrifying and absolutely vile." [Kurt Vonnegut] &lt;/p&gt;&lt;p&gt;"Religion is based . . . mainly on fear . . . fear of the mysterious, fear of defeat, fear of death. Fear is the parent of cruelty, and therefore it is no wonder if cruelty and religion have gone hand in hand. . . . My own view on religion is that of Lucretius. I regard it as a disease born of fear and as a source of untold misery to the human race." [Bertrand Russell] &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-7897635401020653960?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/7897635401020653960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=7897635401020653960' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7897635401020653960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7897635401020653960'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/02/some-atheist-propaganda.html' title='Some Atheist Propaganda'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-9182049188942737706</id><published>2008-01-29T15:52:00.001-08:00</published><updated>2008-01-29T15:55:24.387-08:00</updated><title type='text'>My Schedule [for real this time]</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_tTO7Tm_oRYE/R5-8cX4cXiI/AAAAAAAAAXE/OuXEKVUmNAk/s1600-h/schedule_spring_2008.png"&gt;&lt;img style="cursor: pointer;" src="http://bp2.blogger.com/_tTO7Tm_oRYE/R5-8cX4cXiI/AAAAAAAAAXE/OuXEKVUmNAk/s400/schedule_spring_2008.png" alt="" id="BLOGGER_PHOTO_ID_5161050893622992418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is my revised schedule. Turns out I am probably going to take Professor Horstmann's CS252 class on Advanced Programming Languages. I went for the first time today (I missed the first day) and it was pretty interesting. Should be fun learning more about Lambda Calculus and other advanced topics like continuations and about languages like Groovy, Scheme, and Scala (I'm already a big fan of Ruby).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-9182049188942737706?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/9182049188942737706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=9182049188942737706' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/9182049188942737706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/9182049188942737706'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/01/my-schedule-for-real-this-time.html' title='My Schedule [for real this time]'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_tTO7Tm_oRYE/R5-8cX4cXiI/AAAAAAAAAXE/OuXEKVUmNAk/s72-c/schedule_spring_2008.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-5926383433293668398</id><published>2008-01-17T13:23:00.000-08:00</published><updated>2008-01-17T13:33:25.802-08:00</updated><title type='text'>My Schedule for Spring</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_tTO7Tm_oRYE/R4_I34yXGWI/AAAAAAAAAW8/9R7FbVLA_O8/s1600-h/schedule_spring2008.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_tTO7Tm_oRYE/R4_I34yXGWI/AAAAAAAAAW8/9R7FbVLA_O8/s400/schedule_spring2008.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5156560960824482146" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-5926383433293668398?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/5926383433293668398/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=5926383433293668398' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5926383433293668398'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5926383433293668398'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/01/my-schedule-for-spring.html' title='My Schedule for Spring'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_tTO7Tm_oRYE/R4_I34yXGWI/AAAAAAAAAW8/9R7FbVLA_O8/s72-c/schedule_spring2008.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-7840465756115428283</id><published>2008-01-09T04:02:00.000-08:00</published><updated>2008-01-09T04:04:34.945-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='comics'/><category scheme='http://www.blogger.com/atom/ns#' term='video games'/><category scheme='http://www.blogger.com/atom/ns#' term='XKCD'/><title type='text'>Oh Modern Video Games...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://imgs.xkcd.com/comics/rock_band.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 449px;" src="http://imgs.xkcd.com/comics/rock_band.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-7840465756115428283?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/7840465756115428283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=7840465756115428283' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7840465756115428283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7840465756115428283'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/01/oh-modern-video-games.html' title='Oh Modern Video Games...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-564585118565181283</id><published>2008-01-07T21:40:00.000-08:00</published><updated>2008-01-07T21:42:12.263-08:00</updated><title type='text'>Java Disclaimer: Java Cannot Operate Weapons or Aircraft</title><content type='html'>My friend Tim found this while installing Java on his computer.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13.     NOTE ON JAVA SUPPORT. THE SOFTWARE MAY CONTAIN SUPPORT FOR&lt;br /&gt;PROGRAMS WRITTEN IN JAVA. JAVA TECHNOLOGY IS NOT FAULT TOLERANT AND IS&lt;br /&gt;NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE OR RESALE AS ONLINE&lt;br /&gt;CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE&lt;br /&gt;PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT&lt;br /&gt;NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE&lt;br /&gt;SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF JAVA&lt;br /&gt;TECHNOLOGY COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE&lt;br /&gt;PHYSICAL OR ENVIRONMENTAL DAMAGE. Sun Microsystems, Inc. has&lt;br /&gt;contractually obligated Microsoft to make this disclaimer.&lt;br /&gt;&lt;br /&gt;I guess Sun doesn't want to be liable when Java starts garbage collecting on a missile guidance system at a bad moment ;).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-564585118565181283?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/564585118565181283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=564585118565181283' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/564585118565181283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/564585118565181283'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2008/01/java-disclaimer-java-cannot-operate.html' title='Java Disclaimer: Java Cannot Operate Weapons or Aircraft'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4902154840763174771</id><published>2007-12-27T15:40:00.001-08:00</published><updated>2007-12-27T15:41:38.741-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rave'/><category scheme='http://www.blogger.com/atom/ns#' term='French'/><category scheme='http://www.blogger.com/atom/ns#' term='dance'/><title type='text'>Oh Silly French Ravers</title><content type='html'>&lt;object width="425" height="373"&gt;&lt;param name="movie" value="http://www.youtube.com/v/rUWD0f5Gu5g&amp;rel=1&amp;border=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/rUWD0f5Gu5g&amp;rel=1&amp;border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;I found this on this page with a bunch of other &lt;a href="http://www.presse-ocean.com/Le-portrait-d-une-etudiante-nantaise...-a-la-mode-Star-Academy-/re/pioche_sur_le_web/actu_12339-483501-----_actu.html"&gt;intriguing French videos&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4902154840763174771?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4902154840763174771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4902154840763174771' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4902154840763174771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4902154840763174771'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/12/oh-silly-french-ravers.html' title='Oh Silly French Ravers'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-1537713046717873740</id><published>2007-12-13T04:16:00.000-08:00</published><updated>2007-12-13T04:17:37.607-08:00</updated><title type='text'>Oh sex education</title><content type='html'>&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/WasAmcwdMtc&amp;amp;rel=1&amp;amp;border=0"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/WasAmcwdMtc&amp;amp;rel=1&amp;amp;border=0" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Good times. I stole this from &lt;a href="http://jwz.livejournal.com/"&gt;JWZ's livejournal account&lt;/a&gt;. He's my hero.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-1537713046717873740?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/1537713046717873740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=1537713046717873740' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/1537713046717873740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/1537713046717873740'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/12/oh-sex-education.html' title='Oh sex education'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-8351151780211799042</id><published>2007-12-10T00:23:00.000-08:00</published><updated>2007-12-10T00:24:56.635-08:00</updated><title type='text'>Theocratic conversations over AIM...</title><content type='html'>Glenn: there is a good and bad to everything, right?&lt;br /&gt;Yen: god is all good.&lt;br /&gt;Glenn: then why does he let us suffer?&lt;br /&gt;Yen: cuz he forgot...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-8351151780211799042?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/8351151780211799042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=8351151780211799042' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/8351151780211799042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/8351151780211799042'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/12/theocratic-conversations-over-aim.html' title='Theocratic conversations over AIM...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-5267366260244035558</id><published>2007-12-01T03:23:00.000-08:00</published><updated>2007-12-01T04:08:17.577-08:00</updated><title type='text'>Getting JOGL to work on Linux (the really abbreviated version)</title><content type='html'>&lt;p class="style5"&gt;&lt;span class="style8"&gt;“’If you please--draw me a  sheep . . .’&lt;br /&gt;When a mystery is too overpowering, one dare not disobey. Absurd as it might seem to me, a thousand miles from any human habitation and in danger of death, I took out of my pocket a sheet of paper and my fountain-pen. But then I remembered how my studies had been concentrated on geography, history, arithmetic and grammar, and I told the little chap (a little crossly, too) that I did not know how to draw. He answered me:&lt;br /&gt;                    ‘That doesn't matter. Draw  me a sheep . . .’”&lt;/span&gt;&lt;/p&gt;                 &lt;p class="style9"&gt;-Le Petit Prince&lt;br /&gt;&lt;/p&gt;&lt;h3&gt;&lt;u&gt;Setup JOGL&lt;/u&gt;&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;Download the JOGL zip file for &lt;a href="http://download.java.net/media/jogl/builds/archive/jsr-231-1.1.0/jogl-1.1.0-linux-i586.zip"&gt;Linux&lt;/a&gt;.&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Next, make a folder named "jogl" in your home directory.&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Uncompress the zip file into this directory. It should look like this now:&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;    glenn@rufus:~$ ls jogl/&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    gluegen-rt.jar&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    libgluegen-rt.so&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    libjogl_cg.so&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    jogl.jar&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    libjogl_awt.so&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    libjogl.so&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Now add these lines to your ".bashrc" file OR append the paths to existing lines that contain the same variable names (so if you already had a line with CLASSPATH, then append ":~jogl").&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    export CLASSPATH=.:~/jogl/jogl.jar:~/jogl/gluegen-rt.jar&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;font-size:85%;"  &gt;    export LD_LIBRARY_PATH=~/jogl&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt; Working example coming soon (hopefully!)...&lt;!--&lt;h3&gt;&lt;u&gt;Now to test it!&lt;/u&gt;&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;Copy this into a new file named "".&lt;/li&gt;&lt;li&gt;run&lt;br /&gt;javac&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;--&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-5267366260244035558?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/5267366260244035558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=5267366260244035558' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5267366260244035558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5267366260244035558'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/12/getting-jogl-to-work-on-linux-really.html' title='Getting JOGL to work on Linux (the really abbreviated version)'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4398206152484971784</id><published>2007-11-28T01:53:00.000-08:00</published><updated>2007-11-28T01:54:24.229-08:00</updated><title type='text'>What can I say, it's just really cute....</title><content type='html'>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/jYuX1rFOMvM&amp;rel=1&amp;border=0"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/jYuX1rFOMvM&amp;rel=1&amp;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4398206152484971784?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4398206152484971784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4398206152484971784' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4398206152484971784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4398206152484971784'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/what-can-i-say-its-just-really-cute.html' title='What can I say, it&apos;s just really cute....'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-6981049550031463803</id><published>2007-11-26T16:30:00.000-08:00</published><updated>2007-11-26T16:34:45.009-08:00</updated><title type='text'>I'm such a newb for Travis Barker's Remix of "Crank That"</title><content type='html'>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/RKQgDY0pZ68&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/RKQgDY0pZ68&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;He just gets so into it that it makes me want to be a drummer.&lt;br /&gt;&lt;br /&gt;On a related note, I finally got my new &lt;a href="http://www.turtlebeach.com/"&gt;Turtle Beach&lt;/a&gt; Montego DDL sound card to work with multiple programs simultaneously after some tinkering and a &lt;a href="http://ubuntuforums.org/showthread.php?t=205449&amp;highlight=setup+sound+card"&gt;helpful Ubuntu Forum post&lt;/a&gt;. Took some effort I'm sad to say, but I'm very pleased with the companies open support for Linux. ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-6981049550031463803?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/6981049550031463803/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=6981049550031463803' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6981049550031463803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/6981049550031463803'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/im-such-newb-for-travis-barkers-remix.html' title='I&apos;m such a newb for Travis Barker&apos;s Remix of &quot;Crank That&quot;'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3104763528336719936</id><published>2007-11-26T12:33:00.000-08:00</published><updated>2007-11-26T12:36:33.742-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sound card'/><category scheme='http://www.blogger.com/atom/ns#' term='Turtle Beach'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Linux Sound Card Woes (Buy Turtle Beach and not Creative!)</title><content type='html'>Creative sound card boxes are just about the worst advertising ever and have the least useful information on them possible.&lt;br /&gt;&lt;br /&gt;Being a loyal Creative customer, I needed a sound card and was browsing through all their sound cards. However all of the boxes did not mention Linux support at all. Not uncommon, yet still incredibly annoying because some cards are known to work very well in Linux, and some, like the X-FI are known not to (at least Creative *should* know this and therefore should put it on the box). Luckily I did my own research, and it took quite a bit, to realize that I would not be taking home an X-FI card because of non-existant support for my sole operating system, Linux.&lt;br /&gt;&lt;br /&gt;So I realize now I cannot get an X-FI card. This limited my options quite a bit. So now I start browsing around the Creative cards for things non-X-FI. The only real alternative that I found was the Audigy SE for about 30 bucks. After reading the box though, the only information you can ever really glean from it is that it is 24-bit this and 96kHz that, but these modes are only in certain circumstances, etc. It NEVER mentions what makes it a SE compared to a non-SE version of the Audigy. Sometimes, the only way to see what is *missing* from a card, is to look at another more expensive card and see what it *has* and check to see if that feature is also listed on the SE version. Their psuedo-informative graphs are totally annoying as well, as they convey absolutely nothing scientific or of real-world value.&lt;br /&gt;&lt;br /&gt;So basically, it is very difficult to even compare cards from the same manufacturer, let alone with other manufacturers.&lt;br /&gt;&lt;br /&gt;So I finally go with an Audigy SE as it is relatively inexpensive and it says wonderful things with big numbers and all in bright, happy colors.&lt;br /&gt;&lt;br /&gt;Much to my dismay, this card works in Linux, but the critical fact that it does NOT have a hardware mixer means that one, and only one, program may use the sound card at a time. This means that if I am listening to music, and *any* other program needs to make a sound, for instance an chat messenger or an online video, cannot. You must stop the music from playing, and sometimes even close the program, before you can use the other program. Obviously this is totally useless for things like alert sounds.&lt;br /&gt;&lt;br /&gt;I would have been alright with having this hardware-limited card at a cheap price if I somehow could have known *in advance of my purchase* what I was getting myself into. So again, NO WHERE is it mentioned this fairly critical fact that SE means "cheap version" which means no hardware mixer and no multiple-program sound, at least under Linux.&lt;br /&gt;&lt;br /&gt;This makes me pretty angry. Creative, and other card manufacturers need to step away from all the marketing hype and put *informative* and *easily comparable* data on their boxes so the consumer can make educated choices and not be forced to return products that don't suit their needs.&lt;br /&gt;&lt;br /&gt;So I just bought a &lt;a href="http://www.turtlebeach.com/products/mtgoddl/home.aspx"&gt;Turtle Beach Montego DDL&lt;/a&gt; and am enjoying it immensly! I particularly liked the fact that they explicitly mention Linux support on their website, and even specifically Ubuntu, my Linux distribution of choice.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3104763528336719936?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/3104763528336719936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=3104763528336719936' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3104763528336719936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3104763528336719936'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/linux-sound-card-woes-buy-turtle-beach.html' title='Linux Sound Card Woes (Buy Turtle Beach and not Creative!)'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-5984765648721558399</id><published>2007-11-25T22:15:00.000-08:00</published><updated>2007-11-25T22:17:08.244-08:00</updated><title type='text'>Yen took my picture a lot and slapped 'em together</title><content type='html'>Makes it pretty easy to create freakish stop-animation shows. Enjoy.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="350"&gt; &lt;param name="movie" value="http://www.youtube.com/v/13uaXVDDX14"&gt; &lt;/param&gt; &lt;embed src="http://www.youtube.com/v/13uaXVDDX14" type="application/x-shockwave-flash" width="425" height="350"&gt; &lt;/embed&gt; &lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-5984765648721558399?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/5984765648721558399/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=5984765648721558399' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5984765648721558399'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5984765648721558399'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/yen-took-my-picture-lot-and-slapped-em.html' title='Yen took my picture a lot and slapped &apos;em together'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4832521628379743677</id><published>2007-11-14T00:06:00.001-08:00</published><updated>2007-11-14T00:10:30.942-08:00</updated><title type='text'>Jeff's Mom?</title><content type='html'>&lt;object height="350" width="425"&gt; &lt;param name="movie" value="http://www.youtube.com/v/7m1yNvqAMJY"&gt;  &lt;embed src="http://www.youtube.com/v/7m1yNvqAMJY" type="application/x-shockwave-flash" height="350" width="425"&gt;&lt;/embed&gt;  &lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="350"&gt; &lt;param name="movie" value="http://www.youtube.com/v/uvcSG7iSdS0"&gt; &lt;/param&gt; &lt;embed src="http://www.youtube.com/v/uvcSG7iSdS0" type="application/x-shockwave-flash" width="425" height="350"&gt; &lt;/embed&gt; &lt;/object&gt;&lt;br /&gt;&lt;br /&gt;My roommates are my hos. Get over it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4832521628379743677?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4832521628379743677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4832521628379743677' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4832521628379743677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4832521628379743677'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/jeffs-mom.html' title='Jeff&apos;s Mom?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-7016178205654272647</id><published>2007-11-09T00:51:00.000-08:00</published><updated>2007-11-09T00:52:13.247-08:00</updated><title type='text'>A very interesting perspective on student life</title><content type='html'>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/dGCJ46vyR9o&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/dGCJ46vyR9o&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-7016178205654272647?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/7016178205654272647/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=7016178205654272647' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7016178205654272647'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7016178205654272647'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/very-interesting-perspective-on-student.html' title='A very interesting perspective on student life'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-5753982886835744717</id><published>2007-11-01T02:51:00.000-07:00</published><updated>2007-11-01T02:52:17.968-07:00</updated><title type='text'>What can I say, I steal all my quotes from Google Homepage</title><content type='html'>The one serious conviction that a man should have is that nothing is to be taken too seriously.&lt;br /&gt;  - &lt;a href="http://www.quotationspage.com/quote/32857.html"&gt;Nicholas Butler&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-5753982886835744717?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/5753982886835744717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=5753982886835744717' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5753982886835744717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/5753982886835744717'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/11/what-can-i-say-i-steal-all-my-quotes.html' title='What can I say, I steal all my quotes from Google Homepage'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-7576256554362666638</id><published>2007-10-27T14:45:00.000-07:00</published><updated>2007-10-27T14:46:59.696-07:00</updated><title type='text'>Something I found while researching...</title><content type='html'>&lt;center style="font-family: times new roman;"&gt;&lt;div style="text-align: justify;"&gt;                                                            &lt;strong&gt;                                                            &lt;i&gt;                                                                 &lt;span style="font-size:130%;"&gt;"Adventure is as humdrum as routine unless one assimilates  it...[and]...relates it to a central core that grows within and gives  it...significance.  ...It is not what one does, but what one realizes that  keeps existence from being vain and trivial. ...It is the artist, the knower,  the sayer...who takes the raw lump of ore we find in nature, smelts it, refines  it...and stamps it into coins we can pass from hand to hand..." &lt;/span&gt;&lt;/i&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;i&gt; &lt;/i&gt; &lt;/strong&gt;  &lt;/div&gt;&lt;p style="text-align: left;"&gt;                                                                -Lewis Mumford&lt;/p&gt; &lt;/center&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-7576256554362666638?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/7576256554362666638/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=7576256554362666638' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7576256554362666638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/7576256554362666638'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/10/something-i-found-while-researching.html' title='Something I found while researching...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-2119450964744531168</id><published>2007-04-09T02:24:00.000-07:00</published><updated>2007-04-09T02:28:51.323-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Silversun Pickups'/><category scheme='http://www.blogger.com/atom/ns#' term='band'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><title type='text'>My new favorite band is....</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_tTO7Tm_oRYE/RhoG9VMa5tI/AAAAAAAAAAo/-HoSjBZ5BjI/s1600-h/sspuBand1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_tTO7Tm_oRYE/RhoG9VMa5tI/AAAAAAAAAAo/-HoSjBZ5BjI/s320/sspuBand1.jpg" alt="" id="BLOGGER_PHOTO_ID_5051357582780458706" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;the &lt;a href="http://en.wikipedia.org/wiki/Silversun_Pickups"&gt;Silversun Pickups&lt;/a&gt;. I particularly am a sell-out for what is probably their most popular song: &lt;span style="font-style: italic;"&gt;Lazy Eye&lt;/span&gt;. It is good music.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-2119450964744531168?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/2119450964744531168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=2119450964744531168' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/2119450964744531168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/2119450964744531168'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/04/my-new-favorite-band-is.html' title='My new favorite band is....'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_tTO7Tm_oRYE/RhoG9VMa5tI/AAAAAAAAAAo/-HoSjBZ5BjI/s72-c/sspuBand1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3392237041853137837</id><published>2007-03-30T21:59:00.001-07:00</published><updated>2007-04-09T02:30:02.179-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='butler'/><title type='text'>Butler: good with companies, not with women</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;(09:57:15 PM) &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;Butler:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt; have i mentioned lately that i've gotten an offer from every company i have interviewed with&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;(09:58:21 PM) &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;Butler&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt; actually every woman i have applied to has rejected me&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(32, 74, 135);"&gt;&lt;span style="font-size:85%;"&gt;(09:58:25 PM) &lt;/span&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;me:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt; LOL&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;(09:58:36 PM) &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;Butler&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt; butler: good with companies, not with women&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3392237041853137837?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/3392237041853137837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=3392237041853137837' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3392237041853137837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3392237041853137837'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/03/butler-good-with-companies-not-with.html' title='Butler: good with companies, not with women'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4334896141909310145</id><published>2007-03-27T02:08:00.000-07:00</published><updated>2007-03-27T02:09:21.273-07:00</updated><title type='text'>Thomas Jefferson quote from Google's homepage</title><content type='html'>The spirit of resistance to government is so valuable on certain occasions, that I wish it always to be kept alive.&lt;br /&gt;  - &lt;a href="http://www.quotationspage.com/quote/34147.html"&gt;Thomas Jefferson&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4334896141909310145?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4334896141909310145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4334896141909310145' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4334896141909310145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4334896141909310145'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/03/thomas-jefferson-quote-from-googles.html' title='Thomas Jefferson quote from Google&apos;s homepage'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-8051050523849845642</id><published>2007-03-24T13:31:00.000-07:00</published><updated>2007-03-24T13:34:38.878-07:00</updated><title type='text'>Novell spoof commercial of Apple spoof commercial</title><content type='html'>&lt;a href="http://blog.wired.com/cultofmac/2007/03/novell_launches.html"&gt;http://blog.wired.com/cultofmac/2007/03/novell_launches.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It's really funny because the Apple commercials were totally denying Linux's place in the world... so Novell decided to step up in a imitative yet creative way. I like it because Linux is a chick... what can I say?&lt;br /&gt;&lt;br /&gt;Enjoy, the second one is even better than the first.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-8051050523849845642?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/8051050523849845642/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=8051050523849845642' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/8051050523849845642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/8051050523849845642'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/03/novell-spoof-commercial-of-apple-spoof.html' title='Novell spoof commercial of Apple spoof commercial'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4357362853834213521</id><published>2007-03-23T03:18:00.000-07:00</published><updated>2007-03-23T03:40:17.558-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql'/><category scheme='http://www.blogger.com/atom/ns#' term='five grams'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><title type='text'>SQL is fun for the whole family</title><content type='html'>five-gram: a string containing 5 "words"...&lt;br /&gt;&lt;br /&gt;you get a dollar if you can explain to me what this does, dinner if you are a girl ;)&lt;br /&gt;&lt;br /&gt;select f1.g1,f1.g2,f1.g3,f1.g4,f1.g5,f2.g5 from five_gram as f1, five_gram as f2 where f1.g2=f2.g1 and f1.g3=f2.g2 and f1.g4=f2.g3 and f1.g5=f2.g4 limit 5;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4357362853834213521?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4357362853834213521/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4357362853834213521' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4357362853834213521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4357362853834213521'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/03/sql-is-fun-for-whole-family.html' title='SQL is fun for the whole family'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-8231166784687121508</id><published>2007-03-11T17:47:00.000-07:00</published><updated>2007-03-11T17:49:42.421-07:00</updated><title type='text'>America's Machine...</title><content type='html'>&lt;a href="http://yro.slashdot.org/comments.pl?sid=226010&amp;threshold=1&amp;amp;commentsort=0&amp;mode=thread&amp;amp;cid=18302728"&gt;Taken from Slashdot&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;"What is it about train system efficiency that inculcates a preference for or against fascism in the general populace?"&lt;br /&gt;&lt;br /&gt;This might sound kind of silly, but hear me out. I think it's a question of whether society as a whole prioritizes the lives of individuals, or the regular functioning of societal institutions.&lt;br /&gt;&lt;br /&gt;Will the train wait for you if you are running two minutes late? Or will it leave exactly on time? What if you are going to visit your sick mother in the hospital? Will the conductor let you on if you run up at the last minute, after the doors have closed, tears in your eyes?&lt;br /&gt;&lt;br /&gt;Are the people in charge sticklers for the rules, or will the allow an except for your particular life story and situation? Are we cogs in the machine, to be cast off in the ditch if we are unable to keep up with the machinations of the city? Are we here to support the institutions, or are the institutions here to make our lives easier?&lt;br /&gt;&lt;br /&gt;I grew up in the US and got used to reliable infrastructure. I have done a lot of travelling in South American since I was in college, and it has really changed my perspective. Not that I am saying that one is better (I'll get to fascism later), but just observing at this point.&lt;br /&gt;&lt;br /&gt;I just got back from Bolivia. In La Paz, any body with a car can put a sign on their windshield and do their own taxi service. Anybody can set down a blanket on the sidewalk and start selling potatoes or trinkets to tourists. Open air markets have fresh meat rotting in the high-altitude sun, and freshly picked vegetables sitting out in the open, dirt still on them. There are no police who are going to stop you, there are no taxes to pay. There *are* registered, licensed taxis, and regular retail shops like we are used to here in the United States. However, official institutions don't have total control over every aspect of life like they do here. Here in the US, you need permission to do wipe your ass, pardon the expression. But in Bolivia, at least, informal 'institutions' exist alongside the official ones.&lt;br /&gt;&lt;br /&gt;In La Paz, there are full-size vans that run regular routes as taxi/buses. After 5 O'clock, when people are getting off of work, they will squeeze in as many people as can fit. Everyone is just trying to get home to their families, and nobody is going to throw you off if you are just sitting one butt-cheek on the edge of a seat. I've ridden several times in crowded, swaying full-size buses over dirt roads on mountains. I'm agnostic, but I prayed an awful lot.&lt;br /&gt;&lt;br /&gt;Now, of course, there are a lot more deaths due to safety hazards in Bolivia, in traffic and in homes. A lot of people get food poisoning. I think Bolivians are more accepting of the suffering and death in general.&lt;br /&gt;&lt;br /&gt;Here in the US, people seem to have what I call a hysteria of action. If something bad happens to anyone , Sometime Must Be Done, so that nobody ever has to suffer ever again. If a child dies in a shooting, all guns everywhere must be registered and locked up. If somebody gets food poisoning, we must institute totally new rules and procedures about handling food. If somebody dies in a car accident, we have to put air-bags on the roofs of all new cars. If somebody dies of a rare, expensive disease, we must establish a new non-profit so that nobody ever need suffer this disease again. If something bad ever manages to happen again, it was because somebody was lazy, not doing their job, and they must be fired. America is a paradise, and if bad things happen, it's somebody's fault for not doing their job.&lt;br /&gt;&lt;br /&gt;Written by "lawpoop". More can be found at &lt;a href="http://lawpoop.blogspot.com/"&gt;http://lawpoop.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-8231166784687121508?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/8231166784687121508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=8231166784687121508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/8231166784687121508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/8231166784687121508'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/03/americas-machine.html' title='America&apos;s Machine...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4726693474746149962</id><published>2007-03-04T06:15:00.000-08:00</published><updated>2007-03-04T06:24:21.707-08:00</updated><title type='text'>Website optimization</title><content type='html'>Man it is late. I've been working really hard to get my dad's website a better page rank so that it shows up in more search engine queries. I've learned a few things from my current job at Activo and applied them as best I can to get this home sold. I know how much effort my dad has put into this custom home for it to just sit on the market.&lt;br /&gt;&lt;br /&gt;It would feel so awesome if I attracted a customer that bought my dad's home and found it through my website. We'll see if I can do anything about this low Google ranking though....&lt;br /&gt;&lt;br /&gt;Shameless promotion &lt;a href="http://www.libertyestatesrealty.com"&gt;www.libertyestatesrealty.com&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Check out some other websites that &lt;a href="http://www.americanhomeguides.com/georgia-home-builders/builder5.html"&gt;build&lt;/a&gt; &lt;a href="http://www.customhomeonline.com/"&gt;custom&lt;/a&gt; &lt;a href="http://www.magicyellow.com/category/Home_Builders/Canton_OH.html"&gt;homes&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4726693474746149962?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4726693474746149962/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4726693474746149962' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4726693474746149962'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4726693474746149962'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/03/website-optimization.html' title='Website optimization'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3163942809030476835</id><published>2007-02-27T04:27:00.000-08:00</published><updated>2007-02-27T04:39:55.137-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='array'/><category scheme='http://www.blogger.com/atom/ns#' term='Ruby'/><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><category scheme='http://www.blogger.com/atom/ns#' term='nerd'/><title type='text'>Ruby 3D Array implementation</title><content type='html'>#&amp;nbsp;beautiful&amp;nbsp;implementation&amp;nbsp;of&amp;nbsp;a&amp;nbsp;ruby&amp;nbsp;3D&amp;nbsp;array&lt;br /&gt;#&amp;nbsp;although&amp;nbsp;I&amp;nbsp;am&amp;nbsp;a&amp;nbsp;little&amp;nbsp;irritated&amp;nbsp;you&amp;nbsp;can't&amp;nbsp;just&amp;nbsp;do&amp;nbsp;it&amp;nbsp;the&amp;nbsp;java&amp;nbsp;way&amp;nbsp;and&amp;nbsp;slap&lt;br /&gt;#&amp;nbsp;an&amp;nbsp;extra&amp;nbsp;pair&amp;nbsp;of&amp;nbsp;braces&amp;nbsp;on&amp;nbsp;the&amp;nbsp;end&amp;nbsp;and&amp;nbsp;get&amp;nbsp;a&amp;nbsp;whole&amp;nbsp;extra&amp;nbsp;dimension&lt;br /&gt;&lt;br /&gt;class&amp;nbsp;Array3&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;def&amp;nbsp;initialize&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@store&amp;nbsp;=&amp;nbsp;[[[]]]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;def&amp;nbsp;[](a,b,c)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;@store[a]==nil&amp;nbsp;||&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@store[a][b]==nil&amp;nbsp;||&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@store[a][b][c]==nil&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;nil&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;else&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;@store[a][b][c]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;def&amp;nbsp;[]=(a,b,c,x)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@store[a]&amp;nbsp;=&amp;nbsp;[[]]&amp;nbsp;if&amp;nbsp;@store[a]==nil&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@store[a][b]&amp;nbsp;=&amp;nbsp;[]&amp;nbsp;if&amp;nbsp;@store[a][b]==nil&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@store[a][b][c]&amp;nbsp;=&amp;nbsp;x&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;x&amp;nbsp;=&amp;nbsp;Array3.new&lt;br /&gt;&lt;br /&gt;x[0,0,0]&amp;nbsp;=&amp;nbsp;5&lt;br /&gt;x[0,0,1]&amp;nbsp;=&amp;nbsp;6&lt;br /&gt;x[1,2,3]&amp;nbsp;=&amp;nbsp;99&lt;br /&gt;&lt;br /&gt;puts&amp;nbsp;x[1,2,3]&lt;br /&gt;&lt;br /&gt;#&amp;nbsp;from&amp;nbsp;&lt;a href="http://www.samspublishing.com/articles/article.asp?p=26943&amp;amp;rl=1"&gt;http://www.samspublishing.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3163942809030476835?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/3163942809030476835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=3163942809030476835' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3163942809030476835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3163942809030476835'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/02/ruby-3d-array-implementation.html' title='Ruby 3D Array implementation'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-3100058439444866437</id><published>2007-02-21T03:48:00.000-08:00</published><updated>2007-02-21T03:49:28.264-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='women'/><category scheme='http://www.blogger.com/atom/ns#' term='quote'/><category scheme='http://www.blogger.com/atom/ns#' term='movie'/><title type='text'>"The Island" quote</title><content type='html'>from the movie 'the island': McCord: All right, look. I know you're new to the whole human experiences and all... but there's one universal truth and that is you never give a woman your credit card.&lt;br /&gt;&lt;br /&gt;I totally stole this from something my friend's girlfriend posted on facebook. Sue me. And Tim, I &lt;3 you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-3100058439444866437?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/3100058439444866437/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=3100058439444866437' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3100058439444866437'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/3100058439444866437'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/02/island-quote.html' title='&quot;The Island&quot; quote'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-4391322763637158171</id><published>2007-02-04T19:03:00.001-08:00</published><updated>2007-02-04T19:03:43.141-08:00</updated><title type='text'>Lol</title><content type='html'>&lt;span style="font-size:100%;"&gt;Haikus are easy&lt;br /&gt;But sometimes they don't make sense&lt;br /&gt;Refrigerator&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-4391322763637158171?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/4391322763637158171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=4391322763637158171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4391322763637158171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/4391322763637158171'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/02/lol.html' title='Lol'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-117058260372964211</id><published>2007-02-04T01:49:00.000-08:00</published><updated>2007-02-04T01:50:03.760-08:00</updated><title type='text'>Tard?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/1842/1457/1600/894555/bill-gates.jpg"&gt;&lt;img style="cursor: pointer;" src="http://photos1.blogger.com/x/blogger/1842/1457/320/351519/bill-gates.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-117058260372964211?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/117058260372964211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=117058260372964211' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/117058260372964211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/117058260372964211'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2007/02/tard.html' title='Tard?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115891444104413833</id><published>2006-09-22T01:40:00.000-07:00</published><updated>2006-09-22T01:40:41.056-07:00</updated><title type='text'>I'm Learning Ruby...</title><content type='html'>&lt;em&gt;A language that doesn’t affect the way you think about programming is not worth knowing&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;Alan Perlis&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115891444104413833?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115891444104413833/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115891444104413833' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115891444104413833'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115891444104413833'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/09/im-learning-ruby.html' title='I&apos;m Learning Ruby...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115802056158061562</id><published>2006-09-11T17:22:00.000-07:00</published><updated>2006-09-11T17:22:41.590-07:00</updated><title type='text'>Bash fun?</title><content type='html'>glenn@sloop:~$ man hookers?&lt;br /&gt;No manual entry for hookers?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115802056158061562?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115802056158061562/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115802056158061562' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115802056158061562'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115802056158061562'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/09/bash-fun.html' title='Bash fun?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115796004417289614</id><published>2006-09-11T00:32:00.000-07:00</published><updated>2006-09-11T00:34:04.173-07:00</updated><title type='text'>Success and Laziness, as if I was to speak...</title><content type='html'>"Failure is not the only punishment for laziness; there is also the success of others."&lt;br /&gt; - &lt;a href="http://www.quotationspage.com/quote/27531.html"&gt;Jules Renard&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This little gem was from &lt;a href="http://www.google.com/ig"&gt;Google's personalized homepage&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115796004417289614?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115796004417289614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115796004417289614' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115796004417289614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115796004417289614'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/09/success-and-laziness-as-if-i-was-to.html' title='Success and Laziness, as if I was to speak...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115792383781286975</id><published>2006-09-10T14:28:00.000-07:00</published><updated>2006-09-10T14:30:37.823-07:00</updated><title type='text'>Peace and Politics</title><content type='html'>A political man can have as his aim the realization of freedom,&lt;br /&gt;but he has no means to realize it other than through violence.&lt;br /&gt;&lt;br /&gt;-- Jean Paul Sartre&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Straight from fortune on slackware&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115792383781286975?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115792383781286975/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115792383781286975' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115792383781286975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115792383781286975'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/09/peace-and-politics.html' title='Peace and Politics'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115778486682119546</id><published>2006-09-08T23:53:00.000-07:00</published><updated>2006-09-08T23:54:26.833-07:00</updated><title type='text'>Cute kitty kat</title><content type='html'>&lt;embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=8434882076109097021&amp;hl=en"&gt; &lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115778486682119546?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115778486682119546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115778486682119546' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115778486682119546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115778486682119546'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/09/cute-kitty-kat.html' title='Cute kitty kat'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115741053937259523</id><published>2006-09-04T15:51:00.000-07:00</published><updated>2006-09-04T15:55:39.383-07:00</updated><title type='text'>Sweet robot dance, Asian style</title><content type='html'>&lt;embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-579612042933384370&amp;hl=en"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;Sexiest robot dance....yet&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115741053937259523?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115741053937259523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115741053937259523' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115741053937259523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115741053937259523'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/09/sweet-robot-dance-asian-style.html' title='Sweet robot dance, Asian style'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115589331968653931</id><published>2006-08-18T02:22:00.000-07:00</published><updated>2006-08-18T02:28:39.696-07:00</updated><title type='text'>Freckles are sexy</title><content type='html'>I recently watched the movie &lt;a href="http://www.imdb.com/title/tt0345061/"&gt;&lt;span style="font-style: italic;"&gt;Code 46&lt;/span&gt;&lt;/a&gt; which was mediocre. There was a quite audacious bit of the movie that I cannot pass posting, however:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;William:&lt;/b&gt; Tell me something about yourself.&lt;br /&gt;&lt;b&gt;Wolfe:&lt;/b&gt; I have &lt;i&gt;una cosa&lt;/i&gt; about freckles. I find freckles a turn on… It’s like its clothed and not clothed. There’s no freckle pornography. Women get famous for breasts and legs but not for freckles.&lt;br /&gt;&lt;b&gt;William:&lt;/b&gt; &lt;i&gt;Anne of Green Gables.&lt;/i&gt;&lt;br /&gt;&lt;b&gt;Wole:&lt;/b&gt; I regard &lt;i&gt;Anne of Green Gables &lt;/i&gt;as an erotic classic.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I stole the quote from &lt;a href="http://www.sensoryimpact.com/2004/07/"&gt;this page&lt;/a&gt; so don't blame me for the character-name spelling.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115589331968653931?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115589331968653931/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115589331968653931' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115589331968653931'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115589331968653931'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/08/freckles-are-sexy.html' title='Freckles are sexy'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115585643753502827</id><published>2006-08-17T16:01:00.000-07:00</published><updated>2006-08-17T16:14:37.226-07:00</updated><title type='text'>Trip to Georgia</title><content type='html'>I just recently got back from Georgia. I had a good time with my dad and stepmom hanging out and seeing what the southern state is all about. It is not nearly as hot and humid as everyone makes it out to be. I think San Jose in California was on par with the heat, too. Besides that, the surrounding nature was a nice change from my urban concrete jungle and the people were friendly.&lt;br /&gt;&lt;br /&gt;My dad and stepmom are working hard on building some beautiful homes there. We took a bunch of photos of the nearly complete home, and some of the second home which needs some more work. They are some very beautiful homes to be sure, and you really get a bang for your buck out there in Canton, Georgia. I worked hard on &lt;a href="http://www.libertyestatesrealty.com"&gt;my dad's new website promoting the new homes&lt;/a&gt;, which was a major revamp of the old site. I think it looks pretty good and wouldn't mind any critiqueing or complements.&lt;br /&gt;&lt;br /&gt;While I was there I also took a quick drive-through tour of Georgia Tech, and after a little bit of research I found out it is one of the top engineering universities in the nation. Thusly, I threw it on the list of grad schools where I'll apply. Grad school preparation is a bear, including studying for GRE's and doing all the big applications; I've got my fingers crossed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115585643753502827?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115585643753502827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115585643753502827' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115585643753502827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115585643753502827'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/08/trip-to-georgia.html' title='Trip to Georgia'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115385873412669718</id><published>2006-07-25T13:12:00.000-07:00</published><updated>2006-07-25T13:18:54.173-07:00</updated><title type='text'>Top 10 worst album covers ever</title><content type='html'>My friend from Santa Barbara, Bev, sent me these captions to some very awkward album covers. Here's a little taste of what inspired this &lt;a href="http://porktornado.diaryland.com/albumcover.html"&gt;top 10 list of worst album covers&lt;/a&gt;. Enjoy, and thanks for the laugh Bev.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/zipzaprap1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/zipzaprap1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115385873412669718?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115385873412669718/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115385873412669718' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115385873412669718'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115385873412669718'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/07/top-10-worst-album-covers-ever.html' title='Top 10 worst album covers ever'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115346840110697686</id><published>2006-07-21T00:51:00.000-07:00</published><updated>2006-07-21T00:53:21.116-07:00</updated><title type='text'>George Washington was a programmer</title><content type='html'>Whenever one person is found adequate to the discharge of a duty by&lt;br /&gt;close application thereto, it is worse execute by two persons and&lt;br /&gt;scarcely done at all if three or more are employed therein.&lt;br /&gt;                -- George Washington, 1732-1799&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;And as it applies to programming:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Adding manpower to a late software project makes it later.&lt;br /&gt;                -- F. Brooks, "The Mythical Man-Month"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115346840110697686?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115346840110697686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115346840110697686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115346840110697686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115346840110697686'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/07/george-washington-was-programmer.html' title='George Washington was a programmer'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115338138482175492</id><published>2006-07-20T00:42:00.000-07:00</published><updated>2006-07-20T00:43:04.833-07:00</updated><title type='text'>kinda funny</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/bored_with_the_internet.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/bored_with_the_internet.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115338138482175492?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115338138482175492/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115338138482175492' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115338138482175492'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115338138482175492'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/07/kinda-funny.html' title='kinda funny'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115234224363721499</id><published>2006-07-07T23:34:00.000-07:00</published><updated>2006-07-08T00:09:50.296-07:00</updated><title type='text'>Nintendo aiming to please, or subtly slap in the face?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/what_nintendo_thinks.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/what_nintendo_thinks.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;As the United State's president has recently turned 60, Nintendo mailed him a new hand-held console called the DS-Lite (Nintendo's new Gameboy with dual screens) and a copy of the game called Brain Age. The game aims at keeping people sharp with simplistic yet challenging games that target a wide array of people. The package came with a note of inspiration to aging President Bush to keep him sharp in his later years. I just can't resist the temptation that some higher-ups in the Nintendo Corporation thought that it would be funny to send our blundering President something to make him a little smarter. I am probably wrong, and I love Nintendo so I dare not smear their image, but it just makes me snicker. I also like to take the opportunites to laugh at &lt;span style="font-style: italic;"&gt;W.&lt;/span&gt; when I can.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.theinquirer.net/default.aspx?article=32873"&gt;http://www.theinquirer.net/default.aspx?article=32873 &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115234224363721499?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115234224363721499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115234224363721499' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115234224363721499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115234224363721499'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/07/nintendo-aiming-to-please-or-subtly.html' title='Nintendo aiming to please, or subtly slap in the face?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115224906355394703</id><published>2006-07-06T22:02:00.000-07:00</published><updated>2006-07-06T22:15:52.276-07:00</updated><title type='text'>My name is EVAN</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0476.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/CIMG0476.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Evan, my new roommate, hates MySpace. This reason alone is all the motivation I needed to make my dear roommate his very own MySpace page! You should really make Evan your friend, because everybody's doing it. &lt;a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&amp;amp;friendID=90188471"&gt;Make Evan your MySpace Friend&lt;/a&gt; or &lt;a href="http://www.myspace.com/90188471"&gt;just check it out here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115224906355394703?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115224906355394703/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115224906355394703' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115224906355394703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115224906355394703'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/07/my-name-is-evan.html' title='My name is EVAN'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115183389186131286</id><published>2006-07-02T02:50:00.000-07:00</published><updated>2006-07-02T02:54:38.963-07:00</updated><title type='text'>Monkey Butter!</title><content type='html'>Something good does come from the Fox News Station! &lt;a href="http://www.wdaftv4.com/Noon/September2003.htm#9/25"&gt;Monkey Butter French Toast&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;Basic French Toast&lt;br /&gt;2 eggs or egg whites, lightly beaten&lt;br /&gt;8 slices firm white or whole wheat bread&lt;br /&gt;1 teaspoon vanilla&lt;br /&gt;2/3 cup milk&lt;br /&gt;2-3 teaspoons butter&lt;br /&gt;1/2 teaspoon cinnamon&lt;br /&gt;&lt;br /&gt;Combine eggs and milk in a pie plate; beat with a fork until well&lt;br /&gt;blended. Dip bread slices into the mix to coat each side. Melt 1&lt;br /&gt;teaspoon butter in a skillet over medium heat. Transfer a coated&lt;br /&gt;bread slice to the hot skillet. Brown each side 2-3 minutes or until&lt;br /&gt;golden brown. Continue with other slices, adding butter as needed.&lt;br /&gt;Discard any leftover egg mixture. Serve immediately. Or wrap,&lt;br /&gt;and place in the freezer for later use.&lt;br /&gt;&lt;br /&gt;Note: The frozen slices can be thawed in a toaster set on&lt;br /&gt;MEDIUM, in a microwave oven set on HIH for 30-45 seconds, or in&lt;br /&gt;an oven set at 400F for about 10 minutes.&lt;br /&gt;&lt;br /&gt;Traditional: French toast is yummy with a sprinkle of powdered&lt;br /&gt;sugar, jam or syrup.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;New: Slice them into strips and dip into monkey butter. To make&lt;br /&gt;monkey butter, combine one mashed banana with 2 Tablespoons&lt;br /&gt;reduced-fat peanut butter, 1 cup vanilla yogurt and 2 teaspoons&lt;br /&gt;cinnamon sugar.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Linky to &lt;a href="http://en.wikipedia.org/wiki/Monkey_butter"&gt;Monkey Butter on Wikipedia&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115183389186131286?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115183389186131286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115183389186131286' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115183389186131286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115183389186131286'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/07/monkey-butter.html' title='Monkey Butter!'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115161786732532017</id><published>2006-06-29T14:43:00.000-07:00</published><updated>2006-06-29T15:01:02.593-07:00</updated><title type='text'>Shrinking Freedoms</title><content type='html'>Russell Kanning and Kat Dillon protest the lack of rights they have in their hometown, which should clearly fall under Constitutional Rights. They were denied the right to peaceably assemble, the right to free speech, and were hassled repeatedly by police after they refused to be moved to a "free speech zone" during a talk by President Bush in their town. This video shows them at the court house, disputing with police officers in Manchester, New Hampshire.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;embed style="width: 400px; height: 326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-3017881154843817240" allowscriptaccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" salign="TL" flashvars="playerMode=embedded" align="middle"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;Linky to:&lt;br /&gt;    &lt;a href="http://video.google.com/videoplay?docid=-3017881154843817240"&gt;the video&lt;/a&gt;&lt;br /&gt;    &lt;a href="http://it.slashdot.org/article.pl?sid=06/06/29/188221&amp;from=rss"&gt;a related slashdot article&lt;/a&gt;&lt;br /&gt;    &lt;a href="http://nhfree.com/"&gt;the protestors website, nhfree.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115161786732532017?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115161786732532017/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115161786732532017' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115161786732532017'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115161786732532017'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/shrinking-freedoms.html' title='Shrinking Freedoms'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115129264394955040</id><published>2006-06-25T20:28:00.000-07:00</published><updated>2006-06-25T20:31:51.550-07:00</updated><title type='text'>Jennifer Aniston is teh hotness</title><content type='html'>&lt;embed style="width: 400px; height: 326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=8962735264636197091" allowscriptaccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" salign="TL" flashvars="playerMode=embedded" align="middle"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;She looks good in those jeans.... but he's got his priorities straight. ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115129264394955040?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115129264394955040/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115129264394955040' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115129264394955040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115129264394955040'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/jennifer-aniston-is-teh-hotness.html' title='Jennifer Aniston is teh hotness'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115105422025898896</id><published>2006-06-23T02:16:00.000-07:00</published><updated>2006-06-23T02:17:00.270-07:00</updated><title type='text'>Thank you, Comcast</title><content type='html'>&lt;object width="425" height="350"&gt;&lt;param name="movie" value="http://www.youtube.com/v/CvVp7b5gzqU"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/CvVp7b5gzqU" type="application/x-shockwave-flash" width="425" height="350"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115105422025898896?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115105422025898896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115105422025898896' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115105422025898896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115105422025898896'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/thank-you-comcast.html' title='Thank you, Comcast'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115103570783695981</id><published>2006-06-22T21:05:00.000-07:00</published><updated>2006-06-22T22:09:33.240-07:00</updated><title type='text'>You make kitty scared</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/1148948483760.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/1148948483760.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Don't make kitty scared, k? I really have to get my dust off my actual webserver so I can host &lt;a href="http://eatkittens.com"&gt;http://eatkittens.com&lt;/a&gt; properly. Just you wait.&lt;br /&gt;&lt;br /&gt;For other entertainment, check out this &lt;a href="http://www.awfulgames.com/games/boomboomvolleyball/"&gt;volley-ball flash game&lt;/a&gt;, it's highly entertaining. After all, Steve recommended it, so it must be alright, right?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115103570783695981?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115103570783695981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115103570783695981' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115103570783695981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115103570783695981'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/you-make-kitty-scared.html' title='You make kitty scared'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-115028067175999646</id><published>2006-06-14T03:20:00.000-07:00</published><updated>2006-06-14T03:24:31.773-07:00</updated><title type='text'>bash.org quote</title><content type='html'>The problem with America is stupidity. I'm not saying there should be acapital punishment for stupidity, but why don't we just take the safetylabels off of everything and let the problem solve itself?&lt;br /&gt;&lt;br /&gt;=====&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I am leaving for Santa Barbara today. Brian and his girlfriend Sam will be accompanying me to pick up some furniture from my long lost roommate, Nick. Good times. I just hope I don't go psycho watching all my old friends graduate without me. **sigh**. At some point I might get something interesting to report on, but I'll keep you posted until then ;).&lt;br /&gt;&lt;br /&gt;--Glenn&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-115028067175999646?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/115028067175999646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=115028067175999646' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115028067175999646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/115028067175999646'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/bashorg-quote.html' title='bash.org quote'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114983914145054415</id><published>2006-06-09T00:45:00.000-07:00</published><updated>2006-06-09T00:45:41.460-07:00</updated><title type='text'>Fond Memories...</title><content type='html'>&lt;embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-6377855743675143177" allowScriptAccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" wmode="window" salign="TL"  FlashVars="playerMode=embedded"&gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114983914145054415?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114983914145054415/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114983914145054415' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114983914145054415'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114983914145054415'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/fond-memories.html' title='Fond Memories...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114974408216923095</id><published>2006-06-07T21:53:00.000-07:00</published><updated>2006-06-07T22:22:14.753-07:00</updated><title type='text'>Rock-Paper-Scissors</title><content type='html'>It seems these days that judges must find all sorts of unique ways to deal with issues. Nothing like a good, old game of rock-paper-scissors to settle a dispute between two rivalling lawyers.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://money.cnn.com/2006/06/07/magazines/fortune/rps_fortune/"&gt;http://money.cnn.com/2006/06/07/magazines/fortune/rps_fortune/ &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/250px-Rock_paper_scissors.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/250px-Rock_paper_scissors.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;For those of you who have been living in the dark, &lt;a href="http://en.wikipedia.org/wiki/Rock,_Paper,_Scissors"&gt;here is a wiki on the game&lt;/a&gt;. And as I have totally turned this from a serious judge bash into reverence for a child's game, here are some more links that good buddy Steve sent me. &lt;a href="http://www.umop.com/rps15.htm"&gt;Fifteen way rock-paper-scissors&lt;/a&gt;, and if that isn't enough, &lt;a href="http://www.umop.com/rps25.htm"&gt;twenty-five way&lt;/a&gt;. The author even has &lt;a href="http://www.umop.com/images/rps25_outcomes.jpg"&gt;some good justifications&lt;/a&gt; for why any one thing beats another.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114974408216923095?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114974408216923095/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114974408216923095' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114974408216923095'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114974408216923095'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/06/rock-paper-scissors.html' title='Rock-Paper-Scissors'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114907042169242244</id><published>2006-05-31T03:02:00.000-07:00</published><updated>2006-05-31T03:13:41.710-07:00</updated><title type='text'>Remember what the guy from Total Recall said to the hooker on Mars?</title><content type='html'>It was something along the lines of "I with I had three hands so I could grab all three of your boobs at the same time..."&lt;br /&gt;&lt;br /&gt;Well this kid can!!&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/9290570.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/9290570.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In all seriousness...I hope the little tyke doesn't die for lack of enough organs he is missing. There is a &lt;a href="http://www.local6.com/news/9290536/detail.html"&gt;news report with more info&lt;/a&gt;. They say it is record breaking for how complete the extra arm is as typically the extra limb is not nearly as developed and as responsive to touch. It is oddly kind of appropriately timed as that new X-Men 3 movie just came out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114907042169242244?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114907042169242244/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114907042169242244' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114907042169242244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114907042169242244'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/remember-what-guy-from-total-recall.html' title='Remember what the guy from Total Recall said to the hooker on Mars?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114884308382026512</id><published>2006-05-28T11:56:00.000-07:00</published><updated>2006-05-28T12:05:56.703-07:00</updated><title type='text'>Picturage.</title><content type='html'>&lt;a href="http://www.4chan.org"&gt;4chan.org&lt;/a&gt; (click Proceed on the left to enter) has got to be one of the most internet-cultured places on the net. Only there will you find pictures like these on a regular basis.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/1148708637677.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/1148708637677.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This one was specifically requested from their appropriately named Request forum. Who thinks of Russell Crowe from Gladiator offering cake? Really?&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/darksidecookie8ox.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/darksidecookie8ox.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Because the Cookie Monster is practically the posterchild for the Dark Side...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/1148704110822.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/1148704110822.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This last one is titled "Man with giant cock".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114884308382026512?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114884308382026512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114884308382026512' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114884308382026512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114884308382026512'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/picturage.html' title='Picturage.'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114868186330127322</id><published>2006-05-26T15:16:00.000-07:00</published><updated>2006-05-26T15:17:43.320-07:00</updated><title type='text'>Eric and Johan, the Gay Duo</title><content type='html'>&lt;embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?videoUrl=http%3A%2F%2Fvp.video.google.com%2Fvideodownload%3Fversion%3D0%26secureurl%3DsAAAAG7ggqAHSiJjpW0D3w4aYTXkkfoCpzflNeeztCD7RvMTH9_4DVjwpVVnDLsg_WA8SokrYu3kLXlsdmKP9TDHB1bGeBFfta158ljrIkxFDxcpxbl7ZhQIMezrEUuV3Hnmo5YQRe6Sb5_qe_6ZUPwDugh3j46J6Wf7fzH5EBg_oPIT5Hrw__03TlRLM9l2MW_PVxgCEISAX1V5-baelRZk1k6DZkjiOy3LR8UnVrVXB0SKjHvAWWbW9RfNs_kRuP_KIw%26sigh%3Djybb0If8uSJtgdX8UFVzEUQF9CI%26begin%3D0%26len%3D21020%26docid%3D1396464245544279081&amp;thumbnailUrl=http%3A%2F%2Fvideo.google.com%2FThumbnailServer%3Fapp%3Dvss%26contentid%3D589788e986df2682%26second%3D5%26itag%3Dw320%26urlcreated%3D1148681088%26sigh%3DfXlKuktVpkMTz5rXAYVxt9g9DzY&amp;playerId=1396464245544279081" allowScriptAccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" wmode="window" salign="TL"  FlashVars="playerMode=embedded"&gt; &lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114868186330127322?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114868186330127322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114868186330127322' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114868186330127322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114868186330127322'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/eric-and-johan-gay-duo_26.html' title='Eric and Johan, the Gay Duo'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114845780827346499</id><published>2006-05-24T00:55:00.000-07:00</published><updated>2006-05-24T01:03:28.293-07:00</updated><title type='text'>Fuzziness, Finishedness, and Patriotness</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/1148367370982.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/1148367370982.jpg" alt="" border="0" /&gt;&lt;/a&gt;You &lt;span style="font-style: italic;"&gt;love&lt;/span&gt; it, you know you do. Don't deny the fluffiness. No one denies the fluffiness.&lt;br /&gt;&lt;br /&gt;In other news, SUMMER IS FRIGGIN HERE FINALLY. I am done with all 5 of my finals, and I have high hopes for some decent grades (probably just jinxed it though). I will be moving into my apartment this Friday and out of this dirty old dorm asap.&lt;br /&gt;&lt;br /&gt;And for you Mark Twain fans out there:&lt;br /&gt;&lt;p align="left"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;"&gt;In the beginning                of a change,&lt;br /&gt;              The Patriot is a scarce man and brave,&lt;br /&gt;              Hated and scorned.&lt;br /&gt;              When his cause succeeds, however, the timid join him,&lt;br /&gt;              For then it costs nothing to be a patriot.&lt;/span&gt;&lt;/p&gt;             &lt;p align="center"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;"&gt;Mark Twain&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114845780827346499?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114845780827346499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114845780827346499' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114845780827346499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114845780827346499'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/fuzziness-finishedness-and-patriotness.html' title='Fuzziness, Finishedness, and Patriotness'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114819880428147441</id><published>2006-05-21T01:02:00.000-07:00</published><updated>2006-05-21T01:06:44.290-07:00</updated><title type='text'>Gawd I love people</title><content type='html'>Some people just don't get it...which is why they love Bush so much right?&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/pass_the_ammo.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/pass_the_ammo.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Also check out when &lt;a href="http://video.google.com/videoplay?docid=-4973617448770513925&amp;amp;q=colbert"&gt;Stephen Colbert rips our beloved hero a new one&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114819880428147441?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114819880428147441/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114819880428147441' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114819880428147441'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114819880428147441'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/gawd-i-love-people.html' title='Gawd I love people'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114768710683809260</id><published>2006-05-15T02:57:00.000-07:00</published><updated>2006-05-15T03:09:06.380-07:00</updated><title type='text'>Thinking of getting a Japanese tattoo?</title><content type='html'>&lt;a href="http://www.soufoaklin.com/tattooartist.html"&gt;http://www.soufoaklin.com/tattooartist.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You should probably bring along someone who actually speaks the language...&lt;br /&gt;&lt;br /&gt;In other news, this thing is a REALLY friggin cool "multi-touch-interaction" demo&lt;br /&gt;&lt;br /&gt;&lt;a href="http://letskit.blogspot.com/2006/05/multi-touch-interaction-experiment.html"&gt;http://letskit.blogspot.com/2006/05/multi-touch-interaction-experiment.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114768710683809260?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114768710683809260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114768710683809260' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114768710683809260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114768710683809260'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/thinking-of-getting-japanese-tattoo.html' title='Thinking of getting a Japanese tattoo?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114759934407603848</id><published>2006-05-14T02:34:00.000-07:00</published><updated>2006-05-14T02:46:27.646-07:00</updated><title type='text'>Can you say "Boy in a dryer"?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://video.google.com/videoplay?docid=6249263776897582510&amp;q=dry+entertainment"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 223px; height: 167px;" src="http://photos1.blogger.com/blogger/1842/1457/320/ThumbnailServer.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;That's my friend from UCSB having some fun with a dryer. Don't ask, I'm sure alcohol was involved (hopefully, so it didn't hurt so much anyways).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114759934407603848?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114759934407603848/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114759934407603848' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114759934407603848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114759934407603848'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/can-you-say-boy-in-dryer.html' title='Can you say &quot;Boy in a dryer&quot;?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114759696875287471</id><published>2006-05-14T01:55:00.000-07:00</published><updated>2006-05-14T01:56:08.763-07:00</updated><title type='text'>Oscar Levant Quote</title><content type='html'>Underneath this flabby exterior is an enormous lack of character.&lt;br /&gt;    Oscar Levant&lt;br /&gt;&lt;br /&gt;P.S. - Thanks Andy&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114759696875287471?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114759696875287471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114759696875287471' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114759696875287471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114759696875287471'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/oscar-levant-quote.html' title='Oscar Levant Quote'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114751691702156811</id><published>2006-05-13T03:40:00.000-07:00</published><updated>2006-05-13T03:41:57.036-07:00</updated><title type='text'>Dirty Old Man</title><content type='html'>My Dad has obviously been keeping busy:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/6ea0re2.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/6ea0re2.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114751691702156811?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114751691702156811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114751691702156811' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114751691702156811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114751691702156811'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/dirty-old-man.html' title='Dirty Old Man'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114708463355056967</id><published>2006-05-08T03:10:00.000-07:00</published><updated>2006-05-08T03:37:13.563-07:00</updated><title type='text'>Butter?</title><content type='html'>&lt;p&gt;I recovered this post with the help of Steve from my old site (Google cache).&lt;br/&gt;&lt;br/&gt;&amp;lt;raven&amp;gt; Any cat people here? I've got a problem with Nicky... &lt;br/&gt;&amp;lt;Leth&amp;gt; I've been known to be handy with a wok &lt;br/&gt;&amp;lt;Lore&amp;gt; Why, I'm a cat person. &lt;br/&gt;&amp;lt;raven&amp;gt; I took Morgan to the vet yesterday - he was gone for a total of 45 minutes, got two vaccs and a blood draw. &lt;br/&gt;&amp;lt;raven&amp;gt; Brought him home and Nicky went BALLISTIC. &lt;br/&gt;&amp;lt;raven&amp;gt; Spent the rest of the night yowling and hissing and attacking MOrgan. &lt;br/&gt;&amp;lt;CrazyClimber&amp;gt; nicky smells the hospital smells on morgan &lt;br/&gt;&amp;lt;Lore&amp;gt; Yeah, I've seen that happen. &lt;br/&gt;&amp;lt;raven&amp;gt; Is there anything I can do to get the hospital stink off&lt;br /&gt;him, then? Pack his carrier in coffe grounds or something? &lt;br/&gt;&amp;lt;tieboy&amp;gt; how about a bath &lt;br/&gt;&amp;lt;CrazyClimber&amp;gt; just give it a day or so &lt;br/&gt;&amp;lt;Lore&amp;gt; We tried catnip and butter, and neither worked. &lt;br/&gt;&amp;lt;agent_orange&amp;gt; butter? &lt;br/&gt;&amp;lt;agent_orange&amp;gt; you buttered your cat? &lt;br/&gt;&amp;lt;Lore&amp;gt; Yes. &lt;br/&gt;&amp;lt;raven&amp;gt; it's the best way to butter the house. &lt;br/&gt;&amp;lt;raven&amp;gt; Cats are effective butter delivery units. &lt;br/&gt;&amp;lt;Lore&amp;gt; We read somewhere to put butter on a cat's forehead. &lt;br/&gt;&amp;lt;agent_orange&amp;gt; did the emolient facilitate insertion? &lt;br/&gt;&amp;lt;Lore&amp;gt; And the other cat licks it off, and likes the first cat, because it tastes like butter. &lt;br/&gt;&amp;lt;Lore&amp;gt; As I said, it didn't work. &lt;br/&gt;&amp;lt;agent_orange&amp;gt; you read sopmewhere to put butter on the cats foreWHAT THE FUCK WERE YOU THINKING &lt;br/&gt;&amp;lt;tieboy&amp;gt; rub the two cats together vigorously until they smell like each other &lt;br/&gt;&amp;lt;agent_orange&amp;gt; piss on them both at the same time &lt;br/&gt;&amp;lt;tieboy&amp;gt; KITTY TASTES LIKE BUTTER &lt;br/&gt;&amp;lt;raven&amp;gt; It's more fun to put tape on their feet. &lt;br/&gt;&amp;lt;agent_orange&amp;gt; why not do both &lt;br/&gt;&amp;lt;agent_orange&amp;gt; and then get out the handycam &lt;br/&gt;&amp;lt;Lore&amp;gt; I believe what I was thinking was &amp;quot;Maybe it will work. And&lt;br /&gt;even if it doesn't, I get to butter the cat's forehead.&amp;quot; &lt;br/&gt;&amp;lt;agent_orange&amp;gt; AFHV would *love* some footage of sticky-pawed,&lt;br /&gt;freshly buttered cats trying in vain to avoid a stream of steaming&lt;br /&gt;miller lite &lt;br/&gt;&amp;lt;Samwise&amp;gt; You know what helps with feuding cats, Lore? Sending me lots of cash. &lt;br/&gt;&amp;lt;agent_orange&amp;gt; now, see, I read somewhere -- &lt;br/&gt;&amp;lt;agent_orange&amp;gt; I think it was leviticus &lt;br/&gt;&amp;lt;agent_orange&amp;gt; -- that what you should do is frost them &lt;br/&gt;&amp;lt;agent_orange&amp;gt; betty crocker, right out of the can &lt;br/&gt;&amp;lt;raven&amp;gt; Chocolate or buttercream? &lt;br/&gt;&amp;lt;Leth&amp;gt; rave: go chocolate, buttercreme isn't pareve &lt;br/&gt;&amp;lt;CrazyClimber&amp;gt; you're frosting meat? &lt;br/&gt;&amp;lt;agent_orange&amp;gt; and then there'a always Cat Wellington &lt;br/&gt;&amp;lt;agent_orange&amp;gt; &amp;quot;What are you doing in the kitchen, dear?&amp;quot; &amp;quot;Just buttering the cat, pumpkin!&amp;quot; &lt;br/&gt;&amp;lt;agent_orange&amp;gt; &amp;quot;Why don't you baste the chicken while you're at&lt;br /&gt;it, too, dear?&amp;quot; &amp;quot;Baste the ... *light bulb* ...Sure! Sure, I'll 'baste&lt;br /&gt;the chicken'!&amp;quot; &lt;br/&gt;&amp;lt;CrazyClimber&amp;gt; a google images search for &amp;quot;buttered cat&amp;quot; returns a picture of isaac hayes &lt;br/&gt;&amp;lt;agent_orange&amp;gt; chocolate salty cat balls&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href="http://bash.org/?search=butter&amp;amp;sort=0&amp;amp;show=25"&gt;More snippets from bash.org involving butter.&lt;/a&gt;&lt;br type="_moz"/&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114708463355056967?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114708463355056967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114708463355056967' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114708463355056967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114708463355056967'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/butter.html' title='Butter?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114670242489277970</id><published>2006-05-03T17:23:00.000-07:00</published><updated>2006-05-04T16:05:16.323-07:00</updated><title type='text'>Camera phone pics</title><content type='html'>Josh, Butler (Cubey), Johan, Dave, and I all went out last Saturday night to Gordon Biersche Restaraunt. Good times were had by all, as you can see.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/0429062246.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/0429062246.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Johan got yanked from our dinner table to go dance with a random bachelorette. He, of course, brought his beer.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/0430060337.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/0430060337.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Dave got a little sleepy after we went out.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/0307061942.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/0307061942.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Butler showing his facsist heritage with his laptop cover hat.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/0428062202.0.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/0428062202.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Kiet also a little sleep after a long day in the &lt;a href="http://csclub.cs.sjsu.edu"&gt;CS Club&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114670242489277970?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114670242489277970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114670242489277970' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114670242489277970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114670242489277970'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/camera-phone-pics.html' title='Camera phone pics'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114655024245377330</id><published>2006-05-01T23:07:00.000-07:00</published><updated>2006-05-01T23:10:42.463-07:00</updated><title type='text'></title><content type='html'>On the whole human beings want to be good, but not too good, and not quite all the time.&lt;br /&gt;  - George Orwell&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114655024245377330?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114655024245377330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114655024245377330' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114655024245377330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114655024245377330'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/05/on-whole-human-beings-want-to-be-good.html' title=''/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114592600778452196</id><published>2006-04-24T17:44:00.000-07:00</published><updated>2006-04-24T17:46:47.810-07:00</updated><title type='text'>Another quote from Google Personal Homepage</title><content type='html'>The man of knowledge must be able not only to love his enemies but also to hate his friends.&lt;br /&gt;  - Friedrich Nietzsche&lt;br /&gt;&lt;br /&gt;I really like this statement. I think if you don't have the ability to disagree or approve of anyone, whether friend or foe, then you remove your ability to remain unbiased.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114592600778452196?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114592600778452196/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114592600778452196' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114592600778452196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114592600778452196'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/another-quote-from-google-personal.html' title='Another quote from Google Personal Homepage'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114575543756752304</id><published>2006-04-22T18:12:00.000-07:00</published><updated>2006-04-22T18:47:38.690-07:00</updated><title type='text'>Apparently there are some websites on Prolog</title><content type='html'>A while back I made the comment that it was annoyingly difficult to find websites that talked about the programming language Prolog. A reader of my blog set me straight when he sent me the following list. I should note that I have not verified any of this exhaustively, but most sites do seem to have some good information.&lt;br /&gt;&lt;div style="overflow: auto; height: 300px; font-size: small;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;!-- This is an automatically generated file.  It will be read and overwritten.  Do Not Edit! --&gt;      &lt;dl&gt;&lt;p&gt;  &lt;/p&gt;&lt;dt&gt;&lt;a href="http://www.cs.ubc.ca/spider/poole/ci/ci_code.html" add_date="315884818" last_visit="1064612546" last_modified="1013231493"&gt;*** Prolog Code from book- Computational Intelligence - Poole, Mackworth and Goebel&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cbl.leeds.ac.uk/%7Epaul/prologbook/" add_date="315884818" last_visit="1032202475" last_modified="1021621748"&gt;*** Prolog Programming A First Course&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://archive.comlab.ox.ac.uk/logic-prog.html" add_date="315884818" last_visit="981170346" last_modified="986833789"&gt;*** The World Wide Web Virtual Library: Logic Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.it.kth.se/edu/gru/Logprog/" add_date="1005190445" last_visit="1005190417"&gt;**** 2G1121 Logic Programming - Notes, Links and Tutorials on Prolog ****&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cis.temple.edu/%7Epwang/203-AI/CIS203.htm" add_date="1094053077" last_visit="1094053044"&gt;***** CIS203 Introduction to AA( - Dr. Pei Want Prolog *****&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.dcs.qmul.ac.uk/%7Emmh/prolog_links.html" add_date="1049906951" last_visit="1081400092" last_modified="1037099738"&gt;***** Index of Various Prolog Tutorials&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://pauillac.inria.fr/%7Ederansar/prolog/docs.html" add_date="1108919427" last_visit="1113713500"&gt;***** Prolog: The ISO Standard Documents&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Edtai/projects/ALP/TPLP/TPLP_CONTENTS/TPLP_CONTENTS.html" add_date="1108924475" last_visit="1109113547"&gt;***** Theory and Practice of Logic Programming - Prolog - current as of 2005&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ci.uc.pt/oolpr/oolpr.html" add_date="949218154" last_visit="1105766171" last_modified="1009056443"&gt;***Object-Oriented Logic Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.coli.uni-saarland.de/%7Ekris/nlp-with-prolog/html/node31.html#lecture5" add_date="1120145609" last_visit="1120149259"&gt;6 Definite Clause Grammars&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.colloquial.com/tlg/cgi.html" add_date="1129921511" last_visit="1129953604"&gt;A Prolog CGI Interface - Bob Carpenter&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.kuro5hin.org/story/2004/2/25/124713/784" add_date="1078197708" last_visit="1078197701"&gt;A Prolog Introduction for Hackers || kuro5hin.org&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cse.msu.edu/%7Ecse440/Labs/Lab5/astutorial_prolog.html" add_date="1113240712" last_visit="1113240708"&gt;A Short Tutorial on Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cbl.leeds.ac.uk/%7Etamsin/prologtutorial/" add_date="974443427" last_visit="974443415" last_modified="927618742"&gt;A Short Tutorial on Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://education.leeds.ac.uk/%7Etamsin/prologtutorial/" add_date="1081400051" last_visit="1081400035"&gt;A Short Tutorial on Prolog - Tamsin Treasure-Jones&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cs.wwc.edu/%7Ecs_dept/KU/PR/Prolog.html#inc" add_date="1113836284" last_visit="1113836241"&gt;A. Aaby - Prolog Tutorial - Prolog in One Page&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.geekster.com/activex_extensions_to_swi_prolog.html" add_date="1005885359" last_visit="1080949633" last_modified="1039930918"&gt;ActiveX Extensions to SWI Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://logicmoo.sourceforge.net/SwiActX/activex_extensions_to_swi_prolog.htm" add_date="1080949705" last_visit="1080949692"&gt;ActiveX Extensions to SWI Prolog - a second source&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.findarticles.com/p/articles/mi_m2483/is_2_23/ai_88702818/pg_2" add_date="1105662027" last_visit="1105662007"&gt;AI Magazine: TALPS: the T-AVB automated load-planning system - a Prolog-based system&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.berkeley.edu/%7Erussell/prog.html" add_date="315884818" last_visit="315884818" last_modified="1006338459"&gt;AI Programming Resources&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amazon.com/exec/obidos/tg/browse/-/3987/14/ref=br_lpsp_pg/103-5216299-2416633?" add_date="1113331360"&gt;Amazon.com: Books / Subjects / Computers &amp; Internet / Programming / Languages &amp;amp; Tools / Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amazon.com/exec/obidos/tg/detail/-/0387183132/qid=1102804401/sr=1-1/ref=sr_1_1/104-0009109-8757520?v=glance&amp;s=books" add_date="1102804746" last_visit="1102804743"&gt;Amazon.com: Books: Prolog by Example: How to Learn, Teach and Use It (Symbolic Computation-Artificial Intelligences)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amazon.com/exec/obidos/tg/detail/-/0077072162/qid=1099355000/sr=1-1/ref=sr_1_1/104-0979723-9194318?v=glance&amp;amp;s=books" add_date="1099355242" last_visit="1099355238"&gt;Amazon.com: Books: Prolog from the Beginning&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/AdventureInProlog/" add_date="974443346" last_visit="974443316" last_modified="1046679844"&gt;AMZI Adventure In Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/ExpertSystemsInProlog/xsipfrtop.htm" add_date="967259466" last_visit="1090455033" last_modified="1046679327"&gt;AMZI Book: Building Expert Systems in Prolog (complete)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/articles.htm" add_date="1008542554"&gt;AMZI Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/" add_date="315884818" last_visit="950483150" last_modified="1053962602"&gt;AMZI Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/articles/by_application.htm" add_date="1093799581" last_visit="1093799548"&gt;Amzi Prolog - Articles about Applications&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www-cse.uta.edu/%7Eholder/courses/cse5361/spr95/cse5361.html" add_date="315884818" last_visit="315884818" last_modified="859962842"&gt;Artificial Intelligence II (CSE 5361) Spring 1995 Lisp and Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.dcs.qmw.ac.uk/%7Emmh/AINotes/" add_date="974443657" last_visit="1081399854" last_modified="974283671"&gt;Artificial Intelligence in Prolog- course notes - Matthew Huntbach&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/303057" add_date="1094222632" last_visit="1103817898"&gt;ASPN : Python Cookbook : Pythologic -- Prolog syntax in Python&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://apax.net/swpets/plg_p3.html" add_date="1108921130" last_visit="1108921108"&gt;AxelD's S W P E T S Prolog Toolbox free software&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sci.brooklyn.cuny.edu/%7Ezhou/bprolog.html" add_date="315884818"&gt;B-Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.math.chalmers.se/%7Epeb/prolog/ovningar/ovning9L.html" add_date="1065059533" last_visit="1065059513"&gt;Balanced Binary trees in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://benjaminjohnston.com.au/page.php?prolog" add_date="1079246461" last_visit="1079246430"&gt;Bemjamin Johnston's Prolog pages - Prolog promoter&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/template.prolog?t=prolog" add_date="1115421950"&gt;Benjamin Johnston&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/template.prolog?t=pspdownload" add_date="1115421950"&gt;Benjamin Johnston&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/template.prolog?t=psp" add_date="1115420519" last_visit="1115420500"&gt;Benjamin Johnston - Prolog Server Pages&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://prologianet.univ-mrs.fr/" add_date="315884818" last_visit="978672399" last_modified="1043081256"&gt;Bienvenue sur le site de Prologia&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.binnetcorp.com/" add_date="315884818" last_visit="1004500946" last_modified="1042915575"&gt;BinNet Corp. HomePage - BinProlog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.binnetcorp.com/BinProlog/FAQ.html" add_date="315884818" last_visit="315884818" last_modified="1025625154"&gt;BinProlog FAQ - Links to many Tutorials!&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.binnetcorp.com/BinProlog/FAQ_extract.html" add_date="315884818" last_visit="315884818" last_modified="1050180380"&gt;BinProlog FAQ and 4 Tutorials!&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.fruitfly.org/%7Ecjm/blip/serval.html#To%20find%20out%20more..." add_date="1129178464" last_visit="1129178447"&gt;Blip: Serval - Prolog as a server application language&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.fruitfly.org/%7Ecjm/blip/serval.html" add_date="1123687493" last_visit="1123687465"&gt;Blip: Serval Biomedical Logic Programming Prolog CGI pages&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.fruitfly.org/%7Ecjm/blip/" add_date="1123689611" last_visit="1123689598"&gt;Blipkit: Biomedical LogIc Programming Knowledge Integration Kit - Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.coli.uni-sb.de/%7Ekris/nlp-with-prolog/html/" add_date="1078527053" last_visit="1078527041"&gt;Book - Natural Language Processing Techniques in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.mtome.com/Publications/pnla.html" add_date="1119156575" last_visit="1119156536"&gt;Book - Prolog and Natural-Language Analysis - Fernando C. N. Pereira and Stuart M. Shieber&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://64.233.161.104/search?q=cache:MXJF1skLz-oJ:www.cs.kuleuven.ac.be/%7Edtai/projects/ALP/TPLP/reviews/files/review13.pdf+Review+of+%22Programming+in+Prolog+:+Using+the+ISO+Standard%22&amp;hl=en" add_date="1108925176" last_visit="1113747824"&gt;Book review - Clocksin &amp;amp; Mellish's new Programming in Prolog by Demoen&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.nps.navy.mil/people/faculty/rowe/book/book.html" add_date="1058238752" last_visit="1077517689"&gt;Book: "Artificial Intelligence through Prolog" by Neil C. Rowe prolog book&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://spivey.oriel.ox.ac.uk/mike/logic/index.html" add_date="1029446104" last_visit="1098410787"&gt;book: An Introduction to Logic Programming through Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ida.liu.se/%7Eulfni/lpp/" add_date="977197911" last_visit="1079500079" last_modified="974284196"&gt;Book: Logic, Programming and Prolog by Ulf Nilsson and Jan Maluszynski&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.comnets.rwth-aachen.de/%7Eost/private.html" add_date="315884818" last_visit="959889642" last_modified="1010666855"&gt;Brain Aid Prolog Home Page, BAP Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://burks.brighton.ac.uk/burks/language/" add_date="1105369704" last_visit="1105369678"&gt;BURKS - Programming languages - Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.oasis-open.org/cover/brml.html" add_date="979877578" last_visit="979877561" last_modified="1036535642"&gt;Business Rules Markup Language (BRML) - like Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cbbrowne.com/info/langothers.html#PROLOG" add_date="1020021219" last_visit="1020021200"&gt;CbBrowne's Prolog Links - Tutorials&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.insea.ac.ma/CGTools/PROLOG+CG.htm" add_date="1096932347" last_visit="1097039514"&gt;CGTools Prolog + Conceptual Graphs OOP&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cswww.essex.ac.uk/SNAP/Chris_Fox/" add_date="1126930270" last_visit="1126930241"&gt;Chris Fox's private page - Tcl/Tk to Prolog interface&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.phonetik.uni-muenchen.de/Mitarbeiter/draxler/draxler.html" add_date="1118433066" last_visit="1129219254"&gt;Christoph Draxler - Prolog to SQL Compiler&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.nyu.edu/pages/linguistics/workbook/lehner/" add_date="995062293" last_visit="995062289" last_modified="859672597"&gt;Christoph Lehner's Prolog Tree Draw Program&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.clip.dia.fi.upm.es/Software/index.html" add_date="994860731" last_modified="1046541174"&gt;CLIP Group Locally (Co-)Developed Software&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cl.cam.ac.uk/Teaching/2000/PrologAI/" add_date="1081399817" last_visit="1107533359"&gt;Clocksin PPT files et al - Prolog for Artificial Intelligence&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www-2.cs.cmu.edu/%7Esci-disc/Abstracts/naclp90.html" add_date="1115247930" last_visit="1115247895"&gt;CLP prolog and Chemical Reaction Pathways&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www-2.cs.cmu.edu/afs/cs.cmu.edu/project/ai-repository/ai/lang/prolog/0.html" add_date="1018152651" last_visit="1018152634"&gt;CMU Prolog Repository&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cogs.susx.ac.uk/local/books/" add_date="1064687770" last_visit="1064687752"&gt;Cogsweb Project Books - AI in Lisp and Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://perso.wanadoo.fr/colin.barker/" add_date="1100717409" last_visit="1100717383"&gt;Colin Barker's Home Page - LPA prolog code dynamic programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Eremko/prolog/faq/" add_date="967571147" last_visit="1129004901"&gt;comp.lang.prolog prolog FAQ&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://warbase.selwerd.cx/%7Edirk-jan/prolog/faq/txt/" add_date="1008542553" last_visit="1128466895"&gt;comp.lang.prolog prolog FAQ - old&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ifs.org.uk/%7Epopx/prolog/tools/files/contents.html" add_date="1017088649" last_visit="1044854490" last_modified="805744981"&gt;Contents of the DEC-10 Prolog Library&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.technion.ac.il/%7Edavid/cs236319.html" add_date="981165612" last_visit="981165599" last_modified="924462226"&gt;CS236319 - Programming Language Concepts - Home Page - Great Slides&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.ubc.ca/spider/poole/cs322/1999/modules.html" add_date="981425981" last_visit="1106348901" last_modified="945721514"&gt;CS322, 1999 Modules David Poole's Lecture notes on Computational Intelligence and Prolog - lots of code&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.trinc.nl/pages/forum/" add_date="315884818" last_visit="315884818" last_modified="936965399"&gt;Developer information about Trinc-Prolog, an Object Oriented Prolog for Windows&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.geocities.com/SiliconValley/Campus/7816/" add_date="968046637" last_visit="968046613" last_modified="1047751634"&gt;DGKS Prolog - Prolog in Java&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.vu.nl/%7Edick/Summaries/CS/PrologImplementation.html" add_date="1105489324" last_visit="1105489239"&gt;Dick Grune's Annotated Literature Lists - Prolog Implementation&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://perso.wanadoo.fr/colin.barker/lpa/dijkstra.htm" add_date="1031860626" last_visit="1031860608"&gt;Dijkstra's Shortest Path Algorithm - in Prolog Colin Barker&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://prologdoc.sourceforge.net/#faq_1" add_date="1118469279" last_visit="1118469277"&gt;Document your Prolog code!&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cl.cam.ac.uk/users/wfc/" add_date="1005189741" last_visit="1107533303" last_modified="1012766750"&gt;Dr W.F. Clocksin's Home Page Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ai.uga.edu/ftplib/ai-reports/ai198908.pdf" add_date="994574851"&gt;Dr. Michael A. Covington - Efficient Prolog : A Practical Guide (PDF)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://users.easystreet.com/ovid/presentations/logic/" add_date="1115853795" last_visit="1115853780"&gt;DRAFT -- Logic Programming in Perl -- DRAFT Perl and Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cse.unsw.edu.au/%7Etimm/pub/lang/prolog/edin/edin.html" add_date="1017087002" last_visit="1044854466"&gt;Edinburgh Prolog Library Tools - good source libraries&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://odur.let.rug.nl/%7Evannoord/CL97/" add_date="1040065532" last_visit="1040065504"&gt;Efficient Head Corner Parsing - ALVEY Natural Language Tools in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://twoday.tuwien.ac.at/Eleazar/" add_date="1126723799" last_visit="1126723781"&gt;Eleazar's Natural blog - Prolog Stuff Here&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://odur.let.rug.nl/%7Evannoord/papers/elex_prolog/a.html" add_date="1005971812" last_visit="1005971765" last_modified="956864996"&gt;Elex - Generate Prolog Tokenizers&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/family.html" add_date="1115421950"&gt;family.prolog source&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.faqs.org/faqs/prolog/resource-guide/part2/preamble.html" add_date="949878810" last_visit="1046836521" last_modified="1080820650"&gt;FAQ: Prolog Implementations 2/2 [Monthly posting]&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www-2.cs.cmu.edu/Groups/AI/html/faqs/lang/prolog/prg/part1/faq-doc-20.html" add_date="1108921386" last_visit="1132379720"&gt;FAQ: Prolog Resource Guide 1/2 [Monthly posting] - [1-19] The ISO Standard for Prolog and other Prolog standards&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.informatik.uni-freiburg.de/%7Edbis/florid/" add_date="949221396" last_visit="959889725" last_modified="986822794"&gt;FLORID Project&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.framerd.org/" add_date="956383827" last_visit="959889448" last_modified="1027732927"&gt;FramerD - Portable OO database w/ SCHEME interpreter - like Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://odur.let.rug.nl/%7Evannoord/Fsa/" add_date="980481786" last_visit="1107359878" last_modified="1039440688"&gt;FSA6.2xx: Prolog Finite State Automata Utilities - Set operations, Hashes et al&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/products/prolog_addons/customer_fuzzy2.htm" add_date="1077424447" last_visit="1093799661"&gt;Fuzzy Logic IF-THEN Rules in Amzi! Prolog - Scalable Monotonic Chaining Version&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/products/prolog_addons/customer_fuzzy1.htm" add_date="1077424293" last_visit="1077424274"&gt;Fuzzy Logic IF-THEN Rules in Amzi! Prolog - Singleton-Geometry and Centroid-Defuzzification Version&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://gsp.eduvax.net/" add_date="1115421950"&gt;General Server Pages&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://perso.wanadoo.fr/jgressier/" add_date="1044902053" last_visit="1044902025"&gt;GEOMETRIX - Geometry Tutor in visual Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://directory.fsf.org/prolog.html" add_date="1008542554"&gt;GNU Prolog - a Prolog Compiler - GNU Project - Free Software Foundation (FSF)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://gnuprologjava.sourceforge.net/" add_date="1067904708" last_visit="1067904704" last_modified="974108504"&gt;GNU Prolog for Java&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://directory.google.com/Top/Computers/Programming/Languages/Prolog/Implementations/" add_date="1078876365" last_visit="1078876361" last_modified="1080838158"&gt;Google Directory - Computers &gt; Programming &gt; Languages &gt; Prolog &gt; Implementations&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://groups-beta.google.com/group/comp.lang.prolog/browse_thread/thread/cd3e25c501c350e5/0367605728f1a085?q=Malpas+%22Prolog:+A+relational+language+and+its+applications%22&amp;_done=/groups?as_q=Malpas&amp;amp;num=10&amp;as_scoring=r&amp;amp;hl=en&amp;btnG=Google+Search&amp;amp;as_epq=Prolog:+A+relational+language+and+its+applications&amp;as_oq=&amp;amp;as_eq=&amp;as_ugroup=&amp;amp;as_usubject=&amp;as_uauthors=&amp;amp;as_umsgid=&amp;lr=&amp;amp;as_drrb=q&amp;as_qdr=&amp;amp;as_mind=12&amp;as_minm=5&amp;amp;as_miny=1981&amp;as_maxd=19&amp;amp;as_maxm=1&amp;as_maxy=2005&amp;amp;safe=images&amp;&amp;amp;_doneTitle=Back+to+Search&amp;&amp;amp;d#0367605728f1a085" add_date="1106147284" last_visit="1106147245"&gt;Google Groups : PROLOG Digest V5 #79 - Critique of Malpas' book&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://groups-beta.google.com/group/comp.lang.prolog/browse_thread/thread/3dd48491779d4b93/f2551ad1925ad5fb?q=%22PROLOG+Digest+V6+:+#3%22+group:comp.lang.prolog&amp;_done=/groups?q=%22PROLOG+Digest+V6+:+#3%22+group:comp.lang.prolog&amp;amp;qt_s=Search+Groups&amp;&amp;amp;_doneTitle=Back+to+Search&amp;&amp;amp;d#f2551ad1925ad5fb" add_date="1106148561" last_visit="1106148508"&gt;Google Groups : PROLOG Digest V6 #3 Richard Overbeek critiques Richard O'Keefe's critical style - see Malpas&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;threadm=1992Dec8.014215.20320@cs.sfu.ca&amp;amp;rnum=1&amp;prev=/groups?hl=en&amp;amp;ie=UTF-8&amp;scoring=r&amp;amp;q=is+prolog+decidable&amp;spell=1" add_date="1094839130" last_visit="1104985071"&gt;Google Groups: Is Prolog Complete Decidable Expressive Sound?&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?hl=en&amp;amp;amp;amp;amp;amp;lr=&amp;ie=UTF-8&amp;amp;threadm=1994May29.033411.4936%40cs.sfu.ca&amp;rnum=32&amp;amp;prev=/groups%3Fq%3Dgroup:comp.lang.prolog%2Bauthor:jamie%2540cs.sfu.ca%26hl%3Den%26lr%3D%26ie%3DUTF-8%26scoring%3Dr%26start%3D30%26sa%3DN" add_date="1094844745"&gt;Google Groups: View Thread "Jobs that require Prolog?"&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/search?hl=en&amp;q=%22difference+lists%22+prolog&amp;amp;btnG=Google+Search" add_date="1098414102" last_visit="1098414077"&gt;Google Search - Difference Lists in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;selm=1992Dec8.014215.20320%40cs.sfu.ca" add_date="1094844745"&gt;Google Search:&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?hl=en&amp;amp;amp;amp;amp;amp;lr=&amp;ie=UTF-8&amp;amp;scoring=r&amp;as_drrb=q&amp;amp;q=+erlang+with+Prolog&amp;btnG=Search" add_date="1096673228"&gt;Google Search: erlang with Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?hl=en&amp;amp;lr=lang_en&amp;scoring=r&amp;amp;as_drrb=q&amp;q=examples+%22difference+list%22+group:comp.lang.prolog&amp;amp;btnG=Search" add_date="1098245756" last_visit="1098245736"&gt;Google Search: Examples of Difference Lists in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/search?hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;q=FOPL+versus+description+logic&amp;amp;btnG=Search" add_date="1094054020"&gt;Google Search: FOPL versus description logic&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?q=group:comp.lang.prolog+author:jamie%40cs.sfu.ca&amp;hl=en&amp;amp;amp;amp;amp;amp;lr=&amp;ie=UTF-8&amp;amp;scoring=r&amp;start=30&amp;amp;sa=N" add_date="1094844745"&gt;Google Search: group:comp.lang.prolog author:jamie@cs.sfu.ca&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?q=group:comp.lang.prolog+author:jamie%40cs.sfu.ca&amp;start=30&amp;amp;amp;amp;amp;amp;hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;scoring=r&amp;amp;selm=1994May18.232122.18469%40cs.sfu.ca&amp;rnum=33" add_date="1094844745"&gt;Google Search: group:comp.lang.prolog author:jamie@cs.sfu.ca&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?q=jocelyn+paine+spreadsheet+group:comp.lang.prolog&amp;amp;amp;amp;amp;amp;hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;scoring=d&amp;amp;selm=9102161804.AA05920%40ucbvax.Berkeley.EDU&amp;rnum=1" add_date="1096651870"&gt;Google Search: jocelyn paine spreadsheet group:comp.lang.prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/search?hl=en&amp;amp;ie=ISO-8859-1&amp;q=learning+prolog" add_date="1062617531" last_visit="1062560953" last_modified="1062560953"&gt;Google Search: learning prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/search?hl=en&amp;amp;amp;amp;amp;amp;lr=&amp;ie=UTF-8&amp;amp;q=+predicate+calculus+and+Prolog&amp;btnG=Search" add_date="1094053878"&gt;Google Search: predicate calculus and Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/search?as_q=Prolog+and+2003&amp;amp;amp;amp;amp;amp;num=10&amp;hl=en&amp;amp;ie=ISO-8859-1&amp;btnG=Google+Search&amp;amp;as_epq=business+rules&amp;as_oq=&amp;amp;as_eq=&amp;lr=lang_en&amp;amp;as_ft=i&amp;as_filetype=&amp;amp;as_qdr=m3&amp;as_occt=any&amp;amp;as_dt=i&amp;as_sitesearch=&amp;amp;safe=images" add_date="1063476530" last_visit="1063474567" last_modified="1063474567"&gt;Google Search: Prolog and 2003 "business rules"&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/groups?hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;scoring=r&amp;amp;q=%22PROLOG+Digest%22&amp;btnG=Search" add_date="1092162907" last_visit="1092162865"&gt;Google Search: PROLOG Digest - a comp.lang.prolog publication&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://groups.google.ca/groups?q=Prolog+%22choice+point%22+defined&amp;amp;amp;amp;amp;amp;hl=en&amp;lr=&amp;amp;selm=2605@mulga.oz&amp;rnum=2" add_date="1113688757" last_visit="1113688727"&gt;Google Search: Prolog Lee Naish on Cut, Soft Cut &amp;amp; if&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/custom?hl=en&amp;lr=&amp;amp;ie=ISO-8859-1&amp;c2coff=1&amp;amp;amp;amp;amp;amp;cof=AWFID:0b9847e42caf283e;L:http://www.w3.org/Icons/w3c_home;LH:48;LW:72;BGC:white;T:black;LC:#000099;VLC:#660066;ALC:#ff3300;AH:left;&amp;domains=www.w3.org&amp;amp;q=prolog+semantic+web&amp;btnG=Google+Search&amp;amp;sitesearch=www.w3.org" add_date="1103179394" last_visit="1103179389"&gt;Google Search: prolog semantic web&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.google.com/search?hl=en&amp;lr=&amp;amp;amp;amp;amp;amp;ie=UTF-8&amp;q=RADIOWEB+Project&amp;amp;btnG=Search" add_date="1091518584" last_visit="1091518559"&gt;Google Search: RADIOWEB Project - CLIP Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://groups.google.com/groups?hl=en&amp;lr=&amp;amp;ie=UTF-8&amp;selm=9958@goanna.cs.rmit.oz.au&amp;amp;rnum=3" add_date="1044037975" last_visit="1044037948"&gt;Google Search: What is "memoization" or "tabling" in Prolog and LISP&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.jfsowa.com/talks/iccs04.htm" add_date="1094976027" last_visit="1094975976"&gt;Graphics and Languages for the FMF - Sowa - Elephant 2000 PrologIX&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.acm.org/sigmod/dblp/db/books/collections/gray88.html" add_date="971407519" last_visit="978672519" last_modified="1049381396"&gt;Gray/Lucas: Prolog and Databases&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/grips.html" add_date="1083947702" last_visit="1109117937"&gt;GRIPS - a pre-processor for functional programming in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.mff.cuni.cz/%7Ebartak/prolog/index.html" add_date="951201326" last_visit="951201326" last_modified="976688959"&gt;Guide to Prolog Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.complang.tuwien.ac.at/ulrich/gupu/" add_date="1113715081" last_visit="1113715079"&gt;GUPU - Teaching Prolog and constraints&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.half.com/cat/buy/prod.cgi?cpid=1617856&amp;aid=167876&amp;amp;pid=216178#full_prod_info" add_date="994817367" last_visit="1034975879" last_modified="1054186998"&gt;Half.com - T. van Le, Techniques of Prolog Programming with Implementation of Logical Negation &amp; Quantified Goals&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.be/%7Edtai/hipp/" add_date="1133850554" last_visit="1133850541"&gt;hipP: A high performance Prolog system with ILP&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.als.com/nalp/people/pbr/pbr.html" add_date="315884818" last_visit="315884818" last_modified="315884818"&gt;Home page of Peter Reintjes: Prolog Logic Programming Telephone Internet&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Ebmd/PrologProgrammingContests/" add_date="1094171959" last_visit="1113715950"&gt;Home Page of the Prolog Programming Contests&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.fuse.net/molnark/htmlif%7E1.htm" add_date="1081574355" last_visit="1081574353"&gt;HTML as a User Interface for a Prolog Program&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://paul.rutgers.edu/quintus/" add_date="1017089950" last_visit="1017089928"&gt;http://paul.rutgers.edu/quintus/ - Quintus Prolog 3.3 Documentation&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.loria.fr/%7Estuber/prolog/prolog.el" add_date="999726371" last_visit="999726355" last_modified="999680010"&gt;http://www.loria.fr/~stuber/prolog/prolog.el - emacs settings for SWI prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ifcomputer.com/MINERVA/" add_date="1001598176" last_visit="1001598139" last_modified="1053884898"&gt;IF MINERVA /MINERVA/ - Prolog in Java&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ifcomputer.com/inap/inap2001/program/Title.html" add_date="1047271870" last_visit="1047271847"&gt;INAP2001 Program - Recent Papers on Prolog applications&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://webstore.ansi.org/ansidocstore/product.asp?sku=INCITS/ISO/IEC+13211-1-1995" add_date="1108922547" last_visit="1108922515"&gt;INCITS/ISO/IEC 13211-1-1995 ANSI ISO Prolog Standards Doc ansidocstore: Product: 'Information Technology - Prolog Language Part 1: General Core '&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/prolog/sql/" add_date="1122922547" last_visit="1122922528"&gt;Index of /prolog/sql Prolog to SQL translation&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://brownbuffalo.sourceforge.net/bprolog/puzzle_index.html" add_date="1099025927" last_visit="1099025908"&gt;Index of Logic Puzzles - Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.ms.mff.cuni.cz/%7Ebartak/prolog/" add_date="315884818" last_visit="315884818" last_modified="976688959"&gt;Interactive Prolog Guide&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.clip.dia.fi.upm.es/lpnet/lpnet.html" add_date="959922163" last_visit="1098812853" last_modified="945392580"&gt;Internet and WWW programming using LP and CLP Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.declarativa.pt/interprolog/" add_date="1113580728" last_visit="1113580725"&gt;InterProlog - a Prolog-Java interface&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://dev.servisoft.pt/interprolog/default.htm" add_date="315884818" last_visit="315884818" last_modified="968180576"&gt;InterProlog - a Prolog-Java interface&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://lacam.di.uniba.it:8000/systems/inthelex/" add_date="1087403885" last_visit="1087403836"&gt;INTHELEX - INcremental THEory Learner from EXamples - machine learning - ML - written in Prolog - alternative to PROGOL&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://tcl.sfs.uni-tuebingen.de/%7Ecornell/prolog/" add_date="1109202354" last_visit="1123266038"&gt;Introduction to prolog - Tom Cornell at Uni-Tuebingen&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/prolog/mathnotes/files/pms/pms.html" add_date="1109173439" last_visit="1109173422"&gt;Introduction to Prolog for Mathematicians - at Jocelyn Paine's site&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/prolog/mathnotes/files/contents.html" add_date="1095862132"&gt;Introduction to Prolog for Mathematicians:&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.unipr.it/%7Ebagnara/Papers/Abstracts/ALPN99a" add_date="1108922647" last_visit="1132379706"&gt;Is the ISO Prolog standard taken seriously?&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.bham.ac.uk/%7Epjh/prolog_course/iso_manual/iso_manual.html" add_date="1129221949" last_visit="1132379684"&gt;ISO Standard Prolog mini-manual&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.di.unipi.it/%7Eboerger/prologwam.html" add_date="1108923264" last_visit="1113708965"&gt;ISO-PROLOG and the Warren Abstract Machine - Algebraic representation of Prolog - proving programs true&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.cornell.edu/People/jcheney/" add_date="1091339897" last_visit="1091339869"&gt;James Cheney's Home Page - Logic programming Prolog category theory&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.csd.uwo.ca/faculty/andrews/" add_date="1094844745"&gt;Jamie Andrews&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ftponline.com/javapro/2003_07/magazine/columns/proshop/default.asp" add_date="1053554754" last_visit="1053554720"&gt;Java Pro - Prove It, Don't Compute It Prolog in Java&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://jude.sourceforge.net/jude/jude.html" add_date="1030865186" last_visit="1030865153"&gt;Java Uniform Document Environment uses XSB Prolog (like DataLog) to document development, including database design&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.exa.unicen.edu.ar/%7Eazunino/javalog.html" add_date="1067904685" last_visit="1067904682"&gt;JavaLog - Prolog interpreter written in Java(tm)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.jfsowa.com/pubs/index.htm" add_date="1094979455"&gt;JFS Biography&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ugosweb.com/jiprolog/index.shtml" add_date="1067973561" last_visit="1067973559" last_modified="1080837855"&gt;JIProlog - Java Internet Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://jlogic.sourceforge.net/" add_date="1078877357" last_visit="1113578879"&gt;JLog - Java-based Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/" add_date="1096651869" last_visit="1121299186"&gt;Jocelyn Paine&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/index.html" add_date="1083947702" last_visit="1126327953"&gt;Jocelyn Paine&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cse.psu.edu/%7Edale/lProlog/index.html" add_date="315884818" last_visit="1082264109" last_modified="1019944768"&gt;lambda Prolog Home Page&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://lambda.weblogs.com/discuss/msgReader$12171" add_date="1083947702"&gt;Lambda the Ultimate Prolog and Mercury Compared&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://grunge.cs.tu-berlin.de/vmlanguages.html" add_date="984520239" last_visit="984520222" last_modified="986216949"&gt;Languages for the Java VM - many Prologs&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://ranger.uta.edu/%7Eholder/teaching.html" add_date="1003465796" last_visit="1003465775" last_modified="1009434170"&gt;Lawrence B. Holder: Lisp AI and Prolog Courses&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.coli.uni-sb.de/%7Ekris/prolog-course/" add_date="1004672545" last_visit="1101756271" last_modified="1041192427"&gt;Learn Prolog Now! Tutorial - Blackburn Bos Striegnitz learn prolog now&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.dcs.kcl.ac.uk/teaching/units/cs2lap/notes.html" add_date="954184648" last_visit="954184648" last_modified="991801819"&gt;Learning Prolog - CS2LAP Notes&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.sprynet.com/%7Ehthedick/homepage.htm" add_date="1123088756" last_visit="1123088706"&gt;Lewis Language = Prolog Alternative with Logical, Functional &amp;amp; Procedural Modes&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kaminari.scitec.kobe-u.ac.jp/logic/jprolog.html" add_date="1067904748" last_visit="1067904746" last_modified="1053096961"&gt;Links for Java Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.faqs.org/faqs/lisp-faq/part6/section-5.html" add_date="977417375" last_modified="1053755682"&gt;LISP FAQ [6-7] implementations of Prolog in Lisp?&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.lpa.co.uk/ind_pro.htm" add_date="996693425" last_visit="996693541" last_modified="1004659200"&gt;Logic Programming Associates LPA Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.icparc.ic.ac.uk/eclipse/software/loops/index.html" add_date="1059518183" last_visit="1059518154"&gt;Logical Loops in Prolog - The ECLiPSe Constraint Logic Programming System&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.mu.oz.au/%7Eswloke/logicweb.html" add_date="315884818" last_visit="966713065" last_modified="909533490"&gt;LogicWeb: Logic Programming for the World-Wide Web&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ci.uc.pt/logtalk/compatibility.html" add_date="315884818" last_visit="1095981589" last_modified="1049293929"&gt;Logtalk compatibility&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ci.uc.pt/logtalk/logtalk.html" add_date="315884818" last_visit="1095981577" last_modified="1049293926"&gt;Logtalk home page&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.isi.edu/isd/LOOM/" add_date="1081377341" last_visit="1093714308"&gt;Loom - a Prolog like language - description logic&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www-lp.doc.ic.ac.uk/UserPages/staff//ft/alp/net/index-world.html" add_date="951202489" last_visit="978672443" last_modified="887891500"&gt;LP and the World&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.lpa.co.uk/" add_date="315884818" last_visit="1131747579" last_modified="1004659200"&gt;LPA Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://perso.wanadoo.fr/colin.barker/lpa/lpa.htm" add_date="315884818" last_visit="1031860669" last_modified="1053969197"&gt;LPA Win-Prolog Goodies - Lots of Prolog Code&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/%7Elogalg/" add_date="992494391" last_visit="1065796674" last_modified="1004120612"&gt;Lógica Algorítmica - Course/tutorial in Logic Programming CLP, Pillow, WWW with Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.itmasters.com/" add_date="315884818" last_visit="1018479668" last_modified="1019416902"&gt;MasterProlog (formerly BIM)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://burks.brighton.ac.uk/burks/language/prolog/pms/pms.htm" add_date="1105369495" last_visit="1109173377"&gt;Mirror - Introduction to Prolog for Mathematicians - by Jocelyn Paine&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.practical-applications.co.uk/Expo97/CompulogNetTutorial.html" add_date="315884818" last_visit="1115733482" last_modified="903952473"&gt;More on Pillow and Manuel Hermenegildo.&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.magma.ca/%7Ebourassa/warpstck.htm" add_date="950743378" last_visit="978672719" last_modified="996955320"&gt;Native OS/2 Logic Programming 1&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.nyu.edu/pages/linguistics/ling.html#five" add_date="968046273" last_visit="968046250" last_modified="877392040"&gt;Natural Language - Grammars and Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.coli.uni-saarland.de/%7Ekris/nlp-with-prolog/html/" add_date="1120145589" last_visit="1120145582"&gt;Natural Language Processing Techniques in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Edtai/projects/ALP/newsletter/may04/nav/nettalk.html" add_date="1102805064" last_visit="1102805038"&gt;Nettalk - Do My Homework and Mainstreaming Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cetus-links.org/oo_prolog.html" add_date="315884818" last_visit="949553394" last_modified="1038466650"&gt;Object-Oriented Language: Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ci.uc.pt/oolpr/systems.html" add_date="949218238" last_visit="949218238" last_modified="1009056442"&gt;Object-Oriented Logic Programming Resources&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://okmij.org/ftp/Prolog/" add_date="1128906744" last_visit="1129582849"&gt;Oleg on Prolog and Logic Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cogsci.uni-osnabrueck.de/%7Ehelmar/8.5000/" add_date="1078557185" last_visit="1078557153"&gt;Online Prolog course - Programming in Logic - Helmar Gust&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ai.sri.com/%7Eoaa/main.html" add_date="1046922743" last_visit="1046922727"&gt;Open Agent Architecture (OAA) - Uses Prolog - very current&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.orisa.de/" add_date="315884818" last_visit="315884818" last_modified="1053679869"&gt;Orisa Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.complang.tuwien.ac.at/ulrich/prolog_misc/systems.html" add_date="1050203315" last_visit="1050203300"&gt;Overview of Prolog Systems - Feature comparison&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://archive.comlab.ox.ac.uk/oucl.html" add_date="950158226" last_visit="950158226" last_modified="1052752556"&gt;Oxford University Computing Laboratory information&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://homepages.inf.ed.ac.uk/stg/research/Psharp/" add_date="1078715274" last_visit="1126704623" last_modified="1068130411"&gt;P#: A concurrent Prolog for .NET&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.hta-bi.bfh.ch/%7Ehew/informatik3/prolog/p-99/" add_date="1079416866" last_visit="1089770913"&gt;P-99: Ninety-Nine Prolog Problems - 99&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/prolog/gui/protcl/0.html" add_date="1126930392" last_visit="1126930372"&gt;Package: lang/prolog/gui/protcl/ Prolog interface to Tcl/Tk&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.practical-applications.co.uk/PACLP99/index.html" add_date="315884818" last_visit="315884818" last_modified="937328941"&gt;PACLP99&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.practical-applications.co.uk/PACLP99/inviteds.html#6" add_date="315884818" last_visit="315884818" last_modified="922212480"&gt;PACLP99 Invited Talks&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.info.unicaen.fr/%7Enugues/" add_date="1008542554" last_modified="1040626419"&gt;Page WEB Pierre Nugues - Prolog guy&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://users.info.unicaen.fr/%7Enugues/" add_date="315884818" last_modified="1047248418"&gt;Page WEB Pierre Nugues - Prolog guy&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.geocities.com/willowfung/" add_date="1004055913" last_visit="1004055892" last_modified="1018875582"&gt;PalmLog - Prolog for the Palm Pilot&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.comnets.rwth-aachen.de/%7Eost/BAP/bap.html" add_date="949875170" last_visit="949875170" last_modified="829665010"&gt;Parallel Prolog -- BAP Online Manuals&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.plogic.com/index.html" add_date="1049394214" last_visit="1049394195"&gt;Paralogic, Inc. - parallel prolog and Beowulf clusters&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://logic.csci.unt.edu/" add_date="1087659006" last_visit="1087659296"&gt;Paul Tarau's Prolog papers at North Texas&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.pcai.com/pcai/New_Home_Page/ai_info/pcai_prolog.html" add_date="951023741" last_visit="951023741" last_modified="1013831012"&gt;PC AI The Prolog Programming Language&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.sfu.ca/people/Faculty/cameron/Teaching/384/99-3/regexp-plg.html" add_date="978670309" last_visit="978670300" last_modified="1041540231"&gt;Perl Style Regular Expressions in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.clip.dia.fi.upm.es/miscdocs/pillow/pillow.html" add_date="315884818" last_visit="1115823366" last_modified="1045744939"&gt;PiLLoW Pages - Web Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.aber.ac.uk/compsci/Research/bio/dss/polyfarm/" add_date="1106355617" last_visit="1106354464"&gt;PolyFARM- Datalog Prolog Rule Mining&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ifcomputer.com/PrologCourse/" add_date="315884818" last_visit="1132379731" last_modified="980212198"&gt;Practical Standard Prolog Courseware Initiative - Tutorials - ISO http://www.complang.tuwien.ac.at/ulrich/gupu&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://dspace.dial.pipex.com/keylink/Prodata/prodata.htm" add_date="996693342" last_visit="996693289" last_modified="1041885582"&gt;ProData Prolog interface to ODBC relational database (ProDBI)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.ubc.ca/spider/poole/" add_date="1064614182" last_visit="1064614155"&gt;Professor David Poole - Prolog code - Bayesian networks&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.nps.navy.mil/people/faculty/rowe/" add_date="1058245509" last_visit="1058245474"&gt;Professor Neil C. Rowe: many Prolog papers and algorithms - Naval Search&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ida.his.se/ida/%7Ebjorne/GA/Simuleringar/ProGA/" add_date="1025239954" last_visit="1025239936"&gt;ProGA, index Genetic Algorithms in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.id.cbs.dk/undervis/mld_prog/fs02/10thWeek2002Lesson.htm" add_date="1046754411" last_visit="1046754422"&gt;Programming in Prolog - Lecture notes on NLP&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ccs.neu.edu/home/dorai/schelog/schelog.html" add_date="960184519"&gt;Programming in Schelog - Prolog in LISP&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.sunysb.edu/%7Ewarren/xsbbook/" add_date="1114287277" last_visit="1114287258"&gt;Programming in Tabled Prolog (very) DRAFT 1 - David S. Warren&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.sunysb.edu/%7Ewarren/xsbbook/book.html" add_date="1045165338" last_visit="1045165323"&gt;Programming in Tabled Prolog (very) DRAFT 1 - prolog book&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://swi.psy.uva.nl/projects/xpce/UserGuide/" add_date="949880804" last_visit="949880804" last_modified="1041862574"&gt;Programming in XPCE/Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cs.joensuu.fi/pages/trishina/lecture11n.html" add_date="1037421909" last_visit="1037421888"&gt;PROGRAMMING LANGUAGE CONCEPTS - Prolog and Logic Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cs.wwc.edu/%7Eaabyan/AI/Prolog.html" add_date="1094053878" last_visit="1094053968"&gt;Prolog and AI&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.well.com/user/jax/rcfb/prolog.html" add_date="315884818" last_visit="982622775" last_modified="1047263518"&gt;Prolog and Logic Programming Links&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Edtai/projects/ALP/newsletter/archive_93_96/net/systems/mercury1.html" add_date="1123562769" last_visit="1123562767"&gt;Prolog and Mercury Compared&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://odur.let.rug.nl/%7Evannoord/prolog-rx/PrologAndRegex.html" add_date="1098903643" last_visit="1098903639"&gt;Prolog and Regular Expressions&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.sunysb.edu/%7Ewarren/xsbbook/node11.html" add_date="1045166725" last_visit="1045169287" last_modified="933432746"&gt;Prolog as a Database Query Langauge&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.nyu.edu/pages/linguistics/courses/v610003/downl.html" add_date="995062535" last_visit="995062395" last_modified="854124820"&gt;Prolog Book: Natural Language Computing: A Generative grammar in Prolog nyu&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kaminari.istc.kobe-u.ac.jp/PrologCafe/" add_date="1079590493" last_visit="1079590479"&gt;Prolog Cafe: A Prolog to Java Translator System&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.w3.org/People/cmsmcq/2004/lgintro.html" add_date="1118552154" last_visit="1118552135"&gt;Prolog DCGs - A brief introduction to definite clause grammars and definite clause translation grammars&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.w3.org/People/cmsmcq/2004/podcg.html" add_date="1118552197" last_visit="1118552182"&gt;Prolog DCGs - A definite-clause grammar representation of an XSD schema&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.ms.mff.cuni.cz/%7Ebartak/prolog/learning.html" add_date="1062561189" last_visit="1062561177"&gt;Prolog Guide - Prolog in Examples - tutorial&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.ms.mff.cuni.cz/%7Ebartak/prolog/sorting.html" add_date="1109114863" last_visit="1109114860"&gt;Prolog Guide - Sorting&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://prologianet.fr/US/societeUS/prologIIPUS.html" add_date="1128010820" last_visit="1128010799"&gt;Prolog II+ by Alan Colmerauer&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://ioctl.org/logic/prolog-latest" add_date="964808449" last_visit="1122266444" last_modified="993552508"&gt;Prolog in Javascript (!)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://prologianet.fr/US/societeUS/PrologIVUS/New_indexUS.html" add_date="1128009060" last_visit="1128009035"&gt;Prolog IV - By Alan Colmerauer&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www-2.cs.cmu.edu/Groups/AI/jobs/prolog/2000_01_19_19:17:03" add_date="1046493900" last_visit="1046492839" last_modified="948327423"&gt;Prolog Job&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="ftp://ftp.cs.cmu.edu/user/ai/jobs/prolog/" add_date="995865622"&gt;prolog job listings&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cogs.susx.ac.uk/users/sharonw/crs/aiprog/.index-Lectures.html" add_date="1041726745" last_visit="1041726718"&gt;Prolog Lecture Timetable - Class Prolog notes and lectures&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.prologonlinereference.org/psp.psp" add_date="1132339447" last_visit="1132339445"&gt;Prolog Online Reference | Prolog Server Pages&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.binnetcorp.com/BinProlog/demos/query.html" add_date="994881692" last_visit="1043812168" last_modified="952661380"&gt;Prolog Online: BinProlog Quick Query Evaluator&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://computing.unn.ac.uk/staff/cgpb4/prologbook/" add_date="1100720456" last_visit="1111557709"&gt;Prolog Programming A First Course - by Paul Brna - mirror&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://computing.unn.ac.uk/staff/cgpb4/prologbook/book.html" add_date="1032202534" last_visit="1113235498"&gt;Prolog Programming A First Course - Paul Brna - Mirror of http://cbl.leeds.ac.uk/~paul/prologbook/&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.coli.uni-saarland.de/%7Ekris/learn-prolog-now/" add_date="1120159177"&gt;Prolog Programming: a do-it-yourself course for beginners&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.cmu.edu/afs/cs.cmu.edu/project/ai-repository/ai/html/faqs/lang/prolog/prg/top.html" add_date="995865622" last_visit="1090340977" last_modified="1054186851"&gt;Prolog Resource Guide&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.cmu.edu/Web/Groups/AI/html/faqs/lang/prolog/prg/top.html" add_date="315884818" last_visit="985582060" last_modified="1041542910"&gt;Prolog Resource Guide - once a prolog FAQ - circa 1997&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.prologonlinereference.org/download.psp" add_date="1128445843" last_visit="1128445823"&gt;Prolog Server Pages for SWI Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cse.unsw.edu.au/%7Etimm/pub/lang/prolog/index.html" add_date="315884818" last_visit="315884818" last_modified="908288302"&gt;Prolog Tools&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cs.wwc.edu/%7Ecs_dept/KU/PR/Prolog.html" add_date="974443568" last_visit="995084303" last_modified="862611877"&gt;Prolog Tutorial&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.arch.su.edu.au/%7Ejose/prolog/tutorial.html" add_date="954184439" last_visit="964664301" last_modified="806908156"&gt;Prolog Tutorial&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.intranet.csupomona.edu/%7Ejrfisher/www/prolog_tutorial/pt_framer.html" add_date="315884818" last_visit="1111556605" last_modified="946927231"&gt;Prolog Tutorial&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://cbl.leeds.ac.uk/%7Epaul/prologbook/node34.html" add_date="996631681" last_visit="1078557280" last_modified="927576294"&gt;Prolog Tutorial - Left off here!&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.csupomona.edu/%7Ejrfisher/www/prolog_tutorial/contents.html" add_date="1034879874" last_visit="1111556693" last_modified="1040951346"&gt;Prolog Tutorial -- Contents&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.compapp.dcu.ie/%7Ealex/LOGIC/start.html" add_date="974443508" last_visit="1081399909" last_modified="850757010"&gt;Prolog Tutorials: An Introduction to PROLOG - James Power&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/articles/prolog_under_the_hood.htm" add_date="1113688094" last_visit="1113688348"&gt;Prolog Under the Hood: An Honest Look&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.aliensystems.com/worlds/" add_date="966744618" last_visit="978672564" last_modified="981156405"&gt;Prolog Virtual Worlds with SWI Prolog and Microsoft&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ai.uga.edu/%7Emc/ProNTo/index.html" add_date="1106415202" last_visit="1106415199"&gt;ProNTo - Prolog Natural Language Tools&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.otago.ac.nz/staffpriv/ok/pllib.htm" add_date="1117755477" last_visit="1117755459"&gt;Proposed ISO Prolog Changes &amp; Prolog Library - Richard A. O'Keefe&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://comas.soi.city.ac.uk/prova/" add_date="1096398925" last_visit="1096398893"&gt;Prova language for rule based scripting of java - like Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/family.prolog?q=parent%28tom%2CR%29" add_date="1115421950"&gt;PSP Demo&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/prolog/library.html" add_date="1095861470" last_visit="1095861466"&gt;Public-domain Prolog library&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ifs.org.uk/%7Epopx/prolog/library.html" add_date="1036640956" last_visit="1057858379" last_modified="896967248"&gt;Public-domain Prolog library&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/isl/quintus/" add_date="995145255" last_visit="1018156381" last_modified="1047689848"&gt;Quintus Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/isl/quintus/32pc.htm" add_date="315884818" last_visit="995144915" last_modified="1041542374"&gt;Quintus Prolog for Windows NT&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://dbpubs.stanford.edu:8090/pub/1995-14" add_date="1086395844" last_visit="1086395829"&gt;Ramakrishnan, R.; Ullman, J.: A Survey of Research in Deductive Database Systems - Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.w3.org/People/cmsmcq/2005/rfc3986.dcg" add_date="1118552234" last_visit="1118552203"&gt;rfc3986 URL in Prolog DCG form&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ics.mq.edu.au/%7Erolfs/" add_date="1129921416" last_visit="1129954176"&gt;Rolf Schwitter - Implementing Prolog-Run WWW Sites&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.ms.mff.cuni.cz/%7Ebartak/prolog.old/learning.html" add_date="1116301841" last_visit="1116301816"&gt;Roman Bartak LEARNING PROLOG VIA EXAMPLES 1997&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.mff.cuni.cz/%7Ebartak/constraints/" add_date="315884818"&gt;Roman Bartak's Guide to Constraint Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cis.upenn.edu/%7Escreamer-tools/home.html" add_date="1092930286" last_visit="1092936199"&gt;Screamer Tool Repository&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://search.cpan.org/dist/Language-Prolog-Yaswi/Yaswi.pm" add_date="1126704199" last_visit="1126704197"&gt;search.cpan.org: Language::Prolog::Yaswi - Yet another interface to SWI-Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://search.cpan.org/author/SALVA/Language-Prolog-Yaswi-0.02/Yaswi.pm" add_date="1043253547" last_visit="1043253545"&gt;search.cpan.org: Language::Prolog::Yaswi - Yet another interface to SWI-Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://seek.ecoinformatics.org/Wiki.jsp?page=Sparrow" add_date="1099158532" last_visit="1099158481"&gt;SEEK-Wiki: Sparrow - algorithms and techniques from logic-based knowledge representation and databases Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.fuse.net/molnark/Au-emr%7E1.htm" add_date="1081574344" last_visit="1081574343"&gt;Serving Multiple HTML Clients from a Prolog application&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/sicstus/docs/latest/html/sicstus.html/Term-Compare.html" add_date="1082242452" last_visit="1128446186"&gt;SICStus Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.lania.mx/biblioteca/manuales/sicstus/sicstus_12.html" add_date="1095894355" last_visit="1105143081"&gt;SICStus Prolog - Programming Tips and Examples&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/isl/sicstus/" add_date="315884818" last_visit="1115823706" last_modified="1067512231"&gt;SICStus Prolog 3&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/sicstus/docs/latest/html/sicstus.html/index.html#Top" add_date="1082242452" last_visit="1105143089"&gt;SICStus Prolog Documentation Index&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/isl/sicstus/docs/latest/html/sicstus.html/" add_date="989374736" last_modified="1054187248"&gt;SICStus Prolog Documentation manual&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/%7Ealf/prolog/akl/library/" add_date="1121492336" last_visit="1121492305"&gt;SICSTUS Prolog libraries - sets, lists, math,graphs, unix routines o'keefe's stuff&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.sics.se/mailing-lists/sicstus-users.html/maillist.html" add_date="1077516771" last_visit="1077516745"&gt;SICStus Prolog Mailing List Archives - e-mail&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/simple.prolog" add_date="1115421950"&gt;Simple PSP Demo&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.benjaminjohnston.com.au/simple.html" add_date="1115421950"&gt;simple.prolog source&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.jfsowa.com/index.htm" add_date="1094979455" last_visit="1133485032"&gt;Site Directory&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="ftp://ftp.mindspring.com/users/jpoplett/sprolog.tar.Z" add_date="995482949" last_visit="995482889"&gt;Small Prolog version 2, by Henri de Feraudy&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.yorku.ca/course_archive/1998-99/F/3401/lectures/340198-10-26HTML/" add_date="1099025935" last_visit="1099025933"&gt;solving a logic puzzle with Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/articles/cappuzzle.txt" add_date="1099025961" last_visit="1099025940"&gt;solving crypto-arithmetic puzzles with Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://sourceforge.net/projects/prologdoc/" add_date="1115657518" last_visit="1115657481"&gt;SourceForge.net: PrologDoc -Prolog tool to document your Prolog applications&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.spherum.com/" add_date="977357040" last_visit="977357002" last_modified="1041312558"&gt;Spherum Home Page - a LISP- and Prolog- like functional language&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/spreadsheet_structure_discovery.html" add_date="1083947166" last_visit="1083947139"&gt;Spreadsheets + Prolog - Spreadsheet structure discovery with logic programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/prolog/impl/prolog/sbprolog/0.html" add_date="969392848" last_visit="969392818" last_modified="981155637"&gt;Stony Brook Prolog for MS-DOS at CMU repository&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.huji.ac.il/%7Enaomil/termilog.php" add_date="1111872732" last_visit="1111872709"&gt;Submit program to TermiLog - Tests whether a Prolog program terminates&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cogs.susx.ac.uk/lab/nlp/nlcl.html" add_date="1064687967" last_visit="1064687944"&gt;Sussex NLCL: Home - Natural Language and Computational Linguistics - Prolog Lisp&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.xml.com/pub/a/2001/07/25/prologrdf.html" add_date="996380763" last_visit="1116823845" last_modified="1054186927"&gt;SWI Prolog dll use with RDF Mozilla&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.bildung.hessen.de/abereich/inform/skii/material/swing/indexe.htm" add_date="1017432648" last_visit="1078555142"&gt;SWI Prolog Editor -= not by SWI&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.swi-prolog.org/packages/http.html#sec:3.6" add_date="1115421950"&gt;SWI-Prolog HTTP support&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://gollem.science.uva.nl/SWI-Prolog/mailinglist/archive/2005/q2/" add_date="1082176041" last_visit="1121908420" last_modified="1118290125"&gt;SWI-Prolog mailing list archive&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.swi.psy.uva.nl/projects/SWI-Prolog/mailinglist/archive/date.html" add_date="960264279" last_visit="1078555191" last_modified="1054171207"&gt;SWI-Prolog mailing list archive By Date SWI PROLOG&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.swi.psy.uva.nl/projects/SWI-Prolog/mailinglist/archive/2004/q3/0266.html" add_date="1095862132"&gt;SWI-Prolog mailing list: Re: [SWIPL] Why Use Prolog?&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.probp.com/manual/node119.html" add_date="1099512011" last_visit="1099511986"&gt;Tabling in Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.mu.oz.au/research/aditi/" add_date="315884818" last_visit="315884818" last_modified="1042771442"&gt;The Aditi Deductive Database&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Edtai/projects/ALP/index.html" add_date="1108924989" last_visit="1129006434"&gt;The Association of Logic Programming (ALP)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.kuleuven.ac.be/%7Edtai/projects/ALP/" add_date="1094358363" last_visit="1111863465"&gt;The Association of Logic Programming (ALP)&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.unipr.it/China/Benchmarks/" add_date="1037046570" last_visit="1037046555"&gt;The China Benchmark Suite - Prolog Benchmark&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/Software/Ciao/index.html#ciao" add_date="1103290905" last_visit="1115180625"&gt;The Ciao Prolog Development System WWW Site&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.clip.dia.fi.upm.es/Software/Ciao/" add_date="994860731" last_visit="1038027146" last_modified="1039725298"&gt;The Ciao Prolog Development System WWW Site&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/Software/Ciao/" add_date="952281649" last_visit="1042482097" last_modified="1041939779"&gt;The Ciao Prolog Development System WWW Site&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/Software/Ciao/ciao_html/ciao_2.html#SEC22" add_date="1103290905"&gt;The Ciao Prolog System - Introduction&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/Software/Ciao/ciao_html/ciao_152.html" add_date="1122922500" last_visit="1122922498"&gt;The Ciao Prolog System - Prolog to SQL translator&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/Software/Ciao/ciao_html/ciao_toc.html" add_date="1081640107" last_visit="1082523585"&gt;The Ciao Prolog System - Table of Contents&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/Software/Ciao/ciao_html/ciao_87.html#SEC333" add_date="1081640107"&gt;The Ciao Prolog System - The socket interface&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="file:///C:/Program%20Files/ciao-1.10p5Win32/doc/reference/ciao_html/ciao_12.html#SEC95" add_date="1107822949" last_visit="1117599302"&gt;The Ciao Prolog System - Using Ciao inside GNU emacs&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.clip.dia.fi.upm.es/Software/Ciao/ciao_html/ciao_toc.html#TOC314" add_date="968534923" last_visit="1065796581" last_modified="1024076525"&gt;The Ciao Prolog System Reference Manual - Table of Contents&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ncc.up.pt/%7Evsc/Yap/clpbn/" add_date="1107359753" last_visit="1107359725"&gt;The CLP(BN) System - integrates Bayesian networks with Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.it.kth.se/edu/gru/Logprog/slides_files/v3_slide0255_notes_pane.htm" add_date="1005193153" last_visit="1005193118" last_modified="1054187953"&gt;The Course Logic Programming 2G1121 - Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.chello.no/%7Edudley/#section5" add_date="1063925510" last_visit="1063925483"&gt;The Dudley Page - Book "Programming Expert Systems in Prolog" by Merritt&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.chello.no/%7Edudley/#section7" add_date="1104122846" last_visit="1104122832"&gt;The Dudley Page - Prolog Programming &amp; Puzzles&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.icparc.ic.ac.uk/eclipse/" add_date="969172413" last_visit="1039404168" last_modified="1054054216"&gt;The ECLiPSe Constraint Logic Programming System - Prolog Compatible&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://gnu-prolog.inria.fr/" add_date="315884818" last_visit="1108919613" last_modified="1052314361"&gt;The GNU Prolog web site - a compiled Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.bris.ac.uk/%7Ebowers/goedel.html" add_date="1129175464" last_visit="1129175415"&gt;The Goedel Programming Language - Pat Hill - Like Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://clip.dia.fi.upm.es/radioweb/last/" add_date="1108417872" last_visit="1108417838"&gt;The LaSt language - Layout &amp;amp; Styling - CLIP Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.mu.oz.au/research/mercury/" add_date="315884818" last_visit="1105816433" last_modified="1043156417"&gt;The Mercury Project: Introduction&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.nytimes.com/2004/09/21/health/psychology/21proz.html" add_date="1095862132"&gt;The New York Times &gt; Health &gt; Mental Health &amp; Behavior &gt; Is Prozac Better? Is It Even Different?&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cse.unsw.edu.au/%7Ebillw/prologdict.html#rule" add_date="1109175816" last_visit="1109175814"&gt;The Prolog Dictionary&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.mu.oz.au/research/mercury/information/doc-latest/mercury_trans_guide/index.html" add_date="1105824246" last_visit="1105824244"&gt;The Prolog to Mercury transition guide&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.bized.ac.uk/virtual/vla/autopublisher/AutoPublishMMIn.pfn" add_date="1083947702"&gt;The Spreadsheet Autopublisher: Model Master Submissions Page&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.waikato.ac.nz/Research/starlog/#starlog_concepts" add_date="1112331359" last_visit="1115010461"&gt;The Starlog Project at the University of Waikato - bottom-up Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/csp.html" add_date="1095861225" last_visit="1096650964"&gt;The Watchmaker and The Spreadsheet Factory: Compositional Spreadsheet Programming - Prolog &amp;amp; Spreadsheets&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.comlab.ox.ac.uk/archive/logic-prog.html" add_date="1008542553" last_modified="986833789"&gt;The World Wide Web Virtual Library_ Logic Programming&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ncc.up.pt/%7Evsc/Yap/" add_date="959890293" last_visit="1107359545" last_modified="1051723808"&gt;The YAP Prolog System&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://home.pacbell.net/tomjdnh/pd.html" add_date="1108920819" last_visit="1108920791"&gt;Tom's free programs - free Prolog software&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.toronto.edu/%7Ebonner/transaction-logic.html" add_date="949219909" last_visit="959889811" last_modified="987700306"&gt;Transaction Logic Prototype&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://perso.wanadoo.fr/colin.barker/lpa/tsp_gen.htm" add_date="315884818" last_visit="315884818" last_modified="1048588260"&gt;Travelling Salesman Problem&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.trinc-prolog.com/pages/forumlist.php3?num=7" add_date="977285864" last_visit="986182349" last_modified="1041540418"&gt;Trinc Prolog Job Center&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://tuprolog.sourceforge.net/" add_date="1078877120" last_visit="1099350700"&gt;tuProlog - Java-based Prolog supporting tuple-based Linda interaction&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://lia.deis.unibo.it/research/tuprolog/" add_date="1112365210" last_visit="1112365176"&gt;tuProlog Pages - Prolog Engine for Java and .NET&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.amzi.com/AdventureInProlog/advfrtop.htm" add_date="315884818" last_visit="1109176175" last_modified="1079731139"&gt;Tutorial: AMZI Adventures in Prolog.&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://kti.ms.mff.cuni.cz/%7Ebartak/prolog/index.html" add_date="315884818" last_visit="1116301797" last_modified="976688959"&gt;Tutorial: Roman Bartak's Prolog in Examples - tutorial 1998&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.shef.ac.uk/uni/academic/I-M/is/studwork/prolog/starting.html" add_date="315884818" last_visit="315884818" last_modified="315884818"&gt;Tutorial: Starting Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://gollem.swi.psy.uva.nl/twiki/pl/bin/view/FAQ/PrologReading" add_date="1035041411" last_visit="1035041405" last_modified="1067513947"&gt;TWiki . FAQ . PrologReading&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.bham.ac.uk/%7Epjh/prolog_course/sem223.html" add_date="315884818" last_visit="315884818" last_modified="1041542828"&gt;U. of Birmingham Prolog Course: SEM223 Introduction - Nice!&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.cs.bham.ac.uk/%7Epjh/prolog_course/sem242.html" add_date="315884818" last_visit="315884818" last_modified="1041542234"&gt;U. of Birmingham Prolog Course: SEM242 Introduction&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.uni-koblenz.de/%7Efrvit/ROBOCUP/ROBOLOG/" add_date="1008542554"&gt;UKoLa AI Research Group_ RoboCup -- RoboLog Soccer Agent Libraries&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="https://www.jobs.ed.ac.uk/jobs/index.cfm" add_date="1077580376" last_visit="1077580364"&gt;University of Edinburgh jobs - Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.unspace.net/?p=589" add_date="1125857630" last_visit="1125857626"&gt;UnSpace » Blog Archive » A Matter of Gravity: Prologue in Two and Three Dimensions&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.dobrev.com/compilers.html" add_date="959887971" last_visit="959887950" last_modified="1008897115"&gt;URLs of Prolog Compiler vendors&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.emsps.com/oldtools/borland.htm#prolog" add_date="1084596479" last_visit="1084596463"&gt;Used Borland/Inprise Programming Tools for Sale - turbo prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.pdc.dk/" add_date="315884818" last_visit="1098595997" last_modified="1042799266"&gt;Visual Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.visual-prolog.com/vip6/tutorial/default.htm" add_date="1084569057"&gt;Visual Prolog 6 Tutorials&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.visual-prolog.com/" add_date="1084505429" last_visit="1084505426"&gt;Visual Prolog 6: Products, Compiler, Download Free Personal Edition&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.pdc.dk/Vip/vipinfo/freeware_version.htm" add_date="1084596428" last_visit="1084596425"&gt;Visual Prolog Freeware Version&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.visual-prolog.com/vip/vipinfo/freeware_version.htm" add_date="1054577013" last_visit="1054576991"&gt;Visual Prolog Freeware Version - 5.2 Personal Edition&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.pdc.dk/viptechinfo/Index.htm" add_date="1008542554"&gt;Visual Prolog Product Info&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.genumerix.com/rfi/AboutVivoMind.htm#_Toc529937927" add_date="1094978075" last_visit="1094978001"&gt;VivoMind by Arun Majumdar - Binnet Prolog developer - Paul Tarau co-worker&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://goanna.cs.rmit.edu.au/%7Ewinikoff/wp/" add_date="1079246623" last_visit="1079247253"&gt;W-Prolog - Prolog in Java (~1000 lines of Java) - recommended by Benjamin Johnston&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.dobrev.com/connected.html" add_date="959887908" last_visit="973662165" last_modified="1032381632"&gt;Web-sites connected with Strawberry Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.pms.informatik.uni-muenchen.de/%7Ewebchr/chr-solver.html" add_date="959388664" last_visit="960263317" last_modified="1005659728"&gt;WebCHR - CHR Constraint Solvers Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.clip.dia.fi.upm.es/index.html" add_date="994860731" last_modified="1051555280"&gt;Welcome to the CLIP Lab at DIA-FIM-UPM&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.j-paine.org/why_prolog.html" add_date="1095862132" last_visit="1122265685"&gt;Why Use Prolog?&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.androidtech.com/html/wordnet-mysql-20.php" add_date="1096998564" last_visit="1096998526"&gt;wordnet 2.0 data files in mysql format - from Prolog WordNet&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.xml.com/pub/a/2001/04/25/prologrdf" add_date="1096991686" last_visit="1096991684"&gt;XML.com: An Introduction to Prolog and RDF&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://swi.psy.uva.nl/projects/xpce/" add_date="949881464" last_visit="1036353004" last_modified="1011728850"&gt;XPCE Home&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.swi.psy.uva.nl/projects/xpce/" add_date="966743838" last_visit="995091214" last_modified="1011728850"&gt;XPCE Home page - SWI Prolog&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://xsb.sourceforge.net/" add_date="315884818" last_visit="1107360802" last_modified="1041539909"&gt;XSB Group Home Page&lt;/a&gt;  &lt;/dt&gt;&lt;dt&gt;&lt;a href="http://www.ncc.up.pt/%7Evsc/Yap/yap.html" add_date="967570027" last_visit="971494426" last_modified="1047494824"&gt;YAP Prolog Reference Manual Online&lt;/a&gt;  &lt;/dt&gt;&lt;/dl&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114575543756752304?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114575543756752304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114575543756752304' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114575543756752304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114575543756752304'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/apparently-there-are-some-websites-on.html' title='Apparently there are some websites on Prolog'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114551434247520215</id><published>2006-04-19T23:23:00.000-07:00</published><updated>2006-04-19T23:25:42.486-07:00</updated><title type='text'>JWZ.org</title><content type='html'>This is an interesting site written by a guy who worked on the early mozilla project.&lt;br /&gt;&lt;br /&gt;In particular, this page is pretty damn funny:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.jwz.org/gruntle/rbarip.html"&gt;http://www.jwz.org/gruntle/rbarip.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Enjoy.&lt;a href="http://www.jwz.org/gruntle/rbarip.html"&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114551434247520215?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114551434247520215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114551434247520215' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114551434247520215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114551434247520215'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/jwzorg.html' title='JWZ.org'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114535401352090987</id><published>2006-04-18T02:48:00.000-07:00</published><updated>2006-04-18T02:53:33.536-07:00</updated><title type='text'>Fun time with some friends after hours...</title><content type='html'>&lt;div style="text-align: center;"&gt;Some pictures from a little party with my comp sci buddies...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0421%20%28Large%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/CIMG0421%20%28Large%29.jpg" alt="" border="0" /&gt;&lt;/a&gt;Me, Josh, and Butler having a shot.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0419%20%28Large%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/CIMG0419%20%28Large%29.jpg" alt="" border="0" /&gt;&lt;/a&gt;Josh, Butler, Allison, Evan, Andy, and Kiet posing.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0418%20%28Large%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/CIMG0418%20%28Large%29.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Kiet, Butler, Andy, and Evan bowing before the bottom-feeder....I mean topcoder, Johan (with antlers).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114535401352090987?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114535401352090987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114535401352090987' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114535401352090987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114535401352090987'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/fun-time-with-some-friends-after-hours.html' title='Fun time with some friends after hours...'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114491532483816913</id><published>2006-04-13T00:59:00.000-07:00</published><updated>2006-04-13T01:02:04.863-07:00</updated><title type='text'>So how do they get Tephlon to stick to the pan?</title><content type='html'>Answer:&lt;br /&gt;&lt;a href="http://www.straightdope.com/classics/a4_173.html"&gt;&lt;br /&gt;http://www.straightdope.com/classics/a4_173.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Turns out they just basically make the pan really rough, then prime the pan with a thin layer of the stuff so that it mechanically sticks, then put another coat on that sticks to the primer and they bake it on to make it more permanent.&lt;br /&gt;&lt;br /&gt;Aren't you glad you found out?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114491532483816913?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114491532483816913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114491532483816913' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114491532483816913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114491532483816913'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/so-how-do-they-get-tephlon-to-stick-to.html' title='So how do they get Tephlon to stick to the pan?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114419253649869546</id><published>2006-04-04T16:09:00.000-07:00</published><updated>2006-04-04T16:15:36.520-07:00</updated><title type='text'>Man attempts selling of wife's part</title><content type='html'>&lt;a href="http://www.theregister.co.uk/2006/03/31/ebay_box_sale/"&gt;http://www.theregister.co.uk/2006/03/31/ebay_box_sale/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114419253649869546?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114419253649869546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114419253649869546' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114419253649869546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114419253649869546'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/man-attempts-selling-of-wifes-part.html' title='Man attempts selling of wife&apos;s part'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114406041883658101</id><published>2006-04-03T03:22:00.000-07:00</published><updated>2006-04-03T03:38:26.916-07:00</updated><title type='text'>Random linkage</title><content type='html'>Ever wonder if there was a &lt;a href="http://www.shotgunrules.com/"&gt;definitive guide on the rules pertaining to calling shotgun&lt;/a&gt; while attempting to gain the front passenger seat? Your prayers have been answered.&lt;br /&gt;&lt;br /&gt;Beautiful words like &lt;a href="http://www.google.com/search?q=define%3Adefenestrate&amp;sourceid=mozilla-search&amp;amp;start=0&amp;start=0&amp;amp;amp;amp;amp;ie=utf-8&amp;oe=utf-8&amp;amp;client=firefox&amp;rls=org.mozilla:en-US:unofficial"&gt;defenestrate&lt;/a&gt; bring almost as much cheer as throwing stuff out windows.&lt;br /&gt;&lt;br /&gt;But what brings me the most cheer is finishing up some nice work on my dad's house building site, &lt;a href="http://www.libertyestatesrealty.com"&gt;LibertyEstatesRealty.com&lt;/a&gt;, where there are some cool pictures of the process of building houses in Canton, Georgia. A shameless plug? Maybe. A beautiful state, especially where my dad is building? Definitely.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.libertyestatesrealty.com/house1/"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/320/P1010856-medium.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;--Glenn&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114406041883658101?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114406041883658101/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114406041883658101' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114406041883658101'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114406041883658101'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/04/random-linkage.html' title='Random linkage'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114320031281233383</id><published>2006-03-24T03:38:00.000-08:00</published><updated>2006-03-24T03:38:32.826-08:00</updated><title type='text'></title><content type='html'>"I love being married. It's so great to find that one special person you want to annoy for the rest of your life."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; - Rita Rudner&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114320031281233383?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114320031281233383/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114320031281233383' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114320031281233383'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114320031281233383'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/03/i-love-being-married.html' title=''/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114319339181582118</id><published>2006-03-24T01:38:00.000-08:00</published><updated>2006-03-24T01:46:24.776-08:00</updated><title type='text'>My Unadulterated Desktop</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/desktop.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://photos1.blogger.com/blogger/1842/1457/400/desktop.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114319339181582118?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114319339181582118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114319339181582118' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114319339181582118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114319339181582118'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/03/my-unadulterated-desktop.html' title='My Unadulterated Desktop'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114198512153910385</id><published>2006-03-10T02:04:00.000-08:00</published><updated>2006-03-10T02:05:21.553-08:00</updated><title type='text'>Life-Like Animated Boobies!!!!</title><content type='html'>Awesomeness:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.shockabsorber.co.uk/bounceometer/shock.html"&gt;http://www.shockabsorber.co.uk/bounceometer/shock.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114198512153910385?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114198512153910385/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114198512153910385' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114198512153910385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114198512153910385'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/03/life-like-animated-boobies.html' title='Life-Like Animated Boobies!!!!'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114171074718653083</id><published>2006-03-06T21:52:00.000-08:00</published><updated>2006-03-06T21:52:27.200-08:00</updated><title type='text'></title><content type='html'>"They that can give up essential liberty for temporary security deserve neither."&lt;br /&gt;&lt;br /&gt;    --Benjamin Franklin&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114171074718653083?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114171074718653083/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114171074718653083' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114171074718653083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114171074718653083'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/03/they-that-can-give-up-essential.html' title=''/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114085092034722687</id><published>2006-02-24T22:55:00.000-08:00</published><updated>2006-02-24T23:07:29.700-08:00</updated><title type='text'>My roommate is really dirty</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0411.jpg"&gt;&lt;img style="display:block; margin:0px 0px 10px; cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/1842/1457/400/CIMG0411.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114085092034722687?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114085092034722687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114085092034722687' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114085092034722687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114085092034722687'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/02/my-roommate-is-really-dirty.html' title='My roommate is really dirty'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114065275215987278</id><published>2006-02-22T15:57:00.000-08:00</published><updated>2006-02-22T15:59:12.173-08:00</updated><title type='text'>CS verses Engineering</title><content type='html'>(3:55:36 PM) NeatoDude1: how many cs programmers does it take to change a lightbulb?&lt;br /&gt;(3:55:37 PM) NeatoDude1: none! - it's a hardware error&lt;br /&gt;&lt;br /&gt;MUHAHAHAHAHAHA - silly hardware guys&lt;br /&gt;&lt;br /&gt;-g&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114065275215987278?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114065275215987278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114065275215987278' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114065275215987278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114065275215987278'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/02/cs-verses-engineering.html' title='CS verses Engineering'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-114031150413730714</id><published>2006-02-18T17:08:00.000-08:00</published><updated>2006-03-06T21:54:47.030-08:00</updated><title type='text'>Repeat in history? Check out this poem and reflect on what Bush is doing with the Patriot Act</title><content type='html'>When the Nazis arrested the Communists, I said nothing; after all, I was not a Communist.&lt;br /&gt;When they locked up the Social Democrats, I said nothing; after all, I was not a Social Democrat.&lt;br /&gt;When they arrested the trade unionists, I said nothing; after all, I was not a trade unionist.&lt;br /&gt;When they arrested the Jews, I said nothing; after all, I was not a Jew.&lt;br /&gt;When they arrested me, there was no longer anyone who could protest.&lt;br /&gt;- translated by Bob Berkovitz (rbbrook@worldnet.att.net).&lt;br /&gt;&lt;br /&gt;Als die Nazis die Kommunisten holten, habe ich geschwiegen; ich war ja kein Kommunist.&lt;br /&gt;Als sie die Sozialdemokraten einsperrten, habe ich geschwiegen; ich war ja kein Sozialdemokrat.&lt;br /&gt;Als sie die Gewerkschafter holten, habe ich geschwiegen; ich war ja kein Gewerkschafter.&lt;br /&gt;Als sie die Juden holten, habe ich geschwiegen; ich war ja kein Jude.&lt;br /&gt;Als sie mich holten, gab es keinen mehr, der protestieren konnte.&lt;br /&gt;- Martin Niemöller, Der Weg ins Freie, (F.M. Hellbach, Stuttgart, 1946)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-114031150413730714?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/114031150413730714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=114031150413730714' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114031150413730714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/114031150413730714'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/02/repeat-in-history-check-out-this-poem.html' title='Repeat in history? Check out this poem and reflect on what Bush is doing with the Patriot Act'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113991158595067578</id><published>2006-02-14T01:47:00.000-08:00</published><updated>2006-03-11T00:19:24.190-08:00</updated><title type='text'>Eric and Johan, the Gay Duo</title><content type='html'>Need I say more? Just watch the friggin video:&lt;br /&gt;&lt;br /&gt;&lt;embed src="http://www.libertyestatesrealty.com/glenn/CIMG0380.AVI" height="300" width="400" autostart="false"&gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113991158595067578?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113991158595067578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113991158595067578' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113991158595067578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113991158595067578'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/02/eric-and-johan-gay-duo.html' title='Eric and Johan, the Gay Duo'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113948165936839834</id><published>2006-02-09T02:40:00.000-08:00</published><updated>2006-02-09T02:40:59.376-08:00</updated><title type='text'></title><content type='html'>Life is odd yet amusing:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.salon.com/sex/world/2000/07/05/madrid/"&gt;http://www.salon.com/sex/world/2000/07/05/madrid/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;taa taa.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113948165936839834?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113948165936839834/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113948165936839834' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113948165936839834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113948165936839834'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/02/life-is-odd-yet-amusing-httpwww.html' title=''/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113755829382091566</id><published>2006-01-17T20:22:00.000-08:00</published><updated>2006-01-17T20:24:53.833-08:00</updated><title type='text'>Links to all the photos from my recent trips</title><content type='html'>&lt;a href="http://www.libertyestatesrealty.com/mexico/"&gt;Mexico Pictures&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.libertyestatesrealty.com/snowboarding/"&gt;Snowboarding Pictures&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113755829382091566?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113755829382091566/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113755829382091566' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113755829382091566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113755829382091566'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/01/links-to-all-photos-from-my-recent.html' title='Links to all the photos from my recent trips'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113710643154365840</id><published>2006-01-12T14:38:00.000-08:00</published><updated>2006-01-12T14:53:51.556-08:00</updated><title type='text'>Pics of Cozumel and our new friends Josh and Jenny</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0266.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0266.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0261.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0261.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0258.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0258.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0263.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0263.jpg" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113710643154365840?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113710643154365840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113710643154365840' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113710643154365840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113710643154365840'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/01/pics-of-cozumel-and-our-new-friends.html' title='Pics of Cozumel and our new friends Josh and Jenny'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113686811973224270</id><published>2006-01-09T20:20:00.000-08:00</published><updated>2006-01-09T20:41:59.743-08:00</updated><title type='text'>Mas picturas de Mexico</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0160.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0160.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0252.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0252.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0222.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0222.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0210.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0210.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0159.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0159.jpg" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113686811973224270?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113686811973224270/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113686811973224270' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113686811973224270'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113686811973224270'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/01/mas-picturas-de-mexico.html' title='Mas picturas de Mexico'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113652267152183574</id><published>2006-01-05T20:22:00.000-08:00</published><updated>2006-01-05T20:44:31.533-08:00</updated><title type='text'>Mexico!</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0112.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0112.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0082.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0082.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1842/1457/1600/CIMG0100.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1842/1457/320/CIMG0100.jpg" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113652267152183574?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113652267152183574/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113652267152183574' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113652267152183574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113652267152183574'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2006/01/mexico.html' title='Mexico!'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113608159408112887</id><published>2005-12-31T18:10:00.000-08:00</published><updated>2005-12-31T18:13:14.090-08:00</updated><title type='text'>Asteroids game with a ship now!</title><content type='html'>&lt;a href="http://www.libertyestatesrealty.com/sidescroller05-12-23-1632.zip"&gt;Link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Extract -&gt; Open -&gt; Run -&gt; Enjoy&lt;br /&gt;&lt;br /&gt;I added a cool ship icon and it turns and everything. Who could ask for more. Send money!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113608159408112887?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113608159408112887/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113608159408112887' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113608159408112887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113608159408112887'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2005/12/asteroids-game-with-ship-now.html' title='Asteroids game with a ship now!'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113576117947687155</id><published>2005-12-28T01:09:00.000-08:00</published><updated>2005-12-28T01:12:59.486-08:00</updated><title type='text'>Looking to buy a home?</title><content type='html'>Move to Georgia. It is really pretty and has some great seasonal weather. My dad &lt;a href="http://www.libertyestatesrealty.com"&gt;sells houses in Canton, Georgia&lt;/a&gt;, so I get to visit every once and a while.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113576117947687155?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113576117947687155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113576117947687155' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113576117947687155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113576117947687155'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2005/12/looking-to-buy-home.html' title='Looking to buy a home?'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15664769.post-113571926745705786</id><published>2005-12-27T13:19:00.000-08:00</published><updated>2005-12-27T13:43:24.526-08:00</updated><title type='text'>My woman and my program....</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1842/1457/1600/alizee.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1842/1457/400/alizee.jpg" alt="" border="0" /&gt;&lt;/a&gt;My new fantasy woman. She's awful purty, ain't she? You know what is also purty is my new little project over break: an asteroid game. &lt;a href="http://libertyestatesrealty.com/sidescroller05-12-22-1632.zip"&gt;Download&lt;/a&gt; -&gt; Extract -&gt; Enjoy.&lt;br /&gt;&lt;br /&gt;Happy Holidays&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;Picture by Philippe Boule and Maver Digital Arts. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15664769-113571926745705786?l=gleenn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gleenn.blogspot.com/feeds/113571926745705786/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15664769&amp;postID=113571926745705786' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113571926745705786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15664769/posts/default/113571926745705786'/><link rel='alternate' type='text/html' href='http://gleenn.blogspot.com/2005/12/my-woman-and-my-program.html' title='My woman and my program....'/><author><name>Glenn</name><uri>http://www.blogger.com/profile/05904574251857263641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
