Live data from Hacker News

Ask HN: Tools for Code Typing Simulation?

news.ycombinator.com

1–9 of 9 posts

Ask HN: Tools for Code Typing Simulation?

#1
I'm looking for a tool that could mimic Code Typing but do it smoothly. I need it for recording tutorials but I don't want to record myself typing the code as that is not always smooth and is time consuming.

Something like TypeIt[0] but with Code Highlighting.

This is what I'm talking about: https://youtu.be/U4ogK0MIzqk?t=9

[0] https://github.com/alexmacarthur/typeit

Re: Ask HN: Tools for Code Typing Simulation?

#7
post #2

If you want a chrome extension you could try Automa (use the Forms block) If you want a standalone you could try Autohotkey (Send, Sendraw, Sendinput)

Found a VS Code extension that does what I need. Auto typing the code https://marketplace.visualstudio.com/items?itemName=eeecompu...

Re: Ask HN: Tools for Code Typing Simulation?

#8
There is https://github.com/hofstadter-io/self-driving-desktop that enables you to "drive" the mouse and keyboard across applications. I originally built this for automating recordings. It even has a recording feature itself, so you can go through the demo by hand and then cleanup the steps afterwards.

Re: Ask HN: Tools for Code Typing Simulation?

#9
post #8

There is https://github.com/hofstadter-io/self-driving-desktop that enables you to "drive" the mouse and keyboard across applications. I originally built this for automating recordings. It even has a recording feature itself, so you can go through the demo by hand and then cleanup the steps afterwards.

Thank you for sharing, Tony!