reply_comments.py
PulseAugur coverage of reply_comments.py — every cluster mentioning reply_comments.py across labs, papers, and developer communities, ranked by signal.
-
Comment reply pipeline bug: Audit function fails on nested replies
The author discovered a bug in their comment reply pipeline where the `audit()` function failed to detect replies to nested comments. This occurred because `audit()` only checked top-level comments, while the `pending()…
-
DEV.to comment script mangles HTML entities, fix applied
A developer discovered a bug in their Python script, reply_comments.py, which processes comments from DEV.to articles. The script's HTML stripping function was incorrectly leaving HTML entities like '<', '>', and …
-
Developer finds bug where substring match hides comments
A developer discovered a bug in their comment-deduplication script, `reply_comments.py`, where a simple substring check was used instead of a precise header match. This meant that if a comment ID coincidentally appeared…
-
Dev.to API blocks 'urllib' User-Agent substring, not general bots
A developer discovered that dev.to's API blocks requests containing the substring "urllib" in the User-Agent header, rather than blocking based on general bot-like behavior. This was found through testing various User-A…
-
Gitignore rule accidentally hid critical comment tracking file
The author discovered that their `.gitignore` file was unintentionally hiding important data, specifically a file named `drafts/comment_replies.md`. This file is crucial for a pipeline that tracks unreplied comments on …