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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
<?php $title = "About"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; global $Parsedown; ?>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/navigation.php"; ?>
<br>
<div class="container">
<h1 class="text-center">My name is <span id="scoots">Scootaloo</span>!</h1>
<h3 class="text-center">I'm the computer pegasus</h3>
<p>TODO: Add some sort of circles with things I like (MLP, computers, Linux, OSS, music, video, photography, graphical design)</p>
<p><b>Info about me:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Species</b></td>
<td class="toe-description">Equestrian pegasus</td>
</tr>
<tr>
<td class="toe-title"><b>Gender</b></td>
<td class="toe-description">Female</td>
</tr>
<tr>
<td class="toe-title"><b>Location</b></td>
<td class="toe-description">Ponyville, Equestria</td>
</tr>
</tbody>
</table>
<p><b>Info about my laptop:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Model</b></td>
<td class="toe-description">MacBook Air (M1, 2020, 13.3"), Space Gray</td>
</tr>
<tr>
<td class="toe-title"><b>OS</b></td>
<td class="toe-description">macOS</td>
</tr>
<tr>
<td class="toe-title"><b>CPU</b></td>
<td class="toe-description">arm64e, Apple M1 (4 performance CPU cores, 4 efficiency CPU cores, 8 GPU cores)</td>
</tr>
<tr>
<td class="toe-title"><b>RAM</b></td>
<td class="toe-description">8GB LPDDR4</td>
</tr>
<tr>
<td class="toe-title"><b>Storage</b></td>
<td class="toe-description">512GB NVMe SSD (APPLE SSD AP0512Q)</td>
</tr>
</tbody>
</table>
<p><b>Info about my secondary laptop:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Model</b></td>
<td class="toe-description">Panasonic Toughbook CF-MX4</td>
</tr>
<tr>
<td class="toe-title"><b>OS</b></td>
<td class="toe-description">Chrome OS Flex</td>
</tr>
<tr>
<td class="toe-title"><b>CPU</b></td>
<td class="toe-description">x86_64, Intel Core i5 vPro (4 CPU cores)</td>
</tr>
<tr>
<td class="toe-title"><b>RAM</b></td>
<td class="toe-description">8GB</td>
</tr>
<tr>
<td class="toe-title"><b>Storage</b></td>
<td class="toe-description">256GB M.2 SATA SSD (Samsung)</td>
</tr>
</tbody>
</table>
<p><b>Info about my oldest laptop:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Model</b></td>
<td class="toe-description">Compaq Armada 110</td>
</tr>
<tr>
<td class="toe-title"><b>OS</b></td>
<td class="toe-description">Unknown/None</td>
</tr>
<tr>
<td class="toe-title"><b>CPU</b></td>
<td class="toe-description">x86, Intel Celeron Coppermine</td>
</tr>
<tr>
<td class="toe-title"><b>RAM</b></td>
<td class="toe-description">320MB (originally 256MB)</td>
</tr>
<tr>
<td class="toe-title"><b>Storage</b></td>
<td class="toe-description">10GB IDE (Toshiba)</td>
</tr>
</tbody>
</table>
<p><b>Info about my phone:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Model</b></td>
<td class="toe-description">Samsung Galaxy A41 (2020)</td>
</tr>
<tr>
<td class="toe-title"><b>OS</b></td>
<td class="toe-description">Android/One UI</td>
</tr>
<tr>
<td class="toe-title"><b>CPU</b></td>
<td class="toe-description">arm64, MediaTek Helio P65 (MT6768, 2 performance CPU cores, 6 efficiency CPU cores)</td>
</tr>
<tr>
<td class="toe-title"><b>RAM</b></td>
<td class="toe-description">4GB (including 512MB VRAM)</td>
</tr>
<tr>
<td class="toe-title"><b>Storage</b></td>
<td class="toe-description">64GB NAND (probably Samsung) + 64GB SanDisk SD</td>
</tr>
</tbody>
</table>
<p><b>Info about my main server:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Model</b></td>
<td class="toe-description">Lenovo IdeaPad 3</td>
</tr>
<tr>
<td class="toe-title"><b>OS</b></td>
<td class="toe-description">Fedora Server</td>
</tr>
<tr>
<td class="toe-title"><b>CPU</b></td>
<td class="toe-description">x86_64, AMD Ryzen 7 5600U (8 CPU cores, 16 threads)</td>
</tr>
<tr>
<td class="toe-title"><b>RAM</b></td>
<td class="toe-description">12GB (including 1GB VRAM)</td>
</tr>
<tr>
<td class="toe-title"><b>Storage</b></td>
<td class="toe-description">512GB NVMe SSD (Micron)</td>
</tr>
</tbody>
</table>
<p><b>Info about my secondary server:</b></p>
<table class="table">
<tbody>
<tr>
<td class="toe-title"><b>Model</b></td>
<td class="toe-description">Raspberry Pi 4</td>
</tr>
<tr>
<td class="toe-title"><b>OS</b></td>
<td class="toe-description">Ubuntu Server</td>
</tr>
<tr>
<td class="toe-title"><b>CPU</b></td>
<td class="toe-description">arm64, Broadcom (4 CPU cores)</td>
</tr>
<tr>
<td class="toe-title"><b>RAM</b></td>
<td class="toe-description">4GB</td>
</tr>
<tr>
<td class="toe-title"><b>Storage</b></td>
<td class="toe-description">64GB SanDisk SD (to be replaced)</td>
</tr>
</tbody>
</table>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>
|