Joined: 2020-05-31
ββββ
2024-11-25 Ephera β RE: bleistift2
Well, because Iβm of a very different opinion about its readability. If you know the format, then sure, you can mostly read it as expected. But our logs are often something that customers or [β¦]
ββββ
2024-11-21 Ephera β 1π 2π¬ β RE: raldone01
Implementation of the add() function is here: github.com/raldone01/python_lessons_py/β¦/lib.py
ββββ
2024-11-17 Ephera β edited β 1π 1π¬ β RE: NorthWestWind
Yep, some code examples from the official documentation. This:
[β¦]
printPersons(
[β¦]
ββββ
2024-11-16 Ephera β 1π¬ β RE: kazaika
I always hated the implementation for .toString() of Duration. It gives you a string like that: PT8H6M12.345S (not a hash)
Apparently, itβs an ISO 8601 thing, but what the hell am I supposed [β¦]
2024-11-16 Ephera β 1π¬ β RE: xor
It makes it look like theyβre just adding random noise to avoid colliding with existing syntax. Maybe they can try a UUID next timeβ¦
2024-11-16 Ephera β RE: akkajdh999
Yeah, I came to Rust from Scala and Kotlin, where equality is default-implemented (for case class and data class respectively, which is basically all we ever used), so this meme surprised me a [β¦]
2024-11-16 Ephera β 1π 1π¬ β RE: r00ty
I find these videos give a very visual explanation and help to put you into the right mindset: intorust.com
(You can skip the first two videos.)
[β¦]
2024-11-16 Ephera β RE: BaumGeist
The first iteration of the Rust compiler was written in OCamlβ¦
ββββ
2024-11-14 Ephera β RE: TimeSquirrel
You donβt want to use exceptions in normal control flow, because theyβre extremely slow. Every time you throw an exception, it has to collect a stacktrace, which is hundreds, if not thousands, [β¦]
ββββ