From 46ede6dc6a7bff942320183b9834ef282e3ee77d Mon Sep 17 00:00:00 2001 From: Sean <83432253+MegaTheLEGEND@users.noreply.github.com> Date: Sat, 3 Feb 2024 22:55:00 -0800 Subject: [PATCH] Update terminal.js --- gs/terminal/terminal.js | 47 +++++++++-------------------------------- 1 file changed, 10 insertions(+), 37 deletions(-) diff --git a/gs/terminal/terminal.js b/gs/terminal/terminal.js index 9107452..32e8c53 100644 --- a/gs/terminal/terminal.js +++ b/gs/terminal/terminal.js @@ -29,19 +29,16 @@ async function SearchGitHubProfile() { function ascii_art() { term3.output(` - ⠀⠀⠀⠀⠀⠀⠀⢀⣠⣤⣤⣶⣶⣶⣶⣤⣤⣄⡀⠀⠀⠀⠀⠀⠀⠀ - ⠀⠀⠀⢀⣤⣾⣿⣿⠿⠟⠛⠛⠛⠛⠻⠿⣿⣿⣷⣤⡀⠀⠀⠀⠀ - ⠀⠀⣴⣿⣿⠟⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠻⣿⣿⣦⠀⠀⠀ - ⢀⣾⣿⡿⠁⠀⠀⣴⣦⣄⠀⠀⠀⠀⠀⣀⣤⣶⡀⠈⢿⣿⣷⡀⠀ - ⣾⣿⡟⠁⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠃⠀⠈⣿⣿⡄ - ⢠⣿⣿⠁⠀⠀⠀⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⣿⣿⡇ - ⢸⣿⣿⠀⠀⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⣿⣿⡇ - ⠘⣿⣿⡦⠤⠒⠒⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠧⠤⢴⣿⣿⠃ - ⠀⢿⣿⣧⡀⠀⢤⡀⠙⠻⠿⣿⣿⣿⣿⣿⠟⠋⠁⠀⢀⣼⣿⡿⠀ - ⠀⠈⢿⣿⣷⡀⠈⢿⣦⣤⣾⣿⣿⣿⣿⣷⣄⠀⠀⢀⣾⣿⡿⠁ - ⠀⠀⠀⠻⣿⣿⣦⣄⡉⣿⣿⢿⣿⠉⢻⣿⢿⣿⣠⣴⣿⣿⠟⠀⠀ - ⠀⠀⠀⠀⠀⠈⠛⢿⣿⣿⣿⣧⣼⣿⣤⣾⣷⣶⣿⣿⡿⠛⠁⠀⠀⠀ - ⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠛⠛⠿⠿⠿⠿⠿⠛⠛⠋⠁⠀⠀⠀⠀ + █████▒ ██▓ ██▓ ▓█████ ▒███████▒ + ▓██ ▒ ▓██▒▓██▒ ▓█ ▀ ▒ ▒ ▒ ▄▀░ + ▒████ ░ ▒██▒▒██░ ▒███ ░ ▒ ▄▀▒░ + ░▓█▒ ░ ░██░▒██░ ▒▓█ ▄ ▄▀▒ ░ + ░▒█░ ░██░░██████▒░▒████▒▒███████▒ + ▒ ░ ░▓ ░ ▒░▓ ░░░ ▒░ ░░▒▒ ▓░▒░▒ + ░ ▒ ░░ ░ ▒ ░ ░ ░ ░░░▒ ▒ ░ ▒ + ░ ░ ▒ ░ ░ ░ ░ ░ ░ ░ ░ ░ + ░ ░ ░ ░ ░ ░ ░ + ░ ⠀⠀⠀ `); } @@ -93,30 +90,6 @@ function pwd() { term3.output(`${window.location.href}`); } -async function hackertyper() { - try { - const response = await fetch("https://www.o-bible.com/download/kjv.txt"); - - if (!response.ok) { - throw new Error(`Failed to fetch hacker typer text. Status: ${response.status}`); - } - - const hackerText = await response.text(); - - const lines = hackerText.split('\n'); - - for (const line of lines) { - term3.output(line); - await new Promise(resolve => setTimeout(resolve, 1000)); // Adjust the delay as needed - } - - term3.output("Hacking complete!"); - } catch (error) { - term3.output(`Failed to load hacker typer text: ${error.message}`); - } -} - - async function ping() {