▲ 443 ▼ This is what they took from us. (lemmy.world) submitted 3 months ago by ivanafterall@lemmy.world to c/lemmyshitpost@lemmy.world 187 comments fedilink hide all child comments
[–] SCmSTR@lemmy.blahaj.zone 17 points 3 months ago (4 children) Isn't Jiffy a brand of quickbake mixes? In the little blue boxes https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimS-PPpzfKtvuxmHSIAFvrJCKIhDaTJN_u2VqQrexzpYJeyQ67sQEN75TE66rfYIqqYsLa4Lnz3NjXZcOMATO6tlqV2RLE2njqpFeRpHgV9tigS6srbcheYy2o7fRKZbbvmrdyTmkgNVY/s1600/valentine+social+enchiladas+005.JPG permalink fedilink source hideshow 8 child comments replies: [–] exasperation@lemmy.dbzer0.com 14 points 3 months ago (2 children) 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. permalink fedilink source parent hideshow 4 child comments replies: [–] frostysauce@lemmy.world 3 points 3 months ago I assumed Jiffy was a mashup of Jif and Skippy. permalink fedilink source parent [–] vaultdweller013@sh.itjust.works 1 point 3 months ago My money for the Fruit of the Loom cornucopia is that it a good quality bootleg called Fruit of Loom or something that got nuked at some point for copyright infringement. Kinda like all those bootleg Adidas brands. permalink fedilink source parent [–] meekah@discuss.tchncs.de 6 points 3 months ago* (last edited 3 months ago) pro-tip: putting image URLs in your comment like this:  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'); } permalink fedilink source parent [–] codexarcanum@lemmy.dbzer0.com 5 points 3 months ago Yes, Jiffy is a very popular and inexpensive brand of corn bread mix, in groceries all over down here. permalink fedilink source parent [–] Syltti@lemmy.world 2 points 3 months ago This one is a brand of peanut butter, I believe. permalink fedilink source parent
[–] exasperation@lemmy.dbzer0.com 14 points 3 months ago (2 children) 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. permalink fedilink source parent hideshow 4 child comments replies: [–] frostysauce@lemmy.world 3 points 3 months ago I assumed Jiffy was a mashup of Jif and Skippy. permalink fedilink source parent [–] vaultdweller013@sh.itjust.works 1 point 3 months ago My money for the Fruit of the Loom cornucopia is that it a good quality bootleg called Fruit of Loom or something that got nuked at some point for copyright infringement. Kinda like all those bootleg Adidas brands. permalink fedilink source parent
[–] frostysauce@lemmy.world 3 points 3 months ago I assumed Jiffy was a mashup of Jif and Skippy. permalink fedilink source parent
[–] vaultdweller013@sh.itjust.works 1 point 3 months ago My money for the Fruit of the Loom cornucopia is that it a good quality bootleg called Fruit of Loom or something that got nuked at some point for copyright infringement. Kinda like all those bootleg Adidas brands. permalink fedilink source parent
[–] meekah@discuss.tchncs.de 6 points 3 months ago* (last edited 3 months ago) pro-tip: putting image URLs in your comment like this:  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'); } permalink fedilink source parent
[–] codexarcanum@lemmy.dbzer0.com 5 points 3 months ago Yes, Jiffy is a very popular and inexpensive brand of corn bread mix, in groceries all over down here. permalink fedilink source parent
[–] Syltti@lemmy.world 2 points 3 months ago This one is a brand of peanut butter, I believe. permalink fedilink source parent