<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>LearnByDoingIT</title>
	
	<link>http://www.learnbydoingit.org</link>
	<description>“One must learn by doing things, for though you think you know it, you have no certainty until you try.” - Greek philosopher, Aristotle</description>
	<lastBuildDate>Thu, 04 Mar 2010 12:21:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Learnbydoingit" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="learnbydoingit" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>SSH login without password</title>
		<link>http://www.learnbydoingit.org/2010/03/ssh-login-without-password/</link>
		<comments>http://www.learnbydoingit.org/2010/03/ssh-login-without-password/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 12:21:15 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=108</guid>
		<description><![CDATA[



Image via Wikipedia



<p>From Mathias Kettner</p>
<p>I use this often and so much so that I have recently decide to repost it here so that I can find it more easily.  I am not going to rewrite it as I really do use it step by step and Kettner has done a great job simplifying the entire [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Public-key-crypto-1.svg"><img title="A flowchart describing the process of generati..." src="http://upload.wikimedia.org/wikipedia/en/thumb/3/32/Public-key-crypto-1.svg/288px-Public-key-crypto-1.svg.png" alt="A flowchart describing the process of generati..." /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://en.wikipedia.org/wiki/Image:Public-key-crypto-1.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p><a href="http://www.linuxproblem.org/art_9.html" target="_blank">From Mathias Kettner</a></p>
<p>I use this often and so much so that I have recently decide to repost it here so that I can find it more easily.  I am not going to rewrite it as I really do use it step by step and Kettner has done a great job simplifying the entire explanation.</p>
<p><span id="more-108"></span></p>
<p>You want to use <a class="zem_slink freebase/en/linux" title="Linux" rel="wikipedia" href="http://en.wikipedia.org/wiki/Linux">Linux</a> and <a class="zem_slink freebase/en/openssh" title="OpenSSH" rel="homepage" href="http://www.openssh.com/">OpenSSH</a> to automize your tasks. Therefore you need an <strong>automatic</strong> login from host A / user a to Host B / user  b. You don&#8217;t want to enter any passwords, because you want to call <tt><a class="zem_slink freebase/en/secure_shell" title="Secure Shell" rel="wikipedia" href="http://en.wikipedia.org/wiki/Secure_Shell">ssh</a></tt> from a within a <a class="zem_slink freebase/en/shell_script" title="Shell script" rel="wikipedia" href="http://en.wikipedia.org/wiki/Shell_script">shell script</a>.</p>
<h2>How to do it</h2>
<p>First log in on A as user a and generate a pair of authentication  keys.  Do not enter a passphrase:</p>
<pre>a@A:~&gt; <a class="zem_slink" title="Ssh-keygen" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ssh-keygen">ssh-keygen</a> -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/a/.ssh/id_rsa):
Created directory '/home/a/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/a/.ssh/id_rsa.
Your <a class="zem_slink freebase/en/public-key_cryptography" title="Public-key cryptography" rel="wikipedia" href="http://en.wikipedia.org/wiki/Public-key_cryptography">public key</a> has been saved in /home/a/.ssh/id_rsa.pub.
The <a class="zem_slink freebase/en/public_key_fingerprint" title="Public key fingerprint" rel="wikipedia" href="http://en.wikipedia.org/wiki/Public_key_fingerprint">key fingerprint</a> is:
3e:4f:05:79:3a:9f:96:7c:3b:ad:e9:58:37:bc:37:e4 a@A
</pre>
<p>Now use <tt>ssh</tt> to create a directory <tt>~/.ssh</tt> as user b  on B. (The directory may already exist, which is fine):</p>
<pre>a@A:~&gt; ssh b@B mkdir -p .ssh
b@B's password:
</pre>
<p>Finally append a&#8217;s new public key to <tt>b@B:.ssh/authorized_keys</tt> and enter b&#8217;s password one last time:</p>
<pre>a@A:~&gt; cat .ssh/id_rsa.pub | ssh b@B 'cat &gt;&gt; .ssh/authorized_keys'
b@B's password:
</pre>
<p>From now on you can log into B as b from A as a without password:</p>
<pre>a@A:~&gt; ssh b@B hostname
B
</pre>
<p><strong>A note</strong> from one of our readers:  Depending on your version of SSH you might also have to do the following changes:</p>
<ul>
<li>Put the public key in <tt>.ssh/authorized_keys2</tt></li>
<li>Change the permissions of <tt>.ssh</tt> to <tt>700</tt></li>
<li>Change the permissions of <tt>.ssh/authorized_keys2</tt> to <tt>640</tt></li>
</ul>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://yro.slashdot.org/story/09/10/01/2320222/OpenSSH-Going-Strong-After-10-Years-With-Release-of-v53?from=rss">OpenSSH Going Strong After 10 Years With Release of v5.3</a> (yro.slashdot.org)</li>
<li class="zemanta-article-ul-li"><a href="http://www.slumpedoverkeyboarddead.com/2009/10/22/tutorial-more-linux-remote-networking-tips-and-tricks-part-2/">Tutorial: More Linux Remote Networking Tips and Tricks (part 2)</a> (slumpedoverkeyboarddead.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=9df0d4d7-2c65-4f9f-848a-f52d124e7a92" alt="" /><span class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2010/03/ssh-login-without-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>42 of the Best Free Linux Scientific Software</title>
		<link>http://www.learnbydoingit.org/2010/02/42-of-the-best-free-linux-scientific-software/</link>
		<comments>http://www.learnbydoingit.org/2010/02/42-of-the-best-free-linux-scientific-software/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 00:28:41 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Related Sites]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=105</guid>
		<description><![CDATA[<p>From LinuxLinks.com</p>
<p>Science is the effort of trying to understand how the physical world works. From observation and experimentation, science uses physical evidence of natural phenomena to compile data and analyze the collated information. Science really prospers and advances when individuals share the results of their experiments with others in the scientific community. There is a [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-105"></span>From <a href="http://www.linuxlinks.com/article/20080803104017665/Scientific.html" target="_blank">LinuxLinks.com</a></p>
<p>Science is the effort of trying to understand how the physical world works. From observation and experimentation, science uses physical evidence of natural phenomena to compile data and analyze the collated information. Science really prospers and advances when individuals share the results of their experiments with others in the scientific community. There is a certain logic that scientific software should therefore be released in a freely distributable environment.</p>
<p>To provide an insight into the quality of software that is available, we have compiled a list of 42 high quality Linux scientific applications, covering a broad spectrum of uses. There&#8217;s a mix of graphical and console based applications included. Hopefully, there will be something of interest for all types of users.</p>
<p><!--more--><br />
Now, let&#8217;s explore the 42 scientific applications at hand. For each title we have compiled its own portal page, providing a screenshot of the software in action (where appropriate), a full description with an in-depth analysis of its features, together with links to relevant resources and reviews.</p>
<table border="0" cellspacing="2" cellpadding="3">
<tbody>
<tr>
<td colspan="2">General Mathematics</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080808050417963/FreeMat.html">FreeMat</a></td>
<td>Rapid engineering and scientific prototyping and data processing</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/2008081704434958/K3DSurf.html">K3DSurf</a></td>
<td>Visualize and manipulate multidimensional surfaces</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080308062533531/Octave.html">Octave</a></td>
<td>High-level language, primarily intended for numerical computations</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/2008030806254749/Scilab.html">Scilab</a></td>
<td>Numerical computational package</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Computer Algebra systems</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080810064748970/Axiom.html">Axiom</a></td>
<td>For research and development of mathematical algorithms</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080808054017564/Mathomatic.html">Mathomatic</a></td>
<td>Fast and easy-to-use console mode Computer Algebra System</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080308062615882/Maxima.html">Maxima</a></td>
<td>System for the manipulation of symbolic and numerical expressions</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817044513738/PARI-GP.html">PARI/GP</a></td>
<td>Designed for fast computations in number theory</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080816174327805/Sage.html">Sage</a></td>
<td>Integrates an included distribution of specialized mathematics software</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Statistical Analysis</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080413112819929/PSPP.html">PSPP</a></td>
<td>Free replacement of the proprietary program, SPSS</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080413133953606/R.html">R</a></td>
<td>Environment for statistical computing and graphics</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Plotting</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080809061303415/gnuplot.html">Gnuplot</a></td>
<td>Command-driven interactive function plotting program</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080811144056464/QtiPlot.html">QtiPlot</a></td>
<td>Fully fledged plotting software</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Biology</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080810092606853/EMBOSS.html">EMBOSS</a></td>
<td>The European Molecular Biology Open Software Suite</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080811155802400/GROMACS.html">GROMACS</a></td>
<td>Molecular dynamics simulator, with building and analysis tools</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080815185629556/VMD.html">VMD</a></td>
<td>Displays, animates, and analyzes large biomolecular systems</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Chemistry</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/2008081006302288/Avogadro.html">Avogadro</a></td>
<td>Advanced molecular editor</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817083628870/Gabedit.html">Gabedit</a></td>
<td>Graphical user interface to computational chemistry packages</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/200808101016266/GAMESS.html">GAMESS</a></td>
<td>General ab initio quantum chemistry package</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/2008081414494348/MOSCITO.html">MOSCITO</a></td>
<td>Performs molecular dynamics simulations of rigid and/or flexible molecules</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817121438117/MPQC.html">MPQC</a></td>
<td>Computes the properties of molecules, ab initio</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080811145720784/OpenBabel.html">Open Babel</a></td>
<td>Converts and manipulates chemical data files</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080810123306708/PyMOL.html">PyMOL</a></td>
<td>OpenGL molecular graphics system written in Python</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Physics</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/2008081007043557/CompHEP.html">CompHEP</a></td>
<td>Automatic computations in High Energy Physics</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080816123252782/Gerris.html">Gerris Flow Solver</a></td>
<td>Tool for generic numerical simulations of flows</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817072837763/Octopus.html">Octopus</a></td>
<td>Real-space, real-time implementation of TDDFT</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817120130116/OpenFOAM.html">OpenFOAM</a></td>
<td>Facilitates the numerical solution of partial differential equations</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817134020383/ROOT.html">ROOT</a></td>
<td>Solves the data analysis challenges of high-energy physics</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Astronomy</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080401131729128/Celestia.html">Celestia</a></td>
<td>Real-time space simulation</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/2008081016213049/KStars.html">KStars</a></td>
<td>Desktop planetarium for KDE</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817093910894/SkyChart.html">Skychart</a></td>
<td>Prepare different sky maps for a particular observation</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080401131743342/Stellarium.html">Stellarium</a></td>
<td>A virtual planetarium</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Electronic &amp; Engineering</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/200808100941419/Elmer.html">Elmer</a></td>
<td>Multiphysical simulation software</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080813155101423/Qucs.html">Qucs</a></td>
<td>Integrated circuit simulator</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Geographic Information Systems</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080414073358358/GRASS.html">GRASS</a></td>
<td>Geographic Resources Analysis Support System</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080414064630512/QGIS.html">Quantum GIS</a></td>
<td>Create, visualise, query and analyse geospatial data</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080817114432999/SAGA.html">SAGA</a></td>
<td>Analysis of spatial data</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080414073240279/uDig.html">uDig</a></td>
<td>Spatial data viewer/editor</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Econometrics</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080414032918868/gretl.html">gretl</a></td>
<td>Regression, Econometric and Time-Series Library</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Typesetting</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080404162135623/Kile.html">Kile</a></td>
<td>User-friendly LaTeX source editor and TeX shell and KDE</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20071001074718966/LyX.html">LyX</a></td>
<td>Advanced open source document processor</td>
</tr>
<tr>
<td><a href="http://www.linuxlinks.com/article/20080307193101771/TeXmacs.html">TeXmacs</a></td>
<td>WYSIWYW scientific word processor</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2010/02/42-of-the-best-free-linux-scientific-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wally: Automatic Wallpaper Changer</title>
		<link>http://www.learnbydoingit.org/2010/02/wally-automatic-wallpaper-changer/</link>
		<comments>http://www.learnbydoingit.org/2010/02/wally-automatic-wallpaper-changer/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 03:56:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=101</guid>
		<description><![CDATA[My thanks to W8 for this tip.
Wally is a Qt4 wallpaper changer, using multiple sources like files, folders, FTP remote folders, Flickr, Yahoo!, Panoramio, Pikeo, Ipernity, Photobucket, Buzznet, Picasa and Smugmug images. Not only that, but it also works on Windows, Linux and Mac OSX. Ubuntu users will be glad to know that it even [...]]]></description>
			<content:encoded><![CDATA[<div>My thanks to W8 for <a href="http://www.webupd8.org/2009/09/wally-best-automatic-wallpaper-changer.html" target="_blank">this tip</a>.</div>
<div>Wally is a Qt4 wallpaper changer, using multiple sources like files, folders, FTP remote folders, <a class="zem_slink" title="Flickr" rel="homepage" href="http://www.flickr.com">Flickr</a>, Yahoo!, Panoramio, Pikeo, Ipernity, <a class="zem_slink" title="Photobucket" rel="homepage" href="http://www.photobucket.com">Photobucket</a>, Buzznet, <a class="zem_slink" title="Picasa" rel="homepage" href="http://picasa.google.com/">Picasa</a> and <a class="zem_slink" title="SmugMug" rel="homepage" href="http://www.smugmug.com/">Smugmug</a> images. Not only that, but it also works on Windows, Linux and Mac OSX. Ubuntu users will be glad to know that it even comes with pre-build .deb packages for both 32 and 64bit versions (download link at the end of the post).</div>
<div><a href="http://i31.tinypic.com/akv0r4.jpg" target="_blank"><img src="http://i31.tinypic.com/akv0r4.jpg" border="0" alt="wally wallpaper changer" width="643" height="558" /></a></div>
<div>
<p>Wally features:</p>
<p>·  History support<br />
·  Many wallpaper layouts available on all platforms<br />
·  EXIF data available over picture and in system tray tooltip<br />
·  Save downloaded photos<br />
·  Run-time folder change detection in &#8220;Folder&#8221; mode<br />
·  Proxy support</p>
</div>
<div>·       It supports KDE3, KDE4, Gnome, XFCE4, Fluxbox, Blackbox, FVWM (unstable), WindowMaker window managers.</div>
<div><a href="http://www.becrux.com/index.php?page=projects&amp;name=wally">Download Wally</a></div>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.downloadsquad.com/2009/11/13/wally-is-a-kick-ass-connected-wallpaper-changer-for-windows-ma/">Wally is a kick-ass, connected wallpaper changer for Windows, Mac, and Linux</a> (downloadsquad.com)</li>
<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5404316/keep-your-wallpaper-fresh-with-cross+platform-wally">Keep Your Wallpaper Fresh with Cross-Platform Wally [Downloads]</a> (lifehacker.com)</li>
<li class="zemanta-article-ul-li"><a href="http://maketecheasier.com/wally-a-cross-platform-wallpaper-changer/2009/12/09">Wally: A Cross Platform Wallpaper Changer</a> (maketecheasier.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2010/02/wally-automatic-wallpaper-changer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenShot 1.0 Has Arrived!</title>
		<link>http://www.learnbydoingit.org/2010/01/openshot-1-0-has-arrived/</link>
		<comments>http://www.learnbydoingit.org/2010/01/openshot-1-0-has-arrived/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 00:16:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenShot]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=98</guid>
		<description><![CDATA[
OpenShot  

OpenShot Video Editor &#8211; Version 1.0  Released! from Jonathan Thomas on Vimeo.</p>

<p>OpenShot Video Editor 1.0  has just been released!</p>
Download  Version 1.0 Today!</p>
Here is a quick rundown of the new features:


Transition snapping &#8211; Transitions now  snap to the nearest clip or the play-head.
Improved Stability &#8211; Just try and  crash [...]]]></description>
			<content:encoded><![CDATA[<div>
<h2><a title="Permanent Link to OpenShot 1.0 Has Arrived!" rel="bookmark" href="http://www.openshotvideo.com/" target="_blank">OpenShot</a> <a title="Edit Post" href="http://www.blogger.com/post-edit.g?blogID=3573870775606428240&amp;postID=2219268328952920278"> </a></h2>
</div>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="281" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8570607&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="500" height="281" src="http://vimeo.com/moogaloop.swf?clip_id=8570607&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><a href="http://vimeo.com/8570607">OpenShot Video Editor &#8211; Version 1.0  Released!</a> from <a href="http://vimeo.com/openshot">Jonathan Thomas</a> on <a href="http://vimeo.com/">Vimeo</a>.</p>
</div>
<p>OpenShot Video Editor 1.0  has just been released!</p>
<div><a href="http://www.openshotvideo.com/2008/04/download.html">Download  Version 1.0 Today!</a></p>
<div><span id="more-98"></span>Here is a quick rundown of the new features:</div>
</div>
<ul>
<li>Transition snapping &#8211; Transitions now  snap to the nearest clip or the play-head.</li>
<li>Improved Stability &#8211; Just try and  crash OpenShot now.  We dare you.  Seriously though, many common issues  that would crash OpenShot have been resolved, and the overall stability  is great now.</li>
<li>Improved Accuracy  &#8211; The accuracy of our edits and cuts has been improved.  No more  skipped frames, out of place frames, or flashes of white.</li>
<li>New  Transitions &#8211; 28 new transitions have been added.
<div><a href="http://4.bp.blogspot.com/_AuTEvUYi4Ms/S0gIReLMLTI/AAAAAAAAA-s/8-PKLOXra1g/s1600-h/new_transitions.png" onblur="try  {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5424594847418559794" src="http://4.bp.blogspot.com/_AuTEvUYi4Ms/S0gIReLMLTI/AAAAAAAAA-s/8-PKLOXra1g/s400/new_transitions.png" border="0" alt="" /></a></div>
</li>
<li>New Titles  &#8211; 29 new titles have been added (both in 4:3 and 16:9 ratios).  Also,  titles are higher quality, and look great up to 1080p.  Based on your  project&#8217;s aspect ratio, the Title Editor will automatically show you the  correct aspect ratio titles.  In other words&#8230; no more squished or  stretched titles.
<div><a href="http://1.bp.blogspot.com/_AuTEvUYi4Ms/S0gKYKRuJOI/AAAAAAAAA-8/DkZDfTLBtnU/s1600-h/new_titles.png" onblur="try  {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5424597161359582434" src="http://1.bp.blogspot.com/_AuTEvUYi4Ms/S0gKYKRuJOI/AAAAAAAAA-8/DkZDfTLBtnU/s400/new_titles.png" border="0" alt="" /></a></div>
</li>
<li>New Themes  &#8211; Two new themes have been added, making a total of 4 themes.  A)  simple theme with smaller icons for small screens. B) flat blue theme &#8211; a  theme with no glass or gloss.
<div><a href="http://1.bp.blogspot.com/_AuTEvUYi4Ms/S0gLdlCsmqI/AAAAAAAAA_E/U6hjh1Htz7c/s1600-h/new_themes.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5424598353955297954" src="http://1.bp.blogspot.com/_AuTEvUYi4Ms/S0gLdlCsmqI/AAAAAAAAA_E/U6hjh1Htz7c/s400/new_themes.png" border="0" alt="" /></a></div>
</li>
<li>Time Format  Improved &#8211; The time format has been changed to include the frame  number, instead of the millisecond:
<div><a href="http://2.bp.blogspot.com/_AuTEvUYi4Ms/S0gM8eP2ytI/AAAAAAAAA_M/r1g27YJ-2_Y/s1600-h/time_format.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5424599984219015890" src="http://2.bp.blogspot.com/_AuTEvUYi4Ms/S0gM8eP2ytI/AAAAAAAAA_M/r1g27YJ-2_Y/s400/time_format.png" border="0" alt="" /></a></div>
</li>
<li>New Profile  &#8211; HDV 720p 24 fps</li>
<li>More Languages &#8211; There are now 42  languages included with OpenShot version 1.0!</li>
<li>Help Manual Integrated &#8211;  The help manual is now integrated, and will launch in your native  language (assuming we have a translation for that language).  Currently,  French, Spanish, and English are 100% translated.</li>
<li>User  Interface Enhancements &#8211; Many small changes to the UI have been  made to simplify OpenShot.  The &#8220;Open Project&#8221; toolbar button has been  replaced by the &#8220;New Project&#8221; button.  This removes the confusion  between importing files and opening files.  A few other buttons, labels,  and icons have been changed also.</li>
<li>Window State Fixed &#8211; The window state  now correctly recognizes &#8220;maximized&#8221;, and is more reliable.  In other  words, when you resize the window, vertical panes, or horizontal panes  in OpenShot, it remembers your screen layout the next time you launch  it.</li>
<li>Clip  Properties Fixed &#8211; The IN and OUT properties have been fixed to  not allow the user to overlap them.  The &#8220;Add Effect&#8221; button has been  fixed to work correctly with audio effects.</li>
<li>Chroma Key Fixed &#8211; Some  users were unable to see the color picker on the chroma key effect.   This has been fixed.</li>
<li>Tooltips Translated &#8211; The main screen  has been improved to show translated tooltips on all of the toolbars.</li>
<li>Lock File  Fixed &#8211; The lock file now verifies that it is valid, instead of  preventing OpenShot from launching.</li>
</ul>
<p>Not good enough?  Still  want more?  Well, soon we will be cleaning up our LaunchPad project to  better structure everything.  Once that is complete, we will start work  on our roadmap for the next version.  As always, we will listen to you  (our community) and try and make the best video editor that Linux has  ever seen!</p>
<h6 class="zemanta-related-title">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.omgubuntu.co.uk/2010/01/openshot-10-stable-released-best-linux.html">OpenShot 1.0 Stable Released; Best Linux Video Editor</a> (omgubuntu.co.uk)</li>
<li class="zemanta-article-ul-li"><a href="http://linux.slashdot.org/story/10/01/09/2359210/OpenShot-Video-Editor-Reaches-Version-10?from=rss">OpenShot Video Editor Reaches Version 1.0</a> (linux.slashdot.org)</li>
<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5455434/openshot-10-is-an-actually-usable-linux-video-editor?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%253A+ryocentral+%2528Ryo+Central+%2540+Google+Reader%2529">OpenShot 1.0 Is an Actually Usable Linux Video Editor [Downloads]</a> (lifehacker.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=b0c18cb3-5ea9-4a07-b0ab-523198fdf776" alt="" /><span class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2010/01/openshot-1-0-has-arrived/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek Clock</title>
		<link>http://www.learnbydoingit.org/2010/01/geek-clock/</link>
		<comments>http://www.learnbydoingit.org/2010/01/geek-clock/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 04:20:48 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Geeks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=95</guid>
		<description><![CDATA[<p>From GeekCook comes this clock for Geeks.  If you haven&#8217;t used Google Translate, install the Google Toolbar, turn on Translate and translate this Chinese site into English.  The translation will get you through a purchase; however, you will spot the challenges in translating a web page.  Think what ThinkGeek would look like translated by Google [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.geekcook.net/?p=1175" target="_blank">GeekCook </a>comes this clock for Geeks.  If you haven&#8217;t used <a class="zem_slink" title="Google" rel="homepage" href="http://google.com">Google</a> Translate, install the Google Toolbar, turn on Translate and translate this Chinese site into English.  The translation will get you through a purchase; however, you will spot the challenges in translating a web page.  Think what <a class="zem_slink" title="ThinkGeek" rel="homepage" href="http://www.thinkgeek.com/">ThinkGeek</a> would look like translated by Google into Chinese.</p>
<p><a href="http://www.learnbydoingit.org/wp-content/uploads/2010/01/geekcook_clock.jpg"><img class="alignleft size-medium wp-image-96" title="geekcook_clock" src="http://www.learnbydoingit.org/wp-content/uploads/2010/01/geekcook_clock-300x300.jpg" alt="" width="300" height="300" /></a></p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://crenk.com/my-gengo-translation-by-people-not-computers/">My Gengo &#8211; Translation by People, Not Computers</a> (crenk.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.downloadsquad.com/2009/10/01/google-launches-universal-translation-tool-for-web-publishers/">Google launches universal translation tool for web publishers</a> (downloadsquad.com)</li>
<li class="zemanta-article-ul-li"><a href="http://googlesystem.blogspot.com/2009/06/google-toolbar-improved-page.html">Google Toolbar&#8217;s Improved Web Page Translation</a> (googlesystem.blogspot.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2010/01/geek-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking an HP Media Vault Pro for RSYNC</title>
		<link>http://www.learnbydoingit.org/2010/01/hacking-an-hp-media-vault-pro-for-rsync/</link>
		<comments>http://www.learnbydoingit.org/2010/01/hacking-an-hp-media-vault-pro-for-rsync/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 20:45:47 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[5150]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[HP Mediavault]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Media Vault Pro]]></category>
		<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=91</guid>
		<description><![CDATA[



Image via Wikipedia



<p>I have a number of HP Media Vault Pro, MV5150s, which I purchased to provide classroom storage at a low cost.  These are MV2, Series 2 Media Vault servers, and the instructions that follow are specific to this series only.  They work great, and I have begun to use them daily with all [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 204px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:OpenSSH_logo.png"><img title="OpenSSH" src="http://upload.wikimedia.org/wikipedia/en/6/65/OpenSSH_logo.png" alt="OpenSSH" width="194" height="191" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:OpenSSH_logo.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>I have a number of <a href="HP Media Vault Pro, MV5150" target="_blank">HP Media Vault Pro, MV5150</a>s, which I purchased to provide classroom storage at a low cost.  These are MV2, Series 2 Media Vault servers, and the instructions that follow are specific to this series only.  They work great, and I have begun to use them daily with all my classes.  Out of the box they don&#8217;t support using rsync and that is one of my critical needs for a variety of functions.</p>
<p><a href="http://makezine.com/04/ownyourown/" target="_blank">If you can&#8217;t open it, you don&#8217;t own it</a>.  And it was my first opportunity is a great while to see what embedded Linux systems are about in recent times.  So time to hack.</p>
<p>To start hacking a Media Vault means starting with Lee Devlin&#8217;s great website<a href="http://www.k0lee.com/hpmediavault/" target="_blank"> http://www.k0lee.com/hpmediavault/</a>.  It is a great respository for the HP Media Vault community and Lee led me to the two User Support Groups on <a class="zem_slink freebase/guid/9202a8c04000641f800000000014de46" title="Yahoo!" rel="homepage" href="http://www.yahoo.com">Yahoo</a>!:</p>
<p style="padding-left: 30px;"><a name="user"><strong>User Support Group</strong></a></p>
<p style="padding-left: 30px;">There is an 3300+ member Media Vault <a href="http://groups.yahoo.com/group/HPMediaVault">user group at Yahoo</a> set up specifically to discuss the HP Media Vault and share information with other users.    You can join the group and  ask questions or search its archive of more than 8500 messages if you want to learn more  about the HP Media Vault or can&#8217;t find the answer to your question in this FAQ.     For hacking purposes, there is another group called <a href="http://tech.groups.yahoo.com/group/hackingthemediavault/">Hacking the  HP Mediavault</a>.</p>
<p>And both of these led me to installing the <a href="http://en.wikipedia.org/wiki/Ipkg" target="_blank">ipkg </a>packager.  These instructions work fine:</p>
<p style="padding-left: 30px;">Download <a href="http://www.k0lee.com/hpmediavault/ipkginstall.zip">ipkginstall.zip</a></p>
<p style="padding-left: 30px;">1. Extract the file.<br />
2. Copy the file (ipkginstall.sh) and the dir (ipkgsetup) to a share on the  Media Vault<br />
3. SSH in, and cp the file, and dir to &#8220;/&#8221;<br />
4. # sh ./ipkginstall.sh</p>
<p>Ipkg is now installed in /opt/bin and I modified /etc/profile to include that in the path.</p>
<p>Then one simply runs &#8220;ipkg update&#8221; to install the file database and &#8220;ipkg install rsync&#8221; to install the new version of rsync.  Ipkg installs rsync in /opt/bin and to make it work with remote rsync hosts I added a <a class="zem_slink freebase/en/symbolic_link" title="Symbolic link" rel="wikipedia" href="http://en.wikipedia.org/wiki/Symbolic_link">symbolic link</a> in /sbin to /opt/bin/rsync.</p>
<p>The HP MV2 series uses <a href="http://www.busybox.net/downloads/BusyBox.html" target="_blank">Busybox </a>linux.  Busybox comes with <a href="http://matt.ucc.asn.au/dropbear/dropbear.html" target="_blank">Dropbear SSH</a> which is compatible with <a class="zem_slink freebase/en/openssh" title="OpenSSH" rel="homepage" href="http://www.openssh.com/">OpenSSH</a> ~/.ssh/authorized_keys <a class="zem_slink freebase/en/public-key_cryptography" title="Public-key cryptography" rel="wikipedia" href="http://en.wikipedia.org/wiki/Public-key_cryptography">public key</a> authentication, so use these simple instructions from <a href="http://www.linuxproblem.org/art_9.html" target="_blank">Mathias Kettner</a></p>
<p style="padding-left: 30px;">SSH login without password</p>
<p style="padding-left: 30px;">Your aim</p>
<p style="padding-left: 30px;">You want to use Linux and OpenSSH to automize your tasks. Therefore you need an <strong>automatic</strong> login from host A / user a to Host B / user b. You don&#8217;t want to enter any passwords, because you want to call <tt>ssh</tt> from a within a <a class="zem_slink freebase/en/shell_script" title="Shell script" rel="wikipedia" href="http://en.wikipedia.org/wiki/Shell_script">shell script</a>.</p>
<p style="padding-left: 30px;">How to do it</p>
<p style="padding-left: 30px;">First log in on A as user a and generate a pair of authentication keys.  Do not enter a passphrase:</p>
<p style="padding-left: 30px;">a@A:~&gt; <a class="zem_slink" title="Ssh-keygen" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ssh-keygen">ssh-keygen</a> -t rsa<br />
Generating public/private rsa key pair.<br />
Enter file in which to save the key (/home/a/.ssh/id_rsa):<br />
Created directory &#8216;/home/a/.ssh&#8217;.<br />
Enter passphrase (empty for no passphrase):<br />
Enter same passphrase again:<br />
Your identification has been saved in /home/a/.ssh/id_rsa.<br />
Your public key has been saved in /home/a/.ssh/id_rsa.pub.<br />
The key fingerprint is:<br />
3e:4f:05:79:3a:9f:96:7c:3b:ad:e9:58:37:bc:37:e4 a@A</p>
<p style="padding-left: 30px;">Now use <tt>ssh</tt> to create a directory <tt>~/.ssh</tt> as user b on B. (The directory may already exist, which is fine):</p>
<p style="padding-left: 30px;">a@A:~&gt; ssh b@B mkdir -p .ssh<br />
b@B&#8217;s password:</p>
<p style="padding-left: 30px;">Finally append a&#8217;s new public key to <tt><a href="mailto:b@B:.ssh/authorized_keys">b@B:.ssh/authorized_keys</a></tt> and enter b&#8217;s password one last time:</p>
<p style="padding-left: 30px;">a@A:~&gt; cat .ssh/id_rsa.pub | ssh b@B &#8216;cat &gt;&gt; .ssh/authorized_keys&#8217;<br />
b@B&#8217;s password:</p>
<p style="padding-left: 30px;">From now on you can log into B as b from A as a without password:</p>
<p style="padding-left: 30px;">a@A:~&gt; ssh b@B hostname<br />
B</p>
<p>And that was all there is to it.  Follow the caveats.  Know your abilities.  As always your mileage may vary.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=ee9dbfc3-948c-4454-829a-a0883462a4b0" alt="" /><span class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2010/01/hacking-an-hp-media-vault-pro-for-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Art of Community</title>
		<link>http://www.learnbydoingit.org/2009/12/the-art-of-community/</link>
		<comments>http://www.learnbydoingit.org/2009/12/the-art-of-community/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 21:58:59 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[People]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[eBook]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=87</guid>
		<description><![CDATA[



Image via Wikipedia



The Art of Community by Jono Bacon</p>

<p></p>
<p>Bacon is the Community Manager for Ubuntu (), one of the largest open source software projects on the planet. In this book he talks about the ins and outs of building, cultivating and managing a community from the ground up. This is a must-read for anyone interested [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:ElBeardSupremo.png"><img title="Jono Bacon" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/93/ElBeardSupremo.png/300px-ElBeardSupremo.png" alt="Jono Bacon" width="300" height="400" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:ElBeardSupremo.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<h2><a title="The Art of Community Now Available For Free Download" href="http://www.artofcommunityonline.org/2009/09/18/the-art-of-community-now-available-for-free-download/" target="_blank">The Art of Community</a> by <a class="zem_slink" title="Jono Bacon" rel="wikipedia" href="http://en.wikipedia.org/wiki/Jono_Bacon">Jono Bacon</a></p>
<hr /></h2>
<p><img src="http://farm3.static.flickr.com/2533/3932271218_6c51b6bee2.jpg" alt="Art of Community Image" /></p>
<p>Bacon is the Community Manager for <a class="zem_slink" title="Ubuntu (operating system)" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a><a rel="http://www.blippr.com/apps/336787-Ubuntu.whtml" href="http://www.blippr.com/apps/336787-Ubuntu" target="_blank"> (<img src="http://netdna.blippr.com/images/inline-face_05.png?1260002206" alt="Ubuntu" />)</a>, one of the largest <a class="zem_slink" title="Open source" rel="wikipedia" href="http://en.wikipedia.org/wiki/Open_source">open source</a> software projects on the planet. In this book he talks about the ins and outs of building, cultivating and managing a community from the ground up. This is a must-read for anyone interested in community development. In a truly community-friendly effort, you can download the entire book for free and share and modify it under the <a class="zem_slink" title="Creative Commons licenses" rel="wikipedia" href="http://en.wikipedia.org/wiki/Creative_Commons_licenses">Creative Commons Attribution Share-Alike</a> Non-Commercial license.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/Albina/creative-commons-2754012">Creative Commons</a> (slideshare.net)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2009/12/the-art-of-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marty Stepp, UWs Rapping Lecturer</title>
		<link>http://www.learnbydoingit.org/2009/12/marty-stepp-uws-rapping-lecturer/</link>
		<comments>http://www.learnbydoingit.org/2009/12/marty-stepp-uws-rapping-lecturer/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 18:16:09 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[People]]></category>
		<category><![CDATA[cs4hs]]></category>
		<category><![CDATA[uw]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=85</guid>
		<description><![CDATA[



Image via Wikipedia



<p></p>
 Geek of the Week: Marty Stepp, UW&#8217;s rapping lecturer
<p>After a brief hiatus, Geek of the Week is back with a rapping computer science lecturer from the University of Washington.</p>
<p>Read the full article HERE</p>
Related articles

Geek of the Week: Ksenia Oustiougova of Lilipip (seattlepi.com)
Geek of the Week: Wendy Chisholm (seattlepi.com)
Geek of the Week: Graphics [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Uwaerial1922.jpg"><img title="Aerial view of the University of Washington ca..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Uwaerial1922.jpg/300px-Uwaerial1922.jpg" alt="Aerial view of the University of Washington ca..." width="300" height="194" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Uwaerial1922.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/BeBhvzV37RI&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/BeBhvzV37RI&amp;hl=en&amp;fs=1&amp;" allowfullscreen="true"></embed></object></p>
<div><a href="http://blog.seattlepi.com/thebigblog/author.asp?author=100435"><img src="http://seattlepi.com/art2/blog50monica_guzman.jpg" alt="Monica Guzman" /></a> Geek of the Week: Marty Stepp, UW&#8217;s rapping lecturer</div>
<p>After a brief hiatus, <a href="http://www.seattlepi.com/tech/geekoftheweek/">Geek of the Week</a> is back with a rapping computer science lecturer from the <a class="zem_slink freebase/en/university_of_washington" title="University of Washington" rel="wikipedia" href="http://en.wikipedia.org/wiki/University_of_Washington">University of Washington</a>.</p>
<p>Read the full article <a href="http://blog.seattlepi.com/thebigblog/archives/179372.asp?source=rss" target="_blank">HERE</a></p>
<h6>Related articles</h6>
<ul>
<li><a href="http://blog.seattlepi.com/thebigblog/archives/184823.asp?source=rss">Geek of the Week: Ksenia Oustiougova of Lilipip</a> (seattlepi.com)</li>
<li><a href="http://blog.seattlepi.com/thebigblog/archives/184024.asp?source=rss">Geek of the Week: Wendy Chisholm</a> (seattlepi.com)</li>
<li><a href="http://blog.seattlepi.com/thebigblog/archives/180086.asp?source=rss">Geek of the Week: Graphics guru Jenny Lam</a> (seattlepi.com)</li>
</ul>
<p><span id="more-85"></span><br />
The following archival copy is only in the event the original article disappears, I use this blog for my classes.  Please go back and read the full article from the original site.  It isn’t simply a matter of honorably allowing the advertisers to provide their services and pay for this kind of well written article, the related articles and comments are the best part of the online experience and not reproduced here.</p>
<p>Read the article at <a href="http://blog.seattlepi.com/thebigblog/archives/179372.asp?source=rssat " target="_blank">http://blog.seattlepi.com/thebigblog/archives/179372.asp?source=rssat </a></p>
<p>No. Really.</p>
<p>And programmers, if you have to match your skills against Marty Stepp&#8217;s, watch out. As he puts it in his rap lecture above, &#8220;My code eats yours for breakfast.&#8221;</p>
<p>P.S. &#8212; Stepp is right. Batman<em> is</em> a geek.</p>
<p><em>Have someone in mind for next time? <a href="mailto:monicaguzman@seattlepi.com">Let me know.</a> </em></p>
<p><strong>Name:</strong> Marty Stepp</p>
<p><strong>Title:</strong> Lecturer, University of Washington, <a class="zem_slink freebase/en/computer_science" title="Computer science" rel="wikipedia" href="http://en.wikipedia.org/wiki/Computer_science">Computer Science &amp; Engineering</a> Department</p>
<p><img src="http://seattlepi.nwsource.com/dayart/tech/geek_martystepp.jpg" alt="Photo of Marty Stepp" /></p>
<p><strong>What do you do, exactly?</strong> I teach computer science and web programming at UW. Check out our textbook at <a href="http://www.webstepbook.com/">webstepbook.com</a>.</p>
<p><strong>Geekiest title you&#8217;ve ever had:</strong> I dabble in rapping in some of my lectures under the name of &#8220;Vicious D Marty Slick.&#8221;</p>
<p><strong>Geekiest thing you&#8217;ve ever done:</strong> I won a Nintendo competition in Phoenix when I was young. The games were Super Mario Bros., Rad Racer, and Tetris.</p>
<p><strong>Favorite movie:</strong> &#8220;Memento.&#8221; It&#8217;s about a man with no long-term memory. After marathon work sessions, I can really relate to this character.</p>
<p><strong>Favorite game:</strong> Guitar Hero 2. There is nothing cooler than devoting way too much time practicing a fake musical instrument.</p>
<p><strong>Favorite book:</strong> <a class="zem_slink freebase/en/the_hitchhikers_guide_to_the_galaxy" title="The Hitchhiker's Guide to the Galaxy" rel="wikipedia" href="http://en.wikipedia.org/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy">Hitchhiker&#8217;s Guide</a> to the Galaxy, all five books.</p>
<p><strong>Favorite junk food:</strong> Trader Joe&#8217;s cranberry whole wheat cookies. Serving size: 1 box.</p>
<p><strong>Favorite time waster:</strong> Browsing <a href="http://funnyyahooanswers.com/">funnyyahooanswers.com</a> or <a href="http://www.theonion.com/">The Onion</a>.</p>
<p><strong>Mac or PC?</strong> I wanted to get a Mac, but I&#8217;m saving for a new kidney.</p>
<p><strong><a class="zem_slink freebase/en/iphone" title="IPhone" rel="wikipedia" href="http://en.wikipedia.org/wiki/IPhone">iPhone</a> or Blackberry?</strong> I love my new <a class="zem_slink freebase/en/google" title="Google" rel="homepage" href="http://google.com">Google</a> G1 phone. You can use it to check your email, watch <a class="zem_slink freebase/en/youtube" title="YouTube" rel="homepage" href="http://www.youtube.com/">Youtube</a>, surf the Web, and more. It also makes phone calls. As a handy side effect, if you are using it in public, it acts as a potent repellant to the opposite sex.</p>
<p><strong><em>Star Wars</em> or <em><a class="zem_slink freebase/en/star_trek" title="Star Trek" rel="wikipedia" href="http://en.wikipedia.org/wiki/Star_Trek">Star Trek</a>?</em></strong> They&#8217;re both great (original trilogy only, por favor), but I cast my vote for <a class="zem_slink freebase/en/battlestar_galactica_2003" title="Battlestar Galactica (2004 TV series)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Battlestar_Galactica_%282004_TV_series%29">Battlestar Galactica</a>.</p>
<p><strong>Coolest new tech venture in Seattle:</strong> <a href="http://cloudera.com/">Cloudera</a> is technically in California, but they have a ton of UW and Seattle connections. They provide massive amounts of &#8220;cloud computing&#8221; power to enterprises who need to crunch big data.</p>
<p><strong>When did you first know you were a geek? Describe that moment:</strong> When I was upset about the bad Wi-Fi reception in my mom&#8217;s womb.</p>
<p><strong>Who are your geek heroes, and why?</strong> Batman is my geek hero. Yes, Batman is a geek! He invents all those amazing gadgets and wears them on a gaudy belt. I still treasure the model Batmobile racer I built in middle school.</p>
<p><strong>Look into your crystal ball: What&#8217;s the next big disruptive technology/event/movement?</strong> Ubiquitous computing is the idea that computing devices will soon pervade every aspect of our daily lives. Soon you won&#8217;t be able to smile, sneeze, or cross the street without a device detecting it, recording it, and alerting the NSA. It will provide us with lots of valuable information and enrich our lives, and the only cost is a complete lack of privacy.</p>
<p><strong>Final thoughts?</strong> Young people of America, be careful what you post on the Web. I have some embarrassing old Web sites I wrote in the late &#8217;90s, including a space club site with pics of me stealing a golf cart from my high school. Now they&#8217;re online for all eternity.</p>
<p><strong>Geek link:</strong> <a href="http://cs.washington.edu/homes/stepp/">cs.washington.edu/homes/stepp/</a></p>
<p><strong>Twitter:</strong> <a href="http://www.twitter.com/martystepp">martystepp</a></p>
<p>Our last GoW, <a href="http://blog.seattlepi.com/thebigblog/archives/176867.asp">Stephanie Vasko</a>, asked Marty what his theme song would be, if he could have one playing in the background as he walked down the street.</p>
<p>&#8220;My theme song would be &#8216;White and Nerdy&#8217; by <a class="zem_slink" title="&quot;Weird Al&quot; Yankovic" rel="wikipedia" href="http://en.wikipedia.org/wiki/%22Weird_Al%22_Yankovic">Weird Al Yankovic</a>,&#8221; Marty responded. &#8220;I&#8217;m white, I&#8217;m nerdy, and as a computer scientist, I actually get the jokes in the song.&#8221;</p>
<p><em>To keep a thread going with future GoW&#8217;s, we asked Marty to submit a question for the next geek. Check back next week to find out what it is, and how it&#8217;s answered.</em></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=f8608b4b-2a48-441a-bc19-3a3c6a791aac" alt="" /><span class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2009/12/marty-stepp-uws-rapping-lecturer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git in One Hour</title>
		<link>http://www.learnbydoingit.org/2009/11/git-in-one-hour/</link>
		<comments>http://www.learnbydoingit.org/2009/11/git-in-one-hour/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 18:41:49 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Online Ed]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[webcast]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=79</guid>
		<description><![CDATA[<p>This event was watched and reviewed by one of my favorite techies and it was their opinion that this was a useful webcast instead of the more pedantic variety which appear more like a reference manual to a product than a hands-on &#8220;howto&#8221; type.  Highly recommended!</p>
<p>
Date: This event took place live on August 20 2009
Presented [...]]]></description>
			<content:encoded><![CDATA[<p>This event was watched and reviewed by one of my favorite techies and it was their opinion that this was a useful webcast instead of the more pedantic variety which appear more like a reference manual to a product than a hands-on &#8220;howto&#8221; type.  Highly recommended!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/OFkgSjRnay4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/OFkgSjRnay4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<strong>Date:</strong> This event took place live on August 20 2009<br />
<strong>Presented by:</strong> <a href="http://www.oreillynet.com/pub/au/3843">Scott  Chacon</a><br />
<strong>Duration:</strong> Approximately 60 minutes.</p>
<p>In this webcast, Git evangelist Scott Chacon covers the basics of the Git source control system. He&#8217;ll introduce the audience to Git basics: staging and committing snapshots, viewing the commit log, pushing to and pulling from servers, and creating, switching between, and merging branches.  Finally he&#8217;ll quickly cover a few more advanced features &#8211; code annotation, advanced log options and possibly more, time permitting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2009/11/git-in-one-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Programming Visual Cheat Sheet</title>
		<link>http://www.learnbydoingit.org/2009/11/wordpress-programming-visual-cheat-sheet/</link>
		<comments>http://www.learnbydoingit.org/2009/11/wordpress-programming-visual-cheat-sheet/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 13:19:07 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[cheatsheet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.learnbydoingit.org/?p=73</guid>
		<description><![CDATA[<p>Thanks to Antonio Lupetti</p>
<p>WordPress Visual Cheat Sheet is the new document, of the Visual Cheat Sheet family, that contains a practical reference guide to WordPress 2.8. This cheat sheet (5 pages) contains the full reference guide to WP Template Tags with detailed descriptions and sample code.</p>
<p>WordPress-Visual-Cheat-Sheet
WordPress 2.8 Visual Cheat Sheet 	</p>
]]></description>
			<content:encoded><![CDATA[<p>Thanks to<a href="http://woorkup.com/2009/11/01/wordpress-visual-cheat-sheet/" target="_blank"> Antonio Lupetti</a></p>
<p><em>WordPress Visual Cheat Sheet</em> is the new document, of the Visual Cheat Sheet family, that contains a practical reference guide to WordPress 2.8. This cheat sheet (5 pages) contains the full reference guide to WP Template Tags with detailed descriptions and sample code.</p>
<p>WordPress-Visual-Cheat-Sheet<br />
<a title="View WordPress 2.8 Visual Cheat Sheet on Scribd" href="http://www.scribd.com/doc/21982552/WordPress-2-8-Visual-Cheat-Sheet" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">WordPress 2.8 Visual Cheat Sheet</a> <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="doc_289079632667751" name="doc_289079632667751" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle"	height="500" width="100%" ><param name="movie"	value="http://d1.scribdassets.com/ScribdViewer.swf?document_id=21982552&#038;access_key=key-adv049fck266gx0onkr&#038;page=1&#038;version=1&#038;viewMode=slideshow"><param name="quality" value="high"><param name="play" value="true"><param name="loop" value="true"><param name="scale" value="showall"><param name="wmode" value="opaque"><param name="devicefont" value="false"><param name="bgcolor" value="#ffffff"><param name="menu" value="true"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="salign" value=""><param name="mode" value="slideshow"><embed src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=21982552&#038;access_key=key-adv049fck266gx0onkr&#038;page=1&#038;version=1&#038;viewMode=slideshow" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_289079632667751_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" mode="slideshow" height="500" width="100%"></embed></object>	</p>
]]></content:encoded>
			<wfw:commentRss>http://www.learnbydoingit.org/2009/11/wordpress-programming-visual-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.714 seconds. --><!-- Page not cached by WP Super Cache. Could not get mutex lock. -->
