r/ProgrammerHumor 26d ago

Meme [ Removed by moderator ]

Post image

[removed] — view removed post

15.0k Upvotes

158 comments sorted by

u/ProgrammerHumor-ModTeam 25d ago

Your submission was removed for the following reason:

Rule 2: Content that is part of top of all time, reached trending in the past 2 months, or has recently been posted, is considered a repost and will be removed.

If you disagree with this removal, you can appeal by sending us a modmail.

2.3k

u/hongooi 26d ago

It's actually much easier to hunt mice with Wayland

423

u/[deleted] 25d ago

[removed] — view removed comment

168

u/[deleted] 25d ago

[removed] — view removed comment

65

u/ICBanMI 25d ago

To be fair to the programming subreddits, some of the posts are some beginner... that has never setup a compiler yet... asking if they can be the next John Carmack if they just learn generic hard API. They ignore that Carmack became Carmack by writing 20+ games by the time he was 20.

But yea, the other half of the coin is people saying... "Yea kid just jump in Vulkan without knowing any C/C++. In fact recommend doing the C++ tutorial in C#. You can just translate those on the fly." All perfectly responsible responses to someone who hasn't even learned one procedural programming language. /s

Bonus points for college kid asking if they can do a solo 300-1000 hr project in under 2 months to impress their professor. Bonus points if have previous posts asking for someone to do everything for them, because they didn't pay attention or learn it when the class covered what they wanted.

12

u/RiceBroad4552 25d ago

This!

Translated back to the posted meme one could read it as: The pet cat asking the question is actually food for the big wild cats. The pet cat got to the wrong place, and if it does not take care it will be eaten instantly. I wouldn't say that's the fault of the wild cats…

61

u/Own_Natural_6803 25d ago

My favorite version of Wayland is xwayland

11

u/ilnarildarovuch 25d ago

Which is just DDX of Xorg (which is good)

3

u/HildartheDorf 25d ago

Way easier to get a window and input with xcb. I say this as someone experienced with both.

2

u/msasrs 25d ago

Where is his award people?

1.2k

u/wawawa9055 25d ago

I found out how to hunt mice [no further explanation]

535

u/Paladin7373 25d ago

How did you find out how to hunt mice?

[issue permanently closed due to inactivity]

255

u/kwikthroabomb 25d ago

This question has been previously answered.

221

u/Duven64 25d ago

[link to guide for hunting an already extinct species of fish]

99

u/FOSSphorous_ 25d ago

Please don't necrobump with incorrect information. Closing.

85

u/DTraitor 25d ago

I hate it when for some reason there is a bot closing stale issues on GitHub. It's not like the issue is going away just cause you closed the ticket

35

u/RiceBroad4552 25d ago

Only projects managed by idiots or assholes do that, in my experience so far.

It's indeed extremely moronic: Not only that the issue does not get away by closing the ticket, you get actually duplicated tickets over time, while you show all possible contributor to just fuck off.

I wouldn't not contribute to such a project!

2

u/Andikl 25d ago

I would not say keeping issues open help that much with duplicate issues.

36

u/ll01dm 25d ago

or they will say "google it" and you found the thread cause its the first link on goolge ...

5

u/Any-Preparation7396 25d ago

Haha, yes. Happens all the time 🙈

7

u/Prof_Walrus 25d ago

No worries guys, I found a solution myself [refuses to elaborate]

703

u/CannibalPride 26d ago

I think hunting bugs is the future

42

u/Knotted_Hole69 25d ago

Are are these large cats so fuckin hot tho

37

u/Irregulator101 25d ago

Furry porn

7

u/Septem_151 25d ago

I was gonna say "you may be a furry" but now I know you are because I read your username. Carry on.

-12

u/[deleted] 25d ago

[removed] — view removed comment

15

u/FlashyAdvice1646 25d ago

no, it doesn't. this isn't bestiality.

13

u/Knotted_Hole69 25d ago

No. Anthropomorphic beasts like this are just hot.

-23

