├── .gitignore ├── GNUmakefile ├── README.md ├── SciComputing.tex ├── UNIX └── unix.tex ├── preface └── preface.tex ├── remote └── remote.tex ├── reproducibility └── reproducibility.tex └── symbols.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/GNUmakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/README.md -------------------------------------------------------------------------------- /SciComputing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/SciComputing.tex -------------------------------------------------------------------------------- /UNIX/unix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/UNIX/unix.tex -------------------------------------------------------------------------------- /preface/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/preface/preface.tex -------------------------------------------------------------------------------- /remote/remote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/remote/remote.tex -------------------------------------------------------------------------------- /reproducibility/reproducibility.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/reproducibility/reproducibility.tex -------------------------------------------------------------------------------- /symbols.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/scientific_computing_cookbook/HEAD/symbols.tex --------------------------------------------------------------------------------