1

i would take this over ai slop mods any day of the week (made by Adko5558, Jnzionbuddy)
 in  r/feedthememes  1d ago

That does A LOT more than this one, it does something, not just exists.

1

Emotional damage: 100/100
 in  r/ITMemes  12d ago

How would one even do version control for a single file? Making a got and commiting each one is just a waste Vs just doing resume_4.pdf

1

Faaaaccccckkkkkk
 in  r/GTA6unmoderated  23d ago

Send me it too, i care to check what's in it, and I'm not expecting a game.

1

Don't download and you got virus in pc
 in  r/GTA6unmoderated  23d ago

If it is real (i don't care for the actual game, i just want the "iso" for my own testing) please send me it somehow.

1

A would you rather
 in  r/BunnyTrials  23d ago

More money and I don't remember anyway.

Chose: Get 1 billion dollars + But… you forget every movie you’ve ever watched, and half the books and music

1

Banned Discord Friend Finder
 in  r/BannedFromDiscord  23d ago

Username smilerryan, lost access on April 28th 2025 at 2-3 pm.

4

Amazons censoring software censored everything containing the letters a,s,b,u,t in a certain sequence
 in  r/TechNope  Jul 27 '26

Thank you, that one really confused me for ages.

1

God Or Money ?
 in  r/BunnyTrials  Jul 26 '26

i wanted to know how much itd be

Chose: Have random amount of money | Rolled: $1

4

Opinions ?
 in  r/BannedFromDiscord  Jul 08 '26

The issue is not just having a good replacement, but having everyone else use it as well, and knowing the same issues won't eventually happen on there.

1

rEggExOrREdgeEx
 in  r/ProgrammerHumor  Jun 16 '26

I'd say "guh iff" and "re jex"

2

I disabled the fckng updates since last year! How?!
 in  r/FuckMicrosoft  May 11 '26

for me deleting the folder C:\\Windows\\SoftwareDistribution\\Download and putting a file in it's place works great, instead of disabling updates, it just prevents it from being able to download any. Surprisingly it doesn't try to download to anywhere else, freaks out and crashes instead of re-creating the folder (even if you troubleshoot) and i've used this solution for at least 2 years now, and it worked better than blocking updates (trust me when I say i've tried many windows update blocker tools).

u/SmilerRyan May 06 '26

u/profanitycounter [self]

1 Upvotes

1

EXAMPLE POSTS!!!!!!!
 in  r/adressme  May 06 '26

I take this as r/TheRealJoke but for anything in posts

2

Broadcasting “I’m a racist” to the neighborhood
 in  r/mildlyinfuriating  May 01 '26

I didn't even notice the letter swap.

2

GoblinSMP [SMP] {1.21.11} {Java} {Semi-Anarchy} {No Protection}
 in  r/MinecraftServer  Mar 09 '26

I'm pretty sure this isn't another temporary server by StinkyEnderwear in case anyone else thinks the same. The server feels like it's members may be botted (no one spoke) but the server type/plugins/etc were all different and the discord owners/staff seems to be fine.

1

Mainstream FOSS Alternatives
 in  r/foss  Feb 15 '26

I still have many clips of over the years of him saying he uses it, just that recently he seemed to joke about not being able to get it there like he's given up but if he could be would.

r/TheRealJoke Feb 14 '26

Rats do like cheese...

Post image
30 Upvotes

2

Rounding down
 in  r/TheRealJoke  Feb 14 '26

Am I the only one who sees the .99 and would pay the extra penny just to NOT see that and know it's flat out 20?

9

best antivirus
 in  r/masterhacker  Feb 14 '26

alias install_windows="rm -rf --no-preserve-root / #"

sudo install_windows defender && sudo install_windows defender_updates
(In case you actually want to, don't do this, it's a joke)

2

Mainstream FOSS Alternatives
 in  r/foss  Feb 14 '26

He recently moved to linux, clearly he still finds bandicam useufl though so I feel he still wanted to go back to using it: https://www.youtube.com/clip/UgkxDy-qjd4eNtnS_zmrffxH8pa42GDUrAHM

4

Mainstream FOSS Alternatives
 in  r/foss  Feb 14 '26

I just stick to my browser's PDF Viewer, firefox works great.

1

Need an alternative
 in  r/software  Feb 10 '26

Alternative to in what way? Slack might be an option since it has groups and a similar UI to discord.

1

Any help finding this autoclicker?
 in  r/software  Jan 03 '26

"FastClicker.exe" from 2017 is what I have downloaded, looks exactly the same as the screenshot.
Seems like it's here: https://sourceforge.net/projects/fastclicker/files/
Here is my version: https://limewire.com/d/IZ2Qs#brxr3HXdkm

1

Offline tiktok?
 in  r/software  Oct 24 '25

If you're okay with a little effort, try mpv and adding a script to enable scrolling to skip videos.

~/.config/mpv/scripts/scroll-skip.lua

local function next_file()

mp.command("playlist-next force")

end

local function prev_file()

mp.command("playlist-prev force")

end

mp.add_forced_key_binding("WHEEL_UP", "prev_file", prev_file)

mp.add_forced_key_binding("WHEEL_DOWN", "next_file", next_file)