<?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>Online Cortex &#187; Space</title>
	<atom:link href="http://www.huginn.com/knuth/blog/category/space/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.huginn.com/knuth/blog</link>
	<description>Thoughts on Science and Technology</description>
	<lastBuildDate>Thu, 03 Jun 2010 04:26:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Multiple Submit Buttons on Forms: Part II</title>
		<link>http://www.huginn.com/knuth/blog/2009/03/05/multiple-submit-buttons-on-forms-part-ii/</link>
		<comments>http://www.huginn.com/knuth/blog/2009/03/05/multiple-submit-buttons-on-forms-part-ii/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 05:14:04 +0000</pubDate>
		<dc:creator>drknuth</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[multiple buttons]]></category>
		<category><![CDATA[multiple submit buttons]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[submit]]></category>
		<category><![CDATA[submit buttons in forms]]></category>
		<category><![CDATA[two buttons]]></category>
		<category><![CDATA[two submit buttons]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.huginn.com/knuth/blog/?p=360</guid>
		<description><![CDATA[This is Part II in a discussion on how to incorporate multiple submit buttons on html forms.
Part I focused on having multiple submit buttons that performed completely different actions, such as going to different web pages.  Here we consider multiple submit buttons that launch the same php application, but take different actions within that application.
Here [...]]]></description>
			<content:encoded><![CDATA[<p>This is Part II in a discussion on how to incorporate multiple submit buttons on html forms.</p>
<p><a href="http://www.huginn.com/knuth/blog/2009/02/14/multiple-submit-buttons-on-forms/" target="_self">Part I focused on having multiple submit buttons</a> that performed completely different actions, such as going to different web pages.  Here we consider multiple submit buttons that launch the same php application, but take different actions within that application.</p>
<p>Here we have a simple form with three submit buttons:</p>
<p>&lt;form name=&#8221;categories&#8221; method=&#8221;get&#8221; action=&#8221;action.php&#8221;&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;Submit_1&#8243; value=&#8221;Submit&#8221;&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;Submit_2&#8243; value=&#8221;Submit&#8221;&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;Submit_3&#8243; value=&#8221;Submit&#8221;&gt;<br />
&lt;/form&gt;</p>
<p>I am using the <a href="http://www.htmlcodetutorial.com/forms/_FORM_METHOD_GET.html" target="_blank">get method</a> so that you can see what actually gets sent along with the url.<br />
When you click on Submit_1 you see this URL:</p>
<p>http://www.urlkazoo.com/action.php?Submit_1=Submit</p>
<p>You can see that it is passing the name of the Submit button as a parameter.  To use this information, one simply needs to identify which parameter is being passed.  We can do this in the php code in action.php.  Here is a php snippet:</p>
<p>// Test is Submit_1 is defined<br />
if (isset($_REQUEST["Submit_1"]))<br />
{<br />
$button = 1;<br />
}<br />
// Test is Submit_2 is defined<br />
if (isset($_REQUEST["Submit_2"]))<br />
{<br />
$button = 2;<br />
}<br />
// Test is Submit_3 is defined<br />
if (isset($_REQUEST["Submit_3"]))<br />
{<br />
$button = 3;<br />
}</p>
<p>Of course the code above can be simplified using else statements.<br />
But the point is to demonstrate that we can determine which button was pressed by figuring out which button&#8217;s name has been passed along as a parameter.</p>
<p>From here you can go on to perform different functions based on which submit button was pressed.</p>
<p>Good Luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huginn.com/knuth/blog/2009/03/05/multiple-submit-buttons-on-forms-part-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Knuth: Developing Robotic Scientists for Space Exploration</title>
		<link>http://www.huginn.com/knuth/blog/2008/10/21/knuth-developing-robotic-scientists-for-space-exploration/</link>
		<comments>http://www.huginn.com/knuth/blog/2008/10/21/knuth-developing-robotic-scientists-for-space-exploration/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 03:51:31 +0000</pubDate>
		<dc:creator>drknuth</dc:creator>
				<category><![CDATA[Exploration]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Intelligent Systems]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Lego]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[demonstration]]></category>
		<category><![CDATA[experimental design]]></category>
		<category><![CDATA[inquiry]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.huginn.com/knuth/blog/?p=199</guid>
		<description><![CDATA[The University at Albany (SUNY) has highlighted Knuth&#8217;s research in a recent news piece.
Kevin Knuth has a laboratory in the physics department of the University at Albany that is filled with LEGOs. The bricks are relatively cheap and can be used to rapidly prototype a robot&#8217;s body. Knuth&#8217;s robots are being programmed to solve such [...]]]></description>
			<content:encoded><![CDATA[<p>The University at Albany (SUNY) has highlighted Knuth&#8217;s research in a <a href="http://www.albany.edu/news/update_4522.shtml">recent news piece</a>.</p>
<div class="wp-caption aligncenter" style="width: 260px"><img src="http://www.albany.edu/news/feedimages/689_0560.jpg" alt="UAlbany Professor Kevin Knuth with a robot built from LEGOs. (Photo Mark Schmidt) " width="250" height="166" /><p class="wp-caption-text">UAlbany Professor Kevin Knuth with a robot built from LEGOs. (Photo Mark Schmidt) </p></div>
<blockquote><p>Kevin Knuth has a laboratory in the <a href="http://www.albany.edu/physics/">physics department</a> of the University at Albany that is filled with LEGOs. The bricks are relatively cheap and can be used to rapidly prototype a robot&#8217;s body. Knuth&#8217;s robots are being programmed to solve such problems as mapping complex terrain.</p>
<p>At <a href="http://www.albany.edu/ualbanyday/">UAlbany Day</a> on Saturday, Oct. 25, he will give a demonstration on <em>Robotics and Robotic Exploration</em> in Life Sciences Room 143 at 10:45 a.m.</p></blockquote>
<p>More here: <a href="http://www.albany.edu/news/update_4522.shtml"></p>
<p>http://www.albany.edu/news/update_4522.shtml</a></p>
<p><a href="http://www.brickengineer.com/robots/2008/10/21/knuth-developing-robotic-scientists-for-space-exploration/"></a></p>
<p>Building instructions for the robot shown in the UAlbany article can be found on <a href="http://www.brickengineer.com/pages/2008/10/12/little-rover-with-instructions-and-code/">Brickengineer.com</a></p>
<p>Visit <a href="http://www.autonomous-exploration.com/blog/?p=15">Autonomous Exploration News</a> for information on Knuth&#8217;s company <a href="http://www.autonomous-exploration.com/">Autonomous Exploration Inc.</a></p>
<p>Visit <a href="http://www.brickengineer.com/robots/2008/10/21/knuth-developing-robotic-scientists-for-space-exploration/">Robots Everywhere</a> for a general blog on robotics news.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huginn.com/knuth/blog/2008/10/21/knuth-developing-robotic-scientists-for-space-exploration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Webcast on New Mars Science Laboratory Rover</title>
		<link>http://www.huginn.com/knuth/blog/2008/09/13/webcast-on-new-mars-science-laboratory-rover/</link>
		<comments>http://www.huginn.com/knuth/blog/2008/09/13/webcast-on-new-mars-science-laboratory-rover/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 16:13:13 +0000</pubDate>
		<dc:creator>drknuth</dc:creator>
				<category><![CDATA[Astrobiology]]></category>
		<category><![CDATA[Exploration]]></category>
		<category><![CDATA[Mars]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[jpl]]></category>
		<category><![CDATA[laboratory]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[rover]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://www.huginn.com/knuth/blog/2008/09/13/webcast-on-new-mars-science-laboratory-rover/</guid>
		<description><![CDATA[ 
On Thursday October 16th at 7pm PST, JPL will host a webcast of a lecture on the new Mars Science Laboratory (MSL) Rover.  This webcast will require RealPlayer&#8212;the free RealPlayer 8 Basic can be downloaded from RealPlayer.
More info can be found here at JPL.
This talk is part of the JPL von Kármán Lecture [...]]]></description>
			<content:encoded><![CDATA[<p> <img src="http://www.huginn.com/knuth/blog/pics/msl-lecture.jpg" alt="Mars Science Laboratory" align="middle" height="130" width="350" /></p>
<p>On Thursday October 16th at 7pm PST, JPL will host a <a href="http://realserver1.jpl.nasa.gov:8080/ramgen/broadcast/live.rm?mode=compact" title="MSL Webcast" target="_blank">webcast</a> of a lecture on the new <a href="http://mars.jpl.nasa.gov/msl/" title="Mars Science Laboratory">Mars Science Laboratory</a> (MSL) Rover.  This webcast will require RealPlayer&#8212;the free RealPlayer 8 Basic can be downloaded from <a href="http://www.real.com/" title="RealPlayer">RealPlayer</a>.<br />
More info can be found <a href="http://www.jpl.nasa.gov/events/lectures/oct08.cfm" title="Von Karman Lectures">here at JPL</a>.</p>
<p>This talk is part of the JPL von Kármán Lecture Series.<br />
Here is the <a href="http://www.jpl.nasa.gov/events/lectures/oct08.cfm" title="MSL Webcast" target="_blank">Summary from the JPL Website</a>:</p>
<p><strong>New Wheels on Mars: The Mars Science Laboratory</strong><br />
<em>Dr. Richard Cook<br />
Mars Science Laboratory Project Manager</em></p>
<p>Building on the success of the two rover geologists that arrived at Mars in January, 2004, NASA&#8217;s next rover mission will depart for the Red Planet in 2009. Twice as long and five times as heavy as the Mars Exploration Rovers, the Mars Science Laboratory will collect Martian soil and rock samples and analyze them for organic compounds and minerals which demonstrate that Mars can or did support life. This sophisticated science laboratory will be delivered to the Martian surface using an innovative new landing system. The spacecraft will start by steering itself through the Martian atmosphere in a fashion similar to the way the Apollo entry capsule controlled its entry through Earth&#8217;s upper atmosphere. This approach will allow the spacecraft to fly to a desired location above the surface of Mars before deploying its parachute for the final landing. Then, in the final minutes before touchdown, the spacecraft will activate its parachute and retro rockets before lowering the rover package to the surface on a tether.</p>
<p>If you are local, you may be able to attend the talk:</p>
<p>Thursday, October 16, 2008, 7p.m.<br />
The von Kármán Auditorium at JPL<br />
4800 Oak Grove Drive<br />
Pasadena, CA<br />
+<a href="http://www.jpl.nasa.gov/about_JPL/maps.cfm" title="Directions to JPL Lecture" target="_blank">Directions</a></p>
<p>Friday, October 17, 2008, 7p.m.<br />
The Vosloh Forum at Pasadena City College<br />
1570 East Colorado Blvd.<br />
Pasadena, CA<br />
+<a href="http://www.paccd.cc.ca.us/map/pcccampus.htm" title="Directions to Pasadena City College Lecture" target="_blank">Directions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.huginn.com/knuth/blog/2008/09/13/webcast-on-new-mars-science-laboratory-rover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advances in Science and Exploration</title>
		<link>http://www.huginn.com/knuth/blog/2008/07/11/advances-in-science-and-exploration/</link>
		<comments>http://www.huginn.com/knuth/blog/2008/07/11/advances-in-science-and-exploration/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 04:29:23 +0000</pubDate>
		<dc:creator>drknuth</dc:creator>
				<category><![CDATA[Astronomy]]></category>
		<category><![CDATA[Exploration]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[Robots]]></category>

		<guid isPermaLink="false">http://www.huginn.com/knuth/blog/2008/07/11/advances-in-science-and-exploration/</guid>
		<description><![CDATA[I have been thinking about human science and exploration, and how long it takes for these processes to initiate and result in acceptance and conclusion.  When considering exploration, it seems it takes about two human lifetimes to go from the initial explorations to settlement.  Perhaps this is the cultural time required for the old guys [...]]]></description>
			<content:encoded><![CDATA[<p>I have been thinking about human science and exploration, and how long it takes for these processes to initiate and result in acceptance and conclusion.  When considering exploration, it seems it takes about two human lifetimes to go from the initial explorations to settlement.  Perhaps this is the cultural time required for the old guys and their ideas to die off, and the next generation to think seriously about the problems.  Science seems to progress similarly.</p>
<p>This suggests the following timeline:</p>
<p>1969   Humans walk on the Moon</p>
<p>2050  Humans begin colonizing the Moon<br />
2050  Humans begin exploring Mars</p>
<p>2150   Humans begin colonizing Mars<br />
2150   Humans begin exploring the Outer Solar System<br />
2150   Robotic explorers begin surveying Alpha Centauri and neary stars</p>
<p>2250   Humans begin colonizing Outer Solar System</p>
<p>Its too bad that this will take a long time, but each step requires dramatic cultural changes, which take lifetimes to perform.</p>
<p>Kevin Knuth<br />
Boraceia, Brazil</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huginn.com/knuth/blog/2008/07/11/advances-in-science-and-exploration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phoenix from Space</title>
		<link>http://www.huginn.com/knuth/blog/2008/06/01/phoenix-from-space/</link>
		<comments>http://www.huginn.com/knuth/blog/2008/06/01/phoenix-from-space/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 04:15:37 +0000</pubDate>
		<dc:creator>drknuth</dc:creator>
				<category><![CDATA[Astronomy]]></category>
		<category><![CDATA[Exploration]]></category>
		<category><![CDATA[Mars]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[lander]]></category>
		<category><![CDATA[Martian]]></category>
		<category><![CDATA[Phoenix]]></category>
		<category><![CDATA[Probe]]></category>
		<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://www.huginn.com/knuth/blog/2008/06/01/phoenix-from-space/</guid>
		<description><![CDATA[Two great images from the HiRISE camera!
This is the Phoenix probe parachuting into Mars&#8217; north polar region from orbit with Heimdall Crater in the background.  A larger image can be seen at Astronomy Picture of the Day.

This image shows the Phoenix probe on the ground.
 
At this point, a camera under Phoenix may have found a hard icy substrate [...]]]></description>
			<content:encoded><![CDATA[<p>Two great images from the HiRISE camera!</p>
<p>This is the Phoenix probe parachuting into Mars&#8217; north polar region from orbit with Heimdall Crater in the background.  A larger image can be seen at <a href="http://antwrp.gsfc.nasa.gov/apod/ap080530.html">Astronomy Picture of the Day</a>.</p>
<p><img border="0" align="middle" width="350" src="http://www.huginn.com/knuth/blog/pics/phoenixchute.jpg" alt="Phoenix parachuting in" height="174" /></p>
<p>This image shows the Phoenix probe on the ground.</p>
<p> <img border="0" align="middle" width="350" src="http://www.huginn.com/knuth/blog/pics/phoenix-on-ground.jpg" alt="Phoenix imaged from Mars orbit" height="233" /></p>
<p>At this point, a camera under Phoenix may have found a hard icy substrate underlying the topsoil (<a href="http://phoenix.lpl.arizona.edu/05_30_pr.php">story here</a>).</p>
<p>Kevin Knuth<br />
Albany NY</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huginn.com/knuth/blog/2008/06/01/phoenix-from-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
