Search Articles — Sudonull

Search Results

In this project

JS/TS not a functional language: technical analysis

https://sudonull.com/js-ts-not-a-functional-language-technical-analysis

Why JavaScript and TypeScript Are Not Functional Languages? Breaking Down 4 Technical Reasons: mutability, recursion, lazy collections, error handling. Consequences for development.

CFDG language for generating images Context Free

https://sudonull.com/cfdg-language-for-generating-images-context-free

Learn CFDG — a language with context-free grammar for procedural generation of fractals and scenes. Code examples, recursion rules. Download Context Free and experiment with examples for IT developers.

Abstract Mathematics: Peano Axioms

https://sudonull.com/abstract-mathematics-peano-axioms

Learn how Peano axioms and set theory build numbers abstractly. Code examples in C, Zeno's paradoxes. For middle/senior developers — understand the formal foundations.

M2.7 MiniMax: self-evolution of AI model

https://sudonull.com/m2-7-minimax-self-evolution-of-ai-model

Technical breakdown of M2.7: how the model recursively optimizes its own harness, performs production debugging in <3 minutes, and implements Agent Teams as a native function. For middle/senior developers.

AutoHotkey v2: .EXE media converter with GUI

https://sudonull.com/autohotkey-v2-exe-media-converter-with-gui

Create standalone .EXE for compressing photos/videos on AutoHotkey v2. Recursive processing, ffmpeg, GUI without dependencies. Guide for middle/senior dev.

From other projects

Recession vs Depression: What's the Real Difference?

https://ymaho.com/recession-vs-depression-what-s-the-real-difference

Learn what is the difference between a recession and a depression. Compare GDP, unemployment, duration, and policy responses to understand economic downturns.

What Causes a Recession and How Long Do They Last?

https://ymaho.com/what-causes-a-recession-and-how-long-do-they-last

Learn what causes a recession and how long do they last. Explore causes, historical data, duration, and key indicators to understand economic downturns.

Recession in Eurozone industry: PMI fell to 45.8

https://ymaho.com/recession-in-eurozone-industry-pmi-fell-to-45-8

Eurozone industrial PMI fell to 45.8 in June 2026. Analysis of recession causes, ECB dilemma between inflation and downturn, euro forecast. Read details.

What Causes a Recession? Key Triggers Explained

https://ymaho.com/what-causes-a-recession-key-triggers-explained

What causes a recession? Learn the key triggers, from financial imbalances to supply shocks. Understand the indicators and protect your finances.

Risk of global recession: OECD forecast 2026

https://ymaho.com/risk-of-global-recession-oecd-forecast-2026

OECD lowered growth forecast to 2.8% and warned of recession risk due to Middle East conflict. Analysis of consequences for investors and markets. Read.

Eurozone GDP Growth 0.8%: Stagnation or Recession

https://ymaho.com/eurozone-gdp-growth-0-8-stagnation-or-recession

Why Eurozone GDP growth of 0.8% is a statistical mirage. Analysis of the energy crisis, deindustrialization, and hidden recession. Find out the real reasons for the decline.

Eurozone growth forecast 2026: 0.9% — recession risks

https://ymaho.com/eurozone-growth-forecast-2026-0-9-recession-risks

European Commission downgraded eurozone GDP growth forecast to 0.9%. Analysis: stagflation, ECB dilemma, affected sectors and likely recession scenario. Read more.

ECB will raise rates in recession: protecting the euro and risks

https://ymaho.com/ecb-will-raise-rates-in-recession-protecting-the-euro-and-risks

ECB will raise rates by 0.25% despite recession. Why this is an act of self-preservation for the euro, hidden debt buyback programs, and EUR/USD forecast. Read the analysis.

Eurozone inflation 3.2%: ECB to raise rate despite recession

https://ymaho.com/eurozone-inflation-3-2-ecb-to-raise-rate-despite-recession

Eurozone inflation exceeded 3% for the first time in 2.5 years. ECB prepares to raise rate amid stagflation. Risk analysis, EUR/USD forecast and implications for investors. Read more.

From the web

Jun 13, 2026 ·

https://www.geeksforgeeks.org/dsa/introduction-to-recursion-2/

Jun 13, 2026 · Recursion uses more memory to store data of every recursive call in an internal function call stack. Whenever we call a function, its record is added to the stack and remains there until the call is finished.

Jul 25, 2024 ·

https://www.freecodecamp.org/news/what-is-recursion/

Jul 25, 2024 · In this article, you will learn about recursion and how it works. You need a good understanding of how functions work before learning recursion . I have used Python code for examples in this article because of its simple syntax, but the concept of rec...

Mar 22, 2025 ·

https://medium.com/@aimmharf05/recursion-for-beginners-a-beginners-guide-to-understanding-recursive-algorithms-af8e1a3ff971

Mar 22, 2025 · Understanding recursion and its three fundamental laws. A step-by-step example to demonstrate how recursion works. Final thoughts and tips for designing recursive algorithms. What is Recursion ?

Recursive Algorithms - GeeksforGeeks

https://www.geeksforgeeks.org/dsa/recursion-algorithms/

Jan 20, 2026 · Recursion is a technique used in computer science to solve big problems by breaking them into smaller, similar problems. The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function.

Searches related to recursion

https://www.khanacademy.org/computing/computer-science/algorithms/recursive-algorithms/a/recursion

Recursion has many, many applications. In this module, we'll see how to use recursion to compute the factorial function, to determine whether a word is a palindrome, to compute powers of a number, to draw a type of fractal, and to solve the ancient Towers of Hanoi problem.

Trending Now