HN user

readertime

5 karma
Posts0
Comments7
View on HN
No posts found.

This is my current late night hack, tying GPT to a simple MUD-style text adventure, to fill out room descriptions, area descriptions, spells, etc. And trying to use a real game object structure to enforce consistency etc. so can navigate the world effectively. It’s definitely got potential.

But I want a single search bar that just magically gives me the right results. Given the enthusiasm for GPTn I think a lot of people do too.

Whether that incentivized spammers to spam, or Google et al to improve their software (or risk being outcompeted), doesn’t really seem like a “me” problem. I can’t change these things.

Ban 1+N in Django 3 years ago

I agree; Django (and many ORMs) have taken the opinion that if you load N instances of a model, and then you load a related field on 1 of them, you likely only want the 1 related field. If however they assumed that loading a related field implies you likely want all related fields, perhaps there’d be fewer instances of foot-gunning.