Home
Softono
k

kantord

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
2

Software by kantord

LibreLingo
Open Source

LibreLingo

<p align="center"> <img src="/docs/branding/LibreLingo_Mascot/LightShadow/Turtle1_jetPack.svg" height="250" /> <br/><br/> <font size="6"><b>LibreLingo</b></font> <br/> <em>a community-owned language-learning platform</em> <br/><br/> <a href="https://librelingo.app/"><img src="https://img.shields.io/badge/Try_now-librelingo.app-darkcyan" /></a> <a href="https://librelingo.app/dev/"><img src="https://img.shields.io/badge/List_of_courses-librelingo.app/dev-darkcyan" /></a> <a href="https://librelingo.app/docs/"><img src="https://img.shields.io/badge/Documentation-librelingo.app/docs-darkcyan" /></a> <a href="https://github.com/orgs/LibreLingo/projects/1/views/1"><img src="https://img.shields.io/badge/Roadmap-github.com-darkcyan" /></a> </p> <hr/> [![This project is using Percy.io for visual regression testing.](https://percy.io/static/images/percy-badge.svg)](https://percy.io/LibreLingo/LibreLingo) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/kantord/LibreLingo?color=darkcyan)](https://github.com/kantord/LibreLingo/releases) ![Build status](https://kantord.semaphoreci.com/badges/LibreLingo.svg?style=shields 'Build status') [![Matrix](https://img.shields.io/matrix/space-librelingo:matrix.org?color=%23000&label=chat%20on%20matrix&logo=matrix)](https://app.element.io/#/room/#space-librelingo:matrix.org) [![call](https://img.shields.io/badge/%E2%98%8E%EF%B8%8F-Schedule_a_call-darkcyan)](https://app.harmonizely.com/harmonizely-uoicqk) [![Mastodon](https://img.shields.io/mastodon/follow/000318010?domain=https%3A%2F%2Ffosstodon.org%2F&style=social)](https://fosstodon.org/@librelingo) ## About LibreLingo's mission is to create a modern language-learning platform that is owned by the community of its users. All software is licensed under AGPLv3, which guarantees the freedom to run, study, share, and modify the software. Course authors are encouraged to release their courses with free licenses. If you want to know why I built LibreLingo, [I recommend reading my article on dev.to](https://dev.to/kantord/why-i-built-librelingo-280o). <details open="open"> <summary>Table of Contents</summary> <ol> <li> <a href="#about">About</a> </li> <li> <a href="#using-librelingo">Using LibreLingo</a> <ul> <li><a href="#web-app">Web app</a></li> <li><a href="#librelingo-yaml-loader">librelingo-yaml-loader</a></li> <li><a href="#librelingo-json-export">librelingo-json-export</a></li> </ul> </li> <li> <a href="#developing-librelingo">Developing LibreLingo</a> </li> <li> <a href="#milestones">Milestones</a> </li> <li> <a href="#roadmap">Roadmap</a> </li> <li> <a href="#contribution">Contribution</a> <ul> <li><a href="#become-a-contributor">Become a contributor</a></li> <li><a href="#attributions">Attributions</a></li> <li><a href="#contributors">contributors</a></li> </ul> </li> <li> <a href="#license">License</a> </li> <li> <a href="#see-also">See also</a> </li> <li> <a href="#donate">Donate</a> </li> </ol> </details> ## Using LibreLingo ### Web app LibreLingo offers an official [web app](https://librelingo.app/), which is very lightweight and written in Javascript using Svelte framework and pouchDB by the way, to try out LibreLingo courses interactively right in your browser, no installation required! #### Features - :bow_and_arrow: practice using interactive exercises - :juggling_person: spaced repetition - :bar_chart: save and monitor progress - :arrows_counterclockwise: synchronise progress across multiple devices - :iphone: works on various devices such as phones, tablets and desktop computers - :people_holding_hands: owned by you, the community - :dove: most courses are free, as in freedom and also as in beer #### Screenshots <p align="center"> <img src="/docs/screenshots/screenshot1.png" width="15%" /> <img src="/docs/screenshots/screenshot2.png" width="15%" /> <img src="/docs/screenshots/screenshot3.png" width="15%" /> <img src="/docs/screenshots/screenshot4.png" width="15%" /> </p> ### librelingo-yaml-loader [librelingo-yaml-loader](https://pypi.org/project/librelingo-yaml-loader/) is a Python 🐍 package that lets you load LibreLingo courses to create software based on LibreLingo. To see an extensive tutorial, [check out this article](https://dev.to/kantord/practice-tdd-by-creating-a-librelingo-based-language-learning-app-4apf). #### Setup [librelingo-yaml-loader](https://pypi.org/project/librelingo-yaml-loader/) can be installed using pip: ```sh pip install librelingo-yaml-loader ``` #### Loading courses in a Python program You can use librelingo-yaml-loader to load YAML-based LibreLingo courses in your Python program. ```python from librelingo_yaml_loader import yaml_loader course = yaml_loader.load_course("./path/to/my/course") ``` `load_course` returns a [Course()](https://github.com/kantord/LibreLingo/blob/main/apps/librelingo_yaml_loader/librelingo_yaml_loader/data_types.py) object. ### librelingo-json-export [librelingo-json-export](https://pypi.org/project/librelingo-json-export/) is a Python 🐍 package that contains modules that let's you export LibreLingo courses into JSON files that will be read by the web app. This might be useful if you want to deploy YAML-based LibreLingo courses as a web app. #### Setup [librelingo-json-export](https://pypi.org/project/librelingo-json-export/) can be installed using pip: ```sh pip install librelingo-json-export ``` #### Exporting courses to JSON [librelingo-json-export](https://pypi.org/project/librelingo-json-export/) has a command line program that can export YAML-based LibreLingo courses into the JSON format used by the web app. ```sh Usage: cli.py [OPTIONS] INPUT_PATH OUTPUT_PATH Convert a YAML course into a JSON course. Options: --dry-run / --no-dry-run --help Show this message and exit. ``` ## Developing LibreLingo Want to contribute to LibreLingo? Or create your own fork? Perhaps you want to use it in your creative project? To get started with running the development environment on your computer and understanding the software architecture, [head to our development documentation](https://librelingo.app/docs/). ## Milestones - [x] 🏁 Demo course content in Spanish for English speakers - [x] 🏁 Some basic building blocks of course content implemented - [x] 🏁 Developers can use course editor - [x] 🏁 Basic theme/branding - [x] 🏁 Course progress can be properly synchronised across devices - [x] 🏁 Course editor can be accessed by all course contributors - [x] 🏁 At least the basics of the Spanish course are ready - [x] 🏁 Most of the course building blocks are implemented - [x] 🏁 All of the basic building blocks of courses are implemented - [x] 🏁 Spaced repetition implemented ## Roadmap - [ ] Officially releasing Basque course - [ ] Make it possible to contribute to courses through GitHub - [ ] Improving course creation UX over Github ### Projects - [Better audio support](https://github.com/kantord/LibreLingo/projects/14) - [Support non-latin scripts](https://github.com/kantord/LibreLingo/projects/15) ## Contribution ### Become a contributor #### are you a developer? You can help LibreLingo by testing it and submitting feature requests or bug reports: [here](https://github.com/kantord/LibreLingo/issues/new). If you want to get in touch, you can use my contact details on [my GitHub profile](https://github.com/kantord). Go through the dev docs [here](https://librelingo.app/docs/CONTRIBUTING.html). Still got questions? Our Matrix/FreeNode IRC channel is `#LibreLingo`, join the dev community there and feel free to ask anything. - Matrix: [`#LibreLingo`](https://app.element.io/#/room/#space-librelingo:matrix.org) on `matrix.org` - IRC: connect to `irc.freenode.net` with your favourite client and join `#LibreLingo` #### are you a linguaphile? Learning new language is an awesome experience right? If you wanna let others experience that too, make a course on LibreLingo! Get started [here](https://github.com/kantord/LibreLingo/tree/main/docs/courses). We are working on the process of creating courses, to make it more streamlined, if you have an idea to make it better, do share with us, create an [issue](https://github.com/kantord/LibreLingo/issues/new). Note: You are always encouraged to release the courses under a free license. #### are you a wordsmith? Translate the LibreLingo UI(LLUI) to make it more accessible, you can start [here](https://poeditor.com/join/project?hash=jKiKfen2Ye). ### Attributions #### Mascot The mascot is designed by [@almostdesigner](https://github.com/almostdesigner). <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />Mascot images are released under <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>. ### Contributors <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> [![All Contributors](https://img.shields.io/badge/all_contributors-92-orange.svg?style=flat-square)](#contributors-) <!-- ALL-CONTRIBUTORS-BADGE:END --> Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://www.daniel-kantor.com/cv/"><img src="https://avatars2.githubusercontent.com/u/3704904?v=4?s=100" width="100px;" alt="Daniel Kantor"/><br /><sub><b>Daniel Kantor</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=kantord" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/aha999"><img src="https://avatars3.githubusercontent.com/u/50620416?v=4?s=100" width="100px;" alt="Klemen SkerbiΕ‘"/><br /><sub><b>Klemen SkerbiΕ‘</b></sub></a><br /><a href="#ideas-aha999" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/12people"><img src="https://avatars0.githubusercontent.com/u/7361228?v=4?s=100" width="100px;" alt="Mirek Mazel"/><br /><sub><b>Mirek Mazel</b></sub></a><br /><a href="#ideas-12people" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="http://tbg.asciiking.com/about.html"><img src="https://avatars0.githubusercontent.com/u/12728?v=4?s=100" width="100px;" alt="Chris Babcock"/><br /><sub><b>Chris Babcock</b></sub></a><br /><a href="#ideas-swift2plunder" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="http://wake.st"><img src="https://avatars2.githubusercontent.com/u/7890201?v=4?s=100" width="100px;" alt="Liaizon Wakest"/><br /><sub><b>Liaizon Wakest</b></sub></a><br /><a href="#ideas-wakest" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/schmittlauch"><img src="https://avatars3.githubusercontent.com/u/1479555?v=4?s=100" width="100px;" alt="Trolli Schmittlauch"/><br /><sub><b>Trolli Schmittlauch</b></sub></a><br /><a href="#ideas-schmittlauch" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://deuchnord.fr"><img src="https://avatars3.githubusercontent.com/u/7600265?v=4?s=100" width="100px;" alt="JΓ©rΓ΄me Deuchnord"/><br /><sub><b>JΓ©rΓ΄me Deuchnord</b></sub></a><br /><a href="#ideas-Deuchnord" title="Ideas, Planning, & Feedback">πŸ€”</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://gitea.nutomic.com/nutomic"><img src="https://avatars1.githubusercontent.com/u/1044450?v=4?s=100" width="100px;" alt="Felix Ableitner"/><br /><sub><b>Felix Ableitner</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3ANutomic" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="http://navanchauhan.me"><img src="https://avatars1.githubusercontent.com/u/29234112?v=4?s=100" width="100px;" alt="Navan Chauhan"/><br /><sub><b>Navan Chauhan</b></sub></a><br /><a href="#infra-navanchauhan" title="Infrastructure (Hosting, Build-Tools, etc)">πŸš‡</a> <a href="https://github.com/kantord/LibreLingo/commits?author=navanchauhan" title="Code">πŸ’»</a> <a href="#design-navanchauhan" title="Design">🎨</a> <a href="https://github.com/kantord/LibreLingo/commits?author=navanchauhan" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="http://roshanjossey.github.io"><img src="https://avatars0.githubusercontent.com/u/8488446?v=4?s=100" width="100px;" alt="Roshan Jossy"/><br /><sub><b>Roshan Jossy</b></sub></a><br /><a href="#ideas-Roshanjossey" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=Roshanjossey" title="Code">πŸ’»</a> <a href="https://github.com/kantord/LibreLingo/commits?author=Roshanjossey" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ledgelight"><img src="https://avatars0.githubusercontent.com/u/57244557?v=4?s=100" width="100px;" alt="ledgelight"/><br /><sub><b>ledgelight</b></sub></a><br /><a href="#ideas-ledgelight" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="http://xixona.dlsi.ua.es/~fran/"><img src="https://avatars3.githubusercontent.com/u/449545?v=4?s=100" width="100px;" alt="Francis Tyers"/><br /><sub><b>Francis Tyers</b></sub></a><br /><a href="#ideas-ftyers" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=ftyers" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://netspring.wordpress.com"><img src="https://avatars0.githubusercontent.com/u/7551116?v=4?s=100" width="100px;" alt="titanix"/><br /><sub><b>titanix</b></sub></a><br /><a href="#ideas-titanix" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="http://diasp.eu/u/airon90"><img src="https://avatars2.githubusercontent.com/u/139841?v=4?s=100" width="100px;" alt="Michael Moroni"/><br /><sub><b>Michael Moroni</b></sub></a><br /><a href="#translation-airon90" title="Translation">🌍</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/pssandhu"><img src="https://avatars1.githubusercontent.com/u/11130930?v=4?s=100" width="100px;" alt="pssandhu"/><br /><sub><b>pssandhu</b></sub></a><br /><a href="#design-pssandhu" title="Design">🎨</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/StefanLobbenmeier"><img src="https://avatars2.githubusercontent.com/u/36509607?v=4?s=100" width="100px;" alt="Stefan Lobbenmeier"/><br /><sub><b>Stefan Lobbenmeier</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3AStefanLobbenmeier" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kylepollina.github.io/"><img src="https://avatars2.githubusercontent.com/u/13981456?v=4?s=100" width="100px;" alt="kylepollina"/><br /><sub><b>kylepollina</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=kylepollina" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/slesingerm"><img src="https://avatars1.githubusercontent.com/u/62794315?v=4?s=100" width="100px;" alt="slesingerm"/><br /><sub><b>slesingerm</b></sub></a><br /><a href="#ideas-slesingerm" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/issues?q=author%3Aslesingerm" title="Bug reports">πŸ›</a> <a href="https://github.com/kantord/LibreLingo/pulls?q=is%3Apr+reviewed-by%3Aslesingerm" title="Reviewed Pull Requests">πŸ‘€</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/iasonasma"><img src="https://avatars3.githubusercontent.com/u/44037134?v=4?s=100" width="100px;" alt="iasonasma"/><br /><sub><b>iasonasma</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=iasonasma" title="Code">πŸ’»</a> <a href="https://github.com/kantord/LibreLingo/commits?author=iasonasma" title="Tests">⚠️</a></td> <td align="center" valign="top" width="14.28%"><a href="http://carolinedelesalle.com"><img src="https://avatars3.githubusercontent.com/u/19930411?v=4?s=100" width="100px;" alt="Caroline Delesalle"/><br /><sub><b>Caroline Delesalle</b></sub></a><br /><a href="#design-almostdesigner" title="Design">🎨</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/borbota"><img src="https://avatars3.githubusercontent.com/u/9154908?v=4?s=100" width="100px;" alt="borbota"/><br /><sub><b>borbota</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Aborbota" title="Bug reports">πŸ›</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://decentral1.se/"><img src="https://avatars1.githubusercontent.com/u/1991377?v=4?s=100" width="100px;" alt="decentral1se"/><br /><sub><b>decentral1se</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=decentral1se" title="Documentation">πŸ“–</a> <a href="#ideas-decentral1se" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.drought.gov/drought/data-maps-tools/software"><img src="https://avatars1.githubusercontent.com/u/1328158?v=4?s=100" width="100px;" alt="James Adams"/><br /><sub><b>James Adams</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Amonocongo" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://innercircles.community"><img src="https://avatars3.githubusercontent.com/u/5111931?v=4?s=100" width="100px;" alt="Arnold Schrijver"/><br /><sub><b>Arnold Schrijver</b></sub></a><br /><a href="#ideas-aschrijver" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="http://dalevisser.wordpress.com/"><img src="https://avatars1.githubusercontent.com/u/490575?v=4?s=100" width="100px;" alt="Dale Visser"/><br /><sub><b>Dale Visser</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Adwvisser" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/oscarfrancois"><img src="https://avatars2.githubusercontent.com/u/32189143?v=4?s=100" width="100px;" alt="oscarfrancois"/><br /><sub><b>oscarfrancois</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=oscarfrancois" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dhelmr"><img src="https://avatars2.githubusercontent.com/u/16763338?v=4?s=100" width="100px;" alt="dhelmr"/><br /><sub><b>dhelmr</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=dhelmr" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://doamatto.xyz"><img src="https://avatars0.githubusercontent.com/u/30969346?v=4?s=100" width="100px;" alt="Matt"/><br /><sub><b>Matt</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/pulls?q=is%3Apr+reviewed-by%3Adoamatto" title="Reviewed Pull Requests">πŸ‘€</a> <a href="https://github.com/kantord/LibreLingo/issues?q=author%3Adoamatto" title="Bug reports">πŸ›</a> <a href="#maintenance-doamatto" title="Maintenance">🚧</a> <a href="https://github.com/kantord/LibreLingo/commits?author=doamatto" title="Code">πŸ’»</a> <a href="https://github.com/kantord/LibreLingo/commits?author=doamatto" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://www.lakka.tv"><img src="https://avatars1.githubusercontent.com/u/442722?v=4?s=100" width="100px;" alt="Jean-AndrΓ© Santoni"/><br /><sub><b>Jean-AndrΓ© Santoni</b></sub></a><br /><a href="#ideas-kivutar" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=kivutar" title="Documentation">πŸ“–</a> <a href="#design-kivutar" title="Design">🎨</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/LucasCTN"><img src="https://avatars2.githubusercontent.com/u/16941916?v=4?s=100" width="100px;" alt="Lucas Campos Teixeira e Nascimento"/><br /><sub><b>Lucas Campos Teixeira e Nascimento</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=LucasCTN" title="Documentation">πŸ“–</a> <a href="#ideas-LucasCTN" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/issues?q=author%3ALucasCTN" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/poojadesur"><img src="https://avatars1.githubusercontent.com/u/54051795?v=4?s=100" width="100px;" alt="Pooja Desur"/><br /><sub><b>Pooja Desur</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=poojadesur" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/wesleymutwiri"><img src="https://avatars2.githubusercontent.com/u/36151585?v=4?s=100" width="100px;" alt="Wesley Mutwiri"/><br /><sub><b>Wesley Mutwiri</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=wesleymutwiri" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sesam"><img src="https://avatars0.githubusercontent.com/u/8921?v=4?s=100" width="100px;" alt="Simon B."/><br /><sub><b>Simon B.</b></sub></a><br /><a href="#ideas-sesam" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/karthikshetty03"><img src="https://avatars0.githubusercontent.com/u/45932358?v=4?s=100" width="100px;" alt="Karthik Shetty"/><br /><sub><b>Karthik Shetty</b></sub></a><br /><a href="#maintenance-karthikshetty03" title="Maintenance">🚧</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/joshyide"><img src="https://avatars3.githubusercontent.com/u/25023919?v=4?s=100" width="100px;" alt="Joshua Ide"/><br /><sub><b>Joshua Ide</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=joshyide" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jobedylbas"><img src="https://avatars0.githubusercontent.com/u/13896705?v=4?s=100" width="100px;" alt="Jobe Dylbas"/><br /><sub><b>Jobe Dylbas</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=jobedylbas" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/DavidLuterancik"><img src="https://avatars3.githubusercontent.com/u/72352073?v=4?s=100" width="100px;" alt="DΓ‘vid KristiΓ‘n Luterančík"/><br /><sub><b>DΓ‘vid KristiΓ‘n Luterančík</b></sub></a><br /><a href="#ideas-DavidLuterancik" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=DavidLuterancik" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://heliostrike.github.io"><img src="https://avatars1.githubusercontent.com/u/34064492?v=4?s=100" width="100px;" alt="Sai Sandeep Mutyala"/><br /><sub><b>Sai Sandeep Mutyala</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=HelioStrike" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://arturbauer.1mb.site/"><img src="https://avatars0.githubusercontent.com/u/27014858?v=4?s=100" width="100px;" alt="Artur Bauer"/><br /><sub><b>Artur Bauer</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=ArturBa" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/panditita"><img src="https://avatars0.githubusercontent.com/u/27155534?v=4?s=100" width="100px;" alt="Etza"/><br /><sub><b>Etza</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=panditita" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kylemumma.github.io"><img src="https://avatars3.githubusercontent.com/u/24424170?v=4?s=100" width="100px;" alt="Kyle Mumma"/><br /><sub><b>Kyle Mumma</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=kylemumma" title="Code">πŸ’»</a> <a href="#ideas-kylemumma" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/zinovik"><img src="https://avatars1.githubusercontent.com/u/26196125?v=4?s=100" width="100px;" alt="zinovik"/><br /><sub><b>zinovik</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=zinovik" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://himankpathak.me"><img src="https://avatars0.githubusercontent.com/u/26011845?v=4?s=100" width="100px;" alt="Himank Pathak"/><br /><sub><b>Himank Pathak</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=himankpathak" title="Code">πŸ’»</a> <a href="https://github.com/kantord/LibreLingo/issues?q=author%3Ahimankpathak" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/x4th"><img src="https://avatars0.githubusercontent.com/u/12177451?v=4?s=100" width="100px;" alt="x4th"/><br /><sub><b>x4th</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=x4th" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kenanchristian"><img src="https://avatars1.githubusercontent.com/u/11202498?v=4?s=100" width="100px;" alt="Christian Dimas"/><br /><sub><b>Christian Dimas</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=kenanchristian" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ciampix"><img src="https://avatars2.githubusercontent.com/u/372887?v=4?s=100" width="100px;" alt="Marco Ciampa"/><br /><sub><b>Marco Ciampa</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Aciampix" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://blog.dc7ia.eu"><img src="https://avatars.githubusercontent.com/u/26351852?v=4?s=100" width="100px;" alt="Joshua &#124; DC7IA"/><br /><sub><b>Joshua &#124; DC7IA</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3ADC7IA" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://reyzadren.neocities.org/"><img src="https://avatars.githubusercontent.com/u/38787026?v=4?s=100" width="100px;" alt="Reyzadren"/><br /><sub><b>Reyzadren</b></sub></a><br /><a href="#ideas-Reyzadren" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/saeub"><img src="https://avatars.githubusercontent.com/u/38892775?v=4?s=100" width="100px;" alt="Andreas"/><br /><sub><b>Andreas</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=saeub" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/myxor"><img src="https://avatars.githubusercontent.com/u/1397377?v=4?s=100" width="100px;" alt="Marco H"/><br /><sub><b>Marco H</b></sub></a><br /><a href="#content-myxor" title="Content">πŸ–‹</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.learncube.com"><img src="https://avatars.githubusercontent.com/u/1441472?v=4?s=100" width="100px;" alt="Dan OReilly"/><br /><sub><b>Dan OReilly</b></sub></a><br /><a href="#ideas-diydan" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/douglasferlini"><img src="https://avatars.githubusercontent.com/u/1099602?v=4?s=100" width="100px;" alt="Douglas Ferlini"/><br /><sub><b>Douglas Ferlini</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=douglasferlini" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/chickendude"><img src="https://avatars.githubusercontent.com/u/2564517?v=4?s=100" width="100px;" alt="Michael Nock"/><br /><sub><b>Michael Nock</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=chickendude" title="Code">πŸ’»</a> <a href="#ideas-chickendude" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://codeberg.org/davidak"><img src="https://avatars.githubusercontent.com/u/91113?v=4?s=100" width="100px;" alt="davidak"/><br /><sub><b>davidak</b></sub></a><br /><a href="#ideas-davidak" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/adnan360"><img src="https://avatars.githubusercontent.com/u/7857310?v=4?s=100" width="100px;" alt="adnan360"/><br /><sub><b>adnan360</b></sub></a><br /><a href="#content-adnan360" title="Content">πŸ–‹</a> <a href="#ideas-adnan360" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=adnan360" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Lamdarer"><img src="https://avatars.githubusercontent.com/u/50927784?v=4?s=100" width="100px;" alt="Lamdarer"/><br /><sub><b>Lamdarer</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=Lamdarer" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://luthert.net"><img src="https://avatars.githubusercontent.com/u/1281696?v=4?s=100" width="100px;" alt="Luther"/><br /><sub><b>Luther</b></sub></a><br /><a href="#ideas-luther9" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/danielinux7"><img src="https://avatars.githubusercontent.com/u/2645266?v=4?s=100" width="100px;" alt="Nart Tlisha"/><br /><sub><b>Nart Tlisha</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Adanielinux7" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://binyam.in"><img src="https://avatars.githubusercontent.com/u/39805353?v=4?s=100" width="100px;" alt="Binyamin Aron Green"/><br /><sub><b>Binyamin Aron Green</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=binyamin" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://stragu.gitlab.io/"><img src="https://avatars.githubusercontent.com/u/1747497?v=4?s=100" width="100px;" alt="StΓ©phane Guillou"/><br /><sub><b>StΓ©phane Guillou</b></sub></a><br /><a href="#ideas-stragu" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="http://aerabi.com"><img src="https://avatars.githubusercontent.com/u/44623032?v=4?s=100" width="100px;" alt="Mohammad-Ali A'RΓ‚BI"/><br /><sub><b>Mohammad-Ali A'RΓ‚BI</b></sub></a><br /><a href="#content-aerabi" title="Content">πŸ–‹</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/RGBradley"><img src="https://avatars.githubusercontent.com/u/78659707?v=4?s=100" width="100px;" alt="RGBradley"/><br /><sub><b>RGBradley</b></sub></a><br /><a href="#content-RGBradley" title="Content">πŸ–‹</a> <a href="#ideas-RGBradley" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/radmorecameron"><img src="https://avatars.githubusercontent.com/u/55817894?v=4?s=100" width="100px;" alt="Cameron Radmore"/><br /><sub><b>Cameron Radmore</b></sub></a><br /><a href="#content-radmorecameron" title="Content">πŸ–‹</a> <a href="https://github.com/kantord/LibreLingo/commits?author=radmorecameron" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://zebburkeconte.com"><img src="https://avatars.githubusercontent.com/u/13357648?v=4?s=100" width="100px;" alt="Zeb Burke-Conte"/><br /><sub><b>Zeb Burke-Conte</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=zmbc" title="Documentation">πŸ“–</a> <a href="https://github.com/kantord/LibreLingo/commits?author=zmbc" title="Code">πŸ’»</a> <a href="https://github.com/kantord/LibreLingo/issues?q=author%3Azmbc" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Poslovitch"><img src="https://avatars.githubusercontent.com/u/20014332?v=4?s=100" width="100px;" alt="Florian CUNY"/><br /><sub><b>Florian CUNY</b></sub></a><br /><a href="#ideas-Poslovitch" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/uberstar100"><img src="https://avatars.githubusercontent.com/u/59891590?v=4?s=100" width="100px;" alt="uberstar100"/><br /><sub><b>uberstar100</b></sub></a><br /><a href="#ideas-uberstar100" title="Ideas, Planning, & Feedback">πŸ€”</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/gdomingu"><img src="https://avatars.githubusercontent.com/u/4443635?v=4?s=100" width="100px;" alt="Gabe D"/><br /><sub><b>Gabe D</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Agdomingu" title="Bug reports">πŸ›</a> <a href="https://github.com/kantord/LibreLingo/commits?author=gdomingu" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/EkaterinaMozheiko"><img src="https://avatars.githubusercontent.com/u/15523524?v=4?s=100" width="100px;" alt="Ekaterina Mozheiko"/><br /><sub><b>Ekaterina Mozheiko</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=EkaterinaMozheiko" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/GeraAlcantara"><img src="https://avatars.githubusercontent.com/u/32178037?v=4?s=100" width="100px;" alt="Gerardo Alcantara"/><br /><sub><b>Gerardo Alcantara</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=GeraAlcantara" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://cyrili.co"><img src="https://avatars.githubusercontent.com/u/19289022?v=4?s=100" width="100px;" alt="JP Damas"/><br /><sub><b>JP Damas</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=cyrilico" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/frostedkitsune"><img src="https://avatars.githubusercontent.com/u/92984571?v=4?s=100" width="100px;" alt="frostedkitsune"/><br /><sub><b>frostedkitsune</b></sub></a><br /><a href="#ideas-frostedkitsune" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=frostedkitsune" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sinhalaquiz"><img src="https://avatars.githubusercontent.com/u/15131066?v=4?s=100" width="100px;" alt="sinhalaquiz"/><br /><sub><b>sinhalaquiz</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Asinhalaquiz" title="Bug reports">πŸ›</a> <a href="https://github.com/kantord/LibreLingo/commits?author=sinhalaquiz" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://capecod.world"><img src="https://avatars.githubusercontent.com/u/26460352?v=4?s=100" width="100px;" alt="Peter Cruckshank"/><br /><sub><b>Peter Cruckshank</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=petercr" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://szabgab.com/"><img src="https://avatars.githubusercontent.com/u/48833?v=4?s=100" width="100px;" alt="Gabor Szabo"/><br /><sub><b>Gabor Szabo</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/issues?q=author%3Aszabgab" title="Bug reports">πŸ›</a> <a href="https://github.com/kantord/LibreLingo/commits?author=szabgab" title="Code">πŸ’»</a> <a href="#ideas-szabgab" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/kantord/LibreLingo/commits?author=szabgab" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dimkard"><img src="https://avatars.githubusercontent.com/u/5058312?v=4?s=100" width="100px;" alt="dimkard"/><br /><sub><b>dimkard</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=dimkard" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dushyantbhardwaj9"><img src="https://avatars.githubusercontent.com/u/43706857?v=4?s=100" width="100px;" alt="Dushyant Bhardwaj"/><br /><sub><b>Dushyant Bhardwaj</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=dushyantbhardwaj9" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/vil02"><img src="https://avatars.githubusercontent.com/u/65706193?v=4?s=100" width="100px;" alt="Piotr Idzik"/><br /><sub><b>Piotr Idzik</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=vil02" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/qbecb1zen"><img src="https://avatars.githubusercontent.com/u/66479002?v=4?s=100" width="100px;" alt="Amine Louzar"/><br /><sub><b>Amine Louzar</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=qbecb1zen" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/najmieh"><img src="https://avatars.githubusercontent.com/u/31998054?v=4?s=100" width="100px;" alt="Najmieh Sadat Safarabadi"/><br /><sub><b>Najmieh Sadat Safarabadi</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=najmieh" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/mellishim"><img src="https://avatars.githubusercontent.com/u/99303778?v=4?s=100" width="100px;" alt="Ben"/><br /><sub><b>Ben</b></sub></a><br /><a href="#content-mellishim" title="Content">πŸ–‹</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/cutthroat78"><img src="https://avatars.githubusercontent.com/u/55604778?v=4?s=100" width="100px;" alt="CutThroat"/><br /><sub><b>CutThroat</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=cutthroat78" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/rodrigo-pova"><img src="https://avatars.githubusercontent.com/u/83843080?v=4?s=100" width="100px;" alt="Rodrigo Pova"/><br /><sub><b>Rodrigo Pova</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=rodrigo-pova" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/yulyasystem"><img src="https://avatars.githubusercontent.com/u/33153002?v=4?s=100" width="100px;" alt="Yulia"/><br /><sub><b>Yulia</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=yulyasystem" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://sandraor.com"><img src="https://avatars.githubusercontent.com/u/2864198?v=4?s=100" width="100px;" alt="Sandra"/><br /><sub><b>Sandra</b></sub></a><br /><a href="#design-sandraor" title="Design">🎨</a> <a href="https://github.com/kantord/LibreLingo/commits?author=sandraor" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/DanielGall500"><img src="https://avatars.githubusercontent.com/u/7033470?v=4?s=100" width="100px;" alt="Daniel Gallagher"/><br /><sub><b>Daniel Gallagher</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=DanielGall500" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Frey0-0"><img src="https://avatars.githubusercontent.com/u/94757729?v=4?s=100" width="100px;" alt="Frey0-0"/><br /><sub><b>Frey0-0</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=Frey0-0" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://rohansureshkumar.link/inspiration"><img src="https://avatars.githubusercontent.com/u/45331524?v=4?s=100" width="100px;" alt="rsk2"/><br /><sub><b>rsk2</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=rsk2" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/JoelNiemela"><img src="https://avatars.githubusercontent.com/u/27364307?v=4?s=100" width="100px;" alt="Joel NiemelΓ€"/><br /><sub><b>Joel NiemelΓ€</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=JoelNiemela" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jeremykenny"><img src="https://avatars.githubusercontent.com/u/25012209?v=4?s=100" width="100px;" alt="Jeremy Kenny"/><br /><sub><b>Jeremy Kenny</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=jeremykenny" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Abbi-Hackbardt"><img src="https://avatars.githubusercontent.com/u/73844833?v=4?s=100" width="100px;" alt="Abbi-Hackbardt"/><br /><sub><b>Abbi-Hackbardt</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=Abbi-Hackbardt" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://dani.photonbit.es"><img src="https://avatars.githubusercontent.com/u/2496042?v=4?s=100" width="100px;" alt="Daniel Moreno"/><br /><sub><b>Daniel Moreno</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=photonbit" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/beanrill"><img src="https://avatars.githubusercontent.com/u/47017874?v=4?s=100" width="100px;" alt="Bianca Davies"/><br /><sub><b>Bianca Davies</b></sub></a><br /><a href="https://github.com/kantord/LibreLingo/commits?author=beanrill" title="Documentation">πŸ“–</a></td> </tr> </tbody> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END --> This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! ## Contributors who don't have a GitHub account. Since [All Contributors](https://allcontributors.org/) relies on GitHub accounts to show user info, it's not possible to use it to credit people who don't have a GitHub account. This place is intended as a list of people who contributed without registering for a GitHub account. - **[Kate](https://codeberg.org/kate)** - creating a [LibreLingo course](https://codeberg.org/kate/LibreLingo_FR_from_EN) on Codeberg ## License LibreLingo is licensed under the AGPL-3.0 license. In addition, course content and other creative content might be licensed under different licenses, such as CC. This image shows a summary of the licensing of our dependencies: [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fkantord%2FLibreLingo.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fkantord%2FLibreLingo?ref=badge_large) ## See also - [omnilingo](https://github.com/omnilingo/omnilingo), listening-based language learning ## Donate Help us to keep going

Education & Learning LMS Flash Cards & Spaced Repetition
2.6K Github Stars
ledger-cli-dashboard
Open Source

ledger-cli-dashboard

# ledger-cli-dashboard This is a graphical reporting tool for [ledger](https://www.ledger-cli.org/), created using the desktop version of [just-dashboard](https://kantord.github.io/just-dashboard/). It is more intended as a starting point that you can extend and customize to match your own needs. ![](screenshot.png) ## Built-in features - Observe long-term tendencies - Chart expenses within a specific month - Automatic currency exchange ## Dependencies - yarn - npm - jq - git - ledger ## Setup ``` ./setup.sh ``` ## Usage ### Customize account names Edit `accounts.conf` to match your account names: ``` expenses_account=Expenses income_account=Income assets_account=Assets savings_account=Assets/Savings ``` Edit `expense_categories.conf` to match your account names: ``` Food Drinks Rent Services Books ``` Note: Instead of ':' characters, you have to use '/' characters to access sub-accounts. ### Display dashboard ``` ./dashboard.sh book.txt USD ``` Replaced `USD` with your preferred output currency and `book.txt` with the path to your ledger file. ## Fake data This repo includes a fake ledger file called 'fake_book.txt' and a Python script which you can use to generate your own fake data.

Analytics & BI Accounting
50 Github Stars