├── FortranCon2020-community ├── README.md ├── assets │ ├── FortranCon-community-diagram.odg │ ├── FortranCon-community-diagram.svg │ └── monthly-call-screenshot.png ├── dist │ ├── reset.css │ ├── reveal.css │ ├── reveal.esm.js │ ├── reveal.js │ └── theme │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── fonts │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ └── white.css ├── index.html ├── plugin │ ├── highlight │ │ ├── highlight.esm.js │ │ ├── highlight.js │ │ ├── monokai.css │ │ ├── plugin.js │ │ └── zenburn.css │ ├── markdown │ │ ├── markdown.esm.js │ │ ├── markdown.js │ │ └── plugin.js │ ├── math │ │ ├── math.esm.js │ │ ├── math.js │ │ └── plugin.js │ ├── notes │ │ ├── notes.esm.js │ │ ├── notes.js │ │ ├── plugin.js │ │ └── speaker-view.html │ ├── search │ │ ├── plugin.js │ │ ├── search.esm.js │ │ └── search.js │ └── zoom │ │ ├── plugin.js │ │ ├── zoom.esm.js │ │ └── zoom.js └── slides │ ├── about-me.md │ ├── challenges.md │ ├── community.md │ ├── compilers.md │ ├── discourse.md │ ├── fpm.md │ ├── motivation.md │ ├── outlook.md │ ├── overview.md │ ├── pillars.md │ ├── stdlib.md │ ├── takeaways.md │ ├── thank-you.md │ ├── title.md │ └── website.md ├── FortranCon2020-fpm ├── README.md ├── fpm-presentation.odp └── fpm-presentation.pdf ├── FortranCon2020-stdlib ├── README.md ├── apidocsstdlib.png └── stdlib_talk.tex ├── FortranCon2021-fpm ├── .gitignore ├── Figures │ ├── bootstrapping.pdf │ ├── bootstrapping.svg │ ├── dependencies.pdf │ ├── dependencies.svg │ ├── features.pdf │ ├── features.svg │ ├── fpm-projects.pdf │ ├── fpm-projects.svg │ ├── get-fpm.pdf │ ├── get-fpm.svg │ ├── layout.pdf │ ├── layout.svg │ ├── logo-cpp.pdf │ ├── logo-fortran.png │ ├── logo-haskell.pdf │ ├── logo-python.pdf │ └── logo-rust.pdf ├── LICENSE ├── README.md ├── beamercolorthemeMCTC.sty ├── beamerouterthemeMCTC.sty ├── data │ └── fpm-projects.txt ├── main.tex └── plot │ ├── fpm-events.txt │ ├── fpm-projects.plt │ └── fpm-projects.txt ├── FortranCon2021-gsoc-fpm-flags └── README.md ├── FortranCon2021-linked_list └── README.md ├── FortranCon2021-state-of-fortran └── README.md ├── FortranCon2021-stdlib ├── README.md ├── contrib.png ├── examples │ ├── Makefile │ ├── ex_bitsets.f90 │ ├── ex_logger.f90 │ └── ex_sorting.f90 ├── fortran_logo_256x256.png ├── stdlib-talk.pdf └── stdlib-talk.tex ├── FortranCon2021-string └── README.md ├── FortranCon2021-vegetables ├── README.md ├── is_leap_year │ ├── .gitignore │ ├── README.md │ ├── fpm.toml │ ├── src │ │ └── is_leap_year_m.f90 │ └── test │ │ ├── bad_test.f90 │ │ ├── fancy_test.f90 │ │ ├── good_test.f90 │ │ ├── main.f90 │ │ └── ugly_test.f90 ├── presentation.odp └── presentation.pdf ├── PackagingCon2021-fpm ├── .gitignore ├── Figures │ ├── logo-brew.png │ ├── logo-conda-forge.pdf │ ├── logo-fortran.png │ ├── logo-msys2.png │ └── logo-spack.pdf ├── README.md ├── beamercolorthemeMCTC.sty ├── beamerouterthemeMCTC.sty └── main.tex ├── README.md └── deRSE23 ├── Discourse_screenshot.png ├── README.md ├── Simpsons.png ├── contrib.png ├── contributor_graph.png ├── deRSE23-community.tex ├── deRSE23.pdf ├── fortran_logo_256x256.png ├── fpm_diagram.pdf ├── lfortran_screenshot.png ├── nature_screenshot.png ├── punch-cards-hires.png ├── r-source_screenshot.png ├── scipy_screenshot.png ├── simpson_horizontal.png ├── vscode_fortran.png └── website_screenshot.png /FortranCon2020-community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/README.md -------------------------------------------------------------------------------- /FortranCon2020-community/assets/FortranCon-community-diagram.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/assets/FortranCon-community-diagram.odg -------------------------------------------------------------------------------- /FortranCon2020-community/assets/FortranCon-community-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/assets/FortranCon-community-diagram.svg -------------------------------------------------------------------------------- /FortranCon2020-community/assets/monthly-call-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/assets/monthly-call-screenshot.png -------------------------------------------------------------------------------- /FortranCon2020-community/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/reset.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/reveal.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/reveal.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/reveal.js -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/beige.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/black.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/blood.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/league.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/moon.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/night.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/serif.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/simple.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/sky.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/solarized.css -------------------------------------------------------------------------------- /FortranCon2020-community/dist/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/dist/theme/white.css -------------------------------------------------------------------------------- /FortranCon2020-community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/index.html -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/math/math.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/math/math.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/math/plugin.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/notes/notes.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/notes/plugin.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/search/plugin.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/search/search.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/search/search.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /FortranCon2020-community/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /FortranCon2020-community/slides/about-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/about-me.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/challenges.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/community.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/compilers.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/discourse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/discourse.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/fpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/fpm.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/motivation.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/outlook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/outlook.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/overview.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/pillars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/pillars.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/stdlib.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/takeaways.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/takeaways.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/thank-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/thank-you.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/title.md -------------------------------------------------------------------------------- /FortranCon2020-community/slides/website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-community/slides/website.md -------------------------------------------------------------------------------- /FortranCon2020-fpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-fpm/README.md -------------------------------------------------------------------------------- /FortranCon2020-fpm/fpm-presentation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-fpm/fpm-presentation.odp -------------------------------------------------------------------------------- /FortranCon2020-fpm/fpm-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-fpm/fpm-presentation.pdf -------------------------------------------------------------------------------- /FortranCon2020-stdlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-stdlib/README.md -------------------------------------------------------------------------------- /FortranCon2020-stdlib/apidocsstdlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-stdlib/apidocsstdlib.png -------------------------------------------------------------------------------- /FortranCon2020-stdlib/stdlib_talk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2020-stdlib/stdlib_talk.tex -------------------------------------------------------------------------------- /FortranCon2021-fpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/.gitignore -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/bootstrapping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/bootstrapping.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/bootstrapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/bootstrapping.svg -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/dependencies.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/dependencies.svg -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/features.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/features.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/features.svg -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/fpm-projects.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/fpm-projects.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/fpm-projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/fpm-projects.svg -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/get-fpm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/get-fpm.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/get-fpm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/get-fpm.svg -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/layout.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/layout.svg -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/logo-cpp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/logo-cpp.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/logo-fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/logo-fortran.png -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/logo-haskell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/logo-haskell.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/logo-python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/logo-python.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/Figures/logo-rust.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/Figures/logo-rust.pdf -------------------------------------------------------------------------------- /FortranCon2021-fpm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/LICENSE -------------------------------------------------------------------------------- /FortranCon2021-fpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/README.md -------------------------------------------------------------------------------- /FortranCon2021-fpm/beamercolorthemeMCTC.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/beamercolorthemeMCTC.sty -------------------------------------------------------------------------------- /FortranCon2021-fpm/beamerouterthemeMCTC.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/beamerouterthemeMCTC.sty -------------------------------------------------------------------------------- /FortranCon2021-fpm/data/fpm-projects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/data/fpm-projects.txt -------------------------------------------------------------------------------- /FortranCon2021-fpm/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/main.tex -------------------------------------------------------------------------------- /FortranCon2021-fpm/plot/fpm-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/plot/fpm-events.txt -------------------------------------------------------------------------------- /FortranCon2021-fpm/plot/fpm-projects.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/plot/fpm-projects.plt -------------------------------------------------------------------------------- /FortranCon2021-fpm/plot/fpm-projects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-fpm/plot/fpm-projects.txt -------------------------------------------------------------------------------- /FortranCon2021-gsoc-fpm-flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-gsoc-fpm-flags/README.md -------------------------------------------------------------------------------- /FortranCon2021-linked_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-linked_list/README.md -------------------------------------------------------------------------------- /FortranCon2021-state-of-fortran/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-state-of-fortran/README.md -------------------------------------------------------------------------------- /FortranCon2021-stdlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/README.md -------------------------------------------------------------------------------- /FortranCon2021-stdlib/contrib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/contrib.png -------------------------------------------------------------------------------- /FortranCon2021-stdlib/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/examples/Makefile -------------------------------------------------------------------------------- /FortranCon2021-stdlib/examples/ex_bitsets.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/examples/ex_bitsets.f90 -------------------------------------------------------------------------------- /FortranCon2021-stdlib/examples/ex_logger.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/examples/ex_logger.f90 -------------------------------------------------------------------------------- /FortranCon2021-stdlib/examples/ex_sorting.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/examples/ex_sorting.f90 -------------------------------------------------------------------------------- /FortranCon2021-stdlib/fortran_logo_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/fortran_logo_256x256.png -------------------------------------------------------------------------------- /FortranCon2021-stdlib/stdlib-talk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/stdlib-talk.pdf -------------------------------------------------------------------------------- /FortranCon2021-stdlib/stdlib-talk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-stdlib/stdlib-talk.tex -------------------------------------------------------------------------------- /FortranCon2021-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-string/README.md -------------------------------------------------------------------------------- /FortranCon2021-vegetables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/README.md -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/README.md -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/fpm.toml -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/src/is_leap_year_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/src/is_leap_year_m.f90 -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/test/bad_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/test/bad_test.f90 -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/test/fancy_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/test/fancy_test.f90 -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/test/good_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/test/good_test.f90 -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/test/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/test/main.f90 -------------------------------------------------------------------------------- /FortranCon2021-vegetables/is_leap_year/test/ugly_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/is_leap_year/test/ugly_test.f90 -------------------------------------------------------------------------------- /FortranCon2021-vegetables/presentation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/presentation.odp -------------------------------------------------------------------------------- /FortranCon2021-vegetables/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/FortranCon2021-vegetables/presentation.pdf -------------------------------------------------------------------------------- /PackagingCon2021-fpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/.gitignore -------------------------------------------------------------------------------- /PackagingCon2021-fpm/Figures/logo-brew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/Figures/logo-brew.png -------------------------------------------------------------------------------- /PackagingCon2021-fpm/Figures/logo-conda-forge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/Figures/logo-conda-forge.pdf -------------------------------------------------------------------------------- /PackagingCon2021-fpm/Figures/logo-fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/Figures/logo-fortran.png -------------------------------------------------------------------------------- /PackagingCon2021-fpm/Figures/logo-msys2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/Figures/logo-msys2.png -------------------------------------------------------------------------------- /PackagingCon2021-fpm/Figures/logo-spack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/Figures/logo-spack.pdf -------------------------------------------------------------------------------- /PackagingCon2021-fpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/README.md -------------------------------------------------------------------------------- /PackagingCon2021-fpm/beamercolorthemeMCTC.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/beamercolorthemeMCTC.sty -------------------------------------------------------------------------------- /PackagingCon2021-fpm/beamerouterthemeMCTC.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/beamerouterthemeMCTC.sty -------------------------------------------------------------------------------- /PackagingCon2021-fpm/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/PackagingCon2021-fpm/main.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/README.md -------------------------------------------------------------------------------- /deRSE23/Discourse_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/Discourse_screenshot.png -------------------------------------------------------------------------------- /deRSE23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/README.md -------------------------------------------------------------------------------- /deRSE23/Simpsons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/Simpsons.png -------------------------------------------------------------------------------- /deRSE23/contrib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/contrib.png -------------------------------------------------------------------------------- /deRSE23/contributor_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/contributor_graph.png -------------------------------------------------------------------------------- /deRSE23/deRSE23-community.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/deRSE23-community.tex -------------------------------------------------------------------------------- /deRSE23/deRSE23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/deRSE23.pdf -------------------------------------------------------------------------------- /deRSE23/fortran_logo_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/fortran_logo_256x256.png -------------------------------------------------------------------------------- /deRSE23/fpm_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/fpm_diagram.pdf -------------------------------------------------------------------------------- /deRSE23/lfortran_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/lfortran_screenshot.png -------------------------------------------------------------------------------- /deRSE23/nature_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/nature_screenshot.png -------------------------------------------------------------------------------- /deRSE23/punch-cards-hires.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/punch-cards-hires.png -------------------------------------------------------------------------------- /deRSE23/r-source_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/r-source_screenshot.png -------------------------------------------------------------------------------- /deRSE23/scipy_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/scipy_screenshot.png -------------------------------------------------------------------------------- /deRSE23/simpson_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/simpson_horizontal.png -------------------------------------------------------------------------------- /deRSE23/vscode_fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/vscode_fortran.png -------------------------------------------------------------------------------- /deRSE23/website_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-lang/talks/HEAD/deRSE23/website_screenshot.png --------------------------------------------------------------------------------