<?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>Jon Fox &#187; Random Ideas</title>
	<atom:link href="http://www.jonefox.com/blog/category/random-ideas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jonefox.com/blog</link>
	<description>My rants, ramblings, and random thoughts</description>
	<lastBuildDate>Mon, 16 Jan 2012 14:48:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='www.jonefox.com' port='80' path='/blog/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>One time use email addresses</title>
		<link>http://www.jonefox.com/blog/2011/01/02/one-time-use-email-addresses/</link>
		<comments>http://www.jonefox.com/blog/2011/01/02/one-time-use-email-addresses/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 23:22:21 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Random Ideas]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://jonefox.com/blog/?p=463</guid>
		<description><![CDATA[Recently I threw together a tool to simplify my sign up on other services.  It&#8217;s a script that allows me to use an email address one time, and then ignore all future emails to that address.  I often use it &#8230; <a href="http://www.jonefox.com/blog/2011/01/02/one-time-use-email-addresses/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I threw together a tool to simplify my sign up on other services.  It&#8217;s a script that allows me to use an email address one time, and then ignore all future emails to that address.  I often use it for signing up to new services so that I can get the confirmation email, but not get a bunch of spam / bacon I don&#8217;t really care about.  I set it up with a custom domain so that I can use anything at that domain as an email address.  For example, test1@mycustomdomain.com, test2@mycustomdomain.com, and anotherdumbemail@mycustomdomain.com.</p>
<p>The interesting part of it, though, is that the emails all dump to a PHP script.  This script looks at the email address it was sent to, and checks a database to see if that email address has been seen before or not.  If it hasn&#8217;t, it will forward that email to my &#8220;real&#8221; email address.  If it has, it will ignore it.</p>
<p>This has been super helpful when making test accounts on services too as it&#8217;s easy to get another email address, but I don&#8217;t have to worry about checking a weird email account or getting a bunch of spam afterwards.  Just thought I&#8217;d mention it in case anyone else out there does a lot of this stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonefox.com/blog/2011/01/02/one-time-use-email-addresses/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Email Nag</title>
		<link>http://www.jonefox.com/blog/2010/10/11/email-nag/</link>
		<comments>http://www.jonefox.com/blog/2010/10/11/email-nag/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 01:44:10 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Random Ideas]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://jonefox.com/blog/?p=410</guid>
		<description><![CDATA[I often keep my emails unread until they need no further action from me.  Either they&#8217;re responded to, don&#8217;t require a response, or they&#8217;ve been moved to a todo list of some sort.  Unfortunately I have developed a bad habit &#8230; <a href="http://www.jonefox.com/blog/2010/10/11/email-nag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-412" src="http://jonefox.com/blog/wp-content/uploads/2010/10/reminder-smiley-face.gif" alt="" width="197" height="195" />I often keep my emails unread until they need no further action from me.  Either they&#8217;re responded to, don&#8217;t require a response, or they&#8217;ve been moved to a todo list of some sort.  Unfortunately I have developed a bad habit of leaving emails in this unread limbo a little longer than is reasonable at times.  What usually happens to me is I can&#8217;t act on the email right at the moment I&#8217;m reading it (I need to do something else to respond or I&#8217;m on my mobile device and it&#8217;s a long response I don&#8217;t want to type at the moment) and it ends up going &#8220;below the fold&#8221; and I never get around to responding to it.  Sometimes I&#8217;m days or a week or more late getting back on something simply because it fell through the cracks.</p>
<p>This is not a good habit to have and I hate when people are so slow getting back to me, so I decided I wanted to fix it.  Which lead me to implement my own Email Nag.  It&#8217;s simply a script that runs once a day and checks my inbox for any unread emails.  If an email is older than some threshold (currently 3 days for me) it will send me a new email w/ the date the other email was received, who it&#8217;s from, and the subject line to give me a reminder to take care of the email.  If it goes beyond another threshold (currently 1 week) it will send me a text message with the same info.</p>
<p>I&#8217;ve been using this for 2 weeks or so and it&#8217;s definitely helped me a lot.  It&#8217;s nice to have a reminder so that I don&#8217;t let things drag on too long.  If nothing else the daily reminder helps give me an extra boost to take care of the task to keep from getting another nag later.  Hopefully this will help me fix the problem going forward.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonefox.com/blog/2010/10/11/email-nag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Smaller Portions at Restaurants</title>
		<link>http://www.jonefox.com/blog/2009/01/25/smaller-portions-at-restaurants/</link>
		<comments>http://www.jonefox.com/blog/2009/01/25/smaller-portions-at-restaurants/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 07:21:04 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Random Ideas]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[portion size]]></category>
		<category><![CDATA[restaurant]]></category>

		<guid isPermaLink="false">http://jonefox.com/blog/?p=140</guid>
		<description><![CDATA[I may be crazy, but I would really love to see more portion options at restaurants. Specifically, I think it&#8217;d be really great to see 1/2 or 1/4 size portions available for all entrees on the menu. These could serve &#8230; <a href="http://www.jonefox.com/blog/2009/01/25/smaller-portions-at-restaurants/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I may be crazy, but I would really love to see more portion options at restaurants.  Specifically, I think it&#8217;d be really great to see 1/2 or 1/4 size portions available for all entrees on the menu.  These could serve two primary purposes:</p>
<p>First, many people don&#8217;t want as much food as the default offers.  Maybe I&#8217;m not that hungry tonight&#8230;maybe it&#8217;s just the restaurant has huge portions.  In either case I think a lot of people would like this option.</p>
<p>The second is for people that can&#8217;t decide between multiple dishes or want to have more variety.  I&#8217;ve definitely had occasions where I&#8217;d love to have 2 different entrees and being able to order 2 different 1/2 orders would make a lot of sense to me.</p>
<p>Many other industries are moving to more personalization and more options.  I really think this relatively minor change could have a significant impact on the restaurant business.  Who wouldn&#8217;t love the ability to better customize their portions or mix and match food?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonefox.com/blog/2009/01/25/smaller-portions-at-restaurants/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

