본문 바로가기

개발 Tip

(9)
vscode 에서 우분투 ssh 접속하여 프로젝트 접근 evols-atirev.tistory.com/28 seokhyun2.tistory.com/42 myevan.net/vscode_ext_remote_ssh/ Settings > Extensions > Remote - SSH > Remote.SSH: Config File 에서 직접 경로 설정해주어야 합니다. 경로 구분자를 \ 대신 \\ 를 사용합니다. C:\\Users\\USER_NAME\\.ssh\\config
How can I check if a program exists from a Bash script? stackoverflow.com/a/677212/1027058 How can I check if a program exists from a Bash script? How would I validate that a program exists, in a way that will either return an error and exit, or continue with the script? It seems like it should be easy, but it's been stumping me. stackoverflow.com
제가 쓰는 Merge Program 저는 보통 가상머신에 리눅스를 설치하여 putty 를 이용해 코딩을 합니다. merge tool meld 를 사용합니다. sudo apt install meld putty 에서 머지를 하면 윈도우 에서 meld 가 실행되게 합니다. 윈도우에서 X Program 을 사용하기 위한 xming 을 설치하고 https://sourceforge.net/projects/xming/ Xming X Server for Windows Download Xming X Server for Windows for free. X Window System Server for Windows. Xming is the leading X Window System Server for Microsoft Windows 8/7/Vista/XP (..
tmux conf 설정 6년전 저에게 많은 도움을 준 윤이사님 감사합니다. 저의 vi 작업에 필수인 tmux 설정파일 공유드립니다. https://github.com/tony/tmux-config Build software better, together GitHub is where people build software. More than 40 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com 사용방법 1) git clone --recursive https://github.com/tony/tmux-config.git ~/.tmux 2) ln -s ~/.tmux/.tmux.conf ~/.tmux.co..
프로그래밍 폰트 추천 괜찮은 프로그래밍 폰트를 찾아서 추천드립니다. Hack 폰트 공식사이트 : https://github.com/source-foundry/Hack source-foundry/Hack A typeface designed for source code. Contribute to source-foundry/Hack development by creating an account on GitHub. github.com 윈도우 설치파일 링크 https://github.com/source-foundry/Hack-windows-installer/releases/tag/v1.6.0 source-foundry/Hack-windows-installer A Windows installer for the Hack typeface...
vim color 추천 mkdir ~/.vim/colors curl -o ~/.vim/colors/molokai.vim https://raw.githubusercontent.com/tomasr/molokai/master/colors/molokai.vim vi .vimrc 에 등록 colorscheme molokai let g:molokai_original = 1
DVCS와 코드리뷰 그리고 자동화를 통한 쾌속 개발 NDC13: DVCS와 코드리뷰 그리고 자동화를 통한 쾌속 개발 from Jinuk Kim
VIM 설정 set termguicolors filetype plugin indent on set t_Co=256 set autoindent set smartindent set textwidth=120 set nowrapscan set showcmd set showmatch set incsearch set autowrite set title set sta set foldmethod=marker set encoding=utf-8 set fileencodings=utf-8 set regexpengine=1 set backspace=indent,eol,start set hlsearch set ignorecase set tabstop=2 set softtabstop=2 set shiftwidth=2 set expandtab..