• 0 Posts
  • 9 Comments
Joined 1 year ago
cake
Cake day: July 29th, 2023

help-circle



  • You can also save the spent herb and make edibles with it. Vaping effectively decarbs it and it’s something like 90% as strong as fresh herb that’s been purposely decarbed.

    It’s really no contest when it comes to efficiency and the vaporizer can pay for itself pretty quickly if you use it enough.




  • I’m absolutely biased as a data engineer who loves SQL, but there are some good reasons why SQL has been the de facto standard for interacting with databases since the 80s.

    One of its draws is that it’s easy to understand. I can show a stakeholder that I’m selecting “sum(sale_amount) from transactions where date=yesterday” and they understand it. Many analysts are even able to write complicated queries when they don’t know anything else about programming.

    Since it’s declarative, you rarely have to think about all the underlying fuckery that lets you query something like terabytes of data in redshift in minutes.

    Debugging is often pretty nice too. I can take some query that didn’t do what it was supposed to and run it over and over in a console until the output is right.