Skip to content

Commit

Permalink
Basic writeup and resume
Browse files Browse the repository at this point in the history
  • Loading branch information
colinwd committed Oct 29, 2023
1 parent b6399a2 commit 6410a4d
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 3 deletions.
52 changes: 49 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,55 @@
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</head>
<body>
<main class="container">
<h1>Howdy, Earth</h1>
<p>WIP, more to come.</p>
<main class="container-sm">
<div class="row">
<div class="col">
<section id="toc">
<h1>Colin Davis</h1>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#recent-projects">Recent Projects</a></li>
<li>
Links
<ul>
<li><a href="./resume.pdf">Resume</a></li>
<li><a href="">LinkedIn</a></li>
<li><a href="https://github.com/colinwd">Github</a></li>
<li><a href="https://www.instagram.com/colinwd">Instagram</a></li>
</ul>
</li>
</ul>
</section>
<section id="about">
<h2>About</h2>
<p>
Colin Davis (he/him) is a professional software engineer and amateur bird photographer.
</p>
</section>
<section id="recent-projects">
<h2>Recent Projects</h2>
<p>
A selection of recent development projects I've been working on in my spare time.
</p>
<section id="crafting-interpreters">
<h3>klox</h3>
<a href="https://github.com/colinwd/klox">Repository</a>
<p>
A Kotlin implementation of the tree-walking interpreter project from <a href="https://craftinginterpreters.com/">Crafting Interpreters</a> by Robert Nystrom. This was a fun way to learn more about building a parser and lexer and how, at a high level, programming language syntax and semantics are implemented.
</p>
<a href="#toc">top</a>
</section>
<section id="boggle-solver">
<h3>Boggle Solver</h3>
<p>
A Rust command line Boggle board generator and solver. This project uses a <a href="https://github.com/BurntSushi/fst">finite state transducer</a> library for fast prefix search of the standard Scrabble dictionary, and a recursive tree-walking algorithm to iterate through the board and find words.
</p>
<a href="#toc">top</a>
</section>
</section>
</div>
<div class="col"></div>
</div>
</main>
</body>
</html>
Binary file added resume.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.container {
max-width: 800px;
}

0 comments on commit 6410a4d

Please sign in to comment.