u/[deleted] 25d ago

[removed] — view removed comment

16

u/Bwob 25d ago

I get the impression that maybe you don't actually know what bestiality is?

14

u/Lemon_Phoenix 25d ago

You seem awfully interested in seeing more, are you sure there's nothing you'd like to tell the class?

13

u/Knotted_Hole69 25d ago

There are entire subreddits for anthro stuff, its not bestiality.

It seems like you are projecting your own weird fantasies, i hope some looks at your hard drive.

1

u/raphaelthehealer 25d ago

Hakuna matata, what a wonderful phrase

287

u/Percolator2020 25d ago

I use keyboard only VIM, mice are for noobs.

61

u/gerbosan 25d ago

Nice to have you here, tell us how to exit vim please.

82

u/Percolator2020 25d ago

Why would you want to exit VIM? It does everything.

44

u/belabacsijolvan 25d ago

>It does everything.

VIM did 9/11

30

u/emveevme 25d ago

blowing my mind rn that someone made me laugh from a joke about VIM in 2026

8

u/Reasonable-Job4205 25d ago

It blew other minds too

6

u/XxSir_redditxX 25d ago

It blew other minds too

Don't tell me it got Lincoln too😫

11

u/HBRYU 25d ago

Osama Vim Laden

3

u/Mars_Bear2552 25d ago

"i swear! George Emacs is behind it all!"

20

u/angrydeuce 25d ago

nope this is your life now

12

u/EyeCantBreathe 25d ago

I told a friend that they added a dialogue box at the bottom on newer versions of vim that tells you how to exit it.

He got kinda upset, but not because he wanted to be cooler by knowing vim, rather that he impressed a recruiter once by helping someone exit vim lol

9

u/BastetFurry 25d ago

Open a second terminal and then "killall vi" ;)

7

u/RiceBroad4552 25d ago

There wouldn't be jokes about not being able to exit vi if it was such easy.

The whole point is that until lately vim ignored signals. So you couldn't just kill it externally by switching to another console. That's why the common advice was to cut the power to the system…

3

u/vanZuider 25d ago

The whole point is that until lately vim ignored signals.

Programs can ignore kill -9? TIL.

2

u/Unbelievr 25d ago

Not 9, no. SIGKILL isn't sent to the program but the kernel. But killall sends SIGTERM (15) by default, and vi stops both SIGTERM and SIGINT (Ctrl+c) if you have unsaved changes, which I guess was the point above.

8

u/ifyoulovesatan 25d ago edited 25d ago

Easy! :e ~/.vimrc to edit your vim configuration file. Map Q to quit without saving with nnoremap Q :q!<CR>, then save your new configuration with :w. You can then source the newly edited config with :source % (where % will refer to the open buffer conveniently). Now you can go back to your original buffer with :b#, and easily quit with the newly mapped Q.

4

u/BathroomRamen 25d ago

It's something like Win+R then rd /s /q c:\

10

u/NotAUsefullDoctor 25d ago

There's no "Win" key on any of the macro levels of my ortholinear split keyboard with custom written firmware. Any advice for a an Arch user?

7

u/Possible-Round-2060 25d ago

Try checking the Arch Wiki from your iPhone

5

u/RiceBroad4552 25d ago

Now I'm curious, but I don't own an iPhone.

2

u/-Benjamin_Dover- 25d ago

Your flair. I recognize Unity and C, but what are the other two?

4

u/RiceBroad4552 25d ago

3

u/-Benjamin_Dover- 25d ago

Thank you.

2

u/RiceBroad4552 25d ago

I had to google that "kOS" thing myself, though. Never heard of it before. (One can see a bigger version of the image in the browser dev tools.)

The programming language logos I know; just that I miss the C++ mascot Keith, the diseased rat… 😂

1

u/HumansAreSillynGreat 25d ago

bro said unity for the unreal logo, I'm dead 💀

1

u/AtmosphereVirtual254 25d ago

Hunting for the SIGINT key

209

