• 0 Posts
  • 36 Comments
Joined 3 years ago
cake
Cake day: August 17th, 2023

help-circle
  • The only thing to do is ride the wave of the new technology. You either do that or drown. I’ve written a literal book’s worth of text on how AI should think and behave when writing software and it straight up cannot write code as well as me when left to its own devices, even with all my guidance. LLMs, no matter the size, are structurally incapable of holding all the context needed to write good code in complex systems because they cannot compress complex topics into ideas they’ve never encountered and reason about the compressed state with their limited reasoning capacity (otherwise known as “learning”).














  • Storage data structures. Database tables are designed for fast read/write. Excel is designed for fast simultaneous parallel computation.

    To get a sense of what this looks like, you can read more about their data structures; Databases typically store data in what’s called a “B Tree” and spreadsheets typically store as a format that can be easily converted into a “Directed Acyclic Graph” (although Excel lets you turn off the “acyclic” part if you allow circular references).

    Although, with Excel specifically, there’s probably not much difference since it has some database functionality now.