Skip to content

swcarpentry/slideshows

Repository files navigation

Software Carpentry Slideshows

To navigate slideshows, use arrow keys ( or ).

Ideas

Tutorials

Visualizing Presentations Locally

If you get a popup message mentioning that the timing file could not be loaded, the problem may be your browser refusing to dynamically load files (such as the timing file) from the local filesystem. The solution is to start a webserver and access the presentation through it:

  1. Go to the root of the repository.
  2. Run python -m SimpleHTTPServer 7777 (or with Python 3: python3 -m http.server 7777).
  3. View the presentations at http://localhost:7777.

Alternatively, if you are using Google Chrome, start it with chrome --disable-web-security. Warning: for security reasons, you should not navigate the open web with this option enabled.