-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
136 lines (130 loc) · 3.8 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - Tanmay J</title>
<style>
body {
font-family: 'Georgia', serif;
line-height: 1.7;
margin: 0 auto;
padding: 20px;
max-width: 680px;
color: #222;
background: #fff;
}
nav {
padding: 1rem 0;
margin-bottom: 2rem;
border-bottom: 1px solid #eee;
}
nav a {
margin-right: 1.5rem;
text-decoration: none;
color: #444;
font-size: 0.95em;
}
nav a:hover {
color: #000;
}
h1 {
font-size: 1.8em;
font-weight: normal;
margin: 0 0 1.5rem;
color: #111;
}
.blog-intro {
font-size: 1em;
color: #555;
margin-bottom: 3rem;
line-height: 1.8;
}
.blog-post {
margin-bottom: 3.5rem;
padding-bottom: 2rem;
border-bottom: 1px solid #f0f0f0;
}
.post-date {
font-family: 'Arial', sans-serif;
font-size: 0.85em;
color: #666;
letter-spacing: 0.5px;
margin-bottom: 0.5rem;
}
.blog-post h2 {
font-size: 1.3em;
font-weight: 500;
margin: 0 0 0.8rem;
}
.blog-post h2 a {
color: inherit;
text-decoration: none;
}
.blog-post h2 a:hover {
text-decoration: underline;
}
.blog-post p {
margin: 0.8rem 0 1.2rem;
color: #444;
}
.read-more {
font-family: 'Arial', sans-serif;
font-size: 0.9em;
text-decoration: none;
color: #007bff;
display: inline-block;
}
footer {
text-align: center;
margin-top: 4rem;
color: #666;
padding: 2rem 0;
font-size: 0.9em;
}
@media (max-width: 768px) {
body {
padding: 15px;
font-size: 15px;
}
nav {
padding: 0.5rem 0;
}
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
</nav>
<main>
<h1>Thoughts & Writings</h1>
<p class="blog-intro">
I'm hoping to blog more this year and make use of my thusfar underutilized website. I'm not sure
what this will look like, but hopefully it will be useful for the right audience.
</p>
<article class="blog-post">
<span class="post-date">December 27, 2023</span>
<h2>
<a href="https://medium.com/@tjyothis/navigating-reality-wisdom-from-nassim-talebs-skin-in-the-game-0378327774fa" target="_blank">
An Essay on Nassim Taleb's <i>Skin in the Game</i>
</a>
</h2>
<p>
A snapshot of Taleb's SITG principle. SITG explores risk/reward incentives. Particularly, if one faces the upside, they must also own the downside risk,
and systems with participants that own their downside risk evolve better.
</p>
<a href="https://medium.com/@tjyothis/navigating-reality-wisdom-from-nassim-talebs-skin-in-the-game-0378327774fa"
class="read-more"
target="_blank">
Read full essay
</a>
</article>
</main>
<footer>
<p>© 2025 Tanmay J</p>
<p>All original writing unless noted</p>
</footer>
</body>
</html>