Welcome to my interactive terminal! This is a Unix-like command-line interface where you can explore my work and read my blog.
help - Show this help messagehelp <command> - Show detailed help for a specific commandman - Display manual pages for commands<command> --help - Show detailed help for any commandExample: help ls or ls --help
about - Learn about my background and expertiseportfolio - View my projects and accomplishmentsblog - Read my blog posts and articlesnotes - Short-form notes and thoughtscontact - Get in touch with mechangelog - View project version historyls - List directory contentscd - Change directorypwd - Print working directorycat - Display file contentstree - Show directory structuremkdir - Create directoriesrm - Remove files or directoriesrmdir - Remove empty directoriesrender - Render markdown filesecho - Display textdate - Show current date/timeclear - Clear the screenhistory - Show command historyalias - Create command shortcutswhoami - Display current userwhich - Show path of commandsfiglet - ASCII art text bannerslolcat - Rainbow-colorize text outputddate - Discordian calendar datematrix - Matrix digital rain animationlife - Conway's Game of Lifeboot - Simulated Linux boot sequenceshutdown - Simulated Linux shutdownreboot - Full reboot animationbsod - Fake Windows Blue Screen of DeathTry these commands to explore:
about # Learn about me
portfolio # See my work
blog # Read my posts
notes # Short-form thoughts
tree # Explore the file structure
ls ~ # List home directory
Command Piping: Chain commands with |
cat ~/blog/post.md | render
echo "Hello" | figlet
figlet "Hi" | lolcat
Navigation: Use arrow keys for command history, Tab for auto-complete
Aliases: Create shortcuts with alias ll='ls -la'
Tip: For detailed help on any command, use <command> --help or help <command>