[Grade 11 Chemistry: Naming polyatomic ions/ternary compounds] How do I find the right name for ternary compounds?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Timbaghini
πŸ“…︎ Sep 08 2020
🚨︎ report
If classic form AB is binary and ABA is ternary, is there a simple name for AAB?
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/PlazaOne
πŸ“…︎ Feb 07 2019
🚨︎ report
cool ternary system I found. I rightfully named it RGB
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/jbojey
πŸ“…︎ Sep 30 2020
🚨︎ report
campaign dies down because it sucks

back in 2018 i got into a DnD campaign with 3 acquaintances and 2 friends. after a long period of avoiding scheduling a next session and getting uninterested in the hobby in it's entirety because of how dreadful the sessions were, it eventually died in 2020. one of the reasons why it was so dreadful to the point of dying is that our DM had this annoying habit of making every NPC we ever met either a DMPC self insert or something that was obviously irrelevant to the story in any way possible to the point there wasn't even a name. here's a list of the former:

- an orc that was an amazing duelist with sword skills that could match ANYONE, EVER. DM would boast to us how one bitchslap of his could K.O our entire party.

- a paladin that served the supreme deity. said supreme deity had declared our party a bunch of criminals, and said paladin was somehow ALWAYS, and i mean ALWAYS on our trail

