├── .gitignore ├── Archives ├── explore_tsx_archive.ipynb └── readme.md ├── Batch ├── __pycache__ │ └── prep_topsApp.cpython-35.pyc ├── prep_sequential_processing.py ├── prep_topsApp.py └── runall.py ├── BatchProcessing.md ├── CheatSheat.md ├── Docker ├── Dockerfile ├── SConfigISCE └── readme.md ├── OSX ├── Readme.md ├── Readme_201604.md ├── isce.yml ├── isce_201609.yml └── scons.yml ├── Readme.md ├── Ubuntu ├── Readme.md ├── Readme_201609.md ├── Readme_GIAnT.md ├── conda-forge-packages.txt ├── giant.yml ├── giant_102016.yml ├── isce.yml ├── isce_201609.yml └── scons.yml └── archives.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .ipynb_checkpoints 3 | Archives/* 4 | -------------------------------------------------------------------------------- /Archives/explore_tsx_archive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Archives/explore_tsx_archive.ipynb -------------------------------------------------------------------------------- /Archives/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Archives/readme.md -------------------------------------------------------------------------------- /Batch/__pycache__/prep_topsApp.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Batch/__pycache__/prep_topsApp.cpython-35.pyc -------------------------------------------------------------------------------- /Batch/prep_sequential_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Batch/prep_sequential_processing.py -------------------------------------------------------------------------------- /Batch/prep_topsApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Batch/prep_topsApp.py -------------------------------------------------------------------------------- /Batch/runall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Batch/runall.py -------------------------------------------------------------------------------- /BatchProcessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/BatchProcessing.md -------------------------------------------------------------------------------- /CheatSheat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/CheatSheat.md -------------------------------------------------------------------------------- /Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Docker/Dockerfile -------------------------------------------------------------------------------- /Docker/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Docker/SConfigISCE -------------------------------------------------------------------------------- /Docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Docker/readme.md -------------------------------------------------------------------------------- /OSX/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/OSX/Readme.md -------------------------------------------------------------------------------- /OSX/Readme_201604.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/OSX/Readme_201604.md -------------------------------------------------------------------------------- /OSX/isce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/OSX/isce.yml -------------------------------------------------------------------------------- /OSX/isce_201609.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/OSX/isce_201609.yml -------------------------------------------------------------------------------- /OSX/scons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/OSX/scons.yml -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Readme.md -------------------------------------------------------------------------------- /Ubuntu/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/Readme.md -------------------------------------------------------------------------------- /Ubuntu/Readme_201609.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/Readme_201609.md -------------------------------------------------------------------------------- /Ubuntu/Readme_GIAnT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/Readme_GIAnT.md -------------------------------------------------------------------------------- /Ubuntu/conda-forge-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/conda-forge-packages.txt -------------------------------------------------------------------------------- /Ubuntu/giant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/giant.yml -------------------------------------------------------------------------------- /Ubuntu/giant_102016.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/giant_102016.yml -------------------------------------------------------------------------------- /Ubuntu/isce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/isce.yml -------------------------------------------------------------------------------- /Ubuntu/isce_201609.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/isce_201609.yml -------------------------------------------------------------------------------- /Ubuntu/scons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/Ubuntu/scons.yml -------------------------------------------------------------------------------- /archives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/isce_notes/HEAD/archives.md --------------------------------------------------------------------------------