My personal website.

Compare changes

Choose any two refs to compare.

Changed files
+48 -4
.tangled
workflows
+32
.tangled/workflows/deploy.yaml
···
··· 1 + # Mostly copied from the Wisp docs: https://docs.wisp.place/cli/#cicd-integration 2 + 3 + when: 4 + - event: ['push'] 5 + branch: ['main'] 6 + - event: ['manual'] 7 + 8 + engine: 'nixery' 9 + 10 + dependencies: 11 + nixpkgs: 12 + - coreutils 13 + - curl 14 + - racket 15 + 16 + steps: 17 + - name: build site 18 + command: | 19 + scribble --dest dist index.scrbl resume.scrbl 20 + 21 + - name: deploy to wisp 22 + command: | 23 + # Download Wisp CLI 24 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 25 + chmod +x wisp-cli 26 + 27 + # Deploy to Wisp 28 + ./wisp-cli \ 29 + "notjack.space" \ 30 + --path "dist" \ 31 + --site "site" \ 32 + --password "$WISP_APP_PASSWORD"
+2
README.md
··· 1 # My personal website
··· 1 # My personal website 2 + 3 + This repository contains my personal website, [notjack.space](https://notjack.space/). It's hosted on [wisp.place](https://wisp.place/), built with [Scribble](https://docs.racket-lang.org/scribble/), and deployed using Tangled's [CI spindles](https://tangled.org/tangled.org/core/blob/master/docs/DOCS.md#spindles).
+14 -4
index.scrbl
··· 1 #lang scribble/manual 2 3 - @title{Industrial Torment Nexux Disassembly} 4 5 - I'm Jacqueline, and this is my website, blog, and whatever else I want it to be. 6 7 @itemlist[ 8 - @item{@hyperlink["./resume.html"]{My résumé}, for those interested in hiring someone with an 9 incredibly strange set of skills.} 10 11 @item{@hyperlink["https://github.com/jackfirth"]{My GitHub profile}, for those interested in 12 - exploring my projects.}]
··· 1 #lang scribble/manual 2 3 + @title{Industrial Torment Nexus Disassembly} 4 5 + I'm Jacqueline, and this is my website, blog, and whatever else I want it to be. Here's some links: 6 7 @itemlist[ 8 + 9 + @item{@hyperlink["resume.html"]{My résumé}, for those interested in hiring someone with an 10 incredibly strange set of skills.} 11 12 @item{@hyperlink["https://github.com/jackfirth"]{My GitHub profile}, for those interested in 13 + exploring my projects.} 14 + 15 + @item{@hyperlink["https://tangled.org/did:plc:7oyzfpde4xg23u447zkp3b2i"]{My Tangled profile} --- 16 + it's like github but different.} 17 + 18 + @item{@hyperlink["https://bsky.app/profile/notjack.space"]{My Bluesky profile}, for Posting™.} 19 + 20 + @item{@hyperlink["https://unfoldingdiagrams.leaflet.pub/"]{My blog}, such as it is.} 21 + 22 + @item{@hyperlink["https://tangled.org/notjack.space/site"]{This site's source code}, on Tangled.}]