준호씨의 블로그
다음과 같은 list라는 파일이 있습니다. 1 2 3 cat 명령어를 이용하면 파일의 내용이 순서대로 출력됩니다. $ cat list 1 2 3 만약 역순으로 보이도록 하고 싶다면 tac 명령어를 사용하면 됩니다. $ tac list 3 2 1 linux에서는 기본 지원하는 명령어이고 osx에서도 coreutils를 설치하면 사용할 수 있습니다.
설정 파일 확인 my.cnf 등 사용하는 설정 파일을 열얼 본다. 아래와 같은 설정을 찾을 수 있을 것이다. 보통 /etc/my.cnf 인데 환경에 따라 다를 수도 있음. max_connections = 200 db 접속 해서 확인 하는 방법 mysql> show variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 6000 | +-----------------+-------+ 1 row in set (0.01 sec) 설정 바꾸기 set global 로 바로 적용 해 볼 수 있다. mysql> set global m..
octoree extension 은 아래 그림과 같이 github 에 접속하면 화면 좌측에 code tree 를 띄워준다. 설치 Chrome 웹 스토어에서 설치 할 수 있다. Chrome 웹 스토어 - https://chrome.google.com/webstore/detail/octotree/bkhaagjahfmjljalopjnoealnfndnagc chrome 에외 firefox 나 opera 용도 있는 것으로 보인다. https://github.com/buunguyen/octotree 에 가면 링크 확인 가능 설정 설치 한다고 바로 사용 가능 한 건 아니고 github 에서 Personal access token 을 발행하고 그 token 을 octoree 에 입력 해 주어야 한다. Personal ..
출처: https://dart.fss.or.kr/dsaf001/main.do?rcpNo=20171114002088
터치바 모델 맥북에서는 Keyboard 설정에는 기존 모델이 있었던 "Use all F1, F2, etc. keys as standard function keys" 설정이 없다. 원래 이 설정을 활성화 시키면 펑션키가 일반 펑션키로 동작하게 되는데 말이다. Karabiner-Elements 를 설치 하면 이 옵션을 사용 할 수 있다. Karabiner-Elements 는 https://pqrs.org/osx/karabiner/ 에서 받을 수 있다.
터미널에서 git 자동완성 (tab 으로 자동완성) 하기와 prompt 에 git 정보를 출력하는 방법이다. brew 로 bash-completion 설치 brew install git && brew install bash-completion ~/.bash_profile 에 다음 내용을 추가 한다. if [ -f $(brew --prefix)/etc/bash_completion ]; then . $(brew --prefix)/etc/bash_completion fi GIT_PS1_SHOWDIRTYSTATE=true PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;33m\]\w\[\033[00m\]\[\033[01;31m\]$(__git_ps1 " {%s}")\[\03..
확인 sudo systemsetup -getremotelogin $ sudo systemsetup -getremotelogin Password: Remote Login: Off 활성화 sudo systemsetup -setremotelogin on 끄기 sudo systemsetup -setremotelogin off 참고 How to Enable SSH on a Mac from the Command Line 2016.08.16
homebrew 를 설치 하면 각종 유용한 패키지를 손쉽게 설치 할 수 있다. homebrew 설치 하기 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" homebrew 로 wget 설치 하기 $ brew install wget 다른 설치 예apache httpd 설치 하기anaconda 설치 하기php 설치 하기RStudio 설치 하기jenkins 설치 하기dotnet sdk 설치 하기 cleanupcleanup 하기 참고 https://brew.sh/index_ko.html
new IO::Socket::INET... 그냥은 timeout 이 잘 동작 하지 않음 alarm 을 이용해야 한다. 자세한건 차차 정리 참고 alarm IO::Socket::Timeout: socket timeout made easy How to timeout and proceed in perl? IO::Socket::INET