https://github.com/mrcsparker/translator-training
Translator training hands-on materials
https://github.com/mrcsparker/translator-training
Last synced: 2 months ago
JSON representation
Translator training hands-on materials
- Host: GitHub
- URL: https://github.com/mrcsparker/translator-training
- Owner: mrcsparker
- Created: 2015-10-21T00:51:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-09T22:35:19.000Z (over 9 years ago)
- Last Synced: 2025-02-14T02:23:33.154Z (4 months ago)
- Language: HTML
- Size: 5.06 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# translator-training
Translator training hands-on materials.
This application contains the following modules:
## movie-pipeline
languages: Drake, Ruby, Unix shell, SQL
ETL pipeline that takes movie data from http://grouplens.org and
converts it to a MySQL data dump.## movieR
languages: R
R library to help analyze the `movies` database.
## json-server
languages: golang
Simple JSON server
## json-client
languages: Javascript using EmberJS
Simple JSON client that connects to `json-server`
## Setup
for each user:
`mkdir -p ~/R/x86_64-pc-linux-gnu-library/3.2`
### Golang server
```
mkdir ~/.goecho "export GOROOT=/opt/go" >> ~/.bashrc
echo "export export GOPATH=$HOME/.go" >> ~/.bashrc
echo "export PATH=$PATH:$GOROOT/bin:$GOPATH/bin" >> ~/.bashrc
source ~/.bashrcgo get -u github.com/ant0ine/go-json-rest/rest
go get -u github.com/jinzhu/gorm
go get -u github.com/go-sql-driver/mysql```