• 9 Posts
  • 343 Comments
Joined 2 years ago
cake
Cake day: December 17th, 2023

help-circle
  • I wish I had the fond memories for this show that others do. My sibling wanted to get into medicine and would binge medical shows at home all the time. This was the first one. A few episodes is fine. But having this run 8 hours a day non-stop just made me hate this show. It’s way too formulaic to binge like that.


  • I don’t remember specifics but when Kickstarter was in its infancy Zach Braff had a couple kickstarters for his movies. They weren’t themselves offensive. It’s just that using a crowdfunding platform which, at the time at least, were mostly for people who had zero access to capital when you’re a multimillionaire with Hollywood connections to capital is a bit gauche.









  • I remember years ago when React was the savior of web apps Swooping in engineers from the clutches of JQuery and AngularJS (not to be confused with Angular 2+). Components we’re gonna make things simpler than the mess of JS files and global state.

    And generally that’s true but we’ve traded that off for a mess of hooks and 700 line nested functions in nested functions and obtuse rules that only apply to react and not JS.

    Complex web apps are hard.




  • I see you mention Azure and will assume you’re doing a one time migration.

    Start by moving everything from OneDrive to S3. As an AI I’m told that bitches love S3. From there you can subscribe to create events on buckets and add events to an SQS queue. Here you can enable a DLQ for failed events.

    From there add a Lambda to listen for SQS events. You should enable provisioned concurrency for speed, the ability for AWS to bill you more, and so that you can have a dandy of a time figuring out why an old version of your lambda is still running even though you deployed the latest version and everything telling you that creating a new ID for the lambda each time to fix it fucking lies.

    This Lambda will include code to read the source file and write it to documentdb. There may be an integration for this but this will be more resilient (and we can bill you more for it. )

    Would you like to see sample CDK code? Tough shit because all I can do is assist with questions on AWS services.