From 3211d940b01b3db3a96002464a980616db970e81 Mon Sep 17 00:00:00 2001 From: jinhojang6 Date: Fri, 1 Mar 2024 11:49:29 +0900 Subject: [PATCH] chore: copy updates --- src/utils/commands.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/utils/commands.ts b/src/utils/commands.ts index 6f2c374..721ac25 100644 --- a/src/utils/commands.ts +++ b/src/utils/commands.ts @@ -10,7 +10,8 @@ export const commands: Record< (args: string[]) => Promise | string > = { apply: async () => { - const htmlString = ""; + const htmlString = + ''; return htmlString; }, @@ -124,7 +125,7 @@ export const commands: Record< maxDelay = 10 ) { const elements = document.getElementsByClassName(elementClass); - const element = elements[elements.length - 1] + const element = elements[elements.length - 1]; if (!element) return; // Append cursor initially @@ -163,14 +164,17 @@ export const commands: Record< // delete the banner baner.remove(); // add the banner to the history - history.update((h) => [...h, { command: "banner", outputs: [text] }]); + history.update((h) => [ + ...h, + { command: "banner", outputs: [text] }, + ]); } } } displayNextLetter(); } - + const text = `██████╗ ███████╗██████╗ ██╗██████╗ █████╗ ████████╗ ██████╗ ███████╗ ██╔══██╗██╔════╝██╔══██╗██║██╔══██╗██╔══██╗╚══██╔══╝██╔═══██╗██╔════╝ ██████╔╝█████╗ ██████╔╝██║██████╔╝███████║ ██║ ██║ ██║███████╗ @@ -180,20 +184,16 @@ export const commands: Record< ----------------------------------------------------------------------------- -The Peripatos is a members-only network of builders, technologists, and -cypherpunks harnessing the transformational power of discovering together. -We actively work to advance the knowledge and development of cryptography, -privacy, and network states. We participate in regular roundtable -discussions that focus on curated topics. The objective of these meetings is -to share insights, generate new ideas, and network with one another. The -Peripatetic School — simply referred to as the Peripatos after the ancient -walkway of the Acropolis — was an informal institution of ancient Greece -where members conducted philosophical and scientific inquiries. +The Peripatos is a members-only network of cypherpunks, builders, technologists, and resource allocators harnessing the transformational power of discovering together. We actively work to advance the knowledge and development of cryptography, privacy, competitive governance and digital public goods. + +As part of the Institute of Free Technology we support the development, adoption, and accessibility of solutions to digital age problems and are guided by our principles: liberty, censorship resistance, security, privacy, and inclusivity. We seek to connect with and support those innovating to defend our digital rights. + +We participate in regular roundtable discussions and in person events that focus on curated topics. The objective of these meetings is to share insights, generate new ideas, and build the future we want to see. Type 'help' to see list of available commands.`; displayTextLetterByLetter("banner", text); - return ''; + return ""; }, };