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: 자료 모음

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

@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'