-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
46 lines (44 loc) · 987 Bytes
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About</title>
</head>
<body>
<article>
<h2>I'm Sagar Tiwari</h2>
<p>
Software developer at Bytebeam.
</p>
<h2>Skill set</h2>
<ul>
<li>Rust</li>
<li>Javascript/Typescript</li>
<li>Browser stack</li>
<li>ReactJS</li>
<li>Flutter</li>
<li>Clojure</li>
<li>Android
<ul>
<li>JNI</li>
<li>Jetpack Compose</li>
<li>Android-Rust interop</li>
</ul>
</li>
<li>Intellij Plugin Development</li>
</ul>
</article>
</body>
<script constexpr src="/static/js/constexpr/lib.js"></script>
<script constexpr src="/static/js/constexpr/renderer.js"></script>
<script constexpr>
async function render_page() {
window._ConstexprJS_.skipIndex = true
const base_page_render = site_global_rendering()
await base_page_render
}
</script>
<script constexpr>
render_page()
.then(() => window._ConstexprJS_.compile())
</script>
</html>