summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <nick@nv.delivery>2022-06-16 11:27:04 -0700
committerNick Van Doorn <nick@nv.delivery>2022-06-16 21:27:32 -0700
commit49a61617096e6ff5f21978fed20911d6792ec7e1 (patch)
treee7fe033f40e1fca721cac5990fd71465d872a596
Initial commit
-rw-r--r--index.html92
-rw-r--r--main.css8
-rw-r--r--me.jpgbin0 -> 181389 bytes
3 files changed, 100 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..161113a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta charset="utf-8" />
+ <title>Nicholas Van Doorn</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link rel="stylesheet" href="main.css" />
+</head>
+<body>
+ <header>
+ <div>
+ <h1>Nicholas Van Doorn</h1>
+ <ul>
+ <li><a href="https://git.nvandoorn.com">git.nvandoorn.com</a></li>
+ <li><a href="https://github.com/nvandoorn">github.com/nvandoorn</a></li>
+ <li><a href="nick at nvandoorn dot com">nick at nvandoorn dot com</a></li>
+ <li><a href="https://keys.openpgp.org/search?q=EA91B002A8F4238E">PGP EA91B002A8F4238E</a></li>
+ </ul>
+ </div>
+ <img src="me.jpg" alt="Profile picture of Nicholas Van Doorn, taken in Victoria BC" width="200">
+ </header>
+ <article>
+ <h2>Experience</h2>
+ <ul>
+ <li>
+ <h3>Software Developer - <a href="https://supergood.software/">Super Good Software</a></h3>
+ <em>Jan 2020 to present</em>
+ <p>After working as a contractor with Super Good Software for the second half of 2019, I joined them full time to help our clients launch high volume eCommerce stores using Solidus, Ruby on Rails, and React</p>
+ </li>
+ <li>
+ <h3>Software Developer, Contract - <a href="https://supergood.software/">Super Good Software</a></h3>
+ <p>May 2019 to December 2019</p>
+ <p>Super Good is a software development agency specializing in Ruby on Rails, Spree/Solidus, eCommerce, and React. During this time we worked together to launch a new client app on Rails and React!</p>
+ </li>
+ <li>
+ <h3>Software Developer - <a href="https://brnkl.io/">Barnacle Systems Inc</a></h3>
+ <em>Sept 2017 to Feb 2019</em>
+ <p>After releasing the first version of the app and web service at Barnacle Systems as a contractor, I joined full time to continue building the product. I worked on the mobile/web app, the web backend, and some of the embedded firmware that runs on the physical product.
+ </li>
+ <li>
+ <h3>Software Developer, Contract - <a href="https://brnkl.io/">Barnacle Systems Inc</a></h3>
+ <p>Sept 2017 to Feb 2019</p>
+ <p>I worked with the founder of Barnacle Systems to deliver the first version of their mobile app and web backend.</p>
+ </li>
+ <li>
+ <h3>Software Developer, Contract - <a href="https://ftsinc.com/">Forest Technology Systems</a></h3>
+ <p>Sept 2016 to April 2017</p>
+ <p>During my time at Forest Technology Systems, I worked with a small cross-functional team of engineers, product managers, and sales staff to transform a prototype camera system into a production ready product.</p>
+ </li>
+ </ul>
+ </article>
+ <article>
+ <h2>Open Source Contributions</h2>
+ <ul>
+ <li><a href="https://github.com/SuperGoodSoft/solidus_taxjar">solidus_taxjar</a> - TaxJar integration for Solidus eCommerce stores</li>
+ <li><a href="https://github.com/solidusio/solidus">solidus</a> - eCommerce framework for Ruby on Rails</li>
+ <li><a href="https://github.com/brnkl/VC0706-cam-lib">VC0706-cam-lib</a> - C library to capture photos on the VC0706 embedded camera</li>
+ <li><a href="https://git.nvandoorn.com/sunlight-theme.git/">sunlight-theme</a> - Implement React themes based on the current level of sunlight</li>
+ </ul>
+ </article>
+ <article>
+ <h2>About</h2>
+ <h3>Values and Ethics</h3>
+ <ul>
+ <li>Design should consider all users</li>
+ <li>Products should be secure and prevent abuse by default</li>
+ <li>People are most important</li>
+ <li>Empower everyone to do amazing work</li>
+ </ul>
+ <h3>Skills</h3>
+ <ul>
+ <li>Building beautiful user applications using web technology</li>
+ <li>Collaborating with distributed teams across time zones</li>
+ <li>Using test driven development to implement resilient systems</li>
+ <li>Managing releases with git</li>
+ </ul>
+ <h3>Tools</h3>
+ <ul>
+ <li>Ruby on Rails</li>
+ <li>JavaScript/TypeScript</li>
+ <li>React</li>
+ <li>git</li>
+ <li>Shell (I use ZSH)</li>
+ <li>Vim</li>
+ </ul>
+ </article>
+
+ <footer>
+ <em>Last updated June 16, 2022, 9:26PM PST</em>
+ </footer>
+</body>
+</html>
diff --git a/main.css b/main.css
new file mode 100644
index 0000000..895db7f
--- /dev/null
+++ b/main.css
@@ -0,0 +1,8 @@
+header {
+ display: flex;
+ justify-content: space-between;
+}
+
+body {
+ padding: 40px;
+}
diff --git a/me.jpg b/me.jpg
new file mode 100644
index 0000000..cd25689
--- /dev/null
+++ b/me.jpg
Binary files differ