Skip to content

Instantly share code, notes, and snippets.

View dchmelik's full-sized avatar

David Chmelik dchmelik

View GitHub Profile
@BrendanEich
BrendanEich / user-rt-true-score.js
Last active August 12, 2026 21:19
Brave user scriptlet for showing true popcornmeter ratio
(function() {
'use strict';
const waitForElement = (selector) => {
return new Promise(resolve => {
if (document.querySelector(selector)) return resolve(document.querySelector(selector));
const observer = new MutationObserver(() => {
const el = document.querySelector(selector);
if (el) {
observer.disconnect();
@ruario
ruario / latest-firefox.sh
Last active September 8, 2025 21:27
This script will find the latest Firefox binary package, download it and repackage it into Slackware format.
#!/bin/bash
# latest-firefox Version 1.6.3
# Contributer: drgibbon (thanks!)
# This script will find the latest Firefox binary package, download it
# and repackage it into Slackware format.
# I don't use Firefox for regular browsing but it is handy for
# comparative tests against Vivaldi. :P