💻 A futuristic boot sequence generator written in Python — perfect for intros, resumes, or terminal-style animations.
MATRIX-BOOT-ME is a lightweight Python script that generates a terminal-inspired animated GIF, simulating a neural system startup and shutdown.
It features personalized identity, tech stack, and contact information — all typed out character by character in a retro-futuristic terminal aesthetic.
Install the required packages with:
pip install matplotlib pillowor
pip install -r requirements.txtRun the script:
python main.pyThe generated animation will be saved as:
output.gifYou can easily configure the following in main.py:
Modify the BOOT_LINES, CONTINUE_LINES, DISENGAGE_LINE, and SHUTDOWN_LINES constants to customize the startup and shutdown sequences.
Edit the MAIN_INFO constant to include your name, title, links, contact details, or anything else you’d like to type out character by character.
Customize the animation blocks by changing:
ENCRYPT_BASE,SCRAMBLE_BASE(messages shown)- Block count in
render_block_animation()calls
Control the animation pacing using constants:
TYPING_SPEEDENCRYPT_SPEEDSCRAMBLE_SPEEDSHUTDOWN_SPEEDFINAL_HOLD_DURATION
💡 Smaller speed values result in faster animation.
Modify visual output using:
FONT_COLOR,BG_COLOR,FONT_SIZE,FONT_FAMILY- Output size:
IMAGE_WIDTH,IMAGE_HEIGHT - Max visible lines:
MAX_VISIBLE_LINES - Typing cursor character (inside
render_typing_animation)
Set the output path using GIF_PATH.
Temporary frame images are cleaned up automatically — comment out the shutil.rmtree() line to keep them.
