Shell Script 2

자주 사용하지만 잘 잊어버리는 shell script 모음 2

LOOP

```shell?line_number=false #!/bin/sh

Python> High Performance Python(4)

summary : chapter7,8,9 내용 정리/요약, cython / concurrency / multiprocessing

Kernel(1)

summary : kernel 관련 기억/요약/link

Kernel(1)

Python> High Performance Python(3)

summary : chapter5,6 내용 정리/요약, iterator / generator, matrix / vector

Python> High Performance Python(2)

summary : chapter3,4 내용 정리/요약, list / tuple, dict / set

Python> High Performance Python(1)

ch1 preview

Terminator Tips

Terminator Tips

Dockerfile 정리

dockerfile 사용관련

Python> Python virtutal environment

pyenv (https://github.com/pyenv) 설치 / 환경변수 설정

참고 : https://github.com/pyenv/pyenv/wiki/common-build-problems

$ sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev
$ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
$ echo 'export PATH="/home/suker/.pyenv/bin:$PATH"' > ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile 
$ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile 
$ source ~/.bash_profile

Python> Python CookBook3판 - O REILLY Study(ch12) 병렬처리

12.1 스레드 시작과 정지