From 28097fc1c0b67d4b244db0aa339047706550f580 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Tue, 9 Dec 2025 13:26:12 +0300 Subject: =?UTF-8?q?days=206=E2=80=938:=20something=20something?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit didn't manage to do anything related to writing systems. but i found some old files that might turn out to be very useful in future research. --- decadv-2025.html | 40 +++++++++++++++++++++++++++++++++++++++- newlog.sh | 24 ++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100755 newlog.sh diff --git a/decadv-2025.html b/decadv-2025.html index ed85139..1928dd2 100644 --- a/decadv-2025.html +++ b/decadv-2025.html @@ -32,13 +32,51 @@

here will be some log entries, in reverse chronological order.

- +

2025-12-08

+
+

+this was a busy day at work, like all mondays are. +day before i started automatic reconstruction in colmap, +because i figured it would take some time. +actually, it died a few times, there wasn't enough +memory. +i stopped all daemons and closed display server so it could have all power it needs. + +and it finished! but the results are quite roughh and noisy. and it took whooping 46GiB of space! +didn't even get close to gaussian splatting. will try that on a lighter dataset. +

+
+

2025-12-07

+
+

+another one that i've spent with friends. +also i've learned about gaussian splatting and it got me attracted. +i've tried to make a structure from motion in colmap, but tinkered with it for a long time without any good results. +it is quite heavy and needs a lot of storage and computing power. +we also tried to do our first linocuts. we've figured out how to cut, +but not so much how to print, that's a thing to learn. +in the evening we went to the swimming pool. i try to add something physical to my life, +otherwise it's just computers and work. +

+
+

2025-12-06

+
+

+this day i spent time with friends. +we went to a flower market (or a festival, i am not sure how these things are named, flower event). +plants were nice, but the place they choose to host such event wasn't fit for it. +there were narrow spaces between stands, and there were quite a lot of vizitors, +so to see anything or even go through one had to +push through people. +

+

2025-12-05

i found the thing! diff --git a/newlog.sh b/newlog.sh new file mode 100755 index 0000000..160b2a5 --- /dev/null +++ b/newlog.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +day="$(printf '%02d' "$1")" +[ -z "$1" ] && day="$(date +%d)" + +echo "new log entry for day $day" + +tmpf="$(mktemp)" + +ed "$tmpf" || { + echo "oops, try again" + echo "$tmpf" + exit 1 +} + +ed "decadv-2025.html" << EOF +//-t/-->/ +?h3?s/-xx/-$day/g +/

/r $tmpf +w +EOF + +rm "$tmpf" -- cgit v1.2.3