···
-
<!-- vim: setlocal noexpandtab nowrap: -->
-
<meta charset="UTF-8" />
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
-
<title>C:\KIERANK.EXE - kierank.hackclub.app</title>
-
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
-
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap");
-
font-family: "Courier Prime", "Courier New", monospace;
-
display: none !important;
-
border: 2px solid #808080;
-
inset -2px -2px #c0c0c0,
-
background: linear-gradient(90deg, #000080, #1084d0);
-
border-bottom: 1px solid #808080;
-
justify-content: space-between;
-
border: 1px outset #ffffff;
-
animation: blink 1s infinite;
-
/* Markdown rendered content styles */
-
border-bottom: 2px solid #c0c0c0;
-
text-transform: uppercase;
-
#readme-content ul li {
-
#readme-content ul li::before {
-
text-decoration: underline;
-
#readme-content a:hover {
-
font-family: "Courier Prime", "Courier New", monospace;
-
border: 2px inset #404040;
-
#readme-content pre code {
-
background: transparent;
-
#readme-content strong {
-
border-top: 2px groove #ffffff;
-
justify-content: space-between;
-
animation: dots 1.5s steps(4, end) infinite;
-
border: 2px inset #800000;
-
<div class="title-bar">
-
<span>C:\KIERANK.EXE - kierank.hackclub.app</span>
-
<div class="title-buttons">
-
<div class="title-btn">_</div>
-
<div class="title-btn">□</div>
-
<div class="title-btn">×</div>
-
C:\KIERANK> README.EXE<span class="cursor"> </span>
-
<!-- biome-ignore format: ascii art -->
-
<pre class="ascii-header">
-
██╗ ██╗██╗███████╗██████╗ █████╗ ███╗ ██╗
-
██║ ██║██║██╔════╝██╔══██╗██╔══██╗████╗ ██║
-
█████╔╝██║█████╗ ██████╔╝███████║██╔██╗ ██║
-
██╔═██╗██║██╔══╝ ██╔══██╗██╔══██║██║╚██╗██║
-
██║ ██║██║███████╗██║ ██║██║ ██║██║ ╚████║
-
╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝
-
<div class="separator">
-
════════════════════════════════════════════════════
-
<div id="readme-content">
-
<div class="loading" style="display: none">Loading README from GitHub</div>
-
<div class="error-box">
-
JavaScript is disabled so not rendering markdown.
-
View the README on GitHub:
-
<a href="https://github.com/taciturnaxolotl/taciturnaxolotl/blob/main/README.md">
-
taciturnaxolotl/README.md
-
<div class="separator">
-
════════════════════════════════════════════════════
-
<p style="font-size: 11px; color: #808080; text-align: center">
-
Hosted on <a href="https://hackclub.com/nest/">Hack Club Nest</a> |
-
<a href="https://github.com/taciturnaxolotl">GitHub</a> |
-
<a href="https://dunkirk.sh">dunkirk.sh</a>
-
<div class="status-bar">
-
<span id="status">Fetching README...</span>
-
<span id="time"></span>
-
"https://raw.githubusercontent.com/taciturnaxolotl/taciturnaxolotl/refs/heads/main/README.md"
-
async function loadReadme() {
-
const contentDiv = document.getElementById("readme-content");
-
const statusSpan = document.getElementById("status");
-
const loadingEl = contentDiv.querySelector(".loading");
-
if (loadingEl) loadingEl.classList.remove("hidden");
-
const response = await fetch(README_URL);
-
throw new Error(`HTTP ${response.status}`);
-
const markdown = await response.text();
-
// Configure marked for GFM
-
contentDiv.innerHTML = marked.parse(markdown);
-
// Strip emojis from headers
-
contentDiv.querySelectorAll("h3, h4").forEach((header) => {
-
const text = header.textContent;
-
// - \p{Extended_Pictographic}: most modern emoji/pictographs
-
// - \p{Emoji_Presentation}: characters default-rendered as emoji
-
// - Variation Selector-16 (U+FE0F): emoji presentation modifier
-
// - Common symbol blocks that often carry emoji-like glyphs
-
/[\p{Extended_Pictographic}\p{Emoji_Presentation}\uFE0F]|[\u2600-\u26FF\u2700-\u27BF]/gu;
-
let cleaned = text.replace(emojiRegex, "");
-
// Collapse multiple whitespace into single spaces
-
cleaned = cleaned.replace(/\s+/g, " ");
-
// Remove spaces before punctuation (e.g., "Hello !" -> "Hello!")
-
cleaned = cleaned.replace(/\s+([!?,.;:])/g, "$1");
-
// Trim leading/trailing whitespace
-
cleaned = cleaned.trim();
-
// Replace header content safely
-
header.textContent = cleaned;
-
statusSpan.textContent = "README loaded successfully";
-
contentDiv.innerHTML = `
-
<div class="error-box">
-
ERROR: Failed to load README<br>
-
<p>Try refreshing the page or visit
-
<a href="https://github.com/taciturnaxolotl">github.com/taciturnaxolotl</a> directly.</p>
-
statusSpan.textContent = "Error loading README";
-
function updateTime() {
-
const now = new Date();
-
const timeStr = now.toLocaleTimeString("en-US", {
-
document.getElementById("time").textContent = timeStr;
-
setInterval(updateTime, 1000);