blob: aee9f3b310cda6ff0fd06ef1ba081e05c59d32ff (
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
68
69
70
71
72
73
74
75
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>߸ projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>projects</h1>
<table>
<colgroup>
<col style="width: 25%">
<col style="width: 37%">
<col style="width: 17%">
<col style="width: 20%">
</colgroup>
<thead>
<tr class="header">
<th>name</th>
<th>description</th>
<th>links</th>
</tr>
</thead>
<tbody>
<tr>
<td>Space Invaders</td>
<td>Old school project of mine</td>
<td><a href="https://github.com/schererleander/pygame-space-invaders">GitHub</a></td>
</tr>
<tr>
<td>Hackintosh</td>
<td>Was fascinated with macOS didnt had a Mac so i was lucky that my pc was compatible. I really liked MacOS and even bough a MacBook afterward</td>
<td><a href="https://github.com/schererleander/opencore-config">GitHub</a></td>
</tr>
<tr>
<td>hyprland rice</td>
<td>got into ricing, used arch btw</td>
<td><a href="https://github.com/schererleander/hyprdots">GitHub</a></td>
</tr>
<tr>
<td>Markdown Preview</td>
<td>Live preview of markdown, supports very basic syntax</td>
<td><a href="https://github.com/schererleander/markdown-preview">GitHub</a></td>
</tr>
<tr>
<td>Quiz Website</td>
<td>Quiz website for school project, very basic and hacked together</td>
<td><a href="https://github.com/schererleander/expressjs-quiz">GitHub</a></td>
</tr>
<tr>
<td>another rice</td>
<td>tried a different wm, stopped ricing after that, consumed a lot of time</td>
<td><a href="https://github.com/schererleander/labwcdots">GitHub</a></td>
</tr>
<tr>
<td>Expressjs login</td>
<td>web app using react for frontend and express for backend with JSON Web Token (JWT) for session handling</td>
<td><a href="https://github.com/schererleander/expressjs-login">GitHub</a></td>
</tr>
<tr>
<td>Authentication</td>
<td>yet another authentication system. this time, it securely stores passwords using bcrypt with salting.</td>
<td><a href="https://github.com/schererleander/authentication">GitHub</a>
</tr>
<tr>
<td>Python ICS Modifier</td>
<td>simple python script to add reminder (to take out the trash) at 17:00 the day before the event</td>
<td href="https://github.com/schererleander/python-ics-modifier">GitHub</td>
</tr>
</tbody>
</table>
</body>
</html>
|