<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Site-Server v6.0.0-26796-26796 (http://www.squarespace.com) on Fri, 06 Nov 2020 08:34:16 GMT
--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://www.rssboard.org/media-rss" version="2.0"><channel><title>Tim's Tech Rant - Timdreyer.com</title><link>https://timdreyer.com/blog/</link><lastBuildDate>Mon, 02 Jan 2017 04:09:53 +0000</lastBuildDate><language>en-US</language><generator>Site-Server v6.0.0-26796-26796 (http://www.squarespace.com)</generator><description><![CDATA[]]></description><item><title>Send email notifications on IP address change</title><category>Computers and Tech</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Sun, 06 Jan 2013 04:28:16 +0000</pubDate><link>https://timdreyer.com/blog/2013/1/5/send-email-notifications-on-ip-address-change</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50e8fbcde4b0cdba76c7f342</guid><description><![CDATA[<p>I recently discovered that my home IP address is not as static as I would like. This will prove a problem if it changes while I'm away from home, so I needed to find a way to get updates on the IP if and when it changes. I threw together a quick bash script that I could run regularly with my server's cron daemon. Any time the IP address changes, it emails the provided email with a customizable message that includes both the old and new IP's.</p><p></p><pre class="source-code">#/bin/bash<br><br>#Variables<br>IPADDR=""<br>OLDIP=""<br>#Path to where you want the ip address file stored<br>HOME_PATH="/home/user"<br>IP_PATH="${HOME_PATH}/.ipaddress"<br>#Destination email address<br>EMAIL_DEST="user@example.com"<br>#Email body. Don't remove the inner double quotes, and remember to properly escape any single quotes<br>EMAIL_MSG=$'"This server'\''s IP address appears to have changed from $OLDIP to $IPADDR. Might be time to update your DNS!"'<br>#Email Subject<br>EMAIL_SUB="Server Alert: IP Address Change"<br><br>#Function: sends the email when called. Requires that you actually have mail configured to use a mail client.<br>email_alert ()<br>{<br>echo "$IPADDR" &gt; "$IP_PATH"<br>eval EMAIL_MSG=$EMAIL_MSG<br>echo "$EMAIL_MSG" | mail -s "$EMAIL_SUB" "$EMAIL_DEST"<br>}<br><br>cd "$HOME_PATH"<br><br>#Grab our current IP address and do a quick sanity check<br>IPADDR=$(curl icanhazip.com -s | grep -m 1 -o --regexp="[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}")<br><br>#Compare current IP to old IP and take appropriate actions<br>if (( ${#IPADDR} &gt; 7 ))<br>then<br>    if [ -e "$IP_PATH" ]<br>    then<br>        OLDIP=$(&lt;"$IP_PATH")<br>        if [ "$IPADDR" != "$OLDIP" ]<br>        then<br>            email_alert<br>        fi<br>    else<br>        email_alert<br>   fi<br>fi<br></pre>]]></description></item><item><title>Site redesign</title><category>Uncategorized</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Wed, 19 Dec 2012 00:04:00 +0000</pubDate><link>https://timdreyer.com/blog/2012/12/18/site-redesign</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d0cfe1e4b07abde416cc2e</guid><description><![CDATA[<p>I was getting terribly tired of the previous design here, and squarespace recently updated their management system. So what? Time for a new design! The old site was getting cluttered with most of the bits and pieces being fairly useless. I decided I wanted a minimalistic, clean redesign. I'm already loving it!</p>]]></description></item><item><title>Searching for jobs</title><category>How-To</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Thu, 24 Feb 2011 02:21:39 +0000</pubDate><link>https://timdreyer.com/blog/2011/2/23/searching-for-jobs.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489c0</guid><description><![CDATA[<p>As a recently unemployed person, I have needed to find ways to search for the largest number of jobs, while not having to sift through too much cruft. When looking at various job search sites, it can be difficult to use the same search queries on each.</p>
<p>The solution? <a href="http://en.wikipedia.org/wiki/Rss">RSS feeds</a> and <a href="http://pipes.yahoo.com">Yahoo Pipes</a>.</p>
<p>Yahoo Pipes is a mature web aggregation and editing suite that allows you to gather information from all over the web, modify it, and then output it again. We will be gathering job listings from job search sites via RSS, filtering the feeds, then outputting the collection in a single RSS feed.</p>
<p>After creating a new pipe (you will need a yahoo account), you will have your pipe fetch job listings from two sites, craigslist and indeed.com. I have created an <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=00034e5e0111fd740f4e1b58d604261d" target="_blank">example pipe</a> so that you can follow along through the process.</p>
<p><a href="http://craigslist.org">Craigslist</a>&#8217;s RSS setup allows you to grab the RSS feeds from any of the job subcategories, or even from the main job category for your area. I chose to use the main job category. The address for the Kansas City job listings is kansascity.craigslist.org/jjj/. To get the RSS feed address, just add the text &#8220;index.rss&#8221; to the end. You now have kansascity.craigslist.org/jjj/index.rss to add to the pipe.</p>
<p>The Yahoo pipes interface uses a modular design that allows you to drag individual modules into the editing area as you need them and any number of times that you need them. To add the RSS feed, you will need to drag the &#8220;fetch site feed&#8221; module from the left column into the editing area.</p>
<p><span class="full-image-block ssNonEditable"><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489f2/1298516292003/1..png/1000w" alt="" /></span></p>
<p>Once the module has been added, paste the RSS feed address into the first text box. If at any point you want to see what is coming out of any individual module, you can click on the module and the debug box at the bottom of the page will update with that module&#8217;s output.</p>
<p>Head on over to <a href="http://www.indeed.com" target="_blank">indeed.com</a> where you will get your second RSS feed.</p>
<p>First, search for jobs that fit your needs. On the results page, a link to the RSS feed for jobs matching your search will appear in the far right column. Copy the linked address, and paste it into a second &#8220;fetch site feed&#8221; module in the pipe.</p>
<p>Now that our pipe is fetching possible job listings, we need to filter the feeds to pare down the options to just the ones that interest us. To filter the craigslist feed, add the &#8220;<em>Filter</em>&#8221; module under the &#8220;<em>Operators</em>&#8221; section.</p>
<p>To connect modules, click and drag from the output dot on the bottom of the &#8220;<em>Fetch Feed</em>&#8221; module and release on the imput dot on the top of the &#8220;<em>Filter</em>&#8221; module.</p>
<p><span class="thumbnail-image-block ssNonEditable"><a href="javascript:Y.Squarespace.Utils.lightboxAsset('50d08151e4b0e297ee7489f3');"><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489f4/1298517026563/3520618-10911259-thumbnail.jpg/1000w" alt="" /></a></span></p>
<p>Notice that I only &#8220;piped&#8221; the craigslist feed into the new filter module, but not the Indeed feed. That is because this filter module only permits certain RSS entries that have keywords that match the jobs I want. The craigslist feed needs to be filtered this way because it has all job listings, but the Indeed feed contains only what we searched for and doesn&#8217;t need to be filtered again.</p>
<p>Once the craigslist feed is properly filtered, you need to combine the two feeds together so that you can work with all of the job listings at the same time. This is accomplished with the &#8220;<em>union</em>&#8221; module as shown.</p>
<p>Next, you need to remove any unwanted job listings with another filter.</p>
<p><span class="full-image-block ssNonEditable"><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489f5/1298517465061/6..png/1000w" alt="" /></span></p>
<p>&nbsp;</p>
<p>Be careful with this filter. Only add keywords that ONLY appear in job listings that you know you dont&#8217; want or you could be cutting out good job opportunities. Notice that this filter is set to &#8220;<em>block</em>&#8221; items and not &#8220;<em>permit</em>&#8221;.</p>
<p>Next, you need to have three &#8220;<em>unique</em>&#8221; modules to strip out repeat items based on title, hyperlink, and job description.</p>
<p><span class="full-image-block ssNonEditable"><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489f6/1298517560083/4..png/1000w" alt="" /></span></p>
<p>Lastly, to sort the output into chronological order, you need to add the &#8220;<em>Sort</em>&#8221; module and set it to sort on <em>item.pubDate </em>in <em>descending </em>order.</p>
<p><span class="full-image-block ssNonEditable"><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489f7/1298517799797/5..png/1000w" alt="" /></span></p>
<p>The pipe has now been designed and only needs to be saved and run before you can add it to your favorite RSS reader. My favorite is <a href="http://reader.google.com">google reader</a>, though there are many options. You&#8217;ll find the save button at the top of the page. Wait for the pipe to be saved, then click the link at the top of the page to run the pipe.</p>
<p>The webpage will open a new tab or window with the pipe&#8217;s dashboard. This is where you can see the results of your pipe, and find the output RSS feed. The RSS feed link is located just above the output list. Copy the RSS link into your favorite RSS reader and you&#8217;re done.</p>
<p>You have now condensed multiple job search sites into one convenient location!</p>]]></description></item><item><title>Morality and Science</title><category>Atheism</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Thu, 25 Mar 2010 14:02:44 +0000</pubDate><link>https://timdreyer.com/blog/2010/3/25/morality-and-science.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489be</guid><description><![CDATA[<p>One of the issues that I encounter very often in discussions between those of religious/spiritual pursuation and those who are more skeptical is the problem of morality apart from religion/spirituality. Far too often (for my tastes), scientists, skeptics, and atheists shy away from saying that all morality can be deterministic (vs. relativistic) apart from religion. I am of the opinion that morality can and does have absolute answers but that we should not get those from religion.</p>
<p>Sam Harris, author of <em>The End of Faith </em>and <em>Letter to a Christian Nation</em>, talks about morality and science and how science truely can give us insights into morality beyond moral relativism.</p>
<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/SamHarris_2010-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/SamHarris-2010.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=801&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=sam_harris_science_can_show_what_s_right;year=2010;theme=a_taste_of_ted2010;theme=unconventional_explanations;theme=new_on_ted_com;theme=bold_predictions_stern_warnings;theme=is_there_a_god;theme=the_rise_of_collaboration;event=TED2010;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed flashvars="vu=http://video.ted.com/talks/dynamic/SamHarris_2010-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/SamHarris-2010.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=801&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=sam_harris_science_can_show_what_s_right;year=2010;theme=a_taste_of_ted2010;theme=unconventional_explanations;theme=new_on_ted_com;theme=bold_predictions_stern_warnings;theme=is_there_a_god;theme=the_rise_of_collaboration;event=TED2010;" allowFullScreen="true" bgColor="#ffffff" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" width="446" wmode="transparent" type="application/x-shockwave-flash" height="326"></embed></object></p>]]></description></item><item><title>The Ultimate Proof of Creation</title><category>Soapbox</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Thu, 04 Feb 2010 14:26:59 +0000</pubDate><link>https://timdreyer.com/blog/2010/2/4/the-ultimate-proof-of-creation.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489b8</guid><description><![CDATA[This is a review of the book, The Ultimate Proof of Creation by Dr. Jason 
Lisle. In his book, Dr. Lisle attempts to give a wholly rational accounting 
as to how fundamental creationism is the only rational conclusion given the 
evidence that we have. In this review, I will note the (remarkably many) 
errors that Dr. Lisle made, and explain how these lead to a falsification 
of the premise that Dr. Lisle sets forth in the book.]]></description><content:encoded><![CDATA[<p><span>This is a review of the book, <a href="http://www.amazon.com/gp/product/0890515689?ie=UTF8&amp;tag=timdreyercom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0890515689">The Ultimate Proof of Creation</a> by Dr. Jason Lisle.&nbsp; In his book, Dr. Lisle attempts to give a wholly rational accounting as to how fundamental creationism is the only rational conclusion given the evidence that we have.&nbsp; In this review, I will note the (remarkably many) errors that Dr. Lisle made, and explain how these lead to a falsification of the premise that Dr. Lisle sets forth in the book.&nbsp; Throughout this review, you&rsquo;ll see short quotations from the book.&nbsp; All quotations, unless otherwise noted, are from this book and are the property of the publisher and author.</span></p>
<p><span>First I would like to introduce you to myself.&nbsp; Until about a year ago (the spring of 2009) I was a staunch fundamentalist Christian.&nbsp; At that time, I began to examine my faith and I began researching everything I could get my hands on that dealt with philosophy, ethics, religion, and Christianity.&nbsp; At that time I believed that the unexamined faith was useless. &nbsp;Since that time my opinion has not changed on the importance of examining my beliefs, but my beliefs themselves have changed.&nbsp; As I examined the available evidence, the logic of the arguments, and the refusal of most Christians to have an open mind about science and scientific discoveries, I came to the decision that no religion (not even Christianity) satisfyingly explains the evidence as well as science does.&nbsp; Since then I&rsquo;ve considered myself an atheist.&nbsp; Not in that I believe that there is no god, but I believe that there is no evidence for a god.</span></p>
<p><span>This gives me a unique perspective.&nbsp; I have over 20 years of experience with the Christian worldview.&nbsp; Not only the Christian worldview, but the fundamentalist Christian worldview.&nbsp; A worldview in which I believed that the Bible was the inerrant word of god.&nbsp; In my time as a Christian, I spent plenty of time studying Christian apologetics.&nbsp; As such, I have a firm grasp on the vast majority of arguments for the Christian viewpoint.&nbsp; With these in hand, I can now see both sides of almost every religious argument that includes atheism and Christianity.&nbsp; I understand my current view as an atheist while, at the same time, understanding the view of the fundamentalist Christian.&nbsp; As I said, this gives me a unique viewpoint as I can easily discount simple arguments from both sides that are only made it due to a misunderstanding of either science or the Bible. &nbsp;</span></p>
<p><span>For example, I can easily discount the argument of a creationist who also believes that the world is flat just because the Bible says it is.&nbsp; My understanding of science is strong enough to quickly point out that if the world were flat, GPS Systems would not work.&nbsp; As another example, I can also easily discount the argument of a scientist who claims that Christians are hypocrites because they do not hold to the Levitical law as the Jews did.&nbsp; My understanding of the Bible is strong enough to point out that the new testament releases Christians from the &ldquo;law&rdquo; and places them under a &ldquo;new covenant.&rdquo; For another good example, see the section below on starlight.</span></p>
<p><span>This review will be split up into two main parts.&nbsp; The first part will deal with various errors in logic and misinformation that does not directly refute the main point of the book.&nbsp; The second part will focus on refuting the &ldquo;ultimate proof of creation.&rdquo;</span></p>
<h2><span>Part one &ndash; Nonessentials.</span></h2>
<h3><span>1. The spontaneous generation of information.</span></h3>
<p><span>We&rsquo;ll begin in chapter one where Dr. Lisle gives us a great example of a scientific misunderstanding.&nbsp; Chapter one contains an explanation about information and its relationship to DNA.&nbsp; In this explanation, Dr. Lisle proclaims the following, </span></p>
<blockquote>
<p><span><em>There is no known law of nature, no known process, and no known sequence of events that can cause information to originate by itself in matter</em>. </span></p>
</blockquote>
<p><span>Unfortunately for Dr. Lisle, this is not the case.</span></p>
<p><span>As reported by New Scientist on June 9, 2008, scientists have directly observed the evolution of a new trait in a strain of E. coli bacteria.&nbsp; This observation was made in a strain of bacteria that was being grown by Richard Lenski of Michigan State University.&nbsp; The amazing discovery was that one strain of bacteria suddenly became able to use citrate as a food source.&nbsp; Citrate is a compound found in the culture medium that Lenski was using, but that E coli cannot normally metabolize.&nbsp; As this new ability was obviously an advantage (the bacteria that could metabolize the citrate had a larger source of energy than the other bacteria), the bacteria with the new mutation soon began to multiply.</span></p>
<p><span>As the researcher had been saving samples of the bacteria from various points throughout his experiment, he was able to retrace the line of bacteria that evolved the new ability and he was able to see if it would happen again.&nbsp; He found that the bacteria did not always evolve that mutation which shows that evolution does not always yield the best organisms.&nbsp; It does, though, provide mutations that are beneficial.</span></p>
<p><span>This is a perfect example that proves that Dr. Lisle&rsquo;s assertion that nothing other than intelligence can create &ldquo;information&rdquo; is simply false.&nbsp; This mutation shows the creation of &ldquo;new information.&rdquo; This is not simply a copied gene that lead to an organism with extra arms and legs, but a mutation (or a series of mutations) that provided the bacteria with a new ability that increased its survivability.</span></p>
<p><span>Dr. Lisle went on to say, </span></p>
<blockquote>
<p><span>When its progress along the chain of transmission events is traced backwards, every piece of information leads to a mental source, the mind of the sender. </span></p>
</blockquote>
<p><span>This assertion is also falsified by the above example.&nbsp; With both of Dr. Lisle&rsquo;s theorems describing information falsified, he will need to find some other way to support his claim that, </span></p>
<blockquote>
<p><span>The information in DNA cannot have come about by mutations and natural selection because the laws of information science tell us that all information comes from a mind, </span></p>
</blockquote>
<p><span>and the claim that, </span></p>
<blockquote>
<p><span>Mutations have never been observed to add a brand-new information, and thus they cannot be the driving mechanism of evolution.</span></p>
</blockquote>
<p><span>The New Scientist article can be found at <a href="http://www.newscientist.com/article/dn14094-bacteria-make-major-evolutionary-shift-in-the-lab.html?full=true&amp;print=true">this link</a>, and the original article can be found in the Proceedings of the National Academy of Sciences, or with the following journal reference: <a href="http://dx.doi.org/10.1073/pnas.0803151105" target="ns"><em>Proceedings of the National Academy of Sciences</em> (DOI: 10.1073/pnas.0803151105)</a></span></p>
<h3><span>2.&nbsp; Carbon dating and the accuracy of radiometric dating techniques.</span></h3>
<p><span>In the section on age indicators Dr. Lyle overviewed one type of radiometric dating.&nbsp; He showed (accurately as it turns out) how carbon dating cannot be used to show that the earth is billions of years old.&nbsp; Unfortunately, he left out some essential information.&nbsp; Carbon dating is not the only form of radiometric dating that is used today.&nbsp; Since carbon dating is only accurate to about 60,000 years, is important to note that for older objects different methods are used.&nbsp; The following is a list of some of the various dating methods used today along with their useful time spans and half-lives (if I could find them):</span></p>
<ul>
<li>
<p><span>Samarium-neodymium dating &ndash;samarium half life of 160 billion years</span></p>
</li>
<li>
<p><span>Rubidium-strontium dating &ndash;rubidium half life of 49 billion years</span></p>
</li>
<li>
<p><span>Uranium-thorium dating &ndash; up to 500,000 years &ndash;uranium half life of 245,000 years</span></p>
</li>
<li>
<p><span>Radiocarbon dating &ndash;about 60,000 years &ndash; carbon half life of 5,730 years</span></p>
</li>
</ul>
<p><span>As you can see, radiocarbon dating has the shortest useful time span of all the radiometric dating methods.&nbsp; Their lack of inclusion in the book shows either a gross lack of research into the subject of radiometric dating or a willful attempt to misinform his readers.&nbsp; As I cannot read minds, I will give Dr. Lisle the benefit of the doubt and assume that he was not as well informed about the subject as he thought he was.&nbsp; For more information about radiometric dating, you should visit the <a href="http://en.wikipedia.org/wiki/Radiometric_dating">Wikipedia page on radiometric dating</a>.</span></p>
<p><span>Dr. Lisle&rsquo;s claim that scientists have a hard time explaining the presence of carbon-14 in a universe that is billions of years old can be easily explained by the reaction between cosmic rays and nitrogen that produces carbon-14 and hydrogen.&nbsp; For more information see the <a href="http://en.wikipedia.org/wiki/Carbon-14#Origin_and_radioactive_decay">Wikipedia page on carbon-14</a>.</span></p>
<h3><span>3.&nbsp; Comets and the Oort cloud.</span></h3>
<blockquote>
<p><span>&ldquo;&hellip;Why do we still have comets?&rdquo; </span></p>
</blockquote>
<p><span>Comets originate from at least two places: the theoretical Oort cloud (which is incredibly hard to see with telescopes), or the factual Kupier belt.&nbsp; See?&nbsp; Easy.&nbsp; For more info, of course, see <a href="http://en.wikipedia.org/wiki/Comet#Orbits_and_origin">Wikipedia</a>.</span></p>
<h3><span>4.&nbsp; Rescuing devices.</span></h3>
<p><span>All I want to say here consists of two things.&nbsp; First, I would like to congratulate the author on pointing out that both sides do the same thing.&nbsp; Everyone uses rescuing devices.&nbsp; Secondly, I would also like to point out that rescuing devices are neither positive nor negative.&nbsp; They just are.&nbsp; The use of rescuing devices does not tell us whether an idea is correct or incorrect.</span></p>
<h3><span>5.&nbsp; Starlight.</span></h3>
<p><span>I&rsquo;m actually a little surprised that this problem was even included in the book.&nbsp; The problem of getting the starlight from the stars to the earth in only a few thousand years is actually quite academic.&nbsp; Though I&rsquo;m not arguing for this, the best explanation would be for god to have created the light en route and heading our way.</span></p>
<h2><span>Part 2 &ndash; The Essentials.</span></h2>
<p><span>In his defense of the &ldquo;ultimate proof,&rdquo; Dr. Lisle made many points and rationalizations to support his claim.&nbsp; The more I read, the more it seemed that everything came back down to one thing.&nbsp; Everything stood on one ultimate reason for his logic.&nbsp; Everything came down to his assertion that if it were not for Biblical creation, &ldquo;<em>we could not know anything</em>.&rdquo; Without this, his whole argument falls apart.&nbsp; Apart from this, he made some good arguments and some bad arguments but everything revolves around the assertion that to know anything, Biblical creation must be true.</span></p>
<p><span>I believe that the simplest way to resolve this is to focus on this one main point.&nbsp; I could spend another 20 pages dealing with his reasoning surrounding this, but that would be a waste of your time and my time.&nbsp; By dealing with only this one point, I can save our time and disprove his whole theory as it is all based on this one key point.</span></p>
<p><span>So it all comes down to this.&nbsp; Can we really &ldquo;know &rdquo; anything.&nbsp; Dr. Lisle definitely thinks so.&nbsp; If we can, his main point could be correct.&nbsp; If we cannot, Biblical creation doesn&rsquo;t matter in the context of &ldquo;knowing&rdquo; things, and as such would not prove anything.&nbsp; The following proposition has been encapsulated elsewhere in my writings.&nbsp; I will include a shorter explanation here.&nbsp; If you are interested, the full version can be found as part of a discussion <a href="../../discussion/post/965785">here</a>, and it deals with science, scientific method, and more.</span></p>
<p><span>Note: in the following paragraphs the word &ldquo;know &rdquo; is used in the same context and with the same definition as in the book.&nbsp;</span></p>
<p><span>Let&rsquo;s begin a thought experiment.&nbsp; Think of something you know.&nbsp; Now think of how you know it.&nbsp; Is it evidence or belief that led you to know this?&nbsp; Let&rsquo;s start by assuming it was a belief and we will come back to evidence later.&nbsp; Everything you believe is based on something you saw, heard, read, were told, or deduced from your experiences. &nbsp;All sources of beliefs ultimately come down to our senses.&nbsp; Whether it&rsquo;s something you were told and believed from a young age, or something you decided after observing an event that impacted you in a large way, everything comes back to senses.&nbsp; Without senses there&rsquo;d be no language, no social interaction, and no way to learn anything.&nbsp; An individual without senses could not even be considered human as there&rsquo;d be no ability to think due to a lack of input.&nbsp; No input, no knowledge, no beliefs, nothing. Similarly, anything you know based on evidence is also derived from your senses.&nbsp; You hear something, you&rsquo;ve read something, you feel something, you&rsquo;re told something, etc.</span></p>
<p><span>From this we can say that everything you know is based on either a belief or some evidence.&nbsp; All beliefs and all evidence are ultimately based on sensory input.&nbsp; The question now becomes if everything we know is based off of our senses, how good are our senses?&nbsp; If our senses are good, then sure, we can know things.&nbsp; But if our senses are not good or are easily imitated, can we know anything?</span></p>
<p><span>The evidence that our senses are easily imitated is actually pretty clear.&nbsp; There are thousands of individuals in psychiatric institutions worldwide that are so deeply confused by their own brains that they cannot tell the difference between hallucination and reality.&nbsp; Now tell me, how could you or I know that we were not one of those individuals?&nbsp; How could we know?&nbsp; Could we know?&nbsp; I don&rsquo;t think so.&nbsp; If there are people who cannot tell the difference between fact and their own hallucinations, there is no way that you or I could be sure that we are not in the same position.&nbsp; After all, we could be hallucinating that we are sane.&nbsp; This is a simple example of how we can never truly be sure that what we&rsquo;re sensing jives with reality.&nbsp; There are, of course, more involved examples.&nbsp; In the same manner, no one can ever really know if they are anything except a brain in a jar hooked up to wires that perfectly simulate senses.&nbsp; Or we could just be a sentient subroutine in a computer running simulations.&nbsp; We would have no way to know otherwise unless programmed to do so.</span></p>
<p><span>As it is philosophically impossible to prove the reliability of our senses, it would be similarly impossible to prove anything based on our senses.&nbsp; Like knowledge.</span></p>
<p><span>Since knowledge can only be based on our senses which can never be proven reliable, we can never truly &ldquo;know &rdquo; anything.</span></p>
<p><span>Finally, since I have shown that we can never truly know anything, the &ldquo;ultimate proof&rdquo; collapses since it requires that we be able to truly know things.</span></p>
<h2><span>Part 3 &ndash; Conclusions.</span></h2>
<p><span>Even though I believe that we can never really know anything, it is important to act as if we can. If you have read my explanation of science, you&rsquo;ll know that I look at everything I &ldquo;know&rdquo; not as binary, but as percentages.&nbsp; It&rsquo;s not just that I know it or I don&rsquo;t know it, it&rsquo;s a scale from zero to 99.999&hellip;%.&nbsp; As the scale never goes to 100, you can never truly know anything.&nbsp; But you can get so damn close that it doesn&rsquo;t really matter.&nbsp; Unfortunately with the proof in the book, close doesn&rsquo;t count.&nbsp; For his proof to be correct, you have to be able to be 100% sure of your &ldquo;knowledge&rdquo;.</span></p>
<p><span>I have one last thing to say about this book.&nbsp; It was ultimately a pleasant read as Dr. Lisle outlined a novel proof of creation that I had never heard before.&nbsp; I just wish that Dr. Lisle had gotten everything correct as my ultimate goal is to find truth, not just to defend my views. Know this, even if some time in the future, I change my beliefs and am once again a Christian, I will hold the same views about this book that I do now.&nbsp; As I showed above, I exercise my ability to understand issues from both sides and this allows me to objectively compare and contrast different viewpoints in these debates. &nbsp;My review of this book is based on more than just my current &ldquo;worldview.&rdquo; It is based on my experiences over the last 20 years, my knowledge, and the understanding of logic that I have gained over my whole life.</span></p>]]></content:encoded></item><item><title>Fallout 3 Fix</title><dc:creator>Tim Dreyer</dc:creator><pubDate>Mon, 25 Jan 2010 03:21:15 +0000</pubDate><link>https://timdreyer.com/blog/2010/1/24/fallout-3-fix.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489b7</guid><description><![CDATA[<p><span class="full-image-float-left ssNonEditable"><span><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489d6/1264447970043/Fallout-3.jpg/1000w" alt="" /></span></span>I&#8217;ve been having problems getting Fallout 3, one of my favorite games, to work on Windows 7. After trying all the fixes I could find online without luck, I finally figured out a configuration that seems to work very well This of course is with no thanks to bethesda softworks&#8230; they pretty much told me to go frack myself because they don&#8217;t support windows 7.</p>
<p>The problem I was having was very frequent freezing and crashing of the game anywhere from one to a few minutes into gameplay. After much fiddling, this is what works for me:</p>
<p>Find your FALLOUT.INI file. Mine was located at &#8220;C:\Users\tim\My Documents\My Games\Fallout3\FALLOUT.INI&#8221; Once you find it, open it and change the line that says &#8220;bUseThreadedAI=0&#8221; to &#8220;bUseThreadedAI=1&#8221;. Right after that line, add one that says &#8220;iNumHWThreads=2&#8221;.</p>
<p>Next, find your fallout.exe file. Mine was located at &#8220;C:\Program Files\Steam\steamapps\common\fallout 3\Fallout3.exe&#8221; because I bought fallout 3 on steam. Your location may vary. Right click on &#8220;Fallout3.exe&#8221; and click on &#8220;Properties.&#8221; Go to the &#8220;Compatability&#8221; tab, and select &#8220;run this program in compatability mode for:&#8221; and choose &#8220;Windows XP (Service Pack 3).&#8221; Select &#8220;Disable Desktop Composition.&#8221;</p>
<p>That&#8217;s it, you&#8217;re good to go. Hope this works. If it doesn&#8217;t, don&#8217;t ask me any questions, I found this by chance. Good luck!</p>]]></description></item><item><title>District 9</title><category>TV and Film</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Tue, 25 Aug 2009 22:46:16 +0000</pubDate><link>https://timdreyer.com/blog/2009/8/25/district-9.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489b5</guid><description><![CDATA[<p>I took the chance to see <a href="http://en.wikipedia.org/wiki/District_9">District 9 </a>this weekend while shopping down in Kansas City. It&#8217;s a decent sci-fi flick that kept me interested for _most_ of the film. The one thing that I couldn&#8217;t stop thinking about was how much these aliens look like <a href="http://en.wikipedia.org/wiki/Zoidberg">Zoidberg</a>!!!</p>
<p>&nbsp;<span class="full-image-inline ssNonEditable"><span><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee748a12/1251234915667/zoidberg.jpg/1000w" alt="" /></span></span> <span class="full-image-inline ssNonEditable"><span><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee748a13/1251234884487/d9alien.jpg/1000w" alt="" /></span></span></p>
<p>&nbsp;</p>]]></description></item><item><title>Saturday Riding</title><dc:creator>Tim Dreyer</dc:creator><pubDate>Sat, 08 Aug 2009 22:22:44 +0000</pubDate><link>https://timdreyer.com/blog/2009/8/8/saturday-riding.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489b4</guid><description><![CDATA[<p>Had a great ride today. Rode over 23 miles going to mozingo and back. It was a hot one today (93F) but a great ride.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://farm4.static.flickr.com/3463/3802298116_a958cd4823_d.jpg?__SQUARESPACE_CACHEVERSION=1249770636853" alt="" /></span></span></p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://farm3.static.flickr.com/2437/3802297758_2569532d37_d.jpg?__SQUARESPACE_CACHEVERSION=1249770655868" alt="" /></span></span></p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://farm4.static.flickr.com/3470/3801482393_8b3f0708ec_d.jpg?__SQUARESPACE_CACHEVERSION=1249770669141" alt="" /></span></span></p>]]></description></item><item><title>Squarespace</title><dc:creator>Tim Dreyer</dc:creator><pubDate>Thu, 30 Jul 2009 15:10:48 +0000</pubDate><link>https://timdreyer.com/blog/2009/7/30/squarespace.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee7489b3</guid><description><![CDATA[<p><span class="full-image-inline ssNonEditable"><span><img src="/static/50cdee65e4b0a7200de3378d/50d08151e4b0e297ee748923/50d08151e4b0e297ee7489dd/1248977467903/logo-transparent.png/1000w" alt="" /></span></span>Well, if you&#8217;re reading this, you are now seeing my new <a href="http://www.squarespace.com">squarespace </a>site! I have decided to make the jump and use the awesomeness of squarespace! Wordpress was mangling too many things and I didn&#8217;t feel like figuring out how to make a new wordpress theme so my website would have the same theme on all pages. Look around and let me know if anything doesn&#8217;t work like it&#8217;s supposed to!</p>]]></description></item><item><title>Geocaching, A Beginning</title><category>Computers and Tech</category><category>Random</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Sat, 25 Jul 2009 02:06:22 +0000</pubDate><link>https://timdreyer.com/blog/2009/7/24/geocaching-a-beginning.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748976</guid><description><![CDATA[<p>Have you heard of <a class="zem_slink" title="Geocaching" rel="wikipedia" href="http://en.wikipedia.org/wiki/Geocaching">Geocaching</a>? If you have a <a class="zem_slink" title="Global Positioning System" rel="wikipedia" href="http://en.wikipedia.org/wiki/Global_Positioning_System">GPS</a> device, you could even participate! According to <a class="zem_slink" title="Geocaching.com" rel="homepage" href="http://geocaching.com">geocaching.com</a>, geocaching is,</p>
<blockquote>Geocaching is a high-tech treasure hunting game played throughout the world by adventure                 seekers equipped with GPS devices. The basic idea is to locate hidden containers,                 called geocaches, outdoors and then share your experiences online. Geocaching is                 enjoyed by people from all age groups, with a strong sense of community and support                 for the environment.</blockquote>
<p><br />Sound like fun? I thought so. Last night I found my first Geocache at N 40&deg; 21.338 W 94&deg; 53.816. Do you know where that is? No? Huh&#8230; Well, if you&#8217;re in Maryville, you probably don&#8217;t know you <em>do</em> know where it is! :) After finding my first cache, I rode my bike a while and saw both the water tower on campus draining, and a SKUNK on campus! Pics are on <a href="http://www.flickr.com/photos/timdreyer/3753896724/">flickr</a>. <small>(Wordpress is still mangling my pics&#8230;)</small></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm4.static.flickr.com/3465/3753896724_cc8aa1384b.jpg?__SQUARESPACE_CACHEVERSION=1249000646150" alt="" /></span></span></a></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm3.static.flickr.com/2452/3753102359_8a7978b9d3.jpg?__SQUARESPACE_CACHEVERSION=1249000675166" alt="" /></span></span></a></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm3.static.flickr.com/2437/3753106005_c91be92bfb.jpg?__SQUARESPACE_CACHEVERSION=1249000691654" alt="" /></span></span></a></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm3.static.flickr.com/2579/3753904932_6e6db5c4fb.jpg?__SQUARESPACE_CACHEVERSION=1249000719470" alt="" /></span></span></a></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm4.static.flickr.com/3503/3753905790_09b196cef4.jpg?__SQUARESPACE_CACHEVERSION=1249000745064" alt="" /></span></span></a></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm4.static.flickr.com/3533/3753902778_47cd8fb241.jpg?__SQUARESPACE_CACHEVERSION=1249000768982" alt="" /></span></span></a></p>
<p><a href="http://www.flickr.com/photos/timdreyer"><span class="full-image-block ssNonEditable"><span><img src="http://farm3.static.flickr.com/2499/3753105383_e05f6cae8f.jpg?__SQUARESPACE_CACHEVERSION=1249000785263" alt="" /></span></span></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></description></item><item><title>The BookStop Coffee Shop</title><category>Bicycling</category><category>Random</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Thu, 16 Jul 2009 00:23:36 +0000</pubDate><link>https://timdreyer.com/blog/2009/7/16/the-bookstop-coffee-shop.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748972</guid><description><![CDATA[Maryville has one coffee shop that I know of that is not on campus. I decided to pay it a visit today to see what it was like. The Book Stop Coffee Shop delivered the coffee and managed to do it well. Situated on main street between 2nd and 3rd, the Book Stop is right on my way to work! They have a decent but simple setup with good coffee and excellent service! As you walk in, you seem to get both the smell of coffee (yum!) and books. The majority of the shop is set up for books and antiques, but there are plenty of tables set up at the front for patrons. If you're in town visiting, go ahead and stop by. You won't be disappointed!<br/><br/><a href="http://s3.media.squarespace.com/production/334107/4417261/blog/wp-content/uploads/2009/07/BSCS_close.jpg"><img class="aligncenter size-full wp-image-1007" title="BookStop Coffee Shop" src="http://s3.media.squarespace.com/production/334107/4417261/blog/wp-content/uploads/2009/07/BSCS_close.jpg" alt="BookStop Coffee Shop" width="553" height="368" /></a>]]></description></item><item><title>Firefox 3.5 Available</title><category>Computers and Tech</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Wed, 01 Jul 2009 01:51:36 +0000</pubDate><link>https://timdreyer.com/blog/2009/7/1/firefox-35-available.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748971</guid><description><![CDATA[<br/><dl class="wp-caption alignright"><dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Firefox-logo.svg"><img title="Mozilla Firefox" src="http://upload.wikimedia.org/wikipedia/en/thumb/e/e3/Firefox-logo.svg/133px-Firefox-logo.svg.png" alt="Mozilla Firefox" width="133" height="127" /></a></dt><dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://en.wikipedia.org/wiki/Image:Firefox-logo.svg">Wikipedia</a></dd></dl><br/><br/>Hey, if you're using <a class="zem_slink" title="Firefox" rel="homepage" href="http://www.mozilla.com/en-US/firefox/">Firefox</a>, you need to update to the latest version out today. Head on over to <a href="http://www.getfirefox.com">http://www.getfirefox.com</a> to get the 3.5 version.<br/><h6 class="zemanta-related-title">Related articles by Zemanta</h6><br/><ul class="zemanta-article-ul"><br/>	<li class="zemanta-article-ul-li"><a href="http://www.mozillazine.org/talkback.html?article=28493"> Mozilla Firefox 3.5 Released </a> (mozillazine.org)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://gigaom.com/2009/06/30/mozilla-releases-firefox-3-5-it-is-worth-downloading-now/"> Mozilla's Brand New Firefox 3.5 is Worth Downloading </a> (gigaom.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://techie-buzz.com/featured/download-firefox-35.html"> Download Firefox 3.5 </a> (techie-buzz.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://www.outsidethebeltway.com/archives/firefox_35_available/"> Firefox 3.5 Available </a> (outsidethebeltway.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://www.theregister.co.uk/2009/06/30/mozilla_firefox_3_5/"> Mozilla's servers wobble as Firefox 3.5 hits interwebs </a> (theregister.co.uk)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://mashable.com/2009/06/30/firefox-35-million-downloads/"> Firefox 3.5 Approaches 1 Million Downloads; Watch in Real-Time </a> (mashable.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://www.shankrila.com/tech-stuff/firefox-35-download/"> Firefox 3.5 is Ready for Download </a> (shankrila.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://mashable.com/2009/06/30/firefox-35-download/"> Firefox 3.5 Now Available for Download </a> (mashable.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://www.ihisham.com/2009/06/firefox-35-step-forward.html"> Firefox 3.5 - A Step Forward </a> (ihisham.com)</li><br/></ul><br/><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_a.png?x-id=f70587cd-22e7-47d7-a6b0-5c42699ce9b2" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"></span>]]></description></item><item><title>Goodbye Pirate Bay</title><category>Computers and Tech</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Wed, 01 Jul 2009 01:46:52 +0000</pubDate><link>https://timdreyer.com/blog/2009/7/1/goodbye-pirate-bay.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee74896e</guid><description><![CDATA[You will be missed for what you once were.<br/><p><a href="http://torrentfreak.com/the-pirate-bay-sold-to-software-company-goes-legal-090630/"><img class="size-full wp-image-988 aligncenter" title="piratebay" src="http://s3.media.squarespace.com/production/334107/4417261/blog/wp-content/uploads/2009/06/piratebay.gif" alt="piratebay" width="308" height="338" /></a></p><br/><br/><img src="file:///home/tim/Desktop/piratebay.gif" alt="" /><br/><h6 class="zemanta-related-title">Related articles by Zemanta</h6><br/><ul class="zemanta-article-ul"><br/>	<li class="zemanta-article-ul-li"><a href="http://torrentfreak.com/the-pirate-bay-closes-its-tracker-removes-torrents-090630/"> The Pirate Bay Will Close Its Tracker and Remove Torrents (Updated) </a> (torrentfreak.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://torrentfreak.com/the-pirate-bay-sold-to-software-company-goes-legal-090630/"> The Pirate Bay Sold To Software Company, Goes Legal </a> (torrentfreak.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://thenextweb.com/2009/06/30/confirmed-pirate-bay-acquired-78-million/"> Confirmed: The Pirate Bay To Be Acquired for $7.8 Million (Updated) </a> (thenextweb.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://torrentfreak.com/pirate-bays-peter-sunde-discusses-the-sites-future-090630/"> Pirate Bay's Peter Sunde Discusses the Site's Future </a> (torrentfreak.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://mashable.com/2009/06/30/breaking-the-pirate-bay-sold-for-7-8-million/"> BREAKING: The Pirate Bay Sold For $7.8 Million </a> (mashable.com)</li><br/></ul><br/><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_a.png?x-id=8d349ce4-d82f-49fc-828f-6b3afa9c3b1f" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"></span>]]></description></item><item><title>Windows 7 Now Available</title><category>Computers and Tech</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Sat, 27 Jun 2009 13:08:20 +0000</pubDate><link>https://timdreyer.com/blog/2009/6/27/windows-7-now-available.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee74896d</guid><description><![CDATA[If you have a Vista computer, you might as well head on over and pre-order the windows 7 upgrade. You'll save almost 50% off the final retail price. Check it  out at <a href="http://www.newegg.com/win7NOW/">newegg</a> or <a href="http://www.microsoft.com/windows/buy/offers/pre-order.aspx">microsoft</a>. More info at the <a href="http://www.winsupersite.com/win7/pricing.asp">Super Site for Windows</a>.]]></description></item><item><title>Forwarding</title><category>Random</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Sat, 23 May 2009 13:00:32 +0000</pubDate><link>https://timdreyer.com/blog/2009/5/23/forwarding.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee74896b</guid><description><![CDATA[<p><a href="http://www.shoeboxblog.com/"><img class="aligncenter" title="Forwarding" src="http://thenextweb.com/wp-content/uploads/2009/05/should-you-forward-that-email-292x500.jpg" alt="" width="292" height="500" /></a></p>]]></description></item><item><title>Windows 7 Sound Managment</title><category>Computers and Tech</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Fri, 22 May 2009 12:00:11 +0000</pubDate><link>https://timdreyer.com/blog/2009/5/22/windows-7-sound-managment.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748969</guid><description><![CDATA[I just found a <del datetime="2009-07-07T20:05:25+00:00">new </del>feature of Windows 7 that <del datetime="2009-07-07T20:02:34+00:00">may or may not have been </del><ins datetime="2009-07-07T20:02:34+00:00"> was added </ins>in Vista ( I upgraded from XP).  In the sound management window, you can choose individual applications and mute them selectively. I have been wanting this since windows 95!!! It only took them <del datetime="2009-07-07T20:02:34+00:00">15</del> <ins datetime="2009-07-07T20:02:34+00:00">11</ins> years to do it too!<br/><br/><a href="http://s3.media.squarespace.com/production/334107/4417261/blog/wp-content/uploads/2009/05/windows-sound-management.png"><img class="aligncenter size-full wp-image-974" title="windows-sound-management" src="http://s3.media.squarespace.com/production/334107/4417261/blog/wp-content/uploads/2009/05/windows-sound-management.png" alt="windows-sound-management" width="489" height="349" /></a>]]></description></item><item><title>A Big Rant</title><category>Soapbox</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Thu, 21 May 2009 12:00:55 +0000</pubDate><link>https://timdreyer.com/blog/2009/5/21/a-big-rant.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748965</guid><description><![CDATA[[caption id="" align="alignright" width="192" caption=" photo credit: buidl-lemmy"]<a title="Rafiki Part 1" href="http://www.flickr.com/photos/33852711@N05/3546275773/" target="_blank"><img src="http://farm4.static.flickr.com/3554/3546275773_03381418a8_m.jpg" border="0" alt="Rafiki Part 1" width="192" height="128" /></a>[/caption]<br/><p>Recently, I heard a scenario that completely changed the way I look at life. I would like to share that scenario with you now and explain how deeply it has affected me.</p><br/><br/><blockquote><br/><p>If you could study 200 infants who were separated into 2 groups: those growing up in (reasonable) Fundamentalist, Evangelical Christian homes (group A), and the other half in Muslim homes (group B), you would find a very consistent result when they are 21. If you were to ask the children what religion they held to at 21, about half would be Christians, half would be Muslims, and the majority of their answers would be consistent with the beliefs of their parents.</p><br/></blockquote><br/><p>Does the outcome of this scenario surprise you? It did not surprise me. Do you see anything disturbing about this scenario? I did. What I realized was that when children are young, they do not possess the reasoning capacity to make informed decisions regarding any complex topic, including religion. Would you expect parents to teach their 4-year-old's about the best economic policy? Why not? Well because they would not understand it, right? Why then is it acceptable and normal for parents to teach their young children about a topic as complicated and multivarious as religion? Shoot, even Christianity has dozens of different viewpoints on the Bible alone, and many of them are mutually exclusive!</p><br/><br/>Out of this, a reasonable conclusion can also be drawn. When children are young, they are very impressionable. So much so that they believe that there are monsters in the closet and under the bed, that Santa is real, and that if they put a baby tooth under their pillow, a magical fairy will give them money for it. Is it then unreasonable to say that a child, any child will be greatly impacted by the religion of their parents (given that the parents are not gibbering idiots, of course...)? I do not think that this is an unreasonable claim. If this were not true, we would find that the religion of the parents would not have a significant impact on the religion of the offspring. When parents teach their children about religion at a young age, the effects are essentially the same as those of brainwashing. No matter the religion (within reason), the children are very likely to follow it to some extent for their whole lives.<br/><br/>From this, I think that it is also reasonable to say that the reason that the vast majority of Americans claim to be Christians, yet so few of them show up for church services on Sunday mornings is that they were raised Christians, believed it for a while, then "fell away" when they matured and their subconscious realized that they didn't really believe it. Consciously though, they still felt connected to Christianity, but they were too worried/busy with other things in their life to sit down and really think about it.<br/><br/>From this reasoning, I had a revelation. For quite some time, I have felt like a hypocrite. I lived the life of a Christian, but I never felt drawn by God, or really known what He wanted me to do (specifically). Yeah, I know what every Christian is supposed to do, but there is also supposed to be the voice of God in your life (ironic though that Christians hear a voice in their head and it makes them close to god, but schizophrenics hear voices and it makes them crazy...) and I have never had that. Ever.<br/><br/>Don't get me wrong. I believed (and still do) that the bible is true, that Jesus was God, and that He died for my sins, etc. etc. etc. I also know that had my parents raised me as a Muslim, I would be a Muslim right now. If they had raised me an atheist, I would be an atheist right now. That should make you think. I am an adult with fundamentalist, evangelical Christian views, and these are what I was taught since I was very young... Should it be surprising that this is the condition that I find myself in? How much were my religious view affected (adversely or otherwise) by what I was taught when I was young?<br/><br/>I.  Do.  Not.  Know.<br/><br/>Can I know? I mean can I really ever know how much my religious views are skewed by the indoctrination I recieved as an impressionable child? Can anyone ever know? I'm not sure, but it sure made me think.<br/><br/>So, given all of this, I have decided to take a "religious vacation" and really examine Christianity (and other faiths) and decide whether or not it/they really is/are worth my unwavering faith. I have always thought that blind faith (or faith without reason) is fundamentally flawed and essentially worthless. I'll leave you with that and close with this quote from Thomas Jefferson:<br/><blockquote><br/><p>"Question with boldness even the existence of a God;<br/>because, if there be one, he must more approve of the homage of reason,<br/>than that of blind-folded fear...<br/>Do not be frightened from this inquiry<br/>from any fear of its consequences.<br/>If it ends in the belief that there is no God,<br/>you will find incitements to virtue<br/>in the comfort and pleasantness you feel in its exercise..."</blockquote>]]></description></item><item><title>Windows 7, Ubuntu 9.04, and Sabayon 4.1</title><category>Computers and Tech</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Wed, 20 May 2009 20:14:51 +0000</pubDate><link>https://timdreyer.com/blog/2009/5/20/windows-7-ubuntu-904-and-sabayon-41.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748964</guid><description><![CDATA[<br/><br/>[caption id="" align="alignright" width="180" caption="Image via Wikipedia"]<a href="http://en.wikipedia.org/wiki/Image:Ubuntu_logo_only.png"><img title="Wubi" src="http://upload.wikimedia.org/wikipedia/en/thumb/f/f4/Ubuntu_logo_only.png/300px-Ubuntu_logo_only.png" alt="Wubi" width="180" height="179" /></a>[/caption]<br/><br/><br/>Well, I have been running my <a class="zem_slink" title="Multi boot" rel="wikipedia" href="http://en.wikipedia.org/wiki/Multi_boot">multi-boot</a> system for a couple of weeks now, long enough to make some early predictions about the two <a class="zem_slink" title="Operating system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Operating_system">operating systems</a> that I have been using the most.<br/><br/>Up to now, I have not done much with Sabayon on this machine so I do not have much to say about it. <a class="zem_slink" title="Ubuntu" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a> and <a class="zem_slink" title="Windows 7" rel="homepage" href="http://windows.microsoft.com/en-US/Windows7/Home/">Windows 7</a>? Oh yeah.<br/><h3>Ubuntu 9.04 - Jaunty Jackalope</h3><br/>Ubuntu 9.04 is another solid release from the <a class="zem_slink" title="Canonical Ltd." rel="homepage" href="http://www.canonical.com/">Canonical</a> supported community. With the exception of a few glitches that were not there in 8.10, 9.04 runs extremely smoothly. Faster boot times and the new <a class="zem_slink" title="Ext4" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ext4">ext4</a> file system are just 2 of the many improvements. I think that my favorite thing about this release was the new themes that were provided that are great improvements on the default Ubuntu theme. My biggest bone to pick is that if you want to customize the system sounds, Ubuntu only acknowledges about half of the changes! Oh well, small problems. Overall, 9.04 is a great release.<br/><h3>Windows 7 - Not Really the 7th Windows Release</h3><br/>I think the thing that I have been most impressed with is Windows 7. <a class="zem_slink" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> has really pulled out all the stops for this update to the unfortunate <a class="zem_slink" title="Windows Vista" rel="homepage" href="http://www.microsoft.com/windows/windows-vista/default.aspx">Windows Vista</a>. Basically, 7 is Vista fixed. It is faster, smoother, and oh so nice to work with. I never really thought that I would be one to sing the praises of Microsoft, but they have really done a nice job with this release. I think that my favorite new feature in Win 7 is the window snap actions. Just drag the window to either side and the window will expand to take up exactly half of the screen. Drag it to the top and it will maximize. My biggest complaint is that... that... uh... ok. I guess I don't really have any complaints yet. This is weird. O_o   Gotta go find somthing in Windows 7 that is still broked.<br/><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/8dfc11ea-2ce3-4080-94ce-5bfc39be882c/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=8dfc11ea-2ce3-4080-94ce-5bfc39be882c" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"></span>]]></description></item><item><title>Star Trek - Reboot</title><category>TV and Film</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Mon, 11 May 2009 09:56:39 +0000</pubDate><link>https://timdreyer.com/blog/2009/5/11/star-trek-reboot.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748963</guid><description><![CDATA[<br/><dl class="wp-caption alignright"><dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/82701993@N00/2946337255"><img title="Spock &amp; Kirk" src="http://farm4.static.flickr.com/3185/2946337255_d81b219c8c_m.jpg" alt="Spock &amp; Kirk" width="178" height="240" /></a></dt><dd class="wp-caption-dd zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/82701993@N00/2946337255">Eric (a.k.a. Hervé)</a> via Flickr</dd></dl><br/><br/>Well, I got to see the new Star Trek movie. The no spoilers review is this: "kick ass!" Not to say that the movie was perfect (enough with the lense flairs already!) but this was an excelent film for any sci-fi/star trek fan. Not only did the movie contain great action sequences but our new (old) heroes came through great. Some spoilers ahead -&gt;<br/><br/>I think that the characters were the strongest part of this film. The storyline, while not bad, was not what held this film up. Kirk was the charming, intelligent, confident and oh-so-stuck-up Kirk we all love; Spock managed to have some very true human moments; Checkov was weird (but that was good); Scotty was amazing (what's with the weird little alien dude?); Bones didn't add anything new to the character, but still, he was hilarious ('green blooded hobgoblin').<br/><br/>The battles were reminescent of the scale and excitement of Battlestar Galactica battles, and the effect was quite satisfying.<br/><br/>Overall, the movie succeded well in resurrecting the expiring Star Trek franchise and I'm looking forward to the next installment!<br/><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_a.png?x-id=315d9561-a958-4b53-a259-1495e23d336e" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"></span>]]></description></item><item><title>Time to ride more</title><category>Bicycling</category><category>Computers and Tech</category><category>News</category><dc:creator>Tim Dreyer</dc:creator><pubDate>Sun, 10 May 2009 10:47:57 +0000</pubDate><link>https://timdreyer.com/blog/2009/5/10/time-to-ride-more.html</link><guid isPermaLink="false">50cdee65e4b0a7200de3378d:50d08151e4b0e297ee748923:50d08151e4b0e297ee748962</guid><description><![CDATA[<br/><dl class="wp-caption alignright"> <dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:SabayonLinux_logo.png"><img title="Logo de SabayonLinux" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/25/SabayonLinux_logo.png/300px-SabayonLinux_logo.png" alt="Logo de SabayonLinux" width="300" height="279" /></a></dt> <dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://commons.wikipedia.org/wiki/Image:SabayonLinux_logo.png">Wikipedia</a></dd> </dl><br/><br/>Well, I've been working on getting my computer into a new setup. With the seemingly serendipitous releases of Windows 7, Ubuntu 9.04, and Sabayon 4.1 all within 5 weeks, I figured it was time to wipe the compy and triple-boot.<br/><br/>Well, now that I have  a mostly functioning boot of the three OS's, it's time to get back outside and do some more riding. Time to wear out my new bike!<br/><h6 class="zemanta-related-title">Related articles by Zemanta</h6><br/><ul class="zemanta-article-ul"><br/>	<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5240931/lifehackers-guide-to-upgrading-to-windows-7-rc"> Lifehacker's Guide to Upgrading to Windows 7 RC [Windows 7] </a> (lifehacker.com)</li><br/>	<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5242235/recover-the-grub-menu-on-a-dual+boot-system"> Recover the GRUB Menu on a Dual-Boot System </a> (lifehacker.com)</li><br/></ul><br/><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_a.png?x-id=a1087055-94c8-4d98-9462-0854f36b43d9" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"></span>]]></description></item></channel></rss>