<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Brock Angelo</title>
	<atom:link href="http://brockangelo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://brockangelo.com</link>
	<description>cool little projects</description>
	<lastBuildDate>Wed, 03 Feb 2010 16:25:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>April Fool&#8217;s Batch File</title>
		<link>http://brockangelo.com/2010/02/03/april-fools-batch-file/</link>
		<comments>http://brockangelo.com/2010/02/03/april-fools-batch-file/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:25:18 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Batch]]></category>
		<category><![CDATA[april fools day]]></category>
		<category><![CDATA[batch files]]></category>
		<category><![CDATA[fake format]]></category>
		<category><![CDATA[format hard drive]]></category>
		<category><![CDATA[gags]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1328</guid>
		<description><![CDATA[The ultimate April Fool's Day joke for any geek: a tool that appears to format the hard drive.


Related posts:<ol><li><a href='http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/' rel='bookmark' title='Permanent Link: Run a Batch File Invisibly'>Run a Batch File Invisibly</a></li><li><a href='http://brockangelo.com/2009/06/07/display-the-contents-of-a-file-using-php/' rel='bookmark' title='Permanent Link: Display the Contents of a File Using PHP'>Display the Contents of a File Using PHP</a></li><li><a href='http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/' rel='bookmark' title='Permanent Link: How to Start a Virtual Machine at Startup Using VirtualBox'>How to Start a Virtual Machine at Startup Using VirtualBox</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>It is early February, which means time to start planning for April Fool&#8217;s Day. Here is one I&#8217;ve had up my sleeve for some time. A simple batch file that gives the appearance of formatting the Windows hard drive. Rough enough to make even a seasoned administrator do a double take.</p>
<p>Here is the breakdown of what it does.</p>
<ol>
<li>Show a pleasant, matter of fact message: Windows will now format your hard drive</li>
<li>Wait for three seconds</li>
<li>Enlarge the DOS window</li>
<li>Display the contents of the entire drive.</li>
</ol>
<p>It simply lists the name of every file on the entire hard drive, but it happens so fast and moves so quickly that it is sure to get a couple of knee jerks here and there.</p>
<p>If you want to be really devious, place this on someone&#8217;s hard drive, then create a shortcut to the batch file and change the default icon to something that isn&#8217;t as obvious as the batch icon. To be reeeeally devious, rename the shortcut to something like &#8220;Internet Explorer&#8221;. <img src='http://brockangelo.com/wp-includes/images/smilies/icon_surprised.gif' alt=':-o' class='wp-smiley' /> </p>
<p>Here is the batch file in plain text. To use this, copy the text below and save it to your computer as &#8220;format.bat&#8221;.</p>
<pre class="brush: text;">@echo off
REM Fake Format - A perfect April Fool's Day gift
REM Rename to your liking (something like &quot;Free.bat&quot; is suitably devious)
REM Then make sure you are there to watch their response
REM http://brockangelo.com/2010/02/03/april-fools-batch-file/

@echo off
echo.
echo.
echo.
echo            Windows will now format your hard drive
echo.
echo.
echo.
echo.
ping -n 3 127.0.0.1 &gt; nul
cd c:\
mode con: cols=140 lines=60
dir /w /s
</pre>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/' rel='bookmark' title='Permanent Link: Run a Batch File Invisibly'>Run a Batch File Invisibly</a></li><li><a href='http://brockangelo.com/2009/06/07/display-the-contents-of-a-file-using-php/' rel='bookmark' title='Permanent Link: Display the Contents of a File Using PHP'>Display the Contents of a File Using PHP</a></li><li><a href='http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/' rel='bookmark' title='Permanent Link: How to Start a Virtual Machine at Startup Using VirtualBox'>How to Start a Virtual Machine at Startup Using VirtualBox</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2010/02/03/april-fools-batch-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect Users Back to Page They Were On</title>
		<link>http://brockangelo.com/2009/12/17/redirect-users-back-to-page-they-were-on/</link>
		<comments>http://brockangelo.com/2009/12/17/redirect-users-back-to-page-they-were-on/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 14:09:59 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[intranet]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1312</guid>
		<description><![CDATA[How to redirect users back to the page they were on when they clicked "login".


Related posts:<ol><li><a href='http://brockangelo.com/2008/09/06/using-php-code-in-posts-pages/' rel='bookmark' title='Permanent Link: Using PHP code in Posts &#038; Pages'>Using PHP code in Posts &#038; Pages</a></li><li><a href='http://brockangelo.com/2008/09/21/removing-categories-from-your-rss-feed/' rel='bookmark' title='Permanent Link: Removing Categories from your RSS feed'>Removing Categories from your RSS feed</a></li><li><a href='http://brockangelo.com/2008/09/10/aligning-navbar-to-both-left-and-right/' rel='bookmark' title='Permanent Link: Aligning Navbar to both Left and Right'>Aligning Navbar to both Left and Right</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I am a fan of most things WordPress, but one thing I am not a fan of is the way that everyone gets sent to the Dashboard whenever they log in. Not everyone who logs into your site will write posts or administer the site. And for an intranet, this is a drag.</p>
<p>What I&#8217;ve always wanted was a way to reload the current page after I have logged in. So if I&#8217;m on the &#8220;Search&#8221; page, I just want to go to the login page, then go back to the page I was on when I clicked the &#8220;Login&#8221; link. Finally &#8211; a solution!</p>
<p>Thanks to <a href="http://davidchambersdesign.com/wordpress-login-redirect/">David Chambers</a> &#8211; it is as easy as changing the url that the &#8220;login&#8221; link points to. </p>
<pre class="brush: php;">&lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-login.php?redirect_to=&lt;?php echo urlencode($_SERVER['REQUEST_URI']); ?&gt;&quot;&gt;log in&lt;/a&gt;</pre>
<p>He calls it WordPress Login Redirect. I would imagine that this would be a handy plugin for a lot of people. On an intranet, you may want to provide a link to the dashboard if they are an admin, or a link to logout if they are not. I have been using a very simple conditional statement that determines what to put in place of the login link after you are logged in.</p>
<pre class="brush: php;">&lt;?php
	global $current_user;
	get_currentuserinfo();

	if (!(is_user_logged_in())) { ?&gt;
		&lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-login.php?redirect_to=&lt;?php echo urlencode($_SERVER['REQUEST_URI']); ?&gt;&quot;&gt;Log in&lt;/a&gt;
	&lt;?php } elseif
		(
		(($current_user-&gt;user_login) == &quot;brock&quot;) 	||
		(($current_user-&gt;user_login) == &quot;admin&quot;)
		)
		{
			echo &quot;&lt;a href=\&quot;&quot;;
			echo get_option('siteurl');
			echo &quot;/wp-admin/\&quot;&gt;Dashboard&lt;/a&gt;&quot;;
			} else { ?&gt;
			&lt;a href=&quot;&lt;?php echo wp_logout_url( get_permalink() ); ?&gt;&quot; title=&quot;Logout&quot;&gt;Logout&lt;/a&gt;
			&lt;?php
		}
?&gt;
</pre>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2008/09/06/using-php-code-in-posts-pages/' rel='bookmark' title='Permanent Link: Using PHP code in Posts &#038; Pages'>Using PHP code in Posts &#038; Pages</a></li><li><a href='http://brockangelo.com/2008/09/21/removing-categories-from-your-rss-feed/' rel='bookmark' title='Permanent Link: Removing Categories from your RSS feed'>Removing Categories from your RSS feed</a></li><li><a href='http://brockangelo.com/2008/09/10/aligning-navbar-to-both-left-and-right/' rel='bookmark' title='Permanent Link: Aligning Navbar to both Left and Right'>Aligning Navbar to both Left and Right</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/12/17/redirect-users-back-to-page-they-were-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Start a Virtual Machine at Startup Using VirtualBox</title>
		<link>http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/</link>
		<comments>http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:25:22 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Batch]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[tweakui]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vm]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1309</guid>
		<description><![CDATA[How to start a Virtual Machine at startup, (aka: start at VM at boot) if you are using VirtualBox.


Related posts:<ol><li><a href='http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/' rel='bookmark' title='Permanent Link: Run a Batch File Invisibly'>Run a Batch File Invisibly</a></li><li><a href='http://brockangelo.com/2010/02/03/april-fools-batch-file/' rel='bookmark' title='Permanent Link: April Fool&#8217;s Batch File'>April Fool&#8217;s Batch File</a></li><li><a href='http://brockangelo.com/2009/12/17/redirect-users-back-to-page-they-were-on/' rel='bookmark' title='Permanent Link: Redirect Users Back to Page They Were On'>Redirect Users Back to Page They Were On</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>This did not seem obvious to me, so I hope it is valuable to someone else. If you are using VirtualBox to host your newly created Virtual Servers, one of the questions you will find yourself asking is: &#8220;What if my machine reboots?&#8221; VirtualBox does not (yet) have a built in way to indicate that you want to start a VM when your Host machine boots, so you need to add this to your startup.</p>
<p>If you are on Windows, create a batch file with the following content:</p>
<p><code lang="batch"><br />
@echo off<br />
cls<br />
"C:\Program Files\Sun\VirtualBox\VBoxManage.exe" startvm vm-name<br />
@exit<br />
</code></p>
<p>You should replace &#8220;vm-name&#8221; with the name of the Virtual Machine you want to start. If you are on XP, make sure you are using TweakUI to auto-login to XP.</p>
<p>Enjoy!</p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/' rel='bookmark' title='Permanent Link: Run a Batch File Invisibly'>Run a Batch File Invisibly</a></li><li><a href='http://brockangelo.com/2010/02/03/april-fools-batch-file/' rel='bookmark' title='Permanent Link: April Fool&#8217;s Batch File'>April Fool&#8217;s Batch File</a></li><li><a href='http://brockangelo.com/2009/12/17/redirect-users-back-to-page-they-were-on/' rel='bookmark' title='Permanent Link: Redirect Users Back to Page They Were On'>Redirect Users Back to Page They Were On</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Kernal Requires the Following Features Not Present on the CPU: 0:6</title>
		<link>http://brockangelo.com/2009/12/15/this-kernal-requires-the-following-features-not-present-on-the-cpu-06/</link>
		<comments>http://brockangelo.com/2009/12/15/this-kernal-requires-the-following-features-not-present-on-the-cpu-06/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 16:33:15 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[pae/nx]]></category>
		<category><![CDATA[processor]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1304</guid>
		<description><![CDATA[Solution to Virtualbox error: "This kernel requires the following features not present on the CPU: 0:6"


Related posts:<ol><li><a href='http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/' rel='bookmark' title='Permanent Link: How to Start a Virtual Machine at Startup Using VirtualBox'>How to Start a Virtual Machine at Startup Using VirtualBox</a></li><li><a href='http://brockangelo.com/2008/10/19/how-to-batch-resize-photos-in-photoshop/' rel='bookmark' title='Permanent Link: How to Batch Resize Photos in Photoshop'>How to Batch Resize Photos in Photoshop</a></li><li><a href='http://brockangelo.com/2008/10/13/create-aliases-in-ubuntu/' rel='bookmark' title='Permanent Link: Create Aliases in Ubuntu'>Create Aliases in Ubuntu</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>If you get the following error when installing Ubuntu on VirtualBox:</p>
<blockquote><p>This kernel requires the following features not present on the CPU: 0:6</p></blockquote>
<p>&#8230;don&#8217;t fret. You simply need to check the &#8220;Enable PAE/NX&#8221; found under Settings &#8211;> System &#8211;> Processor.</p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2009/12/15/how-to-start-a-virtual-machine-at-startup-using-virtualbox/' rel='bookmark' title='Permanent Link: How to Start a Virtual Machine at Startup Using VirtualBox'>How to Start a Virtual Machine at Startup Using VirtualBox</a></li><li><a href='http://brockangelo.com/2008/10/19/how-to-batch-resize-photos-in-photoshop/' rel='bookmark' title='Permanent Link: How to Batch Resize Photos in Photoshop'>How to Batch Resize Photos in Photoshop</a></li><li><a href='http://brockangelo.com/2008/10/13/create-aliases-in-ubuntu/' rel='bookmark' title='Permanent Link: Create Aliases in Ubuntu'>Create Aliases in Ubuntu</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/12/15/this-kernal-requires-the-following-features-not-present-on-the-cpu-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Run Box Doesn&#8217;t Suggest Anymore</title>
		<link>http://brockangelo.com/2009/12/03/windows-run-box-doesnt-suggest-anymore/</link>
		<comments>http://brockangelo.com/2009/12/03/windows-run-box-doesnt-suggest-anymore/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 21:18:17 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[autofill]]></category>
		<category><![CDATA[autosuggest]]></category>
		<category><![CDATA[inline autocomplete]]></category>
		<category><![CDATA[run box]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1291</guid>
		<description><![CDATA[If you are a regular user of the Windows Run Box, you probably have gotten very accustomed to a feature called “Inline AutoComplete”. This feature is very handy. You simply start typing for the file or folder that you want, and the Run Box suggests it as you type.
However, for some reason, my Run Box [...]


Related posts:<ol><li><a href='http://brockangelo.com/2008/10/15/how-to-show-hidden-files-folders-in-windows-xp/' rel='bookmark' title='Permanent Link: How to Show Hidden Files &#038; Folders in Windows XP'>How to Show Hidden Files &#038; Folders in Windows XP</a></li><li><a href='http://brockangelo.com/2008/10/17/how-to-show-picture-tasks-in-windows-xp/' rel='bookmark' title='Permanent Link: How to Show Picture Tasks in Windows XP'>How to Show Picture Tasks in Windows XP</a></li><li><a href='http://brockangelo.com/2008/10/24/how-to-change-views-in-windows-explorer-intro/' rel='bookmark' title='Permanent Link: How to Change Views in Windows Explorer &#8211; Intro'>How to Change Views in Windows Explorer &#8211; Intro</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>If you are a regular user of the Windows Run Box, you probably have gotten very accustomed to a feature called “Inline AutoComplete”. This feature is very handy. You simply start typing for the file or folder that you want, and the Run Box suggests it as you type.</p>
<p>However, for some reason, my Run Box decided to stop suggesting files or folders on my C:\ drive or any of my networked drives. This makes work so much more difficult, especially when you rely on this feature and don’t remember the names of all of the folders. </p>
<p>Open the Windows Run Box in Windows XP (by clicking Start à Run or typing Win+R on the keyboard). Then start typing the location of a file on your computer. You can start by typing “C:\”. If you Inline AutoComplete is working, you’ll see this:</p>
<p><center><img src="http://media.brockangelo.com/wp-content/uploads/2009/12/run_suggest.jpg" alt="autofills or autocompletes as you type" title="Windows Run Box - with AutoComplete on" width="410" height="244" class="size-full wp-image-1293" /></center><br />
</p>
<p>If Inline AutoComplete is not working, you’ll see this:</p>
<p><center><img src="http://media.brockangelo.com/wp-content/uploads/2009/12/run_no_suggest.jpg" alt="when it doesn&#039;t suggest - no autofill" title="Windows Run Box" width="416" height="241" class="size-full wp-image-1292" /></center><br />
</p>
<p>Of course, you wouldn’t know that it was called “Inline AutoComplete” just by looking at it, and it will drive you mad if you go looking for it. You won’t find this in the properties of the Start Menu.</p>
<p>To enable Inline AutoComplete, you have to go to Internet Explorer. Yes, this is a feature of IE. Under Tools, Internet Options, Advanced, scroll about half way down and check “Use Inline AutoComplete”. </p>
<p><center><img src="http://media.brockangelo.com/wp-content/uploads/2009/12/use_inline_autocomplete.jpg" alt="Check &quot;Use Inline AutoComplete&quot;" title="Internet Options - Advanced" width="406" height="452" class="size-full wp-image-1294" /></center><br />
</p>
<p>There is no indexing necessary, and the change is immediate. Now when you go back to the Run Box, it will suggest as you type. See the Microsoft Knowledgebase Article <a href="http://support.microsoft.com/kb/237553">here</a> for more info. </p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2008/10/15/how-to-show-hidden-files-folders-in-windows-xp/' rel='bookmark' title='Permanent Link: How to Show Hidden Files &#038; Folders in Windows XP'>How to Show Hidden Files &#038; Folders in Windows XP</a></li><li><a href='http://brockangelo.com/2008/10/17/how-to-show-picture-tasks-in-windows-xp/' rel='bookmark' title='Permanent Link: How to Show Picture Tasks in Windows XP'>How to Show Picture Tasks in Windows XP</a></li><li><a href='http://brockangelo.com/2008/10/24/how-to-change-views-in-windows-explorer-intro/' rel='bookmark' title='Permanent Link: How to Change Views in Windows Explorer &#8211; Intro'>How to Change Views in Windows Explorer &#8211; Intro</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/12/03/windows-run-box-doesnt-suggest-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run a Batch File Invisibly</title>
		<link>http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/</link>
		<comments>http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 13:55:40 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Batch]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[invisible]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1279</guid>
		<description><![CDATA[Run a Batch File invisibly. Users won't know a thing.


Related posts:<ol><li><a href='http://brockangelo.com/2010/02/03/april-fools-batch-file/' rel='bookmark' title='Permanent Link: April Fool&#8217;s Batch File'>April Fool&#8217;s Batch File</a></li><li><a href='http://brockangelo.com/2008/10/19/how-to-batch-resize-photos-in-photoshop/' rel='bookmark' title='Permanent Link: How to Batch Resize Photos in Photoshop'>How to Batch Resize Photos in Photoshop</a></li><li><a href='http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/' rel='bookmark' title='Permanent Link: Automatically Upload Photos to Flickr'>Automatically Upload Photos to Flickr</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Running a batch file invisibly can come in handy, especially if you manage computers for other users. It allows you to perform a task without the user knowing anything about it.</p>
<p>Its very simple. Instead of telling the batch file to run, you tell a Visual Basic script to launch the batch file; and Visual Basic has the ability to launch things invisibly.</p>
<blockquote><p>Follow this demo and you’ll be up and running in just a few seconds</p>
<p>You’ll create two files: the vbs script and a sample batch file</p>
<p>&#160;</p>
</blockquote>
<p>Open Notepad, and paste this content, then save the file as <strong>invisible.vbs </strong>to the Desktop</p>
<blockquote><p>Set WshShell = CreateObject(&quot;WScript.Shell&quot;)     <br />WshShell.Run chr(34) &amp; &quot;C:\Documents and Settings\%username%\Desktop\1.bat&quot; &amp; Chr(34), 0      <br />Set WshShell = Nothing</p>
</blockquote>
<p><a href="http://media.brockangelo.com/all_files_txt.jpg" alt="click to enlarge"><img style="display: block; float: none; margin-left: auto; margin-right: auto" height="284" src="http://media.brockangelo.com/all_files_txt.jpg" width="413" /></a></p>
<p>&#160;</p>
<p>Open Notepad again, and paste this content, then save the file as <strong>1.bat </strong>to the Desktop:</p>
<blockquote><p>echo hello &gt; &quot;C:\Documents and Settings\%username%\Desktop\1.txt&quot;</p>
</blockquote>
<p>&#160;</p>
<p>Now double click on <strong>invisible.vbs</strong>. You should see a <strong>1.txt</strong> file get magically (<em>invisibly</em>) created on the Desktop.</p>
<p>That’s it! Modify to your liking!</p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2010/02/03/april-fools-batch-file/' rel='bookmark' title='Permanent Link: April Fool&#8217;s Batch File'>April Fool&#8217;s Batch File</a></li><li><a href='http://brockangelo.com/2008/10/19/how-to-batch-resize-photos-in-photoshop/' rel='bookmark' title='Permanent Link: How to Batch Resize Photos in Photoshop'>How to Batch Resize Photos in Photoshop</a></li><li><a href='http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/' rel='bookmark' title='Permanent Link: Automatically Upload Photos to Flickr'>Automatically Upload Photos to Flickr</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/07/14/run-a-batch-file-invisibly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically Upload Photos to Flickr</title>
		<link>http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/</link>
		<comments>http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 02:06:07 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Batch]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[automatically upload to flickr]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[lifehacker]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[uploadr]]></category>
		<category><![CDATA[xmltramp]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1158</guid>
		<description><![CDATA[Automatically upload photos &#038; videos to Flickr - you plug in your camera, and in just 10 seconds you are walking away with your camera in hand.


Related posts:<ol><li><a href='http://brockangelo.com/2008/09/16/upload-download-your-flickr-photos/' rel='bookmark' title='Permanent Link: Upload &#038; Download Your Flickr Photos'>Upload &#038; Download Your Flickr Photos</a></li><li><a href='http://brockangelo.com/2008/10/21/how-to-batch-resize-photos-in-picasa/' rel='bookmark' title='Permanent Link: How to Batch Resize Photos in Picasa'>How to Batch Resize Photos in Picasa</a></li><li><a href='http://brockangelo.com/2008/10/11/how-to-change-which-program-opens-your-jpg-files/' rel='bookmark' title='Permanent Link: How to Change Which Program Opens Your JPG Files'>How to Change Which Program Opens Your JPG Files</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how this will work: you&#8217;ll plug in your card reader or digital camera and all your photos &#038; videos are automatically copied to the folders of your choice in about 3 to 5 seconds. Once the photos are copied to the PC, they are automatically removed from the card (this is optional, but recommended). After they have been deleted from the card, they are automatically uploaded to your <a href="http://flickr.com/photos/brockangelo">Flickr</a> account (as private, public, tagged, not tagged, whatever). All in the background without you having to do a thing.</p>
<p>I set this up because my photography workflow had turned into something horrid: I have two digital cameras that we use. One of the two has video, but I don&#8217;t use Flickr for my videos, I use <a href="http://motionbox.com" target="_blank">Motionbox</a>. So to get photos or videos off the cameras involved the following:</p>
<ol>
<li>Plug in each card</li>
<li>Copy the pics from the card to the PC, name the folders, etc</li>
<li>Copy the videos to the My Videos folder</li>
<li>Delete the photos &#038; videos from the card</li>
<li>Use the Flickr Uploadr and hope it successfully uploads all the pics</li>
<li>Upload videos to <a href="http://motionbox.com" target="_blank">Motionbox</a>.</li>
<li>Come back later and delete the photos &#038; videos off the PC after they got uploaded</li>
</ol>
<p>I decided to put a little thought into it and get a better setup. I now do the following:</p>
<ol>
<li>Insert flash card into card reader right after taking pictures &#8211; <strong>pictures &#038; videos download automatically in less than 10 seconds</strong> &#8211; card automatically formats (<i>optional, but recommended</i>)</li>
<li>(<i>photos are now uploading to Flickr in the background &#8211; so I leave <img src='http://brockangelo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </i>)</li>
</ol>
<p>I&#8217;ve completely eliminated my involvement with the computer. I simply plug in the card reader (or camera) and the computer takes care of the entire process of copying the photos over to the computer, then deleting them from the card. It then automatically uploads the photos to Flickr as private. All in the background without any of my involvement. </p>
<blockquote><p>You can modify the batch file to upload all photos and videos to Flickr.</p></blockquote>
<p>There are several steps you&#8217;ll need to take in order for the process to be completely automatic. Here is an outline of what all is involved. Start to finish the process takes about 15 minutes.</p>
<ol>
<li>Give Digital Cameras persistent drive letters (E:, F:, G:)</li>
<li>Download Python</li>
<li>Download the &#8220;Uploadr&#8221; python scripts</li>
<li>Download the batch file for your camera</li>
<li>Install TweakUI and add Batch file to the AutoPlay menus</li>
<li>Configure AutoPlay for your digital camera</li>
<li>Test it out</li>
</ol>
<h2>First Step</h2>
<h3>Give Memory Cards and Digital Cameras persistent drive letters (E:, F:, G:)</h3>
<p>In order for you to be able to reliably copy images from a particular card or device, you should set it up so that every time you plug in the device it uses the same drive letter. With your memory card or device plugged in, right click <strong>My Computer</strong> and select <strong>Manage</strong>: </p>
<blockquote><p> <center><img src="http://media.brockangelo.com/wp-content/uploads/2009/07/my_computer_manage.jpg" alt="my_computer_manage" title="my_computer_manage" width="203" height="132" class="aligncenter size-full wp-image-1162" /></center></p></blockquote>
<p>Select <strong>Storage &#8658; Disk Management</strong> (<a href="http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/disk_management/" rel="attachment wp-att-1163">see picture</a>)</p>
<p>In the right panel, your devices will be listed, probably with letters like E, F or G. Do not change the drive letter of the C: drive, and you probably shouldn&#8217;t change a D: drive if you have one either. Right click on the flash drive that you need to change and select <strong>Change Drive Letter and Paths</strong>: (<a href="http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/change_drive_letter/" rel="attachment wp-att-1164">see picture</a>)</p>
<p>The next box shows you the letter that is already assigned. Just click <strong>Change</strong>:<br />
<img src="http://media.brockangelo.com/wp-content/uploads/2009/07/change_drive_letter_box-300x194.jpg" alt="change_drive_letter_box" title="change_drive_letter_box" width="300" height="194" class="aligncenter size-medium wp-image-1165" /></p>
<p>This box will ask you what letter you want to assign to it. I start from the bottom, in this case, Z: (<a href="http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/select_drive_letter/" rel="attachment wp-att-1166">see picture</a>)</p>
<p>It will ask you to confirm this. Click <strong>Yes</strong>. (<a href="http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/are_you_sure/" rel="attachment wp-att-1167">see picture</a>)</p>
<p>Repeat this for each card or camera that you would like to setup for this.</p>
<p>Now if you go to My Computer, your drive letters should be updated to the new letters.</p>
<h2>Next Step</h2>
<h3>Download Python</h3>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2008/09/16/upload-download-your-flickr-photos/' rel='bookmark' title='Permanent Link: Upload &#038; Download Your Flickr Photos'>Upload &#038; Download Your Flickr Photos</a></li><li><a href='http://brockangelo.com/2008/10/21/how-to-batch-resize-photos-in-picasa/' rel='bookmark' title='Permanent Link: How to Batch Resize Photos in Picasa'>How to Batch Resize Photos in Picasa</a></li><li><a href='http://brockangelo.com/2008/10/11/how-to-change-which-program-opens-your-jpg-files/' rel='bookmark' title='Permanent Link: How to Change Which Program Opens Your JPG Files'>How to Change Which Program Opens Your JPG Files</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/07/08/automatically-upload-photos-to-flickr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Application Download Folder</title>
		<link>http://brockangelo.com/2009/07/08/application-download-folder/</link>
		<comments>http://brockangelo.com/2009/07/08/application-download-folder/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 16:01:31 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1230</guid>
		<description><![CDATA[Here is a huge, no wait, a huge time-saver for me, so I felt I must share it:
I keep a folder called “Downloads” inside the My Documents folder. Inside “Downloads” I’ve created three subfolders:

Applications 
Drivers 
Operating Systems

Most people wouldn’t need all three of these, but everyone should use both the “Applications” and the “Drivers” folders. [...]


Related posts:<ol><li><a href='http://brockangelo.com/2008/10/22/how-to-send-to-a-compressed-zipped-folder/' rel='bookmark' title='Permanent Link: How to Send To a Compressed (Zipped) Folder'>How to Send To a Compressed (Zipped) Folder</a></li><li><a href='http://brockangelo.com/2008/09/16/upload-download-your-flickr-photos/' rel='bookmark' title='Permanent Link: Upload &#038; Download Your Flickr Photos'>Upload &#038; Download Your Flickr Photos</a></li><li><a href='http://brockangelo.com/2008/10/24/how-to-change-views-list-view/' rel='bookmark' title='Permanent Link: How to Change Views &#8211; List View'>How to Change Views &#8211; List View</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Here is a huge, no wait, a <strong><em><u>huge</u></em></strong> time-saver for me, so I felt I must share it:</p>
<p>I keep a folder called “Downloads” inside the My Documents folder. Inside “Downloads” I’ve created three subfolders:</p>
<ol>
<li>Applications </li>
<li>Drivers </li>
<li>Operating Systems</li>
</ol>
<p>Most people wouldn’t need all three of these, but everyone should use both the “Applications” and the “Drivers” folders. </p>
<p>Anytime I’m downloading a new application, driver or operating system, I keep the install file (.exe, .msi, or .zip). This saves a ton of time waiting for downloads, but in my experience the real time-saver is not having to go out and find the download again. It is just right there in my downloads folder whenever I want it again. This is <em>especially</em> helpful when it comes to drivers.</p>
<p>If you are good about keeping it organized, you can get quite a collection of applications going. My current tally puts my collection at close to a gigabyte of applications (not including operation systems).</p>
<p>If you just use one PC, you may not think you would need this. But after you have to reinstall a program or two, you’ll find this shortcut can really help. What’s more, if you keep this folder on the network, you can use this for any PC you are using!</p>
<p>I’ve found that these three sub-folders have kept it pretty well organized after having been doing this for several years.</p>
<p><strong><u>Bonus Tip:</u></strong> Don’t include version numbers on folder names. Instead of “Adobe Reader 8.0”, name the folder “Adobe Reader”. Then keep the most current version in the root of that folder, and old versions I move to a sub folder called “Archive”. </p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2008/10/22/how-to-send-to-a-compressed-zipped-folder/' rel='bookmark' title='Permanent Link: How to Send To a Compressed (Zipped) Folder'>How to Send To a Compressed (Zipped) Folder</a></li><li><a href='http://brockangelo.com/2008/09/16/upload-download-your-flickr-photos/' rel='bookmark' title='Permanent Link: Upload &#038; Download Your Flickr Photos'>Upload &#038; Download Your Flickr Photos</a></li><li><a href='http://brockangelo.com/2008/10/24/how-to-change-views-list-view/' rel='bookmark' title='Permanent Link: How to Change Views &#8211; List View'>How to Change Views &#8211; List View</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/07/08/application-download-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set a Static IP Address in Windows XP</title>
		<link>http://brockangelo.com/2009/06/27/set-a-static-ip-address-in-windows-xp/</link>
		<comments>http://brockangelo.com/2009/06/27/set-a-static-ip-address-in-windows-xp/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 11:19:06 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[static ip]]></category>

		<guid isPermaLink="false">http://brockangelo.com/?p=1133</guid>
		<description><![CDATA[How to Set a Static IP Address in Windows XP - (w/ screenshots).


Related posts:<ol><li><a href='http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/' rel='bookmark' title='Permanent Link: Setup Remote Desktop Using DynDNS'>Setup Remote Desktop Using DynDNS</a></li><li><a href='http://brockangelo.com/2008/10/17/how-to-show-picture-tasks-in-windows-xp/' rel='bookmark' title='Permanent Link: How to Show Picture Tasks in Windows XP'>How to Show Picture Tasks in Windows XP</a></li><li><a href='http://brockangelo.com/2008/10/11/how-to-change-which-program-opens-your-jpg-files/' rel='bookmark' title='Permanent Link: How to Change Which Program Opens Your JPG Files'>How to Change Which Program Opens Your JPG Files</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>To set a Static IP Address in Windows XP, open the <strong>Control Panel</strong> by clicking Start, then Control Panel. Double click on <strong>Network Connections</strong>. </p>
<p>You may have several network connections in this box, depending on your configuration. But most likely you will need to modify the &#8220;Local Area Connection&#8221;. If you are unsure which one to modify, look for the one that is not grayed out and does not have a big red X on it. It doesn&#8217;t matter what it is called. If you are really brave, you can test to make sure you have the right one by right clicking on it and selecting Disable. Once it is disabled, you should no longer be able to browse the internet. If so, you&#8217;ve found the right Network Connection. (Now right click it and select Enable.)  <img src='http://brockangelo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   (<a href="http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/network_connections/" rel="attachment wp-att-1113">see picture</a>)</p>
<p><strong>Double click</strong> on the &#8220;Local Area Connection&#8221; icon.</p>
<p>A box will appear with the name of the Network Connection in the title. It will be called the the &#8220;Local Area Connection <em>Status</em>&#8221; box. The &#8220;General&#8221; tab will selected. Click the &#8220;Properties&#8221; button at the bottom. (<a href="http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/lac_status/" rel="attachment wp-att-1118">see picture</a>)</p>
<p>The &#8220;Local Area Connection <em>Properties</em>&#8221; box will appear. You will need to scroll down inside the white box until you see &#8220;Internet Protocol (TCP/IP)&#8221;. Select this and click the &#8220;Properties&#8221; button. (<a href="http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/lac_properties/" rel="attachment wp-att-1117">see picture</a>)</p>
<p>In the &#8220;Internet Protocol (TCP/IP) Properties&#8221; box, your setting is probably on &#8220;Obtain an IP address automatically&#8221;. This means that on your local network, your private IP address can change from time to time. To set a S tatic IP Address, click &#8220;Use the Following IP Address&#8221;. (<a href="http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/ip_properties/" rel="attachment wp-att-1116">see picture</a>)</p>
<p>You shouldn&#8217;t just guess what IP Address to use, or you&#8217;ll have a hard time with your local network down the road. Instead, go back to the &#8220;Local Area Connection Status&#8221; box (it should still be open) and click the &#8220;Support&#8221; tab. Your current IP address, Subnet Mask and Gateway will be in this box. Change the last number in your IP address to an IP address that is below 100, but not 0 and not 1. It should be an IP address that is not in use. (192.168.1.3 is generally safe) If you want to be sure that the IP Address is not in use, open a command prompt (Start-> Run -> type &#8220;cmd&#8221; and hit enter) and type &#8220;ping 192.168.1.3&#8243;. If it says &#8220;Request Timed Out&#8221; then the IP address is not already in use and you are safe to use it for your PC.</p>
<p>Enter this new IP address and the values for Subnet Mask and Default Gateway into the &#8220;Internet Protocol (TCP/IP) Properties&#8221; box that you were just on. Where it asks for &#8220;Preferred DNS Server&#8221;, enter the value that you used for the Default Gateway <em>(it will probably be the IP address of your Router, most likely 192.168.1.1 or 192.168.0.1)</em>. (<a href="http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/ip_properties/" rel="attachment wp-att-1116">see picture</a>) Now click OK to all open boxes until you are back at the Network Connections box. Your network connection will now refresh. When you double click on the &#8220;Local Area Connection&#8221; icon in Network Connections, you can click the Support tab and see the new &#8220;Static IP Address&#8221;.</p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2009/06/24/setup-remote-desktop-using-dyndns/' rel='bookmark' title='Permanent Link: Setup Remote Desktop Using DynDNS'>Setup Remote Desktop Using DynDNS</a></li><li><a href='http://brockangelo.com/2008/10/17/how-to-show-picture-tasks-in-windows-xp/' rel='bookmark' title='Permanent Link: How to Show Picture Tasks in Windows XP'>How to Show Picture Tasks in Windows XP</a></li><li><a href='http://brockangelo.com/2008/10/11/how-to-change-which-program-opens-your-jpg-files/' rel='bookmark' title='Permanent Link: How to Change Which Program Opens Your JPG Files'>How to Change Which Program Opens Your JPG Files</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/06/27/set-a-static-ip-address-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPod Portable Stereo Review &#8211; Altec Lansing inMotion-600</title>
		<link>http://brockangelo.com/2009/06/25/altec-lansing-inmotion-im600-usb-charging-portable-speaker-system-with-fm-receiver-for-ipod-black/</link>
		<comments>http://brockangelo.com/2009/06/25/altec-lansing-inmotion-im600-usb-charging-portable-speaker-system-with-fm-receiver-for-ipod-black/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 17:50:11 +0000</pubDate>
		<dc:creator>brockangelo</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Altec]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iM600]]></category>
		<category><![CDATA[inMotion]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Lansing]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[Portable]]></category>
		<category><![CDATA[Receiver]]></category>
		<category><![CDATA[Speaker]]></category>
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://brockangelo.com/2009/06/26/altec-lansing-inmotion-im600-usb-charging-portable-speaker-system-with-fm-receiver-for-ipod-black/</guid>
		<description><![CDATA[If you have always eyed the Bose SoundDock, but balked at it's $400 price tag, then stop reading reviews and buy the Altec Lansing inMotion! At a quarter of the price, you'll have enough money left over to buy an iPhone!


Related posts:<ol><li><a href='http://brockangelo.com/2009/06/22/netflix-roku-review/' rel='bookmark' title='Permanent Link: Netflix Roku Review'>Netflix Roku Review</a></li><li><a href='http://brockangelo.com/2008/10/25/sharing-itunes-with-multiple-users/' rel='bookmark' title='Permanent Link: Sharing iTunes with Multiple Users'>Sharing iTunes with Multiple Users</a></li><li><a href='http://brockangelo.com/2009/05/23/delete-comment-spam-using-a-cron-job/' rel='bookmark' title='Permanent Link: Delete Comment Spam using a Cron Job'>Delete Comment Spam using a Cron Job</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/Altec-Lansing-inMotion-USB-Charging-Portable/dp/B001IZYV2E/ref=sr_1_1/192-3747987-3729752?ie=UTF8&#038;s=electronics&#038;qid=1245792342&#038;sr=8-1?ie=UTF8&#038;tag=brockangelo-20"><img style="float:left;width: 150px;height:150px;margin-right: 10px;" src="http://ecx.images-amazon.com/images/I/51Mco2C69eL._SL500_AA280_.jpg" alt="Altec Lansing inMotion iM600 USB-Charging Portable Speaker System with FM Receiver for iPod (Black)" /></a></p>
<p>If you have always eyed the <a href="http://www.amazon.com/gp/product/B000V2FJAS?ie=UTF8&#038;tag=brockangelo-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000V2FJAS">Bose SoundDock</a><img src="http://www.assoc-amazon.com/e/ir?t=brockangelo-20&#038;l=as2&#038;o=1&#038;a=B000V2FJAS" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, but balked at it&#8217;s $400 price tag, then stop reading reviews and buy this iPod player! At a quarter of the price, you&#8217;ll have enough money left over to buy an iPhone!</p>
<p>I bought this iPod player on a whim after briefly skimming reviews. Honestly, it was a bit of an impulse purchase; but I got really really lucky. We love this thing! We move it around the house with us as we move from room to room, and I&#8217;ve taken it outdoors as I was painting our house, and watching a marathon. This is a great little stereo with very high quality sound. It sounds great at both high levels and at quiet levels, which is important to us because we have small children. One thing that I&#8217;ve had to deal with in the past is stereos that just don&#8217;t work at quiet levels, but this one sounds crystal clear at very quiet levels. A big plus.</p>
<p>The battery life just goes on and on, and the added features like the remote control (that stows on the back) and FM receiver make this one a no-brainer.</p>
<p>With its well-regarded inMotion system, Altec Lansing has raised the bar again with the iM600USB, offering full play and chargeability for all iPod models with a 30-pin connector. Featuring a myriad of exciting technologies, the iM600USB offers big, crystal-clear sound, and it folds up compactly for easy portability.   <a href="http://www.amazon.com/Altec-Lansing-inMotion-USB-Charging-Portable/dp/B001IZYV2E/ref=sr_1_1/192-3747987-3729752?ie=UTF8&#038;s=electronics&#038;qid=1245792342&#038;sr=8-1?ie=UTF8&#038;tag=brockangelo-20" title="More at Amazon">(more&#8230;)</a></p>


<p>Related posts:<ol><li><a href='http://brockangelo.com/2009/06/22/netflix-roku-review/' rel='bookmark' title='Permanent Link: Netflix Roku Review'>Netflix Roku Review</a></li><li><a href='http://brockangelo.com/2008/10/25/sharing-itunes-with-multiple-users/' rel='bookmark' title='Permanent Link: Sharing iTunes with Multiple Users'>Sharing iTunes with Multiple Users</a></li><li><a href='http://brockangelo.com/2009/05/23/delete-comment-spam-using-a-cron-job/' rel='bookmark' title='Permanent Link: Delete Comment Spam using a Cron Job'>Delete Comment Spam using a Cron Job</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://brockangelo.com/2009/06/25/altec-lansing-inmotion-im600-usb-charging-portable-speaker-system-with-fm-receiver-for-ipod-black/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
