1. Squeenote

    A way for nerds to present to other nerds

    http://github.com/danski/squeenote

  2. For audiences like this.

  3. Presenter Follow

    Squeenote keeps everyone's view on the presentation in sync.

    If you're in the audience, you can browse the presentation as you please and rejoin the presenter whenever you like. It works using HTML5 websockets and the souls of the damned.

  4. Presentation == a web page.

    A Squeenote presentation is just an ordered list. Each item in the list is a slide.

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <title>My presentation</title>
      ...
    </head>
    <body>
      <ol>
        <li>
          Slide 1
        </li>
        <li>
          Slide 2
        </li>
      </ol>
    </body>
    </html>
  5. Modular == Themeable

  6. Modular == Hackable

  7. Designed for microdeployment

  8. Designed for archival

  9. Open-source soup

  10. You will ask questions now.