├── .JuliaFormatter.toml ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── links.yml ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Project.toml ├── README.md ├── bibliorender.jl ├── content ├── 00_getting_started │ ├── 01_setup.jl │ ├── 02_flowcharts.jl │ ├── 03_pseudo_code.jl │ ├── 04_installation.jl │ ├── 05_environment.jl │ └── _index.md ├── 01_fundamentals │ ├── 03_booleans.jl │ ├── 04_short_circuit.jl │ ├── 05_ternary.jl │ ├── 06_types.jl │ └── _index.md ├── 02_data_structures │ ├── 01_arrays.jl │ ├── 02_indexing.jl │ ├── 03_dictionaries.jl │ ├── 04_tuples.jl │ ├── 05_strings.jl │ ├── 06_struct.jl │ └── _index.md ├── 03_the_flow │ ├── 01_introduction_for.jl │ ├── 02_iteration.jl │ ├── 03_iteration_model.jl │ ├── 04_while.jl │ ├── 05_exiting_loops.jl │ ├── 06_try.jl │ └── _index.md ├── 04_basic_functions_usage │ ├── 01_declaring.jl │ ├── 02_dispatch.jl │ ├── 03_multiple_dispatch.jl │ ├── 04_returning_functions.jl │ ├── 05_broadcasting.jl │ ├── 05_keywords.jl │ ├── 06_documenting_functions.jl │ └── _index.md ├── 05_advanced_functions_usage │ ├── 01_mutating_functions.jl │ ├── 02_element_dispatch.jl │ ├── 03_testing.jl │ ├── 04_recursion.jl │ ├── 05_type_stability.jl │ └── _index.md ├── 06_advanced_topics │ ├── 01_filtering.jl │ ├── 02_finding.jl │ ├── 03_overloading.jl │ ├── 04_growing_arrays.jl │ ├── 06_advanced_string.jl │ ├── 07_list_comprehensions.jl │ └── _index.md ├── 07_files │ ├── 01_path.jl │ ├── 02_downloading.jl │ ├── 03_delimited_files.jl │ ├── 04_json.jl │ ├── 05_api.jl │ └── _index.md ├── 08_applications │ ├── 01_linear_regression.jl │ ├── 02_naive_bayes.jl │ ├── 03_runge_kutta.jl │ ├── 04_graphs.jl │ ├── 05_fire.jl │ ├── 06_travelling_problem.jl │ └── _index.md ├── _index.jl ├── about.jl ├── howto.jl └── readinglist.jl ├── dist ├── config.toml ├── content │ ├── _index.md │ └── about.md ├── static │ ├── .lycheeignore │ ├── CNAME │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── data │ │ ├── metabolicrates.csv │ │ └── observations.csv │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo.svg │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── site.webmanifest └── themes │ └── shebang │ ├── LICENSE │ ├── assets │ ├── _callouts.scss │ ├── _cards.scss │ ├── _codeblocks.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _layout.scss │ ├── _links.scss │ ├── _lists.scss │ ├── _mermaid.scss │ ├── _packages.scss │ ├── _palette.scss │ ├── _titles.scss │ ├── _typography.scss │ └── index.scss │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── single.html │ │ └── terms.html │ ├── index.html │ ├── partials │ │ ├── footer.html │ │ ├── head.html │ │ └── header.html │ └── shortcodes │ │ ├── callout.html │ │ ├── mermaid.html │ │ └── question.html │ ├── static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ │ └── fontawesome │ │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-font-face.css │ │ │ ├── v4-font-face.min.css │ │ │ ├── v4-shims.css │ │ │ ├── v4-shims.min.css │ │ │ ├── v5-font-face.css │ │ │ └── v5-font-face.min.css │ │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── site.webmanifest │ └── theme.toml ├── logomaker └── logo.jl └── references.bib /.JuliaFormatter.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/.JuliaFormatter.toml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/.github/workflows/links.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/LICENSE -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/README.md -------------------------------------------------------------------------------- /bibliorender.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/bibliorender.jl -------------------------------------------------------------------------------- /content/00_getting_started/01_setup.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/00_getting_started/01_setup.jl -------------------------------------------------------------------------------- /content/00_getting_started/02_flowcharts.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/00_getting_started/02_flowcharts.jl -------------------------------------------------------------------------------- /content/00_getting_started/03_pseudo_code.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/00_getting_started/03_pseudo_code.jl -------------------------------------------------------------------------------- /content/00_getting_started/04_installation.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/00_getting_started/04_installation.jl -------------------------------------------------------------------------------- /content/00_getting_started/05_environment.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/00_getting_started/05_environment.jl -------------------------------------------------------------------------------- /content/00_getting_started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/00_getting_started/_index.md -------------------------------------------------------------------------------- /content/01_fundamentals/03_booleans.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/01_fundamentals/03_booleans.jl -------------------------------------------------------------------------------- /content/01_fundamentals/04_short_circuit.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/01_fundamentals/04_short_circuit.jl -------------------------------------------------------------------------------- /content/01_fundamentals/05_ternary.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/01_fundamentals/05_ternary.jl -------------------------------------------------------------------------------- /content/01_fundamentals/06_types.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/01_fundamentals/06_types.jl -------------------------------------------------------------------------------- /content/01_fundamentals/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/01_fundamentals/_index.md -------------------------------------------------------------------------------- /content/02_data_structures/01_arrays.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/01_arrays.jl -------------------------------------------------------------------------------- /content/02_data_structures/02_indexing.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/02_indexing.jl -------------------------------------------------------------------------------- /content/02_data_structures/03_dictionaries.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/03_dictionaries.jl -------------------------------------------------------------------------------- /content/02_data_structures/04_tuples.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/04_tuples.jl -------------------------------------------------------------------------------- /content/02_data_structures/05_strings.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/05_strings.jl -------------------------------------------------------------------------------- /content/02_data_structures/06_struct.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/06_struct.jl -------------------------------------------------------------------------------- /content/02_data_structures/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/02_data_structures/_index.md -------------------------------------------------------------------------------- /content/03_the_flow/01_introduction_for.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/01_introduction_for.jl -------------------------------------------------------------------------------- /content/03_the_flow/02_iteration.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/02_iteration.jl -------------------------------------------------------------------------------- /content/03_the_flow/03_iteration_model.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/03_iteration_model.jl -------------------------------------------------------------------------------- /content/03_the_flow/04_while.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/04_while.jl -------------------------------------------------------------------------------- /content/03_the_flow/05_exiting_loops.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/05_exiting_loops.jl -------------------------------------------------------------------------------- /content/03_the_flow/06_try.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/06_try.jl -------------------------------------------------------------------------------- /content/03_the_flow/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/03_the_flow/_index.md -------------------------------------------------------------------------------- /content/04_basic_functions_usage/01_declaring.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/01_declaring.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/02_dispatch.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/02_dispatch.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/03_multiple_dispatch.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/03_multiple_dispatch.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/04_returning_functions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/04_returning_functions.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/05_broadcasting.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/05_broadcasting.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/05_keywords.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/05_keywords.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/06_documenting_functions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/06_documenting_functions.jl -------------------------------------------------------------------------------- /content/04_basic_functions_usage/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/04_basic_functions_usage/_index.md -------------------------------------------------------------------------------- /content/05_advanced_functions_usage/01_mutating_functions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/05_advanced_functions_usage/01_mutating_functions.jl -------------------------------------------------------------------------------- /content/05_advanced_functions_usage/02_element_dispatch.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/05_advanced_functions_usage/02_element_dispatch.jl -------------------------------------------------------------------------------- /content/05_advanced_functions_usage/03_testing.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/05_advanced_functions_usage/03_testing.jl -------------------------------------------------------------------------------- /content/05_advanced_functions_usage/04_recursion.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/05_advanced_functions_usage/04_recursion.jl -------------------------------------------------------------------------------- /content/05_advanced_functions_usage/05_type_stability.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/05_advanced_functions_usage/05_type_stability.jl -------------------------------------------------------------------------------- /content/05_advanced_functions_usage/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/05_advanced_functions_usage/_index.md -------------------------------------------------------------------------------- /content/06_advanced_topics/01_filtering.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/01_filtering.jl -------------------------------------------------------------------------------- /content/06_advanced_topics/02_finding.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/02_finding.jl -------------------------------------------------------------------------------- /content/06_advanced_topics/03_overloading.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/03_overloading.jl -------------------------------------------------------------------------------- /content/06_advanced_topics/04_growing_arrays.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/04_growing_arrays.jl -------------------------------------------------------------------------------- /content/06_advanced_topics/06_advanced_string.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/06_advanced_string.jl -------------------------------------------------------------------------------- /content/06_advanced_topics/07_list_comprehensions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/07_list_comprehensions.jl -------------------------------------------------------------------------------- /content/06_advanced_topics/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/06_advanced_topics/_index.md -------------------------------------------------------------------------------- /content/07_files/01_path.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/07_files/01_path.jl -------------------------------------------------------------------------------- /content/07_files/02_downloading.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/07_files/02_downloading.jl -------------------------------------------------------------------------------- /content/07_files/03_delimited_files.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/07_files/03_delimited_files.jl -------------------------------------------------------------------------------- /content/07_files/04_json.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/07_files/04_json.jl -------------------------------------------------------------------------------- /content/07_files/05_api.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/07_files/05_api.jl -------------------------------------------------------------------------------- /content/07_files/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/07_files/_index.md -------------------------------------------------------------------------------- /content/08_applications/01_linear_regression.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/01_linear_regression.jl -------------------------------------------------------------------------------- /content/08_applications/02_naive_bayes.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/02_naive_bayes.jl -------------------------------------------------------------------------------- /content/08_applications/03_runge_kutta.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/03_runge_kutta.jl -------------------------------------------------------------------------------- /content/08_applications/04_graphs.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/04_graphs.jl -------------------------------------------------------------------------------- /content/08_applications/05_fire.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/05_fire.jl -------------------------------------------------------------------------------- /content/08_applications/06_travelling_problem.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/06_travelling_problem.jl -------------------------------------------------------------------------------- /content/08_applications/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/08_applications/_index.md -------------------------------------------------------------------------------- /content/_index.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/_index.jl -------------------------------------------------------------------------------- /content/about.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/about.jl -------------------------------------------------------------------------------- /content/howto.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/howto.jl -------------------------------------------------------------------------------- /content/readinglist.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/content/readinglist.jl -------------------------------------------------------------------------------- /dist/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/config.toml -------------------------------------------------------------------------------- /dist/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/content/_index.md -------------------------------------------------------------------------------- /dist/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/content/about.md -------------------------------------------------------------------------------- /dist/static/.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/.lycheeignore -------------------------------------------------------------------------------- /dist/static/CNAME: -------------------------------------------------------------------------------- 1 | sciencecomputing.org 2 | -------------------------------------------------------------------------------- /dist/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /dist/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /dist/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/apple-touch-icon.png -------------------------------------------------------------------------------- /dist/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/browserconfig.xml -------------------------------------------------------------------------------- /dist/static/data/metabolicrates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/data/metabolicrates.csv -------------------------------------------------------------------------------- /dist/static/data/observations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/data/observations.csv -------------------------------------------------------------------------------- /dist/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/favicon-16x16.png -------------------------------------------------------------------------------- /dist/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/favicon-32x32.png -------------------------------------------------------------------------------- /dist/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/favicon.ico -------------------------------------------------------------------------------- /dist/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/logo.svg -------------------------------------------------------------------------------- /dist/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/mstile-144x144.png -------------------------------------------------------------------------------- /dist/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/mstile-150x150.png -------------------------------------------------------------------------------- /dist/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/mstile-310x150.png -------------------------------------------------------------------------------- /dist/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/mstile-310x310.png -------------------------------------------------------------------------------- /dist/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/mstile-70x70.png -------------------------------------------------------------------------------- /dist/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/static/site.webmanifest -------------------------------------------------------------------------------- /dist/themes/shebang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/LICENSE -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_callouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_callouts.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_cards.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_codeblocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_codeblocks.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_footer.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_header.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_layout.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_links.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_lists.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_mermaid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_mermaid.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_packages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_packages.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_palette.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_titles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_titles.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/_typography.scss -------------------------------------------------------------------------------- /dist/themes/shebang/assets/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/assets/index.scss -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/_default/baseof.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/_default/single.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/_default/terms.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/index.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/partials/footer.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/partials/head.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/partials/header.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/shortcodes/callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/shortcodes/callout.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /dist/themes/shebang/layouts/shortcodes/question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/layouts/shortcodes/question.html -------------------------------------------------------------------------------- /dist/themes/shebang/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/apple-touch-icon.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/browserconfig.xml -------------------------------------------------------------------------------- /dist/themes/shebang/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/favicon-16x16.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/favicon-32x32.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/favicon.ico -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/all.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/brands.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/brands.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/fontawesome.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/regular.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/regular.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/solid.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/solid.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/svg-with-js.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/svg-with-js.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/v4-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/v4-font-face.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/v4-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/v4-font-face.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/v5-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/v5-font-face.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/css/v5-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/css/v5-font-face.min.css -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/fonts/fontawesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /dist/themes/shebang/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/mstile-144x144.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/mstile-150x150.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/mstile-310x150.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/mstile-310x310.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/mstile-70x70.png -------------------------------------------------------------------------------- /dist/themes/shebang/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/static/site.webmanifest -------------------------------------------------------------------------------- /dist/themes/shebang/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/dist/themes/shebang/theme.toml -------------------------------------------------------------------------------- /logomaker/logo.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/logomaker/logo.jl -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpoisot/ScientificComputingForTheRestOfUs/HEAD/references.bib --------------------------------------------------------------------------------