-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
107 lines (101 loc) · 5.48 KB
/
about.html
File metadata and controls
107 lines (101 loc) · 5.48 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About | jtpeller</title>
<!-- CSS & Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel='stylesheet' href='styles/content.css'>
<link rel='stylesheet' href='styles/common.css'>
<!-- scripts -->
<script src='https://d3js.org/d3.v7.min.js'></script>
<script src="scripts/common.js"></script>
<script src="scripts/about.js"></script>
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div id="header"></div>
<div id="main" class="container-lg pb-5">
<h1 class="text-center title">About Me</h1>
<div id="section-0">
<h2 class="section-header">Bio</h2>
<p>
For over 2 years, I have been working as a Systems Engineer (now level II) for
Honeywell Aerospace. I have worked on processes and risk assessments, plus
reviewing products for cybersecurity principles and design. Lately, however,
I have been working with cutting edge Generative AI ("GenAI") technologies,
developing new ways to improve a pilot's workload in the cockpit.
<br><br>
I obtained my <i>Bachelor's in Computer Science</i> in May 2022, and I enjoy
writing desktop, web, and console applications in my free time. I am <b>CompTIA
Security+ certified</b> (SY0-701) as of May 2024.
</p>
</div>
<div id="section-1">
<h2 class="section-header">Accomplishments</h2>
<p>
My greatest achievement is <b>graduating college and university
debt-free</b>. I'd say that my websites, especially my Verse game
and my Sudoku cross-platform app are among my favorite accomplishments.
I am also proud of how many of the OEIS sequences I have programmed
in Go, and of course my Security+ certification.
</p>
</div>
<div id="section-2">
<h2 class="section-header">Programming Languages & Libraries</h2>
<p>
This chart shows the languages and libraries that I use. I have spent
lots of time building my websites, with additional time spent with
Go, Python, C/C++, Flutter, and Java. Despite spending the most time
programming in Web, I would say that <b>Go is my favorite language</b>.
Professionally, I end up working with Python and C/C++ the most.
</p>
<div class="chart" id="chart-div"></div>
</div>
<div id="section-3">
<h2 class="section-header">Programming Concepts</h2>
<p>
Throughout my experience in programming, I have become acquainted with various
programming concepts. These include fundamental skills like <b>designing
algorithms</b>, data structures, dependency management, I/O, string
manipulation, etc. These skills culminate in more complex skills, like working
with <b>Windows and Linux CLIs</b>, new technologies like <b>machine learning
and cutting edge GenAI</b>, and more.
</p>
</div>
<div id="section-4">
<h2 class="section-header">Cybersecurity Concepts</h2>
<p>
Regarding cybersecurity, I have worked on <b>risk assessments</b>, Aerospace
certification documents, process documentation, <b>threat modelling</b>,
and reviews for cybersecurity.
</p>
</div>
<div id="section-5">
<h2 class="section-header">Tools</h2>
<p>
I have used dozens of different tools throughout my career, too many to name.
Some of these include: <b>GitHub</b>, <b>Atlassian JIRA & Bitbucket</b>, CMake,
and GDB. Some more general tools include <b>Adobe Acrobat</b>, and I also have
<i>two decades</i> of experience with Microsoft Office (since Office 2003).
</p>
</div>
<div id="section-6">
<h2 class="section-header">Development Environments</h2>
<p>
<i>Visual Studio Code</i> is my preferred development environment. I have
experience with Visual Studio (2010, 2012, 2017, 2022), JetBrains IntelliJ
(briefly), Eclipse (Java only), and of course Notepad++. I prefer simpler
environments that, while they do have plenty of customizations, still focus on
running quickly and not being the obstacle to development.
</p>
</div>
</div>
</div>
</body>
</html>