|
215 | 215 |
|
216 | 216 | .matrix-character {
|
217 | 217 | position: fixed;
|
218 |
| - color: #0F0; |
| 218 | + color: var(--text-color); |
219 | 219 | font-family: monospace;
|
220 | 220 | font-size: 20px;
|
221 | 221 | line-height: 20px;
|
222 | 222 | z-index: 1000;
|
223 | 223 | pointer-events: none;
|
224 |
| - text-shadow: 0 0 5px #0F0; |
| 224 | + text-shadow: 0 0 5px var(--text-color); /* Match glow to text color */ |
225 | 225 | animation: matrix-rain linear infinite;
|
226 | 226 | }
|
227 | 227 |
|
@@ -503,7 +503,7 @@ <h2>Links</h2>
|
503 | 503 | this.fs = {
|
504 | 504 | 'help.txt': "Available commands:\n\nls - List files\ncat <file> - Display file contents\nclear - Clear terminal\nhelp - Show this help message\npwd - Print working directory\necho <text> - Print text\ndate - Show current date",
|
505 | 505 | 'about.txt': "I'm currently working on scalable inference at Anthropic. Previously, I was at Applied Intuition where I focused on building and scaling our data infrastructure, particularly working with Apache Spark and Apache Hudi. Before that, I worked on search infrastructure at Uber.\n\nI graduated from Georgia Tech in 2021, where I had the privilege of researching under Dr. Judy Hoffman, focusing on computer vision and transfer learning across CV tasks.\n\nI'm always excited to connect with people who share similar interests. Feel free to reach out!",
|
506 |
| - 'easteregg.txt': "🎉 You found the easter egg!\nHere's a secret: Try pressing 'up up down down left right left right b a' anywhere on the site...", |
| 506 | + 'easteregg.txt': "🎉 You found the easter egg!\nHere's a secret: Try pressing 'up up down down left right left right b a' anywhere on the site (except when in the terminal)...", |
507 | 507 | 'interests.txt': "- Distributed systems around large language models - in a capacity constrained world how do we make LLMs run faster and more efficiently.\n- Computer vision, specifically in Autonomous vehicles\n- Tools we should be building for LLMs that are sufficiently different from tools for humans\n- Aviation (PPL 05/24)\n- Formula 1",
|
508 | 508 | 'skills.txt': "Technical Skills:\n- Languages: Python, Rust, Terrafrom, Java\n- Infrastructure: K8s, Apache Spark, Hudi, GCP/AWS",
|
509 | 509 | 'books.txt': "Title: The Last Lecture\nTitle: A Promised Land\nTitle: Born a Crime\nTitle: Radical Candor\nTitle: Designing Data-Intensive Applications\nTitle: Building Microservices, Sam Newman\nTitle: A Philosophy of Software Design, John Ousterhout"
|
@@ -745,7 +745,7 @@ <h2>Links</h2>
|
745 | 745 |
|
746 | 746 | document.addEventListener('keydown', (event) => {
|
747 | 747 | // Don't trigger when typing in terminal
|
748 |
| - if (event.target.classList.contains('terminal-input')) { |
| 748 | + if (event.target.classList.contains('terminal-input') || terminal.isVisible()) { |
749 | 749 | return;
|
750 | 750 | }
|
751 | 751 |
|
|
0 commit comments