-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
96 lines (95 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TGCSBJ20HS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TGCSBJ20HS');
</script>
<title>Mike Koscinski</title>
<meta charset="UTF-8">
<meta name="description" content="Personal blog and website of Mike Koscinski.">
<meta name="author" content="Mike Koscinski">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./styles/index.css">
<link rel="icon" href="images/favicon.ico">
</head>
<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=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@700;800;900&display=swap" rel="stylesheet">
<body>
<div class="navbar">
<div class="topbar">
<a href="/">
<h1>Mike Koscinski</h1>
</a>
</div>
<div class="nav-sections">
<div class="menu-item">
<a role="button" href="/">About</a>
</div>
<div class="menu-item focused">
<a role="button" href="blog.html">Blog</a>
</div>
<div class="menu-item">
<a role="button" href="projects.html">Projects</a>
</div>
<div class="menu-item">
<a role="button" href="contact.html">Contact</a>
</div>
</div>
<div class="underline"></div>
</div>
<div class="content">
<div class="archive">
<div class="archive-entry">
<a class="archive-entry-link" href=blog/llm-platform.html>LLMs, AJAX, and computing's next platform shift</a>
<span class="archive-entry-preview">Are LLMs the new mobile computing? Or the new AJAX?</span>
<span class="archive-entry-date">Sep. 21, 2023</span>
</div>
<div class="archive-entry">
<a class="archive-entry-link" href=blog/miami.html>Field Notes: Miami</a>
<span class="archive-entry-preview">Observations from a month spent in Miami.</span>
<span class="archive-entry-date">Jan. 11, 2022</span>
</div>
<div class="archive-entry">
<a class="archive-entry-link" href=blog/nostalgia.html>Aspire After Nostalgia</a>
<span class="archive-entry-preview">Lessons from Pokémon Blue.</span>
<span class="archive-entry-date">May 12, 2019</span>
</div>
<div class="archive-entry">
<a class="archive-entry-link" href=blog/amazon.html>Will Amazon Ads Compromise Search?</a>
<span class="archive-entry-preview">In three years, Amazon Ads grew from $3B to $10B. Will search quality suffer?</span>
<span class="archive-entry-date">May 12, 2019</span>
</div>
<div class="archive-entry">
<a class="archive-entry-link" href=blog/duckduckgo.html>Where Does DuckDuckGo Fall Short?</a>
<span class="archive-entry-preview">Google is better at handling culture-specific nuance.</span>
<span class="archive-entry-date">Apr. 8, 2019</span>
</div>
<div class="archive-entry">
<a class="archive-entry-link" href=blog/finance.html>Is Finance No Longer in Charge?</a>
<span class="archive-entry-preview">Tomorrow's banks will be run by engineers.</span>
<span class="archive-entry-date">Feb. 27, 2019</span>
</div>
<div class="archive-entry">
<a class="archive-entry-link" href=blog/moats.html>Binary Moats</a>
<span class="archive-entry-preview">On defending your business with code and contracts.</span>
<span class="archive-entry-date">Aug. 19, 2018</span>
</div>
</div>
</div>
<footer>
<div class="underline"></div>
<div class="footer-content">
<span>
© Mike Koscinski 2018-2024
</span>
</div>
</footer>
</body>
</html>