• 13 Posts
  • 1.46K 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.





  • In June 1973, Led Zeppelin played a legendary concert at Kezar Stadium in San Francisco, where an unforgettable moment took place. As the band performed before over 50,000 fans, white doves were released during the closing of “Stairway to Heaven.” While most of the birds flew off into the crowd, one returned to the stage, landing unexpectedly on Robert Plant’s hand. The scene was striking: Plant, cigarette and drink in hand, calmly held the dove in the other, creating a serene image that contrasted with the band’s electric performance. -source

    Legendary moment from a legendary group.







  • 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.