what if all those people are dead too
what if all those people are dead too
what if spouse is also dead
i like curved-around. it keeps things simple and to the point
intersections should either be contractible or homotopy equivalent to the circle. any intersection outside of those two homotopy classes will always be a worse solution than just improving the public transportation infrastructure
what are the differences between a rare covid test and an uncommon covid test?
ive met quite a few mormons who drink monster/red bull instead of coffee because the scripture doesn’t say anything about energy drinks. always found that interesting (in the most neutral way possible)
that quote you gave was taken entirely out of context. here’s the very next sentence:
In presenting our findings, we argue that a comprehensive look at sexual victimization, which includes male perpetration and adds female perpetration, is consistent with feminist principles in important ways.
does this mean the twitter brand is up for grabs? anyone can start up a new website at twitter dot com? musk’s letting go of it completely?
that’s not really a problem if the judge simply changes their name
the whole “there are two sides to every issue” mantra that i hear so many people use in everyday life has got to be contributing to this. i think a lot of people view the “two sides thing” as a tautology, and that enables them to more easily “pick a side” on things, assuming that both sides always have some merit to them. and some people use it to avoid picking sides entirely, because if they make something seem complicated enough then they don’t have to actually say anything meaningful about it.
i would really like to see that mantra disappear altogether, or at the very least have people stop using it as an excuse for not having a well founded opinion. it does seem like people don’t let it slide very much on lemmy though, which is nice.
i gave up on gentoo when the updates started making my laptop so hot that i had to point my bedroom fan at it in college. i was thinking of doing LFS but by that point gentoo was turning into such a headache and i wanted something simpler. i switched to arch afterwards, but now i mainly just use macos and let tim handle all that stuff for me. although i’m tempted to try arch again when im done with grad school and have more time
mine as well. it was awful
ironically, algebraists are currently trying to replace calculus with more algebra. needless to say, the algebra involved is pretty extreme
i think the gentoo pacman looking guy is cool
computer science exams must have been so easy for you
i chose my first linux distro based on difficulty (gentoo). needless to say it took me two weeks to get my computer to boot up and load i3 without problems.
a wise programmer knows to always ask the question “can i solve this problem in python using metaprogramming?” in this instance, the answer is yes:
def is_even(n: int): s = "def is_even_helper(number: int):\n" b = True for i in range(0, abs(n)+2): s += f"\tif (abs(number) == {i}): return {b}\n" b = not b exec(s) return locals().get("is_even_helper")(n)