<rss version="2.0">
  	<channel>
  		<title>Nate True's Weblog</title>
  		<link>http://cre.ations.net/$base_path</link>
  		<description>
      Thoughts and musings from Nate True, casual inventor.";
  		</description>
  		<language>en-us</language>
  		<lastBuildDate>Sun, 21 Mar 2010 05:51:26 -0500</lastBuildDate>
  		<pubDate>Sun, 21 Mar 2010 05:51:26 -0500</pubDate>
  		<generator>custom</generator>
  		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
  		<item>
  			<title><![CDATA[SMSNotify - keeps your iPhone vibrating when there's an unread SMS]]></title>
  			<content type='text/html' mode='escaped' xml:lang='en-US'><![CDATA[
<a style='float:right; margin-left: 10px;' href='http://cre.ations.net/blog/post/smsnotify---keeps-your-iphone-vibrating-when-theres-an-unread-sm'><img src='http://cre.ations.net:999/image/160/2433.jpg' /></a>I hate it when someone SMSes me, and I miss the vibration, and I go for hours without checking my phone.  Thus I created SMSNotify, a script that vibrates your iPhone every 15 seconds when you have an unread SMS.<br /><br />The script is quite simple - it just queries the SMS database for unread SMSes, and if there are any, it calls the 'vibrator' utility that vibrates the phone for a short time.<br /><br />It's written in shell script so if you want it to do other things it's easy to modify.<br /><br />Now it's not perfect - when your phone is asleep it won't be every 15 seconds but will wait until the phone silently wakes up (to check your e-mail generally) before it can vibrate again.  I'm working on that.<br /><br />Download it at <a href="http://devices.natetrue.com/iphone/smsnotify.zip">http://devices.natetrue.com/iphone/smsnotify.zip</a> or just wait for it to appear in Installer.app - my good friend <a href='http://blog.psmxy.org'>Shaun Erickson</a> is packaging it up. ...<p><a href='http://cre.ations.net/blog/post/smsnotify---keeps-your-iphone-vibrating-when-theres-an-unread-sm'>Read the rest of this post</a></p>
  			]]></content>
  			<description><![CDATA[
  			 <a style='float:right; margin-left: 10px;' href='http://cre.ations.net/blog/post/smsnotify---keeps-your-iphone-vibrating-when-theres-an-unread-sm'><img src='http://cre.ations.net:999/image/160/2433.jpg' /></a>I hate it when someone SMSes me, and I miss the vibration, and I go for hours without checking my phone.  Thus I created SMSNotify, a script that vibrates your iPhone every 15 seconds when you have an unread SMS.<br /><br />The script is quite simple - it just queries the SMS database for unread SMSes, and if there are any, it calls the 'vibrator' utility that vibrates the phone for a short time.<br /><br />It's written in shell script so if you want it to do other things it's easy to modify.<br /><br />Now it's not perfect - when your phone is asleep it won't be every 15 seconds but will wait until the phone silently wakes up (to check your e-mail generally) before it can vibrate again.  I'm working on that.<br /><br />Download it at <a href="http://devices.natetrue.com/iphone/smsnotify.zip">http://devices.natetrue.com/iphone/smsnotify.zip</a> or just wait for it to appear in Installer.app - my good friend <a href='http://blog.psmxy.org'>Shaun Erickson</a> is packaging it up. ...<p><a href='http://cre.ations.net/blog/post/smsnotify---keeps-your-iphone-vibrating-when-theres-an-unread-sm'>Read the rest of this post</a></p>
  			]]></description>
  			<link>http://cre.ations.net/blog/post/smsnotify---keeps-your-iphone-vibrating-when-theres-an-unread-sm</link>
  			<guid>http://cre.ations.net/blog/post/smsnotify---keeps-your-iphone-vibrating-when-theres-an-unread-sm</guid>
  			<tags>iphone, sms, smsnotify, script, installer, omgadog</tags>
  			<category></category>
  			<pubDate>Wed, 02 Jan 2008 14:07:08 -0600</pubDate>
  		</item>
  		<item>
  			<title><![CDATA[The DHTML thumbnail zooming script: How it works]]></title>
  			<content type='text/html' mode='escaped' xml:lang='en-US'><![CDATA[
<a style='float:right; margin-left: 10px;' href='http://cre.ations.net/blog/post/the-dhtml-thumbnail-zooming-script'><img src='http://cre.ations.net:999/image/160/917.jpg' /></a>I've gotten more than a few responses to the cre.ations.net photo zooming feature.  I really like how trivial it is to click on a photo to see the larger version without having to navigate between pages at all (this is also why no creation on here is paginated).  Many have asked how it works, and here is your answer!<br /><br />From a high-level perspective, here's how it goes down:<br /><li class='richli'>The user clicks on an image.</li><br /><li class='richli'>A script function is run which hides the original image and replaces it with an absolutely positioned image.  This allows the image to 'leave' the normal document flow.</li><br /><li class='richli'>A timer function moves the image stepwise to its final location, in the center of the document as it is currently scrolled.</li><br /><li class='richli'>Focus is transferred to a link hidden off of the top-left corner of the document.  This link will de-zoom the photo when it loses focus.</li><br /><li class='richli'>The user...<p><a href='http://cre.ations.net/blog/post/the-dhtml-thumbnail-zooming-script'>Read the rest of this post</a></p>
  			]]></content>
  			<description><![CDATA[
  			 <a style='float:right; margin-left: 10px;' href='http://cre.ations.net/blog/post/the-dhtml-thumbnail-zooming-script'><img src='http://cre.ations.net:999/image/160/917.jpg' /></a>I've gotten more than a few responses to the cre.ations.net photo zooming feature.  I really like how trivial it is to click on a photo to see the larger version without having to navigate between pages at all (this is also why no creation on here is paginated).  Many have asked how it works, and here is your answer!<br /><br />From a high-level perspective, here's how it goes down:<br /><li class='richli'>The user clicks on an image.</li><br /><li class='richli'>A script function is run which hides the original image and replaces it with an absolutely positioned image.  This allows the image to 'leave' the normal document flow.</li><br /><li class='richli'>A timer function moves the image stepwise to its final location, in the center of the document as it is currently scrolled.</li><br /><li class='richli'>Focus is transferred to a link hidden off of the top-left corner of the document.  This link will de-zoom the photo when it loses focus.</li><br /><li class='richli'>The user...<p><a href='http://cre.ations.net/blog/post/the-dhtml-thumbnail-zooming-script'>Read the rest of this post</a></p>
  			]]></description>
  			<link>http://cre.ations.net/blog/post/the-dhtml-thumbnail-zooming-script</link>
  			<guid>http://cre.ations.net/blog/post/the-dhtml-thumbnail-zooming-script</guid>
  			<tags>image, zoom, script, javascript, dhtml, thumbnail</tags>
  			<category></category>
  			<pubDate>Fri, 09 Mar 2007 09:08:29 -0600</pubDate>
  		</item>	</channel>
    </rss>