diff options
| -rw-r--r-- | decadv-2025.html | 40 | ||||
| -rwxr-xr-x | newlog.sh | 24 |
2 files changed, 63 insertions, 1 deletions
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 @@ <div class="win"> <p>here will be some log entries, in reverse chronological order.</p> </div> - <!-- + <!--newlog <h3 id="2025-12-xx">2025-12-xx</h3> <div class="win"> <p> </p> </div> --> + <h3 id="2025-12-08">2025-12-08</h3> + <div class="win"> + <p> +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. + </p> + </div> + <h3 id="2025-12-07">2025-12-07</h3> + <div class="win"> + <p> +another one that i've spent with friends. +also i've learned about <a href="https://en.wikipedia.org/wiki/Gaussian_splatting">gaussian splatting</a> and it got me attracted. +i've tried to make a structure from motion in <a href="https://colmap.github.io">colmap</a>, 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. + </p> + </div> + <h3 id="2025-12-06">2025-12-06</h3> + <div class="win"> + <p> +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. + </p> + </div> <h3 id="2025-12-05">2025-12-05</h3> <div class="win"> <p>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 +/<!--newlog/ ++,/-->/-t/-->/ +?h3?s/-xx/-$day/g +/<p>/r $tmpf +w +EOF + +rm "$tmpf" |
