$ cd ..

Documentation

The who, what, when, where, why

$ ssh portfolio@keshavanand.net

# What is it?

When executed in your terminal, this command renders a fully interactive shell portfolio experience. Much like a digital resume or personal site, it allows you to explore my work and background through a safe, secure, and purely text-based interface. It is completely harmless to your system.

# Command Breakdown

ssh
Secure Shell: The standard terminal protocol for logging into and controlling remote computers safely.
portfolio
User: A passwordless, restricted user on my homeserver meant for public access.
keshavanand.net
Domain: Points to a web record that directs your request to my server's public IP (gateway).

# How to Run

  1. 01 Copy the command above using the clipboard tool.
  2. 02 Open your native terminal (Terminal on Mac/Linux, PowerShell on Windows).
  3. 03 Paste the command and accept the host identity by typing 'yes' if prompted.
  4. 04 Press Enter to launch the interactive environment.
  5. 05 Terminate the process at any time by pressing Ctrl+C.

# Code Logic

This command gives authenticated access to the 'portfolio' user account on my private home server.

Instead of a standard bash or zsh shell, the user session triggers a custom-coded C++ executable. This binary utilizes FTXUI—a sophisticated functional terminal user interface library—to handle real-time rendering and input.

# Resources

// using vibe code to present human code