본문 바로가기

전체 글195

mathjax 티스토리에 적용하기 관리-> 스킨편집 -> HTML편집에서 사이에 을 넣는다. 사용법은 inline 모드: 백슬래시+소괄호 bs( 수식수식 bs) display 모드: 백슬래시+대괄호 bs[ 수식수식 bs] -테스트 \[ % 메모: (x+1)^2 is NOT x^2 + 1 (x+1)^2 % original expression = (x+1)(x+1) % definition of exponent = x^2 + 2x + 1 % FOIL, combine like terms \] \[7\frac{4}{3} \] \[\frac{x^3+x^2}{t^2-t+1}\] 인라인 모드 테스트. \(7\frac{4}{3}\) 인라인 모드 bs와 괄호로 쌓인 내부에 %로 주석을 넣을 수 있다. 주의점 : - 블로그 기본모드에서 작성해도 상관없지만... 2020. 8. 19.
ubuntu에서 pylint unable to import .. 해결법 https://github.com/dense-analysis/ale/issues/208 pylint import problem with modules in the same folder · Issue #208 · dense-analysis/ale I'm seeing a weird error being reported by pylint only running through ale. As a MWE, I create in an empty folder two files, a.py and b.py and I import a in b.py, as shown in the screenshot. As... github.com .pylintrc 을 ~/ 에 만들어주고 .pylintrc에는 init-hook='import .. 2020. 8. 4.
curl 다운로드시 SSL인증서 무시 검증을 하지 않는 옵션인 -k(--insecure) curl -k -L google.com curl --insecure -L google.com 2020. 5. 28.
[docker] 사용법 docker의 image 는 docker환경을 말하고, image의 instance가 container이다 container은 만들면 지우기 전까지 존재(stop/ start로 사용) 만들때는 run 이미지/ 컨테이너 확인 $> docker ps 동작중인 컨테이너 목록 확인 $> docker ps -a 정지된 컨테이너 확인 $> docker rm [컨테이너id] 컨테이너 삭제 $> docker rm [컨테이너id1] [컨테이너id2] [컨테이너id3] 복수개 컨테이너 삭제 $> docker images 이미지 확인 $> docker rmi [image id] 이미지 삭제 (복수개 가능 ) $>docker rmi -f [image id] 컨테이너와 이미지의 한꺼번에 강제 삭제 container리스트 보기 .. 2020. 5. 26.