A simple Russian-to-English dictionary written just for fun
This repository has been archived on 2020-08-01. You can view files and clone it, but cannot push or open issues/pull-requests.
Go to file
Timur Demin c68083434e
Add a license
2019-10-26 21:37:53 +05:00
.vscode Initial commit 2019-10-17 23:47:17 +05:00
cmd Initial commit 2019-10-17 23:47:17 +05:00
internal Refactor words getter to handle lots of words with less allocations 2019-10-26 21:21:41 +05:00
.gitignore Initial commit 2019-10-17 23:47:17 +05:00
LICENSE.txt Add a license 2019-10-26 21:37:53 +05:00
README.md Add a license 2019-10-26 21:37:53 +05:00
go.mod Initial commit 2019-10-17 23:47:17 +05:00
go.sum Initial commit 2019-10-17 23:47:17 +05:00
main.go Initial commit 2019-10-17 23:47:17 +05:00

README.md

Bidirectional Russian-to-English dictionary

A very simple dictionary that stores words in an SQLite3 database on your hard drive.

What this program is supposed to do

It was supposed to demonstrate that a fairly complete and usable program in Go can be written in under 2 hours, as this one was.

This is a basic CRUD app that can display a list of words and search for words irrespectively of context or language.

What this program is not supposed to do

  • handling StarDict/GoldenDict dictionaries;
  • handling lots of definitions;
  • whatever else you might expect from a feature-complete dictionary program.

License

See LICENSE.txt.