<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kristopher Overholt &#187; Computing</title>
	<atom:link href="http://www.koverholt.com/category/computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.koverholt.com</link>
	<description>Fire Protection Engineering Tools, Notes, and Projects</description>
	<lastBuildDate>Wed, 25 Jan 2012 22:44:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to compile CFAST on Mac OS X and Linux</title>
		<link>http://www.koverholt.com/2011/07/how-to-compile-cfast-on-mac-os-x-and-linux/</link>
		<comments>http://www.koverholt.com/2011/07/how-to-compile-cfast-on-mac-os-x-and-linux/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 04:57:52 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[CFAST]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[FORTRAN]]></category>
		<category><![CDATA[NIST]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=1208</guid>
		<description><![CDATA[The Consolidated Model of Fire and Smoke Transport (CFAST) model is a two-zone fire model developed by NIST. From the NIST website, you can download the Windows version of CFAST, which includes a graphical user interface frontend (CEdit) for the creation and execution of CFAST cases. However, there are no downloadable CFAST binaries or user interfaces [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/03/mac-corrected-numerical-analysis-fortran-programs/' rel='bookmark' title='Mac-Corrected Numerical Analysis Fortran Programs'>Mac-Corrected Numerical Analysis Fortran Programs</a></li>
<li><a href='http://www.koverholt.com/2008/03/how-to-install-pyobjc-pygame-and-gasp-on-mac-os-x-for-python-tutorial/' rel='bookmark' title='How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial'>How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.nist.gov/el/fire_research/cfast.cfm">Consolidated Model of Fire and Smoke Transport (CFAST</a>) model is a two-zone fire model developed by NIST. From the NIST website, you can download the Windows version of CFAST, which includes a graphical user interface frontend (CEdit) for the creation and execution of CFAST cases. However, there are no downloadable CFAST binaries or user interfaces for the Mac and Linux platforms; you must compile CFAST yourself.</p>
<p>This guide will help you compile the CFAST executable on Mac OS X and Linux. This is useful for running CFAST cases on Mac or Linux machines, which is especially useful for scripting CFAST runs for optimization problems or running CFAST on a large number of cases in batch mode.</p>
<p>You will need the Intel Fortran compilers (<a href="http://software.intel.com/en-us/articles/intel-compilers/">ifort</a>) and a copy of the CFAST source code from the <a href="http://code.google.com/p/cfast/">CFAST Google Code site</a>. You can try to use other free compilers, but I find that the Intel compilers are the most compatible and produce the most optimized (fastest) binaries. Note: there are heavily discounted <a href="http://software.intel.com/en-us/articles/intel-education-offerings/">Intel compilers for students</a>.</p>
<p>To download the CFAST source code, the easiest way is to install <a href="http://subversion.tigris.org/">subversion</a> on your Mac or Linux machine and issue the following command:</p>
<p style="padding-left: 30px;"><em>svn co http://cfast.googlecode.com/svn/trunk/ cfast</em></p>
<p>Once you have the CFAST source code on your machine, you can perform the following steps to compile the CFAST executable.</p>
<blockquote><p><strong>1.</strong> In the <em>cfast/CFAST/</em> directory, edit the <em>makefile_linux</em> file and make the following changes:</p>
<ul>
<li>Replace ‘radation’ with ‘radiation’; this is a typo</li>
<li>Add &#8216;cyl_conduct.o&#8217;, &#8216;datamodules.o&#8217;, and &#8216;ssHeaders.f&#8217; to the <em>obj_serial</em> section</li>
<li>Add the following lines to the <em>Object Dependencies</em> section:</li>
<ul>
<li>cyl_conduct.o : cyl_conduct.f</li>
<li>datamodules.o : datamodules.f90</li>
<li>ssHeaders.o : ssHeaders.f</li>
</ul>
<li>Add &#8216;cyl_conduct.f&#8217;, &#8216;datamodules.f90&#8242;, and &#8216;ssHeaders.f&#8217; to the <em>cfast.o </em>line</li>
</ul>
<p>Note: The corrected makefile can also be downloaded from <a href="https://github.com/koverholt/fds-tools/blob/master/cfast_makefile_osx_linux/makefile_linux">here</a>.</p>
<p><strong>2.</strong> Copy <em>datamodules.f90</em> from the <em>cfast/CFAST/Include/</em> directory to the <em>cfast/CFAST/Source/ </em>directory</p>
<p><strong>3.</strong> Change to the <em>cfast/CFAST/Source/</em> directory</p>
<p><strong>4.</strong> Run the command ‘ifort -c datamodules.f90&#8242; to compile the datamodules and iofiles modules</p>
<p><strong>5.</strong> Finally, run the command ‘make -f ../makefile_linux intel_osx_64’ to build CFAST</p>
<p><strong>5b.</strong> If you are running Linux, the command is &#8216;make -f ../makefile_linux intel_linux&#8217;</p></blockquote>
<p>Using these steps, I was able to build CFAST on an Intel Macbook Pro running 10.6 (Snow Leopard) as well as a Linux machine running CentOS release 5.6 with the 64-bit Intel Fortran Compiler version 12.0.4.184.</p>
<div>
<p>With your new CFAST executable file (cfast_osx_intel_64), you can run a CFAST case using the following syntax:</p>
<p style="padding-left: 30px;"><em>./cfast_osx_intel_64 casename</em></p>
</div>
<div>where casename is the name of your CFAST casename.in file (notice the .in file extension is omitted from the command).</div>
<div></div>
<div>Happy modeling!</div>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/03/mac-corrected-numerical-analysis-fortran-programs/' rel='bookmark' title='Mac-Corrected Numerical Analysis Fortran Programs'>Mac-Corrected Numerical Analysis Fortran Programs</a></li>
<li><a href='http://www.koverholt.com/2008/03/how-to-install-pyobjc-pygame-and-gasp-on-mac-os-x-for-python-tutorial/' rel='bookmark' title='How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial'>How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2011/07/how-to-compile-cfast-on-mac-os-x-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plotting data on videos &#8211; A useful way to convey qualitative and quantitive information</title>
		<link>http://www.koverholt.com/2009/11/plotting-data-on-videos/</link>
		<comments>http://www.koverholt.com/2009/11/plotting-data-on-videos/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 08:49:44 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[FPE]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=731</guid>
		<description><![CDATA[Every once in a while, someone makes an impression on you that lasts for a lifetime. It sticks with you every single time. This is one of those, although a bit on the nerdy side, it is one that can change the way you present information in a very meaningful way. I was once sitting [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2011/02/new-web-calculator-flame-heights-and-plume-centerline-temperatures/' rel='bookmark' title='New web calculator &#8211; flame heights and plume centerline temperatures'>New web calculator &#8211; flame heights and plume centerline temperatures</a></li>
<li><a href='http://www.koverholt.com/2008/09/passionate-and-artful-communication-in-science/' rel='bookmark' title='Passionate and Artful Communication in Science'>Passionate and Artful Communication in Science</a></li>
<li><a href='http://www.koverholt.com/2011/02/new-web-calculator-tool-transient-steel-heating-under-fire-conditions/' rel='bookmark' title='New web calculator tool &#8211; transient steel heating under fire conditions'>New web calculator tool &#8211; transient steel heating under fire conditions</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" style="border: 0px initial initial;" title="flameheight_boxscale_cb_rad1" src="http://www.koverholt.com/wp-content/uploads/2009/11/flameheight_boxscale_cb_rad12.png" alt="flameheight_boxscale_cb_rad1" width="500" height="375" /></p>
<p style="text-align: center;">
<p></br><br />
Every once in a while, someone makes an impression on you that lasts for a lifetime. It sticks with you every single time. This is one of those, although a bit on the nerdy side, it is one that can change the way you present information in a very meaningful way.</p>
<p style="text-align: left;">I was once sitting at the NIST annual fire conference, going about my business, and someone working on a project regarding the structural response aspect of buildings on fire showed a video in their presentation. No big deal, right? Normally, we get cool fire videos, then some plots, and so on. Sometimes the plots are interesting, sometimes they are default from Excel with the ugly legend and all &#8211; with no story to tell.</p>
<p>But not this guy. He showed a video with real-time plots superimposed over the video showing the exact real-time structural response of the structure overlaid on the video in a plot. &#8220;AMAZING!&#8221; I thought. And it stuck with me. A useful way to convey synchronous information. People love videos, why not tell the qualitative AND quantitative story at the same time?</p>
<p>So I started working in grad. school on fire problems, and naturally, soon thereafter, I was scheduled to give a presentation. As most of my real creative coding and writing work happens of hours between the hours of 1 AM and 6 AM, I wanted to make this happen. I REALLY wanted some real-time plotting action in my presentation. No Excel templates for me! So I stayed up for a couple nights and worked on a way to use MATLAB to make this plotting dream a reality: I worked on importing videos, messing with frame rates, tons of images, and so forth. And soon thereafter, it happened. I had a working script.</p>
<p>I used it to show plots of large-scale fire tests with actual and predicted flame heights vs. time as seen here:</br></br></p>
<p style="text-align: center;"><a href="http://www.koverholt.com/2009/11/plotting-data-on-videos/"><img src="http://img.youtube.com/vi/yyWyOsPuRNo/default.jpg" width="130" height="97" border=0></a></p>
<p style="text-align: center;">
<p></br><br />
And I used the script to show the predicted flame heights on a small-scale test in an amazing way that just about anyone can relate to, fire-crazed scientist or not:</br></br></p>
<p style="text-align: center;"><a href="http://www.koverholt.com/2009/11/plotting-data-on-videos/"><img src="http://img.youtube.com/vi/Nu9s57fyKdU/default.jpg" width="130" height="97" border=0></a></p>
<p style="text-align: center;">
<p></br><br />
From anyone who has seen the videos firsthand, the response has been amazing. This is a great teaching and communication tool, and surprisingly enough, I haven&#8217;t found any existing program or tool that does this. And so I am sharing the videos and script here for anyone to use to better convey information.</p>
<p>My next steps are: 1) to convert the script to Python (since I am now almost exclusively using Python+numpy+scipy for my graduate research and daily work instead of MATLAB, and 2) to make the script into a cross-platform and easy to use tool.</p>
<p>I&#8217;m providing the code in its raw and uncommented and unedited form. It generates a number of images with plots superimposed on them, and then it is trivial to use a program to stitch them together into a video. I used Quicktime&#8217;s built in method. Sorry, too much current work going on finishing my MS thesis and Master&#8217;s degree to clean up the code, but it&#8217;s a brutal use of the &#8220;release early, release often&#8221; ideal! Hopefully someone can make some use of it.</p>
<p>So, here are the linked .m files:</p>
<p><a href="http://www.koverholt.com/scripts/ssPlotVideo.m">http://www.koverholt.com/scripts/ssPlotVideo.m</a><br />
<a href="http://www.koverholt.com/scripts/fireplotVideo.m"> http://www.koverholt.com/scripts/fireplotVideo.m</a></p>
<p>Enjoy! And please leave your comments or ideas!</p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2011/02/new-web-calculator-flame-heights-and-plume-centerline-temperatures/' rel='bookmark' title='New web calculator &#8211; flame heights and plume centerline temperatures'>New web calculator &#8211; flame heights and plume centerline temperatures</a></li>
<li><a href='http://www.koverholt.com/2008/09/passionate-and-artful-communication-in-science/' rel='bookmark' title='Passionate and Artful Communication in Science'>Passionate and Artful Communication in Science</a></li>
<li><a href='http://www.koverholt.com/2011/02/new-web-calculator-tool-transient-steel-heating-under-fire-conditions/' rel='bookmark' title='New web calculator tool &#8211; transient steel heating under fire conditions'>New web calculator tool &#8211; transient steel heating under fire conditions</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2009/11/plotting-data-on-videos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to remove yourself and your thoughts from this world</title>
		<link>http://www.koverholt.com/2008/11/how-to-remove-yourself-and-your-thoughts-from-this-world/</link>
		<comments>http://www.koverholt.com/2008/11/how-to-remove-yourself-and-your-thoughts-from-this-world/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 05:35:16 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Habits]]></category>
		<category><![CDATA[Happiness]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Intention]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=345</guid>
		<description><![CDATA[&#8220;&#8230; and television on all over the place is leading to a steady dumbing down of the American public and a corrosion of basic critical thinking in the population.&#8221; - Jamie Raskin, American University law professor, November 2004 on the Democracy Now! radio program Flickr user sandymichelle Just this past Sunday I had to kill [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/04/remove-that-reading-examinee-from-the-airport/' rel='bookmark' title='Remove that reading examinee from the airport'>Remove that reading examinee from the airport</a></li>
<li><a href='http://www.koverholt.com/2009/02/dont-let-the-sun-go-down-on-your-grievances/' rel='bookmark' title='Don&#039;t let the sun go down on your grievances'>Don&#039;t let the sun go down on your grievances</a></li>
<li><a href='http://www.koverholt.com/2007/09/the-daily-priority/' rel='bookmark' title='The Daily Priority'>The Daily Priority</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>&#8220;&#8230; and television on all over the place is leading to a steady dumbing<br />
down of the American public and a corrosion of basic critical thinking in the population.&#8221;</p>
<p>- Jamie Raskin, American University law professor, November 2004 on the Democracy Now! radio program<br/><br/></p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/11/drugeye.jpg"><img class="alignnone size-full wp-image-346" title="drugeye" src="http://www.koverholt.com/wp-content/uploads/2008/11/drugeye.jpg" alt="" width="303" height="350" /></a><em><a href="http://flickr.com/photos/sandymichelle/2678649981/"><br />
Flickr user sandymichelle</a></em><br/><br/></p>
<p>Just this past Sunday I had to kill my television &#8211; in the best sense of the word. You know: denounce, unrecognize, and the such. It was really stealing away any free (and productive) time that I had. I mean, the idle brain cells spin out of control and zoning out in front of TV after a long day of work leads to: not caring about what you eat, not thinking critically about other great things in the world, not spending ol&#8217; fashioned time with your family or friends. (<a href="http://www.turnoffyourtv.com/">Lots of great, original articles about Killing Your TV</a>)</p>
<p>I remember about 4 years ago when I came across a similar &#8220;Turn Off Your TV&#8221; site online in the form of a podcast. And the 2 people were talking on and on about trans fatty acids. I was so compelled as to what they were saying I remember typing as fast as I could to take notes and replaying parts and looking up health terms and the such. <strong>Learning. Critical thinking. Sharing.</strong> I went on to write an article in the paper at my school and was excitedly telling everyone about my findings. I continued to look up more and more information &#8211; I was addicted to knowledge. Just a few minutes ago, I just finished my meal of baked chicken, couscous, and black bean soup with tomatoes, onions, bell peppers, and garlic. And I know that most of that motivation to eat healthy as I do today came from that little audio finding 4 years back. Now it allows me, 4 years later, a chance for me to just sit and enjoy a meal &#8211; in peace and quiet &#8211; and experience the flavors of life one by one. Hmm, there <strong>was</strong> life before TV.</p>
<p>I kept running past the idea that parents talk to their kids about 28 minutes a day while the average adult watches 2.5 hours of television per day. Hmm. What are we doing to <strong>ourselves</strong>? Now, I&#8217;m not being anti-fun here, entertainment is great, and I make it through most of my day with a humorous outlook on life. But I see people <a href="http://www.essortment.com/all/tvwatch_rcuo.htm">ignoring food as they eat</a>, sitting silently among family or friends, <a href="http://media.www.indianastatesman.com/media/storage/paper929/news/2003/09/24/Entertainment/Stop-Watching.Tv.Do.Something.Worthwhile-1870466.shtml">just gazing</a>. Paying lots of money &#8211; to be advertised to constantly and have this machine <strong>suck</strong> away brain cells.<br/><br/></p>
<p><a href="http://flickr.com/photos/janz87/2079381833/"><img class="alignnone size-full wp-image-347" title="tvstare" src="http://www.koverholt.com/wp-content/uploads/2008/11/tvstare.jpg" alt="" width="500" height="333" /><em><br />
Flickr user janz87</em></a><br/><br/></p>
<p>I also came across someone who said &#8211; if aliens came to visit us and checked out the layout of our homes, they would think the television is some sort of <strong>god</strong> of ours, as our entire houses are arranged around the careful placement of the television set. And then comes the arguments about using a DVR to save time. Of course, it is better than just mindlessly watching channels and surfing without barriers, but there are other ways to go about getting your fix without paying a crapload (<a href="http://hulu.com">ahem</a>). But I can think of many <a href="http://www.balancedlifecenter.com/307-stop-watching-television/">better things to do anyway</a>! I don&#8217;t think you&#8217;ll lose sleep at night or have regrets on your deathbed &#8211; just wondering and wishing that you <strong>you had watched more TV</strong>.<br/><br/></p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/11/firepeople.jpg"><img class="alignnone size-full wp-image-348" title="firepeople" src="http://www.koverholt.com/wp-content/uploads/2008/11/firepeople.jpg" alt="" width="500" height="375" /></a><a href="http://flickr.com/photos/chrisdonia/2455152443/"><br />
Flickr user chrisdonia</a><br/><br/></p>
<p>On another note, it is awesome to see change and progress going on all around the world, from the recent election all the way down to the small world of fire protection engineering. Every time I watch one of the <a href="http://blip.tv/file/959514">videos about technology and change</a> in this era &#8211; I get all giddy and warm on the inside. It&#8217;s true.</p>
<p>There&#8217;s a <strong>giant conversation</strong> going on. And it doesn&#8217;t depend on power or money or anything. Just a <strong>passion &#8211; a want</strong>. I think of how one person that I know revamped and forever changed the world of fire modeling by utilizing a couple of free tools to bring together thousands of users who were all previously working in dark corners. I think of how a few scratches I made on a notebook one night turned into a tool that hundreds of fire model users use every week &#8211; and I think of the <strong>next step, and the next, constantly progressing</strong>. I think of those that are &#8220;<strong>too busy</strong>&#8221; to participate in this movement and think this is only for nerds and computer people &#8211; and how bad I want them to participate.</p>
<p>I came to the conclusion that the two ideas I speak about here are interrelated. <strong>Apathy and social sloth.</strong> Here&#8217;s what I think: <strong>no one is any more busy than anyone else</strong>. Some of us just want something more strongly than others. And that used to be okay, praised even &#8211; when the dark corners were predominant. But now, everything is public &#8211; the world pushes upon itself.</p>
<p>Don&#8217;t be &#8220;too busy&#8221; watching TV or sitting out on this big movement &#8211; wherever you are or whoever you are. This is big. <strong>Join in anytime</strong>.</p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/04/remove-that-reading-examinee-from-the-airport/' rel='bookmark' title='Remove that reading examinee from the airport'>Remove that reading examinee from the airport</a></li>
<li><a href='http://www.koverholt.com/2009/02/dont-let-the-sun-go-down-on-your-grievances/' rel='bookmark' title='Don&#039;t let the sun go down on your grievances'>Don&#039;t let the sun go down on your grievances</a></li>
<li><a href='http://www.koverholt.com/2007/09/the-daily-priority/' rel='bookmark' title='The Daily Priority'>The Daily Priority</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/11/how-to-remove-yourself-and-your-thoughts-from-this-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Arrival of Collaboration in Fire Protection Engineering</title>
		<link>http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/</link>
		<comments>http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 05:42:15 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[FDS]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[Intention]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[wpi]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=338</guid>
		<description><![CDATA[Earlier today, the professor for my Combustion class mentioned that for our final project, we will be working on a problem that currently has no solution. This intrigued me of course, as I wondered if our final grades would have no solution as well. After he explained, it made all the more sense and reminded [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2009/08/the-human-element-in-fpe/' rel='bookmark' title='The human element in fire protection engineering'>The human element in fire protection engineering</a></li>
<li><a href='http://www.koverholt.com/2008/09/why-do-i-chase-fire-and-video/' rel='bookmark' title='Why Do I Chase Fire? (and video)'>Why Do I Chase Fire? (and video)</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Earlier today, the professor for my Combustion class mentioned that for our final project, we will be working on a problem that currently has no solution. This intrigued me of course, as I wondered if our final grades would have no solution as well. After he explained, it made all the more sense and reminded me why my love and passion is in the field of fire protection engineering, the school I go to, and the people I work with: they all heavily align with my values and principles of sharing knowledge and making information available to everyone, everywhere.</p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/10/dcejul11.jpg"><img class="alignnone size-full wp-image-339" title="dcejul11" src="http://www.koverholt.com/wp-content/uploads/2008/10/dcejul11.jpg" alt="" width="200" height="200" /></a></p>
<p>[From NASA]</p>
<p>So, let me explain his model simply by example:</p>
<p>The professor said that when he first started this class 2 years ago, the students were working on a different problem with no solution&#8230; at the time. The class worked together and in the end the results were so significant that a couple of students took the initiative to publish the results in a scientific journal. The same happened when the class was taught last year &#8211; project done, paper published.</p>
<p>So what does this mean and why do you care? Well, all too often in the academic world, people can get caught up in working on projects and sort of work themselves into a dark corner where nobody gets to benefit from the results&#8230; and this is done in real life as well, not just academics. This is where the ridiculous amount of collaborative technology available to us comes in to play. Want to gather up notes on the Smagorinsky constant and publish them for anyone to find who is searching for them in the next 1000 years? Easy: 5 minutes. Want to publish your results in the most useful way? Easy: work on an open source project in your area along with your research &#8211; or make your own.</p>
<p>&#8230;Or you could write a paper, finish your thesis work, wrap up the loose ends in a few years and show a flashy poster of your work 5 years after anybody cares about it anymore or thinks it to be useful.</p>
<p>I digress. I just wanted to stress this new method of collaboration that is among us, and how it&#8217;s going to change the way that we work together and grow together in fire protection engineering and fire science.</p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/10/model.jpg"><img class="alignnone size-full wp-image-340" title="model" src="http://www.koverholt.com/wp-content/uploads/2008/10/model.jpg" alt="" width="432" height="456" /></a></p>
<p>[From Rowan University College of Engineering]</p>
<p>Why not make use of motivated students and brainpower when they come together? Here is me welcoming this new phase of community and collaboration in a field that directly impacts life safety and makes safer buildings around the world. So when we work on that final project in a few weeks, it&#8217;s not really at all about a grade anymore &#8211; it&#8217;s about a new way of doing science &#8211; together.</p>
<p>Update: This is exactly the kind of stuff that I&#8217;m talking about here, posted today on the SFPE National blog that I set up a year ago &#8211; collaboration: <a href="http://blog.sfpe.org/2008/10/foundation-funded-research-underway-at.html">Foundation Funded Research underway at WPI</a></p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2009/08/the-human-element-in-fpe/' rel='bookmark' title='The human element in fire protection engineering'>The human element in fire protection engineering</a></li>
<li><a href='http://www.koverholt.com/2008/09/why-do-i-chase-fire-and-video/' rel='bookmark' title='Why Do I Chase Fire? (and video)'>Why Do I Chase Fire? (and video)</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Three Men One Trip</title>
		<link>http://www.koverholt.com/2008/08/three-men-one-trip/</link>
		<comments>http://www.koverholt.com/2008/08/three-men-one-trip/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 02:09:34 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Happiness]]></category>
		<category><![CDATA[Intention]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Travels]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=279</guid>
		<description><![CDATA[Update on the big move to MA In just over 9 days, I will be departing for the big move to Massachusetts with nothing more than 16 boxes holding 30 cubic feet (about 224 US gallons) of my belongings. I will be traveling with my dad and cousin Abel and leaving behind 23 years of [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/09/why-do-i-chase-fire-and-video/' rel='bookmark' title='Why Do I Chase Fire? (and video)'>Why Do I Chase Fire? (and video)</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
<li><a href='http://www.koverholt.com/2007/11/drop-drop-drop/' rel='bookmark' title='Drop drop drop'>Drop drop drop</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3><span style="color: #800000;">Update on the big move to MA</span></h3>
<p>In just over 9 days, I will be departing for the big move to Massachusetts with nothing more than 16 boxes holding 30 cubic feet (about 224 US gallons) of my belongings. I will be traveling with my <a href="http://houstonguy.blogspot.com">dad</a> and cousin Abel and leaving behind 23 years of memories physically in the good old Houston of Texas.</p>
<p>The trip will involve a little-engine-that-could Ford station wagon and a Nighthawk 750 motorcycle with the three of us alternating riders for all of the comfort and enjoyment that the 1800 miles will bring upon us. The trip will look something like this:</p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/08/houmasstrip.jpg"><img class="alignnone size-full wp-image-280" title="houmasstrip" src="http://www.koverholt.com/wp-content/uploads/2008/08/houmasstrip.jpg" alt="" width="500" height="313" /></a></p>
<p>I was fortunate after looking at 2200+ postings on craigslist to find a place to live for a good price (good by New England&#8217;s standards) which has all bills included AND is fully furnished! All I have to go on is a few pictures from the landlord and a few external supporting pictures thanks to modern technology (Thanks Google and Microsoft!):</p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/08/streetviewwor.jpg"><img class="alignnone size-full wp-image-281" title="streetviewwor" src="http://www.koverholt.com/wp-content/uploads/2008/08/streetviewwor.jpg" alt="" width="476" height="312" /></a></p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/08/livemapswor.jpg"><img class="alignnone size-full wp-image-282" title="livemapswor" src="http://www.koverholt.com/wp-content/uploads/2008/08/livemapswor.jpg" alt="" width="401" height="281" /></a></p>
<p>I&#8217;ve tried to make it a focal point just to be a listener for my last days in Houston. My story is already known; I just want to slowly and patiently take information in as the final days leak through the drain.</p>
<h3 class="firstHeading"><span style="color: #800000;">Tianguis Cultural del Chopo</span></h3>
<p>Last night, I met someone who was embarking on an adventure at the same time as I, except in a much different direction. She lives in Austin and will be taking <strong>THE</strong> bus down to Monterrey, Mexico then flying into Cuba for a few days. Just to explore the world and take in more experiences, couchsurfing style. What a great idea.</p>
<p>While I was looking around and making <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=108508378717479706905.000453950d92f1649921a&amp;ll=25.677811,-100.301142&amp;spn=0.044556,0.092182&amp;t=h&amp;z=14">a customized Google map</a> to share with her some cool spots that lay back in my memory, I was trying hard by visual cues and street names and picture order to find a punk/hippie/skater flea market that I ran across in Monterrey. I believe that it was fashioned after this concept in Mexico City:</p>
<blockquote><p>The <em>Tianguis Cultural del Chopo</em> is a Saturday flea market near Mexico City downtown, known locally as <em>El Chopo</em>. [...]</p>
<p>Originally, the Tianguis was a place for hippies to trade <span class="mw-redirect">sixties</span> memorabilia including not only records but also clothing, magazines, books and other collectibles. Eventually, the Tianguis has also given place to more recent musical styles like <span class="mw-redirect">metal</span>, goth, punk, <span class="mw-redirect">grunge</span> and ska, among others. Almost always, some local and touring bands play live gigs at the back of the market, where you can also find the casual traders standing and looking up for that rare and collectable record or CDs.</p>
<p>On the northern end of the market at Aldama and Camelia is an area called Espacio Anarcho-punk. Vendors in this part of El Chopo sell mostly books, movies, and other materials that have an anarchist or radical perspective. Many of the Espacio Anarcho-Punk vendors contribute to a weekly zine of the same title addressing local social issues and radical politics.</p>
<p>(from Wikipedia)</p></blockquote>
<p>Lots of cool stuff to be seen in the world. <img src='http://www.koverholt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3><span style="color: #800000;">Information R/evoultion</span></h3>
<p>An excellent video about how information access, sharing, collaboration, and all of my other favorite things going on in the world is here:</p>
<p><a href="http://www.koverholt.com/2008/08/three-men-one-trip/"><img src="http://img.youtube.com/vi/-4CV05HyAbM/default.jpg" width="130" height="97" border=0></a></p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/09/why-do-i-chase-fire-and-video/' rel='bookmark' title='Why Do I Chase Fire? (and video)'>Why Do I Chase Fire? (and video)</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
<li><a href='http://www.koverholt.com/2007/11/drop-drop-drop/' rel='bookmark' title='Drop drop drop'>Drop drop drop</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/08/three-men-one-trip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordle Mashup of my Brain</title>
		<link>http://www.koverholt.com/2008/07/wordle-mashup-of-my-brain/</link>
		<comments>http://www.koverholt.com/2008/07/wordle-mashup-of-my-brain/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 04:34:35 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Intention]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Meditation]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=256</guid>
		<description><![CDATA[Wordle.net says that if you took my public brain so far and blended it into oblivion, it would look something like this. Looks about right to me! Related posts: 18 minutes with an agile mind &#8211; video On equal access to knowledge for all&#8230; on net neutrality How to remove yourself and your thoughts from [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/04/18-minutes-with-an-agile-mind-video/' rel='bookmark' title='18 minutes with an agile mind &#8211; video'>18 minutes with an agile mind &#8211; video</a></li>
<li><a href='http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/' rel='bookmark' title='On equal access to knowledge for all&#8230; on net neutrality'>On equal access to knowledge for all&#8230; on net neutrality</a></li>
<li><a href='http://www.koverholt.com/2008/11/how-to-remove-yourself-and-your-thoughts-from-this-world/' rel='bookmark' title='How to remove yourself and your thoughts from this world'>How to remove yourself and your thoughts from this world</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Wordle.net says that if you took my public brain so far and blended it into oblivion, it would look something like this. Looks about right to me!</p>
<p><img class="alignnone size-full wp-image-257" title="wordle2" src="http://www.koverholt.com/wp-content/uploads/2008/07/wordle2.png" alt="" width="700" height="433" /></p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/04/18-minutes-with-an-agile-mind-video/' rel='bookmark' title='18 minutes with an agile mind &#8211; video'>18 minutes with an agile mind &#8211; video</a></li>
<li><a href='http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/' rel='bookmark' title='On equal access to knowledge for all&#8230; on net neutrality'>On equal access to knowledge for all&#8230; on net neutrality</a></li>
<li><a href='http://www.koverholt.com/2008/11/how-to-remove-yourself-and-your-thoughts-from-this-world/' rel='bookmark' title='How to remove yourself and your thoughts from this world'>How to remove yourself and your thoughts from this world</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/07/wordle-mashup-of-my-brain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Big Move to MA</title>
		<link>http://www.koverholt.com/2008/06/the-big-move-to-ma/</link>
		<comments>http://www.koverholt.com/2008/06/the-big-move-to-ma/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 23:07:04 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[FDS]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Intention]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[NIST]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Travels]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=243</guid>
		<description><![CDATA[WPI Welp, I&#8217;ve been accepted to start my M.S. and eventually start my Ph.D. at Worcester Polytechnic Institute this fall! I will be studying fire protection engineering, a continuation of my bachelor&#8217;s degree. The school is populated with just under 4,000 students and it is a private engineering school. Not only does this school house [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/' rel='bookmark' title='The Arrival of Collaboration in Fire Protection Engineering'>The Arrival of Collaboration in Fire Protection Engineering</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
<li><a href='http://www.koverholt.com/2008/09/passionate-and-artful-communication-in-science/' rel='bookmark' title='Passionate and Artful Communication in Science'>Passionate and Artful Communication in Science</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>WPI</h2>
<p>Welp, I&#8217;ve been accepted to start my M.S. and eventually start my Ph.D. at <a href="http://www.wpi.edu">Worcester Polytechnic Institute</a> this fall! I will be studying fire protection engineering, a continuation of my bachelor&#8217;s degree. The school is populated with just under 4,000 students and it is a private engineering school. Not only does this school house one of the top fire protection engineering programs in the US, but the faculty and their work align closely with my values and passions in life.</p>
<p>The big move will look something like this in 8 weeks:</p>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/06/movetoma.jpg"><img class="alignnone size-full wp-image-244" title="movetoma" src="http://www.koverholt.com/wp-content/uploads/2008/06/movetoma.jpg" alt="" width="500" height="303" /></a><br />
Some cool info about the school includes the fact that Robert Goddard went there and graduated in 1908 &#8211; he was the gradnfather of modern rocketry with the first liquid fueled rocket. Also, the fire protection engineering department has about 150 masters of science students and 4 (!) doctoral students. This is quite the opportunity I smell.</p>
<h2>What I did during the summer of 2008</h2>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/06/pmma_slab.png"><img class="alignnone size-full wp-image-245" title="pmma_slab" src="http://www.koverholt.com/wp-content/uploads/2008/06/pmma_slab.png" alt="" width="500" height="350" /></a></p>
<p>So far this summer I&#8217;m being funded by UHD as a last request to make a catalog of fire models for various textbooks. The work is very refreshing and I love to work when I learn much more than I expected. <img src='http://www.koverholt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Another cool side effect of this work is that I can include the FDS models and example writeups on my website, free for anyone else in the world to see and learn from. The technical writeup is <a href="http://docs.google.com/Doc?id=ajfdr2fw6926_204fb9j27gg">located here</a> and it gets updated automatically anytime I change a single word in there. Eventually it will have links to FDS files for FDS users and students around the world to download and use on their own &#8211; I love technology.</p>
<h2>FDS MESH Size Calculator tool</h2>
<p><a href="http://www.koverholt.com/wp-content/uploads/2008/06/fdsmeshabs.png"><img class="alignnone size-full wp-image-246" title="fdsmeshabs" src="http://www.koverholt.com/wp-content/uploads/2008/06/fdsmeshabs.png" alt="" width="440" height="321" /></a></p>
<p>Finally, to finish off a nice post about fire protection engineering and FDS: I updated my FDS Mesh Size calculator on my other website to include some awesome and never-before-done functionality! It now takes in x, y, and z dimensions and an expected heat release rate and gives the user three MESH lines (coarse, moderate, and fine) to guide them on making an FDS file that has an adequately resolved MESH.</p>
<p><a href="http://koverholt.com/?page_id=5">The tool can be found here</a> on my FDS/sciency website and the nice folks at NIST gave me a link on their third-party tools page of the FDS website: <a href="http://fire.nist.gov/fds/thirdparty.html">http://fire.nist.gov/fds/thirdparty.html</a></p>
<p>&#8212;&#8211;</p>
<p>I know I post out-there stuff like this on my blog here sometimes, but this is what is on my mind and taking up my mental cycles and daily days. Jump in and read the linked pages or play with the tools of my creation!</p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/' rel='bookmark' title='The Arrival of Collaboration in Fire Protection Engineering'>The Arrival of Collaboration in Fire Protection Engineering</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
<li><a href='http://www.koverholt.com/2008/09/passionate-and-artful-communication-in-science/' rel='bookmark' title='Passionate and Artful Communication in Science'>Passionate and Artful Communication in Science</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/06/the-big-move-to-ma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On equal access to knowledge for all&#8230; on net neutrality</title>
		<link>http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/</link>
		<comments>http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 04:15:09 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=239</guid>
		<description><![CDATA[Some of my friends and colleagues may have heard me go on a rant or two about net neutrality or equal information access. Hopefully this post will describe my stance a bit better. Those who know me know that I stand strong for open knowledge and easily accessible information for all of us in the [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/04/18-minutes-with-an-agile-mind-video/' rel='bookmark' title='18 minutes with an agile mind &#8211; video'>18 minutes with an agile mind &#8211; video</a></li>
<li><a href='http://www.koverholt.com/2008/09/passionate-and-artful-communication-in-science/' rel='bookmark' title='Passionate and Artful Communication in Science'>Passionate and Artful Communication in Science</a></li>
<li><a href='http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/' rel='bookmark' title='The Arrival of Collaboration in Fire Protection Engineering'>The Arrival of Collaboration in Fire Protection Engineering</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Some of my friends and colleagues may have heard me go on a rant or two about <strong>net neutrality</strong> or equal information access. Hopefully this post will describe my stance a bit better. Those who know me know that I stand strong for <strong>open knowledge</strong> and <strong>easily accessible information for all</strong> of us in the world. This includes upholding open document standards and the opposition of tiered-internet infrastructures. But most people that use computers these days, I am afraid, don&#8217;t think or feel that these ideals will affect their <strong>day-to-day</strong> computer usage that they partake in.</p>
<p><img src="http://lh6.ggpht.com/koverholt/RmGvhXPnFaI/AAAAAAAAAQs/IYAQK8x1g5M/s400/IMG_0141.JPG" alt="" /></p>
<p>Well, I happen to think that it not only affects your daily pursuit of knowledge and you work in whatever field you are in, but it also greatly affects the way <strong>we work together</strong> as a society, create and bring new ideas into fruition, and <strong>nurture successful generations</strong> to follow.</p>
<p>Last Thursday, the FCC held a public hearing on net neutrality. 5 commissioners from the FCC joined and heard from leading public scientists, network operators, and entrepreneurs. 2 commissioners were in support of network neutrality, 2 against, and one neutral (pun intended). Also, Comcast and many other carriers were invited to the hearing; however, they declined.</p>
<p>Here is the video from the hearing as well as other snippets on the topic:</p>
<p><a href="http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/"><img src="http://img.youtube.com/vi/3xeBmqlDZtQ/default.jpg" width="130" height="97" border=0></a></p>
<p>Jason Devitt, CEO of Skydeck, testifies at the FCC Hearing<br />
<a href="http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/"><img src="http://img.youtube.com/vi/b7lZ8DbM1iU/default.jpg" width="130" height="97" border=0></a></p>
<p>Law Professor Lawrence Lessig on Net Neutrality and the Rise of Google<br />
<a href="http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/"><img src="http://img.youtube.com/vi/jwZ4n-eCHl0/default.jpg" width="130" height="97" border=0></a></p>
<p>From Barack Obama&#8217;s address at Google<br />
<a href="http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/"><img src="http://img.youtube.com/vi/g-mW1qccn8k/default.jpg" width="130" height="97" border=0></a></p>
<p>You&#8217;ll notice I stuck a button on the right of my site in support of net neutrality. I&#8217;ll be calling my senator and representatives on Monday morning to let them know of my support of net neutrality and a new Act working its way through the House of Representatives. I urge you to do the same. It is critical to recognize that issues such as Verizon winning the FCC spectrum auction to Microsoft&#8217;s OOXML as a international standard to Comcast breaking fundamental ethical and technical ways of the internet are of utmost importance to our current age, culture, and political era.</p>
<p><img src="http://lh5.ggpht.com/koverholt/RmGvYHPnFZI/AAAAAAAAAQk/-R_SoDec3YA/s400/IMG_0140.JPG" alt="" /></p>
<p>In the end, regardless of the specific topic at hand, be cognizant of those trying to <strong>disrupt and block the progressive movement</strong> that is before us. Especially when it involves profit rather than progress. Especially when that blocking impedes our societal <strong>learning, sharing, innovation, creativity, and global and equal access to information for all</strong>.</p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/04/18-minutes-with-an-agile-mind-video/' rel='bookmark' title='18 minutes with an agile mind &#8211; video'>18 minutes with an agile mind &#8211; video</a></li>
<li><a href='http://www.koverholt.com/2008/09/passionate-and-artful-communication-in-science/' rel='bookmark' title='Passionate and Artful Communication in Science'>Passionate and Artful Communication in Science</a></li>
<li><a href='http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/' rel='bookmark' title='The Arrival of Collaboration in Fire Protection Engineering'>The Arrival of Collaboration in Fire Protection Engineering</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/04/on-equal-access-to-knowledge-for-all-on-net-neutrality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apartment fires burn and homes are lost due to outdated modes of thought</title>
		<link>http://www.koverholt.com/2008/04/apartment-fires-burn-and-homes-are-lost-due-to-outdated-modes-of-thought/</link>
		<comments>http://www.koverholt.com/2008/04/apartment-fires-burn-and-homes-are-lost-due-to-outdated-modes-of-thought/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 19:17:56 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[FDS]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Intention]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/?p=236</guid>
		<description><![CDATA[[Used from KPRC video click2houston.com] Fire. It&#8217;s what I do. And I happen to subscribe to Google News alerts that have &#8220;Houston Fire&#8221; in the title. Helps me keep in touch with the fire. It also helpingly disturbs me as to what actually goes on outside of the classroom. Really, it&#8217;s quite a good way [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/' rel='bookmark' title='The Arrival of Collaboration in Fire Protection Engineering'>The Arrival of Collaboration in Fire Protection Engineering</a></li>
<li><a href='http://www.koverholt.com/2008/07/a-glance-into-the-minds-of-care-homes/' rel='bookmark' title='A Glance Into the Minds of Care Homes'>A Glance Into the Minds of Care Homes</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-237" title="apartfire" src="http://www.koverholt.com/wp-content/uploads/2008/04/apartfire.jpg" alt="" width="404" height="297" /></p>
<p><em>[Used from KPRC video <a href="http://www.click2houston.com/news/15865713/detail.html">click2houston.com</a>]</em></p>
<p>Fire. It&#8217;s what I do. And I happen to subscribe to Google News alerts that have &#8220;Houston Fire&#8221; in the title. Helps me keep in touch with the <strong>fire</strong>. It also helpingly disturbs me as to what actually goes on <strong>outside</strong> of the classroom. Really, it&#8217;s quite a good way to keep yourself thinking and valuable if you are stuck with that stagnant smell of your job or classes.</p>
<p>Lots of fires happen everyday. Apartment fires always happen. A <strong>lot</strong>. Three apartment complexes burned to the ground within 48 hours over the past weekend. And then some. This is what I see:</p>
<p><a href="http://www.myfoxhouston.com/myfox/pages/News/Detail?contentId=6299191&amp;version=1&amp;locale=EN-US&amp;layoutCode=TSTY&amp;pageId=3.2.1">Residents Say They Heard Gunshots Before 3-Alarm Fire</a></p>
<p><a href="http://www.chron.com/disp/story.mpl/front/5696310.html"><span class="storyheading3">Blaze damages second apartment complex in 24 hours</span></a></p>
<p><a href="http://www.khou.com/news/local/stories/khou080412_tnt_aptfire.5981928e.html">Fire erupts at SW Houston apartments</a></p>
<p><a href="http://www.click2houston.com/news/15866107/detail.html">Apartment Blaze Damages At Least 16 Units</a></p>
<p><a href="http://abclocal.go.com/ktrk/story?section=news/local&amp;id=6040463">Apartment fire sends 5 to Hospital</a></p>
<p>Yes, those are the most recent stories in my warm and cozy feed reader.</p>
<p>When is legislation going to get off of its ass and move at the pace that the rest of us do? When is enforcement going to follow? Sure, I guess we all are biased to the field that we are in and think that it is the most important thing in the world. But seriously, people are dying and losing their homes in the midst of an ocean of politics and code books wasting valuable daylight.</p>
<p><img class="alignnone size-full wp-image-238" title="seapartfire" src="http://www.koverholt.com/wp-content/uploads/2008/04/seapartfire.jpg" alt="Southeast Houston Apartment Fire" width="315" height="234" /></p>
<p>[Picture used from <a href="http://www.myfoxhouston.com/myfox/pages/News/Detail?contentId=6299191&amp;version=1&amp;locale=EN-US&amp;layoutCode=TSTY&amp;pageId=3.2.1">myFoxHouston.com</a>]</p>
<p>A lot of the time, I am an optimist. I see what change has followed the positive move of a <strong>community-based and collaborative internet</strong> (see video in previous post) in other industries. And then I imagine progress and change happening in our daily lives. I dream of governmental processes being way more open and community-driven than we are used to. I can watch it in real-time, play-by-play happening with larger corporations &#8211; as they break down due to the epidemic spread of knowledge and awareness. And I imagine a world where <strong>fire sprinklers</strong> (technology that has been around for 130 years) and other fire safety systems make fire protection engineers obsolete before my industry has even had a chance to get popular and prestigious.</p>
<p>I suppose what I am saying is that I toil my soul, expand my brain, and work every breathing moment that I can, day-by-day on prediction of fire, contribution to the robust knowledge that we have on fire/combustion, and working using my technical skills. All of this to allow fire documentation, analytical and numerical tools, and scientific information to be available to all people around the world: engineers, scientists, students, and so on. Why? I&#8217;d say, in this century and society, I do it to <strong>contribute</strong>. And I think if just a few other key people did the same, our fire, death, and loss of home problems would vanish at amazing and mind-blowing speeds.</p>
<p>P.S. This thought process isn&#8217;t just limited to my field of fire science, but I write about it because it is what I do. Think about your field for a second. Finance, safety, technology, whatever it is. Mentally apply success to the field by working on and tweaking the top 3% of the people, systems, or methods that are in use now. Realize that these top 3% are there due mainly to tradition, and did not get there due to community-driven work.</p>
<p>Keep working at it. Align your work with your values. The change <strong>will</strong> happen. I&#8217;ll be waiting.</p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/10/the-arrival-of-collaboration-in-fire-protection-engineering/' rel='bookmark' title='The Arrival of Collaboration in Fire Protection Engineering'>The Arrival of Collaboration in Fire Protection Engineering</a></li>
<li><a href='http://www.koverholt.com/2008/07/a-glance-into-the-minds-of-care-homes/' rel='bookmark' title='A Glance Into the Minds of Care Homes'>A Glance Into the Minds of Care Homes</a></li>
<li><a href='http://www.koverholt.com/2008/03/updates-on-welcomed-unstability/' rel='bookmark' title='Updates on welcomed unstability'>Updates on welcomed unstability</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/04/apartment-fires-burn-and-homes-are-lost-due-to-outdated-modes-of-thought/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Golden Resource List for Python Beginners</title>
		<link>http://www.koverholt.com/2008/03/the-golden-resource-list-for-python-beginners/</link>
		<comments>http://www.koverholt.com/2008/03/the-golden-resource-list-for-python-beginners/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 14:17:30 +0000</pubDate>
		<dc:creator>koverholt</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.koverholt.com/2008/03/17/the-golden-resource-list-for-python-beginners/</guid>
		<description><![CDATA[After years of being a master-of-none with programming languages, I have finally settled on one to delve deeper into: Python. I&#8217;ve been learning Python for about a month now, and it has been quite pleasurable. Although the language has been around since 1991, it has been gaining in popularity in the recent years and is [...]
Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/03/how-to-install-pyobjc-pygame-and-gasp-on-mac-os-x-for-python-tutorial/' rel='bookmark' title='How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial'>How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial</a></li>
<li><a href='http://www.koverholt.com/2008/03/the-clarity-of-python-vs-the-cloud-of-perl/' rel='bookmark' title='The clarity of Python vs. the cloud of Perl'>The clarity of Python vs. the cloud of Perl</a></li>
<li><a href='http://www.koverholt.com/2010/05/python-importerror-of-backend_wx2-8-and-wxpython-when-using-matplotlib/' rel='bookmark' title='Python ImportError with backend_wx2.8 and wxPython when using Matplotlib'>Python ImportError with backend_wx2.8 and wxPython when using Matplotlib</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>After years of being a master-of-none with programming languages, I have finally settled on one to delve deeper into: Python. I&#8217;ve been learning Python for about a month now, and it has been quite pleasurable. Although the language has been around since 1991, it has been gaining in popularity in the recent years and is used in many underlying projects at Google, Youtube, NASA, Honeywell, and the University of Maryland to name a few. It is an excellent language for a programmer of any level to pick up, and I chose it because of its versatility, clear syntax, and ease of use for transforming my ideas into a a functional and high level language.</p>
<p>Along the way during the past month, I have sifted through hundreds of websites and quite a few beginner books. So here, I would like to share the links that I found most helpful in my quest for Python knowledge. As far as my past experience, I&#8217;ve dabbled in many other languages such as MATLAB, HTML, Fortran, C++, Java, Perl, and so on but never really grew to master a single one or use it in my daily life.</p>
<p>So, without further delay, on to the list:</p>
<blockquote>
<h2>Before You Start With Python</h2>
<ol>
<li><a href="http://www.python.org">Python.org</a> &#8211; I couldn&#8217;t make this list without including the main Python site. There is just a great amount of information there. Plus everything I link to can probably be found there, but my list is only those resources that really helped me along in my learning experience.<a href="http://www.norvig.com/21-days.html"><br />
</a></li>
<li><a href="http://www.norvig.com/21-days.html">Teach Yourself Programming in Ten Years</a> &#8211; Article by the director of research at Google &#8211; A great overview of programming and learning to program, all the while avoiding the ides presented by the &#8220;Learn to program in X days&#8221; books.</li>
</ol>
</blockquote>
<blockquote>
<h2>Excellent Python Tutorials</h2>
<ol>
<li><a href="http://diveintopython.org/">Dive Into Python</a> &#8211; This is one of the first tutorials that I read about Python, and it gave me an excellent overview of the language. It really broke down the code line-by-line, but it still reads like a mix between a reference guide, a cookbook, and a tutorial. It&#8217;s a freely available book and should definitely be within quick reach as you learn Python.</li>
<li><a href="http://openbookproject.net/thinkCSpy/">How to Think Like a Computer Scientist</a> &#8211; This is by far my favorite tutorial in the entire list. I like this (freely available) book because of its plentiful and challenging exercises! I am usually picky when choosing textbooks on a new subject, and I will almost always get the book that has the most examples in it. I spent most of my time creating my own programs at the end of each chapter, and really got a feel for the language (and a nice sense of accomplishment!) at the end of each chapter. Highly recommended.</li>
<li><a href="http://showmedo.com/videos/beginner_programming?topic=python">Python Videos at ShowMeDo </a> &#8211; There are over 100 videos at the time of this posting over a wide range of topics. Anything from how to open a Python session to namespaces and more. It was nice when starting out to just sit and watch someone who knew what they were doing do routine tasks, and it helped to ground basic concepts before jumping in on my own. Don&#8217;t forget to thank the creators of the videos with a comment!</li>
<li><a href="http://www.freenetpages.co.uk/hp/alan.gauld/">Learning to Program</a> &#8211; This is one that I am going through last, because it gets into a bit more in depth discussion about basic and moderate topics. Very thorough.<a href="http://www.freenetpages.co.uk/hp/alan.gauld/"><br />
</a></li>
</ol>
</blockquote>
<blockquote>
<h2>Beginner Exercises and Projects</h2>
<ol>
<li><a href="http://openbookproject.net/thinkCSpy/">How to Think Like a Computer Scientist</a> &#8211; I just HAD to list this again, because it goes at just the right pace and the exercises are well thought out. I am convinced that I really learned about 80% of my Python basics here when I put them to practice. Learn by doing!</li>
<li><a href="http://www.daniweb.com/forums/showthread.php?t=32007">Projects for the Beginner &#8211; Python</a> &#8211; This is a thread on a forum with over 100 ideas for programs. Use this when you are low on inspiration but high on ambition!</li>
<li><a href="http://www.pythonchallenge.com/">Python Challenge</a> &#8211; Neat implementation of puzzles that can be solved with Python scripts. They get harder as you progress levels. You might want to hit up the Python Challenge after getting a good hold on the basics and after you have many of these other links open in other tabs. <img src='http://www.koverholt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><a href="http://www.uselesspython.com/pythonchallenge.html">Useless Python Challenges</a> &#8211; This site should be visited after you have finished all of the trivial Python exercises and projects. When you are self-sustaining on the language and eagerly looking for some projects to do, but are hitting a writer&#8217;s block for programs, go here.</li>
</ol>
</blockquote>
<blockquote>
<h2>Beginner Forums and Lists</h2>
<ol>
<li><a href="http://python-forum.org/pythonforum/">Python Forum &#8211; Beginners</a> &#8211; Not a very high traffic forum, but they have a beginners subforum with 15-30 posts per day, just enough to keep you busy. I find it helpful to attack the problems that other beginners are facing. And if you come up with a good solution, post it and help others while you learn. Everyone wins!</li>
<li><a href="http://learningpython.com/">Learning Python Blog</a> &#8211;  One of the few &#8220;learning only&#8221; Python blogs. It is always good to see information shared from others while they learn. Sort of like this list. <img src='http://www.koverholt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><a href="http://mail.python.org/mailman/listinfo/tutor">Python Tutor Mailing List</a> &#8211; I only recently signed up for this, but I must say that there are some very knowledgeable and helpful people on here and it keeps the Python information coming at you via email. Seems to be quite a few students on here and you will most certainly learn something with each email thread.</li>
</ol>
</blockquote>
<blockquote>
<h2>Interesting Python Projects and Libraries</h2>
<ol>
<li><a href="http://www.djangoproject.com/">Django Project<br />
</a></li>
<li><a href="http://www.turbogears.org/">TurboGears</a></li>
<li><a href="http://code.google.com/p/gdata-python-client/">Google GData Python API</a> &#8211; This is an amazing API from Google that allows you to interact with Google Calendar, Docs, Maps, Youtube, Notebook, and so on. It is very easy to install and use and I look forward to developing with this in the near future.</li>
<li><a href="http://www.wxpython.org/">wxPython</a> &#8211; GUI toolkit for interface development. I haven&#8217;t gotten to GUIs yet, but everywhere I turn I see references to wxPython.</li>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib</a> &#8211; 2D plotting library that produces very nice looking graphs. Supports many, many types of graphs and is very customizable.</li>
<li><a href="http://ipython.scipy.org/moin/">SciPy</a> &#8211; A collection of Python tools and modules for use in science, engineering, and mathematics. This is the light at the end of the tunnel for me and I hope to get more involved with this library as I progress with my Python learning.</li>
</ol>
</blockquote>
<blockquote>
<h2>Editing Tools and Shells</h2>
<ol>
<li><a href="http://ipython.scipy.org/moin/FrontPage">iPython</a> &#8211; An enhanced Python shell that seems geared towards science, engineering, and high performance computing.</li>
<li><a href="http://macromates.com/">TextMate </a>(Mac OS X) &#8211; This is such an amazing editor that I must list it here. I didn&#8217;t use it at all before I started with Python, and now I simply cannot go without it. I had previously heard it described by programmers as a magical tool, but I had no idea. It does autocompletion based on previous words, syntax highlighting for a ton of languages, has a quick and easy-to-read method to execute Python scripts. It is perhaps the only non-free item in my list, but very much worth it!<a href="http://macromates.com/"><br />
</a></li>
<li><a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a> (Mac OS X) &#8211; This is what I used for a couple of years&#8230; until I discovered the greatness of TextMate a few weeks ago. TextWrangler is free though if you wish to use it.</li>
</ol>
</blockquote>
<blockquote>
<h2>Other Resources (References, Packages, Hosting)</h2>
<ol>
<li><a href="http://docs.python.org/lib/lib.html">Python Library Reference</a> &#8211; Huge list of explanations about Python&#8217;s Standard Library. Made to help you discover the power of Python in your everyday programming.</li>
<li><a href="http://wiki.python.org/moin/PythonHosting">Python Webhosting</a> &#8211; List of webhosts that offer Python solutions on their webhost. Python can be run on most hosts via CGI, but these wiki pages explain exactly how they implement Python usability. Plus I found out about the cool idea of <a href="http://www.hcoop.net">HCoop</a> cooperative web hosting through this list; this is the host on which you are reading this blog. <img src='http://www.koverholt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><a href="http://pypi.python.org/pypi">Python Package Index</a> &#8211; Directory of Python packages that you can learn about, download, and use in your own programming. Don&#8217;t reinvent the wheel!</li>
<li><a href="http://aspn.activestate.com/ASPN/Python/Cookbook/">Python Cookbook Code Samples</a> &#8211; This is a directory in the same vein as the previous listing, but the solutions to problems are presented as code with user comments. As of now there are over 2000 recipes.</li>
<li><a href="http://pythonware.com/daily/">The Daily Python URL</a> &#8211; Just as it sounds. News about Python in compact form.</li>
</ol>
</blockquote>
<p>Again, while there are many, many other resources for learning Python, this is a list of my personal favorites. These are the specific sites that have been very helpful and impacting on my venture to learn Python. So while I may not have listed a particular item &#8211; I probably saw it, but didn&#8217;t get much from it at this time.</p>
<p>Finally, you must forgive me if I got some detail wrong. I am learning, after all! Hopefully this list will help new and moderate Python users to utilize some of the best (and free!) Python resources that others have put up for all to learn from. Thanks to those people who shared their knowledge. And have fun with Python!</p>
<p>Related posts:<ol>
<li><a href='http://www.koverholt.com/2008/03/how-to-install-pyobjc-pygame-and-gasp-on-mac-os-x-for-python-tutorial/' rel='bookmark' title='How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial'>How to install PyObjC, pygame, and gasp on Mac OS X for Python tutorial</a></li>
<li><a href='http://www.koverholt.com/2008/03/the-clarity-of-python-vs-the-cloud-of-perl/' rel='bookmark' title='The clarity of Python vs. the cloud of Perl'>The clarity of Python vs. the cloud of Perl</a></li>
<li><a href='http://www.koverholt.com/2010/05/python-importerror-of-backend_wx2-8-and-wxpython-when-using-matplotlib/' rel='bookmark' title='Python ImportError with backend_wx2.8 and wxPython when using Matplotlib'>Python ImportError with backend_wx2.8 and wxPython when using Matplotlib</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.koverholt.com/2008/03/the-golden-resource-list-for-python-beginners/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

