Currently working on two #gnome apps!

- Scripter: A simple app for basic scripts ⌨️ & calculations 📐 [GitHub: https://github.com/david-swift/Scripter]
- Flashcards: Create, edit, and study flashcard sets 🎓 - easily import your existing Quizlet sets [GitHub: https://github.com/david-swift/Flashcards]

Both are written in #swift using an interface similar to #swiftui for #gtk and #libadwaita [GitHub: https://github.com/AparokshaUI/Adwaita]

GitHub - david-swift/Scripter: A very simple GNOME app for very simple Python scripts

A very simple GNOME app for very simple Python scripts - GitHub - david-swift/Scripter: A very simple GNOME app for very simple Python scripts

GitHub
@david_swift
Is there something for spaced repetition, like Anki, planned?
Spaced Repetition is way better for studying than a linear way of sorting the cards, it helps you get the ones you don't know more often, than the ones you know
@garlicus The algorithm used in the "Study" tab is currently super simple: Every flashcard has a certain property I called "difficulty" that is increased by one every time your answer is wrong and decreased by one if it is right. If a flashcard reaches the difficulty of 0, it won't appear anymore in the active "round". I'd definitely be interested in looking into other algorithms to implement, thanks for the request!