DEV Community

Cover image for How I used VS Code for my talk instead of Keynote or Powerpoint

How I used VS Code for my talk instead of Keynote or Powerpoint

Nicolas Carlo on November 18, 2019

This article was originally written on my personal blog. I am republishing it here for the DEV community. Last week, I spoke at Bulgaria PHP 201...
Collapse
 
aaronpowell profile image
Aaron Powell

Nice!

I'll do a shameless plug for an extension I wrote, Profile Switcher, which can be useful to pre-configure the VS Code environment and flick to it without having to remember all the settings to tweak πŸ˜‰

Collapse
 
tommygeorge profile image
tommy george

This looks very cool! Much more in depth than my meager attempt at a settings toggler! πŸ˜†

Collapse
 
noclat profile image
Nicolas Torres

Also seen someone use git commits instead of live coding recording. It clearly shows the step by step diffs, and avoid live writing. Just put small diffs per commits, add incremental tags, and then checkout the target tag whenever you need to move forward. Really efficient, yet really basic.

Collapse
 
tamouse profile image
Tamara Temple • Edited

this is especially great for tutorials and code-a-longs, so you help ppl get back on the same page quickly

Collapse
 
leongwaikay profile image
Wai Kay

Great! Now someone will write a PowerPoint extension for VSC to open and display PowerPoint slides on a tab. 😁

Collapse
 
nicoespeon profile image
Nicolas Carlo

😁 It's just a matter of time.

Collapse
 
drazisil profile image
Molly Crendraven

Awesome post!

Slightly off-topic, is your presentation online anywhere? Hexagonal Architecture sounds like something I'd be interested in.

Collapse
 
nicoespeon profile image
Nicolas Carlo

Thanks!
It was recorded but it's not yet published. I'll let you know when it is πŸ˜‰

Collapse
 
drmaquino profile image
Mariano Aquino

can you let Me know as well? or how can we check for it? i'd like to see what it looks like in action! thanks!

Thread Thread
 
nicoespeon profile image
Nicolas Carlo

I guess twitter.com/bgphpconf will tweet about it when recording are released.
I will come back and reply to the comment when IΒ got the link. I'll ping you too ;-)

Thread Thread
 
drmaquino profile image
Mariano Aquino

thank you very much! keep on doing this! :)

Collapse
 
tommygeorge profile image
tommy george

This is such a great walkthrough of all the thinking behind your decisions. Love it!

I have done similar things, and developed an Extension for VS Code specifically to toggle in and out of "presentation mode": marketplace.visualstudio.com/items...

It's a bit niche, but you can drop an entire custom config in those settings, and it will allow you to toggle between your current settings, and whatever you define.

The README isn't fancy, but improvements are welcome on the github link! πŸ˜† 😊

--

I really like the idea of "macros" for live coding, and I agree with your philosophy: It's about showing the code being written, in context, and running. Regardless of typing speed or accuracy (or lack thereof!). πŸ‘πŸ½

Collapse
 
deathshadow60 profile image
deathshadow60

Funny, I just write mine with HTML and CSS... which is even more "powerful" thanks to CSS3 and new triggers like :target

Just put each slide in a div, give it a id, and href="#id" to it. Set all those sibling div to be positioned off-screen, and when they div:target slide them into view. Easy-peasy lemon-squeezy.

Collapse
 
ayunas profile image
Amir Yunas

I think this is an amazing extension you built. I really enjoyed the blog post as well. I was playing with the extension, and I noticed when you enter presentation mode, it preloads a set of files from your project. How do you choose the files you want to present?

Collapse
 
nicoespeon profile image
Nicolas Carlo

Thanks for giving it a try!

For the moment, it opens all the files that are located at the root of the current workspace, by convention. Folders will be ignored. That's the convention I'm using for my slides.

There is no way to configure where the slides are located yet. But that's a feature I'd consider implementing. If you want, please open an issue to detail how you'd like the extension to behave, so we can discuss πŸ™‚

Collapse
 
sauravmanoj profile image
Saurav

why not latex?

Collapse
 
nicoespeon profile image
Nicolas Carlo

Do you mean "instead of Markdown"? Otherwise, I don't understand the question.

Why in LaTeX? 😁

Collapse
 
tamouse profile image
Tamara Temple

This is great, after I read KCD's article I've been wanting to try this method as well. I haven't been giving enough talks, lately.

Collapse
 
dvddpl profile image
Davide de Paolis

awesome awesome awesome post! thanx for sharing.

Collapse
 
abhinav1217 profile image
Abhinav Kulshreshtha

I never did talks but I do volunteer to teach codes a lot. And this sir is going to be a life saver...

Collapse
 
gualtierofr profile image
Gualtiero Frigerio • Edited

A few years ago I watched a presentation about Angular made with... Angular. I thought it was great and I like your idea too!

Collapse
 
schwitzd profile image
Schwitzd

How vscode can show image? is the md preview?

Collapse
 
nicoespeon profile image
Nicolas Carlo

When you open an image in VS Code, it will show you the rendered image by default.

Collapse
 
devmartinezpr profile image
Edwin Martinez

Who is the author of the Github Clean White theme?

Collapse
 
nicoespeon profile image
Nicolas Carlo

Here's the theme: marketplace.visualstudio.com/items...

The author is called saviorisdead

Collapse
 
jimpriest profile image
Jim Priest

Great idea! What did you use for Markdown preview?

Collapse
 
nicoespeon profile image
Nicolas Carlo

Thanks!

For the Markdown content, I just show the raw file. With the editor theme, it was good enough.

However, VS Code default Markdown Preview would also do the job (⌘ ↑ V / Ctrl ↑ V to open as a tab).