

I attribute increased radicalization on both sides to the failed promise of electoral reform. By which I mean having FPTP is a main underlying cause, but rug-pulling the opportunity to change it really accelerated things by making the center intolerable.
This problem isn’t going away until we get electoral reform. LPC is what we need in this unique moment, but the fundamentals haven’t changed.
You can use the shorter
.be
url – just only copy up to (not including) the question mark.If you’re disinclined to endure any inconvenience, you can put this in a userscript to strip the tracking code automatically (including what the copy button saves):
const listener = new MutationObserver((mutations, observer) => { // query blindly until found - it's never listed as an addedNode const field = document.querySelector("#share-url"); if(!field) return; field.value = field.value.split("?")[0]; // SPA and navigation events/functions not catching anything, so just listen forever :/ // listener.disconnect(); }); listener.observe(document.body, {childList: true, subtree: true});