-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tom-til</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/light.css">
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="css/dark.css">
<script src="https://unpkg.com/kotlin-playground@1" data-selector="code"></script>
</head>
<body>
<div class="container">
<h1>tom-til</h1>
<p>Welcome to my website! I'm a professional Android developer, piano enthusiast, and marathon runner training for Chicago '24.
When I'm not coding or practicing piano, I'm spending time with my girlfriend and dog. I manage ulcerative colitis through a
paleo diet, which has also helped me overcome asthma.</p>
<h2>DOLB - Daily One Line Blog</h2>
<section class="dolb">
<article>
<h3>Understanding Consistent Hashing</h3>
<p>Posted on <time datetime="2024-11-21">November 21, 2024</time> by <a href="#">Tom</a></p>
<p>An exploration of consistent hashing, its applications in distributed systems, and implementation
details.</p>
<p><a href="blog/consistent-hashing.html">Read more...</a></p>
</article>
<article>
<h3>Android Version Testing for Bluetooth Permissions</h3>
<p>Posted on <time datetime="2024-09-21">September 21, 2024</time> by <a href="#">Tom</a></p>
<p>Today, I flashed an Android 10 image onto a Pixel 4XL previously running Android 14 to test various
permissions sets (for Bluetooth scanning, connecting, and triggering events based on user activity)
varying by build version. Might not be too substantive, but I am developing the muscle memory to
post
here nightly.</p>
<p><a href="#">Read more...</a></p>
</article>
<article>
<h3>Starting My Daily One Line Blog Journey</h3>
<p>Posted on <time datetime="2024-09-18">September 18, 2024</time> by <a href="#">Tom</a></p>
<p>I'm building a journaling habit with this first entry in my "daily one line blog." The goal is to
document my ongoing technical learning—though it won't be entirely exclusive of personal topics.
Expect
entries on Android development, algorithms, AI, books, and more. Entry one in the books!</p>
<p><a href="#">Read more...</a></p>
</article>
</section>
<h2>Code Example</h2>
<pre><code>
fun main() {
println("Hello, Kotlin!")
}
</code></pre>
</div>
</body>
</html>