View settings.json
{ | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": true, | |
"[go]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true, | |
}, | |
"editor.snippetSuggestions": "none", | |
}, |
View tfkr003.md
TensorFlow KR 3차 오프라인 모임 발표 자료 모음
Festa! - TensorFlow-KR 3차 오프라인 모임
Part #1
- On-device ML with TensorFlow 2.0 and TFLite (Jason Zaman, Light Labs)
- Auto Scalable 한 Deep Learning Production을 위한AI Service Infra 구성 및 AI DevOps Cycle (김훈동, SKT)
- 프로덕션 환경에서 연구하기 (하성주, Hyperconnect)
- 당근마켓 개인화 추천 시스템 (전무익, 당근마켓)
View gist:1005b62e8a6b6a0e3fe2265e169d5346
curl -s https://get.docker.com/ | sudo sh | |
sudo wget -O /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/1.23.2/docker-compose-Linux-x86_64 | |
sudo chmod +x /usr/local/bin/docker-compose | |
sudo gpasswd -a ubuntu docker |
View Dockerfile1
FROM ubuntu:latest | |
RUN apt-get update | |
RUN apt-get install -y git |
View tutorial00.md
Docker commit
$ docker run -it ubuntu:16.04 bash
# apt-get update
# apt-get install -y git
# git version
$ docker ps
View images.txt
네트워크가 느릴 수 있으니, 미리 Pull 받아주세요! | |
docker pull ubuntu:14.04 | |
docker pull ubuntu:16.04 | |
docker pull centos:7 | |
docker pull byrnedo/alpine-curl | |
docker pull subicura/docker-workshop-app:1 | |
docker pull subicura/docker-workshop-app:2 | |
docker pull subicura/docker-workshop-app:3 | |
docker pull redis |
View gist:5fda52dc94464ef5989902ba49e12d5d
### Keybase proof | |
I hereby claim: | |
* I am nacyot on github. | |
* I am nacyot (https://keybase.io/nacyot) on keybase. | |
* I have a public key ASDVt06xmzb-gfJKse8Y2lMDeCbCzxoQEZoMNUTYc1IYdgo | |
To claim this, I am signing this object: |
View template.json
{ | |
"builders": [{ | |
"type": "docker", | |
"image": "ubuntu:14.04", | |
"export_path": "nacyot-ubuntu-wget.tar" | |
}], | |
"provisioners": [{ | |
"type": "shell", | |
"inline": [ | |
"apt-get update", |
View saenaru.js
/** | |
* Saenaru Javascript Hangul Input Method by wkpark at gmail.com | |
* 2013/03/25 | |
* License: GPLv2 | |
*/ | |
var Saenaru = function() {}; | |
Saenaru.prototype = { | |
_q: [], |
NewerOlder