diff --git a/Makefile b/Makefile index 5d36f1d..6fdea2b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: static site/index-2.html +all: static site/index.html site/index.md .PHONY: clean site static @@ -17,7 +17,7 @@ site/xkcd.css: src/xkcd-rgb.txt src/xkcd-css.py site/style.css: site/xkcd.css src/style.css cp src/style.css site/style.css -site/index-2.html: site/style.css src/index.md src/nav.html +site/index.html: site/style.css src/index.md src/nav.html pandoc src/index.md \ --standalone \ --section-divs \ @@ -25,4 +25,7 @@ site/index-2.html: site/style.css src/index.md src/nav.html --no-highlight \ --include-before-body src/nav.html \ --from markdown+emoji \ - -o site/index-2.html + -o site/index.html + +site/index.md: src/index.md + cp src/index.md site/index.md diff --git a/src/index.md b/src/index.md index 907f1d8..926b907 100644 --- a/src/index.md +++ b/src/index.md @@ -2,34 +2,57 @@ title: nycki.net ... -## welcome! +## Welcome! -my name is Nycki ([ˈnɪki](http://ipa-reader.xyz/?text=%CB%88n%C9%AAki)), and [this is a website!](http://hrwiki.org/wiki/First_Time_Here%3F) +My name is Nycki ([ˈnɪki](http://ipa-reader.xyz/?text=%CB%88n%C9%AAki)) (she/they), and [this is a website!](http://hrwiki.org/wiki/First_Time_Here%3F) -## capitalization? +## Contact -yep, I'm doing the 'intentionally lowercase' thing. I like to reserve capital letters for names. more thoughts on this in my [cookbook](https://klay.gay/self-host). +Some of these will change as I transition from my old internet name 'Nupa' to my new one 'Nycki'. It's just personal preference, I'll still answer to either name for the time being. -## contact - -some of these will change as I transition from my old internet name 'nupa' to my new one 'nycki'. it's just personal preference, I'll still answer to either name for the time being. oh yeah my pronouns are she/they now, thanks! - -- nupanick at google mail +- - -- -- - -## creations +## Creations -stuff I've made! +Stuff I've made! -### braceless javascript +### Braceless Javascript 2018\. a couple of short programs written in browser JavaScript, with the special restriction that I can't use any instructions that require curly braces, like 'if' or 'for'. instead, I replace these instructions with ternaries and lambdas, which makes this a functional programming exercise! -- [fizzbuzz](https://github.com/nycki93/braceless-javascript/blob/master/fizzbuzz.html) -- [99 bottles](https://github.com/nycki93/braceless-javascript/blob/master/bottles.html) +[Fizzbuzz source on GitHub](https://github.com/nycki93/braceless-javascript/blob/master/fizzbuzz.html) -## todo +[99 bottles source on GitHub](https://github.com/nycki93/braceless-javascript/blob/master/bottles.html) -- fill out the 'creations' section a bit more before publishing this +### Portal ZZT + +2008\. A ZZT game inspired by Portal. Available at the Museum of ZZT. + +[PortalZZT in the Museum of ZZT](https://museumofzzt.com/file/p/PortalZZT_v0_5.zip) + +### ZZT Nanogames + +2008\. A collection of ZZT games that use only one screen each. Also includes _Eight Legged Express_, which I believe was made in one weekend as a challenge. + +[ZZT Nanogames in the Museum of ZZT](https://museumofzzt.com/file/n/nanopack01.zip) + +### Collabyrinth + +2008\. A collaborative labyrinth made in ZZT. I organized this collaboration on the z2 forums. + +[Collabyrinth in the Museum of ZZT](https://museumofzzt.com/file/c/clbrnth1.zip) + +### Traps and Zoids + +2007\. Some hand-drawn cartoons and very old web design. Good old HTML 4.0 Transitional. + +[Local mirror](/2007) | [Wayback Machine](https://web.archive.org/web/20071101001849/http://nick.lamicela.org/) + +## Log + +- 2023-12-14. Updated this website to use markdown, via pandoc and make. + +## Todo + +- 2023-12-14. Move server self-host tutorial from to here. diff --git a/static/index.html b/static/index-old.html similarity index 100% rename from static/index.html rename to static/index-old.html