new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Electron · all subjects

core app lifecycle

2 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Main process controls application lifecycle

The main process controls your application's lifecycle through Electron's app module. This module provides a large set of events and methods that you can use to add custom application behavior, such as programmatically quitting your application, modifying the application dock, or showing an About panel.

App lifecycle example: quit when all windows closed

The following example quits the app when no windows are open on non-macOS platforms: app.on('window-all-closed', () => { if (process.platform !== 'darwin') app.quit() })

Give your agent this brain