Viewing profile — JacobCarlborg
JacobCarlborg
HN member- Joined
- Sun, Aug 30, 2020, 9:16 AM UTC
- HN karma
- 69
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About JacobCarlborg
No profile information was provided.
Recent public activity
-
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…
-
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…
-
comment
Comment #34409821
And you can run tests, not just compile.
-
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…
- comment
-
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 …
-
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…
-
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
-
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…
-
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…
-
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…
-
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…
-
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 …
-
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 .