Level Up Your Presentations: Slidev & Demo Time in VS Code

Ever since I created the Visual Studio Code - Demo Time extension, I have been experimenting with ways of taking full advantage of presenting my slides and demos more interactively. A couple of weeks ago at Cloud Summit, I did a presentation about GitHub Actions and scripted my whole slide and demo flow with the help of the Slidev and the Demo Time extension.

Show image Presenting from Visual Studio Code
Presenting from Visual Studio Code

In this article, I explain how I am using Slidev and the Demo Time extension to present and perform live coding without the stress of demo gods.

The slides

As mentioned, I used Slidev for my slides. The advantage is that you can write your slides in Markdown and publish those as a static website. The website makes it easy to share your slides with others and show them straight from Visual Studio Code. An advantage of this is that you can easily switch between your slides and demos, and you do not have to context switch between different applications. It keeps you audience focused on the content you are presenting.

For example, my slides are available at https://slides.elio.dev/20240515-cloudsummit/.

To show these in Visual Studio Code, you can use the Simple Browser capability (available from the command palette - ID: simpleBrowser.show). When you first execute the command, it will ask you to provide the website URL you want to show.

Show image Opening the slides in Visual Studio Code
Opening the slides in Visual Studio Code

With Demo Time, we can script the opening of the slides by using the executeVSCodeCommand action in combination with the simpleBrowser.show command.

The demos

I love live coding but also want to avoid mistakes, so I use the Demo Time extension. This extension allows you to script and execute your demos step by step.

Typically, I create the demo first and then script the steps I want to show. For example, in the GitHub Actions, its first demo was to create a new workflow file. The steps I scripted were:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "$schema": "https://elio.dev/demo-time.schema.json",
  "title": "1. Crafting",
  "description": "",
  "demos": [
    {
      "title": "1. Craft a GitHub Actions workflow",
      "steps": [
        {
          "action": "create",
          "path": "/.github/workflows/main.yml",
          "contentPath": "./crafting/step1.yml"
        },
        {
          "action": "open",
          "path": "/.github/workflows/main.yml"
        }
      ]
    }
  ]
}

In the above example, a new /.github/workflows/main.yml workflow file is created with the content from the ./crafting/step1.yml file. The file is then opened in the editor.

Show image First demo: create workflow file and open it
First demo: create workflow file and open it

The extension allows you to run various types of actions like:

  • Creating a file
  • Opening a file
  • Highlighting code
  • Inserting code
  • Executing VS Code commands
  • Running terminal commands
  • etc.

The combination

The combination of Slidev and the Demo Time extension is powerful. You can script your whole presentation and demos in Visual Studio Code. This way, you can easily switch between your slides and demos without any hassle.

To start the presentation, I created a step that opens the slide and closes the sidebar and the panel.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "$schema": "https://elio.dev/demo-time.schema.json",
  "title": "0. Defaults",
  "description": "",
  "demos": [
    {
      "title": "๐Ÿ› Open slides",
      "steps": [
        {
          "action": "executeVSCodeCommand",
          "command": "simpleBrowser.show",
          "args": "{SLIDES_URL}"
        }, {
          "action": "executeVSCodeCommand",
          "command": "workbench.action.closeSidebar"
        }, {
          "action": "executeVSCodeCommand",
          "command": "workbench.action.closePanel"
        }
      ]
    }
  ]
}

You can follow the steps from the Demo Time panel and execute them one by one. This way, you can focus on the content you are presenting rather than the steps you must take.

Show image Demo time panel and its steps
Demo time panel and its steps
tip

It makes it easier when you split up your whole presentation into multiple sections where, at the start, you can use a base template for the demo. You always have a new starting point if something goes wrong without running all the steps again.

info

The example can be found here: GitHub Actions Presentation

Conclusion

The combination of Slidev and the Demo Time extension is powerful. It allows you to script your presentation and demos in Visual Studio Code. This way, you can easily switch between your slides and demos without any hassle. It keeps you focused on the content you are presenting, not the steps you need to take.

This article encourages you to try out this combination for your next presentation. If you have any questions or need help, feel free to contact me.

Comments

Back to top