From 86a30c5874588a326c09d18ab94a8f09eafe4f64 Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Sat, 9 Jul 2022 17:39:43 -0400 Subject: [PATCH] new(project): iso639_enum --- content/projects/iso639/index.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 content/projects/iso639/index.md diff --git a/content/projects/iso639/index.md b/content/projects/iso639/index.md new file mode 100644 index 0000000..6def5c9 --- /dev/null +++ b/content/projects/iso639/index.md @@ -0,0 +1,19 @@ ++++ +title = "iso639_enum" +weight = 4 +[taxonomies] +tags = [] ++++ + +`iso639_enum` is a small Rust crate I wrote for my Bamboo media server project. +ISO639 is a standard that enumerates world languages and provides two and three +character codes to represent them. This is important in the context of a media +server because any media in a particular language (basically anything with +spoken or written words) will represent its language in its metadata in some +form, usually as a two or three character language code. + +The documentation for the crate can be found at +[lib.rs/iso639_enum](https://lib.rs/iso639_enum). + +The repository for the crate can be found at +[git.nickzana.dev/nick/rust-iso639](https://git.nickzana.dev/nick/rust-iso639).