ipsc shooter, shitposter

  • 0 Posts
  • 53 Comments
Joined 6 months ago
cake
Cake day: January 19th, 2025

help-circle




  • Sara Nanni, the German Green Party defence spokesman, said one clear lesson is that the country simply needs to have more systems available. “We can no longer think in such small quantities. We have to assume that vehicles have a long downtime after they’re damaged and simply need to be serviced.”

    Jesus Christ. I knew the German Green party was flawed because of the anti-nuclear stuff but to also find out they’re MIC shills. Fucked.








  • ok first dumb question, is the block of code that you had below this line

    Given a query of “write a json schema to represent a comment thread on a social media site like reddit”, it’ll do this bit of reasoning:

    Was this an actual output from an LLM or a hypothetical example that you wrote up? It’s not quite clear to me. It’s a lot of output but I don’t want to insult you if you wrote all that yourself

    First, each comment has an ID, author info, content, timestamps, votes, and replies. The replies are nested comments, forming a tree structure. So the schema should allow for nested objects within each comment’s replies.

    I ask because I really want to nitpick the hell out of this design decision:

    First, each comment has an ID, author info, content, timestamps, votes, and replies. The replies are nested comments, forming a tree structure. So the schema should allow for nested objects within each comment’s replies.

    Adding the replies as full items, that is going to absolutely murder performance. A better scheme would be for replies to be a list/array of IDs or URLs, or a URL to an API call that enumerates all the replies, instead of enumerating all the items and embedding them directly. That is going to absolutely kill performance. Depending on the implementation, you could easily be doing the classic N+1 query that a lot of web applications fall for.

    But then again at this point I’m arguing with an LLM which is generating absolutely dogshit code.