• KaTeX 고치기 팁 (| 문제로 수식이 바르게 표시되지 않는 문제)
$$P(A|B)$$
$$ = \frac{P(A \cap B)}{P(B)}\;where\;A\;and\;B\;are\;events$$

  • Bayes’ Rules

  • 적분 예제

일반 적분 (초등함수)

and by

오차함수 (초등함수 아님)

  • 전각->반각 regex
 (。|、|,|\.|\?|!|「|」|『|』|・)/
(\d+),(\d+)ウォン/\1\2ウォン
{(\d+)}/{\1} {}
{(\d+)}/{\1} {}
{(\d+)}/{\1} {}
  • vi

^V 눌러 블럭지정, = 눌러 정렬 (VS 2008의 ^KF가 코드 정렬키에 해당)

:e ++enc=utf-8 또는 chcp 65001: UTF-8

  • C/C++

memmove 함수 사용

memmove(s+4, s+3, (size(s)+3)*sizeof(int));	# 늘이기
memmove(s+3, s+4, (size(s)+4)*sizeof(int));	# 줄이기
  • gcc

gcc -Wno-write-strings: UTF-8 minor string 에러 방지