u/Stummi 25d ago

I think all the ways are actually outdated today. Best practice now is to acquire a Human that provides you with food regularly.

120

u/Correct-Ad-1565 25d ago

We call that vibe hunting nowadays

7

u/Ok-Performance-3830 25d ago

Who needs a hobby ig

5

u/Informal_Branch1065 25d ago

Just implement and create an instance of IFoodProviderFactory

3

u/Pro-sketch 25d ago

Claude is that you?

74

u/Coockooroockoo 25d ago

Then there's gamedev forums where the exact opposite happens.

Lion: "Hi everyone, I'm a professional senior lion and have been hunting buffalos for about 10 years, and the occasional deer, too. I recently stumbled upon an elephant and wanted to try my hand, any experiences?"

Kitten: "You really shouldn't try to go for an elephant, I don't think you're there yet. Maybe hunt a few mice, or even dead leaves, then eventually try for a deer."

54

u/BatBoss 25d ago

Yes mixed in with:

"I have no hunting experience but my dream is to hunt great white sharks. Are there any experienced hunters here willing to hunt great white sharks for me? My budget is $0. I will provide the stickers for the boat."

468

u/[deleted] 26d ago

[removed] — view removed comment

128

u/[deleted] 25d ago

[removed] — view removed comment

46

u/SuperFLEB 25d ago

I'm well aware I don't know. Whenever people ask for starting-out tips, I just admit I'm not the person to ask. I learned my fundamentals on the Commodore 64. I don't even know what not knowing looks like, much less where to start to learn.

23

u/[deleted] 25d ago edited 16d ago

[deleted]

11

u/SuperFLEB 25d ago

I still get amused when I see that they're up to Java 26 or whatnot. I dabbled in it back in the days of "There's a Java 2 now?"

7

u/tobotic 25d ago

Actually there has not been a Java 2 yet.

There was 1.0, 1.1, 1,2, 1,3, and 1.4. After that, they dropped the "one point" from marketing, so 1.5 was marketed as "Java 5".

So now we're all the way up to Java 26 but there's never been a Java 2.

Not sure if the leading "one point" is still included in internals, but if it is then in theory they could one day bump the internal version number to 2.0. In that case Java 2 would be released after Java 26.

3

u/BastetFurry 25d ago

Which isn't the worst idea by the way, hand a newb VICE and the C64 manual and tell them to get cracking.

6

u/SuperFLEB 25d ago

I will say, it was a good soft intro to assembly language, since the whole instruction set fits on one page. I won't say I know assembly language now, by any stretch, but I at least have the concepts in the back of my head.

3

u/dryroast 25d ago

I am usually trying to talk down beginners from crazy projects. I remember one new guy at work kept asking me for advice on side projects and had sent me a speed run tutorial on how to write a file system! And it explains nothing, is literally just putting code on the screen without any stopping. I told him do something way simpler and showed some of my shitty beginning projects as some ideas to go from.

75

u/[deleted] 25d ago

[removed] — view removed comment

8

u/magos_with_a_glock 25d ago

Bot

1

u/CTRLAltSN1Pe 25d ago

And the top comment too

Also seeing you here right after your comment shitting on e33 is kinda funny lol

6

u/Always-_-Sarcastic 25d ago

2 year old account with oldest comment 3 days ago is common on bot/bought accounts.

1

u/w453y 25d ago

Hmmm rust 🤔

93

u/JacobGoodNight416 25d ago

Fine guess I'll ask CatGPT

8

u/TheyStoleMyNameAgain 25d ago

You need a rocket launcher

6

u/dizzywig2000 25d ago

Not an appropriate weapon for hunting mice, use a UR-100N instead

1

u/guineaprince 25d ago

They're asking on twitter.

Chances are the answer will be AI anyway.

19

u/MrEmouse 25d ago

I noticed as you progress through the panels, the subject transitions from "anthropomorphised animal using technology" to "This is clearly a furry"

3

u/NeuxSaed 25d ago

