• 10 Posts
  • 807 Comments
Joined 1 year ago
cake
Cake day: July 28th, 2023

help-circle










  • Clinton left a booming economy and projections to reduce, if not eliminate, the national debt in 10 years. Then came another Bush. Bush left a shitty economy for Obama, through bullshit tax breaks for the rich during a time of bullshit military spending among other dumb actions. Obama fixed things. trump inherited a booming economy from Obama, and slowly (maybe quickly) ruined it through gross incompetence. Biden inherited a shit economy and inflation from that moron, trump. After dealing with fallout from stupid trump policies (that’s being generous), Biden managed to turn things around and the economy was once again doing pretty good. Now that dipshit trump will give his idiot voters and the rest of us another shitty economy that the next Dem will have to try to fix. The wheels on the bus go round and round.






  • Thank you so much. I didn’t even think about Greasemonkey. I went to make a script using your code and it said there was already one available. That script looks like this:

    Edit: Updated script

    (function() {
        'use strict';
    
        var links = document.links;
        for (var i = 0; i < links.length; i++) {
            var referer = links[i].href.indexOf('&u=');
            links[i].href = decodeURIComponent(links[i].href.substr(referer + 3));
        }
    
    })();
    
    

    and it worked fine. Then I replaced that code with yours, and it worked just as well. Thanks again.