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

help-circle



  • The first section looks a lot like alginate spherification. It’s a fun demo to make a fake egg with it but it would be very obvious it isn’t an egg when you cooked it. It wouldn’t set or act like an egg at all when heated. I’d also be very curious to see how they make the shell if it really is a fake egg.

    For the second section, those are previously frozen eggs. Freezing them turns the yolk rubbery but doesn’t do much to the white.














  • When you use a vpn, any traffic that would go between you and a website goes through the vpn first. Makes it hard for sites to know who you are and makes it hard for your isp to know what sites you visit.

    When you use tor, any traffic that would go between you and a website is bounced around between a few different computers first. Similar to a vpn but is near impossible to track unless you’re a big gov agency with lots of resources.




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