For further actions, you may consider blocking this person and/or reporting abuse
Read next
What is the ideal workflow between backend and frontend teams when you have short deadlines?
Luca Argentieri -
Best Websites to Find Remote Jobs in 2025
Jasmeet Singh -
Why Does JavaScript’s parseInt(0.0000005) Print “5”? 🤔
Jagroop Singh -
How do you choose a component library for your project?
Rasheed K Mozaffar -
Top comments (6)
also recently found this: carbon.now.sh/
Paste some code in and it syntax highlights it and fakes a terminal window for screenshots.
I usually do code examples in separate editor, e.g. IntelliJ IDEA supports presentation mode, where the editor window is maximized and has large font.
This is also more interactive and immersive, you can change the code snippet or directly run it.
If I want to show some code in the slides, I usually do a screenshot from editor :). It's definitely easier than pasting and formatting the code in presentation software.
Yeah I was thinking of screenshots too but didn't know if there were any caveats. Thank you!
I Copy/Paste as RTF from my editor. Most editors have features and/or plugins to allow content to be copied in the Rich Text Format which retains most of your formatting, including syntax highlighting.
Here are a few plugins for some popular editors:
I've used this quite effectively in my slides. You can refer this talk for example.
thank you! Will take a look!
At university I did most of my slides with LaTeX beamer, nowadays I prefer to use reveal.js - both come with a plugin for syntax highlighting, so i basically copy and paste the code into the slide deck and let the framework do its magic.