generated from palcodes/personal-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (69 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<title>pal's blog</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<div id="container">
<div class="flex-row">
<div class="left-col">
<div class="poster-box">
<img
src="./logopal.svg"
alt="aayush pal"
srcset=""
style="width: 80%; align-self: center"
/>
<div class="poster-nav" style="color: white">
<div class="poster-nav-list">
<a href="#">/ words</a>
<a href="./reads.html">/ reading</a>
</div>
<div class="poster-nav-list">
<a href="./bookmarks.html">/ bookmarks</a>
<a href="./uses.html">/ tools</a>
<a href="#">
/ studio <span style="font-size: 8px">(coming soon)</span>
</a>
</div>
</div>
</div>
<div class="picture">
<img
style="width: 100%; height: 100%; object-fit: cover"
src="./me.png"
alt=""
/>
</div>
</div>
<div class="right-col">
<img
height="32px"
style="margin-bottom: 18px; margin-top: 40px"
src="./grids.svg"
alt=""
/>
<p>
Hello dear netizen! You seem to have stumbled upon my html.<br />
This collection of english words I am putting together aims to make
good use of your time here. I will be writing about tech, my
opinions about the world, prose or stanzas, experiences, short
notes, ideas - all here. <br />I graduated in 2022, but I have been
working more or less since I was 17 or maybe 16 if you count a
completely unpaid C# project. <br />Currently I am researching,
building products that make mindful use of LLMs or AI. I have been
cognizant to the notion that AI in its current state is nothing but
thousands of different UIs centered around a textbox. I believe a
good product should challenge that norm. <br />Areas of product that
intrigue me in general are 'tools for thought' and 'knowledge/text
segmentation'. I have been day-dreaming a software paradigm that
lets humans interact with their knowledge in physical form.
</p>
</div>
</div>
</div>
</body>
</html>