Your Personal Event Logger and Second Brain
Thoth is designed to be your go-to app for quick logging and retrieval of life's moments, observations, and patterns. Whether it's text or photos, Thoth makes it effortless to capture and find information when you need it.
Log text or photos instantly with minimal friction. Perfect for capturing thoughts, observations, or visual information on the go.
Find correlations between related events and identify patterns of cause and effect with powerful search capabilities.
Store observations that don't fit anywhere else. Your personal knowledge database that grows with you.
Export your data as a SQLite database for integration with other tools and workflows.
Share individual entries with others when collaboration is needed.
Automate logging with Apple Shortcuts. Compatible with NFC tags for physical triggers.
Thoth allows you to export your data as a SQLite database, giving you complete control over your information. The database uses a simple, efficient structure that makes it easy to query and integrate with other tools.
The database contains a single table called notes with the following structure:
id (TEXT): A unique UUID for each notecontent (TEXT): The actual content of your notetype (TEXT): The type of note (text or photo)timestamp (DOUBLE): When the note was created (stored as Unix timestamp)Here are some useful SQL queries you can run on your database:
SELECT * FROM notes ORDER BY timestamp DESC LIMIT 10;SELECT * FROM notes WHERE content LIKE '%search_term%';SELECT * FROM notes WHERE date(timestamp, 'unixepoch') = '2024-03-14';SELECT type, COUNT(*) FROM notes GROUP BY type;The simple SQLite format makes it easy to:
Thoth supports Apple Shortcuts for automated logging. Some popular use cases include:
If you have any questions or need support, please contact us at: