Not the place, my dude
Not the place, my dude
I somehow have “spell out if less than 13” burned in my mind from somewhere in middle school. No idea if it is right, but so far it has worked.
Scientists want to understand things. Engineers don’t care, as long as it works.
I thought the punch line was that biostatistics is actual biology, and biology is statistics :)
Linear algebra, absolutely. But I kind of hoped to get through my whole degree (mostly EE) without properly knowing statistics. Hah. First I take an elective Intro AI class, and then BioInf. I guess I hate myself.
The Linux kernel actually uses quite a bit of OOP ideas. You have modules that are supposed to have a clear interface with the rest of the world, and they (ab)use structs to basically work like objects. If you try hard enough, you can even do “inheritance” with them, like with their struct kobject. It is actually somewhat well-thought-out, imo. No need to go full OOP, just pick some of the good parts, and avoid the MappingModelFactoryServiceImpl hell or the madness that is C++.