-
-
SSH Key 생성하는 법Miscellaneous 2021. 10. 21. 22:10
1. https://git-scm.com/book/ko/v2/Git-%EC%84%9C%EB%B2%84-SSH-%EA%B3%B5%EA%B0%9C%ED%82%A4-%EB%A7%8C%EB%93%A4%EA%B8%B0 Git - SSH 공개키 만들기 많은 Git 서버들은 SSH 공개키로 인증한다. 공개키를 사용하려면 일단 공개키를 만들어야 한다. 공개키를 만드는 방법은 모든 운영체제가 비슷하다. 먼저 키가 있는지부터 확인하자. 사용자의 SSH git-scm.com 2. https://www.lainyzine.com/ko/article/creating-ssh-key-for-github/ GitHub 접속 용 SSH 키 만드는 방법 GitHub의 저장소를 사용할 때 HTTPS과 SSH 프로토콜을 사용할 수 있습니다...
-
Docker - Very beginning tutorialMiscellaneous 2021. 10. 6. 14:48
1. Tutorial https://www.youtube.com/watch?v=bi0cKgmRuiA&t=0s&ab_channel=PythonEngineer 2. How to set up and use a virtual environment in your Docker https://stackoverflow.com/questions/48561981/activate-python-virtualenv-in-dockerfile https://pythonspeed.com/articles/activate-virtualenv-dockerfile/ 3. How to update the Image (after changing some of your codes, which requires re-building the imag..
-
Figure Images for PapersMiscellaneous 2021. 8. 11. 08:20
High resolution Matplotlib Figure images for papers are required to have dpi of 300 (= high resolution). With matplotlib, you can save an image as follows: plt.savefig('Final_Plot.png', dpi=300, bbox_inches='tight') jpg vs. png Note that a .jpg file carries "dpi" information in the property, while a .png file does not show it in the property. But, a png file is much lighter. PowerPoint https://m..
-
Decompress tar filesMiscellaneous 2021. 6. 22. 15:03
tar files: It is a compressed file often used in Linux (similar to zip files in Windows) tar -xvf compressed_file.tar tar -xvf compressed_file.tar --directory /path/to/directory [1] StackExchange, "Are there other options to unzip a file in Ubuntu besides “unzip”? [closed]" (link) [2] Some blog posting, "tar command in Linux with examples" (link)