Because constellation has a stateless architecuter user sessions are not maintained over requests. This has effect on debugging tools. For instance the clipboard viewer tool is not available in run time as it was before.
See article below for tools available to debug applications.
Tools for debugging constellation using tracer tool
Also, Data Page functionality and best practices have changed considerably. Because it is stateless, the Constellation architecture does not support temporary pages – you must use Data Pages instead.
author: W. Timothy Gallwey
“A different more elegant approach to learning and coaching emerged it could be summarized in three words: awareness, trust, choice. ”
The more you trust, the easier it is to be aware, the more aware the easier it is to see the choices.
performance = potential - interferance
“Competing agenda's is an apt phrase to describe the source of distraction”
Doet me denken aan de time managment waar overzicht en planning voor rust zorgen. Als je weet dat je bezig bent met het geen dat het meest belangrijk is op dit moment kan je focussen omdat je niet ook steeds op de achtergrond bezig bent met plannen en zorgen maken of je wel t juiste aan t doen bent.
slots allow us to explicitly declare data members (like properties) and deny the creation of dict and weakref (unless explicitly declared in slots or available in a parent.)
Pygame CE is a fork of pygame and continues to be updated where development of pygame has stopped.
When source files are spread over different folders. Name space packages can be imported by adding the relateve folders to sys path like. for instance when test scripts separated from source files, in the test script the following can get the source file in scope.
import sys sys.path += ["../parentfolder/subfolder"]
Path needs to be added before the import statements of the files in the related folder.