Skip to content

Commit

Permalink
feat: added blog command
Browse files Browse the repository at this point in the history
  • Loading branch information
0xste authored Oct 3, 2024
1 parent 793eada commit b9149f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@

const commands = {
'help': 'Available commands: \nhelp - Show available commands\nclear - clear the terminal screen\nabout - Information about the author\nlinkedin - Open LinkedIn\n' +
'github - Open GitHub\nls – list directory contents\ncat – concatenate and print files\nrm – remove directory entries',
'github - Open GitHub\nblog - Open Blog\nls – list directory contents\ncat – concatenate and print files\nrm – remove directory entries',
'about': 'Seasoned engineering leader with a proven track record of architecting and scaling global, distributed systems that power mission-critical platforms. Adept at crafting data-driven technical strategy, leading cross-functional teams, and fostering a culture of innovation to provide highly available, resilient solutions at scale for global technology platforms.',
'linkedin': () => {
window.open("https://www.linkedin.com/in/stefanomantini", "_blank");
Expand All @@ -147,6 +147,10 @@
window.open("https://github.com/0xste", "_blank");
return 'Opening GitHub...';
},
'blog': () => {
window.open("https://0xste.github.io", "_blank");
return 'Opening Blog...';
},
'ls': () => {
return generateFileList();
},
Expand Down

0 comments on commit b9149f4

Please sign in to comment.