• 1 Post
  • 845 Comments
Joined 2 years ago
cake
Cake day: August 17th, 2023

help-circle
  • Ah yes, let’s just let our old and disabled die, they deserve it for being the way they are! This train of thought has always lead to morally impeccable results!

    Please re-think what you’re saying, because it’s disgusting on so many levels that I can’t even begin to describe all the ways it’s horribly wrong.


  • How are they monitoring and controlling my device when they don’t have MDM access to it? Again, I created the work profile myself. All my company IT could have access to are the Microsoft apps I’ve installed in the work profile which is separated & turned off when I don’t need it.

    If I have a second phone, I need to keep it charged, remember to take it with me, and to turn it off after work. With everything integrated into my private phone it’s much easier for me.



  • Yep. “Code Snippets” recently stopped working for me (the overlay doesn’t open anymore), so I only have the two remaining ways. I can still do code blocks using three backticks, but inline code I can only do using the keyboard shortcut.

    How they managed to fuck things up so badly is beyond me, and how they managed to keep them fucked up for so long is even further beyond.


  • Literally every week I encounter new bugs, it gets worse and worse. Many very basic features (like inline code with back ticks) just stopped working months ago and don’t work anymore. Scrolling in some channels is completely broken, jumping around wildly. Sometimes messages just don’t get sent (both on Android & Web). Sometimes calls work perfectly all day, then the next call just randomly changes audio device settings and I have to find what’s wrong again. Sometimes the video stream of a shared screen just doesn’t work, or stops working when switching to the small pop-up window while looking at chats, so the other person has to re-share. Sometimes the “available” state is just broken and keeps getting set to “away”. The search just doesn’t find many things, even when searching with fairly exact parameters.

    It’s a daily source of frustration & literally gets worse by the week. I can’t remember a program that’s made me angry as much as Teams has.



  • Sure, discipline can prevent some errors. But it’s always possible to run into wrong type assumptions, and I’d say type coercion and null/undefined access make up a fairly large percentage of non-logic errors. You can entirely prevent those using Typescript, which is why it’s so useful.

    Static type analysis is always a good idea if you’re writing more than a couple lines. IMO Python is the worst offender with its kwargs etc. - discoverability and testability is just so bad if you’re following common Python idioms.