i need a therapist who will express life in haskell
Programmer Humor
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
Haskell mentioned λ 💪 λ 💪 λ 💪 λ 💪 λ
Half Life mentioned λ 💪 λ 💪 λ 💪 λ 💪 λ
Priest: If you are not yet baptised, I baptise you in the name of the father, the son and the holy spirit. Else break.
Parents: *sweating nervously*...else what
This is a slippery slope to baptismal logic gates
Baptism is such a weird thing. It's ritualized cleansing turned into one and done
You can get baptized as many times as you like, it doesn't stack
Per the actual wiki, some denominations seem to think it's a sin or heresy to do someone more than once. Which seems like what the nullification in the baptize
function is supposed to capture.
some denominations seem to think it's a sin or heresy to do someone more than once
Those denominations must have really high divorce rates..
Baptism is such a weird thing.
I think Haskell is such a weird thing
Dunno what to tell ya, it's great.
Could you imagine how op you could become though if baptisms stacked
Can you get more clean than clean?
Numbers are a human thing. The universe don't care
I imagine if baptisms stacked, you could pile on a gazillion of them like ablative armor against incoming sin.
Incoming baptismal penetration estimate from carnal sins: -17 layers
Shield integrity: 69%
Hull integrity: 100%
System: stable
Lol, imagine if showers stacked. You could spend a week showering and then all filth just disappears when it touches you
But then, what happens to the filth?
The only way I see this working is if you shower, you just continuously wash filth off yourself. But then does it all just kick in when you walk out of the shower? Or maybe, you never become clean until you've washed a lifetime of filth off yourself, then you're clean forever
I'm imagining every baby just covered in sludge, and after years of washing they become clean. Imagine your kid just never gets cleaner, and everyone just thinks you're a terrible parent. Imagine cleaning your kid and they become clean way ahead of schedule
There's some real existential horror here
In reality, if you bathe too much you just stand to lose too much sebum, making it easier for dirt to stick to your skin (and harder to remove) until the layer forms again.
I think erasing one's body could make you more clean than clean
So what you're saying is that fundies need to be cremated? Possibly AFTER death from other causes?
no no. they need to switch to Flouroantimonic acid instead of just flowing water.
Conceptual numeracy is a human thing. The universe absolutely cares about quantifiable physical properties which we represent as numbers.
Numbers are a human thing. The universe don't care
Doubly so with religion, though 🤷
The LDS (Mormons) actually do repeat it, in a sense. Their weekly sacrament is a renewal of their baptismal blessings
Probably the reason some other sects call double-dipping a sin, so as to not be like those Mormons.
That honestly seems like the best way to write conditionalBaptize
but I still hate it. Probably because IRL you'd just rewrite baptism instead of retrofitting the function with a clever use of id
.
It looks pretty normal to me as a professional Haskeller, though I suppose it's perhaps slightly cleaner to write it as conditionalBaptize p = fromMaybe p $ baptize p
. It's largely just a matter of taste and I'd accept either version when reviewing an MR.
Edit: I just thought of another version that actually is far too clever and shouldn't be used:
conditionalBaptize = ap fromMaybe baptize
, making use of the monad instance for ->
. But yeah, don't do this.
This is probably an ok use for a GADT. Something like:
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE KindSignatures #-}
data Bap = Baptized | Unbaptized
data Person :: Bap -> * where
Baptize :: Person Unbaptized -> Person Baptized
NewPerson :: Person Unbaptized
conditionalBaptize :: Person a -> Person Baptized
conditionalBaptize p =
case p of NewPerson -> Baptize p
Baptize _ -> p
main = return ()
Thank you for refactoring baptism. How do we push this to production now?
Hey hey hey, let's start with a PR, we are not savages here aren't we?
Which denominations implement idempotent baptisms?
Sounds like Haskell needs an official Saint.
There's an old joke about functional programming separating Church from state.