To Hold Up the Sky
Rate it:
Open Preview
Read between November 25 - December 16, 2020
12%
Flag icon
Where, before me, are the ages that have gone? And where, behind me, are the coming generations? I think of heaven and earth, without limit, without end, And I am all alone and my tears fall down.
Kyle Goines
Good
46%
Flag icon
“This is recursion, a programming approach where a piece of code calls itself. Under normal circumstances, it finds its answer a finite number of layers down, after which the answer follows the chain of calls back to the surface. But here we see a function calling itself without end, forever unable to find an answer, in infinite recursion. Because it needs to store resources used by the previous layer on the stack at every call, it created the stack overflow we saw earlier. With infinite recursion, even a superstring computer’s ultimate capacity can be used up.”
Kyle Goines
Good