사용중인 인스턴스에서 인스턴스 생성 시 키페어 되어있던 public 키가 실수로 삭제 되거나 손상 되었을 시, Permission denied (publickey) 라는 에러와 함께 접속이 불가능하다. 이전에는 똑같은 인스턴스를 하나 더 만들어서 기존 볼륨을 detach 한 후 임시 볼륨에 attach 하고, public 키를 마운트 해준 후, 다시 기존 인스턴스에 attach 해주는 번거로운 작업을 해줘야 했는데, 꼼수(?)로 기존에 발급 받았던 public 키만 있다면 쉽게 해결 가능하다. 1. public 키를 찾는다, 혹은 private키로 다시 public 키 생성 $ ssh-keygen -y -f /path/to/keypair.pem 2. 실행중인 인스턴스를 정지 시킨다. 3. 인스턴스에 pu..
mac을 초기화하거나, 새 맥북이 생겼을 때 터미널 세팅을 하기 위한 기록용도 겸 정보공유 1. iterm2 설치 https://iterm2.com/ 2. homebrew 설치 공식사이트 $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 3. zsh 설치 $ brew install zsh 4. oh-my-zsh 설치 github $ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 5. oh-my-zsh agnoster 테마 적용하기 Power..
mojave os / xcode 10.1 에서 npm install 도중 node-gyp 관련 에러발생 There will be other errors nearer the end, almost certainly issues with the module you're trying to install or a dependency. Please report the error to that project. 1. command line tools 설치 확인 설치가 안되어있다면 요기서 다운https://developer.apple.com/download/more/ 2. xcode select 설정 $ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer 출처
We, 9 (nineShow) regards your information significant and release this Privacy Statement to inform you what information we collect and how we use it to personalize and continually improve you experience. This Privacy Statement applies to its services which collect data from you and does not apply to the product or service that which does not link to this statement or has its privacy statement re..
A non-empty zero-indexed array A consisting of N integers is given. The array contains an odd number of elements, and each element of the array can be paired with another element that has the same value, except for one element that is left unpaired.For example, in array A such that: A[0] = 9 A[1] = 3 A[2] = 9 A[3] = 3 A[4] = 9 A[5] = 7 A[6] = 9the elements at indexes 0 and 2 have value 9,the ele..
코딜리티 알고리즘 연습 두번째 포스팅. A zero-indexed array A consisting of N integers is given. Rotation of the array means that each element is shifted right by one index, and the last element of the array is moved to the first place. For example, the rotation of array A = [3, 8, 9, 7, 6] is [6, 3, 8, 9, 7] (elements are shifted right by one index and 6 is moved to the first place).The goal is to rotate array ..
알고리즘 공부를 해야지 해야지 하다가 이제서야 시작. 코딜리티(Codility)라는 좋은 사이트를 접하게 되어서 문제를 풀어보기로 마음먹었다. 코딜리티로 문제를 풀고나면 복잡도(Big-o)도 계산해주고 스코어도 매겨준다. 첫번째 문제. A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529..