Hi! I'd like to make a program that tells me if a webpage changed from its last "visit". Since I'm quite a beginner I have no idea on how to proceed. I thought to get the html code from the page with libcurl, save it, then compare it with the one it gets in its next visit. But I don't know if it's possible or how. Any hints? Thanks!
Why request the whole page (with GET) when you can request the header alone (with HEAD)? You'll find that most real pages are larger than your 131 byte example.