Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Build with Calcite"

on:
pull_request:
branches:
- gh-pages
types:
- opened
- synchronize

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- name: install nix
uses: cachix/install-nix-action@v31

- name: setup pages
id: pages
uses: actions/configure-pages@v5

- name: Build with calcite
run: nix run github:cartwatson/calcite

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: calcite-output
path: ./out
49 changes: 49 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: "Build + Deploy with Calcite"

on:
push:
branches:
- gh-pages

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- name: install nix
uses: cachix/install-nix-action@v31

- name: setup pages
id: pages
uses: actions/configure-pages@v5

- name: Build with calcite
run: nix run github:cartwatson/calcite

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: calcite-output
path: ./out

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
37 changes: 0 additions & 37 deletions 404.html

This file was deleted.

16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,9 @@ available at [cartwatson.com](https://cartwatson.com)

## Technology

Created from scratch with vanilla html, css, and js
Hosted on Github Pages
Contact form is connected to Google Form, due to lack of php support for github pages
Created from scratch with html, css, markdown, and [calcite](https://github.com/cartwatson/calcite), my custom static site generator
Hosted on Github Pages

## Design Inspirations

- [Anduril](https://www.anduril.com)
- [Shield AI](https://www.shield.ai)
- [Raytheon](https://www.rtx.com)
- [L3HARRIS](https://www.l3harris.com)
- [Palantir](https://www.palantir.com)
- [Picogrid](https://www.picogrid.com)
- [Nuro](https://www.nuro.ai)
- [Accrete](https://www.accrete.ai)
- [Archangel Imaging](https://www.archangel.im)
- [Space Dynamics Laboratory](https://www.sdl.usu.edu)
- [bear blog](https://bearblog.dev/)
3 changes: 3 additions & 0 deletions content/404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 404 Error

Sorry this page must be under construction, use the navigation buttons above to find your way back
3 changes: 3 additions & 0 deletions content/blog/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Blog Posts

2025-03-12 [Titlte of post](link_to_post)
5 changes: 5 additions & 0 deletions content/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# ABOUT ME

Hi I'm Carter! Welcome to my site.

If you want to chat about what I've written or anything else, reach out to me on [LinkedIn](https://linkedin.com/in/cartwatson), always happy to yap
12 changes: 12 additions & 0 deletions content/now/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Now

Hi I'm Carter! I grew up in Utah but have recently moved to Sourthern California, which is arguably the greatest place on earth (I'm never leaving). I'm a life long Utah State Aggie and a very amatuer road cyclist.

I've worked in or adjacent to the defense industry for almost a decade. In highschool I was a machinist, manufacturing everything from medical components to rifle chambers, I spent my college years with the Space Dynamics Lab in a variety of technical positions, and now I work for Anduril, an autonomous weapons startup.

When I'm not making the world a place. I work on my home lab, catch up on a new TV show with my fiance, or play some casual 4v4 beach vollyball.

If you want to chat about what I've written or anything else, reach out to me on [LinkedIn](https://linkedin.com/in/cartwatson), always happy to yap

What is a [now page](https://nownownow.com/about)

File renamed without changes.
113 changes: 0 additions & 113 deletions css/buttons.css

This file was deleted.

Loading
Loading