LM Studio can be installed on Linux with APU or GPU (looks like it needs the AI CPU though??) and run LLM. Install on Laptop and test if it works.
Chapters 3.3 and 3.4. of Scheme book are about continuations
See: https://pages.lip6.fr/Christian.Queinnec/PDF/www.pdf See: https://wayback.archive-it.org/all/20120905083130/http://double.co.nz/pdf/continuations.pdf See: https://web.archive.org/web/20100614042239/http://readscheme.org/xml-web/
Look for models that could be used in Newspeak
Event Driven Architecture - video by Martin Fowler
Contempt to programming languages that are 'not mine'
Coroutine is a routine which can yield. Coroutines are typically scheduled cooperatively (=non-preemptively). Coroutines are similar to threads, although threads are typically scheduled preemptively (scheduler pre-empts=forces execution to pause and yield, even without yield in the language)
continuation is an abstract representation of the control state of a computer program. A continuation implements (reifies) the program control state, i.e. the continuation is a data structure that represents the computational process at a given point in the process's execution; the created data structure can be accessed by the programming language, instead of being hidden in the runtime environment.
Asynchronous operations are not the same as parallel or concurrent. Asynchronous simply means that we do not want to block our flow of execution(Thread) or wait for the response until certain work is done in full. But the way we implement Asynchronous operations decides whether they are (running) as parallel or concurrent. So parallel and concurrent are two implementations of asynchronicity of tasks.
the rendering equation is an integral equation in which the equilibrium radiance leaving a point is given as the sum of emitted plus reflected radiance under a geometric optics approximation.