xqb64

↗ HN profile [ 112 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. I'm wondering if there exists a US equivalent of Anabin[0] -- a German portal and database for evaluating foreign educational certificates. [0]: https://anabin.kmk.org/cms/public/startseite

  2. Diplomatic Bag (en.wikipedia.org)
  3. 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…

  4. My personal favorite is Fabrice Bellard.

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

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

  7. 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…

  8. 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…

  9. Email is in the profile.

  10. 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…

  11. 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…