-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (79 loc) · 3.85 KB
/
about.html
File metadata and controls
92 lines (79 loc) · 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>about.txt</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="terminal">
<div class="terminal-header">
<span class="title">about.txt</span>
</div>
<div class="terminal-body">
<p class="command">Mac:~ User$ <span class="typing"></span></p>
<p class="response about-text" style="display: none;">
Hi! I'm Amy Gutierrez, a Lead Engineer, Associate at Booz Allen Hamilton. <br><br>
🚀 Currently, I work as a DevSecOps Engineer for a government agency, where I specialize in:<br>
- Automating CI/CD pipelines with GitHub Actions<br>
- Building and deploying containerized applications to AWS ECR<br>
- Leading a smoke test automation project<br><br>
💡 Previously, I served as an ML Engineer for another government agency, where I worked on:<br>
- Computer Vision for analyzing CT images<br>
- Natural Language Processing (NLP) for clinical reports<br><br>
🤖 My core areas of expertise include:<br>
- Artificial Intelligence & Machine Learning<br>
- DevSecOps<br>
- Software Development<br><br>
🎓 Degrees: <br>
- BS Biomedical Engineering<br>
- MS Biomedical Engineering<br>
- MS Applied Artificial Intelligence<br><br>
</p> <br>
<a href="index.html" class="terminal-link">Go back</a>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
fetch("images/ai-den.json")
.then(response => response.json())
.then(data => {
if (data.images && data.images.length > 0) {
// Pick a random image from the JSON list
const randomImage = data.images[Math.floor(Math.random() * data.images.length)];
// Apply the random image to the pseudo-element via CSS
const style = document.createElement("style");
style.innerHTML = `
.terminal-body::after {
background: url('${randomImage}') no-repeat center;
background-size: contain;
}
`;
document.head.appendChild(style);
}
})
.catch(error => console.error("Error loading images:", error));
let commandText = "cat about.txt"; // The typed command
let typingElement = document.querySelector(".typing");
let aboutTextElement = document.querySelector(".about-text");
let i = 0;
function typeCommand() {
if (i < commandText.length) {
typingElement.innerHTML = commandText.substring(0, i + 1) + '<span class="blinking-cursor">|</span>';
i++;
setTimeout(typeCommand, 100);
} else {
// Remove cursor after typing command
typingElement.innerHTML = commandText;
// Instantly show the about text
setTimeout(() => {
aboutTextElement.style.display = "block";
}, 500);
}
}
typeCommand();
});
</script>
</body>
</html>