PowerShell
A PowerShell module for awesome on-stage terminal demos!This module makes it possible to type out a command in the terminal, character by character, by pressing any button. The perfect tool for people showing code on stage, in a classroom, or a workshop.
Install:
Run the PowerShell command "Install-Module StageCoder -Scope CurrentUser"Commands
Set-Demo
Set-Demo [[-Demo] <String[]>] [[-Chord] <String>] [[-MinPause] <Int32>] [[-MaxPause] <Int32>]
[[-Timing] <String>] [<CommonParameters>]
Set a list of commands to be executed as part of a demo. Also lets you set the timing of the demo.
Example:
Set-Demo -Demo 'Import-Module -Name StageCoder', 'Get-Command -Module StageCoder',
'Get-Help -Command Set-Demo' -Timing Instant -Chord 'Ctrl+Shift+D'
Set the demo to run three commands with instant timing and the chord Ctrl+Shift+D. Use the chord to start next command.
Reset-Demo
Reset-Demo [[-Index] <Int32>] [<CommonParameters>]
Reset the demo to the first command. If an index is specified, the demo will be reset to that command.
Example:
Reset-Demo -Index 4
Reset demo index to 4