<?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>Mental Masturbation, Musings, and Methods &#187; Miscellanious</title>
	<atom:link href="http://blog.alexbeutel.com/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alexbeutel.com</link>
	<description>The Mind of Alex Beutel</description>
	<lastBuildDate>Mon, 02 Aug 2010 06:20:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Convert Quicktime Screencasts with FFmpeg</title>
		<link>http://blog.alexbeutel.com/302/convert-quicktime-screencasts-with-ffmpeg/</link>
		<comments>http://blog.alexbeutel.com/302/convert-quicktime-screencasts-with-ffmpeg/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 00:42:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Miscellanious]]></category>

		<guid isPermaLink="false">http://blog.alexbeutel.com/?p=302</guid>
		<description><![CDATA[I was trying to convert a Quicktime screencast (saved as .mov) to a format my professor could more readily use. For those who don&#8217;t know, FFmpeg is an amazing tool with a wide range of applications, including converting between video formats and ripping audio from a video. Anyway, this took me a little to get [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to convert a Quicktime screencast (saved as .mov) to a format my professor could more readily use.  For those who don&#8217;t know, <a href='http://www.ffmpeg.org/' target="_blank">FFmpeg</a> is an amazing tool with a wide range of applications, including converting between video formats and ripping audio from a video.  Anyway, this took me a little to get quite right (and maintain output quality) so I thought I&#8217;d post it here both for others and a place to save it for myself.  Although it looks really simple in hindsight:</p>
<pre>ffmpeg -i screencast.mov -f avi -vcodec mpeg4 -sameq -ac 2 -ab 128k screencast.avi</pre>
<p>It is necessary to specify a video codec because AVI can be used with multiple codecs.  To maintain video quality use -sameq.  When converting screencasts, it may also be useful to crop out parts of the screen since Quicktime only does full screen capture.  For this, you can use the -croptop, -cropbottom, -cropright, and -cropleft arguments.  Last, make sure the arguments come <i>before</i> the output file; otherwise they are not applied.</p>
<p>Maybe I will later do a more full post of the different ways I use FFmpeg.  But for now, that is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/302/convert-quicktime-screencasts-with-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hilbert Curve with the Canvas element</title>
		<link>http://blog.alexbeutel.com/247/hilbert-curve-with-the-canvas-element/</link>
		<comments>http://blog.alexbeutel.com/247/hilbert-curve-with-the-canvas-element/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 22:56:48 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Miscellanious]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=247</guid>
		<description><![CDATA[For my discrete math course (CPS 102) this semester, I had to create a space-filling curve for one of my homework assignments. I decided to take this as an opportunity to play with HTML5&#8242;s canvas element since I&#8217;ve yet to had a legitimate use for it in any programming yet. I think it came out [...]]]></description>
			<content:encoded><![CDATA[<p>For my discrete math course (CPS 102) this semester, I had to create a space-filling curve for one of my homework assignments.  I decided to take this as an opportunity to play with HTML5&#8242;s canvas element since I&#8217;ve yet to had a legitimate use for it in any programming yet.  I think it came out decently well (and it&#8217;s kind of fun to play with), so I thought I&#8217;d post it.  Here is a link to it on my Duke account <a href="http://duke.edu/~amb79/fillSpace.html" target="_blank">http://duke.edu/~amb79/fillSpace.html</a> Like I said, nothing huge but fun to program and cool to watch.</p>
<p>I am on fall break now, and will be spending the weekend at home.  Hopefully I&#8217;ll do something cool while I&#8217;m home and will post if anything comes out good.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/247/hilbert-curve-with-the-canvas-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Aliasing of Plane Propellers in Photos and Video</title>
		<link>http://blog.alexbeutel.com/135/image-aliasing-of-plane-propellers-in-photos-and-video/</link>
		<comments>http://blog.alexbeutel.com/135/image-aliasing-of-plane-propellers-in-photos-and-video/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 05:33:27 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Math]]></category>
		<category><![CDATA[Miscellanious]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=135</guid>
		<description><![CDATA[Recently, while flying between Durham and New York, I decided to take a picture of the propeller during take off.  I don&#8217;t know what prompted to me to do this, but when I pointed my iPhone camera at the propeller out my window I noticed very odd pattens.  I took multiple pictures throughout the flight [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, while flying between Durham and New York, I decided to take a picture of the propeller during take off.  I don&#8217;t know what prompted to me to do this, but when I pointed my iPhone camera at the propeller out my window I noticed very odd pattens.  I took multiple pictures throughout the flight with my iPhone, and in some cases at the same time took pictures/video with my Canon camera.  To clarify the specs of the two cameras: I have an iPhone 3G (8 GB) and a Canon SD700 IS.  As you will see in the pictures below, the iPhone&#8217;s picture simply makes no sense with the blades appearing to be disconnected vertical lines.  The photo from the Canon seems reasonable, but as you will see in the video the propeller appears to be going fairly slowly, when in real life all I could see was a blur because of how fast it was moving.</p>
<div style='display:block; width: 100%;'>
<div style='float:left;'>
<div id="attachment_155" class="wp-caption alignnone" style="width: 193px"><a href="http://blog.ambmediadesign.com/wp-content/uploads/2009/07/IMG_0140.png" class='thickbox' rel='propellers' title='Plane Propeller Photo from iPhone 3G'><img class="size-medium wp-image-155  " title="Plane Propeller Photo from iPhone 3G" src="http://blog.ambmediadesign.com/wp-content/uploads/2009/07/IMG_0140-225x300.png" alt="Plane Propeller Photo from iPhone 3G" width="183" height="243" /></a><p class="wp-caption-text">Plane Propeller Photo from iPhone 3G</p></div>
</div>
<div style='float:left;'>
<div id="attachment_134" class="wp-caption alignnone" style="width: 187px"><a href="http://blog.ambmediadesign.com/wp-content/uploads/2009/07/IMG_2451.JPG" class='thickbox' rel='propellers' title='Canon SD700 IS Plane Propeller Photo'><img class="size-medium wp-image-134     " title="Canon SD700 IS Plane Propeller Photo" src="http://blog.ambmediadesign.com/wp-content/uploads/2009/07/IMG_2451-300x225.jpg" alt="Canon SD700 IS Plane Propeller Photo" width="177" height="134" /></a><p class="wp-caption-text">Canon SD700 IS Plane Propeller Photo</p></div>
</div>
<div style='float:left;'><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="265" 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/lTqwBKeKnLM&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="320" height="265" src="http://www.youtube.com/v/lTqwBKeKnLM&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
</div>
<div style='clear:both;'></div>
<div style='padding-bottom: 5px'><b>Update:</b> here is a video taken from my iPhone 3G of the propeller.<br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/ltMPMz37VPk&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ltMPMz37VPk&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
</div>
<div style='display:block;clear:both;'>
This got me thinking about why the images looked the way they did.  I assumed they were related to frame rate and as a result wondered if I could work backwards to find the speed of the propeller.  When I got back to Duke, I talked it over with some of my friends.  We discussed one theory that explained the slow spinning in the video from my Canon.  I later found out is similar to the Wagon-wheel effect, and will go into more detail on this later.  We also discussed possible distortions and other possible causes but couldn&#8217;t figure out exactly what was causing the odd pattern in the iPhone photo.  Eventually, I decided to search around the internet and found that I was <a href="http://www.flickr.com/photos/jerlich/sets/72157614852342118/">not the only one</a> to notice this oddity.  I also stumbled upon <a href='http://scalarmotion.wordpress.com/2009/03/15/propeller-image-aliasing/' target='_blank'>this great post</a> explaining clearly and graphically why the iPhone photo looks the way it does.  In short, most cameras save pixels from all parts of the lens at once, while the iPhone camera goes through the lens saving pixels linearly over time, similar to watching a scanner save the page of a book.  <strong>(If anyone has an iPhone 3GS and can snap a picture and/or video of a propeller, please let me know.  I&#8217;m very intrested to see if Apple&#8217;s upgraded camera still behaves this way.  Please let me know if you find out.)</strong>  The writer of the post also demonstrated this in a cool video made from a <a href="http://blog.alexbeutel.com/propeller/originalPropeller.m">Matlab script</a>:
</div>
<div>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/T055cp-JFUA&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/T055cp-JFUA&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
</div>
<div style='padding-top: 10px; padding-bottom:10px;'>
Personally, I think this is really cool so I decided to play around with it some more.  As I mentioned earlier, my friends and I had discussed the wagon-wheel effect or the stroboscopic effect, so I thought I&#8217;d modify his script to demonstrate it more clearly since the Wikipedia pages on the <a href='http://en.wikipedia.org/wiki/Wagon-wheel_effect' target='_blank'>two</a> <a href='http://en.wikipedia.org/wiki/Stroboscopic_effect' target='_blank'>topics</a> both seemed a bit lacking.  First, it is necessary to explain the general concept.  The stroboscopic effect explains if you only see flashes or quick individual frames of a moving object at regular intervals you can get a distorted view of the motion, especially if the motion of the object that is being watched is cyclic or has a frequency.  The relationship between the frequency of the flashes or frames and the frequency of the motion is what determines the perceived motion.  The most common case of this is seeing a wheel which you know to be rolling forward, but it looks to be spinning backwards slowly.  I modified the previous Matlab code to create a basic example of this with the propeller (download the code <a href="http://blog.alexbeutel.com/propeller/propeller.m">here</a>).  As you will see, the propeller on the left will spin counterclockwise at a moderate speed and every 8 frames the image on the right will update with a copy of the image on the left.  This out of sync updating will make the propeller on the right appear to rotate clockwise.</div>
<div id="matlabDemoVideo" style="display: none;position: absolute;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="1130" height="516" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="/propeller/matlab demo2.swf" /><embed type="application/x-shockwave-flash" width="1130" height="516" src="/propeller/matlab demo2.swf"></embed></object></div>
<div>
<div id="attachment_169" class="wp-caption alignnone" style="width: 510px"><a class="thickbox" href="#TB_inline?height=516&#038;width=1130&#038;inlineId=matlabDemoVideo"><img src="http://blog.ambmediadesign.com/wp-content/uploads/2009/07/matlab-screenshot.png" alt="Click the image to view the video" title="Screenshot of Wagon-wheel video" width="500" class="size-full wp-image-169"  style='padding: 15px; width: 500px; cursor: pointer;' onmouseover='this.style.backgroundColor="#333";' onmouseout='this.style.backgroundColor="";' /></a><p class="wp-caption-text">Click the image to view the video</p></div></div>
<div style='padding-top:10px;'>
I also decided to show this more mathematically by plotting these movements in Mathematica.  In the following examples I graph both the y-coordinate of the tip of the propeller and the angle that the blade has rotated in radians.  In the graph of y the coordinate, there are three sinusoidal functions representing 3 propellers, each offset from the previous by 120 degrees (thus equally spaced).  These lines and their colors correspond to the colored lines on the radian vs. time graph.  The red lines mark a flash or frame and the dot on the line shows the top-most propeller.  As you vary the spacing of the lines and thus change the frame rate, you can see the propeller will appear to stay still, then go backwards, then flip back and forth with no perceived motion, then go forwards, until it appears to stand still again.  Below are pictures showing each of these stages, followed by a video fluidly showing these variations.
</div>
<div>
Here is the propeller appearing to stand still.  This is due to the fact that the spacing of the frames is twice the period.<br />
<a href="http://blog.alexbeutel.com/propeller/still.png" target='_blank' class='thickbox' rel='mathematica' title='Propeller appearing to stand still'><img src='/propeller/still.png' style='width: 500px;'/></a><br />
The graphs below show the propeller appearing to go backwards.  Here we see that the frame rate is just below two periods of the propeller.  The downward slope on the radian graph is a simple quick way to see the direction of the propeller rotation.<br />
<a href="http://blog.alexbeutel.com/propeller/backwards.png" target='_blank' class='thickbox' rel='mathematica' title='Propeller appearing to go backwards'><img src='/propeller/backwards.png' style='width: 500px;' /></a><br />
Propeller appearing to flip repeatedly:<br />
<a href="http://blog.alexbeutel.com/propeller/flip.png" target='_blank' class='thickbox' rel='mathematica' title='Propeller appearing to flip repeatedly'><img src='/propeller/flip.png' style='width: 500px;' /></a><br />
This example shows the propeller appearing to rotate forwards.  Again, the upwards slope of the points on the radian graph is an easy way to see the direction of rotation.<br />
<a href="http://blog.alexbeutel.com/propeller/forwards.png" target='_blank' class="thickbox" rel='mathematica' title='Propeller appearing to rotate forwards'><img src='/propeller/forwards.png' style='width: 500px;' /></a><br />
Last, here is the propeller appearing to stand still again.  Unlike the first case of the propeller standing still, the spacing of the frames is not a multiple of the period.  Rather, we see here that it is a multiple of 1/3 the period.  It is only necessary that the spacing be a multiple of 1/3 the period because there are three blades and the blades are indistinguishable.<br />
<a href="http://blog.alexbeutel.com/propeller/still2.png" target='_blank' class='thickbox' rel='mathematica' title='Propeller appearing to stand still again'><img src='/propeller/still2.png' style='width: 500px;' /></a></p>
<div style='padding-top: 10px; padding-bottom:10px;'>
And finally, putting it all together:
</div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="340" height="475" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="/propeller/graphs.swf" /><embed type="application/x-shockwave-flash" width="340" height="475" src="/propeller/graphs.swf"></embed></object>
</div>
<p>The Mathematica code can be viewed <a href="http://gist.github.com/151142" target='_blank'>here</a> or downloaded <a href="http://blog.alexbeutel.com/propeller/propeller.nb">here</a>, and a printout of the entire Mathematica worksheet can be found <a href="http://blog.alexbeutel.com/propeller/mathematica printout.pdf">here</a>.  Last, if one had a camera which could vary the frame rate just so slightly as to find two nearest frame rates to show the propeller standing still, the frequency of the propeller could be calculated as shown below.</p>
<div style='padding-bottom: 15px;'>
<img src='/propeller/calc1-1.png' />
</div>
<p>As for the iPhone picture, a single image (and knowing the number of blades) is enough to roughly approximate the speed of the propeller as shown below.</p>
<div style='padding-bottom: 15px;'>
<img src='/propeller/calc2-2.png' />
</div>
<p>However, just as a warning both of these are back of the envelope calculations and it is very possible I made a mistake (if so please let me know).  That is all for now.  Nothing ground breaking, but as the title suggests, it was a good chance for some mental masturbation, playing with Mathematica and Matlab.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/135/image-aliasing-of-plane-propellers-in-photos-and-video/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Duke LDAP on the iPhone</title>
		<link>http://blog.alexbeutel.com/113/duke-ldap-on-the-iphone/</link>
		<comments>http://blog.alexbeutel.com/113/duke-ldap-on-the-iphone/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 23:11:41 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Duke]]></category>
		<category><![CDATA[Miscellanious]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=113</guid>
		<description><![CDATA[I got an e-mail this morning from someone who saw my post on Twitter about using LDAP on the iPhone here at Duke.  The person said they followed the tutorial but couldn&#8217;t quite get it to work.  So I figured it may be useful to post a few quick instructions on setting it up.  As [...]]]></description>
			<content:encoded><![CDATA[<p>I got an e-mail this morning from someone who saw my <a href="http://twitter.com/alexbeutel/status/2691509584" target="_blank">post</a> on Twitter about using LDAP on the iPhone here at Duke.  The person said they followed the tutorial but couldn&#8217;t quite get it to work.  So I figured it may be useful to post a few quick instructions on setting it up.  As the post on Twitter explains, the basic instructions for getting to adding an LDAP account can be viewed <a href="http://blogs.sun.com/chienr/entry/configuring_ldap_on_iphone_3" target="_blank">here</a> and Duke&#8217;s LDAP server settings can be found <a href="http://www.oit.duke.edu/email-accounts/dukemail/how-to/ldap.php" target="_blank">here</a>.  Once you are set to add the LDAP account, simply set the server to ldap.duke.edu, no need for a username or password.  Once you click next you will want to turn off SSL and change the Search settings for duke,edu to have a base value of &#8220;ou=People,dc=duke,dc=edu&#8221; (leave the scope at subtree).  And that&#8217;s it.  To use it, which turned out to be the issue for the person emailing me, go to write a new email and start to type in the name of the person to search.  You should see a throbber show up at the top of your screen, showing that it is connecting to the server.  There is a bit of a lag but it should eventually return the contacts for people by that name.  Below are some pictures of the settings and the search.  Let me know if you run into any issues.</p>
<div style='float:left; padding-bottom: 10px; padding-right: 20px;'><a href='http://blog.ambmediadesign.com/wp-content/uploads/2009/07/ldap1.png' target='_blank' class='thickbox' rel='ldap' title='Main Settings'><img src='http://blog.ambmediadesign.com/wp-content/uploads/2009/07/ldap1.png' title='Main Settings' style='height: 350px;' /></a></div>
<div style='float:left;'><a href='http://blog.ambmediadesign.com/wp-content/uploads/2009/07/ldap2.png' target="_blank" class='thickbox' rel='ldap' title='Search Settings'><img src='http://blog.ambmediadesign.com/wp-content/uploads/2009/07/ldap2.png' title='Search Settings' style='padding-bottom: 10px; height: 350px;' /></a></div>
<div style='clear:both;'></div>
<p><a href='http://blog.ambmediadesign.com/wp-content/uploads/2009/07/ldap4.png' target='_blank' class='thickbox' rel='ldap' title='Email Search'><img src='http://blog.ambmediadesign.com/wp-content/uploads/2009/07/ldap4.png' title='Email Search' style='height: 350px;' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/113/duke-ldap-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chromium on OS X</title>
		<link>http://blog.alexbeutel.com/40/chromium-on-os-x/</link>
		<comments>http://blog.alexbeutel.com/40/chromium-on-os-x/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 06:43:48 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Miscellanious]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=40</guid>
		<description><![CDATA[I tried this over break but didn&#8217;t have enough room on my internal hard drive, but now that I&#8217;m back at school downloaded the source for chromium to my external (took up about 10 gig) and built it (about another 5 gig).  And it actually runs!  Its definitely still in development, crashes on all sorts [...]]]></description>
			<content:encoded><![CDATA[<p>I tried this over break but didn&#8217;t have enough room on my internal hard drive, but now that I&#8217;m back at school downloaded the source for chromium to my external (took up about 10 gig) and built it (about another 5 gig).  And it actually runs!  Its definitely still in development, crashes on all sorts of little things, but its cool to see it progressing and it is definitely lightweight right now.  Odd thing you&#8217;ll notice in the screenshot is that half of the Chromium processes in Activity manager show as being Not Responding.  Anyway, here&#8217;s a screenshot just because I thought it was cool.  Click for full size.</p>
<p><a href="http://blog.ambmediadesign.com/wp-content/uploads/2009/03/chromium-on-osx.png"><img class="alignnone size-medium wp-image-41" title="chromium-on-osx" src="http://blog.ambmediadesign.com/wp-content/uploads/2009/03/chromium-on-osx-300x187.png" alt="chromium-on-osx" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/40/chromium-on-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Catching up</title>
		<link>http://blog.alexbeutel.com/32/catching-up/</link>
		<comments>http://blog.alexbeutel.com/32/catching-up/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 19:32:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Miscellanious]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=32</guid>
		<description><![CDATA[Haven&#8217;t posted in a while and having some free time for the first time in a long while, I thought I&#8217;d write something.  After having a few friends becoming obsessed with Twitter at The Chronicle (Duke&#8217;s student newspaper that I am partially involved with &#8211; I&#8217;ll write about this at some point), I can&#8217;t bring [...]]]></description>
			<content:encoded><![CDATA[<p>Haven&#8217;t posted in a while and having some free time for the first time in a long while, I thought I&#8217;d write something.  After having a few friends becoming obsessed with Twitter at The Chronicle (Duke&#8217;s student newspaper that I am partially involved with &#8211; I&#8217;ll write about this at some point), I can&#8217;t bring myself to write a full blown 140 character tweet but should be able to write a good few paragraphs here.  Anyway, I think I&#8217;ll delve a little more than I have previously into my academics.  I am currently taking Physics 181 (Intermediate Mechanics), Physics 176 (Thermal Physics), Math 107 (Linear Algebra and DiffEq), CS 104 (Comp. organization, essentially assembly), and cultural anthropology 181, which is about musical protests.  Interesting mixture of courses and constantly changing my view on the different subjects.  I have to declare my major within the next two weeks and am planning on officially declaring as a double BS in physics and computer science.  However, I am not sure what that will actually result in, as I would like to shape my CS degree to be more oriented towards CS theory and less on systems and large projects.  On the other hand, shaping my major this way means I would need to either not get an official CS degree although I&#8217;d have more than enough courses, or getting an interdepartmental major, which the DUS of physics seems to be very against.  Neither seems ideal, but I figure I&#8217;ll take what interests me and what helps me further my work and knowledge, and let that philosophy take me where it may; I figure it can&#8217;t lead me that far astray, especially if I don&#8217;t even know what path I am straying from.  Anyway, that&#8217;s where I am at right now.</p>
<p>Yesterday at work (my job with Duke OIT) we finished up my code for the new version of Duke&#8217;s online AFS interface &#8211; <a title="Duke Webfiles" href="http://webfiles.duke.edu" target="_blank">Webfiles</a>, which should be tested and rolled out in coming weeks.  I believe we will be making it open source, which I think is exciting.  This led me to my next endeavor today, which was to finally install Git and integrate it with Textmate.  As usual when I do small new things like this that change what I am used to, I realize how little I know about some parts of computing, especially Unix.  I am thinking about forcing myself to use Vim for a little while and properly learning Unix.  New great command:<code> which</code>.  After installing things with macports like mysql or git, and with my not great knowledge of Unix systems  this command is really helpful for integrating it with the rest of my OS X installation (such as letting Textmate plug into it).</p>
<p>Ironic, I know that I started off the post explaining I don&#8217;t like CS systems courses and finish the post by explaining the cool new Unix command I learned, but I think I am comfortable with that paradox.  Random Unix commands and little tidbits like that seem more like something I will continue to learn in practice, not something I should spend a semester on in one of my few semesters left here.  Anyway, this was a nice exercise in public introspection.   As I always say, I&#8217;ll try to write soon; hopefully I&#8217;ll actually do that one of these times.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/32/catching-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Skype and Verizon Wireless</title>
		<link>http://blog.alexbeutel.com/27/skype-and-verizon-wireless/</link>
		<comments>http://blog.alexbeutel.com/27/skype-and-verizon-wireless/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 20:24:28 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Miscellanious]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=27</guid>
		<description><![CDATA[At the start of this break I was frustrated with the fact that my house is a dead zone for Verizon and as a result I missed any and all calls while I was home. To deal with this I decided to finally properly configure Skype to work in sync with my cell phone. I [...]]]></description>
			<content:encoded><![CDATA[<p>At the start of this break I was frustrated with the fact that my house is a dead zone for Verizon and as a result I missed any and all calls while I was home.  To deal with this I decided to finally properly configure Skype to work in sync with my cell phone.  I forked over $20 and got a 3 month plan for unlimited calling through Skype, a phone number for my account and voicemail.  I also set it up to display my cell phone number when I call from Skype so as not confuse people.  To have it work in sync literally all I had to do is dial *72 followed by my Skype phone number and all calls are automatically forwarded to my computer.  And when I leave the house all I have to do to have calls go back to my cell is dial *73<br />
and everything goes back to normal.  It is simple and it works.</p>
<p>To my surprise just a few days layer I switched to AT&#038;T and got an iPhone (from which I am currently typing this post).  So service in the house is no longer an issue, but I still occasionally use the Skype calling.  Overall, I definitely recomend this Skype configuration if service is an issue for you.  I will post more about the iphone soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/27/skype-and-verizon-wireless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Break from Studying</title>
		<link>http://blog.alexbeutel.com/23/break-from-studying/</link>
		<comments>http://blog.alexbeutel.com/23/break-from-studying/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 22:28:58 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Duke]]></category>
		<category><![CDATA[Miscellanious]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/?p=23</guid>
		<description><![CDATA[In the middle of studying for some finals, I thought I&#8217;d take a break, install the new WordPress 2.7.  Of course, this required I actually write a blog post to give the new version a legitimate spin.  So just wanted to post that my new favorite command (after rsync) has been wget, installed via macports, [...]]]></description>
			<content:encoded><![CDATA[<p>In the middle of studying for some finals, I thought I&#8217;d take a break, install the new WordPress 2.7.  Of course, this required I actually write a blog post to give the new version a legitimate spin.  So just wanted to post that my new favorite command (after rsync) has been wget, installed via macports, which I used to download all of my notes for a few classes off my teachers&#8217; websites.  Again, another small amazement in Unix, and thus OS X.  Maybe over break I&#8217;ll pick up a book and really learn its full potential.  Anyway, I&#8217;ll try to write a few more blog posts over break with whatever I&#8217;m working on or any other exciting news.  Back to studying.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/23/break-from-studying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://blog.alexbeutel.com/9/welcome/</link>
		<comments>http://blog.alexbeutel.com/9/welcome/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 19:30:02 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Miscellanious]]></category>

		<guid isPermaLink="false">http://blog.ambmediadesign.com/9/welcome/</guid>
		<description><![CDATA[So I decided to start a blog, mostly just to post things I find while wasting time on the internet; don&#8217;t expect to read much about my life, it isn&#8217;t that exciting.  I have a good amount of catching up to do as far as posting things I find interesting online, so hopefully in the [...]]]></description>
			<content:encoded><![CDATA[<p>So I decided to start a blog, mostly just to post things I find while wasting time on the internet; don&#8217;t expect to read much about my life, it isn&#8217;t that exciting.  I have a good amount of catching up to do as far as posting things I find interesting online, so hopefully in the next few days, assuming I don&#8217;t become completely consumed by my math final, I will post some interesting things.  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexbeutel.com/9/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
