This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * A basic GUI to help monitor memory usage in QuPath. | |
| * | |
| * This helps both to find & address out-of-memory troubles by | |
| * 1. Showing how much memory is in use over time | |
| * 2. Giving a button to clear the tile cache - which can be | |
| * using up precious memory | |
| * 3. Giving quick access to control the number of threads used | |
| * for parallel processing | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # remove previous conda environment (optional) | |
| conda deactivate | |
| conda remove --name cellpose --all | |
| # create your `cellpose` environment | |
| conda create --name cellpose | |
| # install dependencies and `cellpose[gui]` package from `conda-forge` | |
| conda activate cellpose | |
| conda install -c conda-forge pyqt pyqtgraph 'cellpose[gui]' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ECHO OFF | |
| TITLE Restic backup | |
| :: mount network drive for Administrator command prompt | |
| NET USE Z: \\data.server.pvt\your\data | |
| :: manually create remote restic repository with (optional) compression | |
| :: restic.exe init --repo "Z:\repo" --repository-version latest | |
| :: set RESTIC_PASSWORD system variable before accessing repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## R expects this file to be in its hidden config folder | |
| # mkdir ~/.R | |
| # touch ~/.R/Makevars | |
| ## Install 'OpenMP' using Homebrew in Terminal | |
| # brew update && brew install libomp | |
| ## Include 'OpenMP' library with clang | |
| HOMEBREW_PATH=/opt/homebrew | |
| # 'openmp' was symlinked (package) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| autocmd BufNewFile,BufRead *.ijm set syntax=C |