Adding post graph to terminal

This commit is contained in:
Dan 2026-01-16 12:31:28 +00:00
parent d11393780d
commit 6bfac464fa
5 changed files with 239 additions and 12 deletions

View file

@ -35,19 +35,14 @@ class TerminalShell {
"",
"NERV OS v2.015 - MAGI System Interface",
"Initializing A.T. Field protocols...",
"CASPER... ONLINE",
"BALTHASAR... ONLINE",
"MELCHIOR... ONLINE",
"CASPER: ONLINE / BALTHASAR: ONLINE / MELCHIOR: ONLINE",
"Synchronization ratio: 41.3%... 67.8%... 89.2%... OK",
"Loading Evangelion Unit-01 core drivers... OK",
"Mounting LCL interface... OK",
"Neural connection established... OK",
"",
"Running pattern analysis... PATTERN BLUE",
"",
"All systems optimal.",
"",
"",
];
for (let i = 0; i < bootMessages.length; i++) {
@ -67,6 +62,12 @@ class TerminalShell {
this.printHTML("&nbsp;");
let postGraph = document.getElementsByClassName("posting-graph")[0];
this.printHTML("Retrieving post activity...");
this.printHTML("&nbsp;");
this.printHTML(postGraph.innerHTML);
this.printHTML("&nbsp;");
// Get latest post info
let latestPostTitle = document.getElementById("latest-post-title");
let latestPostDate = document.getElementById("latest-post-date");