Skip to content

Commit 55c5035

Browse files
fix green text
1 parent 8ceb46e commit 55c5035

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,13 @@
215215

216216
.matrix-character {
217217
position: fixed;
218-
color: #0F0;
218+
color: var(--text-color);
219219
font-family: monospace;
220220
font-size: 20px;
221221
line-height: 20px;
222222
z-index: 1000;
223223
pointer-events: none;
224-
text-shadow: 0 0 5px #0F0;
224+
text-shadow: 0 0 5px var(--text-color); /* Match glow to text color */
225225
animation: matrix-rain linear infinite;
226226
}
227227

@@ -503,7 +503,7 @@ <h2>Links</h2>
503503
this.fs = {
504504
'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",
505505
'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)...",
507507
'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",
508508
'skills.txt': "Technical Skills:\n- Languages: Python, Rust, Terrafrom, Java\n- Infrastructure: K8s, Apache Spark, Hudi, GCP/AWS",
509509
'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>
745745

746746
document.addEventListener('keydown', (event) => {
747747
// 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()) {
749749
return;
750750
}
751751

0 commit comments

Comments
 (0)