<?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>snydersoft.com</title>
	<atom:link href="http://snydersoft.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://snydersoft.com</link>
	<description>Sharing Web Development Information</description>
	<lastBuildDate>Wed, 25 Nov 2009 14:08:38 +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>Missing Rules and Alerts in Outlook 2003</title>
		<link>http://snydersoft.com/2009/11/25/missing-rules-and-alerts-in-outlook-2003/</link>
		<comments>http://snydersoft.com/2009/11/25/missing-rules-and-alerts-in-outlook-2003/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 14:08:38 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2009/11/25/missing-rules-and-alerts-in-outlook-2003/</guid>
		<description><![CDATA[If you are missing option “Rules and Alerts” in the tools menu of Outlook 2003, make sure that you have a email account created.&#160; I discovered today, that the option isn’t available until you have an email account setup. 
Other options that I tried, that didn’t work, but might be useful:

Run the “Detect and Repair” [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span>f you are missing option “Rules and Alerts” in the tools menu of Outlook 2003, make sure that you have a email account created.&#160; I discovered today, that the option isn’t available until you have an email account setup. </p>
<p>Other options that I tried, that didn’t work, but might be useful:</p>
<ul>
<li>Run the “Detect and Repair” for Outlook</li>
<li>View-&gt;Toolbars-&gt;Customize, and then try to add the option back to the menu by looking for “Rules and Alerts” under Commands tab, Tools</li>
</ul>
<p>So if you don’t have the “Rules and Alerts” option available to you, try one of these suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/11/25/missing-rules-and-alerts-in-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-center (move) content after resizing stage in Flash</title>
		<link>http://snydersoft.com/2009/11/16/re-center-move-content-after-resizing-stage-in-flash/</link>
		<comments>http://snydersoft.com/2009/11/16/re-center-move-content-after-resizing-stage-in-flash/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 16:09:23 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2009/11/16/re-center-move-content-after-resizing-stage-in-flash/</guid>
		<description><![CDATA[When you have your flash application 90% developed and then a new requirement is presented that requires you to enlarge the stage size, you will find that it puts the additional space on the bottom and right sides of your document.&#160; I haven’t found a way to specify where the additional space is placed, but [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">W</span>hen you have your flash application 90% developed and then a new requirement is presented that requires you to enlarge the stage size, you will find that it puts the additional space on the bottom and right sides of your document.&#160; I haven’t found a way to specify where the additional space is placed, but I was able to find a way to move all my existing content (symbols, tweens, etc) intact together to a new location on the larger stage.</p>
<p><img src="http://snydersoft.com/wp-content/uploads/2009/11/editmultipleframes_thumb.png" alt="Edit Multiple Frames Screenshot" /></p>
<p>If you click on the edit multiple frames button (arrow pointing to it in screenshot) below the timeline you will get two brackets above the timeline (in the frame numbers, circled in screenshot), put the [ at frame 1, and the ] at the last frame of your timeline and then do a select-all.&#160; This will select everything in every frame within the brackets.&#160; Then you can drag or use the arrow keys to reposition everything.&#160; When you are finished moving the content, just unclick the edit multiple frames to return to the typical editing mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/11/16/re-center-move-content-after-resizing-stage-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get parameters to HTML page with JavaScript</title>
		<link>http://snydersoft.com/2009/11/14/get-parameters-to-html-page-with-javascript/</link>
		<comments>http://snydersoft.com/2009/11/14/get-parameters-to-html-page-with-javascript/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:19:05 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2009/11/14/get-parameters-to-html-page-with-javascript/</guid>
		<description><![CDATA[If you have a static HTML page that you need to pass a parameter so that it can be updated easily or work in different instances, this post will show you how to get the parameters via the URL into JavaScript without the use of a backend server.
document.URL contains the entire address bar of the [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span>f you have a static HTML page that you need to pass a parameter so that it can be updated easily or work in different instances, this post will show you how to get the parameters via the URL into JavaScript without the use of a backend server.</p>
<p>document.URL contains the entire address bar of the browser, and you can parse this to get the parameters and do something useful with it.</p>
<p>Below is the snippet of code I worked up to do this for a mockup/demo that we were working on for work.&#160; Specifically, we wanted to have a single HTML page that would load the same Flex player with different parameters (and wanted to pass those parameters in via the URL) so that we could test with current and future streams/video sources.</p>
<p>&lt;html&gt;    <br />&lt;head&gt;     <br />&#160;&#160;&#160; &lt;script&gt;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; function pageLoaded() {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var qAt = document.URL.indexOf(&quot;?&quot;);     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var params = document.URL.substr(qAt+1);     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // Use params as needed (parse, or pass along to flash swf):     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(params);&#160; // just echoing in this example.     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160; &lt;/script&gt;     <br />&lt;/head&gt;     <br />&lt;body onload=&quot;pageLoaded()&quot;&gt;     <br />&lt;/body&gt;     <br />&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/11/14/get-parameters-to-html-page-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 and Symantec Endpoint Protection</title>
		<link>http://snydersoft.com/2009/09/23/windows-7-and-symantec-endpoint-protection/</link>
		<comments>http://snydersoft.com/2009/09/23/windows-7-and-symantec-endpoint-protection/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 12:02:15 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2009/09/23/windows-7-and-symantec-endpoint-protection/</guid>
		<description><![CDATA[Symantec released on Monday, Sept 21, 2009, the update to Symantec Endpoint Protection (SEP) that supports Windows 7 RTM.&#160; If you are a corporate account you can download the software at their updates site:
https://fileconnect.symantec.com
You will need your serial number to get access to the product download.&#160; 
SEP version 11.0.5 has official support for Windows 7 [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">S</span>ymantec released on Monday, Sept 21, 2009, the update to Symantec Endpoint Protection (SEP) that supports Windows 7 RTM.&#160; If you are a corporate account you can download the software at their updates site:</p>
<p><a href="https://fileconnect.symantec.com">https://fileconnect.symantec.com</a></p>
<p>You will need your serial number to get access to the product download.&#160; </p>
<p>SEP version 11.0.5 has official support for Windows 7 and Windows Server 2008 R2.</p>
<p>I experienced the following error message while attempting to install the update:</p>
<p>“Pending system changes that require a reboot have been detected”&#160; </p>
<p>Rebooting didn’t resolve this issue.&#160; However, I did find on Symantec’s website a <a href="http://service1.symantec.com/SUPPORT/ent-security.nsf/docid/2007121609023348">Knowledge Base article</a> that explains the issue and a resolution.</p>
<ol>
<li>Locate the following registry key:     <br />HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\</li>
<li>Locate the PendingFileRenameOperations registry value in the right pane.     <br /><b>Note:</b> If you do not find the PendingFileRenameOperations value in the location above, this error message can be generated if there are pending changes in:       <br />HKEY_LOCAL_MACHINE\SYSTEM\CurrentSetXXX\Control\SessionManager\PendingFileRenameOperations      <br /><b>Note:</b> This value may be hidden. Make sure that your user account has permissions to this key.</li>
<li>Delete the value date from the pendingfilerenameoperations registry value. </li>
<li>Attempt to install the SEP client again.</li>
</ol>
<p>After clearing my PendingFileRenameOperations registry value, I was able to complete the installation of SEP v11.0.5 on my Windows 7 computer.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/09/23/windows-7-and-symantec-endpoint-protection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone leaving POP3 lock on mail server until powered off</title>
		<link>http://snydersoft.com/2009/08/04/iphone-leaving-pop3-lock-on-mail-server-until-powered-off/</link>
		<comments>http://snydersoft.com/2009/08/04/iphone-leaving-pop3-lock-on-mail-server-until-powered-off/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 13:55:00 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2009/08/04/iphone-leaving-pop3-lock-on-mail-server-until-powered-off/</guid>
		<description><![CDATA[Yesterday, I had a new iPhone user complain that they were getting a message about a POP3 lock when attempting to get new messages from the mail server after checking email on their iPhone.&#160; I have been doing this for sometime and never noticed this issue, but decided to investigate further when I had time.
This [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">Y</span>esterday, I had a new iPhone user complain that they were getting a message about a POP3 lock when attempting to get new messages from the mail server after checking email on their iPhone.&#160; I have been doing this for sometime and never noticed this issue, but decided to investigate further when I had time.</p>
<p>This morning, I ran a number of tests and was able to easily reproduce the lock message when attempting to check email after the iPhone had checked the POP3 server for email.&#160; This is typical behavior that I have experienced when using multiple computers and one POP3 account.&#160; The lock file is used to ensure that only one computer is updating the mailbox at one time (since typical POP3 behavior is to download messages AND remove them from the server).&#160; </p>
<p>What I was surprised to find was that after I exited the Mail application on the iPhone and left it at the Home screen… the lock persisted on the mail server.&#160; I waited a minute, and was still getting the message about the lock existing on my POP3 mail server.</p>
<p>I found through trial and error that it appears the iPhone continues to maintain the lock on the POP3 server until the phone is powered off.&#160; In our case, 15secs after the iPhone is powered off, the lock is removed from the mail server (or at least allows the desktop mail client to download mails from that POP3 account).</p>
<p>After finding this, I realized that my common behavior would have never caused this to appear (for me).&#160; My typical use case is that I check emails while out-and-about, or in a meeting.&#160; When I have checked messages, I power off the phone.&#160;&#160; I return to my computer and press Send/Receive (or Get Messages) and the new emails come down without an issue.&#160; I guess I have never checked my email on my iPhone and while the phone is still on try to check them from my computer.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/08/04/iphone-leaving-pop3-lock-on-mail-server-until-powered-off/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Updates with 1and1 hosting</title>
		<link>http://snydersoft.com/2009/04/02/wordpress-updates-with-1and1-hosting/</link>
		<comments>http://snydersoft.com/2009/04/02/wordpress-updates-with-1and1-hosting/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 02:04:38 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[1and1]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[Upgrade]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=181</guid>
		<description><![CDATA[If automatic updates of Wordpress fail using 1and1.com, this change should enable them to work correctly for you.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span>f Wordpress automatic updates fail using 1and1.com hosting with the message: Wordpress 2.7.1 Upgrade Failed.</p>
<p>All you need to do is add this line to your .htaccess file:<br />
<code>AddType x-mapp-php5 .php</code></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/04/02/wordpress-updates-with-1and1-hosting/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Limited user rights should be viable for everyone</title>
		<link>http://snydersoft.com/2009/03/11/limited-user-rights-should-be-viable-for-everyone/</link>
		<comments>http://snydersoft.com/2009/03/11/limited-user-rights-should-be-viable-for-everyone/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:48:56 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2009/03/11/limited-user-rights-should-be-viable-for-everyone/</guid>
		<description><![CDATA[While reading the March 2, 2009 issue of eWEEK, I enjoyed the commentary by Andrew Garcia in &#8220;Windows in the way? UAC is not a reason to reject Vista or Windows 7&#8220;.
&#8220;Alas, I admit I have been complicit in furthering these bad practices with shortcomings in my own testing and analysis for eWEEK.  Therefore, [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">W</span>hile reading the March 2, 2009 issue of eWEEK, I enjoyed the commentary by Andrew Garcia in &#8220;<a href="http://blogs.eweek.com/signaling_it/content001/security/getting_real_work_done.html">Windows in the way? UAC is not a reason to reject Vista or Windows 7</a>&#8220;.</p>
<blockquote><p>&#8220;Alas, I admit I have been complicit in furthering these bad practices with shortcomings in my own testing and analysis for eWEEK.  Therefore, I make this pledge &#8212; from here on, in my reviews, I will ensure all software I test designed to run on Windows desktops operates as advertized with only limited user rights.  And I will call out those that fail this litmus test.&#8221;</p></blockquote>
<p>Kudos to Andrew for championing the ability for users to run Windows software under limited user rights.  With magazines and technology analysts documenting the shortcomings of various software packages, we have a chance of getting Windows software that works better for all of us.  I look forward to seeing these details included in future reviews in eWEEK.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/03/11/limited-user-rights-should-be-viable-for-everyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development Tools and Wikis</title>
		<link>http://snydersoft.com/2009/01/17/web-development-tools-and-wikis/</link>
		<comments>http://snydersoft.com/2009/01/17/web-development-tools-and-wikis/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:15:16 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=174</guid>
		<description><![CDATA[I recently did a couple of presentations work, as part of my new role as Manager of Web Technologies.  These presentations were focused on sharing knowledge and help them be more productive with these technologies.
In July (2008), the presentation was on Web Development tools.  Background: The company has been using web interfaces (and [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span> recently did a couple of presentations work, as part of my new role as Manager of Web Technologies.  These presentations were focused on sharing knowledge and help them be more productive with these technologies.</p>
<p>In July (2008), the presentation was on Web Development tools.  Background: The company has been using web interfaces (and Ajax) for more aspects of its products and more software engineers are being asked to know something about the User Interface development/functionality.  Since I was one of the key UI developers, I was asked to share some of the tools that I use regularly that makes the job easier.  </p>
<p>The slides will not have the same impact as it did when presented, because a large portion of the time was used in examples or discussion of ways each tool is helpful.  The lunch-time presentation lasted about 1.5 hrs.</p>
<p>Slides: <a href="http://snydersoft.com/Lunch-n-Learn-1/">Web Development Tools</a></p>
<p>This past Friday (Jan-16-2009), I also presented on Wikis.  Background: A number of engineers had tried using wikis without much success.  However, each attempt had been aimed at a very narrow use-case (maybe one project, or one product).  Our VP of Engineering had become interested in trying to make it work on a larger scale (all of Engineering, or further).  So this presentation was intended to provide the entire engineering staff with an introduction to the internal wiki, and enough training to get started building the wiki.  </p>
<p>The first half of the presentation covers a general explanation of what a Wiki is and Good/Bad uses of them.  And the second half covers how to create pages and use the Wiki.  This lunch-time presentation also lasted about 1.5 hrs.</p>
<p>Slides: <a href="http://snydersoft.com/Lunch-n-Learn-2/">Wikis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2009/01/17/web-development-tools-and-wikis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How I listen to podcasts (and keep up)</title>
		<link>http://snydersoft.com/2008/12/05/how-i-listen-to-podcasts-and-keep-up/</link>
		<comments>http://snydersoft.com/2008/12/05/how-i-listen-to-podcasts-and-keep-up/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 14:37:06 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[podcasts]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=163</guid>
		<description><![CDATA[I have had a number of discussions recently about podcasts and how I listen to them, or find the time to invest in listening to them.  After these impromptu discussions, I realized that I may have not provided the complete answer to the question.  ]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span> have had a number of discussions recently about podcasts and how I listen to them, or find the time to invest in listening to them.  After these impromptu discussions, I realized that I may have not provided the complete answer to the question.  </p>
<p>To completely answer the question, I am providing this list of ways that I consume podcasts.  One note, I am talking only about the audio podcasts since I use my TiVo to watch the few video podcasts that I subscribe to (TekZilla, Cranky Geeks, Diggnation, etc).</p>
<p>1) In the car, during drive time (most commonly, to/from work).  I have a 20min commute, each way, to work and find that this is the easiest way for me to keep up with my podcasts.  I use the Griffin Technologies iTrip AutoPilot which provides both power and an FM transmitter compatible with my iPhone 3G.  The added benefit is that it provides on the cigarette lighter portion, it provides a Play/Pause, Previous and Next Track buttons.  This allows me to easily stop the podcast, so I don&#8217;t miss anything <img src='http://snydersoft.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> , if I am in a drive thru, or need to focus more on the road/traffic.  <a href="http://www.griffintechnology.com/products/itripautopilot">http://www.griffintechnology.com/products/itripautopilot</a>  I purchased mine at Amazon, but you may find it cheaper elsewhere.  I highly recommend this device, for those that don&#8217;t have a line-in jack on their car stereo.  There is a trick (<a href="http://store.apple.com/us/reviews/TQ045LL/A?fnode=MTY1NDA2MQ&#038;rs=mostUseful">http://store.apple.com/us/reviews/TQ045LL/A?fnode=MTY1NDA2MQ&#038;rs=mostUseful</a>) to allow it to use channels below 88.1 in the US, and that provided me with a single channel that is clear throughout the Cleveland metro area.  I use 87.7, for those interested.</p>
<p>2) Outside, while walking/exercising (most commonly lunchtime walks, or evening walks by myself).  At work they have been promoting this &#8220;know your numbers&#8221; health related consciousness and touting that <a href="http://www.thewalkingsite.com/10000steps.html">walking 10K steps</a> a day is a good way to stay healthy.  In an effort to maintain my health and be a good example, I have been making an effort to get up and walk more around the office as well as taking a daily walk at lunchtime.  This is a perfect opportunity to get some podcast listening done, since I am walking along a dead-end street in the industrial complex that our office is located&#8230; so traffic is light, outside noise is rare, and there are few people out walking at the same time.  I also have been trying to add a walk at night around our housing development.  The typical &#8220;joke&#8221; at this point is that my wife enjoys walking with me while I listen to my podcast and ignore her&#8230;.. Well, to be honest I take these walks by myself.  My wife is on her feet all day keeping up with our two boy’s events, school, and housework.  So she doesn&#8217;t want to take another walk at night, and with winter coming quickly to the Cleveland area right now, she has no interest in going for a walk with it is just 20-30degrees out. </p>
<p>3) Inside, when doing repetitive or &#8220;basic&#8221; tasks (resizing images, website updates, or just un-boxing equipment/etc).  I love my Motorola S9 bluetooth headset for this type of listening.  These headphones allow me to wirelessly listen to my podcasts from my computer (via bluetooth) while I roam around the immediate office area of my desk.  It won&#8217;t work for everyone, but there are times when it is nice to have some background &#8220;news&#8221; going on while I am un-boxing an order of 8x 8port switches, 10x power strips, or sorting through all the cables/equipment that comes back from a demo or tradeshow.  I am not tied to my computer, and I even have enough range to reach the kitchen while still listening to my podcast.  I will say this is probably the &#8220;least&#8221; useful time to listen, and the hardest to make work for most people&#8230; but if you have a job that lends itself to it, and can multi-task in this way it definitely works.</p>
<p>As a bonus, I thought I would also provide the list of podcasts that I am currently listening to at this time.  All of these are available through iTunes and all of these are free.  Most are between 30mins and 1hr of total time per episode and only a couple of them are daily (noted below).</p>
<ol>
<li>Blog &#8211; Stack Overflow<br />
Jeff Atwood (of codinghorror.com) and Joel Spolsky (of joelonsoftware.com) discuss the development of their new programming community, StackOverflow.com.</li>
<li>Buzz Out Load (daily)<br />
Molly Wood, Tom Merritt and producer Jason Howell give you their daily take on what&#8217;s happening in tech news throughout the week.</li>
<li>CNET News Daily Podcast (daily)<br />
The CNET News team brings you this snappy podcast every weekday, covering everything from privacy to processors, iPods to Intel. Charlie Cooper, Leslie Katz, Erica Ogg, and Jennifer Guevin cover the top technology news of the day, and encourage listeners to be a part of the discussion in the forums. </li>
<li>Engadget<br />
The Engadget Podcast, a one stop shop for all your weekly gadget needs. Hear editors from the leading technology blog discuss and dissect the latest news in cell phones, laptops, and more.</li>
<li>Gadgettes<br />
Girl gurus Kelly Morrison, Molly Wood and producer Jason Howell give you the latest on hot gadgets, pop-culture tech, and shopping advice. </li>
<li>gdgt weekly<br />
You may know Peter Rojas and Ryan Block as the guys behind Engadget and Gizmodo, but they&#8217;re back with gdgt &#8211; the ultimate online destination for all things gadgety and electronic. </li>
<li>The InsideRIA Weekly Roundup<br />
Created for web developers and designers, the InsideRIA Weekly Roundup is a news recap on the ever-changing world of Rich Internet Application development, covering all of the major players and technologies, from Adobe to Microsoft, from Ajax to Google Gears and JavaFX, and lots more.</li>
<li>MacBreak Weekly<br />
Get the latest Mac news and views from the top journalists covering Apple today. </li>
<li>net@night<br />
What&#8217;s happening on the &#8216;net right now? Amber MacArthur spends every waking moment combing the net for cool sites, viral videos, and funny and moving moments online. Only a fraction of the stuff she finds makes it to her TV shows on Citytv &#8211; the rest she shares right here with us.</li>
<li>The Onion Radio News (daily)<br />
The Onion Radio News is a daily podcast featuring a short news clip from The Onion&#8217;s award-winning 24-hour radio news network.</li>
<li>Open Web Podcast<br />
Dion Almaer, John Resig, and Alex Russell discuss news and events coming in from the Open Web community.</li>
<li>this WEEK in TECH<br />
Your first podcast of the week is the last word in tech. Join Leo Laporte, Patrick Norton, Kevin Rose, John C. Dvorak, and other tech luminaries in a roundtable discussion of the latest trends in high tech.</li>
<li>Windows Weekly<br />
Windows expert, Paul Thurrott, of the SuperSite for Windows, talks about Windows Vista and more each week on this netcast &#8211; part of the TWiT Netcast Network</li>
</ol>
<p>I highly recommend subscribing to a few podcasts that are of interest to you, and try them out with some of the suggested listening times above.  You will be surprised with the nuggets of information you will hear/find and your ability to keep up with what is happening in the news that interests you without combing every news site.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/12/05/how-i-listen-to-podcasts-and-keep-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated to iPhone software v2.2</title>
		<link>http://snydersoft.com/2008/11/21/updated-to-iphone-software-v22/</link>
		<comments>http://snydersoft.com/2008/11/21/updated-to-iphone-software-v22/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 14:23:45 +0000</pubDate>
		<dc:creator>Jeremy Snyder</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=159</guid>
		<description><![CDATA[I updated my iPhone to software version 2.2 and took some screenshots of the latest features.  You can check them out on my Flickr photostream here:  
http://www.flickr.com/photos/14489567@N06/sets/72157609607880263/
]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span> updated my iPhone to software version 2.2 and took some screenshots of the latest features.  You can check them out on my Flickr photostream here:  </p>
<p><a href="http://www.flickr.com/photos/14489567@N06/sets/72157609607880263/">http://www.flickr.com/photos/14489567@N06/sets/72157609607880263/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/11/21/updated-to-iphone-software-v22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.398 seconds -->
