I built the exact same thing 2 years ago, and then figured out that Inoreader actually already had it in their product. They are disabled by default, probably because this feature is not popular at all.
I built Video Off to reduce autoplay/video distractions.
Background: in Firefox, I can edit user.js and disable specific media codecs, which makes blocking video much easier. Chrome doesn’t provide an equivalent user.js/codec-disable path, so this extension uses MV3 static declarativeNetRequest rules to block common video delivery requests.
No analytics/telemetry. No remote code.
It blocks many common video requests, but it doesn’t claim perfect coverage on every site/player. I’d love feedback on false positives/negatives and breakage cases.
Author here. django-rclone is a Django backup package that delegates everything non-Django to rclone.
The existing solution (django-dbbackup) reimplements a lot: Django Storages for upload, GPG in Python for encryption, gzip for compression, regex for backup listing. django-rclone replaces all of that with rclone subprocesses — rclone rcat for uploads, rclone cat for downloads, rclone sync for media, rclone lsjson for listing. Encryption and compression are handled by configuring rclone crypt and compress remotes.
Database dumps stream directly into rclone via Unix pipes — no temp files written to disk. DB passwords are passed via environment variables instead of CLI arguments (which are visible in ps).
The result is significantly less code. Django-rclone only owns what Django must own: database connectors, management commands, and signals. Everything else — storage abstraction, encryption, compression, incremental sync — is rclone's problem.
Supports PostgreSQL, MySQL/MariaDB, SQLite, MongoDB, and 70+ storage backends via rclone.
I honestly don't know because I never used Copilot. Hopefully we'll have some open source projects that can take one set of configurations and produce similar set of files for others.
reply