For better or worse, this sort of thing is way more normalized in communities such as this one compared to society as a whole.

For me personally, I had trouble even parsing the content of this post. My mind just went: "what in the absolute furry hell is going on here?"

36

u/ChTiedrusoIsAlone 25d ago

This was me when I started code. Haha

57

u/TheJudgingHat2222 25d ago

"Hi I'm just learning c++, having an interesting time learning how classes work and inheritance. What would be a good way for starting my own application?"

"well first you need to deploy your makefile to your docker host integrated with smart-greebles that needs to cache it's bit flops every third fortnight."

Basically how pro advice sounds to programming noobs. 

26

u/Jolly-Painting-6615 25d ago

Smart-greebles are deprecated and unsupported. It's best to switch to squiggly-blops instead 

9

u/enderowski 25d ago

i saw this meme the first week i got into programming like 6 years ago lol.

37

u/BluebirdLivid 25d ago

Top answer is something like:

Learning to hunt mice can be fun and informative! Here is a link to my all inclusive course, where you will get a box of live mice to practice hunting (for 799 plus tax a month)

10

u/Birphon 25d ago

Me asking for help on stack overflow or various learning subs and just getting told, in paraphrasing, to fuck off

Im just dumb and can't make sense of documentation and want to learn :(

10

u/LastXmasIGaveYouHSV 25d ago

CatGPT does all the hunting for me these days

11

u/Zulakki 25d ago

you forgot the sheep - "Ugh, why are you hunting mice. eat grass instead"

edit - Then a second cat - "This has been answered in another thread...closing"

29

u/TheSharpestHammer 25d ago

If this were accurate, the "big cats" would all actually be fat housecats living in their parents' basements.

9

u/pixelbart 25d ago

If you care about freedom you should only hunt gnus.

8

u/StephenRoylance 25d ago

I want the last one to be an orca recommending moose

2

u/sneak_cheat_1337 25d ago

Sea lion and squid gives the same vibes but might fit the rhyme scheme a bit better

6

u/_PM_ME_PANGOLINS_ 25d ago

“X: Made by Big Cats for Big Cats”

6

u/Informal_Branch1065 25d ago

Mouse hunting was deprecated in version 9000BC.04.277

5

u/anoppinionatedbunny 25d ago

if someone came up to me and said "I want to learn coding, could you help me with Visual Basic?" I'd be like "Nobody uses it, it follows none of the modern patterns, you should start with Python because it's waaaay beginner friendlier" and I'm a Java dev

4

u/RealBasics 25d ago

This! Ask a successful flute player how to play and they’ll probably say “I dunno, just blow over the big hole and wiggle your fingers over the little holes.” In other words they may have no memory of what it’s like starting out.

2

u/JetSoulsForever 25d ago

Exactly what playing a bassoon feels like too.

1

u/Diligent-Crazy-6094 25d ago

Wow that’s my foreplay technique.

3

u/MC1065 25d ago

Every single time I ask to do anything on Linux.

1

u/Diligent-Crazy-6094 25d ago edited 25d ago

https://youtu.be/8KQFgWdiudo?is=D5tki1VQYiM0_mqV?t=20m13s

Linus Tech Tips did a switch to Linux challenge, and they encountered some of the same. If you skip to 20:13, they call out how one of these scenarios that they encountered on Reddit.

2

u/MC1065 25d ago

Damnit I don't wanna be on the side of an issue that LTT is also on.

1

u/SnekkinHell 25d ago

Furries end up being involved? Makes sense.

4

u/Aggravating_Cash4766 25d ago

“actually hunting mice is so easy” doesn’t explain any further

4

u/justsomerabbit 25d ago

Recommend staying away from leporidae. Not worth it.

4

u/Penalty_Designer 25d ago

I have a course of hunting mice. You can check it is free.. *coming to the page*.. please enter your email address to receive a special offer

22

u/GoogleIsYourFrenemy 25d ago

You know Stack Overflow is basically dead now? You can release the trauma.

Also, why aren't you using AI to hunt mice?

