• 0 Posts
  • 13 Comments
Joined 2 years ago
cake
Cake day: June 9th, 2023

help-circle

  • A lot of people here are saying it’s cheaper to run in person…

    For purely theoretical degrees, that’s not true: having to maintain a campus is way more expensive than just doing things remotely, but for more vocational degrees it definitely is: imagine having to send a fume hood or injection moulder or oscilloscope out to every student as well as chase up getting it returned, along with shipping any hazardous materials like batteries, acid, biological samples etc. out, and verifying that people are actually handling those correctly?..

    For science, medical and engineering degrees, online tuition is just going to produce people vastly underprepared for work in anything that requires the skills & knowledge the degree is meant to provide you, and as they’re the most expensive programs to run you can subsidise them with the other degrees, but only if they’re treated as comparable, ie being on the same campus.




  • Websites have false positives all the time and while it sucks, it’s infeasible for them to have human reviewers checking everything and it’s better to have false positives than false negatives… What isn’t acceptable is that the appeals process uses the exact same models as the flagging process so it gets the exact same false positives and false negatives…

    Pic related as it was one of the first to reveal how broken the appeals process in most social media platforms was.

    1000046823



  • This is Rust not Python

    They’re both optimised out by the compiler. If you disable compiler optimisations, they’re identical in machine code anyway, unless you introduce a second loop, in which case the first will be more memory efficient as the memory used in the first loop can be reused in the second loop, whereas if you declare the variable outside the loop it can’t (again, without compiler optimisations, which make the whole comparison pointless).