xqb64

↗ HN profile [ 95.4 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. Diplomatic Bag (en.wikipedia.org)
  2. I'm looking for resources (primarily books, papers, and YT videos) on software architecture. I'm NOT interested in Monolith vs Microservices type of material -- but rather material applicable in general, or systems…

  3. Sort of like what Rust was back in 2012.

  4. I wrote a compiler for a Rust-flavored C-like language for x86_64. Check it out and let me know what you think. :)

  5. This is a Python port of the git(1) clone that can be found in James Coglan's amazing book, "Building git". I've definitely had a blast putting it together, and I also learned a lot, both about git and about Python. I…

  6. Hello. I wanted to share what I had been working on for the past couple of months or so. It's an optimizing C compiler for a large subset of the C programming language written in Rust. It's basically a Rust…

  7. Email is in the profile.

  8. I'm excited to share with you a high-performance reconnaissance tool I wrote in Rust. It utilizes the "stealth" (or "half-open") technique (sending TCP packets with the SYN bit set), and has demonstrated impressive…

  9. During the development of my tiny (less than 4k LoC) virtual machine, I continuously measured how long it took to execute recursive fibonacci function (fib(40)) as a way to estimate how performant it is. What other…