noli

joined 1 year ago
[–] [email protected] 3 points 7 months ago (1 children)

I think sweet iced tea is a different beverage from tea.

Don't get me wrong, I love me some good sweet tea, my gf lived in the south for some years and makes a killer sweet ice tea. But I still wouldn't classify it as tea.

[–] [email protected] 4 points 7 months ago (4 children)

Isn't that more sweet iced tea?

Disclaimer: I'm an ignorant european :p

[–] [email protected] 10 points 8 months ago (2 children)

Depends on how deep down the rabbit hole you want to go :p

  • creating a new variable that contains the updated value
  • recursion (e.g. it's not possible to make a loop that increments i by 1, but it is possible to turn that loop into a function which calls itself with i+1 as argument)
  • avoiding typical types of operations that would update variable values. For example instead of a for loop that updates every element of a list, a functional programmer will use the map function, which takes a list and a function to apply to each element of that list to create an updated list. There's several more of these very typical functions that are very powerful once you get used to using them.
  • monads (I'm not even gonna try to explain them as I hardly grasp them myself)
[–] [email protected] 1 points 8 months ago

I want a roof python now

[–] [email protected] 2 points 8 months ago

Good luck reaching an unwilling horse's eye balls

[–] [email protected] 1 points 8 months ago

I also vaguely remember such a story but there the aliens got fukd up because when all hope was lost humans just started kamikaze-ing their ships. Spite is our superpower.

[–] [email protected] 3 points 8 months ago (3 children)

If you get prep time you could set up some traps.

Assuming both sides see it as a fight to the death, the horse will also engage so you could just run away into a bunch of traps. All you need is for the horse to injure a leg in one trap and it's done for. I think even just some holes with a couple spikes would be enough to injure and maybe even sprain an ankle.

Without prep time you're pretty doomed, I think your best bet is either climbing up a tree to buy you some prep time to make a spear out of the branches or worst case diving in, aiming to do damage to its legs (unlikely) and hope you are able to get out without being trampled (unlikely)

[–] [email protected] 45 points 8 months ago (2 children)

Dogmatic statements like this lead to bad, messy code. I'm a firm believer that you should use whatever style fits the problem most.

Although I agree most code would be better if people followed this dogma, sometimes mutability is just more clean/idiomatic/efficient/...

[–] [email protected] 31 points 8 months ago (6 children)

In functional programming, everything is seen as a mathematical function, which means for a given input there is a given output and there can be no side effects. Changing a variable's value is considered a side effect and is thus not possible in pure functional programming. To work around this, you typically see a lot of recursive and higher order functions.

Declaring all values as const values is something you would do if you're a diehard functional programmer, as you won't mutate any values anyway.

[–] [email protected] 9 points 8 months ago (2 children)

Paywalled article

[–] [email protected] 10 points 8 months ago (1 children)

It's all learned behaviour. If you grew up with F that makes total sense and C sounds ridiculous. If you grew up with C that's totally intuitive for anyone, just as much as F, so using a scale that has no point outside of the weather sounds dumb. Neither system is more intuitive by any means. Both systems ave benefits and downsides.

Whenever I talk to americans and they use F I need to convert it because I grew up with C and that just makes more sense to me, even if I know the "0-100 F is according to human experience" thing. Like sure, 80F is hot, but how hot is it? Oh 27C that's hot but not extreme.

Arguing one or the other is superior is not only pointless but also just silly

view more: ‹ prev next ›