Live data from Hacker News

Viewing profile — tibordp

tibordp

HN member
Joined
Thu, Mar 31, 2022, 7:42 PM UTC
HN karma
135
Public activity
22 items

About tibordp

No profile information was provided.

Recent public activity

  1. comment
    Comment #48993683

    Presumably these are new subdomains, if a caching DNS resolvers never saw the domain yet, it would simply query the authoritative server. There's a small nuance here that DNS spec …

  2. comment
    Comment #48933705

    Good article! This matches how I feel about the situation. It's really not incongruent to use LLMs and be in awe of their frankly incredible capabilities while at the same time rec…

  3. comment
    Comment #48883770

    Yes! We played Achtung a lot on library computers in high school during breaks and I remembered it when I needed to pick a name for the app.

  4. story
    Show HN: Kurvengefahr – browser CAD/CAM for pen plotters

    A few years ago I made a pen plotter attachment for Prusa MK4 ( https://www.printables.com/model/827264-pen-plotter-attachme... ) and at the time I didn't have a good way to turn a…

  5. comment
    Comment #46526788

    Given that we are talking about A4 papers and grams, I'd bet this wasn't in the US. In Europe, the typical flat rate is up to 100g for standard letters. And that's 20 sheets, which…

  6. comment
    Comment #42738267

    That's only true for information theoretically secure algorithms like one-time pad. It's not true for algorithms that are more practical to use like AES.

  7. comment
    Comment #41811796

    Similar - I learned HTML by tweaking ReadMe.htm that was included with Dweep videogame from (now defunct) Dexterity Software.

  8. comment
    Comment #37066887

    Not sure I'd agree about it being esoteric. Understanding or at least knowing about ARP is still very much essential for people in networking. arping is a very useful tool for seei…

  9. comment
    Comment #36543591

    You can go surprisingly far with C, though LLVM is probably a better long-term option for a serious compiler, because it's a tool made for the job (unless you target exotic and/or …

  10. comment
    Comment #36434372

    Just the standard Remote-SSH https://code.visualstudio.com/docs/remote/ssh

  11. comment
    Comment #36434089

    That's interesting, I don't find VSCode slow at all, even when working on large workspaces via SSH over a high latency link. Sure, there are native editors that are snappier, but n…

  12. comment
    Comment #32706465

    It's not that it's hard, it's just that it is not inline, so it requires a context switch because the CM is defined outside, even when it's doing something specific. The most commo…

  13. comment
    Comment #32706264

    That's a good point and also one of the things I kinda like about Alumina. You can do thing like this and the file will only be closed at the end of the function rather than the en…

  14. comment
    Comment #32706136

    I wouldn't say it was very difficult, but it did take quite a bit of time. Apart from some basic principles (no GC, no RAII, "everything is an expression"), I basically kept adding…

  15. comment
    Comment #32706028

    No native compilation to WASM yet, but since the compiler outputs self-contained C, it should be fairly easy to do it with Emscripten. The sandbox is running the code server-side i…

  16. comment
    Comment #32705586

    Python context managers are actually very similar to guard objects in C++ and Rust. What I meant was something like this (could also be done with `contextlib`, but it's also verbos…

  17. comment
    Comment #32705021

    Scoped destruction is awesome in general, and I agree that it is superior to defer. I think one case where defer might be nicer is for things that are not strictly memory, e.g. ins…

  18. comment
    Comment #32704944

    Honestly, Tree Sitter is fantastic, I can highly recommend it. By far the most user friendly and powerful parser generator I've worked with. The C API is very nice. The only two pa…

  19. comment
    Comment #32704633

    Valgrind and Sanitizers should work on Alumina. I have not actually tried them myself yet, but I don't see any reason why they couldn't work. The only potential problem I see that …

  20. comment
    Comment #32704585

    As far as I know it doesn't have a single feature that is really unique. It's more like a combination of things I like from other languages, like syntax and expressions from Rust, …

  21. comment
    Comment #32703988

    Totally agreed about FFI. I wanted to make it easy to interop with C code and write expressive bindings. Check for example the language bindings to LLVM's C API (fairly low level) …

  22. story
    Show HN: Alumina Programming Language

    Alumina is a programming language I have been working on for a while. Alumina may be for you if you like the control that C gives you but miss goodies from higher level programming…