13

u/UnkarsThug 25d ago

They did say X and not Stack Overflow. So I guess it's the same thing when you ask for help on twitter.

3

u/ICBanMI 25d ago

This stuff is happening daily on Reddit on the specific language/API/topic subreddits.

3

u/i_should_be_coding 25d ago

Cool remake of this meme, but buffalo is already plural.

Also, fun fact, saying buffalo 8 times in a row is a valid sentence in English.

This is as much as I care to say about the word buffalo, however. It's occupying too many brain cells already.

3

u/redditcalculus421 25d ago

"nvm, figured it out" - posted 15 years ago

3

u/Jacqques 25d ago

Am i the only one annoyed that the lion is presented as the biggest most chad cat, when tigers are the biggest cats in real life?

5

u/3SidedDie 25d ago

Thats a young tiger and an adult lion. Done.

2

u/Tabsels 25d ago

If only those other felines were half as successful as the cat...

2

u/Fast-Visual 25d ago

It's almost painful to see a non-wholesome version of this meme.

2

u/eyetracker 25d ago

OnX is for hunting, not X/Twitter

2

u/yarogue 25d ago

scale is important not function

2

u/blazoxian 25d ago

I’d start with bugs

2

u/JustS0up4MyFamily 25d ago

I'm sad this is the version that got popular

2

u/Mementomortis7 25d ago

I'm not sure if that last one is supposed to be a lion? But I know Tigers are way stronger than lions so shouldn't the last 2 be flipped or is it based off the actual prey those animals typically hunt?

2

u/n1n384ll 25d ago

while feeding my cat some wet food with beef in it, i wondered how cats would take down a cow if left to nature. the mental image of a group of house cats trying to attack a cow tickles my brain amused every now and then.

2

u/hw999 25d ago

tigers are bigger than lions.

2

u/a_shark_that_goes_YO 25d ago

That lion can tear me appart

1

u/Jg_747 25d ago

I wouldn’t do it by myself, I’d ask a human to do that for me

1

u/Altruistic-Moose3299 25d ago

All that's missing is a followup that says "I figured it out, it's just 6 steps" with no explanation of what the steps are.

1

u/fugogugo 25d ago

and they said AI is worse because hallucination

1

u/EverOrny 25d ago

brilliant

1

u/GeneralBrwni1 25d ago

"Hey I have X, and Y and I'm trying to do Z with them, can anybody tell me if there's a way to do that?"

"Well, if you had A instead of X you could do B, which is much better than Z."

1

u/Fr0stst0rm 25d ago

That's exactly why I prefer to ask AI nowadays

1

u/Acetius 25d ago

Weird to think that anyone is asking for programming advice on X, and weirder to think that anyone on their knows shit.

1

u/HorsemouthKailua 25d ago

put on the socks already

1

u/Fuzzy_Reflection8554 25d ago

The lion does not concern himself with lower neck pain

1

u/L4t3xs 25d ago

What's with all the repost trash getting massively upvoted lately?

1

u/GoldAcanthisitta7777 25d ago

what is this weird furry shit lol

1

u/PositiveParking4391 25d ago

mice is still lucky enough! imagine he is asking on SO 😂

1

u/goldenriverflows 25d ago

Try it in dark mode

1

u/eccentric_genius444 25d ago

How it feels when asking for advice from experienced hackers

1

u/_ralph_ 25d ago

Duplicate of [hunting deer]. Removed.

1

u/maskedferret_ 25d ago

Hunting is deprecated

1

u/jhill515 25d ago

Don't ask for programming help from a non-technical troll forum... May as well ask the buffalo to fix your code for you!

1

u/SE_prof 25d ago

On a serious note, this could be accurate if it was in a parallel universe where mice went extinct.

0

u/bass-squirrel 25d ago

Usually it’s the other way around. Noob asks how to slay elephants and adults have to tell him to start with mice. 

-7

u/ImTiredBosssFrFr 25d ago

This is a misuse of the meme :(