all repos — eyes-like-fire @ 78c43179c427227cab1880af38e43f82bb6860ad

Source code for the main eyes-like-fire website

Updated things about Git
Juniper Beatitudes [email protected]
Sun, 26 Jul 2026 14:00:58 -0500
commit

78c43179c427227cab1880af38e43f82bb6860ad

parent

1e6809d40caa9d2b139433d83b7082560b95a7eb

6 files changed, 18 insertions(+), 19 deletions(-)

jump to
M MakefileMakefile

@@ -1,18 +1,17 @@

PANDOC := pandoc PANDOC_OPTS := -N -s -fmarkdown -tchunkedhtml --shift-heading-level-by=-1 --toc=true --template=src/template.html -Fmermaid-filter --lua-filter=extern/include-files/include-files.lua -build: src/*.md src/*.tex src/template.html +build: src/*.md src/template.html rm -rf build/* pandoc -o build/english.zip src/english.md $(PANDOC_OPTS) pandoc -o build/blog.zip src/blog.md $(PANDOC_OPTS) --toc-depth=1 unzip build/english.zip -d build unzip build/blog.zip -d build/blog - rm build/english.zip build/blog.zip build/francais.zip - rm build/projects-chart.dvi build/projects-chart.aux build/projects-chart.log + rm build/english.zip build/blog.zip python3 feedgen.py > build/blog/atom.xml deploy: build src/lighttpd.conf - rsync -r build juniper@hestia:/home/juniper/website - rsync src/lighttpd.conf juniper@hestia:/home/juniper/website - rsync src/Dockerfile juniper@hestia:/home/juniper/website - ssh juniper@hestia "cd website; podman build -t eyes-like-fire:latest .; podman run --network=host -d -v.:/var/www:Z --replace --name website eyes-like-fire:latest" + rsync -r build juniper@artemis:/home/juniper/website + rsync src/lighttpd.conf juniper@artemis:/home/juniper/website + rsync src/Dockerfile juniper@artemis:/home/juniper/website + ssh juniper@artemis "cd website; podman build -t eyes-like-fire:latest .; podman run --network=host -d -v.:/var/www:Z --replace --name website eyes-like-fire:latest"
M flake.lockflake.lock

@@ -2,16 +2,16 @@ {

"nodes": { "nixpkgs": { "locked": { - "lastModified": 1751271578, - "narHash": "sha256-P/SQmKDu06x8yv7i0s8bvnnuJYkxVGBWLWHaU+tt4YY=", + "lastModified": 1784856561, + "narHash": "sha256-J+Bx1Z6Oeoj2FgnBhRMKyUhhtDoOpTgXYaVLZpDjW4A=", "owner": "nixos", "repo": "nixpkgs", - "rev": "3016b4b15d13f3089db8a41ef937b13a9e33a8df", + "rev": "597283ad8aa0b331c788e97c4c262d58877074ef", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-unstable", + "ref": "nixos-26.05", "repo": "nixpkgs", "type": "github" }
M flake.nixflake.nix

@@ -2,7 +2,7 @@ {

description = "Juniper Beatitudes' site build system"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-26.05"; }; outputs =

@@ -10,19 +10,19 @@ { self, nixpkgs, ... }@inputs:

let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; - fhs = pkgs.buildFHSEnv { + shl = pkgs.mkShell { name = "site-build-env"; - targetPkgs = - pkgs: + packages = (with pkgs; [ gnumake pandoc unzip mermaid-filter + rsync ]); }; in { - devShells.${system}.default = fhs.env; + devShells.${system}.default = shl; }; }
M src/english.mdsrc/english.md

@@ -13,7 +13,6 @@

- [Email me at [email protected]](mailto:[email protected]) - [On Signal](https://signal.me/#eu/lJX7i0uiYETPSh70IIOqLtPkclZcyJpkxC0uKtuGZADCiwP0I-xPEoH9--MsZ8JO) - [On Telegram](https://t.me/weirdgirl98) -- [On My Gitea](https://gitea.eyes-like-fire.org/juniper) There are a few ways you can support me! I have a [wishlist page](https://throne.com/beatitudes), and I'm always down just to chat!

@@ -72,7 +71,7 @@ Short and sweet classical cryptographic primitives. Intended mostly as a learning exercise and **not for normal use**.

### Circe VPN -[Git Repository](https://gitea.eyes-like-fire.org/juniper/circe-vpn) +[Git Repository](https://git.eyes-like-fire.org/juniper/circe-vpn.git) Tiny, fast, portable, and paranoid VPN using primitives from TinyCrypT and other libraries.
M src/template.htmlsrc/template.html

@@ -97,7 +97,8 @@ </nav>

$endif$ $body$ <footer style="text-align: center"> -<span class="navlink"><a href="/index.html">English</a></span> +<span class="navlink"><a href="https://git.eyes-like-fire.org">Git</a></span> +<span class="navlink"><a href="/index.html">Main Site</a></span> <span class="navlink"><a href="/blog/index.html">Blog</a></span> <span class="navlink"><a href="/blog/atom.xml">Atom Feed</a></span> </footer>