this post was submitted on 27 Apr 2026
316 points (95.9% liked)

Lemmy Shitpost

39552 readers
3205 users here now

Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.

Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means:

-No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...

If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.


Also check out:

Partnered Communities:

1.Memes

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

10.LinuxMemes (Linux themed memes)


Reach out to

All communities included on the sidebar are to be made in compliance with the instance rules. Striker

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] SCmSTR@lemmy.blahaj.zone 8 points 14 hours ago (4 children)
[–] exasperation@lemmy.dbzer0.com 5 points 3 hours ago

I think a lot of these can be explained as wires being crossed with mixed memories. Memories of the Jiffy boxes in the cupboard next to Jif peanut butter might have mixed things up to where people misremember whether there was ever a Jiffy peanut butter.

Chick-fil-A, same thing. Being a kid and thinking "wow that's a weird way to spell it" about the "fil-A" part and somehow blending it into believing it was about the "Chick" part. Looney Tunes, Froot Loops, Berenstain Bears, all similar processes.

The Sinbad Shazaam movie is almost certainly a mashup of a memories of Shaq's Kazaam, the Sinbad cartoon movie from 1992, and Sinbad dressing like a Mediterranean/middle eastern pirate in All That.

The thing I cannot explain, though, is the Fruit of the Loom cornucopia. I remember it that way, and I can't find anything like that.

[–] meekah@discuss.tchncs.de 5 points 7 hours ago* (last edited 4 hours ago)

pro-tip: putting image URLs in your comment like this: ![](URL) makes the image show up in your comment rather than just the URL

I ended up making a quick tampermonkey script to convert image links to image elements


this probably needs some work on the isImageUrl function but it works for this instance at least haha

(function() {
    Array.from(document.querySelectorAll('a')).filter(e => isImageUrl(e.href)).forEach(imageLink => {
        var imageElement = document.createElement('img');
        imageElement.src = imageLink.href;
        imageLink.after(imageElement);
        imageLink.style.display = 'none'
    });
})();

function isImageUrl(input){
    var url = new URL(input.toLowerCase());
    return url.pathname.endsWith('.jpg')
        || url.pathname.endsWith('.png')
        || url.pathname.endsWith('.gif');
}

oh and I guess it needs to be re-executed for when more comments are loaded by scrolling. in that case the already created image elements would double up, but you could just delete the original image link... it is quick and dirty after all

edit: V2 is here

(function() {
    console.log('script loaded');
    setInterval(findAndReplaceImageLinks, 10);
})();

function findAndReplaceImageLinks(){
    Array.from(document.querySelectorAll('a')).filter(e => isImageUrl(e.href)).forEach(imageLink => {
        if (imageLink.classList == 'fst-italic link-dark link-opacity-75 link-opacity-100-hover'){ return; }

        //console.log(imageLink)
        var imageElement = document.createElement('img');
        imageElement.src = imageLink.href;
        imageLink.after(imageElement);
        imageLink.remove();
        console.log('image replaced');
    });
}

function isImageUrl(input){
    var url = new URL(input.toLowerCase());
    return url.pathname.endsWith('.jpg')
        || url.pathname.endsWith('.png')
        || url.pathname.endsWith('.gif');
}

[–] codexarcanum@lemmy.dbzer0.com 4 points 7 hours ago

Yes, Jiffy is a very popular and inexpensive brand of corn bread mix, in groceries all over down here.

[–] Syltti@lemmy.world 2 points 8 hours ago

This one is a brand of peanut butter, I believe.