키캡, 악세사리, 스위치 판매, 해외 사이트
커뮤니티. 개인거래, 공구 및 공제, 해외 사이트
| Host your-jumpbox | |
| HostName xxx.xxx.xxx.xxx | |
| User user1 | |
| IdentityFile ~/.ssh/private_key_for_jumpbox | |
| Host endpoint1 | |
| HostName xxx.xxx.xxx.xxx | |
| User user2 | |
| ProxyCommand ssh -q -W %h:%p your-jumpbox |
키캡, 악세사리, 스위치 판매, 해외 사이트
커뮤니티. 개인거래, 공구 및 공제, 해외 사이트
| #!/bin/sh | |
| SL=/etc/apt/sources.list | |
| PARAM="r:hm:dna" | |
| KAKAO=mirror.kakao.com | |
| NEOWIZ=ftp.neowiz.com | |
| HARU=ftp.harukasan.org |
한국어 번역(초벌) : nacyot
Why Should I Care (For Developers)
"나에게 Docker의 매력은 간단히 격리된 환경을 만들 수 있다는 것과, 그러한 환경을 재사용할 수 있다는 점이다."런타임 환경을 한 번 만들어 패키지로 만들면, 이 패키지를 다른 어떤 머신에서도 다시 사용할 수 있다. 또한 여기서 실행되는 모든 것은 마치 가상머신과 같이 호스트로부터 격리되어있다. 무엇보다도 이런 모든 일들이 빠르고 간단히 가능하다.
| RUN sed -i 's/archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list \ | |
| && apt-get update && apt-get install -y \ | |
| ...packages-you-want-to-install... \ | |
| && rm -rf /var/lib/apt/lists/* |
| // Client-side parser for .npy files | |
| // See the specification: http://docs.scipy.org/doc/numpy-dev/neps/npy-format.html | |
| var NumpyLoader = (function () { | |
| function asciiDecode(buf) { | |
| return String.fromCharCode.apply(null, new Uint8Array(buf)); | |
| } | |
| function readUint16LE(buffer) { | |
| var view = new DataView(buffer); | |
| var val = view.getUint8(0); |
| #!/bin/bash | |
| ## This gist contains step by step instructions to install cuda v9.0 and cudnn 7.2 in ubuntu 18.04 | |
| ### steps #### | |
| # verify the system has a cuda-capable gpu | |
| # download and install the nvidia cuda toolkit and cudnn | |
| # setup environmental variables | |
| # verify the installation | |
| ### |
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.