GJGabe Johnsoninjohnsogg.hashnode.dev·Jun 4, 2024 · 5 min readRecursion is WonderfulThe old glossary joke that never gets old: Recursion, n. See recursion Recursion is a technique where a function calls itself. It should have some stopping condition, otherwise the recursion could happen infinitely. Mathematically, that is OK - ima...00
GJGabe Johnsoninjohnsogg.hashnode.dev·May 23, 2024 · 5 min readSegmentation FaultsThe embattled "segfault" is as hated as it is misunderstood. If you've ever written a program in any language, you've probably encountered some variant of this error. What is it, and how do you prevent it from happening? A segmentation fault happens ...00