{"id":50108587,"url":"https://github.com/codecaine-zz/mindspace-journal","last_synced_at":"2026-05-23T12:00:40.216Z","repository":{"id":359693978,"uuid":"1247144349","full_name":"codecaine-zz/MindSpace-Journal","owner":"codecaine-zz","description":"Native Mac OS Journal Application using Vlang ","archived":false,"fork":false,"pushed_at":"2026-05-23T01:04:55.000Z","size":1725,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-23T02:30:24.877Z","etag":null,"topics":["database","gui","journal","json","macos","native","settings","state-management","vlang"],"latest_commit_sha":null,"homepage":"","language":"V","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codecaine-zz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-23T00:31:39.000Z","updated_at":"2026-05-23T00:36:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codecaine-zz/MindSpace-Journal","commit_stats":null,"previous_names":["codecaine-zz/mindspace-journal"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/codecaine-zz/MindSpace-Journal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecaine-zz%2FMindSpace-Journal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecaine-zz%2FMindSpace-Journal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecaine-zz%2FMindSpace-Journal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecaine-zz%2FMindSpace-Journal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codecaine-zz","download_url":"https://codeload.github.com/codecaine-zz/MindSpace-Journal/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecaine-zz%2FMindSpace-Journal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33394672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T04:15:53.637Z","status":"ssl_error","status_checked_at":"2026-05-23T04:15:53.242Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","gui","journal","json","macos","native","settings","state-management","vlang"],"created_at":"2026-05-23T12:00:31.638Z","updated_at":"2026-05-23T12:00:40.207Z","avatar_url":"https://github.com/codecaine-zz.png","language":"V","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌌 MindSpace Journal\n\nA sleek, lightweight, local-first personal journaling application written in the **V Programming Language** (`vlang`), powered by the native `gg` graphics library. MindSpace provides a distraction-free space to record your thoughts, track your moods, and search through your memories, all while keeping your data entirely local and private.\n\n---\n\n## 📸 Application Screenshots\n\n![Screenshot 1](Screenshot1.png)\n![Screenshot 2](Screenshot2.png)\n![Screenshot 3](Screenshot3.png)\n\n---\n\n## ✨ Features\n\n- **🔒 Local-First \u0026 Private:** Your entries are stored locally as standard JSON in `entries.json`. No external databases, no cloud synchronization, and absolute privacy.\n- **🎨 Modern Custom UI:**\n  - Built from scratch on a hardware-accelerated GUI canvas (`sokol` / `gg`).\n  - Sleek typography utilizing native macOS system fonts.\n  - Active hover states, micro-animations, and smooth scrolling for both the entry listing and main content.\n- **🌗 Instant Theme Toggling:** Switch dynamically between a clean Light Mode and a deep, focused Dark Mode. Your theme preference and window dimensions are persisted automatically in `settings.json`.\n- **📝 Interactive Form Editor:**\n  - Custom text fields with cursor blinking, arrow key navigation, text selection inputs, and multi-line wrapping.\n  - Dedicated **Mood Selector** (Happy, Excited, Peaceful, Neutral, Sad, Angry, Tired).\n  - Comma-separated tag support to categorize your thoughts.\n- **🔍 Advanced Search \u0026 Filtering:**\n  - **Full-text search** matches titles, content, and tags in real-time.\n  - **Mood filters** let you view entries matching specific emotions.\n  - **Date filters** enable quick browsing (All Time, Today, This Week, This Month, This Year, or a custom `YYYY-MM-DD` date range).\n\n---\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n1. **V Compiler:** Install the V compiler by following the instructions on [vlang.io](https://vlang.io) or via Homebrew on macOS:\n   ```bash\n   brew install vlang\n   ```\n2. **Build Tools:** Ensure you have macOS Command Line Tools installed:\n   ```bash\n   xcode-select --install\n   ```\n\n### Running the Application\n\nTo run the application directly from source code without creating a binary:\n```bash\nv run .\n```\n\n### Compiling to a Standalone Binary\n\nYou can compile the source code into a standalone binary executable using the following commands:\n\n* **Development Build** (fast compilation, includes debug symbol info):\n  ```bash\n  v -o \"MindSpace Journal\" .\n  ```\n\n* **Production Release** (highly optimized, smaller binary size):\n  ```bash\n  v -prod -o \"MindSpace Journal\" .\n  ```\n\nThis generates a standalone executable file named `MindSpace Journal` in the project root directory, which can be run directly:\n```bash\n./\"MindSpace Journal\"\n```\n\n---\n\n## 📂 Project Structure\n\n- `main.v` - The primary codebase containing state management, rendering loops, theme settings, event handling (mouse, scroll, keyboard), and local file I/O.\n- `v.mod` - V module configuration and metadata.\n- `entries.json` - Your local database (created automatically upon saving your first entry).\n- `settings.json` - Saves user settings such as theme choice (dark/light) and last window dimensions.\n\n---\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [v.mod](v.mod) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodecaine-zz%2Fmindspace-journal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodecaine-zz%2Fmindspace-journal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodecaine-zz%2Fmindspace-journal/lists"}