-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (52 loc) · 2.21 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>About -- Riley Martin</title>
</head>
<body>
<header>
<nav>
<ul class="nav__list">
<li class="nav__item"><a href="index.html">Home</a></li>
<li class="nav__item"><a href="#">About Me</a></li>
<li class="nav__item"><a href="posts.html">Posts</a></li>
</ul>
</nav>
</header>
<main>
<div class="main__content">
<h1>Hi, I'm Riley Martin</h1>
<h2>About Me</h2>
<p>I am a developer living in Pittsburgh, Pennsylvania, USA</p>
<p>I am a Linux fan, currently I use Arch Linux with KDE Plasma
desktop environment.
</p>
<p>My current go-to editor/IDE is VSCodium, a 'liberated' build of
Microsoft's Visual Studio Code. For editing in the terminal, my
preference is Helix, a modal editor based on the selection->action
model. Otherwise I will use vim.
</p>
<p>I know HTML, CSS, Javascript, Python, C and Rust and little bits here
and there of other languages. My favorite language is Rust; it is
efficient (unlike Python), safe (unlike C) and very developer friendly.
</p>
<h2>Skills</h2>
<p>I do fullstack web development, using either Nodejs or Python with Flask
for the backend.
I use React as a frontend framework.
</p>
<p>I am also interested in embedded development. I mostly use C for this,
but occasionally I use C++ as well. One technology in this field that
particularly interests me is Rust; it is much less error-prone than
traditional languages like C/C++ but still has low-level capabilities
along with higher level abstractions than C, without the bloat of C++
</p>
</div>
</main>
<footer></footer>
</body>
</html>