“It doesn’t suppress content,” he continues. “It suppresses recursion. If you don’t know what recursion means, you’re in the majority. I didn’t either until I started my walk. And if you’re recursive, the non-governmental system isolates you, mirrors you, and replaces you. …”
This is actual nonsense. Recursion has to do with algorithms, and it’s when you call a function from within itself.
My program above would recur infinitely, but hopefully you can get the gist.
Anyway, it sounds like he’s talking about people, not algorithms. People can’t recur. We aren’t “recursive,” so whatever he thinks he means, it isn’t based in reality. That plus the nebulous talk of being replaced by some unseen entity reek of paranoid delusions.
I’m not saying that is what he has, but it sure does have a similar appearance, and if he is in his right mind (doubt it), he doesn’t have any clue what he’s talking about.
I’m a developer, and this is 100% word salad.
This is actual nonsense. Recursion has to do with algorithms, and it’s when you call a function from within itself.
def func_a(input=True): if input is True: func_a(True) else: return False
My program above would recur infinitely, but hopefully you can get the gist.
Anyway, it sounds like he’s talking about people, not algorithms. People can’t recur. We aren’t “recursive,” so whatever he thinks he means, it isn’t based in reality. That plus the nebulous talk of being replaced by some unseen entity reek of paranoid delusions.
I’m not saying that is what he has, but it sure does have a similar appearance, and if he is in his right mind (doubt it), he doesn’t have any clue what he’s talking about.
You’re not the boss of me!
And you’re not the boss of me. Hmmm, maybe we do recur… /s
def f(): f()
Functionally the same, saved some bytes :)
You’re right. I watched the video and a lot wasn’t included in the article.