<?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>bafoontecha.com</title>
	<atom:link href="http://bafoontecha.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bafoontecha.com</link>
	<description>theory meets application.</description>
	<lastBuildDate>Fri, 22 Jan 2010 16:00:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A WIP</title>
		<link>http://bafoontecha.com/2009/08/16/a-wip/</link>
		<comments>http://bafoontecha.com/2009/08/16/a-wip/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 20:15:26 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=1062</guid>
		<description><![CDATA[Inspired by The Piano Teacher.
]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a href="http://www.imdb.com/title/tt0254686/">The Piano Teacher</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/08/16/a-wip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://noise.chrisarges.net/wp-content/uploads/2009/08/musicbox.mp3" length="1158154" type="audio/mpeg" />
		</item>
		<item>
		<title>Introducing Recon.</title>
		<link>http://bafoontecha.com/2009/08/10/introducing-recon/</link>
		<comments>http://bafoontecha.com/2009/08/10/introducing-recon/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 07:49:59 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=1182</guid>
		<description><![CDATA[Need a schmancy, new GUI for Nmap?  Got Leopard?  Give Recon a try.  

Recon is open source.  This means I want you to help me improve it.  To help you get started, here&#8217;s an overview of the Recon object model.
The primary object controller is MyDocument (Recon started life as an [...]]]></description>
			<content:encoded><![CDATA[<a href="http://bafoontecha.com/recon/"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/reconwithwall-darker-webpage.png" alt="Recon." title="Recon." width="440" height="350" class="size-full wp-image-1183" /></a>
<p>Need a schmancy, new GUI for Nmap?  Got Leopard?  Give <a href="http://bafoontecha.com/recon">Recon</a> a try.  </p>
<p><span id="more-1182"></span></p>
<p>Recon is <a href="http://code.google.com/p/recon-mac/">open source</a>.  This means I want you to help me improve it.  To help you get started, here&#8217;s an overview of the Recon object model.</p>
<div id="attachment_1190" class="wp-caption aligncenter" style="width: 710px"><a href="http://bafoontecha.com/wp-content/uploads/2009/08/Recon-Object-Graph.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/Recon-Object-Graph.png" alt="Recon Object Graph" title="Recon Object Graph" width="700" height="511" class="size-full wp-image-1190" /></a><p class="wp-caption-text">Fig. 1: Recon Object Graph</p></div>
<p>The primary object controller is MyDocument (Recon started life as an Core Data Persistent Document.  It&#8217;s <b>windowControllerDidLoadNib:</b> is effectively your int main().</p>
<p>MyDocument configures the Core Data persistent store, and instantiates a SessionManager object.</p>
<div id="attachment_1208" class="wp-caption aligncenter" style="width: 710px"><a href="http://bafoontecha.com/wp-content/uploads/2009/08/recon-sessionmanager-run.jpg"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/recon-sessionmanager-run.jpg" alt="SessionManager Interaction Through Session Drawer" title="SessionManager Interaction Through Session Drawer" width="700" height="246" class="size-full wp-image-1208" /></a><p class="wp-caption-text">Fig. 2: SessionManager Interaction Through Session Drawer</p></div>
<p>The SessionManager (SM) object creates a SessionController queue and allows the user to Run/Abort/Delete SessionController objects residing in the queue.</p>
<div id="attachment_1212" class="wp-caption aligncenter" style="width: 710px"><a href="http://bafoontecha.com/wp-content/uploads/2009/08/recon-sessionmanager-queue1.jpg"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/recon-sessionmanager-queue1.jpg" alt="Fig 3: SessionManager Queue Controllers" title="Fig 3: SessionManager Queue Controllers" width="700" height="224" class="size-full wp-image-1212" /></a><p class="wp-caption-text">Fig 3: SessionManager Queue Controllers</p></div>
<p>After the user selects a profile and enters a target, they click the <b>queueSession:</b> button.  The SessionManager then instantiates a new SessionController (SC) object and adds it to the queue.</p>
<p>Upon instantiate, the SessionController, itself, instantiates an:</p>
<ul>
<li>ArgumentListGenerator, which converts the selected scan profile into a string of Nmap arguments flags.</li>
<li>NmapController, which instantiates an NSTask with the user-specified nmap binary and argument string from above.</li>
<li>XMLController, which parses the Nmap output XML file, and populates the Core Data Store with the results.</li>
</ul>
<p>The SC handles the sequence of events which invokes its three sub-controllers, and handles any errors that may occur.</p>
<p>The SessionControllers sit dormant in the SM queue, waiting for a signal to actually perform the scan.</p>
<div id="attachment_1215" class="wp-caption aligncenter" style="width: 710px"><a href="http://bafoontecha.com/wp-content/uploads/2009/08/recon-sessionmanager-processqueue1.jpg"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/recon-sessionmanager-processqueue1.jpg" alt="Fig 4: SessionManager processQueue:" title="Fig 4: SessionManager processQueue:" width="700" height="224" class="size-full wp-image-1215" /></a><p class="wp-caption-text">Fig 4: SessionManager processQueue:</p></div>
<p>When the user chooses to process the session queue, the <b>processQueue:</b> method is envoked in the SessionManager.  The SM iterates through the SessionController queue, executing a <b>startScan:</b> in FIFO fashion.</p>
<p>Each SC tells its corresponding NmapController (NC) to <b>startScan:</b> and waits for a notification indicating that the NC&#8217;s NSTask has returned.  If the scan went well, a <b>successfulRunNotification:</b> is sent back to the appropriate SessionController.</p>
<p>If an SC receives a <b>successfulRunNotification:</b>, it reads the nmap output file path from the NC returned in the <b>[notification object]</b>. This output file path is then passed to an XMLController, which parses the output and inserts the scan results into the Core Data Store.</p>
<p>The SC then sends a <b>successfulRunNotification:</b> to the SessionManager, which dequeues the SessionController.</p>
<p>The functional flow is fairly straightforward for other interaction cases.</p>
<div id="attachment_1191" class="wp-caption aligncenter" style="width: 651px"><a href="http://bafoontecha.com/wp-content/uploads/2009/08/Recon-Core-Data-Object-Model.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/Recon-Core-Data-Object-Model-641x1024.png" alt="Recon Core Data Object Model" title="Recon Core Data Object Model" width="641" height="1024" class="size-large wp-image-1191" /></a><p class="wp-caption-text">Recon Core Data Object Model</p></div>
<p>Recon&#8217;s data model is stored using a Core Data Store.  </p>
<p>Check out the source code at: <a href="http://code.google.com/p/recon-mac/">recon @ googlecode.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/08/10/introducing-recon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring 2D Convolution</title>
		<link>http://bafoontecha.com/2009/07/03/exploring-2d-convolution/</link>
		<comments>http://bafoontecha.com/2009/07/03/exploring-2d-convolution/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 02:48:06 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=1200</guid>
		<description><![CDATA[Here&#8217;s a quick-and-dirty little tool which allows you to explore the effects of various convolution kernels on an image.
Much thanks to: From a remote village
Download: Convolution Explorer.zip [36 KB]
]]></description>
			<content:encoded><![CDATA[<div id="attachment_1201" class="wp-caption aligncenter" style="width: 430px"><a href="http://bafoontecha.com/wp-content/uploads/2009/08/convolution_explorer.jpg"><img src="http://bafoontecha.com/wp-content/uploads/2009/08/convolution_explorer.jpg" alt="Convolution Explorer" title="Convolution Explorer" width="420" height="242" class="size-full wp-image-1201" /></a><p class="wp-caption-text">Convolution Explorer</p></div>
<p>Here&#8217;s a quick-and-dirty little tool which allows you to explore the effects of various convolution kernels on an image.</p>
<p>Much thanks to: <a href="http://fromaremotevillage.blogspot.com/2007/03/cocoa-application-with-custom-core_05.html">From a remote village</a></p>
<p>Download: <a href="http://bafoontecha.com/ConvolutionExplorer.zip">Convolution Explorer.zip [36 KB]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/07/03/exploring-2d-convolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>d</title>
		<link>http://bafoontecha.com/2009/06/03/d/</link>
		<comments>http://bafoontecha.com/2009/06/03/d/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 03:24:55 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=1048</guid>
		<description><![CDATA[d
]]></description>
			<content:encoded><![CDATA[<p>d</p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/06/03/d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shuffling, simulated.</title>
		<link>http://bafoontecha.com/2009/04/28/shuffling-simulated/</link>
		<comments>http://bafoontecha.com/2009/04/28/shuffling-simulated/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:51:32 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=1018</guid>
		<description><![CDATA[
I whipped up this applet to help visualize the evolution of card ordering in a shuffled deck.  The shuffling technique simulated is the standard &#8220;bridged&#8221; type.  
Card shuffling can be broken down into three seperate steps:
1. Break deck into two sub-decks.
2. Merge sub-decks into main deck.
3. Deal cards to players

Step 3 is typically [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1065" class="wp-caption aligncenter" style="width: 434px"><a href="http://bafoontecha.com/2009/04/28/shuffling-simulated/"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/shufflesim-screenie.png" alt="ShuffleSim Screenie" title="ShuffleSim Screenie" width="424" height="295" class="size-full wp-image-1065" /></a><p class="wp-caption-text">ShuffleSim Screenie</p></div>
<p><span id="more-1018"></span><br />
<div id="attachment_1067" class="wp-caption aligncenter" style="width: 690px"><a href="http://bafoontecha.com/wp-content/uploads/2009/04/shufflesim-fullscreenie.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/shufflesim-fullscreenie.png" alt="ShuffleSim Full Screenie" title="ShuffleSim Full Screenie" width="680" height="653" class="size-full wp-image-1067" /></a><p class="wp-caption-text">ShuffleSim Full Screenie</p></div></p>
<p>I whipped up this applet to help visualize the evolution of card ordering in a shuffled deck.  The shuffling technique simulated is the standard &#8220;bridged&#8221; type.  <br/><br />
Card shuffling can be broken down into three seperate steps:<br />
1. Break deck into two sub-decks.<br />
2. Merge sub-decks into main deck.<br />
3. Deal cards to players<br />
<br/><br />
Step 3 is typically deterministic, but randomness can be introduced in steps 1 &#038; 2 using the <b>Split RND</b> and <b>Merge RND</b>, respectively. <br/></p>
<p>Source code: <a href="http://bafoontecha.com/ShuffleSim/shufflesim/shufflesim.pde">shufflesim</a> <a href="http://bafoontecha.com/ShuffleSim/shufflesim/Card.pde">Card</a> <a href="http://bafoontecha.com/ShuffleSim/shufflesim/Deck.pde">Deck</a> <a href="http://bafoontecha.com/ShuffleSim/shufflesim/Hand.pde">Hand</a> <a href="http://bafoontecha.com/ShuffleSim/shufflesim/Plot.pde">Plot</a><br />
Binaries: <a href="http://bafoontecha.com/ShuffleSim/shufflesim/shufflesim-binaries.zip">shufflesim-binaries.zip</a> [2 MB]</p>
<p>
Built with <a href="http://processing.org" title="Processing.org">Processing</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/04/28/shuffling-simulated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check out GeoGebra</title>
		<link>http://bafoontecha.com/2009/04/10/check-out-geogebra/</link>
		<comments>http://bafoontecha.com/2009/04/10/check-out-geogebra/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 15:11:43 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=981</guid>
		<description><![CDATA[I always keep an eye out for software that makes diagramming easier, and the other day I came across GeoGebra.  GeoGebra is a fantastic, free (as in freedom), Java-based mathematical illustration tool that includes support for plotting functions.  
Similar to Mathematica Player, diagrams are fully interactive and can be exported as embeddable Java [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_982" class="wp-caption aligncenter" style="width: 324px"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/ggb_banner.png" alt="GeoGebra" title="GeoGebra" width="314" height="50" class="size-full wp-image-982" /><p class="wp-caption-text">GeoGebra</p></div>
<p>I always keep an eye out for software that makes diagramming easier, and the other day I came across GeoGebra.  <a href="http://www.geogebra.org/cms/">GeoGebra</a> is a fantastic, free (as in freedom), Java-based mathematical illustration tool that includes support for plotting functions.  </p>
<p>Similar to <a href="http://demonstrations.wolfram.com/">Mathematica Player</a>, diagrams are fully interactive and can be exported as embeddable Java applets.</p>
<p>Perhaps best of all, no installation is required.  GeoGebra launches through <a href="http://www.geogebra.org/cms/index.php?option=com_content&#038;task=blogcategory&#038;id=70&#038;Itemid=57">WebStart</a>.  </p>
<p>Here are few examples that I whipped up:</p>
<div id="attachment_994" class="wp-caption aligncenter" style="width: 430px"><a href="http://bafoontecha.com/wp-content/uploads/2009/04/index7.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/index7-small.gif" alt="Example 1: Circle Square Screenshot" title="Example 1: Circle Square Screenshot" width="420" height="420" class="size-full wp-image-994" /></a><p class="wp-caption-text">Example 1: Circle Square Screenshot</p></div>
<p><a href="http://bafoontecha.com/geogebra/circle_square.html">Example 1 (Click to Launch Applet)</a><br />
<a href="http://bafoontecha.com/geogebra/circle_square.ggb">Example 1 (Download GeoGebra Project)</a></p>
<p><span id="more-981"></span></p>
<div id="attachment_1000" class="wp-caption aligncenter" style="width: 610px"><a href="http://bafoontecha.com/wp-content/uploads/2009/04/circle_arc.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/circle_arc-small.png" alt="Example 2: Circle Arc Screenshot" title="Example 2: Circle Arc Screenshot" width="600" height="593" class="size-full wp-image-1000" /></a><p class="wp-caption-text">Example 2: Circle Arc Screenshot</p></div>
<p><a href="http://bafoontecha.com/geogebra/circle_arc.html">Example 2: (Click to Launch Applet)</a><br />
<a href="http://bafoontecha.com/geogebra/circle_arc.ggb">Example 2: (Download GeoGebra Project)</a></p>
<div id="attachment_1001" class="wp-caption aligncenter" style="width: 610px"><a href="http://bafoontecha.com/wp-content/uploads/2009/04/fm_modulation.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/fm_modulation-small.gif" alt="Example 3: FM Modulation Screenshot" title="Example 3: FM Modulation Screenshot" width="600" height="389" class="size-full wp-image-1000" /></a><p class="wp-caption-text">Example 3: FM Modulation Screenshot</p></div>
<p><a href="http://bafoontecha.com/geogebra/fm_modulation.html">Example 3: (Click to Launch Applet)</a><br />
<a href="http://bafoontecha.com/geogebra/fm_modulation.ggb">Example 3: (Download GeoGebra Project)</a></p>
<div id="attachment_1002" class="wp-caption aligncenter" style="width: 704px"><a href="http://bafoontecha.com/wp-content/uploads/2009/04/Darboux_integral.png"><img src="http://bafoontecha.com/wp-content/uploads/2009/04/Darboux_integral.png" alt="Example 4: Darboux Integration Screenshot" title="Example 4: Darboux Integration Screenshot" width="694" height="580" class="size-full wp-image-1000" /></a><p class="wp-caption-text">Example 4: Darboux Integration Screenshot</p></div>
<p>An example of <a href="http://en.wikipedia.org/wiki/Darboux_integral">Darboux integrals</a>.</p>
<p><a href="http://bafoontecha.com/geogebra/Darboux_integral.html">Example 4: (Click to Launch Applet)</a><br />
<a href="http://bafoontecha.com/geogebra/Darboux_integral.ggb">Example 4: (Download GeoGebra Project)</a></p>
<p>
More examples can be found on the <a href="http://www.geogebra.org/en/wiki/index.php/English">GeoGebra wiki</a>.</p>
<p>Download the GeoGebra source, <a href="http://www.geogebra.org/source/program/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/04/10/check-out-geogebra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Bohmian mechanics: A dialogue &#8211; Tumulka</title>
		<link>http://bafoontecha.com/2009/03/20/understandingbohmian-mechanics-a-dialogue-tumulka/</link>
		<comments>http://bafoontecha.com/2009/03/20/understandingbohmian-mechanics-a-dialogue-tumulka/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 20:02:28 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=976</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/03/20/understandingbohmian-mechanics-a-dialogue-tumulka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decoherence and the Transition from Quantum to Classical &#8211; Zurek</title>
		<link>http://bafoontecha.com/2009/03/11/decoherence-and-the-transition-from-quantum-to-classical-zurek/</link>
		<comments>http://bafoontecha.com/2009/03/11/decoherence-and-the-transition-from-quantum-to-classical-zurek/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 04:34:11 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=974</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/03/11/decoherence-and-the-transition-from-quantum-to-classical-zurek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Song Exchange beta.</title>
		<link>http://bafoontecha.com/2009/03/07/song-exchange-beta/</link>
		<comments>http://bafoontecha.com/2009/03/07/song-exchange-beta/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 01:35:04 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=952</guid>
		<description><![CDATA[My good friend, Chris Arges, set up a song exchanging site, noise.chrisarges.net.  The intent of the site is a place to post WIPs or beta tracks for your friends to critique and mash-up.
I, myself, ain&#8217;t much of a musician, but I love playing with Ableton Live and Reason, so I composed a few tracks to [...]]]></description>
			<content:encoded><![CDATA[<p>My good friend, <a href="http://chrisarges.net">Chris Arges</a>, set up a song exchanging site, <a href="http://noise.chrisarges.net">noise.chrisarges.net</a>.  The intent of the site is a place to post WIPs or beta tracks for your friends to critique and mash-up.</p>
<p>I, myself, ain&#8217;t much of a musician, but I love playing with <a href="http://www.ableton.com/">Ableton Live</a> and <a href="http://www.propellerheads.se/">Reason</a>, so I composed a few tracks to help get the site going.  Here&#8217;s one of them.</p>
<p><b>(Headphones or a decent pair of speakers, strongly recommended)</b></p>
<p><strong>Mopey Dopey 2.0</strong></p>
<p>Download the source file: <a href="http://noise.chrisarges.net/wp-content/uploads/2009/03/mopeydopey-2.rns">mopeydopey-2.rns</a></p>
<p>and a few hours later, here&#8217;s Chris&#8217;s remix:</p>
<p><strong>Mopey Dopey &#8211; Chris Remix 1</strong><br />
 <br />
And this is why the Internets are simply, awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/03/07/song-exchange-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://noise.chrisarges.net/wp-content/uploads/2009/03/mopeydopey-2.mp3" length="1674488" type="audio/mpeg" />
<enclosure url="http://noise.chrisarges.net/wp-content/uploads/2009/03/da-pianer.mp3" length="1504503" type="audio/mpeg" />
<enclosure url="http://noise.chrisarges.net/wp-content/uploads/2009/03/mopeydopey2-chris.mp3" length="3393864" type="audio/mpeg" />
		</item>
		<item>
		<title>The simplest, and the full derivation of Magnetism</title>
		<link>http://bafoontecha.com/2009/03/05/the-simplest-and-the-full-derivation-of-magnetism/</link>
		<comments>http://bafoontecha.com/2009/03/05/the-simplest-and-the-full-derivation-of-magnetism/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 02:52:55 +0000</pubDate>
		<dc:creator>peddamat</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://bafoontecha.com/?p=950</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bafoontecha.com/2009/03/05/the-simplest-and-the-full-derivation-of-magnetism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
