| layout |
default |
| permalink |
/404.html |
| pageType |
error |
<style>
.container {
max-width: 1200px;
}
.terminal-link-wrapper {
text-decoration: none;
display: block;
}
.terminal-window {
background: #0a0a0a;
border: 1px solid #00ff66;
border-radius: 6px;
padding: 16px;
font-family: monospace;
color: #fff;
max-width: 90%;
margin: 40px auto;
box-shadow: 0 0 15px rgba(0, 255, 80, 0.3);
transition: background 0.2s ease;
}
.terminal-window:hover {
background: #0c0c0c;
}
.blink {
animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
.terminal-window {
transition:
background 0.2s ease,
transform 0.15s ease;
}
.terminal-window:hover {
background: #0c0c0c;
transform: scale(1.03);
}
pre {
font-size: 16px !important;
background: transparent !important;
box-shadow: none !important;
border: none !important;
border-radius: 0px !important;
padding: 0 !important;
margin: 0 auto !important;
pointer-events:none !important;
color:#ffffff !important;
text-align: center !important;
white-space: pre !important;
overflow: auto !important;
overflow-y: hidden !important;
overflow-x: hidden !important;
overflow-wrap: normal !important;
word-wrap: normal !important;
word-break: normal !important;
}
</style>
ERROR 404: Directory not found.
you@theby.github.io
:
/404
$ cd /
█
<script>
const asciiFiles = [
"/assets/ascii/art1.txt",
"/assets/ascii/art2.txt",
"/assets/ascii/art3.txt",
"/assets/ascii/art4.txt",
"/assets/ascii/art5.txt"
];
const randomFile = asciiFiles[Math.floor(Math.random() * asciiFiles.length)];
fetch(randomFile)
.then(response => response.text())
.then(text => {
document.getElementById("ascii-art").textContent = text;
})
.catch(error => {
document.getElementById("ascii-art").textContent = "Present Day, Present Time";
});
</script>