Live data from Hacker News

Viewing profile — valcron1000

valcron1000

HN member
Joined
Wed, Dec 08, 2021, 6:00 AM UTC
HN karma
346
Public activity
172 items

About valcron1000

No profile information was provided.

Recent public activity

  1. comment
    Comment #49129955

    22 years late, but better late than never.

  2. comment
    Comment #49106095

    Care to share your setup? I'm currently working on pretty much the same thing and it's looking good so far, but having a single user makes it hard to get enough feedback.

  3. comment
    Comment #49077495

    > what should be done about open weight bioweapon and cyber-offense capabilities? Is it simply the cost of freedom that we should allow attackers to access these tools? Yes, in the…

  4. comment
    Comment #48874559

    Had no nuke the `target` folder a couple of weeks ago, +400 GB ...

  5. comment
    Comment #48646431

    This guy has been preaching against crypto for years, to the point of leaving the Haskell ecosystem just because the language was being used by Cardano. At some point you have to w…

  6. comment
    Comment #48275045

    Damn, that looks awful.

  7. comment
    Comment #48207974

    Where can we read the code?

  8. comment
    Comment #48042437

    > if it’s a solo greenfield project That's a big if. I don't have numbers but most professional engineers are not working on such projects

  9. comment
    Comment #47316943

    I've been thinking of doing the exact same thing. Preserve context as images and die. Expose a single tool called "eval". You could have a extremely tight editor integration using …

  10. comment
    Comment #46873920

    Still nothing to compete with GPT-OSS-20B for local image with 16 VRAM.

  11. comment
    Comment #46583654

    > When something breaks, I SSH in, ask the agent what is wrong, and fix it. > I am spending time using software, learning What are you actually learning? PSA: OP is a CEO of an AI …

  12. comment
    Comment #46481574

    If international law had any effect people would believe in it. You're mixing cause/effect. This situation has been going on for years and the lack of response by international org…

  13. comment
    Comment #46362395

    I'm unfortunately on the same situation. We made a consultation with people from Baptist Health Miami and it seems like there are several non trivial requirements for such treatmen…

  14. comment
    Comment #46332720

    One of the first things I tried in Rust a couple of years ago coming from Haskell. Unfortunately it's still not stabilized :(

  15. comment
    Comment #46028196

    > Memory safety is not that sacred. In fact, for many applications malfunctioning is better than crashing Yeah, just another data leak, no biggie.

  16. comment
    Comment #45943723

    Not at the same level. TRAMP is way behind feature-wise.

  17. comment
    Comment #45880492

    > Zig must also be good for eliminating the same ones. But Zig does not eliminate them, but rather it might catch them at runtime. The difference here is that Rust promises that it…

  18. comment
    Comment #45828131

    Yes, but instances require the user to provide shrinking while Hypothesis does not: shrinking is derived automatically.

  19. comment
    Comment #45818439

    In the sense that you only need to work with the standard IO monad to get the benefits of the runtime.

  20. comment
    Comment #45791491

    You don't need "monads" (in plural) since GHC provides a runtime where threads are not 1:1 OS threads but rather are managed at the user level, similar to what you have in Go. You …

  21. comment
    Comment #45788445

    > async/await is also available in a bunch of other languages, including F#, C#8, Haskell[...] Haskell (GHC) does not provide async/await but uses a green thread model.

  22. comment
    Comment #45782877

    > Knowing if a function will yield the thread is actually extremely relevant knowledge you want available. When is this relevant beyond pleasing the compiler/runtime? I work in C# …

  23. comment
    Comment #45774944

    > I mean, Haskell has like what, 2, 3, 4? Major build systems and package repositories? It's a quagmire. Don't know when was the last time you've used Haskell, but the ecosystem is…

  24. comment
    Comment #45774374

    } catch (exception: Exception) { // log exception throw exception } Probably the most harmful snippet ever written. Every blog post about errors has something similar written, rega…

  25. comment
    Comment #45143029

    > that data flowing between them consists of simple, agreed-upon formats > HTTP servers and clients, email systems, DNS resolvers—they all interoperate based on simple protocols Ye…