From 82e7ac75954c973a5c59a02684788c0fb26e14dd Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sat, 21 Dec 2024 22:18:18 +0000 Subject: Bump zine 0.3.0 -> 0.8.0 Fix a lot of associated breakage Fix broken rss.xml file as highlighted to me by Matthijs van der Wild (thanks!) --- content/projects/index.md | 6 ------ content/projects/index.smd | 6 ++++++ content/projects/zigvm.md | 31 ------------------------------- content/projects/zigvm.smd | 31 +++++++++++++++++++++++++++++++ content/projects/zipdl.md | 31 ------------------------------- content/projects/zipdl.smd | 31 +++++++++++++++++++++++++++++++ 6 files changed, 68 insertions(+), 68 deletions(-) delete mode 100644 content/projects/index.md create mode 100644 content/projects/index.smd delete mode 100644 content/projects/zigvm.md create mode 100644 content/projects/zigvm.smd delete mode 100644 content/projects/zipdl.md create mode 100644 content/projects/zipdl.smd (limited to 'content/projects') diff --git a/content/projects/index.md b/content/projects/index.md deleted file mode 100644 index 1c70c79..0000000 --- a/content/projects/index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -.title = "About", -.author = "Martin Ashby", -.date = @date("2024-03-01T23:59:52Z"), -.layout = "list.shtml", ---- diff --git a/content/projects/index.smd b/content/projects/index.smd new file mode 100644 index 0000000..1c70c79 --- /dev/null +++ b/content/projects/index.smd @@ -0,0 +1,6 @@ +--- +.title = "About", +.author = "Martin Ashby", +.date = @date("2024-03-01T23:59:52Z"), +.layout = "list.shtml", +--- diff --git a/content/projects/zigvm.md b/content/projects/zigvm.md deleted file mode 100644 index c19fbd3..0000000 --- a/content/projects/zigvm.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -.title = "zigvm", -.author = "Martin Ashby", -.date = @date("2024-05-28T20:18:54+01:00"), -.layout = "single.shtml", ---- - -A tool to download and manage versions of the [zig](https://ziglang.org/) compiler. - -## Why? - -* I got fed up of installing manually -* I like to practice programming by writing small tools - -## Why not AUR/nix/apt/X? - -None of those were quite as convenient as what I wanted, they come with other baggage, and they don't always ship the latest bleeding-edge zig version. - -## How to use - -Run `zigvm` with no arguments to download the latest `master` version of zig and install/symlink in `~/.local.bin`. Run `zigvm -h` to see options. - -## Downloads - -* [Code](https://code.mfashby.net/zigvm/) -* [aarch64-linux](https://dl.mfashby.net/zigvm/v0.2.0/aarch64-linux) [SHA256 checksum](https://dl.mfashby.net/zigvm/v0.2.0/aarch64-linux.sha256) [minisig](https://dl.mfashby.net/zigvm/v0.2.0/aarch64-linux.minisig) -* [x86_64-linux](https://dl.mfashby.net/zigvm/v0.2.0/x86_64-linux) [SHA256 checksum](https://dl.mfashby.net/zigvm/v0.2.0/x86_64-linux.sha256) [minisig](https://dl.mfashby.net/zigvm/v0.2.0/x86_64-linux.minisig) - -Binaries are signed with [minisign](https://jedisct1.github.io/minisign/), public key `RWTsE4a/BXFWjmzxWB0Kko+w47ZRfQhxkF21Zfh7BxRzZm2q6l4GssRa` - -## Release notes \ No newline at end of file diff --git a/content/projects/zigvm.smd b/content/projects/zigvm.smd new file mode 100644 index 0000000..c19fbd3 --- /dev/null +++ b/content/projects/zigvm.smd @@ -0,0 +1,31 @@ +--- +.title = "zigvm", +.author = "Martin Ashby", +.date = @date("2024-05-28T20:18:54+01:00"), +.layout = "single.shtml", +--- + +A tool to download and manage versions of the [zig](https://ziglang.org/) compiler. + +## Why? + +* I got fed up of installing manually +* I like to practice programming by writing small tools + +## Why not AUR/nix/apt/X? + +None of those were quite as convenient as what I wanted, they come with other baggage, and they don't always ship the latest bleeding-edge zig version. + +## How to use + +Run `zigvm` with no arguments to download the latest `master` version of zig and install/symlink in `~/.local.bin`. Run `zigvm -h` to see options. + +## Downloads + +* [Code](https://code.mfashby.net/zigvm/) +* [aarch64-linux](https://dl.mfashby.net/zigvm/v0.2.0/aarch64-linux) [SHA256 checksum](https://dl.mfashby.net/zigvm/v0.2.0/aarch64-linux.sha256) [minisig](https://dl.mfashby.net/zigvm/v0.2.0/aarch64-linux.minisig) +* [x86_64-linux](https://dl.mfashby.net/zigvm/v0.2.0/x86_64-linux) [SHA256 checksum](https://dl.mfashby.net/zigvm/v0.2.0/x86_64-linux.sha256) [minisig](https://dl.mfashby.net/zigvm/v0.2.0/x86_64-linux.minisig) + +Binaries are signed with [minisign](https://jedisct1.github.io/minisign/), public key `RWTsE4a/BXFWjmzxWB0Kko+w47ZRfQhxkF21Zfh7BxRzZm2q6l4GssRa` + +## Release notes \ No newline at end of file diff --git a/content/projects/zipdl.md b/content/projects/zipdl.md deleted file mode 100644 index 0ef7bc6..0000000 --- a/content/projects/zipdl.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -.title = "zipdl", -.author = "Martin Ashby", -.date = @date("2024-05-28T20:18:54+01:00"), -.layout = "single.shtml", ---- - -A program for downloading individual files from a remote ZIP file on a http server that supports [Range](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Range) requests. - -## why? -This was an interesting learning exercise. - -## Download - -Binary releases: -* [linux aarch64](https://dl.mfashby.net/zipdl/0.0.1/aarch64-linux-gnu/zipdl.xz) [checksum](https://dl.mfashby.net/zipdl/0.0.1/aarch64-linux-gnu/zipdl.xz.sha256) -* [linux x86_64](https://dl.mfashby.net/zipdl/0.0.1/x86_64-linux-gnu/zipdl.xz) [checksum](https://dl.mfashby.net/zipdl/0.0.1/x86_64-linux-gnu/zipdl.xz.sha256) - -Download the appropriate file for your platform and the checksum, then check and extract: -``` -sha256sum -c zipdl.xz.sha256 -# result MUST be zipdl.xz: OK - -unxz zipdl.xz -``` -and run with -h for help -``` -./zipdl -h -``` - -To build from source, download the code, download [zig](https://ziglang.org/download/), and run `zig build` to produce a binary in zig-out/bin folder. diff --git a/content/projects/zipdl.smd b/content/projects/zipdl.smd new file mode 100644 index 0000000..0ef7bc6 --- /dev/null +++ b/content/projects/zipdl.smd @@ -0,0 +1,31 @@ +--- +.title = "zipdl", +.author = "Martin Ashby", +.date = @date("2024-05-28T20:18:54+01:00"), +.layout = "single.shtml", +--- + +A program for downloading individual files from a remote ZIP file on a http server that supports [Range](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Range) requests. + +## why? +This was an interesting learning exercise. + +## Download + +Binary releases: +* [linux aarch64](https://dl.mfashby.net/zipdl/0.0.1/aarch64-linux-gnu/zipdl.xz) [checksum](https://dl.mfashby.net/zipdl/0.0.1/aarch64-linux-gnu/zipdl.xz.sha256) +* [linux x86_64](https://dl.mfashby.net/zipdl/0.0.1/x86_64-linux-gnu/zipdl.xz) [checksum](https://dl.mfashby.net/zipdl/0.0.1/x86_64-linux-gnu/zipdl.xz.sha256) + +Download the appropriate file for your platform and the checksum, then check and extract: +``` +sha256sum -c zipdl.xz.sha256 +# result MUST be zipdl.xz: OK + +unxz zipdl.xz +``` +and run with -h for help +``` +./zipdl -h +``` + +To build from source, download the code, download [zig](https://ziglang.org/download/), and run `zig build` to produce a binary in zig-out/bin folder. -- cgit v1.2.3-ZIG