-
Notifications
You must be signed in to change notification settings - Fork 0
/
garden.html
342 lines (315 loc) · 8.83 KB
/
garden.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flower garden</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/global.css">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shantell+Sans:wght,[email protected],-100..100&display=swap"
rel="stylesheet">
<style>
body {
background-image: url('img/background-ground.gif');
background-size: 6rem 6rem;
background-repeat: repeat;
image-rendering: pixelated;
background-color: #ffb719;
color: black;
}
::selection {
background: #da8b23;
color: black;
}
:focus-visible {
outline: white 0.2rem dashed;
outline-offset: 0.1rem;
}
ol a {
color: greenyellow;
font-weight: 600;
text-decoration: yellowgreen solid underline 0.2rem;
text-decoration-skip-ink: none;
}
ol a:hover {
background-color: greenyellow;
color: darkgreen;
text-decoration: yellowgreen wavy underline 0.15rem;
}
nav {
padding-top: 1rem;
}
nav img:hover {
transform: scale(1.3);
}
h1 {
color: brown;
font-size: 3rem;
font-weight: 700;
animation: infinite 1s alternate title-bounce linear;
line-height: 1;
padding: 0.0rem 0;
}
@keyframes title-bounce {
0% {
font-variation-settings: "wght" 700, "BNCE" -100;
}
50% {
font-variation-settings: "wght" 700, "BNCE" 0;
}
100% {
font-variation-settings: "wght" 700, "BNCE" 100;
}
}
ol {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
grid-gap: 0.5rem;
color: white;
padding: 2.5rem 0.8rem;
border-image: url("img/background-flowerpot.png") 8 / 1.5rem / 0 round;
background-image: url('img/background-dirt.png');
background-size: 4rem 4rem;
background-repeat: repeat;
box-shadow: rgba(182, 112, 42, 0.62) 0 0.2rem 0.3rem 0.2rem;
}
li {
list-style-type: none;
padding: 1rem;
text-align: center;
}
li::before {
content: '';
display: block;
margin: 0 auto 0.5rem auto;
height: 72px;
width: 57px;
background-size: 57px 72px;
filter: drop-shadow(0 0 0.2rem rgba(119, 49, 16, 0.5));
}
li::after {
content: '';
display: block;
margin: 0 1.5rem;
height: 0.2rem;
background-color: rgba(255, 255, 255, 0.23);
}
li:nth-child(2n)::before {
background-image: url("img/flower-blue-daisy.png");
}
li:nth-child(2n+1)::before {
background-image: url("img/flower-sunflower.png");
}
li:hover:nth-child(2n)::before {
transform: rotate(10deg) scale(1.1);
}
li:hover:nth-child(2n+1)::before {
transform: rotate(-10deg) scale(1.1);
}
li time {
color: rgba(255, 255, 255, 0.8);
font-weight: 600;
font-size: 0.9rem;
}
li div {
padding-bottom: 0.5rem;
}
code {
background-color: rgba(145, 91, 20, 0.7);
padding: 0 0.2rem;
border-radius: 0.2rem;
font-weight: 600;
}
</style>
</head>
<body>
<nav>
<a href="/"><img src="img/button-back.gif" alt=""></a>
</nav>
<h1>Flower garden</h1>
<p>I plant a flower for each new thing I learn or come across, kinda like a diary.</p>
<ol>
<li>
<time>2024-08-09</time>
<div>Learning about OOP in JS!</div>
</li>
<li>
<time>2024-08-02</time>
<div>Finshed reading a book about UX communciation.</div>
</li>
<li>
<time>2024-07-26</time>
<div>TIL that it's quite fun to make custom pyplot diagrams using annotations.</div>
</li>
<li>
<time>2024-07-23</time>
<div>TIL how to do performance testing, load testing, and stress testing.</div>
</li>
<li>
<time>2024-07-20</time>
<div>TIL that MathML exists and is supported in most browsers!</div>
</li>
<li>
<time>2024-06-29</time>
<div>Solidifying my knowledge on React Hooks :)</div>
</li>
<li>
<time>2024-03-14</time>
<div>TIL that you can do animations in SVG, and tried to animate one.</div>
</li>
<li>
<time>2024-03-13</time>
<div>TIL how to manage global css and scripts using web frameworks.</div>
</li>
<li>
<time>2024-03-12</time>
<div>TIL how to set boundaries between CSR and SSR Next.js components.</div>
</li>
<li>
<time>2024-03-05</time>
<div>TIL a little bit on the basics of systems design.</div>
</li>
<li>
<time>2024-03-03</time>
<div>TIL how to use Astro with React (very painful).</div>
</li>
<li>
<time>2024-03-01</time>
<div>TIL how to use useEffect and useState in react.</div>
</li>
<li>
<time>2024-01-31</time>
<div>Finshed reading <i>Atomic Habits</i>.</div>
</li>
<li>
<time>2024-01-10</time>
<div>TIL how convenient Next.js and Tailwind is (this yard is written in Vanilla JS).</div>
</li>
<li>
<time>2023-12-30</time>
<div>Revising commands for Git and Docker.</div>
</li>
<li>
<time>2023-12-20</time>
<div>TIL the difference between USB version specs.</div>
</li>
<li>
<time>2023-12-12</time>
<div>Tried CADding in Fusion 360 today.</div>
</li>
<li>
<time>2023-12-11</time>
<div>TIL what's a router and a modem and a switch.</div>
</li>
<li>
<time>2023-12-03</time>
<div>Played around with Arduino stuff.</div>
</li>
<li>
<time>2023-12-01</time>
<div>TIL how to write and run Makefile commands work.</div>
</li>
<li>
<time>2023-11-25</time>
<div>TIL modern web paradigms like hydration.</div>
</li>
<li>
<time>2023-11-24</time>
<div>Started learning a new web framework Astro.</div>
</li>
<li>
<time>2023-11-20</time>
<div>TIL to use ngrok.</div>
</li>
<li>
<time>2023-11-13</time>
<div>TIL how to manage docker containers and images.</div>
</li>
<li>
<time>2023-11-05</time>
<div>Helped set-up DNS TXT and MX records.</div>
</li>
<li>
<time>2023-11-03</time>
<div>Found a <a href="http://www.icce.rug.nl/documents/cplusplus/">guide on C++ quirks</a> coming from C/Java.</div>
</li>
<li>
<time>2023-11-02</time>
<div>TIL how to dual boot Ubuntu on my Windows device.</div>
</li>
<li>
<time>2023-11-01</time>
<div>TIL how to SSH into remote devices.</div>
</li>
<li>
<time>2023-10-25</time>
<div>TIL difference of outputs of Webpack, Rollup and Vite.</div>
</li>
<li>
<time>2023-10-24</time>
<div>TIL how to use Google Maps API.</div>
</li>
<li>
<time>2023-10-21</time>
<div>TIL I learnt the basics of Gen AI.</div>
</li>
<li>
<time>2023-10-18</time>
<div>Read a paper and saw a swarm plot.</div>
</li>
<li>
<time>2023-10-11</time>
<div>TIL how to use pandas to analyse stock market trends and indices.</div>
</li>
<li>
<time>2023-10-09</time>
<div>TIL the difference between <code>datetime.datetime</code>, <code>np.datetime64</code>, and
<code>pd.Timestamp</code>.</div>
</li>
<li>
<time>2023-09-27</time>
<div>TIL the algorithm to find median from a list.</div>
</li>
<li>
<time>2023-09-16</time>
<div>TIL that there is a faster search than binary search.</div>
</li>
<li>
<time>2023-09-15</time>
<div>TIL how to design interfaces for VR.</div>
</li>
<li>
<time>2023-09-04</time>
<div>Today I started learning React & NextJS.</div>
</li>
<li>
<time>2023-09-02</time>
<div>TIL how CloudFlare works.</div>
</li>
<li>
<time>2023-08-23</time>
<div>Discovered an open-source <a href="https://www.theodinproject.com/" target="_blank">resource</a> teaching web dev</div>
</li>
<li>
<time>2023-08-18</time>
<div>TIL how to use <code>.htaccess</code>.</div></li>
<li>
<time>2023-08-17</time>
<div>TIL how to run external scripts in JS.</div></li>
<li>
<time>2023-08-16</time>
<div>TIL how to use descriptive HTML elements.</div></li>
<li>
<time>2023-08-15</time>
<div>TIL that I don't know how bundlers work.</div></li>
<li>
<time>2023-08-14</time>
<div>TIL how to create a site in VanillaJS.</div></li>
</ol>
<img src="img/decoration-under-construction.gif" alt="This site is under construction.">
</body>
</html>