this post was submitted on 12 Sep 2025
137 points (89.6% liked)

Lemmy Shitpost

34477 readers
4392 users here now

Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.

Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means:

-No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...

If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.


Also check out:

Partnered Communities:

1.Memes

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

10.LinuxMemes (Linux themed memes)


Reach out to

All communities included on the sidebar are to be made in compliance with the instance rules. Striker

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] guber@lemmy.blahaj.zone 4 points 1 day ago (1 children)

if else chain? believe of or not, straight to jail.

[–] PeriodicallyPedantic@lemmy.ca 6 points 1 day ago (1 children)

Hey, when you gotta pick a value from a bunch of options, it's either if/elseif/else, ternary, switch/case, or a map/dict.

Ternary generally has the easiest to read format of the options, unless you put it all on one line like a crazy person.

[–] guber@lemmy.blahaj.zone 3 points 1 day ago (2 children)

me personally, i prefer switch case statements for many-value selection, but if ternary works for you, go ham (as long as you don't happen to be the guy who's code I keep having to scrub lol)

[–] PeriodicallyPedantic@lemmy.ca 1 points 9 hours ago* (last edited 7 hours ago)

Switch is good if you only need to compare equals when selecting a value.
Although some languages make it way more powerful, like python match.
but I generally dislike python despite of this, and I generally dislike switch because the syntax and formatting is just too unlike the rest of the languages.

Generally I prefer the clear brevity of:

var foo=
    x>100 ? bar :
    x>50 ? baz :
    x>10 ? qux :
    quux;

Over

var foo;
if(x>100) {
    foo=bar;
} else if(x>50) {
    foo=baz;
} else if(x>10) {
    foo=qux;
} else {
    foo=quux;
}

Which doesn't really get any better if you remove the optional (but recommended) braces.
Heck, I even prefer ternary over some variations of switch for equals conditionals, like the one in Java:

var foo;
switch(x) {
case 100:
    foo=bar;
    break;
case 50:
    foo=baz;
    break;
case 10:
    foo=qux;
    break;
default:
    foo=quux;
}

But some languages do switch better than others (like python as previously mentioned), so there are certainly cases where that'd probably be preferable even to me.

[–] thebestaquaman@lemmy.world 3 points 1 day ago

If there's more than two branches in the decision tree I'll default to a if/else or switch/case except if I want to initialise a const to a conditional value, which is one of the places I praise the lord for ternaries.