Python!
LostXOR
In case anyone's curious:
not() # True
str(not()) # 'True'
min(str(not())) # 'T'
ord(min(str(not()))) # 84
range(ord(min(str(not())))) # range(0, 84)
sum(range(ord(min(str(not()))))) # 3486
chr(sum(range(ord(min(str(not())))))) # 'ඞ'
The AI part; there's so much actual porn online and they decide to look at crappy computer hallucinations?
I'd be more offended that they were looking at AI porn, to be honest.
This is the only correct answer; we had another day and it was taken from us.
Minecraft itself is really easy to pirate; if you don't mind it not being open source you could just do that.
Or maybe they were just bored, and wanted to make a cool new celestial object called a black hole.
All you people casually interspersing regular posts with porn in your feed scare me. My account had NSFW disabled when I made it, and I've never turned it on.
The photo, taken on March 13, shows the students from the city of Görlitz on the Polish border making the so-called white power salute.
The gesture, common in extremist circles, is not illegal in Germany, unlike the Nazi salute.
Not the salute I was thinking, but a bad one nonetheless.
That thumbnail though... The forbidden Minecraft paintings.
Nice, not worth $150 though lol.
I think it's because
not()
is equivalent tonot(None)
, and sinceNone
is falsynot(None)
returnsTrue
.