<?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"
	>

<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>
	<pubDate>Fri, 21 Nov 2008 14:23:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<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</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>
		</item>
		<item>
		<title>Setting up SMTP AUTH under RedHat 7.3 (Linux)</title>
		<link>http://snydersoft.com/2008/10/14/setting-up-smtp-auth-under-redhat-73-linux/</link>
		<comments>http://snydersoft.com/2008/10/14/setting-up-smtp-auth-under-redhat-73-linux/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 17:17:38 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Linux Tips]]></category>

		<category><![CDATA[SysAdmin]]></category>

		<category><![CDATA[auth]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[sendmail]]></category>

		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=156</guid>
		<description><![CDATA[I recently had to configure a Linux machine to require SMTP AUTH so that we could test a new product at Codonics.  So I wanted to provide a little guidance and some insight that I gained while working on this task.
The requirement was &#8220;basic&#8221; SMTP AUTH&#8230; so PLAIN/LOGIN functionality, no need for TLS, and [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span> recently had to configure a Linux machine to require SMTP AUTH so that we could test a new product at <a href="http://www.codonics.com">Codonics</a>.  So I wanted to provide a little guidance and some insight that I gained while working on this task.</p>
<p>The requirement was &#8220;basic&#8221; SMTP AUTH&#8230; so PLAIN/LOGIN functionality, no need for TLS, and use the existing user accounts on the linux machine.  Local email needs to still function (mail from cmd line) but anything from a &#8220;remote&#8221; user would require a username/password to be verified before allowing the machine to send the email.</p>
<p><strong>Notes:</strong><br />
======<br />
1) need to allow sendmail to talk to more than just localhost (allow network connections)<br />
    - firewall (open ports, or disable for testing)<br />
    - &#8220;dnl DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA&#8217;)&#8221; line in the sendmail.mc instead of &#8220;DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA&#8217;)&#8221; &#8230;. adding the dnl in front of the command basically comments it out.</p>
<p>2) need to install from source (for our RedHat 7.3 machine, I used these versions):<br />
    - cyrus-sasl (v1.5.24)<br />
    - sendmail (8.11.6)<br />
    * these versions were selected because they matched the rpms/version that were already installed on machine.  I needed to be rebuild to provide support for PLAIN and LOGIN AUTH methods&#8230; which I understand are not typically available via RPMs.</p>
<p>3) Important lines in the sendmail.mc:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
    define(`confAUTH_OPTIONS&#8217;, `A&#8217;)dnl<br />
    TRUST_AUTH_MECH(`LOGIN PLAIN&#8217;)dnl<br />
    define(`confAUTH_MECHANISMS&#8217;, `LOGIN PLAIN&#8217;)dnl<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
make sure that none of these have a dnl in front of them&#8230; that would cause them to be ignored (considered comments).</p>
<p>4) There needs to be a file: /usr/lib/sasl/Sendmail.conf (note the upper-case S in filename) with the following line (only line):<br />
    - &#8220;pwcheck_method: PAM&#8221;</p>
<p>5) Not sure if this is actually required, but during my travels, I found that I need the file /etc/sasldb to exist and it can only be read/writeable by root so:<br />
    - touch /etc/sasldb (to create it if necessary)<br />
    - chown root:root /etc/sasldb (to change it to owner/group root)<br />
    - chmod 600 /etc/sasldb (to ensure that only root user can read/write file)</p>
