Coder Social home page Coder Social logo

otis's Introduction

Otis

Otis is a learning app I've built for myself that currently focuses on Latin, but will be customizable in the future. Among the features are not only flash cards and other vocabulary learning modes, but also explanations of various grammatical constructs used in Latin, as well as the grammar forms themselves. These can also be trained in another learning mode.

Only Latin - German according to the Austrian curriculum (10th - 11th grade) is currently supported.

Setup

To use Otis, you need a Mac with Xcode installed. Follow these steps to get started:

  1. Clone this repository to your local machine.
  2. Open the project in Xcode.
  3. Run the project on your Mac.
  4. Start studying!

Features

  • Mac & iPad & iPhone support
  • Different study modes
    • Flash cards
    • Multiple choice
    • Answer
  • Grammar forms
  • Grammar structures
  • Latin
    • about 800 Latin words with German translations
    • all major grammar forms (e.g. A-Declination, etc.)
    • some key grammar structures
  • Dark mode
  • Expandability (See 👇)

Add a custom language

Additionally, if you want to learn another language you can easily add it:

  1. Go to the folder Model/Data/Courses/ in Xcode
  2. Add a folder YOUR_COURSE
  3. Add these files with this code:
  • YOUR_COURSE_Vocabulary.swift:
func YOUR_COURSE_Vocabulary () -> [VocabularyModel] {
  return [
    // ‼️ Don't delete Random & Saved ‼️
    VocabularyModel(title: "Random", vocabulary: []),
    VocabularyModel(title: "Saved", vocabulary: []),
    // Add new model here
  ]
}
  • YOUR_COURSE_GammarRules.swift:
func YOUR_COURSE_GrammarRules () -> [GrammarRuleModel] {
  return [
    // Add new rules here
  ]
}
  • YOUR_COURSE_GammarForms.swift:
func YOUR_COURSE_GrammarForms () -> [GrammarFormModel] {
  return [
    // Add new forms here
  ]
}

Screenshots

Otis on iPhone

Otis - Mac

Otis - Flash Cards

Otis - Multiple Choice

Otis - Grammar Rules

otis's People

Contributors

sageder avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.