A simple Russian-to-English dictionary written just for fun
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Timur Demin c68083434e
Add a license
4 years ago
.vscode Initial commit 4 years ago
cmd Initial commit 4 years ago
internal Refactor words getter to handle lots of words with less allocations 4 years ago
.gitignore Initial commit 4 years ago
LICENSE.txt Add a license 4 years ago
README.md Add a license 4 years ago
go.mod Initial commit 4 years ago
go.sum Initial commit 4 years ago
main.go Initial commit 4 years ago

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.