일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Matplotlib
- SSH
- intel compiler
- virtual
- gfortran
- tab space
- h5py
- cygwin
- Windows
- hyperref
- mpi4py
- polyglot
- vi
- MAC
- Anaconda
- LaTeX
- cython
- openmp
- Visual Studio
- python
- datascience
- c++
- arXiver
- jupyter
- portforwarding
- conda
- GSL
- vim
- HDF5
- HFS+
- Today
- Total
Astro Coke
reference: https://medium.com/hackernoon/install-polyglot-on-mac-3c90445abc1f There is no mac-compatible version of polyglot python package in conda channels. Therefore, we have to install it via secondary method. It is a bit problematic as it raised error when installing via "pip" (even though no error, when it is imported, it raised a dependency errors). First let us install the icu4c library ..
source: https://ssledz.github.io/blog/2016/01/10/write-to-an-hfs-plus-usb-drive-from-a-synology-nas/ To be albe to write/read to an HSF+ USB drive, we need first disable journaling on the drive connect your drive to nas remount device with "ro" (read only) flag switched off disableing journaling in the drive To be able to do this you need to plug in your device to the mac (I couldn’t do this fro..
After completing the installation with cmake, sometimes it is needed to update the library path, export LD_LIBRARY_PATH=/directory/hdf5/lib/installed:$LD_LIBRARY_PATH One issue I had was that even though I enabled Fortran setup in CMake option during the installation, fortran-hdf5 libraries were not working. This is simply because the link of "include" should be directed to "shared". For example..
Jupyter lab 이나 Jupyter notebook 을 외부에서 접속해서 사용할 때, 백그라운드로 활성화시켜서 종료할 때 확인을 잘 못하는 경우가 있다. 이럴 땐, 계속해서 돌아가는 일들이 종종 있는데, > jupyter lab list 위 명령어로 현재 살아 있는 노트북을 확인 할 수 있다 (경우에 따라 lab 과 notebook을 바꿔서 쓸 수 있다). 이를 통해 확인한 port 넘버로 (e.g., 8888) 아래와 같이 중단할 수 있다. jupyter lab stop 이때 간혹, ConnectionRefusedError: [Errno 10061] Unknown error 와 같은 에러가 발생하기도 하는데, 이 경우에는, jupyter --paths 를 통해 runtime 임시 파일 폴더의 위치..
source:https://docs.computecanada.ca/wiki/Globus#Command_Line_Interface_.28CLI.29 https://hpc.nih.gov/storage/globus.html Command Line Interface (CLI)[edit] Installing[edit] The Globus command line interface is a python module which can be installed using pip. Below are the steps to install Globus CLI on one of our clusters. Create a virtual environment to install the Globus CLI into (see creati..
source: 여러 폴더를 상응한 이름의 압축파일로 변환하기 위해서는 메크로가 필요하다. e.g.) \tmp1 \tmp2 \tmp3 --> tmp1.tar.gz tmp2.tar.gz tmp3.tar.gz 하지만 아래와 같은 간단한 명령어로 쉽게 바꿀 수 있다. find tmp* -type d -execdir tar cvfz '{}.tar.gz' '{}' \; The first argument is the directory you want to begin in, and find the folders (or files) Then we will restrict it to find folders only (-type d; if it is files, it should be -type f) The -execdir..
source: osxdaily.com/2011/03/08/remove-an-agent-from-launchd/ 인터넷 뱅킹을 할때 부득이하게 설치를 해야하는 프로그램인 ahnlab safe transaction 은 기타 다른 프로그램 작동에도 영향을 준다. 그리고 이 프로그램은 기본적으로 로그인시 자동 실행 되기때문에 매번 실행을 중지해줘야 하는 번거러움이 있다. 우선 실행을 중지하는 방법으로는 activity Monity 를 실행해서 astxAgent 를 중지시킨다. 이후 로그인 자동실행을 방지하기 위해서는 터미널을 열고 launchctl 명령어로 실행되는 deamon 프로그램을 검색한다. > launchctl list | grep astx -> ... ... com.astx.firewall.Agent..
source: stackoverflow.com/questions/26024586/how-can-i-merge-a-branch-into-master-but-continue-working-on-the-branch You shouldn't merge Farmcrops directly into master, because you run the risk of breaking the code in master, which, by convention, is supposed to be more stable. Instead, check out Farmcrops and merge master into it. git checkout Farmcrops git merge master Then you'll get -- o -- ..
bundle exec jekyll serve 로 jekyll을 구동할 때, 아래와 같이 Dependency error 가 발생하면, Dependency Error: Yikes! It looks like you don't have kramdown-parser-gfm or one of its dependencies installed. 우회적인 방법으로 Gemfile 에서 버전을 고정해주는 방법이 있다. 우선 gem install kramdown-parser-gfm --user-install 로 패키지를 설치하고, 이후에도 여전히 Dependency error 가 똑같이 발생하면, Gemfile 을 열어 아래와 같이 plugin 의 버전을 고정해준다. (ex., v1.1.0 for kramdown-parser..
source: https://charly-lersteau.com/posts/2019-12-26-latex-hyperref-error-pdfendlink/ The following error message is due to a hyperlink breaking across two pages[1]. pdfTeX error (ext4): \pdfendlink ended up in different nesting level than \pdfstartlink. \AtBegShi@Output ...ipout \box \AtBeginShipoutBox Since pdflatex cannot deal with it, a suggested method is to identify the breaking hyperlink ..