diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2017-10-18 22:14:05 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 22:14:05 +0530 |
commit | b4fe18dac8567424d2cc663c8dee6e3256b25bef (patch) | |
tree | f1c9f94631933974fc2dba811ec0d963e41a1d30 /js | |
parent | b18c2b68172203c6783ace8b8acac8bb81931d16 (diff) |
Update index.js
Diffstat (limited to 'js')
-rw-r--r-- | js/index.js | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/js/index.js b/js/index.js index f969073..0e838c0 100644 --- a/js/index.js +++ b/js/index.js @@ -144,4 +144,17 @@ TE.wait(1000, false) .then( TE.enterResponse.bind(TE, 'finalizing...') ) .then( TE.wait.bind(TE, 2000) ) .then( TE.enterResponse.bind(TE, 'I am a self-proclaimed geek. My powers? Am good at parsing jq, awesome in bash and the best, I make terrible decisions and can not keep my mouth shut. I know Bash, Python, C++, C#, HTML, CSS and am on the verge of learning Kotlin.') ) - .then( TE.reset.bind(TE) ); +.then( TE.wait.bind(TE, 2000) ) +.then( TE.enterInput.bind(TE, 'cat bash_programs.txt') ) + .then( TE.enterCommand.bind( TE ) ) + .then( TE.enterResponse.bind(TE, 'The Bash Programs I am Prous of :') ) + .then( TE.wait.bind(TE, 2000) ) + .then( TE.enterResponse.bind(TE, '- Get Your Grub Back (Grub Repair)') ) + .then( TE.wait.bind(TE, 600) ) + .then( TE.enterResponse.bind(TE, '- John Doe (Identity Generator) ') ) + .then( TE.wait.bind(TE, 600) ) + .then( TE.enterResponse.bind(TE, '- Cruncher (A slow way to kill a pc) ') ) +.then( TE.wait.bind(TE, 600) ) + .then( TE.enterResponse.bind(TE, '- Meme-Me (A CLI for generating memes) ') ) + +.then( TE.reset.bind(TE) ); |