Viewing profile — tobbebex
tobbebex
HN member- Joined
- Wed, Jul 25, 2018, 11:42 AM UTC
- HN karma
- 26
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About tobbebex
No profile information was provided.
Recent public activity
-
comment
Comment #41908888
Oh but C# can do even those: https://learn.microsoft.com/en-us/dotnet/csharp/language-ref...
-
comment
Comment #39939600
C# 8 introduced async generators with IAsyncEnumerable, so you can combine yield and await in C# as well. Those async generators are consumed using the ”await foreach” statement (w…
-
comment
Comment #32590295
Dependently typed languages such as Idris or Agda uses types for validation. Their type systems are also Turing complete, but you are only allowed to use total functions (that do h…
-
comment
Comment #28766004
I used to work with a medical software where we turned off logging completely in production, to mitigate the risk of accidentally log patient information. We needed to log that kin…
-
comment
Comment #28644203
An non-async Task is returning a Task object, where the return statement of an async Task method is of type int (which will be wrapped in the resulting Task). ”return 1;” eg only w…
-
comment
Comment #26742182
We did exactly this for my first son. We had been trying for weeks without result, both with trainer wheels and to run behind with an attached handle. Then one day we unmounted the…
-
comment
Comment #20439299
It depends on the userbase. I write medical imaging software intended to be used by MDs, and can’t just ask a random person at a coffeshop to try to establish a certain cancer diag…
-
comment
Comment #19677500
Indeed, it even has a Y2K bug in it!
-
comment
Comment #19093170
Dailyscandinavian seems to have mixed up the numbers a bit. In Sweden parents get 480 in total together, of which 390 are at 80% (capped at 989 SEK = 138 USD / day), and 90 days ar…
-
comment
Comment #19038831
It’s when you want to synchronize multiple atomics it gets complicated. With a mutex you can lock for an entire ”transaction” where you fetch a unique index and write your value to…
-
comment
Comment #17608486
A couple of years ago I worked with the 3d engine for an autostereoscopic display at Setred ( https://m.youtube.com/watch?v=zkwq_cQNLU8&feature=youtu.be ). For us the DVI bandwidth…