From be69562a42c781de1d6938c7d579f12aafcd7c8a Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 30 Jul 2023 15:36:15 +0200 Subject: realwallpaper: ignore constellation errors --- krebs/5pkgs/simple/realwallpaper/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'krebs/5pkgs') diff --git a/krebs/5pkgs/simple/realwallpaper/default.nix b/krebs/5pkgs/simple/realwallpaper/default.nix index 544abb3a..5364a37d 100644 --- a/krebs/5pkgs/simple/realwallpaper/default.nix +++ b/krebs/5pkgs/simple/realwallpaper/default.nix @@ -275,7 +275,7 @@ pkgs.writers.writeDashBin "generate-wallpaper" '' } ./get_constellations.py} ${pkgs.fetchurl { url = "https://raw.githubusercontent.com/ofrohn/d3-celestial/d2e20e104b86429d90ac8227a5b021262b45d75a/data/constellations.lines.json"; sha256 = "0g71fdrnxvxd6pcqvihj2q9iaynrl7px45kzw6qm1kymynz6ckr9"; - }} > constellations.arcs + }} > constellations.arcs || : # seems like astropy doesn't want to convert from icrs to itrs anymore xplanet --num_times 1 --geometry $xplanet_out_size \ --output xplanet-krebs-stars-output.png --projection merc \ -- cgit v1.2.3 From 6e63efa3645353bc0549f5f152ef811fff5d644c Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 30 Jul 2023 21:42:56 +0200 Subject: htgen-paste: add DELETE --- krebs/5pkgs/simple/htgen-paste/src/htgen-paste | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'krebs/5pkgs') diff --git a/krebs/5pkgs/simple/htgen-paste/src/htgen-paste b/krebs/5pkgs/simple/htgen-paste/src/htgen-paste index 74266e53..9d57d07e 100644 --- a/krebs/5pkgs/simple/htgen-paste/src/htgen-paste +++ b/krebs/5pkgs/simple/htgen-paste/src/htgen-paste @@ -22,7 +22,17 @@ case "$Method $abs_path" in printf 'Connection: close\r\n' printf 'Content-Length: %d\r\n' $(wc -c < $item) printf '\r\n' - cat $item + cat "$item" + exit + fi + ;; + "DELETE /"[0-9a-z]*) + if item=$(find_item ${abs_path#/}); then + printf 'HTTP/1.1 200 OK\r\n' + printf 'Server: %s\r\n' "$Server" + printf 'Connection: close\r\n' + printf '\r\n' + rm "$item" exit fi ;; -- cgit v1.2.3