-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 2.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=New+Amsterdam&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
href="https://unpkg.com/[email protected]/themes/prism-okaidia.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="/static/bundle.css" />
<script src="/static/js/littleBrother.js" defer></script>
<title>Failed Algorithm</title>
</head>
<body>
<header>
<h1>
Failed Algorithm<br>
<span class="deemphasis">A Personal Blog by Gage Schaffer</span>
</h1>
</header>
<nav>
<a href="/">Home</a>
<a href="/posts">Posts</a>
<a href="/portfolio">Portfolio</a>
</nav>
<main>
<div class="welcome-blurb-container">
<h1>Welcome To My Home on the Internet!</h1>
<h2>I write about coding, algorithms, and systems.</h2>
<p>
I'm an IT security analyst that going through his journey to the software
development world. In this personal blog, I'm writing about what I'm
learning and working on.
</p>
<a href="/posts"><button>See All Posts</button></a>
<a href="/portfolio"><button>Portfolio</button></a>
</div>
<h1>Blog Posts</h1>
<div class="post-card">
<div class="tag-button">
<p>javascript</p>
<p>site analytics</p>
</div>
<h2><a href="/posts/writing-custom-site-analytics/">Writing Custom Site Analytics: Part 1</a></h2>
<h3>Anonymous Statistics</h3>
<p>I want to record traffic to my site, but I want to make sure that the statistics are anonymous. Let's practice our Javascript and system design.</p>
<a href="/posts/writing-custom-site-analytics/">
<button>Read More</button>
</a>
</div>
<div class="post-card">
<div class="tag-button">
<p>rust</p>
</div>
<h2><a href="/posts/learning-rust-part-1/">Learning Rust the Hard Way: Recreating the touch Linux Command</a></h2>
<h3>Recreating the touch Linux Command</h3>
<p>I'm trying to break into the industry, and I think knowing the memory-safe programming language Rust will set me apart from my peers. Let's begin this journey.</p>
<a href="/posts/learning-rust-part-1/">
<button>Read More</button>
</a>
</div>
</main>
<footer>
<p>A personal blog by Gage Schaffer</p>
</footer>
</body>
</html>