-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (116 loc) · 5.28 KB
/
index.html
File metadata and controls
129 lines (116 loc) · 5.28 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>tristin forbus</title>
<meta property="og:title" content="tristin forbus" />
<meta name="twitter:title" content="tristin forbus" />
<meta name="author" content=""/>
<meta property="og:site_name" content="tristin forbus" />
<meta property="og:url" content="http://tristinforbus.com/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="generator" content="Hugo 0.120.4">
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="tristin forbus" />
<link href="/index.xml" rel="feed" type="application/rss+xml" title="tristin forbus" />
<link rel="stylesheet" href="/css/style.css" media="all" />
<link rel="stylesheet" href="/css/style-dark.css" media="all and (prefers-color-scheme: dark)" />
<link rel="stylesheet" href="/css/syntax.css" media="all" />
<link rel="stylesheet" href="/css/custom.css" media="all" />
<script src="/js/script.js"></script>
<script src="/js/custom.js"></script>
<script defer src="/js/fontawesome.js"></script>
</head>
<body>
<header class="site-header">
<nav class="site-navi">
<h1 class="site-title"><a href="/">tristin forbus</a></h1>
<ul class="site-navi-items">
<li class="site-navi-item-about"><a href="/about/" title="About">About</a></li>
<li class="site-navi-item-archives"><a href="/archives/" title="Archives">Archives</a></li>
</ul>
</nav>
</header>
<hr class="site-header-bottom">
<div class="main" role="main">
<section class="list home-list">
<article class="article">
<a href="/posts/evolution-of-web-development/" class="article-titles">
<h2 class="article-title">Evolution of web development</h2>
</a>
<ul class="article-meta">
<li class="article-meta-date"><time>December 17, 2023</time></li>
<li class="article-meta-tags">
<a href="/tags/html/">
<i class="fas fa-tag"></i>
html
</a>
</li>
<li class="article-meta-tags">
<a href="/tags/javascript/">
<i class="fas fa-tag"></i>
javascript
</a>
</li>
<li class="article-meta-tags">
<a href="/tags/webdev/">
<i class="fas fa-tag"></i>
webdev
</a>
</li>
</ul>
<div class="article-content">
<p>The <a href="https://www.ariel.com.au/jokes/The_Evolution_of_a_Programmer.html">Evolution of a programmer</a> joke exists for many different languages. I think there’s also room here for evolution of a web developer. I grew up making websites during the Web 1.0 era for fun, began developing professionally in the 2010s, and have been doing mostly web stuff ever since. It’s 2023 now, so I’ve been twiddling with HTML for over 20 years at this point.</p>
</div>
<div class="article-readmore"><a href="/posts/evolution-of-web-development/">Read more...</a></div>
<div class="article-floatclear"></div>
</article>
<article class="article">
<a href="/posts/schemaless-postgres/" class="article-titles">
<h2 class="article-title">Schemaless Postgres</h2>
</a>
<ul class="article-meta">
<li class="article-meta-date"><time>December 3, 2023</time></li>
<li class="article-meta-tags">
<a href="/tags/database/">
<i class="fas fa-tag"></i>
database
</a>
</li>
<li class="article-meta-tags">
<a href="/tags/nosql/">
<i class="fas fa-tag"></i>
nosql
</a>
</li>
<li class="article-meta-tags">
<a href="/tags/postgres/">
<i class="fas fa-tag"></i>
postgres
</a>
</li>
</ul>
<div class="article-content">
I stumbled across a link on HackerNews that Reddit’s database has two tables. Inside was a blog post from 2012 that referenced a presentation by Steve Huffman from 2010. The interesting thing is how Reddit effectively had no schema for their data, even though they were (at least at the time) using Postgres for storage. The gist is there are two tables. One table has the metadata about every thing that Reddit has: users, subreddits, comments, etc.
</div>
<div class="article-readmore"><a href="/posts/schemaless-postgres/">Read more...</a></div>
<div class="article-floatclear"></div>
</article>
</section>
</div>
<div class="site-footer">
<div class="copyright"></div>
<ul class="site-footer-items">
<li class="site-footer-item-rsslink">
<a href="/index.xml" type="application/rss+xml" target="_blank" title="RSS">
<i class="fas fa-rss"></i>
</a>
</li>
</ul>
<div class="powerdby">
Powered by <a href="https://gohugo.io/">Hugo</a> and <a href="https://github.com/taikii/whiteplain">Whiteplain</a>
</div>
</div>
</body>
</html>