DEV Community

Cover image for Meme Monday
Ben Halpern
Ben Halpern Subscriber

Posted on

Meme Monday

Meme Monday!

Today's cover image comes from last week's thread.

DEV is an inclusive space! Humor in poor taste will be downvoted by mods.

Top comments (54)

Collapse
 
danielcristho profile image
Daniel Pepuho

Image description

Collapse
 
syakirurahman profile image
Syakir

Accurate

Collapse
 
tehmoth profile image
tehmoth

except the bullet only gets halfway down the barrel of the nano gun and falls on the ground.

Collapse
 
youngfra profile image
Fraser Young

meme monday

Collapse
 
welshapple profile image
William

console.log('test')

console.log('test 2')

console.log('test test here')

Collapse
 
jackmellis profile image
Jack

console.log('why wont you reach this line??')

Collapse
 
schemetastic profile image
Schemetastic (Rodrigo)

console.log("working");

Collapse
 
tehmoth profile image
tehmoth

so programmerhumor has found bell curve meme replacement

Collapse
 
renancferro profile image
Renan Ferro

Image description

Collapse
 
ben profile image
Ben Halpern

lol

Collapse
 
jennavisions profile image
Jenna

That's funny πŸ˜‚

Collapse
 
bernert profile image
BernerT

meme monday

Collapse
 
nlxdodge profile image
NLxDoDge

Jokes on you, that was Java UnCompiled code. You then need to search in the Compiled code, and the lines to only to 30 πŸ˜‚

Collapse
 
michaelsolati profile image
Michael Solati

Image description

Collapse
 
jackmellis profile image
Jack

This is so painfully true πŸ˜…

Collapse
 
alvaromontoro profile image
Alvaro Montoro

Today's comiCSS:

cartoon with two panels showing two people talking. One has long spiky hair, the other one has a more classic hair and says 'cool haircut! did you go to the hairdresser?'. The person with spiky hair replies: 'No, I was just reviewing the new Junior's PR'

Collapse
 
duncan_true profile image
Dun

meme monday

Collapse
 
ezpieco profile image
Ezpie

these guys again? I just came watching them in r/programminghumor. I guess the Olympics is more popular amongst us programmers.

Collapse
 
roshan_khan_28 profile image
roshan khan

i still cant imagine how he managed to not get gold with that sigma of a personality

Collapse
 
willemgouws profile image
WillemGouws

why no ++ in linux (sad)

Collapse
 
avanichols profile image
Ava Nichols

meme monday

Collapse
 
jerryhargrovedev profile image
Jerry Hargrive

meme monday

Collapse
 
ben profile image
Ben Halpern • Edited

Today's awful AI-generated meme

Deploying on friday

Collapse
 
jackmellis profile image
Jack

Ugh I hate it when both the prodection server and the propuction server crash on the same day

Collapse
 
mrlinxed profile image
Mr. Linxed

Oh no!

The Coffee SΓΈrfer crashed!

Collapse
 
fyodorio profile image
Fyodor

They still got some foffee though...

Collapse
 
yowise profile image
a.infosecflavour

🀣hilarious

Collapse
 
chariebee profile image
Charles Brown

meme monday

Collapse
 
1link profile image
1Link.Fun

first time to know....

Collapse
 
maxart2501 profile image
Massimo Artizzu

Pretty much always knew.
It's also (or at least used to be) the fastest way to empty an array with a mutable operation.

Collapse
 
blenderman profile image
BBM

meme monday

Collapse
 
primetarget profile image
Ethan Anderson

meme monday

Collapse
 
sawyerwolfe profile image
Sawyer Wolfe

meme monday

Collapse
 
dreama profile image
Dream

meme monday

Collapse
 
nlxdodge profile image
NLxDoDge

Jokes on you, Java 22 already made it better :)
You can from version 22 on do:

// Before
class HelloWorld {
    void main() {
        System.out.println("Hello, World!");
    }
}

// After
void main() {
    System.out.println("Hello, World!");
}
Enter fullscreen mode Exit fullscreen mode

Source: openjdk.org/jeps/463

Collapse
 
nlxdodge profile image
NLxDoDge

But now waiting for the print function lol.

Thread Thread
 
nlxdodge profile image
NLxDoDge

To be fair you can make your own.

class Print {
    private Print() {}

    public static void print(String input) {
        System.out.println(input);
    }

    public static void print(String input, Object... args) {
        System.out.printf(input, args);
    }
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
citronbrick profile image
CitronBrick

Really ?!

For the novice, static is not just mysterious but harmful:

Some comments may only be visible to logged-in visitors. Sign in to view all comments.