<?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: How can I get an email alert when a web page changes?</title>
	<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes/</link>
	<description>Comments on Ask MetaFilter post How can I get an email alert when a web page changes?</description>
	<pubDate>Sat, 04 Oct 2008 20:00:53 -0800</pubDate>
	<lastBuildDate>Sat, 04 Oct 2008 20:00:53 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How can I get an email alert when a web page changes?</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes</link>	
		<description>I need to automatically refresh a web page and be alerted via email (or run an applescript) when it changes. &lt;br /&gt;&lt;br /&gt; There are a few commercial apps that do this, but they&apos;re Windows based and I&apos;m on a Mac. I&apos;d also prefer something that&apos;s freeware. There&apos;s also a couple Firefox add-ons which will automatically check a page for changes, but none that I&apos;ve found allow for an email alert (or to run an applescript).</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.103424</guid>
		<pubDate>Sat, 04 Oct 2008 19:27:22 -0800</pubDate>
		<dc:creator>tamagosan</dc:creator>
		
			<category>firefox</category>
		
			<category>webpage</category>
		
			<category>automatic</category>
		
			<category>refresh</category>
		
			<category>safari</category>
		
			<category>mac</category>
		
	</item> <item>
		<title>By: plasticbugs</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes#1497968</link>	
		<description>Check out &lt;a href=&quot;http://www.changedetection.com/&quot;&gt;Change Detection&lt;/a&gt;. I think it will do exactly what you need.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103424-1497968</guid>
		<pubDate>Sat, 04 Oct 2008 20:00:53 -0800</pubDate>
		<dc:creator>plasticbugs</dc:creator>
	</item><item>
		<title>By: mysterious1der</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes#1497975</link>	
		<description>&lt;a href=&quot;http://page2rss.com/&quot;&gt;Page2RSS&lt;/a&gt; teamed up with either &lt;a href=&quot;http://www.rssfwd.com&quot;&gt;RSSFwd&lt;/a&gt; or &lt;a href=&quot;http://www.feedblitz.com&quot;&gt;Feedblitz&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103424-1497975</guid>
		<pubDate>Sat, 04 Oct 2008 20:08:56 -0800</pubDate>
		<dc:creator>mysterious1der</dc:creator>
	</item><item>
		<title>By: tamagosan</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes#1497979</link>	
		<description>Unfortunately, those won&apos;t work. I have to automatically refresh the page to stay logged into the site.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103424-1497979</guid>
		<pubDate>Sat, 04 Oct 2008 20:16:49 -0800</pubDate>
		<dc:creator>tamagosan</dc:creator>
	</item><item>
		<title>By: Jeff Howard</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes#1498515</link>	
		<description>Internet Explorer allows you to subscribe to a page as a Favorite, check it on a specific schedule, and e-mail you if there are changes. It&apos;s super easy if you can dig up an old Mac version of IE, and a little more hidden on the PC (you could run it under Parallels).&lt;br&gt;
&lt;br&gt;
My other idea if that doesn&apos;t work is to use Amazon&apos;s Mechanical Turk. Get someone to manually check the page for you two or three times a day.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103424-1498515</guid>
		<pubDate>Sun, 05 Oct 2008 12:45:04 -0800</pubDate>
		<dc:creator>Jeff Howard</dc:creator>
	</item><item>
		<title>By: nicwolff</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes#1498573</link>	
		<description>Run this every few minutes or whatever from cron:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;curl -s http://example.com -b session_id=DEADBEEF | md5 | tee new - | diff -q - old || echo &apos;example.com has changed&apos; | mail -s &apos;IT CHANGED!&apos; your@address.com &amp;amp;&amp;amp; mv new old &amp;amp;&amp;amp; osascript /path/to/your/AppleScript&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
Replace http://example.com with the URL you need to watch, &quot;session_id=DEADBEEF&quot; with whatever cookie name and value your browser has stored for that site, and your@address.com with your e-mail address.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103424-1498573</guid>
		<pubDate>Sun, 05 Oct 2008 14:03:18 -0800</pubDate>
		<dc:creator>nicwolff</dc:creator>
	</item><item>
		<title>By: nicwolff</title>
		<link>http://ask.metafilter.com/103424/How-can-I-get-an-email-alert-when-a-web-page-changes#1498576</link>	
		<description>Oh, you should run &lt;code&gt;curl -s http://example.com -b session_id=DEADBEEF | md5 &amp;gt; old&lt;/code&gt; first to avoid getting an error the first time it checks.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103424-1498576</guid>
		<pubDate>Sun, 05 Oct 2008 14:05:14 -0800</pubDate>
		<dc:creator>nicwolff</dc:creator>
	</item>
	</channel>
</rss>
