ines / course-starter-python

👩‍🏫🐍 Starter repo for building interactive Python courses
https://course-starter-python.netlify.com
MIT License
504 stars 118 forks source link

Presenting #15

Open nixder opened 5 years ago

nixder commented 5 years ago

Hi @ines

So in chrome you can install the App which seems to work fine. Is it possible to hide notes for an audience if I am presenting (using HDMI) on a Mac?

ines commented 5 years ago

The relevant setting that enables the speaker notes is here:

https://github.com/ines/course-starter-python/blob/57d8b1ac80caddcdb921e6794b4f6666344cc48e/src/components/slides.js#L34

You could either edit this manually, or make it a global setting that is passed to the component. Or you could read it from the URL's query params – so if you access the course with ?presentation, showNotes is false, otherwise it defaults to true. I haven't tested it yet, but it should work.

nixder commented 5 years ago

Ah yeah. I will look into it but I was looking for something where my laptop showed the notes while the presenter screen didn't. But I'm not sure if that's easy at this point?