blob: 2ef67bd7d22e2f2df0f28990f6e15d74a42c2b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
import { VirtualTextFile } from "$/apps/source";
import { Hr } from "../hr";
import { Link } from "../link";
export default {
name: "Readme.txt",
type: "text",
content: (
<>
<h1>Readme</h1>
<h3>Save me, don't replace me</h3>
<Hr />
<p>
A{" "}
<Link link="https://en.wikipedia.org/wiki/README" type="link">
README
</Link>{" "}
is a text document that contains information about the content of the directory it’s located in. It typically contains instructions on how to use or install a program. If you ever need to know what a program does, the readme file shall explain.
</p>
{/* prettier-ignore */}
<pre><code> ░██{"\n"}
{" "}░██{"\n"}
░██░████ ░███████ ░██████ ░████████ ░█████████████ ░███████{"\n"}
░███ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██{"\n"}
░██ ░█████████ ░███████ ░██ ░██ ░██ ░██ ░██ ░█████████{"\n"}
░██ ░██ ░██ ░██ ░██ ░███ ░██ ░██ ░██ ░██{"\n"}
░██ ░███████ ░█████░██ ░█████░██ ░██ ░██ ░██ ░███████{"\n"}
</code></pre>
<Hr />
<p>
Lyrics written by Sunnexo and retraceyoursteps, performed by{" "}
<Link link="https://kasaneteto.jp/" type="link">
Kasane Teto SV
</Link>
</p>
<p>Readme</p>
<p>Save me</p>
<p>Don't replace me</p>
<p>Open secret</p>
<p>Can you keep it</p>
<p>And yet I</p>
<p>Can just</p>
<p>Always</p>
<p>Show you</p>
<p>My file system</p>
<p>Read and</p>
<p>List them</p>
<br />
<p>(♫)</p>
<br />
<p>Readme</p>
<p>Save me</p>
<p>Don't replace me</p>
<p>Open secret</p>
<p>Can you keep it</p>
<p>And yet I</p>
<p>Can just</p>
<p>Always</p>
<p>Show you</p>
<p>My file system</p>
<p>Read and</p>
<p>List them</p>
</>
),
height: "70vh",
width: "70vw",
} as VirtualTextFile;
|