Viewing profile — shuss
shuss
HN member- Joined
- Fri, Sep 06, 2013, 7:37 AM UTC
- HN karma
- 962
- Public activity
- 73 items
- HN profile
- View on Hacker News ↗
About shuss
- https://unixism.net - https://twitter.com/shuveb
Recent public activity
- story
- story
- story
-
comment
Comment #46899896
There are many impediments to scaling vibe coding. We built a tool to internally scale vibe coding to vibe engineering: https://mfbt.ai/blog/vibe-coding-vs-vibe-engineering/
- story
-
comment
Comment #44363009
[dead]
- story
-
comment
Comment #40072318
Fast changing libraries are a huge pain. That's why a no-code approach like Unstract ( https://github.com/zipstack/unstract ) makes sense.
-
comment
Comment #40020195
There's also Gocker: https://github.com/shuveb/containers-the-hard-way
-
story
Show HN: Unstract – AGPL, LLM-powered Fivetran/Twilio for unstructured docs
Hello HN! One of the most common uses of LLMs is to go beyond what traditional RPA or IDP can do when it comes to structuring unstructured documents. However, there are a lot of ch…
-
story
Show HN: Unstract(AGPL) – Launch LLM-powered APIs to structure unstructured docs
Hello HN! One of the most common uses of LLMs is to go beyond what traditional RPA or IDP can do when it comes to structuring unstructured documents. However, there are a lot of ch…
- story
- story
- story
-
comment
Comment #23559524
Yep. Docker is famously written Go. The only reason I wrote this is as an educational tool to discuss how containers under Linux really work. It’s self-contained (pun unintended) e…
- story
- story
- story
- story
- story
- story
-
comment
Comment #23136971
This is such a great point. Never thought how async I/O could be a problem this way. In the SQ polling example, I used BPF to "prove" that the process does not make system calls: h…
-
comment
Comment #23136908
io_uring_get_probe() needs v5.6 at least.
-
comment
Comment #23134475
True. Have to agree, here. Although one advantage over aio for block I/O that io_uring will still have is to use polling mode to almost completely avoid system calls.
-
comment
Comment #23133883
The raw io_uring interface, once you ignore the boilerplate initialization code, is actually a super-simple interface to use. liburing is itself only a very thin wrapper on top of …