Live data from Hacker News

Viewing profile — shuss

shuss

HN member
Joined
Fri, Sep 06, 2013, 7:37 AM UTC
HN karma
962
Public activity
73 items

About shuss

Author of Unixism. Garden variety nerd.

- https://unixism.net - https://twitter.com/shuveb

Recent public activity

  1. story
  2. story
  3. story
  4. 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/

  5. story
  6. comment
  7. story
  8. 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.

  9. comment
    Comment #40020195

    There's also Gocker: https://github.com/shuveb/containers-the-hard-way

  10. 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…

  11. 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…

  12. story
  13. story
  14. story
  15. 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…

  16. story
  17. story
  18. story
  19. story
  20. story
  21. story
  22. 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…

  23. comment
    Comment #23136908

    io_uring_get_probe() needs v5.6 at least.

  24. 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.

  25. 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 …