• 2 Posts
  • 512 Comments
Joined 2 years ago
cake
Cake day: June 29th, 2023

help-circle

  • I mean, that’s certainly true… But like, we told them the test answers. They let slip in an interview they just had to “clean up” the video, and reporters were like “what the fuck does that mean?”. So then they said they’d also release the unedited video alongside the “cleaned up” one, and reporters would not let that go

    I mean, I know they’re dumb, but come on… I just can’t fathom this level of incompetence. They literally started a coverup, made out this video to be proof to get everyone to calm down, and what? Realized the video actually looked sketchy and doctored it?

    Plus the video itself is super sketch - a guard walks in with a bag, leaves it inside, a hooded figure comes in and leaves, and then he’s found dead… What???

    I thought Epstein was just coerced into killing himself, because of the video now I think he was straight up assassinated

    My brain can’t comprehend such a chain of unforced errors








  • It’s a tool, our job is to collect tools in our toolbox and use them appropriately

    TDD is great for when you want a really, really tight interface - whether it’s your exposed surface to customers or you’ve got a lot of people working on something, it makes sense to write the standard and code to it, instead of documenting after the fact

    Otherwise… Well, in practice it’s an idiot proof methodology. That’s useful, but it is a lot of work










  • Nah, they’re actually fantastic at brain numbing tasks. I like to feed it sql tables and have it act like an ORM, but without the tradeoffs of an ORM. I’d never do it manually, but it’s far more readable and easy to work with

    I also love using it for api’s. You can feed it a response, say “hey, I just want the id, status, and amount” (or whatever) and it’ll restructure the data for you

    These are not hard problems… They are tedious ones though. They solve a problem by brute force, a problem we “solve” over and over because at the end of the day: programmers are lazy.

    You can over engineer complex bindings until the cows come home, but a simple pattern with each field explicitly mapped is the best solution. It’s just really, really annoying to actually do it