Live data from Hacker News

Viewing profile — schmuhblaster

schmuhblaster

HN member
Joined
Sat, Nov 15, 2025, 1:29 PM UTC
HN karma
152
Public activity
66 items

About schmuhblaster

No profile information was provided.

Recent public activity

  1. comment
    Comment #49246415

    That should be possible. You can e.g. take a look at the deep research example skill. The Prolog/DML lets you express any kind of loop, graph, whatever workflow.

  2. comment
    Comment #49244018

    I’ve been working on DeepClause [0], an agentic harness, the core of which is based on Prolog. Every interaction (conversation turn, plan, execute plan, etc.) triggers a small logi…

  3. comment
    Comment #49125374

    Indeed, and maybe that's all there is to it. Still, I'd hope we will eventually better understand what's exactly happening in the wake of many repeated applications of f().

  4. comment
    Comment #49116199

    Yes, I am the author and thanks so much for trying! Please do submit a github issue. My first suspicion about the speed is that maybe an inner loop is taking too many turns until t…

  5. comment
    Comment #49111820

    Sorry, did not notice your comment until just now. So far I am observing two things: 1. For smaller models, performance on Benchmarks such as DeepPlanning does increase significant…

  6. comment
    Comment #49098089

    For my own (rather idiosyncratic) harness I've been experimenting [0] with "compiling" long markdown specifications into small executable logic programs. It's too early to tell for…

  7. story
  8. comment
    Comment #48952158

    You might like this: https://github.com/deepclause/deepclause-sdk . It’s a DSL I’ve been working on to encode mixed deterministic/probabilisitic agent behavior.

  9. comment
    Comment #48755919

    Been building various LLM+PDF pipelines at work. As soon as you need to e.g. parse tables etc. it becomes a lot of hard work!

  10. comment
    Comment #48743445

    As a European I have long given up on any meaningful change w.r.t AI. Imho the average European is much more risk averse than the average American or Chinese. That and a plethora o…

  11. comment
    Comment #48729968

    Awesome work! If I understand it correctly, it loads relevant subgraphs from the DB and then runs queries in Prolog on it? Or is it more similar to datalog?

  12. comment
    Comment #48729456

    It's my own (slightly idiosyncractic ;-) harness: https://github.com/deepclause/deepclause-sdk

  13. comment
    Comment #48729198

    I've worked extensively with the slightly less able cousin, the 35B A3B model and tuned my own harness around making it work well with local or non-sota models. The results are qui…

  14. story
  15. comment
    Comment #48695665

    Mathematics has always been an experimental science to some extent. While Newton, Euler and Gauss would spend a lot time calculating numerical approximations by hand, modern mathem…

  16. comment
    Comment #48675567

    > This trend dates back at least to the machine learning bible, Elements of Statistical Learning (2001). Could you elaborate on this?

  17. comment
    Comment #48663130

    Indeed, and with some tinkering around the harness it can even punch way above its weight.

  18. comment
    Comment #48663100

    This somehow resonates with me and I feel this is one of the negative side effects of a CS/Maths dominated culture and mindset that strongly emphasizes intellectual achievement, bu…

  19. comment
    Comment #48638698

    I’ve been working on my own harness / “orchestration layer”, not with the goal of reaching frontier level performance, but rather boosting performance of smaller (locally hostable)…

  20. comment
    Comment #48632924

    Hmm, that also happened to me. Scan face, account lost forever?

  21. comment
    Comment #48578876

    What worries me personally is the dopamine hit I seem to get from watching my ideas get built in front of me. There is a big temptation to just add feature after feature without re…

  22. comment
    Comment #48564359

    I’ve been playing around with qwen3.6-35b-a3b and managed to boost it significantly by leveraging my own custom harness [0]. It is quite astonishing to see how far local models hav…

  23. story
  24. comment
    Comment #48537500

    Thank you very much!

  25. comment
    Comment #48536076

    I’ve been building a Prolog and WASM based LLM/Agent framework [0] , where reusable skills and core harness functionality is encoded in a logic programming language. Recently added…