A high-tech, cyberpunk-themed CLI resume with stunning visual effects and animations running directly in your terminal. This interactive resume presents professional information with a futuristic cyberpunk aesthetic, complete with matrix effects, glitch animations, and an immersive interface.
- Quick Start
- Features
- Installation
- Usage
- Project Structure
- Customization
- Terminal Compatibility
- Performance Tips
- Troubleshooting
- Technical Implementation
- Contributing
- FAQ
- Changelog
- Requirements
- Credits
- License
# Run via npx (no installation required)
npx ashish-bagdane
# For faster animations
npx ashish-bagdane --fast
# For low-resource environments
npx ashish-bagdane --minimal- ⚡ Matrix-style rain animation intro
- 💻 Animated ASCII name display
- 🔷 Typewriter text effects
- 🌈 Gradient color schemes and custom Unicode characters
- 🖼️ Perfectly centered boxes with cyberpunk borders
- 🎭 Glitch text effects
- 🚀 Dynamic loading animations
- ⏱️ Multiple speed modes (normal, fast, minimal)
- 📱 Responsive to terminal size
The easiest way to view this resume is by using npx:
npx ashish-bagdanenpm install -g ashish-bagdaneThen run:
ashish-bagdane# Clone the repository
git clone https://github.com/ashish-bagdane/cli-resume.git
# Navigate to the project directory
cd cli-resume
# Install dependencies
npm install
# Run the resume
npm start# Run with normal animations
ashish-bagdane
# Run with faster animations
ashish-bagdane --fast
# Run with minimal animations (for low-resource environments)
ashish-bagdane --minimal
# Skip the matrix rain animation
ashish-bagdane --noMatrix
# Run in development mode with debug information
ashish-bagdane --devWhile the resume is running:
- Press any key to exit at the end
Ctrl+Cto exit at any time
The project is organized into modular components for better maintainability:
cyberpunk-resume/
├── bin/
│ └── cli.js # CLI entry point
├── src/
│ ├── config/
│ │ ├── theme.js # Colors, icons, borders
│ │ └── resumeData.js # Resume data
│ ├── utils/
│ │ └── helpers.js # Utility functions
│ ├── animations/
│ │ ├── index.js # Exports all animations
│ │ ├── boot.js # Boot sequence animations
│ │ ├── matrix.js # Matrix rain effect
│ │ ├── text.js # Text animations (typewriter, glitch)
│ │ └── box.js # Box animations
│ ├── components/
│ │ ├── index.js # Exports all components
│ │ ├── header.js # Header/name display
│ │ ├── contact.js # Contact information
│ │ ├── profile.js # Profile summary
│ │ ├── skills.js # Technical skills
│ │ ├── experience.js # Work experience
│ │ ├── education.js # Education
│ │ └── footer.js # Footer component
│ └── app.js # Main application logic
├── package.json
└── README.md
- Fork this repository
- Update
src/config/resumeData.jswith your personal information - Modify the theme in
src/config/theme.jsto change colors, icons, or borders - Customize animations or components as needed
- Update the package.json with your information
- Publish to npm (optional)
// src/config/theme.js
export const colors = {
electricBlue: "#0ff0fc", // Change to your preferred blue
neonPink: "#ff2a6d", // Change to your preferred pink
neonPurple: "#d300c5", // Change to your preferred purple
matteBlack: "#121212", // Change background color
cyborgGreen: "#05ffa1", // Change to your preferred green
// Add more colors as needed
};// src/config/resumeData.js
export const resumeData = {
name: "YOUR NAME",
title: "Your Title | Your Position | Your Specialty",
location: "Your Location",
contact: {
linkedin: "www.linkedin.com/in/yourprofile",
portfolio: "yourwebsite.com",
},
// Add more sections as needed
};// src/config/theme.js
export const icons = {
contact: "✧", // Change to preferred icon
email: "✉", // Change to preferred icon
phone: "☏", // Change to preferred icon
web: "⌘", // Change to preferred icon
linkedin: "⚯", // Change to preferred icon
// Add more icons as needed
};For the best experience, use one of these terminals:
| Terminal | OS | Notes |
|---|---|---|
| iTerm2 | macOS | Best overall experience, true color support |
| Windows Terminal | Windows | Excellent for Windows users, true color support |
| Hyper | Cross-platform | Great compatibility, customizable |
| Gnome Terminal | Linux | Good support for animations |
| Konsole | Linux | Good compatibility |
| Terminal.app | macOS | Basic support, limited colors |
| VS Code Integrated Terminal | Cross-platform | Good compatibility |
Note: For optimal viewing, use a terminal that supports ANSI color codes and Unicode characters.
-
For lower-end machines, use the
--minimalflag to reduce animations:ashish-bagdane --minimal
-
For slightly faster performance without losing all animations, use:
ashish-bagdane --fast
-
Skip the matrix animation if it runs too slowly:
ashish-bagdane --noMatrix
-
Terminal size matters: Performance may vary in very large or very small terminals.
-
Running in VS Code: Terminal performance in VS Code can be slower - consider using a native terminal app instead.
| Issue | Solution |
|---|---|
| Box alignment issues | Try adjusting your terminal window size or font |
| Garbled text or missing characters | Ensure your terminal supports Unicode and ANSI colors |
| Slow performance | Use --fast or --minimal mode |
| Animation glitches | Some terminals may not fully support all animations - try another terminal |
| Black/blank screen | Press Ctrl+C and try running with --minimal flag |
If you're experiencing issues, run in debug mode to get more information:
ashish-bagdane --devThis project uses:
- chalk: Terminal string styling
- boxen: Create boxes in the terminal
- figlet: ASCII art from text
- gradient-string: Create color gradients in the terminal
- ora: Elegant terminal spinners
- cli-spinners: Collection of spinners for terminal
- term-size: Reliably get terminal size
- commander: Command-line interface
- Typewriter effect: Character-by-character text reveal
- Box animations: Line-by-line rendering of centered boxes
- Matrix rain: Custom terminal position-based animation
- Section fade-in: Spinner-based section introduction
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add some amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a pull request
# Clone your fork
git clone https://github.com/YOUR_USERNAME/cli-resume.git
# Install dependencies
npm install
# Run in development mode
npm run devPlease see CONTRIBUTING.md for more details.
Yes! Fork the repository, update the resume data, and make it your own.
First, create an npm account, then:
# Update package.json with your details
# Then login to npm
npm login
# Publish your package
npm publishYes, though some animations may display differently. Use Windows Terminal for best results.
Yes, you'll need to:
- Update
resumeData.jswith new sections - Create new component files in
src/components/ - Update
app.jsto include your new components
The ASCII name is generated using Figlet. Change the font in header.js by modifying the font parameter in the typewriterName function. See Figlet fonts for options.
- Initial release
- Matrix animation and cyberpunk theme
- Full resume display with animations
- Pre-release with core functionality
- Basic animations and styling
- Node.js ≥ 18
- Terminal with ANSI color support
- Monospaced font for best display
- Created by Ashish Bagdane
- Inspired by cyberpunk aesthetics and terminal art
- Special thanks to all open-source libraries used in this project
MIT License - see LICENSE file for details.