<p>6) I did confirm that these changes will only require AUTH on connections from external mail clients (doesn&#8217;t affect mail cmd-line on the host).</p>
<p>7) If you want to test via &#8220;telnet host 25&#8243; the sequence of events would be:<br />
    -> EHLO hostname (doesn&#8217;t matter what you use as hostname)<br />
    -> AUTH LOGIN<br />
    <- 334 VXNlcm5hbWU6<br />
    -> anNueWRlcg== (Base64 encoded username, ie: jsnyder thru the base64 encoder)<br />
    <- 334 UGFzc3dvcmQ6<br />
    -> dGVzdGluZw== (Base64 encoded password for username above)<br />
    <- 235 2.0.0 OK Authenticated (this is a good sign... no need to continue)<br />
    -> QUIT</p>
<p>Useful commands:<br />
==============<br />
    - m4 /etc/mail/sendmail.mc > /etc/sendmail.cf (converts the sendmail.mc file into the necessary sendmail.cf for sendmail to use)</p>
<p>    - sendmail -d0.1 -bv root (shows if SASL support is available in sendmail in the list of &#8220;Compiled with:&#8221; items)</p>
<p>    - sendmail -d0.20 -bv (shows location it is expecting sendmail.cf &#8230; &#8220;Def Conf file:&#8221; line).</p>
<p>    - sendmail -O LogLevel=33 -bs (runs a quick instance of sendmail with logging turned up to level 33, and then you can enter &#8220;ehlo localhost&#8221; and it should give you back the options for the server&#8230; should include the line:  &#8220;250-AUTH LOGIN PLAIN&#8221; when everything is configured correctly).</p>
<p>Helpful Links:<br />
==========<br />
<a href="http://www.jonfullmer.com/smtpauth/saslv1.html">http://www.jonfullmer.com/smtpauth/saslv1.html</a><br />
<a href="http://www.linuxforums.org/forum/servers/5206-smtp-auth-sasl-sendmail-not-getting-along.html">http://www.linuxforums.org/forum/servers/5206-smtp-auth-sasl-sendmail-not-getting-along.html</a><br />
<a href="http://linuxgazette.net/153/misc/lg/smtp_auth_problem.html">http://linuxgazette.net/153/misc/lg/smtp_auth_problem.html</a><br />
<a href="http://www.sendmail.org/~ca/email/cyrus/sysadmin.html">http://www.sendmail.org/~ca/email/cyrus/sysadmin.html</a><br />
<a href="http://lists.freebsd.org/pipermail/freebsd-questions/2003-June/008118.html">http://lists.freebsd.org/pipermail/freebsd-questions/2003-June/008118.html</a><br />
<a href="http://www.sendmail.org/~ca/email/auth.html">http://www.sendmail.org/~ca/email/auth.html</a><br />
<a href="http://www.joreybump.com/code/howto/smtpauth.html">http://www.joreybump.com/code/howto/smtpauth.html</a><br />
<a href="http://linux.derkeiler.com/Mailing-Lists/Fedora/2006-06/msg03793.html">http://linux.derkeiler.com/Mailing-Lists/Fedora/2006-06/msg03793.html</a></p>
<p>Sendmail downloads: <a href="ftp://ftp.sendmail.org/pub/sendmail/past-releases/">ftp://ftp.sendmail.org/pub/sendmail/past-releases/</a></p>
<p>Base64 Encode/Decoder: <a href="http://www.motobit.com/util/base64-decoder-encoder.asp">http://www.motobit.com/util/base64-decoder-encoder.asp</a></p>
<p>Content of my &#8220;sendmail.mc&#8221; file for comparison:<br />
<code><br />
divert(-1)<br />
dnl This is the sendmail macro config file. If you make changes to this file,<br />
dnl you need the sendmail-cf rpm installed and then have to generate a<br />
dnl new /etc/sendmail.cf by running the following command:<br />
dnl<br />
dnl        m4 /etc/mail/sendmail.mc > /etc/sendmail.cf<br />
dnl<br />
include(`/usr/share/sendmail-cf/m4/cf.m4')<br />
VERSIONID(`linux setup for Red Hat Linux')dnl<br />
OSTYPE(`linux')<br />
dnl Uncomment and edit the following line if your mail needs to be sent out<br />
dnl through an external mail server:<br />
dnl define(`SMART_HOST',`smtp.your.provider')<br />
define(`confDEF_USER_ID',``8:12'')dnl<br />
undefine(`UUCP_RELAY')dnl<br />
undefine(`BITNET_RELAY')dnl<br />
define(`LOCAL_RELAY', `mail2.n1.codonics.com')<br />
define(`MAIL_HUB', `mail2.n1.codonics.com.')<br />
define(`SMART_HOST', `mail2.n1.codonics.com')<br />
define(`confAUTO_REBUILD')dnl<br />
define(`confTO_CONNECT', `1m')dnl<br />
define(`confTRY_NULL_MX_LIST',true)dnl<br />
define(`confDONT_PROBE_INTERFACES',true)dnl<br />
define(`PROCMAIL_MAILER_PATH',`/usr/bin/procmail')dnl<br />
define(`ALIAS_FILE', `/etc/aliases')dnl<br />
dnl define(`STATUS_FILE', `/etc/mail/statistics')dnl<br />
define(`UUCP_MAILER_MAX', `2000000')dnl<br />
define(`confUSERDB_SPEC', `/etc/mail/userdb.db')dnl<br />
define(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun')dnl<br />
define(`confAUTH_OPTIONS', `A')dnl<br />
TRUST_AUTH_MECH(`LOGIN PLAIN')dnl<br />
define(`confAUTH_MECHANISMS', `LOGIN PLAIN')dnl<br />
dnl define(`confTO_QUEUEWARN', `4h')dnl<br />
dnl define(`confTO_QUEUERETURN', `5d')dnl<br />
dnl define(`confQUEUE_LA', `12')dnl<br />
dnl define(`confREFUSE_LA', `18')dnl<br />
dnl FEATURE(delay_checks)dnl<br />
FEATURE(`no_default_msa',`dnl')dnl<br />
FEATURE(`smrsh',`/usr/sbin/smrsh')dnl<br />
FEATURE(`mailertable',`hash -o /etc/mail/mailertable.db')dnl<br />
FEATURE(`virtusertable',`hash -o /etc/mail/virtusertable.db')dnl<br />
FEATURE(redirect)dnl<br />
FEATURE(always_add_domain)dnl<br />
FEATURE(use_cw_file)dnl<br />
FEATURE(use_ct_file)dnl<br />
dnl The '-t' option will retry delivery if e.g. the user runs over his quota.<br />
FEATURE(local_procmail,`',`procmail -t -Y -a $h -d $u')dnl<br />
FEATURE(`access_db',`hash -o /etc/mail/access.db')dnl<br />
FEATURE(`blacklist_recipients')dnl<br />
EXPOSED_USER(`root')dnl<br />
dnl This changes sendmail to only listen on the loopback device 127.0.0.1<br />
dnl and not on any other network devices. Comment this out if you want<br />
dnl to accept email over the network.<br />
dnl DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')<br />
dnl NOTE: binding both IPv4 and IPv6 daemon to the same port requires<br />
dnl       a kernel patch<br />
dnl DAEMON_OPTIONS(`port=smtp,Addr=::1, Name=MTA-v6, Family=inet6')<br />
dnl We strongly recommend to comment this one out if you want to protect<br />
dnl yourself from spam. However, the laptop and users on computers that do<br />
dnl not have 24x7 DNS do need this.<br />
FEATURE(`accept_unresolvable_domains')dnl<br />
dnl FEATURE(`relay_based_on_MX')dnl<br />
MAILER(smtp)dnl<br />
MAILER(procmail)dnl<br />
Cwlocalhost.localdomain<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/10/14/setting-up-smtp-auth-under-redhat-73-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone Stats (first 8-weeks)</title>
		<link>http://snydersoft.com/2008/09/26/iphone-stats-first-8-weeks/</link>
		<comments>http://snydersoft.com/2008/09/26/iphone-stats-first-8-weeks/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 14:01:56 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[usage]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=154</guid>
		<description><![CDATA[Ok, this is the last post on the topic&#8230; but I thought I would share my usage, and see what interesting conclusions may be drawn from the numbers.
Songs: 524
Videos: 0
Photos: 18
Capacity: 14.6 GB
Available: 11.7 GB
Call Time
=======
Call Time: 5hrs and 58mins
Cellular Network Data
================
Sent: 7.8 MB
Received: 123 MB
Based on these numbers, here are some basic averages (based [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">O</span>k, this is the last post on the topic&#8230; but I thought I would share my usage, and see what interesting conclusions may be drawn from the numbers.</p>
<p>Songs: 524<br />
Videos: 0<br />
Photos: 18<br />
Capacity: 14.6 GB<br />
Available: 11.7 GB</p>
<p>Call Time<br />
=======<br />
Call Time: 5hrs and 58mins</p>
<p>Cellular Network Data<br />
================<br />
Sent: 7.8 MB<br />
Received: 123 MB</p>
<p>Based on these numbers, here are some basic averages (based on 58 days):<br />
phone conversation a day:  6.1 up slightly from the first 4-week average of 5.2 mins<br />
data sent per day: 0.134 up slightly from 0.114 MB<br />
data received per day: 2.120MB up modestly from 1.828 MB </p>
<p>Couple of observations&#8230; I have &#8220;settled&#8221; into a routine with the device.  I purchased the <a href="http://www.griffintechnology.com/products/itripautopilot">Griffin Technologies iTrip AutoPilot</a> and have been listening to podcasts (tWiT, BOL, the404, StackOverflow, gdgt weekly, OpenWebPodcast) during commute.  This unit (model 4046-TRPAUTOC) supports charging the phone + FM transmitter, with the extra benefit of Prev/Next/Play&#038;Pause all on the lighter-plug (very useful!).  </p>
<p>Apps installed:</p>
<ul>
<li>Pandora Radio</li>
<li>ShifD</li>
<li>AIM (just in case)</li>
<li>Twittelator</li>
<li>BreakLite</li>
<li>LumenLite</li>
<li>Apple iTunes Remote</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/09/26/iphone-stats-first-8-weeks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone Stats (first 4-weeks)</title>
		<link>http://snydersoft.com/2008/08/26/iphone-stats-first-4-weeks/</link>
		<comments>http://snydersoft.com/2008/08/26/iphone-stats-first-4-weeks/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 14:24:16 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[usage]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=99</guid>
		<description><![CDATA[After 4 weeks with my iPhone 3G, I thought I would share some of the statistics that the phone has been keeping on my usage:
Songs: 520
Videos: 0
Photos: 18
Capacity: 14.6 GB
Available: 11.8 GB
Call Time
=======
Call Time: 2hrs and 25mins
Cellular Network Data
================
Sent:        3.2 MB
Received: 51.2 MB
Based on these numbers, here are [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">A</span>fter 4 weeks with my iPhone 3G, I thought I would share some of the statistics that the phone has been keeping on my usage:</p>
<p>Songs: 520<br />
Videos: 0<br />
Photos: 18<br />
Capacity: 14.6 GB<br />
Available: 11.8 GB</p>
<p>Call Time<br />
=======<br />
Call Time: 2hrs and 25mins</p>
<p>Cellular Network Data<br />
================<br />
Sent:        3.2 MB<br />
Received: 51.2 MB</p>
<p>Based on these numbers, here are some basic averages (based on 28 days):<br />
5.2 mins of phone conversation a day<br />
0.114 MB data sent a day<br />
1.828 MB data received a day</p>
<p>I have found, that I am using it primarily for reading email and rss feeds (google-reader), and was keeping up with the Olympics news on it as well.  I also use the music a fair amount, and I am hoping to find a couple of good podcasts that I can listen to on the commute time (to learn something while I drive :-).</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/08/26/iphone-stats-first-4-weeks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Netscape 7.2 Email Client and Internet Explorer Browser</title>
		<link>http://snydersoft.com/2008/08/18/netscape-72-email-client-and-internet-explorer-browser/</link>
		<comments>http://snydersoft.com/2008/08/18/netscape-72-email-client-and-internet-explorer-browser/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 18:50:39 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Windows Tips]]></category>

		<category><![CDATA[email]]></category>

		<category><![CDATA[ie]]></category>

		<category><![CDATA[Internet Explorer]]></category>

		<category><![CDATA[netscape]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=94</guid>
		<description><![CDATA[I realize that many have already migrated to another program for email (instead of Netscape 7.2).  However, I was asked to solve the problem of getting Netscape 7.2 email to open links in IE 7 that required a non-obvious answer (and some googling).
I am documenting it here, incase someone else wants to do the [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span> realize that many have already migrated to another program for email (instead of Netscape 7.2).  However, I was asked to solve the problem of getting Netscape 7.2 email to open links in IE 7 that required a non-obvious answer (and some googling).</p>
<p>I am documenting it here, incase someone else wants to do the same thing.</p>
<p>Basically, you need to edit the prefs.js file for Netscape (C:\Documents and Settings\*username*\Application Data\Mozilla\Profiles\default\*.slt\prefs.js)</p>
<p>Adding the following lines:</p>
<blockquote><p><code>user_pref("network.protocol-handler.app.http", "iexplore.exe");<br />
user_pref("network.protocol-handler.app.https", "iexplore.exe");<br />
user_pref("network.protocol-handler.expose.http", false);<br />
user_pref("network.protocol-handler.expose.https", false);<br />
</code></p></blockquote>
<p>Also, important to note that you need to have Netscape closed when editing this file&#8230; otherwise the changes will not take effect.  Easiest way to ensure this, make sure that netscp.exe isn&#8217;t running in Task manager.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/08/18/netscape-72-email-client-and-internet-explorer-browser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My iPhone 3G</title>
		<link>http://snydersoft.com/2008/08/12/my-iphone-3g/</link>
		<comments>http://snydersoft.com/2008/08/12/my-iphone-3g/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 13:24:43 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[iphone 3g]]></category>

		<category><![CDATA[owner]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=89</guid>
		<description><![CDATA[This post a long overdue&#8230; only if you were following my tweets, would you have known.  I placed the order for my iPhone (16GB Black model) on the Monday after the crazy Friday they went on sale.  I obviously, had to do the direct fulfillment at the ATT store in Strongsville (near work) [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">T</span>his post a long overdue&#8230; only if you were following my tweets, would you have known.  I placed the order for my iPhone (16GB Black model) on the Monday after the crazy Friday they went on sale.  I obviously, had to do the direct fulfillment at the ATT store in Strongsville (near work) since they were sold out by Monday. </p>
<p><img src="http://snydersoft.com/wp-content/uploads/2008/08/apple-iphone3g.jpg" alt="" title="apple-iphone3g" width="350" height="186" class="aligncenter size-full wp-image-92" /></p>
<p>The phone arrived to the ATT store on July 25th, but I was on a plane to Texas when it was delivered.  So I had to wait until Tuesday the 29th in the evening to pick it up.  First impressions (like so many others)&#8230;. WOW, Apple does a great job with first impressions of the device (from opening the box to the installed apps/etc, web access, emails, etc).</p>
<p>I have been using the iPhone 3G now for about two weeks, and it (and it&#8217;s data plan) have changed the way I use my cell phone.  I definitely appreciate having internet and gps just about anywhere&#8230; especially when I have that 15-30mins of downtime while the boys are at an activity or wrapping up something.  I enjoy being able to tweet, read blogs with Google Reader, and get a quick update of my emails while out and about.  I imagine (tho haven&#8217;t needed yet) the GPS could be handy especially with google maps to find where I am in a different city (and locations for food/products).</p>
<p>List of apps that I have installed so far:</p>
<ul>
<li>Pandora (streaming music)</li>
<li>SHIFD (shifting notes/links/locations between devices)</li>
<li>AIM (instant messaging client, haven&#8217;t really used/needed)</li>
<li>Twittelator (twitter client)</li>
<li>JawBreaker (game)</li>
</ul>
<p>I also have a link on the apps page(s) to take me to the Yahoo! Olympics pages to the Medal count and latest news from the 2008 Beijing Games.  So that I can keep up with the Olympics.</p>
<p>Nit-piks</p>
<ul>
<li>Installed Apps are stopped when you switch to &#8220;home&#8221; or other app (Makes Pandora use a little less than ideal&#8230;. the iPod app, allows you to keep the music going)</li>
<li>Safari can only really have 8 windows open at once (this is probably a good thing, and forces me to bookmark or email off pages that I am reading and want to keep open longer).  Just not an obvious limitation until you run into it&#8230; and you can&#8217;t open any more links because you hit the max &#8220;window&#8221; count of Safari.</li>
<li>Camera app, button location for taking the picture is centered right above the &#8220;home&#8221; button&#8230;. and I invariably hit &#8220;home&#8221; instead of take a picture.  So then I have to wait for the camera app to start up again before I can take the picture I wanted (this time being careful to press the button on the screen and not the &#8220;home&#8221; button).  This is probably just a &#8220;getting used&#8221; to the device quirk, I hope.</li>
<li>switching between landscape and portrait mode isn&#8217;t flawless&#8230;. either it doesn&#8217;t switch or it takes longer than I think it should to realize I wanted it to switch to landscape mode.</li>
<li>Can&#8217;t get ipod/pandora music out via bluetooth to my Motorola S9 headset.  Apple seems to have decided that the only time you need bluetooth audio is while on a phone call.  So there is no A2DP or AVRCP functionality in the bluetooth stack on the iPhone 3G.</li>
<li>The vibrate feature doesn&#8217;t seem to be &#8220;enough&#8221; to realize there is an incoming call.  I am not sure if it is me, or something with the phone, but I have missed more calls with this phone in two weeks than I ever did with my HTC 8125.  And I have always left my phone in vibrate&#8230; so I thought I was &#8220;trained&#8221; to respond to the vibration.  Possibility is the issue isn&#8217;t the phone but more likely the case.  Another possibility is that it is actually the reception with 3G and this phone&#8230;. and I am not getting the call through&#8230; but later getting the notification I missed the call (and new voicemail).  I am going to be watching this one more closely, and may need to turn on the ringer for a while to see if I can pinpoint the cause.</li>
</ul>
<p>So all in all, it is a great device and offers me a number of features/functionality that make me more productive in those &#8220;in-between&#8221; moments and also a little more connected.  The reception/missed calls issue is really the only significant issue and I am hopeful that it can be resolved with placement of the case, or very low ringer.  I am hopeful that Apple will consider implementing more bluetooth functionality, as well as the ability to have *some* apps at least run in the background so that you can multitask more on the device.  Otherwise, I am very happy with my new iPhone.</p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/08/12/my-iphone-3g/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Removing a couple of nuisance icons from &#8220;My computer&#8221;</title>
		<link>http://snydersoft.com/2008/08/05/removing-a-couple-of-nuisance-icons-from-my-computer/</link>
		<comments>http://snydersoft.com/2008/08/05/removing-a-couple-of-nuisance-icons-from-my-computer/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 17:28:49 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Windows Tips]]></category>

		<category><![CDATA[MyComputer]]></category>

		<category><![CDATA[MySharingFolders]]></category>

		<category><![CDATA[NeroScout]]></category>

		<category><![CDATA[Removal]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=87</guid>
		<description><![CDATA[How to remove &#8220;Nero Scout&#8221; from &#8220;My Computer&#8221; [Link]
This command worked for me:
	regsvr32 /u "%commonprogramfiles%\Ahead\Lib\MediaLibraryNSE.dll"
How to remove &#8220;My Sharing Folders&#8221; from &#8220;My Computer&#8221; [Link]
This command worked for me:
	regsvr32 /u "C:\Program Files\Windows Live\Messenger\fsshext.8.5.1302.1018.dll" 
]]></description>
			<content:encoded><![CDATA[<p><span class="drop">H</span>ow to remove &#8220;Nero Scout&#8221; from &#8220;My Computer&#8221; [<a href="http://djlizard.net/2005/12/11/108/">Link</a>]</p>
<p>This command worked for me:<br />
	<code>regsvr32 /u "%commonprogramfiles%\Ahead\Lib\MediaLibraryNSE.dll"</code></p>
<p>How to remove &#8220;My Sharing Folders&#8221; from &#8220;My Computer&#8221; [<a href="http://www.winhelponline.com/articles/51/1/How-to-remove-My-Sharing-Folders-from-My-Computer.html">Link</a>]</p>
<p>This command worked for me:<br />
	<code>regsvr32 /u "C:\Program Files\Windows Live\Messenger\fsshext.8.5.1302.1018.dll" </code></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/08/05/removing-a-couple-of-nuisance-icons-from-my-computer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Signs of Spring!</title>
		<link>http://snydersoft.com/2008/04/23/signs-of-spring/</link>
		<comments>http://snydersoft.com/2008/04/23/signs-of-spring/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 17:00:43 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2008/04/23/signs-of-spring/</guid>
		<description><![CDATA[
 
 
 
  YellowBushes
  
  Originally uploaded by jeremysnyder
 

While I was walking the other day, I took this picture of some bushes that are along the drive here at work.  I enjoyed seeing such vibrant colors so early in spring.  Enjoy!

]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://www.flickr.com/photos/14489567@N06/2436991064/" title="photo sharing"><img src="http://farm3.static.flickr.com/2097/2436991064_b50b508e6c_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
 <br />
 <span style="font-size: 0.9em; margin-top: 0px;"><br />
  <a href="http://www.flickr.com/photos/14489567@N06/2436991064/"><span class="drop">Y</span>ellowBushes</a><br />
  <br />
  Originally uploaded by <a href="http://www.flickr.com/people/14489567@N06/">jeremysnyder</a><br />
 </span>
</div>
<p>While I was walking the other day, I took this picture of some bushes that are along the drive here at work.  I enjoyed seeing such vibrant colors so early in spring.  Enjoy!<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/04/23/signs-of-spring/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cleveland Indians vs Oakland Athletics (April 13th)</title>
		<link>http://snydersoft.com/2008/04/14/cleveland-indians-vs-oakland-athletics-april-13th/</link>
		<comments>http://snydersoft.com/2008/04/14/cleveland-indians-vs-oakland-athletics-april-13th/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 07:00:28 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://snydersoft.com/2008/04/14/cleveland-indians-vs-oakland-athletics-april-13th/</guid>
		<description><![CDATA[Here are some pictures I took with my phone of our first trip this year to see the Indians play.  It was a bitter cold day and we were watching a good part of the game as snow was falling.  The Tribe was able to pull out a (7-1) win against the A&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">H</span>ere are some pictures I took with my phone of our first trip this year to see the Indians play.  It was a bitter cold day and we were watching a good part of the game as snow was falling.  The Tribe was able to pull out a (7-1) win against the A&#8217;s on Sunday (April 13th).</p>
</p>
<p>Pictures of the field, and family:</p>
<p><div style=""><a href="http://www.flickr.com/photos/14489567@N06/2413464342/" target="_blank"><img src="http://farm3.static.flickr.com/2100/2413464342_275b073449_m.jpg" width="240" height="180" alt="IMAGE_00096.jpg" border="0"></a><a href="http://www.flickr.com/photos/14489567@N06/2412638297/" target="_blank"><img src="http://farm3.static.flickr.com/2260/2412638297_61d73e8170_m.jpg" width="240" height="180" alt="IMAGE_00095.jpg" border="0"></a></div>
<div style=""><a href="http://www.flickr.com/photos/14489567@N06/2413464168/" target="_blank"><img src="http://farm3.static.flickr.com/2330/2413464168_21e35fa208_m.jpg" width="240" height="180" alt="IMAGE_00099.jpg" border="0"></a><a href="http://www.flickr.com/photos/14489567@N06/2413464412/" target="_blank"><img src="http://farm3.static.flickr.com/2177/2413464412_59cebc0a2f_m.jpg" width="240" height="180" alt="IMAGE_00098.jpg" border="0"></a><a href="http://www.flickr.com/photos/14489567@N06/2413464202/" target="_blank"><img src="http://farm3.static.flickr.com/2268/2413464202_76f353b645_m.jpg" width="240" height="180" alt="IMAGE_00093.jpg" border="0"></a></div>
<div style=""><a href="http://www.flickr.com/photos/14489567@N06/2413464382/" target="_blank"><img src="http://farm3.static.flickr.com/2407/2413464382_4f39a817e6_m.jpg" width="240" height="180" alt="IMAGE_00097.jpg" border="0"></a><a href="http://www.flickr.com/photos/14489567@N06/2413464226/" target="_blank"><img src="http://farm4.static.flickr.com/3251/2413464226_91191abbeb_m.jpg" width="240" height="180" alt="IMAGE_00094.jpg" border="0"></a></div></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/04/14/cleveland-indians-vs-oakland-athletics-april-13th/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove Snapz Pro X&#8217;s splash screen</title>
		<link>http://snydersoft.com/2008/04/12/remove-the-snapz-pro-xs-splash-screen/</link>
		<comments>http://snydersoft.com/2008/04/12/remove-the-snapz-pro-xs-splash-screen/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 20:05:57 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
		
		<category><![CDATA[MacOSX Tips]]></category>

		<category><![CDATA[ambrosia]]></category>

		<category><![CDATA[MacOSX]]></category>

		<category><![CDATA[snapz]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://snydersoft.com/?p=83</guid>
		<description><![CDATA[Ever since installing Snapz Pro X, I have been interested in turning off the splash screen that appears every time I startup my MacBook.  Today, I took the time to do a little digging at Ambrosia Software&#8217;s website and found the FAQ that answers my question:
Can I get rid of the Splash Screen?
Which provided [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">E</span>ver since installing Snapz Pro X, I have been interested in turning off the splash screen that appears every time I startup my MacBook.  Today, I took the time to do a little digging at Ambrosia Software&#8217;s website and found the FAQ that answers my question:</p>
<p><a href="http://www.ambrosiasw.com/support/faqs/faq.php?forum=75&#038;title=Snapz%20Pro%20X&#038;version=2.1.0&#038;link=utilities/snapzprox/#142">Can I get rid of the Splash Screen?</a></p>
<p>Which provided the following solution, open a terminal and type in the following:<br />
<code>defaults write com.ambrosiasw.snapz SkipSplashScreen true</code></p>
]]></content:encoded>
			<wfw:commentRss>http://snydersoft.com/2008/04/12/remove-the-snapz-pro-xs-splash-screen/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

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