How to know when a webpage is updated?

3

2

I'm looking for some way to know when a webpage is updated. This site it's really not very "web 2.0", doesn't have ajax, it seems like plain HTML.

I need a way to get an instant notification when the page is changed/updated.

Is there any app. to do that?

Thanks

emzero

Posted 2012-02-13T17:06:14.537

Reputation: 573

This depends on the browser you're using, why don't you add that into the question? – Rob – 2012-02-13T17:12:02.550

1It's not really possible to get an instant notification. You can just periodically check for updates and ask in very short intervals. But I don't think that's proper behavior on the internet. RSS feeds were invented exactly for problems like this. – Der Hochstapler – 2012-02-13T17:16:12.823

It's just for one specific purpose, I don't mind checking between very short intervals. – emzero – 2012-02-14T17:53:06.373

Answers

3

I ended up using NotiPage

NotiPage is a FREE webpages monitoring software. Once you've configured a monitoring alert related to a specific webpage, NotiPage will automatically check this webpage on a periodic basis until all the set criteria are met. At that time, NotiPage will warn you by a visual and audible alert.

Freeware, lightweight, recently updated. Can check every 1 minute.

emzero

Posted 2012-02-13T17:06:14.537

Reputation: 573

It's empty now. – user4015990 – 2017-04-04T22:40:39.957

4

You can try ChangeDectection:

ChangeDetection.com provides page change monitoring and notification services to internet users worldwide. Anyone can use our service to monitor any website page for changes. Just fill in the form below, we will create a change log for the page and alert you by email when we detect a change in the page text. We've been doing it since 1999. It's free.

climenole

Posted 2012-02-13T17:06:14.537

Reputation: 3 180

Tried to sign-up but I never got the activation email, or maybe it will take some time which makes me doubt about its capacity to send instant mail notifications when a webpage changes. Thanks anyway. – emzero – 2012-02-14T18:21:54.907

0

A FLOSS for GNU/Linux would be Specto.

Specto is a desktop application that will watch configurable events (such as website updates, emails, file and folder changes, system processes, etc) and then trigger notifications.

For example, Specto can watch a website for updates (or a syndication feed, or an image, etc), and notify you when there is activity (otherwise, Specto will just stay out of the way). This changes the way you work, because you can be informed of events instead of having to look out for them. Better than clicking the refresh button on Caturdays, huh?

unor

Posted 2012-02-13T17:06:14.537

Reputation: 2 749

0

GNU/Linux applications available for: Ubuntu, Debian, Fedora from their repositories:

  • urlwatch - Nice, simple, easily customizable (via ~/.urlwatch/urls.txt) Python script, tracking local and remote files. You can even pass POST data and track output of shell commands - see example in ~/.urlwatch/urls.txt.example. Output is in unified diff format. Can be used as job in cron (e.g. e-mail notification). No GUI.
  • specto - Tracks e-mail (POP3, IMAP, and gmail), website changes (RSS & HTML), local files. GUI application.

patryk.beza

Posted 2012-02-13T17:06:14.537

Reputation: 1 131

0

You could write a script which performs wget to retrieve the page and md5checksum to create a hash of the page. Then store the hash and have your script compare the last hash with a timestamp.

steampowered

Posted 2012-02-13T17:06:14.537

Reputation: 2 109