Discussion Overview
The discussion revolves around finding an application or method to track updates on websites, specifically for monitoring changes to legislation bills. The focus includes technical approaches and programming solutions.
Discussion Character
- Exploratory
- Technical explanation
- Debate/contested
Main Points Raised
- Andrew inquires about free apps or built-in Windows features to track website updates for legislation bills.
- One participant questions how much of a webpage needs to change for it to be considered "new."
- Warren suggests using HTTP headers, specifically the last-modification timestamp, and proposes a programming solution in Python to track changes by comparing timestamps.
- Another participant notes that certain forum pages do not have modification timestamps due to being dynamically generated by PHP.
- Warren offers an alternative method using the If-Modified-Since header to check for updates based on response codes.
- A later reply acknowledges the limitation of PHP pages showing the access time instead of a modification time, agreeing that the If-Modified-Since method would be effective.
Areas of Agreement / Disagreement
Participants express varying levels of understanding and approaches to the problem, with some agreeing on the technical methods proposed while others raise questions about the feasibility and specifics of implementation. No consensus is reached on a single solution.
Contextual Notes
There are limitations regarding the assumptions about website structures, the nature of dynamic content, and the specifics of HTTP headers that may affect the proposed solutions.