🚀🤖 Oh joy, let's redefine "recursion" by talking to a robot in English while pretending it's 1965 and #FORTRAN is cutting-edge! Because if there's one thing developers need, it's AI-powered verbosity! 😂
https://github.com/andyk/recursive_llm #recursion #AI #verbosity #techhumor #HackerNews #ngated
GitHub - andyk/recursive_llm: Implement recursion using English as the programming language and an LLM as the runtime.

Implement recursion using English as the programming language and an LLM as the runtime. - andyk/recursive_llm

GitHub
lmao can you literally just endlessly cd Volumes, cd "Macintosh HD" into an infinitely repeating pwd

RE:
https://goblin.band/notes/a6jwnqpipteela0y
pat (@pat)

<p>looking up "mac equivalent of windirstat" is going to result in me installing nix</p><p>literally <a target="_blank" href="https://www.reddit.com/r/macapps/comments/14x6hbz/comment/k6nv4he/">this specific reddit post</a> and then I guess there's "<a target="_blank" href="https://nixcademy.com/posts/nix-on-macos/">nix-darwin</a>" sō…</p>

goblin.band

@looopTools

Fair enough. Because recursion always has a limit, in any language, the tutorials probably assume you're aware of this already. The specific limit in Python is adjustable, but there's no way to eliminate it altogether.

Do the tutorials actually include data/examples that run into the recursion limit? Or is it only when applying code like that to other data that you run into issues?

I ask because the easiest way to smash the limit is to create a cyclic data structure, which is trivial in Python. If you naively recurse such an object, it goes on forever - until it hits the configured limit or the machine runs out of memory, anyways. i.e. this case:

>>> foo = ["bar"]
>>> foo.append(foo)
>>> foo
['bar', [...]]

If you think it's possible your recursion code might have to deal with something like this, you usually end up keeping track of the objects you've already processed, and skip them if you see the same object again (typically by the object ID).

In many cases, you can also rewrite recursive code so that it's not recursive, and cannot run into this problem. As a bonus, problems that can be refactored this way usually run faster without the recursion.

#recursion #stack #boom #limit

Will Berard 🫳🎤🫶 (@MrBerard@mastodon.acm.org)

This posts explains recursion well: https://mastodon.acm.org/@MrBerard/114323832436882726 #Recursion

Mastodon

#politics #DOGE #GAO #oversight #recursion

"[Wired], citing government records and sources, revealed that the Government Accountability Office (GAO) launched an investigation back in March into how Elon Musk’s pseudo-agency has been handling data in the offices that it has pried its way into."

https://gizmodo.com/the-government-accountability-office-is-doge-ing-doge-2000587264

DOGE Is About to Get DOGE'd

An audit of DOGE’s handling of data at federal agencies is reportedly underway.

Gizmodo

Gizmodo: DOGE Is About to Get DOGE’d. “While it often seems that no one is watching the watchmen under the Trump administration, a new report from Wired suggests there is at least one agency still keeping tabs on the Department of Government Efficiency and its seemingly unfettered reach into the guts of government. The publication, citing government records and sources, revealed that the […]

https://rbfirehose.com/2025/04/10/gizmodo-doge-is-about-to-get-doged/

Gizmodo: DOGE Is About to Get DOGE’d | ResearchBuzz: Firehose

ResearchBuzz: Firehose | Individual posts from ResearchBuzz
Keith Ward (1906-2000), illustration for ‘Professor Peckham’s Adventures in a Drop of Water’ by George Malcolm-Smith, 1931
#art #illustration #recursion
Via: https://thefugitivesaint.tumblr.com/post/779119796454359040/keith-ward-1906-2000-professor-peckams
Notes From A Superfluous Man

Keith Ward (1906-2000), ''Professor Peckam's Adventures in a Drop of Water'' by George Malcolm-Smith, 1931

Tumblr
🥳 Oh wow, a 2023 #Java article using #ASM to dabble in tail call recursion—because who doesn't love a good #bytecode manipulation adventure, right? 📜 Pro tip: avoid #recursion altogether and save yourself from this academic exercise in "elegance." 🙄
https://unlinkedlist.org/2023/03/19/tail-call-recursion-in-java-with-asm/ #tailcall #programming #tips #elegance #HackerNews #ngated
Tail Call Recursion in Java with ASM – UnlinkedList