Live data from Hacker News

Viewing profile — drjeats

drjeats

HN member
Joined
Sun, Jan 12, 2014, 10:19 PM UTC
HN karma
14
Public activity
21 items

About drjeats

No profile information was provided.

Recent public activity

  1. comment
    Comment #44884493

    Ghostty is trying to be a speed demon terminal, so I'd expect it to use ReleaseFast. The current build system docs don't prioritize one build mode over another: https://ziglang.org…

  2. comment
    Comment #44860967

    > Then why do my data structures detect if I go out of bounds? Because you have iterator debugging and/or assertions turned on and are only using non-primitive data structures (e.g…

  3. comment
    Comment #44860880

    Personally, I'd rather prefix with `\\` than have to postfix with `\n`. The `\\` is automatically prepended when I enter a newline in my editor after I start a multiline string, mu…

  4. comment
    Comment #42676241

    In the most common cases, Zig does exactly what D does here as well. Constant expressions are folded at compile time like any reasonable systems language. It's akin to writing C++ …

  5. comment
    Comment #25142033

    People with secure tech careers in hard-to-break-into-industries get those careers by being able to work for little-to-no-pay due to their privileged upbringing. This isn't sour gr…

  6. comment
    Comment #25141806

    If your company has the bandwidth to create, manage, and mentor not-real-client-work, surely you have the resources to pay interns.

  7. comment
    Comment #23496483

    This page did not automatically flip to dark mode on any of the browsers I use--which all are on dark mode--on my macbook, which is also using dark mode.

  8. comment
    Comment #21738364

    Nice article :) Might be worth touching on error callbacks/logging as an error handling strategy. Sometimes an error is not recoverable in the sense that the calling code can't rea…

  9. comment
    Comment #12383099

    I like doing that too, but the Zig syntax doesn't prevent that kind of arrangement, just makes it a bit wider. return if (value >= radix) error.InvalidChar else if (comeCondition) …

  10. comment
  11. comment
    Comment #12021458

    C#'s new interpolation syntax is a counterexample to your point about easy formatting: https://msdn.microsoft.com/en-us/library/dn961160.aspx#Ancho... $"Name = {name}, hours = {hou…

  12. comment
    Comment #11731203

    Isn't edn a data/object format, rather than a markup format? It's like a better JSON.

  13. comment
    Comment #10144146

    If only the native package manager wasn't write-only for pkg installers. I use Homebrew for its `uninstall` command.

  14. comment
    Comment #10144101

    :) I have a little local deploy script that runs this if it fails a smoke test: say -v Bad "Deployment failed, server gave a bad response"

  15. comment
    Comment #10113354

    Is the Blender Game Engine workflow mostly like shown in this video? https://www.youtube.com/watch?v=K5HEyoDb-tw&index=64&list=PL... I don't understand the appeal of learning progr…

  16. comment
    Comment #9955794

    Yes, the platform support and hot reloading are real nice. That's why so many teams have invested in Unity. The collision engine is what I was referring to when I said it's not tha…

  17. comment
    Comment #9952717

    Unity doesn't provide any sequencing for you (maybe you were thinking of Unreal's Matinee?). Also, most people who need input mapping don't use the builtin input mapper. Editor scr…

  18. comment
    Comment #9625247

    Can it do uninstalls well yet? I tried to make a package for a simple binary last year (I believe it was premake4 or something). It was annoying to use, and other software I instal…

  19. comment
    Comment #9609209

    I'm all about Watermelon Man. Kids are still learning jazz and other music history in schools that have good music programs.

  20. comment
    Comment #9607996

    It's similar, but not quite the same. The built-in components work like this (although I'm not deeply knowledgeable of Unity internals or anything, just have been working with it f…

  21. comment
    Comment #9594825

    In magit-status-mode I'm able to stage files based on the region. I can also expand them and highlight multiple chunks to stage just those chunks. The are only two major things I d…