{"id":19665591,"url":"https://github.com/fatiando/birs2023-introduction","last_synced_at":"2026-06-11T12:31:41.322Z","repository":{"id":184425906,"uuid":"669048327","full_name":"fatiando/birs2023-introduction","owner":"fatiando","description":"Slides for a short talk about the Fatiando project for our BIRS 2023 workshop","archived":false,"fork":false,"pushed_at":"2023-07-30T10:12:29.000Z","size":19102,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-22T12:21:58.632Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.fatiando.org/birs2023-introduction/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fatiando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-21T08:11:50.000Z","updated_at":"2023-07-28T05:46:53.000Z","dependencies_parsed_at":"2024-11-11T16:34:36.229Z","dependency_job_id":null,"html_url":"https://github.com/fatiando/birs2023-introduction","commit_stats":null,"previous_names":["fatiando/birs2023-introduction"],"tags_count":0,"template":false,"template_full_name":"leouieda/talk-template","purl":"pkg:github/fatiando/birs2023-introduction","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiando%2Fbirs2023-introduction","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiando%2Fbirs2023-introduction/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiando%2Fbirs2023-introduction/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiando%2Fbirs2023-introduction/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fatiando","download_url":"https://codeload.github.com/fatiando/birs2023-introduction/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiando%2Fbirs2023-introduction/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34199516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T16:23:34.538Z","updated_at":"2026-06-11T12:31:41.287Z","avatar_url":"https://github.com/fatiando.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Fatiando a Terra project | BIRS 2023\n\nThis is a short presentation about the history of the Fatiando project\nfor our [BIRS 2023 workshop](https://birs-2023.softwareunderground.org/)\nwith the [SimPEG](https://simpeg.xyz/) community.\n\nYouTube recording of the talk: https://www.youtube.com/watch?v=hC2Ukdceyck\n\n\u003e Created from the reveal.js talk template:\n\u003e https://github.com/leouieda/talk-template\n\n## What's included\n\n`index.html`: This is the master document that sets up reveal.js and\nits plugins and loads the slide content from `slides.md`.\n**Change the HTML `\u003ctitle\u003e` tag here**.\n\n`slides.md`: Markdown file with the actual slide content. The template\nincludes some slides that demo the custom CSS classes available.\n**Add your content here.**\n\n`css/style.less`: Custom styling and CSS classes (using\n[Less](http://lesscss.org/)). Edit to tweak colours, sizes, fonts,\nspacing, etc.\n\n`assets`: Images used in the presentation. You can probably delete all\nof these when making your slides. Replace the `favicon.png` with a\n32 x 32 px image to customize the icon (this is set in `index.html`).\n\n`fonts`: Sources for the fonts used:\n[FontAwesome](https://fontawesome.com/),\n[Atkinson Hyperlegible](https://brailleinstitute.org/freefont),\n[Ubuntu Mono](https://design.ubuntu.com/font/).\nIncluded in the repository for offline access. You could remove them and\ninclude fonts from a CDN (like Google Fonts) in `index.html`.\n\n`packages`: \"Vendored\" versions of reveal.js, Less, and\n[KaTeX](https://katex.org/) (for maths) that are used.\nHaving them in the repository is important for using the slides offline\n(on a plane or lecture room without easy internet access).\n\n`serve.py`: Python script that serves the slides and reloads them\nwhenever the source files change. Very handy for development.\nSee below for instructions.\n\n## Serving the slides locally\n\nUnfortunately, you can't just open the `index.html` file on browser\nto view your slides.\nReveal.js requires an actual local server.\nYou can set one up however you'd like.\nBelow, I provide instructions for doing so in Python (which is what\nI use most of the time) but it would work with any other local\nserver.\n\nFirst, install the [livereload](https://github.com/lepture/python-livereload)\nPython package:\n\n```\npip install livereload\n```\n\nor\n\n```\nconda install livereload -c conda-forge\n```\n\nThen, start a server at http://localhost:8008 by running:\n\n```\npython serve.py\n```\n\nThe slides will open on your default browser and will automatically reload\nwhen you update any of the files in the repository.\n\n## Serving on GitHub Pages\n\nGo to your repository \"Settings \u003e Pages\" and select \"Source\" as the\n`main` branch and `/ (root)`. You probably want to select \"Enforce HTTPS\"\nas well.\n\nYour slides should now be served at https://USERNAME.github.io/REPOSITORY\nor equivalent if you're using a custom domain.\nIt may take a little while for this to happen.\n\n## Exporting to PDF\n\nYou can save your slides to PDF for a backup or to distribute\n(I find students like this because they can annotate the PDF).\nTo do so, add `?print-pdf` to the end of the URL (either local\nserver or hosted) and then print the page to PDF.\n\nThis **works best on Chrome/Chromium**. The slides tend to be\ndistorted on Firefox for some reason.\n\n**WARNING:** Videos and gifs don't work on PDFs.\n\n## License\n\nThe template (`slides.md`, `index.html`, and `css/style.less`) is licensed under a\n\u003ca href=\"https://creativecommons.org/licenses/by/4.0/\"\u003eCreative Commons\nAttribution 4.0 International License\u003c/a\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatiando%2Fbirs2023-introduction","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffatiando%2Fbirs2023-introduction","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatiando%2Fbirs2023-introduction/lists"}