Skip to content

Instantly share code, notes, and snippets.

View yeongseon's full-sized avatar

Yeongseon Choe yeongseon

  • Microsoft
  • Seoul, Korea
View GitHub Profile
@yeongseon
yeongseon / Ignite the Tour Seoul materials.md
Created February 4, 2020 06:06 — forked from ianychoi/Ignite the Tour Seoul materials.md
Ignite the Tour - Seoul: 자료 모음

Ignite the Tour - Seoul: 자료 모음

공유된 커뮤니티 발표 자료 (한글)

#! /bin/bash
# Remove existed docker container
sudo docker rm express_edition
# Modify the permission of /data/expression_edition
sudo rm -rf /data/express_edition
sudo mkdir -p /data/express_edition
sudo chown 12000:79 /data/express_edition
@yeongseon
yeongseon / docker-compose.yml
Last active January 5, 2021 14:01
docker-compose.yml for kaggle/python-gpu-build
version: '2.3'
services:
kaggle:
image: kaggle/python-gpu-build
runtime: nvidia
container_name: kaggle
user: root
ports:
- "8888:8888"
volumes:
@yeongseon
yeongseon / docker-compose.yml
Created April 11, 2020 03:22
docker-compose for kaggle/python
version: '2'
services:
kaggle:
image: kaggle/python
container_name: kaggle
user: root
ports:
- "8888:8888"
volumes:
- .:/notebooks
@yeongseon
yeongseon / flash_win10IoT_onto_sdcard_OSX.sh
Created June 6, 2020 07:36 — forked from copyfun/flash_win10IoT_onto_sdcard_OSX.sh
Install Windows 10 IoT core on Raspberry Pi 2 using OS X
# download iot core iso file
# curl http://go.microsoft.com/fwlink/?LinkId=616847
curl http://download.microsoft.com/download/8/C/B/8CBE5D09-B5C5-462B-8043-DAC64938FDAC/IOT%20Core%20RPi.ISO > IOT-Core-RPi.iso
# install p7zip for decompress *.iso and *.msi files
sudo port install p7zip
# decompress files
7z x IOT-Core-RPi.ISO
7z x Windows_10_IoT_Core_RPi2.msi
@yeongseon
yeongseon / .vimrc
Created March 1, 2023 14:05 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'