This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": true, | |
"[go]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true, | |
}, | |
"editor.snippetSuggestions": "none", | |
}, |
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)
- 당근마켓 개인화 추천 시스템 (전무익, 당근마켓)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
RUN apt-get update | |
RUN apt-get install -y git |
Docker commit
$ docker run -it ubuntu:16.04 bash
# apt-get update
# apt-get install -y git
# git version
$ docker ps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
네트워크가 느릴 수 있으니, 미리 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"builders": [{ | |
"type": "docker", | |
"image": "ubuntu:14.04", | |
"export_path": "nacyot-ubuntu-wget.tar" | |
}], | |
"provisioners": [{ | |
"type": "shell", | |
"inline": [ | |
"apt-get update", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Saenaru Javascript Hangul Input Method by wkpark at gmail.com | |
* 2013/03/25 | |
* License: GPLv2 | |
*/ | |
var Saenaru = function() {}; | |
Saenaru.prototype = { | |
_q: [], |
NewerOlder