전체 글

싱싱한 자연어를 탐구합니다.
relative path, absolute path (상대경로, 절대경로) If the path starts with /, it is an absolute path; otherwise it is a relative path. cd /home/linuxer1/12345 -- go to /home/linuxer1/12345 cd 12345 -- go to directory 12345 in the current directory if the current location is /home/linuxer1, go to /home/linuxer1/12345 if the current location is /bin go to /bin/12345 If the destination directory does not ex..
special symbols . : current directory cp f1 ./f2 -- copy f1 to f2 in the current directory .. : parent directory cp f1 ../f2 -- copy f1 to f2 in the parent directory > : standard output redirection cat f1 > f3 -- display the content of f1 in f3 (same effect as “cp f1 f3”) | : pipe. redirect the standard output of the first program into the standard input of the second program cat f1 | more * : m..
GitHub Markdown에서 LaTeX 수식 사용하기 GitHub Markdown에서 LaTeX 수식을 생으로 입력하면 아래와 같이 "raw" 상태로 렌더링이 되지 않은 채로 나온다. 아래의 사이트를 이용하면 LaTeX 수식 작성을 쉽게 할 수 있을 뿐만 아니라, 마크다운에서 LaTeX 수식을 보여줄 수 있다. https://www.codecogs.com/latex/eqneditor.php Online Equation Editor - standalone Download svg gif png pdf emf HTML URL URL Encoded LaTeX pre TiddlyWiki phpBB WordPress 5 pt 9 pt 10 pt 12 pt 18 pt 20 pt 50 80 100 110 120 1..
https://www.toptal.com/developers/gitignore gitignore.io Create useful .gitignore files for your project www.toptal.com 일일이 작성하기 귀찮은 .gitignore를 자동으로 만들어주는 사이트를 추천한다. 이렇게 사용자가 원하는 운영 체제, 개발 환경(IDE) 등을 입력하면 ​이렇게 raw 형식으로 .gitignore를 만들어준다. 생성된 .gitignore의 예시는 다음과 같다. # Created by https://www.toptal.com/developers/gitignore/api/macos,python,pycharm,visualstudiocode # Edit at https://www.toptal.com..
Basic Linux Commands (A-Z 순) 참고 GitHub - oneonlee/Computer-Science: Introduction to Computer Science Introduction to Computer Science. Contribute to oneonlee/Computer-Science development by creating an account on GitHub. github.com GNU/Linux Command-Line Tools Summary GNU/Linux Command-Line Tools Summary Gareth Anderson Chris Karakas - Conversion from LyX to DocBook SGML, Index generation Revisi..
안전한 사회와 위험 위험 위험 사회 (정의) 과학기술의 발달으로 이전보다 더 많은 위험을 안고 살고 있음 전문가의 위험 = 피해의 크기 * 피해가 일어날 확률 하나가 낮으면 위험가능성 떨어짐 다루는 방법에 따라서 유해성(hazard)과 위해성(danger) 여부로 나뉜다. 유해성(hazard) 해가 있지만 위험성이 낮기 때문에 항상 멀리할 필요는 없다. (잠재성) 위해성(danger) 가시적으로 보이는 위험으로 위해성으로부터 벗어날 방법을 찾아야 한다. 실질적 위험 실제 삶을 위협하는 위험으로 이 단계를 맞지 않도록 대비해야 한다. 피해 예시 인명 손실, 부상, 재산 손실 역량(capability) 손실 eg, 피아니스트, 운동선수 들의 역량 손실 피해 발생 피해가 발생하면 위험하다. 위험은 역동적이고 ..
oneonlee
One Only