Minimize processing in load()
When a page is loaded, the load() function of all the embedded flakes must be called. This causes a large amount of operations, and thus to ensure that pages load in a timely fashion it is important to minimize the processing that occurs in the load() call.
More specifically it is recommended that:
- The user interface of the flake is displayed as soon as possible in the load() call.
- Access to the Profiles is kept to a minimum.

