Viewing profile — hsin003
hsin003
HN member- Joined
- Sat, Jan 10, 2026, 2:40 PM UTC
- HN karma
- 11
- Public activity
- 26 items
- HN profile
- View on Hacker News ↗
About hsin003
No profile information was provided.
Recent public activity
-
comment
Comment #48903899
containarium did the same thing with lxc as a container isolation and use eBPF for network safeguard. https://github.com/FootprintAI/Containarium
-
comment
Comment #48903548
have you tried lxc + eBPF? the former allows you to have lighter & faster (share kernel) and the latter gives you security. that is what we do for containarium.
-
comment
Comment #48903541
does eBPF be serving for security enough? ec2 is heavy in terms of cost while containarium ( https://github.com/FootprintAI/Containarium ) can achieve both, safe & cheap.
-
comment
Comment #48903529
Really cool project. It's fascinating to see more developers pushing back against the complexity of modern container orchestrators. This open-sourced project called Containarium ( …
-
comment
Comment #48130577
[flagged]
- comment
- story
-
comment
Comment #47930198
We hit a Cloud NAT bill of ~$4,500/month (3.2 TiB/day at $0.045/GiB) on a project where we'd "enabled Private Google Access" on the subnet. The traffic was inference workloads pull…
- story
-
comment
Comment #47432813
[dead]
-
comment
Comment #47432804
[dead]
-
comment
Comment #47432797
I agree CI should catch as much as possible — image scanning and dependency checks at build time are table stakes. But in practice, CI is only a point-in-time guarantee. A build ca…
-
comment
Comment #47432775
[dead]
-
comment
Comment #47399045
I think both points are true in practice. Reviewing AI-generated code can require more experience than generating it, but at the same time some basic checks (dependency versions, r…
-
comment
Comment #47399010
That’s a great point about fresh-context reviews — the same session that generated or assembled the code often won’t catch its own mistakes. What worried us in this incident is tha…
-
comment
Comment #47388149
Totally agree — AI scaffolding automates work, but best practices like CI/CD and pentesting are still essential. Continuous monitoring is necessary for all commits, and combining i…
-
comment
Comment #47387288
CVEs are time-dependent. Even if npm audit guarantees no known vulnerabilities at the moment you merge a PR, new CVEs can emerge later, silently impacting your system without anyon…
-
comment
Comment #47387059
Hi HN — author here. This incident showed how AI-generated code can inadvertently introduce vulnerabilities. The cryptominer ran because a dependency version chosen by an AI coding…
-
story
AI coding agents accidentally introduced vulnerable dependencies
Recently we discovered something unexpected on one of our servers: a cryptominer running in the background. The machine was hosting a web service built using Next.js. The first sig…
-
comment
Comment #46567341
Good questions — yes, Containarium relies heavily on *user namespaces*. Here’s how it works: - We enable `security.nesting=true` on unprivileged LXC containers, so Docker can run i…
-
comment
Comment #46566696
Containarium does indeed build on LXC/Incus and isn’t trying to reinvent the wheel. If you’ve run multi-tenant sandboxes at scale, we’d love to hear what pitfalls or limitations yo…
-
comment
Comment #46566654
Sorry, we want to understand your use case better. Did you provision *one VM via Proxmox* and then run *multiple users via Incus* inside it? We’re curious how you handled provision…
-
comment
Comment #46566553
Thanks for sharing! We’re definitely aware that Incus + Proxmox are very mature and full-featured. Containarium is more of a "purpose-built, single-VM, SSH-first dev environment" a…
-
comment
Comment #46566479
That’s awesome — thanks for sharing! If you don’t mind me asking: - Did you use LXC containers, or full VMs for each sandbox? - How did you handle SSH / network isolation? - Any ti…
-
comment
Comment #46566101
Hi HN, We’ve been experimenting with an alternative to the “one VM per developer” model for SSH-based development environments. The project is called Containarium: https://github.c…