This commit is contained in:
Rawley Fowler
2023-07-06 22:33:00 -06:00
parent 4a20ec6457
commit 7f89612023
4 changed files with 152 additions and 5 deletions

125
public/index.html Normal file
View File

@@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Rawley.xyz, Rawley Fowler's web ring">
<title>rawley.xyz</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<style>
div.ticked > i::before {
content: "`";
}
div.ticked > i::after {
content: "`";
}
body * {
font-size: calc(0.33vw + 12px);
}
</style>
</head>
<body class="container fw-light text-decoration-none">
<nav class="d-flex flex-row mt-3">
<div class="me-3">
<a href="/">Home</a>
</div>
<div>
<a href="/blog">Blog</a>
</div>
</nav>
<h1 class="display-1 mt-3">Rawley Fowler</h1>
<p>
Hi, I'm Rawley, a Software Engineer from rural Saskatchewan, Canada.
I specialize in <a href="https://perl.org">Perl</a>, and <a href="https://go.dev">Go</a> development, tackling all areas
of the software life cycle. I also like to dabble in Pure Functional languages. At work I develop microservices using Java, SpringBoot, and PostgreSQL. I'm passionate about software performance,
functional programming, and making programs safer. If you have a position that you think I'd like (especially focusing on Perl, or Go), please feel free to <a href="mailto:rawleyfowler@proton.me">email</a> me.
Outside of my professional work, I spend a lot of time <a href="https://github.com/rawleyfowler">contributing</a> to open-source projects. You may or may not have used some of them :)
</p>
<h2 class="pt-5 display-3">Skills</h2>
<p>
The following are technologies that I can confidently say I am good at.
</p>
<h3 class="display-6">Programming Languages</h3>
<div class="ticked">
<i>Perl</i>
<i>Go</i>
<i>Raku (Perl 6)</i>
<i>OCaml</i>
<i>Haskell</i>
<i>Java</i>
<i>PlpgSQL</i>
</div>
<h3 class="display-6">Operating Systems</h3>
<div class="ticked">
<i>FreeBSD</i>
<i>GNU/Linux</i>
<i>OpenBSD</i>
<i>NetBSD</i>
</div>
<h3 class="display-6">Other</h3>
<div class="ticked">
<i>Docker</i>
<i>Docker Compose</i>
<i>PostgreSQL</i>
<i>MySQL</i>
<i>AWS</i>
<i>RabbitMQ</i>
<i>CouchDB</i>
<i>Podman</i>
</div>
<h2 class="pt-5 display-3">Experience</h2>
<p>
I've been a Software Engineer for around 3 years. I've been contributing to open-source for even longer.
</p>
<div>
<b>Farm Credit Canada (FCC)</b>: Software Developer Consultant. <b>Jan 2023</b> - <b>Present</b>
<p>
Designing, developing, and maintaining a large array of SpringBoot microservices to modernize core customer and lending business functions.
Maintenance on a multi-million line of code Java 7 monolith, including migrating code to new microservices.
</p>
</div>
<div>
<b><a href="https://github.com/mollusc-labs">Mollusc Labs</a></b>: Sole Proprietor. <b>Jun 2023</b> - <b>Present</b>
<p>
A small business that I am sole-proprietor of. This business exists to allow me to build software in my spare-time and license it under an organization.
When taking solo contracts I also use this business as the business name at which the work is being completed by.
</p>
</div>
<div>
<b>Saskatchewan Polytechnic</b>: Instructor. <b>May 2023</b> - <b>Jun 2023</b>
<p>
Instructed a single class during the summer semester at Saskatchewan Polytechnic.
This class covered Docker, Software Performance, Docker Compose, and the basics of Software Architecture.
Students in the end had to develop and deploy a microservice using Docker and a technology of their choice, which was then benchmarked on the last day of class.
</p>
</div>
<div>
<b>Dev-Pro Consulting</b>: Instructor. <b>Jun 2022</b> - <b>Jan 2023</b>
<p>
Worked on various internal projects at Dev-Pro including re-designing from the ground-up, a major internal product, using WebSockets and Angular 14 features.
Daily work consisted of developing with Angular, Java, and PostgreSQL, and deploying through an internal Jenkins CI/CD platform.
</p>
</div>
<h2 class="pt-5 display-3">Education</h2>
<div>
<b>Saskatchewan Polytechnic</b>: Computer Systems Technology. <b>Sept 2021</b> - <b>Jun 2023</b>
<p>
Took a 2 year diploma to upgrade my skills, this included courses in Azure Cloud, Advanced Database Management, and ended with a capstone project using
.NET, Vue.js, Docker, Pusher, Heroku, AWS RDS and PostgreSQL.
</p>
</div>
<div>
<b>University of Regina</b>: Bachelor of Science in Mathematics. <b>Sept 2020</b> - <b>Jun 2021</b>
<p>
Studied various mathematical concepts (mostly Linear Algebra, and Calculus), ultimately did not finish due to extraneous circumstances. Hoping to have the time one day to complete this degree.
</p>
</div>
<div class="my-5">
Links: <a href="mailto:rawleyfowler@proton.me">rawleyfowler@proton.me</a> &gt; <a href="https://github.com/rawleyfowler">GitHub</a> &gt; <a href="https://github.com/mollusc-labs">Mollusc Labs</a>
</div>
</body>
</html>