-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
190 lines (183 loc) · 4.49 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
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
187
188
189
190
<html lang="en">
<head>
<title>
EternalFrustation | Computer Enthusiast
</title>
<link href="styles.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preload" as="font" href="/0xproto-webfont.woff2" crossorigin>
</head>
<body>
<a class="floating-element" href="https://eternalfrustation.github.io/apocrypha/"><button>Apocrypha</button></a>
<div role="img" aria-label="Profile Photo" id="profilePhoto"></div>
<div id="profileInfo">
<h1>Sandeep Kumar</h1>
<div id="profileInfo_links">
<a href="https://github.com/eternalfrustation"> - @eternalfrustation</a>
<a href="https://www.youtube.com/channel/UCUVrMG8kLtYZRT5NchkWoXw"> - YouTube </a>
<a href="https://www.linkedin.com/in/sandeep-kumar-746095257/"> - LinkedIn </a>
</div>
</div>
<div id="objective">
<h2>
Passionate about
</h2>
<ul>
<li>Tinkering with Electronics</li>
<li>Tinkering with Computers</li>
<li>Operating Systems</li>
<li>Computer Architecture</li>
<li>Graphics Programming</li>
<li>Machine Learning</li>
<li>Media Processing</li>
<li>Cybersecurity</li>
<li>Networking</li>
</ul>
</div>
<div id="experiences">
<h2>
Experience
</h2>
<ul>
<li> <a href="https://github.com/Techfest-Sliet/bundle23"> Server admin Techfest 23</a></li>
<li> <a href="https://github.com/Techfest-Sliet/backend-tf23"> Backend Developer Techfest
23</a></li>
<li> <a href="https://github.com/Techfest-Sliet/backend-tf24"> Server admin Techfest 24</a>
</li>
<li> <a href="https://github.com/Techfest-Sliet/frontend-tf24"> Backend Developer Techfest
24</a></li>
<li> <a href="https://github.com/CycleOne-Sliet/App"> App Dev for CycleOne</a> </li>
<li> <a href="https://github.com/CycleOne-Sliet/Stand-v1"> Electronics for CycleOne</a> </li>
<li> <a href="https://cycleone.in"> Website for CycleOne</a> </li>
</ul>
</div>
<div id="personalProjects">
<h2>
Personal Projects (Heavy WIP)
</h2>
<ul>
<li> <a href="https://github.com/eternalfrustation/woz">A DTB Parser which boots on
RISC-V in Zig</a></li>
<li> <a href="https://github.com/eternalfrustation/peroxide">A dynamic website hosting
server in Rust</a></li>
<li> <a href="https://github.com/eternalfrustation/nvigo">Package manager for neovim in Go</a>
<li> <a href="https://github.com/eternalfrustation/encrawl-rust">A server to get news summarised
by an LLM</a>
</li>
<li> <a href="https://github.com/eternalfrustation/photoGrid">A CLI tool to make
photos tile in Rust</a></li>
<li> <a href="https://github.com/eternalfrustation/rats">Simple rasterizer in Go</a>
</li>
<li> <a href="https://github.com/eternalfrustation/funcGrapher">Plot graphs of
functions easily in Go</a></li>
</ul>
</div>
<div id="technologies">
<h2>
Familiar Technologies
</h2>
<ul>
<li>
Rust
</li>
<li>
Go
</li>
<li>
Javascript
</li>
<li>
Dart
</li>
<li>
Kotlin
</li>
<li>
Google Cloud Platform
</li>
<li>
Amazon AWS
</li>
<li>
Linux
</li>
<li>
ESP-IDF
</li>
<li>
Arduino IDE
</li>
</ul>
</div>
<div id="skills">
<h2>
Skills
</h2>
<ul>
<li>
Fullstack Development
</li>
<li>
App Development
</li>
<li>
Server Administeration
</li>
<li>
Media Processing
</li>
<li>
Graphics Programming
</li>
<li>
Data Visualisation
</li>
<li>
Web Scraping
</li>
<li>
Microcontrollers
</li>
</ul>
</div>
<div id="Education">
<h2>
Education
</h2>
<ul>
<li>
2020 - Matriculation
</li>
<li>
2022 - Post - Matriculation (Non - Medical)
</li>
<li>
2026 - B.Tech in Computer Science (Ongoing)
</li>
</ul>
</div>
<div id="currentStatus">
<h2> Currently</h2>
<ul id="position">
<li> A Student at SLIET Longowal</li>
<li> Programming head in Team CycleOne</li>
</ul>
</div>
</body>
<script>
window.addEventListener("load", () => {
const cards = document.querySelectorAll("body > div");
for (const card of cards) {
card.addEventListener("mouseenter", (e) => {
const boundingBox = card.getBoundingClientRect();
const mrx = (e.x - boundingBox.x) / boundingBox.width;
const mry = (e.y - boundingBox.y) / boundingBox.height;
card.style.transform = `skew(${mrx}deg, ${mry}deg)`
}, true)
card.addEventListener("mouseleave", (e) => {
card.style.transform = ``;
})
}
})
</script>
</html>