<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: good morning, good morning - it's great to stay up late</title>
	<link>http://ask.metafilter.com/42425/good-morning-good-morning-its-great-to-stay-up-late/</link>
	<description>Comments on Ask MetaFilter post good morning, good morning - it's great to stay up late</description>
	<pubDate>Tue, 18 Jul 2006 11:48:24 -0800</pubDate>
	<lastBuildDate>Tue, 18 Jul 2006 11:48:24 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: good morning, good morning - it&apos;s great to stay up late</title>
		<link>http://ask.metafilter.com/42425/good-morning-good-morning-its-great-to-stay-up-late</link>	
		<description>Web-based alarm clock &lt;br /&gt;&lt;br /&gt; To encourage myself to put in daily work on a project at a time when I tend to be idly surfing the net, I&apos;d like some widget that allows me to set an alarm that will activate only if I&apos;m online at that time.  Bonus points if I can customize the alarm sound with an MP3.  I&apos;m using Firefox on a Mac.  Kludges acceptable if nobody has anything that fits my exact bill.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.42425</guid>
		<pubDate>Tue, 18 Jul 2006 11:43:35 -0800</pubDate>
		<dc:creator>nanojath</dc:creator>
		
			<category>alarmclock</category>
		
			<category>web</category>
		
			<category>internet</category>
		
			<category>productivity</category>
		
	</item> <item>
		<title>By: nitsuj</title>
		<link>http://ask.metafilter.com/42425/good-morning-good-morning-its-great-to-stay-up-late#652184</link>	
		<description>Here are some previous questions that might help you out:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://ask.metafilter.com/mefi/37919&quot;&gt;37919&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://ask.metafilter.com/mefi/19391&quot;&gt;19391&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://ask.metafilter.com/mefi/21128&quot;&gt;21128&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://ask.metafilter.com/mefi/36127&quot;&gt;36127&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Hope these help!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.42425-652184</guid>
		<pubDate>Tue, 18 Jul 2006 11:48:24 -0800</pubDate>
		<dc:creator>nitsuj</dc:creator>
	</item><item>
		<title>By: orthogonality</title>
		<link>http://ask.metafilter.com/42425/good-morning-good-morning-its-great-to-stay-up-late#652202</link>	
		<description>Greasemonkey, setTimeout, possibly windowOpen( &quot;file://some/local/mp3.mp3&quot;) if Firefox is set to play mp3s rather than download them. Actually, Greasemonkey probably won&apos;t work here, as it would start a new setTimeout with each page load. &lt;br&gt;
&lt;br&gt;
An extension would work (you&apos;d get multiple instances with multiple browser windows, but you&apos;d either go to the trouble of coding around that (I do this in an extension by having the first window communicate with all subsequent windows)), or more likely you&apos;d just not care, given that the first browser window&apos;s alarm would go off first. &lt;br&gt;
&lt;br&gt;
The code would be dead simple: &lt;br&gt;
function doIt() { windowOpen( &quot;file://some/local/mp3.mp3&quot;) ; ) &lt;br&gt;
var minutesUntilAlarm = 30 ;&lt;br&gt;
&lt;br&gt;
setTimeout( doIt(), 1000 * 60 * minutesUntilAlarm ) ;&lt;br&gt;
&lt;br&gt;
This is untested, of course. As you wanted more features, you could add them to your extension; once it got robust enough, you could let others use it too.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.42425-652202</guid>
		<pubDate>Tue, 18 Jul 2006 11:56:15 -0800</pubDate>
		<dc:creator>orthogonality</dc:creator>
	</item><item>
		<title>By: nanojath</title>
		<link>http://ask.metafilter.com/42425/good-morning-good-morning-its-great-to-stay-up-late#652951</link>	
		<description>Me too stupid for the greasemonkey, &lt;b&gt;orthogonality&lt;/b&gt;... maybe not, but if I start down that road the productivity will vanish completely.  It looks like this question is an orphan so for my own record, so far I&apos;ve come up with one &lt;a href=&quot;http://mac.softpedia.com/get/Utilities/MP3-Alarm-Clock-for-OSX.shtml&quot;&gt;offline&lt;/a&gt; and one &lt;a href=&quot;http://www.tipmonkies.com/2005/05/29/the-firefox-alarm-clock/&quot;&gt;online&lt;/a&gt; solution.  I&apos;da expected at least one person to come out of the woodwork and tell me I just needed to man up and shut off the damn browser.  Maybe I&apos;ll get an egg timer.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.42425-652951</guid>
		<pubDate>Tue, 18 Jul 2006 23:06:15 -0800</pubDate>
		<dc:creator>nanojath</dc:creator>
	</item><item>
		<title>By: Sharcho</title>
		<link>http://ask.metafilter.com/42425/good-morning-good-morning-its-great-to-stay-up-late#653649</link>	
		<description>Check out &lt;a href=&quot;http://www.oblomovka.com/code/webolodeon.php3&quot;&gt;Webolodeon &lt;/a&gt; (also GreaseMonkey, but with simple installation instruction)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.42425-653649</guid>
		<pubDate>Wed, 19 Jul 2006 13:20:32 -0800</pubDate>
		<dc:creator>Sharcho</dc:creator>
	</item>
	</channel>
</rss>
