일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Big Omega
- homogeneous linear system
- 페이지 겹칩
- Big-Oh notation
- Big-Oh 예제
- 랜덤 순서 배열
- 알고리즘 분석의 실례
- nontrivial solution
- one-to-one
- 이진 탐색
- trivial solution
- itertools
- matrix fo a linear transformation
- recursive algorithms
- python
- NumPy
- 일차변환
- 코틀린 시작하기
- Big-O 예제
- matrix trnasformations
- 배열 섞기
- linear dependence
- 빅세타
- 빅오메가
- 재귀함수
- includepdf
- nonhomogeneous linear system
- 빅오 표기법
- 코틀린 Hello World!
- Big Theta
- Today
- Total
목록잡다한 것들 (23)
코딩 연습
MacVim 을 실행한 후 메뉴에서 Edit - Startup Settings 를 선택한 후, 마지막 줄에 다음을 추가한다. if has("gui_running") autocmd VimLeave * :!open -a iTerm.app endif
~/.spacemacs 파일을 열고 (custom-set-variables 라고 되어 있는 부분을 찾는다. 그 부분을 아래와 같이 바꿔주면 된다. (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(spacemacs-theme-custom-colors '((bg1 . "#001628") (act1 . "#001628") (bg2..
spacevim 을 설치하고 나면 기본 indent width 가 2 로 설정되어 있다. 이 설정을 바꾸려면 .SpaceVim.d 디렉토리에 있는 init.toml 파일을 열어서 [options] 아래쪽에 다음을 추가해 주면 된다. default_indent = 4 이렇게 하면 indent width 가 4로 되는 것을 확인할 수 있다. 그런데 이상하게 중괄호를 열면 자동으로 닫힘 중괄호가 생기고, 이 상태에서 엔터키를 누르면 자동으로 indent 가 되지 않는다. 이것을 고치려면 [[layers]] name = 'autocomplete' 밑에 다음을 추가해 주면 된다. auto-completion-return-key-behavior = "smart"