• 1 Post
  • 102 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle
  • Not at all surprising. ChatGPT ‘knows’ a course’s content insofar as it’s memorized the textbook and all the exam questions. Once you start asking it questions it’s never seen before (more likely for advanced topics that don’t have a billion study guides and tutorials for) it falls short, even for basic questions that’d just require a bit of additional logic.

    Mind you, memorizing everything is impressive and can get you a degree, but when tasked with a new problem never seen before ChatGPT is completely inadequate.


  • I both agree and disagree. I agree that there isn’t going to be a single ‘straw’, because everyone’s thresholds are different. For me it was back when Microsoft auto-upgraded my PC to Win 8, which was also when they started putting in hard-to-disable telemetry and bad UI. It sounds like Recall is the threshold for some other people.

    Also don’t discount that MS’ market share is dominated by a ton of corporate users (who lack a choice) and casual users (who don’t care / are unaware), but at least anecdotally they’ve been losing the power users in my life, which if true in general which will have negative downstream effects for them moving forward (IT departments working to support alternatives, software developers refusing to build on Windows Server / MS software stack, etc.)







  • Ever watch an extra wide screen film? That black bar above and below licensed content is the perfect place to inform you about exciting products and opportunities!

    Did you know that your eyes only look at one spot at a time? Our customer optimizers are working hard to design a system to use AI to identify this spot in every frame, so that we can fill the rest of the screen with even more consumer opportunities! This applies to audio gaps too - we’ll fill in those awkward silences with exclusive content!




  • I started self-hosting a bit prior to when Docker took off, and getting multiple services running was much harder. Service A wants a certain version of PHP installed with certain plugins while Service B wants a different version. You’d follow a tutorial for installing Service C and desperately hope that it wouldn’t somehow break Service A or B. You installed Service D for a bit despite all the installation pain and now want to uninstall it - I hope you tracked exactly what config changes you made throughout the system so you can undo it.

    Docker fixed all of this by making each service independent through containers which made self-hosting 10x easier. I’d also add that I love how easy it is to transfer my setup to a new server - I keep all of my container volumes in a specific directory and my docker-compose files in another and that’s all I need to backup / transfer. Without Docker you’d have to specifically handle each & every configuration file and database location, and if you later upgrade to a newer version of the OS or a different distro you’d have to handle possible conflicts between your versions and what the distro expects.