Live data from Hacker News

Viewing profile — evertheylen

evertheylen

HN member
Joined
Sun, Jul 15, 2018, 10:34 AM UTC
HN karma
135
Public activity
59 items

About evertheylen

No profile information was provided.

Recent public activity

  1. comment
    Comment #49244729

    I see you are a co-founder! Thanks for pg_lake. I am actually already heavily using it, was just interested to read about CDC in the context of pg_lake.

  2. comment
    Comment #49241524

    I'm interested in pg_lake so I wanted to check out your link, but it seems to be internal to snowflake?

  3. comment
    Comment #49179346

    Could you not use something like https://github.com/superfly/tokenizer for AWS? They list it as an explicit example, but I have little experience with AWS.

  4. comment
    Comment #49172608

    Once again, I ask myself: should we start "shaming" developers who don't use isolation? It still seems I am the exception and most people run their dev environment with full permis…

  5. comment
    Comment #49092844

    It's not as weird as you might think: laptops may have touchscreens (which can be multi-touch) on top of the "normal" cursor. IIRC, X.org can't really handle such cases cleanly.

  6. comment
    Comment #49037911

    Also highly relevant project: Cruller, also uses the pre-rewrite Bun codebase but focuses only on the runtime part for production. Link: https://ziggit.dev/t/cruller-buns-zig-runti…

  7. comment
    Comment #48352848

    Running systemd inside a container + automatic SELinux integration

  8. story
  9. comment
    Comment #48192521

    I rely on podman for my "devcontainers": https://github.com/evertheylen/probox . If anyone can point me to the weak points in my setup I'd appreciate it!

  10. comment
    Comment #48059353

    If you're looking for a language that aims to solve the "two-language problem" like Mojo, but want something more open, more mature and less influenced by VC funding, check out Jul…

  11. comment
    Comment #48012673

    This is cool! But AFAIK bun promises to be a one-stop-shop for all your JS/TS dev needs, while Perry is "just" a compiler from Typescript to native executables.

  12. comment
    Comment #47925186

    Yes! But I'm assuming it will prevent me from upgrading to Postgres 19 in the future.

  13. comment
    Comment #47920696

    From what I can find Postgres 17 [1] introduced incremental backups to pg_basebackup, refined in 18, but nowhere near the full featureset of pgBackRest. Is that what you meant? Hav…

  14. comment
    Comment #47920193

    Ah, sad to read this. Does anyone know of good alternatives?

  15. comment
    Comment #47245154

    Lots of cool new ideas like: - Async is first‑class - Optimistic primitives (createOptimistic, createOptimisticStore) - A more predictable scheduler - And much more!

  16. story
  17. comment
    Comment #47171726

    It's just OpenStreetMap, see https://wiki.openstreetmap.org/wiki/How_to_contribute

  18. comment
    Comment #46897626

    > Maintaining a data center is much more about solving real-world challenges. The cloud requires expertise in company-specific APIs and billing systems. A data center requires know…

  19. comment
    Comment #46813263

    Not really, I used it to develop against a "real" postgres database for a node backend app. It worked fine and made it pretty easy to spin up a development/CI environment anywhere …

  20. comment
    Comment #46698011

    Here in Belgium I have the impression there's steady progress towards such a system: https://wero-wallet.eu

  21. comment
    Comment #45891389

    This is actually how GTFS (a standard format for public transit data) works: https://gtfs.org/documentation/schedule/reference/#stop_time... . Especially sleeper trains can get wei…

  22. comment
    Comment #45766244

    If you're on Linux, I've tried to build an easy yet secure way to isolate your system from your coding projects with containers. See https://github.com/evertheylen/probox

  23. comment
    Comment #45729976

    Interesting to see Marko and Solid topping the performance metrics. Ryan Carniato* was a core team member of Marko and started Solid. I wouldn't be surprised if SolidStart can even…

  24. comment
    Comment #45577675

    Great piece of software. For me its killer feature is automatically passing through exposed ports in a container, so you don't have to recreate the container with different -p opti…

  25. comment
    Comment #45422369

    I always like to see new projects using containers. Two questions: - how is your devbox.json file different from a Dockerfile/Containerfile? - does your project attempt to provide …