blob: cc597de177dc7a3e42b5959a99315298b796990b (
plain) (
blame)
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
|
@use super::{header_html, footer_html};
@()
@:header_html(None, None)
<link rel="canonical" href="https://devcara.com">
<h1>Cara Salter</h1>
<div class="two-column">
<div class="inner-column">
<h3>About me</h3>
I am a:
<ul>
<li>Trans woman (she/her)</li>
<li>Eagle Scout</li>
<li>Software Engineer</li>
</ul>
My interests include:
<ul>
<li>Radio</li>
<li>Event production</li>
<li>Software tinkering</li>
<li>Linux</li>
</ul>
Among other things. <br/><br/>
I am currently pursuing a Bachelors degree in Computer Science at
Worcester Polytechnic Institute.
</div>
<div class="inner-column">
<h3>Skills</h3>
<h4>Web Development</h4>
<ul>
<li>Rust (Warp)</li>
<li>Go (Gin-gonic)</li>
<li>Python (Django/Flask)</li>
<li>NodeJS (Svelte)</li>
</ul>
<h4>Systems Administration</h4>
<ul>
<li>Prometheus & Zabbix Monitoring/Alerts</li>
<li>Ansible</li>
<li>Shell scripting</li>
<li>Nginx</li>
<li>Wireguard</li>
</ul>
<h4>Miscellaneous</h4>
<ul>
<li>Event Planning</li>
<li>Lighting Design</li>
<li>Sound Engineering</li>
</ul>
</div>
</div>
@:footer_html()
|