Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Big Theta
- one-to-one
- 배열 섞기
- matrix-vector product
- 이진 탐색
- linear dependence
- matrix fo a linear transformation
- 빅오 표기법
- Big-O 예제
- 코틀린 시작하기
- homogeneous linear system
- Big Omega
- trivial solution
- 알고리즘 분석의 실례
- nontrivial solution
- NumPy
- 일차변환
- 빅세타
- 랜덤 순서 배열
- solutions of matrix equation
- Big-Oh 예제
- nonhomogeneous linear system
- 재귀함수
- Big-Oh notation
- recursive algorithms
- python
- 빅오메가
- 코틀린 Hello World!
- itertools
- matrix trnasformations
Archives
- Today
- Total
코딩 연습
emcas에서 yas-snippets 사용시 로딩이 안되는 문제
emacs doom 에서 yas-snippets을 잘 사용하고 있었는데, 어느날 갑자기 내가 만든 custom snippets 들이 로딩이 안되어 사용이 불가능한 상황이 발생했다.새롭게 만들어 넣으면 맨 마지막 snippet 만 로딩이 되고, 앞선 snippet 들은 모두 언로딩되는 현상이 반복되어,검색에 검색을 거듭해본 결과 snippet 파일에서 uuid 부분을 설정해주면 해결된다는 사실을 알아냈다. # -*- mode: snippet -*-# name: choice box# uuid: JK_choose_box# key: >cb# condition: t# --\begin{ChooseBox}{보기} \begin{enumerate}[ㄱ.] \end{enumerate}\end{ChooseBox} uuid:
카테고리 없음
2024. 12. 17. 15:33
emacs 에서 .tex 파일 로딩시 LaTeX-mode 를 기본으로 설정하는 법
emacs doom 을 사용할 때는 config.el 에 다음을 추가해주며 된다. (add-to-list 'auto-mode-alist '("\\.tex\\'" . latex-mode))
카테고리 없음
2024. 12. 17. 15:29