Skip to content

lguibr/luisguilher.me

Repository files navigation

luisguilher.me

An interactive, VS Code–powered portfolio. Built with systems thinking, physics-driven design, and stupidly high standards.

Live: https://luisguilher.me

This is not just a portfolio. It is a miniature IDE, wired with real state management, a virtual file system, code rendering, and an internal architecture designed like a production system.

You can explore my resume, open files, read code, view diagrams, inspect repositories, and even print a professional CV using Ctrl+P or the download button.


🧭 Quick Navigation


πŸ”₯ Core Idea

A portfolio that behaves like real software. Everything inside the site simulates how I think, how I design systems, and how I write code.


πŸ–₯️ Architecture (High-Level)

flowchart TD
    A["User visits luisguilher.me"] --> B["Next.js App Shell"]
    B --> C["IDE UI Layer"]
    C --> D["Tree of Files"]
    C --> E["Binary Tree of Views"]
    C --> F["Monaco Editor Instance"]
    F --> G["Markdown Renderer + Mermaid"]
    C --> H["Interactive Canvas Engine (p5.js)"]
    C --> I["Repositories Fetcher"]
    I --> J["GitHub API"]

    D <---> E
    E <---> F
Loading

Design Principles

  • Deterministic UIs
  • Stateful, reversible actions
  • Tree-based architectures (like real editors)
  • Zero magic β€” everything explicit

πŸ—‚οΈ Editor Internals

File Tree (Domain Data + Repo Fusion)

mindmap
  root((FileContext))
    Static Files
      CURRICULUM.md
      README.md
    Local App Code
      /src
      /components
      /reducers
    External Repos
      /repositories
        fetched from GitHub API
Loading

Binary Tree of Views

Your split-pane layout is stored as a binary tree, just like VS Code.

graph TD
    A[Root Pane]
    A --> B[Left Pane]
    A --> C[Right Pane]
    B --> D[file: CURRICULUM.md]
    C --> E[file: README.md]
    C --> F[file: src/pages/_app.tsx]
Loading

✨ Features

πŸ€– Embedded AI Agent

An integrated AI assistant (powered by Google Gemini) resides in the right sidebar. It has full context of this repository, meaning you can ask it to explain the codebase architecture, search for specific technologies I've used, or query my professional experience in real-time.

πŸ“„ Interactive Curriculum

My resume is a live markdown file (CURRICULUM.md). You can read it, edit it (in memory), and interact with it just like code.

πŸ–¨οΈ Print-Ready PDF

Need a copy? Click the Download PDF button in the sidebar or press Ctrl + P. The app generates a clean, ATS-friendly PDF of my curriculum, stripping away the UI and formatting it perfectly for recruiters.

🧩 VS Code–Inspired Interface

Everything feels familiar: explorer, tabs, editor, markdown preview, and diff viewer.

πŸ“ GitHub Repositories Browser

My public repositories appear as folders inside the app. You can browse the actual code of my projects without leaving the site.

πŸ” Global Text Search

Search through all open files and loaded repositories instantly.

🎨 Canvas Sketch Engine

p5.js-powered animations that react to your interactions, adding a layer of "physics" to the experience.

πŸŽ›οΈ Theme Toggle

Ctrl + Q switches between a sleek dark mode and a clean light mode.


πŸš€ Selected Projects

Multi-Room Pong/Breakout Hybrid A real-time multiplayer game combining Pong and Breakout. Built with a Go backend using a custom Actor Model library (Bollywood) for high concurrency and zero dependencies.

AlphaZero-style AI Agent An AI agent that learns to play a custom puzzle game using Reinforcement Learning, MCTS, and PyTorch. Features distributed self-play via Ray and asynchronous stats logging.

Pose Matching PWA An interactive app for practicing poses (dance, yoga, martial arts). Uses TensorFlow.js and BlazePose for real-time body tracking and scoring in the browser.

Create music from text. TonAI is a simple web app that lets you create and visualize music using a chat interface. Just describe what you want to hear, and it plays it for you. Built with React, Tailwind, Tone.js, and Google Gemini.


🚦 Local Development

git clone https://github.com/lguibr/luisguilher.me
cd luisguilher.me
yarn install
yarn dev

Visit http://localhost:3000.


⌨️ Shortcuts

  • Toggle theme β†’ Ctrl + Q
  • Print CV β†’ Ctrl + P
  • Restart tour β†’ Ctrl + Shift + 2
  • Flash loading animation β†’ Ctrl + Space
  • Toggle Markdown preview β†’ Double-click editor

🀝 Contributing

Open a PR. I care about code clarity and deterministic behavior.

yarn lint

πŸ“„ License

MIT β€” feel free to fork, remix, or learn from the architecture.

About

A portfolio built with systems thinking. Simulates an OS/IDE environment with a custom virtual file system, Monaco Editor integration, and stateful window layouts. Browsable, interactive, and built with Next.js.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors