Live data from Hacker News

Viewing profile — tobbebex

tobbebex

HN member
Joined
Wed, Jul 25, 2018, 11:42 AM UTC
HN karma
26
Public activity
11 items

About tobbebex

No profile information was provided.

Recent public activity

  1. comment
    Comment #41908888

    Oh but C# can do even those: https://learn.microsoft.com/en-us/dotnet/csharp/language-ref...

  2. 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…

  3. 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…

  4. 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…

  5. 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…

  6. 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…

  7. 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…

  8. comment
    Comment #19677500

    Indeed, it even has a Y2K bug in it!

  9. 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…

  10. 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…

  11. 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…