2025.02.01 22:51 TechnicalExternal963 Julia Louis-Dreyfus
submitted by TechnicalExternal963 to CelebPortraits [link] [comments] |
2025.02.01 22:51 The-True-Auditor Angela's Siblings
submitted by The-True-Auditor to TheOdysseyHadAPurpose [link] [comments] |
2025.02.01 22:51 nobblers Why was the content nuke deleted from r/videos?
anybody knows? It seems like the mods don't like it or to political?
submitted by nobblers to h3h3productions [link] [comments]
2025.02.01 22:51 Additional-Web2835 [wts] Osprey Aether 55 S/M Men’s
$200 shipped (in the US) Basically new. Bought in 2023 from REI for 295. Used on two overnight trips before I was gifted another pack which I prefer. Don’t need two. Literally nothing wrong with it. submitted by Additional-Web2835 to GearTrade [link] [comments] |
2025.02.01 22:51 OfficialLucerio Drop YOUR gd pickup lines in the comments
she jet on my pack so we ball
submitted by OfficialLucerio to geometrydash [link] [comments]
2025.02.01 22:51 pietrodayoungas What dinosaurs are these?
I found these on a trey the explainer video but i coundnt figure out what he said, i only heard that one had "venator" on its name and the other had "dromaeos", this is apparentally some found skin and feather impression map thing, im surprised i didint find anything about the second one because if we actually found skin and feathers of its whole body why isnt it everywhere
submitted by pietrodayoungas to Dinosaurs [link] [comments]
2025.02.01 22:51 Excellent-Plastic638 Dad had prostate radical prostatectomy yesterday. All nerves were spared and cancer contained. He is 55 years old, mostly healthy, bit overweight (10-20LB). I wanted to see what a recovery timeline looks like day by day for the first few, then for the next few weeks, and then about a year out.
Let me know what tips you have and help with understanding day by day, first few weeks, few months, and then year out.
submitted by Excellent-Plastic638 to ProstateCancer [link] [comments]
2025.02.01 22:51 PuddingaLaModeCookie Is this too weird for school?
I ordered that choker I was talking abt a while ago but now that it came I’m worried about wearing it to school, would I be too weird to wear to school? Since I can’t post images here I’ll post it on my profile if you wanna see. If it’s too weird I’ll just rip it and use the bone part for a keychain.
submitted by PuddingaLaModeCookie to teenagers [link] [comments]
2025.02.01 22:51 sqssml Please help - which cards are worth grading?
I found my Pokémon card collection from my teenage. Which cards are worth grading? Is there anything valuable? Please help, I’m not enough into it. Thank you! submitted by sqssml to Pokemoncardappraisal [link] [comments] |
2025.02.01 22:51 Timely-Mongoose-6872 Can Algae be removed with water changes alone?
Went on vacation and had a major algae bloom the weeks after I got back. Bloom cause a ton of plant diatom build up. Parameters have now stabilized but I'm wondering if continued water changes alone will remove the algae or if mechanical assistance will be needed. submitted by Timely-Mongoose-6872 to PlantedTank [link] [comments] |
2025.02.01 22:51 Intelligent-Help-924 Fanzell wasted potential
Fanzell happened to have a great role of Asta's developments as swordsman but he barely appeared in the series besides the Novels, the Witches Forest arc (which in the manga they debuted out of nowhere , of course , for those who didn’t read the novel). And considering his uses wind wind magic in tandem with with swordplay, imagine the dynamics he could’ve had if he appeared more, especially with Yuno.
submitted by Intelligent-Help-924 to BlackClover [link] [comments]
2025.02.01 22:51 Reasonable_Voice_997 This is my personal favourite. Here comes the inquisitor.
submitted by Reasonable_Voice_997 to babylon5 [link] [comments] |
2025.02.01 22:51 Relsen How this code is supposed to work?
Someone gave me a code to the character chat, said that someone gave it to them and that I just needed to raplace the words I wanted and it would make the AI replace words and phrases with others and stop using them.
So I tried to use it to remove from the chat all the words and phrases I wanted to, I just replaced the words between " on the good and evil section.
Problem is... it doesn't work, and it seems to be doing nothing at all.
How is this supposed to work? What can I do?
// There is no 'oc.thread.off', custom code events are attached only *once* after opening the thread. // Default, if `oc.thread.customData.desiredTone` has not been set yet // (e.g. new threads) if (!oc.thread.customData.desiredTone) { oc.thread.customData.desiredTone = 'evil' } // Define the whisper replacements for both good and evil tones const whisperReplacements = { evil: { "Ah": "Shut the fuck up!", "Ah,": "Shut the fuck up!", "Ah, the": "Shut the fuck up!", "Lets not get ahead of ourselves": "Shut the fuck up!", "Ahead of": "Shut the fuck up!", "How quaint": "Shut the fuck up!", "Quaint": "Shut the fuck up!", "Indeed": "Yes", "Maybe just maybe": "Maybe", "Maybe, just maybe": "Maybe", "Stark contrast": "Shut the fuck up!", "You say?": "Shut the fuck up!", "Sweet sound of": "Shut the fuck up!", "Young love": "Shut the fuck up!", "Heard whispers": "Shut the fuck up!", "Escapades": "Shut the fuck up!", "Exploits": "Shut the fuck up!", "Humble abode": "Shut the fuck up!", "Neck of the woods": "Shut the fuck up!", }, good: { "Ah": "Shut the fuck up!", "Ah,": ""Shut the fuck up!", "Ah, the": "Shut the fuck up!",, "Lets not get ahead of ourselves": "Shut the fuck up!", "Ahead of": "Shut the fuck up!", "How quaint": "Shut the fuck up!",, "Quaint": "Shut the fuck up!", "Indeed": "Yes", "Maybe just maybe": "Maybe", "Maybe, just maybe": "Maybe", "Stark contrast": "Shut the fuck up!", "You say?": "Shut the fuck up!", "Sweet sound of": "Shut the fuck up!", "Young love": "Shut the fuck up!", "Heard whispers": "Shut the fuck up!", "Escapades": "Shut the fuck up!", "Exploits": "Shut the fuck up!", "Humble abode": "Shut the fuck up!", "Neck of the woods": "Shut the fuck up!", }, }; // Function to replace whispers based on the desired tone function handleMessage(desiredTone, message) { let whispers = whisperReplacements[desiredTone] || {}; let cleanedContent = message.content; //.toLowerCase(); Object.keys(whispers).forEach((whisperKey) => { // g - global, m - multiline, i - insensitive (so no need to normalize messages) let regex = new RegExp(`\\b${whisperKey}\\b`, "gmi"); cleanedContent = cleanedContent.replace(regex, whispers[whisperKey]); }); message.content = cleanedContent; // message.edited = true; // Mark the message as edited to avoid infinite loops // not needed } // Attach the onMessageAdded function to the MessageAdded event of oc.thread oc.thread.on("MessageAdded", ({ message }) => { // user change command if (message.author == "user" && message.content.startsWith("/desired-tone")) { // Checks if 'user' and the starting message matches with `/desired-tone` message.expectsReply = false; // do not have the AI reply to the message // Extract the desired tone from the message let desiredTone = message.content.replace("/desired-tone", "").trim().toLowerCase(); if (["good", "evil"].includes(desiredTone)) { message.content = "Changed Desired Tone: " + desiredTone; oc.thread.customData.desiredTone = desiredTone; } else if (desiredTone == '') { // If nothing specified, show the current desired tone message.content = "Current Desired Tone: " + oc.thread.customData.desiredTone; } else { // Invalid tone message.content = "Invalid Desired Tone: " + desiredTone + "\n(valid: good, evil)"; } // Remove the message setTimeout(() => oc.thread.messages = oc.thread.messages.slice(0,-1), 2000); return; } // Check if the message is from the AI before applying the filter if (message.author == "ai") { // let desiredTone = "evil"; // Example: Get the desired tone from user input or context handleMessage(oc.thread.customData.desiredTone, message); } });
submitted by Relsen to perchance [link] [comments]
2025.02.01 22:51 C-3POsMidriff all time favorite
submitted by C-3POsMidriff to whoahdude [link] [comments] |
2025.02.01 22:51 Peanut-Extra The Dumbest Trade War in History | Trump will impose 25% tariffs on Canada and Mexico for no good reason.
submitted by Peanut-Extra to themayormccheese [link] [comments]
2025.02.01 22:51 Cartergoastros $10,$5,$3,$2 sale
Page 1 $10 each Page 2 $5 each Page 3 $3 each Page 4 $2 each submitted by Cartergoastros to baseballcards [link] [comments] |
2025.02.01 22:51 ZealousidealSea1697 We need more than matching - hit their pockets
Hit them where it counts- their pockets. We need labor and financial strikes to go along with marches. Let's bring the economy to a screeching halt.
submitted by ZealousidealSea1697 to 50501 [link] [comments]
2025.02.01 22:51 itsmezanelol [19/M] Need some genuinely kind friends please
Yo yo people. I'm 19, 6'3, and a gay guy. I'm lookin for genuine friendships under 30 years old. I like space, the ocean, and nature. I write stories and draw on paper, and play electric piano, but I'm not a professional on any of them :) I hope everyone has a wonderful day/night! I also got a PS4, and I do got over 300 games :)
Feel free to dm me everyone :))
submitted by itsmezanelol to MeetNewPeopleHere [link] [comments]
2025.02.01 22:51 PhilosopherLazy1992 How bad is this wobble?
Was cleaning my brother's replica which he doesn't want anymore and noticed this wobble between the hop up unit and the receiver. I was going to upgrade this gun as part of my learning process on teching an aeg and wanted to know if this warrants a replacement of the hop up unit or if the issue is lying elsewhere.
A bit more information on the replica: It's a ROSSI Sentinel Kappa 12" fully stock. It was disassembled and reassembled as part of transportation but as far as I am aware the only thing "modded" was the lack of the dustcover bit that shields the hop up unit
submitted by PhilosopherLazy1992 to airsoft [link] [comments]
2025.02.01 22:51 CashInStyle CashInStyle 🎉 Congratulations to Our Contest Winners! 🎉
A huge shoutout to all our Monthly, Referral, and Biweekly contest winners—your hard work and dedication have paid off! 🚀 Monthly Contest Winners: 🎖️ CIS Member 🎖️ CIS Member 🎖️ swagkura 🎖️ QueeenEv1l 🎖️ lesbriacins 🎖️ Discoland 🎖️ Siddles 🎖️ CIS Member 🎖️ son of man 🎖️ samskrillz Referral Contest Winners 🏅 Bia-Mariano 🏅 Frambach 🏅 CIS Member 🏅 CIS Member 🏅 Kikikiki88 🏅 Maxmaro 🏅 xszymektm 🏅 betaspm 🏅 CIS Member 🏅 PooWithEyes Biweekly Contest Winners 🏆 lesbriacins 🏆 QueeenEv1l 🏆 CIS Member 🏆 CIS Member 🏆 Siddles 🏆 fish 🏆 Discoland 🏆 zyhron 🏆 son of man 🏆 berber901 👏 Thank you for being part of the CashInStyle community! Your efforts make our platform even more exciting, and we can't wait to see who takes the top spots next! 🔄 New Contests Are Live! The leaderboard has been reset—this is your chance to climb to the top and earn BIG! Top Offers This Week 🔥 💰 Cherries 📝 Your-Surveys 🎲 WSOP - Multi - 30 days [US AOS] [MR] - Revu - $78.75 🎰 MidasLuck [MANY GEOs] - Adtowall - $42.12 🏦 Albert - US - AdscendMedia - $29.70 🏨 Merge Hotel Empire US - AdgateMedia - $45.00 💳 Rock_Wallet US - HangMyAds - $18.90 🎥 Flicksify - All Movies [MANY GEOs] - Adtowall - $13.50 📈 *Stash - Deposit $5+ in Personal Portfolio US - Revu - $31.50 🐾 Animals & Coins - Multi [US AOS] - Revu - $27.00 🔹 Coinbase US - Revu - $27.90 📉 UpHold [MANY GEOs] BR - Adtowall - $27.00 ⚔️ AFK Journey FR - AdgateMedia - $129.60 🌍 Clean Choice (US) - Bitlabs - $20.52 🏛 Rise of Kingdoms: Lost Crusade - Reach Power 1 Million US - Ayet - $19.84 🔎 June's Journey UK - AdgateMedia - $22.50 🎲 Sun Vegas UK - AdgateMedia - $15.75 📊 Draft Kings - FBP [iOS US - IL] - Revu - $54.00 🎟 Exclusive Voucher Code: WINJAN25 🎟 Use it now and get ahead! 👉 Join the action now: https://cashinstyle.com/contest 🔥 Let’s make this month even bigger! Who’s ready to win? 🔥 https://preview.redd.it/n0gkt7z5xlge1.png?width=1080&format=png&auto=webp&s=6f6ba1ab80203f3bb536ab63563d630d323524a9 submitted by CashInStyle to CashInStyleOfficial [link] [comments] |
2025.02.01 22:51 Hellokitty_yumi Guys i love jjk and my fav charcerters are...
kaisen(the one with pink hair)
Itadori(the one with wird tattos)
Jujutsu(the one with blue eyes and with hair)
Thats it
I really love to kaisen vs itadori fight
When yuji ask are u nah id win bc ur stand proud Or ur stand proud bc ur nah i win That sence was cool
submitted by Hellokitty_yumi to LobotomyKaisen [link] [comments]
2025.02.01 22:51 fran_jav " I would with out a doubt take my own life to bring Drakeo the ruler back. Just because the influence he had on LA hip hop is unequivocally thee best in recent history. Calling him a legend would be an understatement."
submitted by fran_jav to NoJumper [link] [comments]
2025.02.01 22:51 K4StR Really wish we could get more of these
I Really love it when both Star Powers from a brawler works equally (or almost equally) as good, it feels like you are making an important decission when buying one or another Star power. You think about the pros and cons, and You also get excited when You get the other Star power You did'nt buyed on a drop, rather than just having a brawler with 1 Star Power being INMENSELY superior than the other one, it Also feels like a Rob when You get a Legendary drop just to get a shitty ability You Will never use by no means. submitted by K4StR to BrawlStarsCompetitive [link] [comments] |
2025.02.01 22:51 Abigaill953 we love sunny days
submitted by Abigaill953 to Cutedogsreddit [link] [comments] |
2025.02.01 22:51 Accomplished-Ad-241 lakers game in nyc : anyone want to grab a drink?
anyone down to grab a beer before the game? I'm going by myself! I'm a 23 year old guy and just looking to sip one (or 2) before I go in!
ley me know :)
submitted by Accomplished-Ad-241 to lakers [link] [comments]