diff options
author | Nicholas Van Doorn <nick@nvandoorn.com> | 2025-04-16 20:20:30 -0700 |
---|---|---|
committer | Nicholas Van Doorn <nick@nvandoorn.com> | 2025-04-16 20:20:30 -0700 |
commit | d7bafef78304da00182fe9838b31af8f42d88019 (patch) | |
tree | a95a823b7ef9ac3bc5c1e0a0e1214ef47eddd86b |
-rw-r--r-- | assets/main.css | 21 | ||||
-rw-r--r-- | assets/me.jpg | bin | 0 -> 149683 bytes | |||
-rw-r--r-- | index.html | 120 |
3 files changed, 141 insertions, 0 deletions
diff --git a/assets/main.css b/assets/main.css new file mode 100644 index 0000000..8e6e218 --- /dev/null +++ b/assets/main.css @@ -0,0 +1,21 @@ +body { + margin: 5%; +} + +@media (min-width: 1200px:) { + body { + margin: 100px auto; + width: 800px + } +} + + +header { + display: flex; + justify-content: space-between; + flex-wrap: wrap; +} + +header img { + margin-left: 20px; +} diff --git a/assets/me.jpg b/assets/me.jpg Binary files differnew file mode 100644 index 0000000..8d2aefa --- /dev/null +++ b/assets/me.jpg diff --git a/index.html b/index.html new file mode 100644 index 0000000..ce019c0 --- /dev/null +++ b/index.html @@ -0,0 +1,120 @@ +<html> + <head> + <title>Nicholas Van Doorn</title> + <link rel="stylesheet" href="assets/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="mailto:nick%20at%20nvandoorn%20dot%20com">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="assets/me.jpg" width="200px" alt="Profile picture of Nicholas Van Doorn, taken in Victoria BC"> + </header> + <article> + <h2>Experience</h2> + <ul> + <li> + <h3>Senior Software Developer - <a href="https://supergood.software/">Super Good Software</a></h3> + <em>March 2022 to March 2025</em> + <p>After several years at Super Good, I moved to a more senior role. + Transitioning into a more senior role at SuperGood involved primarily + spending more time mentoring other developers at the company and + taking a more active role in leading open source work on the Solidus + project. + </p> + </li> + <li> + <h3>Software Developer - <a href="https://supergood.software/">Super Good Software</a></h3> + <em>Jan 2020 to March 2022</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. + </p> + </li> + <li> + <h3>Software Developer, Contract - <a href="https://brnkl.io/">Barnacle Systems Inc</a></h3> + <p>July 2017 to Sept 2017</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, Co-op - <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> + </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> + <h3>Hobbies</h3> + <ul> + <li>Sim Racing</li> + <li>Cars</li> + <li>Keyboard building</li> + <li>Collecting iPods</li> + <li>Baking</li> + </ul> + </article> + <footer> + <em>Last updated April 12, 2025, 11:49AM PDT</em> + </footer> + </body> +</html> |