Viewing profile — evertheylen
evertheylen
HN member- Joined
- Sun, Jul 15, 2018, 10:34 AM UTC
- HN karma
- 135
- Public activity
- 59 items
- HN profile
- View on Hacker News ↗
About evertheylen
No profile information was provided.
Recent public activity
-
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.
-
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?
-
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.
-
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…
-
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.
-
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…
-
comment
Comment #48352848
Running systemd inside a container + automatic SELinux integration
- story
-
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!
-
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…
-
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.
-
comment
Comment #47925186
Yes! But I'm assuming it will prevent me from upgrading to Postgres 19 in the future.
-
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…
-
comment
Comment #47920193
Ah, sad to read this. Does anyone know of good alternatives?
-
comment
Comment #47245154
Lots of cool new ideas like: - Async is first‑class - Optimistic primitives (createOptimistic, createOptimisticStore) - A more predictable scheduler - And much more!
- story
-
comment
Comment #47171726
It's just OpenStreetMap, see https://wiki.openstreetmap.org/wiki/How_to_contribute
-
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…
-
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 …
-
comment
Comment #46698011
Here in Belgium I have the impression there's steady progress towards such a system: https://wero-wallet.eu
-
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…
-
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
-
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…
-
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…
-
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 …