Live data from Hacker News

Viewing profile — jeremychone

jeremychone

HN member
Joined
Sat, Mar 21, 2009, 4:50 AM UTC
HN karma
396
Public activity
192 items

About jeremychone

https://youtube.com/jeremychone

Recent public activity

  1. comment
    Comment #47389715

    I looked at your solution and extension README, and it's very interesting and well thought out. The fact that you've been using it for six months and that it performs well says a l…

  2. comment
    Comment #47389563

    Yes, there is a parallel here. Now, some of those "indexing" steps can be performed by an LLM. And that does not prevent mixing and matching the two, as some comments in this threa…

  3. comment
    Comment #47380977

    Very good point. I had two options: 1) Deterministic - Using a tree-sitter/AST-like approach, I could extract types, functions, and perhaps comments, and put them into an index map…

  4. comment
    Comment #47380803

    point taken.

  5. comment
    Comment #47380458

    - The ..-code-map.json files are per "developer folder," which would create too many conflicts if they were kept in Git. - I have two main globs, which are lists of globs: knowledg…

  6. comment
    Comment #47380055

    Even there, I use AI to augment rows and build the code to put data into Json or Polars and create a quick UI to query the data.

  7. comment
    Comment #47380034

    Oh, that's great. I've always wanted to explore how to fit tree-sitter into this workflow. It's great to know that this works well too. Thanks for sharing the code. (Here is the AI…

  8. comment
    Comment #47379127

    So, I have a pro@coder/.cache/code-map/context-code-map.json. I also have a `.tmpl-code-map.jsonl` in the same folder so all of my tasks can add to it, and then it gets merged into…

  9. comment
    Comment #47379025

    Fair point, but because I spent a year building and refining my custom tool, this is now the reality for all of my AI requests. I prompt, press run, and then I get this flow: dev s…

  10. comment
    Comment #47378360

    Interesting, I’ve never needed 1M, or even 250k+ context. I’m usually under 100k per request. About 80% of my code is AI-generated, with a controlled workflow using dev-chat.md and…

  11. comment
    Comment #47025290

    Very interesting approach. The trick is that sometimes developers use a hybrid approach, AI + Human / IDE, and in this case, we use the language formatter (for example, rustfmt). F…

  12. comment
    Comment #47017533

    Impressive.

  13. comment
    Comment #47017233

    By the way, I’ve been switching to RustFS as my S3 mock server, and it works like a charm. They maintain the Docker image, so it works great in a k8s environment, for both local an…

  14. comment
    Comment #46850034

    Not sure "convenience" alone should be the deciding factor when choosing a language for a project/product. What matters more is the long-term value for what’s being built and maint…

  15. comment
    Comment #35590355

    This is so awesome. Well done! I played a little with Pico/RP2040 (as a hobby), and it is so much fun. I wish educational content and institutions would embrace it more quickly.

  16. comment
    Comment #35534719

    Reached 8K+!

  17. comment
    Comment #35519173

    This is so counterproductive. I hope the Rust Foundation and the Rust Project change their minds and take a more reasonable route. Protecting against misrepresentation is completel…

  18. comment
    Comment #35246533

    There is a learning tax at the beginning, for sure, but this is a fixed cost. We experience that once this first hump is passed, the code and output quality is higher, and the clou…

  19. comment
    Comment #35242434

    We have been building relatively big enterprise cloud applications with a high level of compliance over the last decade and a half, and our next blueprint is all Rust on the backen…

  20. comment
    Comment #35242408

    Agree, for our approach, sqlx has the right level of abstraction. Not too high, not too low, and close enough of a sql builder pattern to be very useful. (We are not using the comp…

  21. comment
    Comment #35221305

    As usual, great article from Discord team. Rust in the Cloud will make more and more sense as companies focus on optimizing operational costs without compromising scalability and q…

  22. story
  23. comment
    Comment #35121001

    I have rewritten a relatively small but critical 2k CLI from nodejs/ts to Rust, and this was the best decision ever. Cold start and runtime performance got a big boost, but also th…

  24. comment
    Comment #35085570

    Seems we will need to wait a little more for the if-let-chain.

  25. comment
    Comment #35037719

    Assuming you want a zero-vm runtime, life will be much simpler with a borrow checker than without. The learning curve is a fixed tax for a recurrent return.