Does this website use cookies?
The answer is both no and yes. Technically this website does not use cookies, but it uses HTML5 web storage objects - localStorage in particular.
What is localStorage?
localStorage is a JavaScript object that allows scripts to store arbitrary string (text) data locally, on the client browser. This data is persistent (doesn't get erased when a browser session ends) and doesn't expire. It's also restricted to a single domain.
Wikipedia article on Web Storage
How is it different from cookies?
In simple terms, cookies are used by the server while localStorage is used by the client.
When a client makes an HTTP request to the server, it automatically sends cookie data, like login details, for the server software (e.g. PHP or ASP.NET) to process. In contrast, local data in localStorage is never sent automatically. It can only be used by the script that runs on the client browser. That being said, it isn't impossible to send this data to a remote server through script-generated requests, but it's always up to the developer to implement such a feature.
What kinds of data can be stored in localStorage?
From a technical perspective, anything that can be represented as text. This includes numbers, cleartext (unencrypted) strings, Base64-encoded data, ciphertext (encrypted data), or serialized JavaScript objects.
From a legal perspetive, this can be both personal and non-personal, anything the browser's scripting environment has access to, including but not limited to the cleartext content of input fields and system details exposed by the browser.
What kinds of data does this website store?
User settings and the minimum amount of data that's required by the web applications. Personally identifiable data is never requested nor stored.
Where is the stored data located?
Exclusively on the client browser. Data is never stored on the web host, other servers, other browsers, or any other devices or applications, whether local or remote, unless the user chooses to export the data to a file and import it in another browser.
What kidns of data does this website send to remote hosts?
Nothing.
Stored data is only used locally and it's never sent to anyone else. No advertisements, no analytics, no user tracking. It's up to the user to transport the data between client browsers and devices, through the "Data Management" menu. The same menu allows the user to delete all stored data.
Can I use the website without the storage?
No.
The apps were designed with offline storage in mind and server-side storage and processing is not available on the hosting service (GitHub Pages). Local data storage is essential to the website's operation.