Live data from Hacker News

Viewing profile — JacobCarlborg

JacobCarlborg

HN member
Joined
Sun, Aug 30, 2020, 9:16 AM UTC
HN karma
69
Public activity
14 items

About JacobCarlborg

No profile information was provided.

Recent public activity

  1. comment
    Comment #43554377

    Here's a talk on that topic: https://infocondb.org/con/recon/recon-2023/be-kind-please-re... . IIRC, they ended up implementing a form of lightweight VM to be able to instrument pr…

  2. comment
    Comment #40322534

    Had a quick look. Seems like an interesting tool. I know there are many companies in Europe that, for regulations and compliance reasons, cannot have their data leave Europe. As fa…

  3. comment
    Comment #34409821

    And you can run tests, not just compile.

  4. comment
    Comment #34409818

    Yeah, I've been using `docker/setup-qemu-action` as well to run on non-x86-64 architectures for Linux [1]. But since it's Docker it's Linux only and doesn't support other operating…

  5. comment
  6. story
    Show HN: Cross-Platform GitHub Action

    I've created a GitHub Action for running commands on multiple platforms. This includes platforms that GitHub Actions don't natively support. It currently supports FreeBSD, OpenBSD …

  7. comment
    Comment #29421137

    You can use this GitHub action [1] to get SSH access to a GitHub runner. If you need access to the GUI you should be able to use ngrok, perhaps with this GitHub action [2]. I've tr…

  8. comment
    Comment #27047993

    This seems perfect to combine with αcτµαlly pδrταblε εxεcµταblε and cosmopolitan libc [1]. [1] https://justine.lol/cosmopolitan/index.html

  9. comment
    Comment #26851811

    The system linker strips debug info from the executable. The way the debugger finds debug info is that the debug info is available in the object files. A reference to the object fi…

  10. comment
    Comment #26564824

    If you want crazy fast build times, then D is your best bet [1]. D's compile times are faster than most other languages (I'm not counting Vox, it's too experimental). [1] https://g…

  11. comment
    Comment #26130869

    This is very common in D and D doesn't not have any macro system. It uses regular syntax (more or less). D was doing this way before Zig existed and before C++ had constexpr. Simpl…

  12. comment
    Comment #26130819

    In D, all semantic analysis is performed eagerly (I think), except for templates. D also supports CTFE (Compile Time Function Evaluation), `static if`, `static assert` and a few ot…

  13. comment
    Comment #26027931

    D has native support for calling Objective-C. No need to integrate with the Objective-C runtime directly. Everything is written using familiar D syntax. No extra overhead compared …

  14. comment
    Comment #24322317

    D has had native interoperability support for Objective-C for a couple of years now: https://dlang.org/spec/objc_interface.html .