Vim Customizing
Vim Plugin Manager Installation 아래의 플러그인들을 설치하기 위해서 우선 플러그 매니저를 설치해야한다. curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim ~/.vim...
Vim Plugin Manager Installation 아래의 플러그인들을 설치하기 위해서 우선 플러그 매니저를 설치해야한다. curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim ~/.vim...
Customizing MacOS Terminal 1. Transforming Terminal with Oh My Zsh What is Oh My Zsh? Oh My Zsh is an open-source framework that makes your terminal both vibrant and powerful. By using the Zsh sh...
Setting Up Mac Mini and MacBook Air Environment with Automator Recently, I decided to purchase a Mac Mini after experiencing performance issues with my MacBook Air. However, one major downside of ...
CentOS7 기준 설치 방법 매우 간단하다. 아래 명령어 실행. $ yum install emacs Kali Linux에서 설치가 안 될 시 /etc/apt/sources.list 파일에 아래 코드를 추가한다. deb http://http.kali.org/kali kali-rolling main contri...
putty를 설치하고 기본으로 쓰면 파란색 글짜때문에 눈이 아프다… 따라서 putty 설치 후 다음과 같은 설정을 하면 편하게 쓸 수 있다. 1. Window 명령어를 실행하면 보여줄 수 있는 라인 수는 넉넉히 1000으로 설정. 2. Appearance 폰트 사이즈는 해상도에 따라서 10, 15로 설정. 3. Beha...
Vim Shortcuts Complete Guide: Secrets of Efficient Text Editing Navigation Basic Movement ^: Move to the first non-blank character of the line 0: Move to the absolute beginning of the line (...
syslog-ng란? 로그를 다루는 프로그램이다. 기존의 리눅스에 포함되어 있는 syslog의 상위 버전이라 할 수 있다. CentOS7의 경우는 syslog보다 조금 더 상위버전인 rsyslog가 있지만 그것보다 더 상위버전인 것이 syslog-ng이다. RHEL or CentOS7 위에 설치 RHEL은 아래 과정을 하고 C...
if, elif, and else 구문 2가지 형식이 가능하다. if 조건문 안에는 filter expression만 가능하고 foo가 포함되어 있지 않으면 else구문으로 빠진다. if (message('foo')) { parser { date-parser(); }; } else { ... }; if 구문 ...
C# .net core에서 NLOG를 이용한 XML 사용법 우선 NuGet을 통해 NLog와 NLog.Targets.Syslog를 설치합니다. syslog는 Rfc5424와 같은 규격을 사용하기 때문에 아무렇게나 log를 만들 수 없습니다. 따라서 특정 규격에 맞게 데이터를 전송해야하는데 NLog가 그것을 담당해줍니다. 예시 <...
NodeJS의 특징 Javascript를 사용한다. (따라서 front, back이 모두 같은 언어로 작업 할 수 있다.) Single thread 기반으로 동작한다. Event 기반의 프로그래밍 모델을 사용한다. 개발 구조가 단순하여 빠르게 개발이 가능하다. CentOS7 기준 설치방법 $ curl -sL https...