- the old mentor of our wizard was immortal, introducing the legend of another wizard dude that had INVENTED immortality (a story on it's own)

- the only woman we had met out of two known in the entire canon so far; a dwarf who could oneshot anyone with daggers

- a ternary of two brothers and one sister (the other woman in canon, but we hadn't met her): one was a master swordsman, one was "amazing with daggers" and the sister was "the best archer in the entirety of the country". we had only met the dagger guy in-game because swordsman was already killed as "the ultimate vessel for the almighty wizard"

but none of them could top the monstrosity that was his favorite self-insert: his name's Redeye, a half demonic, half divine spirited guy with a sword as huge as himself. he had red eyes (shocking, i know) and was covered in black full-plate armor. Redeye was part of an organization called the Black Knights and he was affiliated with de dagger dwarf, also a Black Knight. DM would boast about Redeye's AMAZING and EXTREMELY POWERFUL style of fighting, a way NO ONE in the ENTIRE WORLD could replicate.

and this dude was THE WORST. Redeye could also fill an entire post on his own, so i'll keep it short for now. he was literally everywhere we went. nothing could piss him off because he's "a nice dude" (read: way too powerful to get mad at the party of squishy level 5s). one time the DM had us watch a heated anime rivalry style duel between the orc and the paladin where the paladin (also a master swordfighter, the type that'd always win a duel) used some divine kameham

... keep reading on reddit ➑

πŸ‘︎ 54
πŸ’¬︎
πŸ‘€︎ u/FleurCannon_
πŸ“…︎ Jan 16 2022
🚨︎ report
SERIOUS: This subreddit needs to understand what a "dad joke" really means.

I don't want to step on anybody's toes here, but the amount of non-dad jokes here in this subreddit really annoys me. First of all, dad jokes CAN be NSFW, it clearly says so in the sub rules. Secondly, it doesn't automatically make it a dad joke if it's from a conversation between you and your child. Most importantly, the jokes that your CHILDREN tell YOU are not dad jokes. The point of a dad joke is that it's so cheesy only a dad who's trying to be funny would make such a joke. That's it. They are stupid plays on words, lame puns and so on. There has to be a clever pun or wordplay for it to be considered a dad joke.

Again, to all the fellow dads, I apologise if I'm sounding too harsh. But I just needed to get it off my chest.

πŸ‘︎ 17k
πŸ’¬︎
πŸ‘€︎ u/anywhereiroa
πŸ“…︎ Jan 15 2022
🚨︎ report
A comparison of 5 ternary-outcome dice systems

For the latest version with inline equations and images, read this article on my wiki.

In this article, we compare several ways of creating a ternary outcome system. We'll use the Ironsworn terminology for the three outcomes: strong hit, weak hit, and miss.

A typical description of the three outcomes is:

  • Strong hit: you succeed at your task and get away without consequences.
  • Weak hit: you succeed at your task but suffer a consequence.
  • Miss: you fail at your task and suffer a consequence.

Though this will vary from game to game and possibly even between different situations within the same game.

2dN, count successes versus target number (Modiphius 2d20 without Focus)

Roll two dice, counting them individually against a target number (usually roll-under, but mathematically you could make a roll-over system with the same probabilities).

  • You score a strong hit if both dice succeed.
  • You score a weak hit if one die succeeds.
  • You miss if neither of the dice succeeds.

An example is the simplest case of Modiphius 2d20 (without Focus) where you roll the eponymous 2d20 against a single target number.

Image.

The curves are beta distributions.

The tails of this system are relatively short---once the target number reaches the end of a single die, the outcome is guaranteed.

You can scale the curves horizontally (or equivalently, change the granularity) by changing the die size.

Further reading: roll-and-keep dice pool

2dN + modifier versus two thresholds (Powered by the Apocalypse)

Roll 2dN and add a modifier.

  • You score a strong hit if the total reaches an upper threshold.
  • You score a weak hit if the total reaches a lower threshold.
  • You miss if the total reaches neither threshold.

An example is Powered by the Apocalypse, where you roll 2d6 + modifier against an upper threshold of 10 and a lower threshold of 7.

Image.

The curves are triangular distributions.

The tails of this type of system are longer than for the Modiphius 2d20-style system above, though they still reach a guaranteed

... keep reading on reddit ➑

πŸ‘︎ 56
πŸ’¬︎
πŸ‘€︎ u/HighDiceRoller
πŸ“…︎ Dec 26 2021
🚨︎ report
[AskJS] Can i read an object's value expression without evaluating it?
let obj = {
  "one":1,
  "two":2,
  "three":true ? 3 : 0
};
console.log( obj.three ); // returns 3 
console.log( JSON.stringify( obj.three ) ); // also returns 3, but as a string 

This is a very contrived example, but i was hoping i could figure out what to write inside a console.log() in order to receive a return of "true ? 3 : 0" which is what i assigned to the key three inside obj.

I tried Object.values(obj), Object.entries(obj) and i'm about out of ideas here. I recognize that the beauty of the ternary operator is that it evaluates inline, but in this specific case i was hoping i could force it not to.

Any ideas?

[EDIT] Context:

I'm trying to patch old code which works with a very large library of values for use in nesting parts for a CNC. The particular section of code i'm trying to update is ran when a value in the MongoDB is updated. The general idea was to check when a field in the DB is updated, whether there are other fields whose values are dependent on the one being updated, log this out to the console, and return a list of suggested related updates.

Here's an example:

let suggestionsFound = [];

relations["mdfSt"] = [
Β  Β  { 
    conditions: [ newVal === "Cut F", data.ordSt !== "production" ], 
    suggestions: [ { name : "ordSt", value : "production" } ] Β  Β  
    }, 
]

relations.forEach( field => {
    console.log( "evaluating conditions for " + field );
    console.log( JSON.stringify( relations[field].suggestions ) );
    suggestionsFound.push( ...field.suggestions );
})

return suggestionsFound;

It reads as: when field "mdfSt" receives a new value, check if that new value is "Cut F", and whether field "ordSt" is not "production". If both are true, set "ordSt" to "production".

Right now when the conditions are evaluated, they are logged out to the console, but all i see is true-s and false-s. I wanted to expand on that console.log(JSON.stringify(relations[field].conditions)) line to instead of giving me an array of true or false values, to just write out the whole expressions it was checking, as well as its evaluation. That way from the console, i can tell what we were checking in the future.

πŸ‘︎ 12
πŸ’¬︎
πŸ‘€︎ u/-domi-
πŸ“…︎ Jan 03 2022
🚨︎ report
Blind Girl Here. Give Me Your Best Blind Jokes!

Do your worst!

πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/Leckzsluthor
πŸ“…︎ Jan 02 2022
🚨︎ report
This subreddit is 10 years old now.

I'm surprised it hasn't decade.

πŸ‘︎ 14k
πŸ’¬︎
πŸ‘€︎ u/frexyincdude
πŸ“…︎ Jan 14 2022
🚨︎ report
Dropped my best ever dad joke & no one was around to hear it

For context I'm a Refuse Driver (Garbage man) & today I was on food waste. After I'd tipped I was checking the wagon for any defects when I spotted a lone pea balanced on the lifts.

I said "hey look, an escaPEA"

No one near me but it didn't half make me laugh for a good hour or so!

Edit: I can't believe how much this has blown up. Thank you everyone I've had a blast reading through the replies πŸ˜‚

πŸ‘︎ 20k
πŸ’¬︎
πŸ‘€︎ u/Vegetable-Acadia
πŸ“…︎ Jan 11 2022
🚨︎ report
What starts with a W and ends with a T

It really does, I swear!

πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/PsychedeIic_Sheep
πŸ“…︎ Jan 13 2022
🚨︎ report
Why did Karen press Ctrl+Shift+Delete?

Because she wanted to see the task manager.

πŸ‘︎ 11k
πŸ’¬︎
πŸ‘€︎ u/Eoussama
πŸ“…︎ Jan 17 2022
🚨︎ report
Why Svelte doesn't accept function which returns string in class attribute?

I am making a component which changes css class if it's selected or deselected.


First version is with ternary inside class attribute which works:

https://www.toptal.com/developers/hastebin/ifonexalus.xml

<script lang='ts'>
    let isSelected = false
    
    function toggleSelect(){
        isSelected = !isSelected
    }
</script>

<div on:click={toggleSelect} class={isSelected ? 'selected' : 'notSelected'}>
This is a cell
</div>

<style>
    .selected {
        background-color: brown;
    }
    .notSelected {
        background-color: rebeccapurple;
    }
</style>

Second version I tried to extract ternary expression into separate function:

https://www.toptal.com/developers/hastebin/ojikuzimuf.xml

<script lang='ts'>
    let isSelected = false

    function toggleSelect(){
        isSelected = !isSelected
    }

    function className(){
        return isSelected ? 'selected' : 'notSelected'
    }
</script>

<div on:click={toggleSelect} class={className()}>
This is a cell
</div>

<style>
    .selected {
        background-color: brown;
    }
    .notSelected {
        background-color: rebeccapurple;
    }
</style>

Why is that?

P.S do you know any other code paste except hastebin?

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/CatolicQuotes
πŸ“…︎ Dec 27 2021
🚨︎ report
What is a a bisexual person doing when they’re not dating anybody?

They’re on standbi

πŸ‘︎ 11k
πŸ’¬︎
πŸ‘€︎ u/Toby-the-Cactus
πŸ“…︎ Jan 12 2022
🚨︎ report
Geddit? No? Only me?
πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/shampy311
πŸ“…︎ Dec 28 2021
🚨︎ report
I wanna hear your best airplane puns.

Pilot on me!!

πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/Paulie_Felice
πŸ“…︎ Jan 07 2022
🚨︎ report
E or ß?
πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/Amazekam
πŸ“…︎ Jan 03 2022
🚨︎ report
What did Spartacus say when the lion ate his wife?

Nothing, he was gladiator.

πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/rj104
πŸ“…︎ Jan 15 2022
🚨︎ report
Pun intended.
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/Sharmaji1301
πŸ“…︎ Jan 15 2022
🚨︎ report
No spoilers
πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/Onfour
πŸ“…︎ Jan 06 2022
🚨︎ report
Covid problems
πŸ‘︎ 7k
πŸ’¬︎
πŸ‘€︎ u/theincrediblebou
πŸ“…︎ Jan 12 2022
🚨︎ report
These aren't dad jokes...

Dad jokes are supposed to be jokes you can tell a kid and they will understand it and find it funny.

This sub is mostly just NSFW puns now.

If it needs a NSFW tag it's not a dad joke. There should just be a NSFW puns subreddit for that.

Edit* I'm not replying any longer and turning off notifications but to all those that say "no one cares", there sure are a lot of you arguing about it. Maybe I'm wrong but you people don't need to be rude about it. If you really don't care, don't comment.

πŸ‘︎ 12k
πŸ’¬︎
πŸ‘€︎ u/Lance986
πŸ“…︎ Dec 15 2021
🚨︎ report
What did 0 say to 8 ?

What did 0 say to 8 ?

" Nice Belt "

So What did 3 say to 8 ?

" Hey, you two stop making out "

πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/designjeevan
πŸ“…︎ Jan 03 2022
🚨︎ report
I had a vasectomy because I didn’t want any kids.

When I got home, they were still there.

πŸ‘︎ 10k
πŸ’¬︎
πŸ‘€︎ u/demotrek
πŸ“…︎ Jan 13 2022
🚨︎ report
Spi__
πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/Fast_Echidna_8520
πŸ“…︎ Jan 11 2022
🚨︎ report
I dislike karma whores who make posts that imply it's their cake day, simply for upvotes.

I won't be doing that today!

πŸ‘︎ 15k
πŸ’¬︎
πŸ‘€︎ u/djcarves
πŸ“…︎ Dec 27 2021
🚨︎ report
What is the scariest tree?

BamBOO!

πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/K1ll47h3K1n9
πŸ“…︎ Jan 18 2022
🚨︎ report
The Ancient Romans II
πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/mordrathe
πŸ“…︎ Dec 29 2021
🚨︎ report
I'd like to dedicate this joke to my wisdom teeth.

[Removed]

πŸ‘︎ 7k
πŸ’¬︎
πŸ‘€︎ u/ThoughtPumP
πŸ“…︎ Jan 14 2022
🚨︎ report
Where do you find a cow with no legs?

Where ever you left it πŸ€·β€β™€οΈπŸ€­

πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/kitkatty0309
πŸ“…︎ Jan 16 2022
🚨︎ report
I did it, I finally did it. After 4 years and 92 days I went from being a father, to a dad.

This morning, my 4 year old daughter.

Daughter: I'm hungry

Me: nerves building, smile widening

Me: Hi hungry, I'm dad.

She had no idea what was going on but I finally did it.

Thank you all for listening.

πŸ‘︎ 17k
πŸ’¬︎
πŸ‘€︎ u/Sk2ec
πŸ“…︎ Jan 01 2022
🚨︎ report
It this sub dead?

There hasn't been a post all year!

πŸ‘︎ 13k
πŸ’¬︎
πŸ‘€︎ u/TheTreelo
πŸ“…︎ Jan 01 2022
🚨︎ report
How do you stop Canadian bacon from curling in your frying pan?

You take away their little brooms

πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/Majorpain2006
πŸ“…︎ Jan 09 2022
🚨︎ report
School Was Clothed
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/Kennydoe
πŸ“…︎ Jan 08 2022
🚨︎ report
Remember that joke I told you about the chiropractor?

It was about a weak back.

πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/tanglwyst
πŸ“…︎ Jan 16 2022
🚨︎ report
Naan-negotiable
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/sjmaeff
πŸ“…︎ Jan 16 2022
🚨︎ report
Letting loose with these puns
πŸ‘︎ 6k
πŸ’¬︎
πŸ“…︎ Jan 13 2022
🚨︎ report
Couch potato
πŸ‘︎ 8k
πŸ’¬︎
πŸ“…︎ Dec 31 2021
🚨︎ report
Baka!
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/ridi86
πŸ“…︎ Jan 09 2022
🚨︎ report
All dad jokes are bad and here’s why

Why

πŸ‘︎ 7k
πŸ’¬︎
πŸ‘€︎ u/LordCinko
πŸ“…︎ Jan 13 2022
🚨︎ report
concrete πŸ—Ώ
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/Fast_Echidna_8520
πŸ“…︎ Jan 07 2022
🚨︎ report
My name is ABCDEFGHIJKMNOPQRSTUVWXYZ

It’s pronounced β€œNoel.”

πŸ‘︎ 14k
πŸ’¬︎
πŸ‘€︎ u/beef_fried_rice
πŸ“…︎ Dec 25 2021
🚨︎ report
Why are people so surprised and angry about Djokovic being an anti-vaxxer?

After all his first name is No-vac

πŸ‘︎ 4k
πŸ’¬︎
πŸ‘€︎ u/hangryman23
πŸ“…︎ Jan 06 2022
🚨︎ report
If Korean pop is shortened to Kpop and Korean Drama is Kdrama...

What, then, is Chinese rap?

Edit:

Notable mentions from the comments:

  • Spanish/Swedish/Swiss/Serbian hits

  • French/Finnish art

  • Country/Canadian rap

  • Chinese/Country/Canadian rock

  • Turkish/Tunisian/Taiwanese rap

πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/hootanahalf
πŸ“…︎ Jan 09 2022
🚨︎ report
That’s Michelle
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/FLEXSEALBREAKER
πŸ“…︎ Jan 10 2022
🚨︎ report
Knowledgeable man
πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/elisioth4739
πŸ“…︎ Jan 16 2022
🚨︎ report
Is this sub still active?

There hasn't been a single post this year!

(Happy 2022 from New Zealand)

πŸ‘︎ 10k
πŸ’¬︎
πŸ‘€︎ u/DonStimpo
πŸ“…︎ Dec 31 2021
🚨︎ report
What did the ocean say to the beach?

Nothing, it just waved

πŸ‘︎ 2k
πŸ’¬︎
πŸ‘€︎ u/hackerboi1198
πŸ“…︎ Jan 13 2022
🚨︎ report
is Isn't
πŸ‘︎ 2k
πŸ’¬︎
πŸ‘€︎ u/mordrathe
πŸ“…︎ Jan 11 2022
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.