-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (59 loc) · 3.06 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Hi! I'm xpple, aka Fred. Here's my Discord: @xpple">
<title>xpple.dev</title>
<link rel="stylesheet" href="assets/style/fonts.css">
<link rel="stylesheet" href="assets/style/normalize.css">
<link rel="stylesheet" href="assets/style/main.css">
<script type="module" src="assets/script/module.js" async></script>
</head>
<body>
<div id="container">
<main>
<div id="cli-container">
<span>xpple CLI</span>
<br>
<br>
<span>Custom made xpple CLI.</span>
<br>
<br>
<span>Shoutout to <a href="https://nwex.de/" target="_blank" rel="noreferrer">networkException</a></span>
<br>
<br>
<div id="input-container">
<label for="input-field">xpple@main:<span></span>$ </label><input id="input-field" name="input-field" type="text" autocomplete="off">
</div>
</div>
</main>
<aside>
<h1>Frequently Anticipated Questions</h1>
<h2>What am I looking at?</h2>
<p>
You're looking at a command-line interface (CLI), which is an interface in which you can write and execute... commands! But this one isn't like the others, this one is made by me! The purpose of this CLI isn't anything serious or useful. The commands are mostly for entertainment. The changes you make to the file system are stored in your browser's local storage.
</p>
<h2>Do you keep track of the commands I execute?</h2>
<p>
No. Since I only use JavaScript (TypeScript), the commands you execute are executed on your end. You can view the source code <a href="https://github.com/xpple/xpple.dev/" target="_blank" rel="noreferrer">here</a>.
</p>
<h1>About me</h1>
<h2>whoami</h2>
<p>
I'm xpple, also known as Fred. I mostly code in Java, but I have experience with almost anything.
</p>
<p>
I have a bachelor's degree in mathematics. I obtained this degree at the TU Delft. Currently, I am following a premaster computer science (also at the TU Delft), after which I plan to obtain my master's degree in this field. If you're interested in my bachelor's thesis, see the <a href="https://github.com/xpple/ConstructionOfMathematics/" target="_blank">Construction of Mathematics</a> project.
</p>
<h2>Some of my work (incomplete)</h2>
<ul>
<li><a href="https://github.com/xpple/SeedMapper/" target="_blank">SeedMapper</a></li>
<li><a href="https://github.com/xpple/BetterConfig/" target="_blank">BetterConfig</a></li>
<li><a href="https://github.com/xpple/ConstructionOfMathematics/" target="_blank">Construction of Mathematics</a></li>
<li><a href="https://github.com/xpple/wiskundewoordenboek.nl/" target="_blank">wiskundewoordenboek.nl</a></li>
</ul>
</aside>
</div>
</body>
</html>