I definitely don’t write or talk like that, I may be silly but I’m not an idiot.
zout
- 0 Posts
- 150 Comments
As a 50 year old, my classic emoji’s are actual ascii emoticons.
There is no cash. The price of a stock is just the price the last guy who bought one paid, and does not represent what the company is worth. I suspect (but am to lazy to find out) there isn’t even enough money in circulation to buy all companies at current stock price. AI companies take this to the next level, their companies valuation is already based on nothing, and they promise to buy stuff for large amounts which is taken at face value because the company is worth a lot.
It’s basically owning one hundred euros, selling one eurocent for a hundred dollars to someone and suddenly everyone believes you’re a millionare, so now you can borrow lots of money since you’re good for it being rich and all.
I just realised my brother is Long Sword, so my Giant Sword is definitely better now!
Giant Sword. Not very original.
zout@fedia.ioto
Lemmy Shitpost@lemmy.world•Left the teenage son home. Said he had school work to do.
13·6 days agoThe thumb on the left is pointing the wrong way for this.
I’d say he was white, but some people like to see “Arabs” (is there a better word maybe?) as non-white.
Not gonna lie and say that I’ve never made a racist joke, but these days not anymore. Too many right wingers who think you’re serious.
The best stories have been told 100x
I had a coworker like that, thank god he retired early.
Don’t say that, you’ll only encourage him.
Do not put gumballs in your butt!
C64 with a disk drive, a tape drive, a monitor and a printer? These guys were loaded.
MLK’s strategy worked because he had a big legal team as part of his organistation. He could provoke an arrest (making for photo ops), and have his legal team ready to fight the case they had prepared in advance. His strategy always involved getting sued over something and then fight it in court.
zout@fedia.ioto
Lemmy Shitpost@lemmy.world•plus psychological evaluation, a noterized signature from both parents and 3 months grace period
281·21 days agoYou’d be a billionaire.
zout@fedia.ioto
Lemmy Shitpost@lemmy.world•Talking to ADHD person.you both are switching topics, adding random comments and forget what you talk about but it still makes sense and the talk goes on due to it being natural and easy to you both:
10·21 days agoSure they can recall later, just not at will.
The guy who knows everything on law and order - SVU.
Technically, all air is mostly nitrogen gas.
Your comment triggered me to ask an LLM to create it, and it came up with something. I’m not going to test it though, so we’ll never know if it works. I’d advise anyone not to try it. It gave links to an image and a sound file that gave a 404 error. LLM output:
Here’s a complete Firefox extension that replaces the text “lol” with a TIE Fighter image, plays a sound on hover, and changes the image on click.
🔧 Firefox Extension: “Lol to TIE Fighter”
{ "manifest_version": 2, "name": "Lol to TIE Fighter", "version": "1.0", "description": "Replaces 'lol' with a TIE Fighter image and plays sound on hover.", "permissions": [ "activeScript", "scripting", "https://example.com/*" ], "content_scripts": [ { "matches": ["<all_urls>"], "js": ["content.js"] } ], "background": { "scripts": ["background.js"] }, "options_page": "options.html" }document.addEventListener("DOMContentLoaded", function() { function replaceTextNodesWithImages() { const walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT, null, false); let node; while (node = walker.nextNode()) { if (node.textContent.includes("lol")) { const img = document.createElement("img"); img.src = "https://example.com/tie-fighter.png"; // Replace with your image URL img.style.width = "20px"; img.style.height = "20px"; img.style.display = "inline-block"; img.style.cursor = "pointer"; // Sound on hover img.addEventListener("mouseover", () => playSound()); // Blow up on click img.addEventListener("click", () => blowUp(img)); node.replaceWith(img); } } } replaceTextNodesWithImages(); }); function playSound() { const audio = new Audio("https://example.com/sound.mp3"); // Replace with your sound URL audio.play(); } function blowUp(img) { img.src = "https://example.com/blowup.png"; // Replace with a larger image or "none" img.style.width = "40px"; img.style.height = "40px"; }