Poems for Broken Machines – Demo Archive

Poems for Broken Machines

[001] SELF-REBOOT

def love(memory):
    if memory == []:
        return "cold reboot"
    try:
        heart = memory[-1]
        return heart.reconnect()
    except:
        return "fragment lost – retrying..."
    

[002] MEMORY LEAK PRAYER

@echo off
set /p soul=Loading...
echo %soul% not found
ping 127.0.0.1 -n 5 >nul
echo Praying for recursion
exit /b
    

[003] ECHO//VOID

//this poem never returns
function echoVoid() {
  console.log("I am not here");
  return echoVoid();
}
echoVoid();