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

help-circle
  • It costs ~$150 to build your own CO2 carbonation setup. After that, refills are pretty infrequent at ~$10. That gets you relatively unlimited sparkling water.

    If you’re jonesing for specific flavors, flavor powders, extracts, and raw sucralose in bulk on Amazon will run you around $20, or ~$100 total for a decent assortment. It’ll pay for itself in like a year and the powders will last you awhile.


  • 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.