The Daily Go

GopherCon Tenerife ∴ 2019
URL: 353solutions.com/c/tdg/ (Download Zip - Unzip and open README.html) {: .url}

Miki Tebeka
miki@353solutions.com, @tebeka, mikitebeka,

Shameless Plugs

Code

├── REAMDE.md - Landing page
├── go.mod - Dependencies
├── Makefile - Task automation
├── .gitignore - Ignoring files
├── nlp.go - Main package code
├── nlp_test.go - Test
├── example_test.go - Testable example
├── Dockerfile.test - Test docker
├── .circleci
│   └── config.yml - CircleCI configuration
├── stemmer - Sub package
│   ├── stemmer.go
│   └── stemmer_test.go
└── cmd - Front ends
    └── nlpd
        ├── Dockerfile - Build in docker
        └── nlpd.go - HTTP (REST) front end

Also at https://github.com/353solutions/nlp.

Links

Data & Other