v1.23.4
will there ever be a v1.23.45678? đ« đ€Ą
@aelaraji@aelaraji.com Reminds me a bit of TeX which approaches pi by adding a digit with each bug fix in its version number. https://en.wikipedia.org/wiki/TeX#TeX82
@movq@www.uninformativ.de @prologic@twtxt.net Yeah, you wonât be disappointed. :-)
@prologic@twtxt.net This is fricking amazing, congratulations! :-) \o/
Thatâs a well done mapping of computer time scale to human time scale: https://youtu.be/PpaQrzoDW2I Matt Godbolt is also a guy that I just enjoy listening to.
@movq@www.uninformativ.de Hmm yeah, youâre right. I should have checked for our location prior to getting too excited.
@aelaraji@aelaraji.com Yeah, a sore neck is always a win. :-P Hereâs nothing really to see, all cloudy. And also a bit cold at -2°C. I donât feel like standing still all that long outside at the moment. :-D
Heck yeah, thatâs really cool! Letâs hope for a clear sky: âOn the evening of 28 February 2025, all seven of the other planets in the Solar System will appear in the night sky at the same time, with Saturn, Mercury, Neptune, Venus, Uranus, Jupiter, and Mars all lining up in a neat row â a magnificent sky feast for the eyes known as a great planetary alignment.â https://www.sciencealert.com/a-rare-alignment-of-7-planets-is-about-to-take-place-in-the-sky
Your code apparently works just fine. Until it @doesnm@doesnm.p.psf.ltât. ;-) The shell languages are weird and having some strange properties that one is just not used to when coming from other languages.
code { white-space: pre }
in their CSS themes to render things as they're supposed to look like.
Well, I stand corrected, pre-wrap
even! https://git.mills.io/yarnsocial/yarn/pulls/1186
shellcheck
: https://github.com/koalaman/shellcheck It points out common errors and gives some suggestions on how to improve the code. Some details in shell scripting are very tricky to get right at first. Even after decades of shell programming, I run into "corner cases" every now and then.
PSA: Yarnd operators might want to define code { white-space: pre }
in their CSS themes to render things as theyâre supposed to look like.
@andros@twtxt.andros.dev I love how this is coming together! :-)
@kat@yarn.girlonthemoon.xyz To improve you shell programming skills, I highly recommend to check out shellcheck
: https://github.com/koalaman/shellcheck It points out common errors and gives some suggestions on how to improve the code. Some details in shell scripting are very tricky to get right at first. Even after decades of shell programming, I run into âcorner casesâ every now and then.
E.g. in getlyr
âs line 7 it warns:
echo -e $(gum style --italic --foreground "#f4b8e4" "'$artist', '$song'")
^-- SC2046: Quote this to prevent word splitting.
For more information:
https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitt...
Most likely not all that problematic in this application, but itâs good to know about this underlying concept. Word splitting is basically splitting tokens on whitespace, this can lead to interesting consequences as illustrated by this little code:
$ echo $(echo "Hello World")
Hello World
$ echo "$(echo "Hello World")"
Hello World
In the first case the shells sees two whitespace-separated tokens or arguments for the echo
command. This basically becomes echo Hello World
. So, echo
joins them by a single space. In the second one it sees one argument for the echo
command, so echo
simply echos this single argument that contains three spaces.
@prologic@twtxt.net Oh yeah, thatâs terrible, yuck! Letâs not do it then. :-)
@prologic@twtxt.net As written in IRC, several things turned me off. I donât have the energy at the moment to wrestle through. :-(
After I stripped off my clothes and turned around, I came to the conclusion that the plan to shower was cancelled at this moment. The faucet had broken right off and was laying in the tub. I noticed that the diameters of the hot and cold water pipes were surprisingly small, didnât expect that. Since the pipes were broken flush with the wall, I couldnât even determine if I had to remove the inner our outer threads, well, remains thereof, in order to attempt to repair this mess. Luckily, I was going to see a plumber mate at the christmas tree collection later anyway.
The first thing that came to mind when I woke up was that I didnât catch the logical flaw in my dream: absolutely no water was coming out of the burst pipes. The whole scenario took place in summer, so the water couldnât be frozen either.
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
@prologic@twtxt.net If youâve got the feed URL in yarndâs cache, you can easily look up a missing nick. If you canât find it, just show the URL (or maybe just the domain name to be halfway consistent with this @nick@domain
thing that yarnd invented) and be done. Itâs really that simple.
When yarnds peer with each other, the odds of actually having come across that feed URL in the past are higher than with traditional clients that only have their local set of subscribed feeds. One additional improvment would be to also look at all the mentions and see if somebody used a nick for that URL and go with that.
Yeah, yarnd currently renders some really weird shit when the mention contains just a URL, but Iâd call that a bug for sure.
Personally, I do not like the @nick@domain
syntax at all. It looks silly to my eyes. What might have also contributed is the fact of this mentions syntax gotten screwed up so many times by yarnd in the past. But thatâs a totally different topic.
@kat@yarn.girlonthemoon.xyz @prologic@twtxt.net So, a burning roll of yarn� :-D
@kingdomcome@yarn.girlonthemoon.xyz Iâm all in!
Hmm, I just noticed that the feed template seems to be broken on your yarnd instance, @kat@yarn.girlonthemoon.xyz. Looking at your raw feed file (and your mates as well), line 6 reads:
# This is hosted by a Yarn.social pod yarn running yarnd ERSION@OMMIT go1.23.4
^^^^^^^^^^^^
Looks like the first letters of the version and commit got somehow chopped off. Iâve no idea what happened here, maybe @prologic@twtxt.net knows something. :-? Iâm not familiar with the templating, I just recall @xuu reporting in IRC the other day that heâs also having great fun with his custom preamble from time to time.
That âbrokenâ comment doesnât hurt anything, itâs still a proper comment and hence ignored by clients. Itâs just odd, thatâs all.
@movq@www.uninformativ.de Very cool!
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
tt
currently supports all three forms: @<nick url>
, @<url>
and even the illegal @<nick>
. The difference between the last two is whether the token in angle brackets looks like a URL or not. Whenever a nick is available, the nick is rendered. In case there is just a URL, it tries to resolve the nick from the subscriptions. If that also does not work, it displays the URL.
@andros@twtxt.andros.dev Even though Iâm not an Emacs user, thatâs really cool! :-)
@bender@twtxt.net Hahaha! :-D
@kat@yarn.girlonthemoon.xyz Thanks!
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
@prologic@twtxt.net @movq@www.uninformativ.de Well, the original Twtxt Specification explicitly allows for the short form with just a URL and no nick: https://twtxt.readthedocs.io/en/latest/user/twtxtfile.html#format-specification
Mentions are embedded within the text in either
@<source.nick source.url>
or@<source.url>
format [âŠ]
Iâd just continue supporting it, even though I donât see it all that often in the wild. I guess more common is the case where just a nick is given, which is illegal. But yarnd users seem to produce it every now and then.
Whatâs the motivation for deprecation?
@movq@www.uninformativ.de Woohoo, noice! Now you can ship, even sell it! :-D
All kidding aside, even though I never wrote a proper brainfuck program myself, I do like that. :-) Keep it going.
@kat@yarn.girlonthemoon.xyz The early bird⊠oh wait. :-D
Yeah, @bender@twtxt.net, I absolutely love it! :-D Monty Python just rocks!
This very knight inspired me to make myself a knight helmet with opening visor out of an old washing machine sheet metal years ago for a theater play. It was really great fun, both making the helmet as well as using it during the week in the play as a silly and shady prince who got all his tracts of land by winning dubious games.
I just couldnât really hear very well in it. And if somebody hit me on the head or just slightly knocked on the helmet, it was incredibly loud. No fine craftmanship by any means and obviously historically extremely questionable at best, but it did the job well enough. One of the running gags was that I had to open the visor when I wanted to talk. Here are some photos in action, youâll find many more when surfing through the gallery:
- https://wawuwo.de/2016/woche2/montag/017.html#image
- https://wawuwo.de/2016/woche2/dienstag/019.html#image
- https://wawuwo.de/2016/woche2/mittwoch/156.html#image
- https://wawuwo.de/2016/woche2/donnerstag/008.html#image
- https://wawuwo.de/2016/woche2/freitag/036.html#image In one lunch break my page and I decided to dress up and play a game of dice against the kids. However, we used badly cogged dice. We just added a few dots of paint on one of the two dice, so that it had two fours, two fives and two sixes or something like that. I always told my opponents: âYou can choose whatever dice you want. Except for the red one, thatâs my lucky dice!â As well-behaved children, they then selected the blue, unbiased one. And usually lost. However, I remember there was one kid that beat me with four sixes in row. :-D Although we thought, we make it halfway obvious that this game is truly not fair, it took them extremely long to figure out that we had messed with my lucky dice. When they finally did, they got super angry. Some of them were on the brink of beating me up. That was really nice to see their sense of justice kick it. :-)
- https://wawuwo.de/2016/woche2/freitag/169.html#image
@movq@www.uninformativ.de Woah, thatâs insane! Yeah, I wanted to take it easy as well, but then suddenly got 9:30 hours on the clock⊠:-/
Vacations were great, it took me five attempts this morning to enter my disk encryption password. :-D
An hour later and I have glued together a new batch of cardbord boxes. Iâve cut out the blanks several days ago, though. Easy upcycling project:
@movq@www.uninformativ.de Yeah, some smileys in MS Teams are as well. :-(
@movq@www.uninformativ.de That looks neat! In the past I always used some Jitsi instance for screen shares.
@movq@www.uninformativ.de I read some of them that I thought might be kinda important. But nearly none really were. I gotta try your approach next time. :-)
@movq@www.uninformativ.de Wow, thatâs cool. :-) Even witchcraft! :-D
My shoulder muscles are sore from yesterdayâs overhead concrete drilling. I even totalled a good drill bit. The workshop air cleaner is now installed on the ceiling. I even can plug in the shop vac directly above its usual location without having to walk over (or usually on) the cord on the ground. The shop vac hose crane had to be shortened 9cm in length in order to fit underneath the air cleaner.
@aelaraji@aelaraji.com Doesnât happen all that often over here either. But Iâd estimate a few times a year.
@bender@twtxt.net Iâm that kind of dude who disables all silly animations and delays. Simply donât waste my time, please. We have fast enough computers nowadays, no need to slow them back down artificially.
@movq@www.uninformativ.de Over-ear headphones make moving and turning around quite uncomfortable. But it looks like youâre having a very calm sleep, unlike me, who likes to turn a bit on the side every now and then, too.
When I use noise cancelling devices in bed (absolutely required at scouting events), itâs simple ear plugs. I got myself a big pack of 200 pairs nine and a half years ago (oh wow, didnât realize I have them this long). A lifetime supply. Especially when I reuse them two, three dozen times or so before theyâre worn out and donât seal properly anymore.
I received a tad over four hundred e-mails during my three and a half weeks vacation. Thatâs actually really good, I expected way more. It just would have been nice if some bot e-mail addresses hadnât changed and hence slipped through my sorting filter rules in the first place.
@prologic@twtxt.net True. :-)
@movq@www.uninformativ.de Well, congrats, I guess! :-D I never had Vim crash on me, they do a killer job on keeping it stable.
Oh no, best wishes, @aelaraji@aelaraji.com! To hopefully brighten your day a tad:
@prologic@twtxt.net @eapl.me@eapl.me @bender@twtxt.net I just found:
Equilibrium problems are solved by method of relaxation numerically.
â Manoj Kumar and Garima Mishra, https://www.scirp.org/html/8798.html
Reminds me of deliberately misattributed quotes from a funny German book series âDie KĂ€nguru-Chronikenâ, like:
How much is the fish?
â Karl Marx
Iâm positively surprised there is even an English wikipedia page about The Kangaroo Chronicles. Somebody gathered a list with all of them.
@bmallred@staystrong.run Oh no! Best of luck to restore everything. Unfortunately, I cannot provide you a copy of your twtxt feed. It turns out when the messages were gone from your feed and I refetched the now empty feed, all messages were also dropped from my local cache. :-/ But it looks like youâre on something already. The message timestamps are all way off, though.
@movq@www.uninformativ.de @kat@yarn.girlonthemoon.xyz Agreed!
@kat@yarn.girlonthemoon.xyz Pics or it didnât happen! We were already back at 14°C today. But there might be chance of snow towards the end of the week. Letâs see.
@movq@www.uninformativ.de Sounds about right. :-D Itâs now calm again.
Always noise, whichever way you loo^Whear at it. :-(
@movq@www.uninformativ.de This video never gets old! :-) Now I ended up on https://brendangregg.com/specials.html#rshutdown and laughing my ass off. :-D
Meh, I hit an import cycle while writing tests. Now I have to relocate some code. What do we conclude from that: donât write tests. ;-)
Where is all this wind suddenly coming from?
"twtxtfeevalidator/0.0.1"
UA about? I thought I could ask before throwing a 1000GB file at it đȘ€ could it be the same 'xt' thing @lyse was talking about the other day?
@aelaraji@aelaraji.com Thank you very much, glad you like it. :-) I always try to make web pages use as much semantic tags as possible and keep the HTML very simple, so that they also have a chance to look decent in terminal browsers. The logo took me a few hours to draw in all its three sizes.
"twtxtfeevalidator/0.0.1"
UA about? I thought I could ask before throwing a 1000GB file at it đȘ€ could it be the same 'xt' thing @lyse was talking about the other day?
@aelaraji@aelaraji.com Ta! Itâs just the millenia old tabs vs. spaces debate. ;-) Hereâs a screenshot, that also kinda serves as a preview of the ugly â yet functional â web interface:
@bender@twtxt.net Magnetic-core memory. SCNR.
@movq@www.uninformativ.de Oh dear. All the best of luck with that noise! And the disks.
@movq@www.uninformativ.de I donât use them either.
@movq@www.uninformativ.de Thanks! I already found it and patched it to run in my ancient Python version (no match
keyword and exec(âŠ)
only allows globals
and locals
as positional arguments). :-) https://lyse.isobeef.org/tmp/mcalc-patched.py.txt
@prologic@twtxt.net Excellent, working fine now. Thank you!
@movq@www.uninformativ.de Truly classic. :-D
@movq@www.uninformativ.de That sounds super useful! I always used bc
and ibase=2
/obase=2
for conversions. But your digit grouping is what I always lacked. I gotta switch.
@movq@www.uninformativ.de Yeah, the Python docs are more like a book. They absolutely shine if you have no idea and read them from top to bottom. The tutorial is baked right in. But they donât work all that perfect as cheat sheets. I also remember looking for the return types way too long in the past.
I would have thought that this could be easily improved when type hints are in place. And it sure does: https://www.tornadoweb.org/en/stable/httpclient.html#tornado.httpclient.HTTPClient.fetch
@movq@www.uninformativ.de Itâs crazy! I thought about it the other day on my hike. There are so many shady areas in winter that are fully blasted by the sun in summer.
@movq@www.uninformativ.de Heck yeah, theyâre both very lovely! I like how you can still see the full disk through the clouds in the first one.
@kat@yarn.girlonthemoon.xyz Oh cool, I wish I had a similar subject in school. :-)
"twtxtfeevalidator/0.0.1"
UA about? I thought I could ask before throwing a 1000GB file at it đȘ€ could it be the same 'xt' thing @lyse was talking about the other day?
I cobbled that together yesterday, @aelaraji@aelaraji.com. Since I was too lazy to write some tests, I simply hit your feed as I knew it contains two invalid lines right now. Sorry mate! :-( Next thing is to actually write some proper tests, improve the messages, etc.
Hereâs the code: https://git.mills.io/yarnsocial/validator
Looking forward to that, @prologic@twtxt.net. :-)
@prologic@twtxt.net Looks like Iâm hitting this now when reloading my subscriptions:
$ grep twtxt.net .config/twtxt/config | wc -l
26
@eapl.me@eapl.me Thatâs a nice quote. I like it.
@prologic@twtxt.net Nah, itâs really not necessary from my point of view. Thereâs not enough math here that would justify it. In the spirit of simplicity, Iâd leave it off. O:-)
@movq@www.uninformativ.de The rabbit hole deepens. :-D
@kat@yarn.girlonthemoon.xyz Static angles for too long get indeed a bit boring to watch in my opinion, but just experiment with it. Whatâs the worst that could happen? Wasted disk space or people increase playback speed to time lapse or fast-forward. Hence, not a huge issue. Even if only you had fun recording it and learned something along the way, itâs already a win. Everything else is a bonus on top.
@kat@yarn.girlonthemoon.xyz Yiha! I reckon the video is a bit squished together on the horizontal axis. Maybe your video site messed something up in postprocessing? No idea. Anyway, youâre already better at guitar than I ever was.
If you donât wanna buy a tripod, you could make yourself a makeshift one with some sort of a sandbag, cherry pit pillow or an old, cut off and sewn shut trouser leg section filled with rice, lentils, etc. This gives you a shapeable surface where you can simply rest the camcorder on. It allows for some limited vertical up and down pitch. Obviously, that wonât work for extreme angles, but might be just enough for your application of recording at your desk. You just have to watch out for the side to side roll, this could otherwise lead to a slanted sailboat video. ;-)
@kat@yarn.girlonthemoon.xyz Iâm an absolute sucker for all sorts of crafts videos, mostly wood and metal working, but also leather and construction. So obviously, your Tux sewing project would make a good video in my opinion. :-D (But I fear it would require way more work than just talking into the camera. Think of camera setup time with framing and focusing, repositioning a couple of times, editing, yada, yada, yada. I documented wood working build processes in my shop in the past and it made the projects take easily ten times as long, if not more. So, I stopped doing that.)
As kids we recorded some action films on magnetic tape camcorders. That was also great fun.
Couldnât find anybody to join me this arvo, so I went alone. Only in the forest I began to see real snow. And then of course with each meter of elevation gain. I reckon there were 5-6 cm at the summit, so there is still room for improvement. The weather was absolutely stunning, a sunny blue sky alternating with clouds, most of my hike hardly any wind and 1°C. Climbing the mountain was a different story, the wind hit me hard.
I just love the wind-brushed formations of ice on the twigs and branches. They look soooo incredibly cool. It was kinda hard to capture them on film with the wind pushing everything around.
On the way down I took the narrow and currently fairly slippery path that was closed for some weeks due to felling activity. It looks so different with heaps of trees on the ground now. Theyâve also sawn down the tree with the small hole near the ground (which I think Iâve shown a few times in the past). The beech in 52 to 54 was probably hit by lightning a few months ago. At least itâs completely charred.
@kat@yarn.girlonthemoon.xyz @movq@www.uninformativ.de Right!? :-) (In retrospect, must be later than elementary school, but still at least a decade old.)
Haaa! It was only now that I realized that gentoo is indeed a penguin species, I never knew that. Nice! I was always under the impression that the Gentoo distribution was simply named after an invented word. Well, I was so wrong. Thanks for teaching me. :-)
@movq@www.uninformativ.de I never used DOS or OS/2, but I fully agree with you. A Unix shell with its tool landscape is hard to beat (photo/video viewing/editing aside).
@movq@www.uninformativ.de Thatâs so damn cool mate! I went through the code, but this lowlevel stuff is really not my favorite cup of tea. Having said that, it was actually really nice to see the abstractions and APIs work together and how things are getting indeed very readable in the userland programs. Thatâs easy to track in this extremely tiny OS implementation. Excellent work, keep on hacking!
Now, you just have to quickly add a network stack and then can write a twtxt client for it! ]:->
@movq@www.uninformativ.de Thatâs neat, good old $\sum_{i=1}^{9} i^3$ (letâs see if yarndâs markdown parser has LaTeX support or not ;-)).
Rode my bicycle into town. What the hell is wrong with some of these motorists!? Here in right lane traffic land, a car reversed out of the driveway on the left into the road and nearly hit me. And this happened twice! If you donât fucking see, how about you go slowly and not just hope that nobody is coming!? The first one even decided to honk at me. SUV drivers confirming prejudiceâŠ
Well, at least I could help a lady with transfering her child in a pram.
@kat@yarn.girlonthemoon.xyz Only the schedule syntax. :-D
@abucci@anthony.buc.ci @bender@twtxt.net Sweet, I wasnât aware of that either.
xt
out there? Does anyone know? I did not find anything for "xt/0.0.1".
Excellent, thank you very much @aelaraji@aelaraji.com! :-) It doesnât set a custom User-Agent
header, though.
@kat@yarn.girlonthemoon.xyz Please do! :-) My brother made my penguin a Tux scarf one or the other decade ago when he was in probably elementary school: https://lyse.isobeef.org/tmp/tux-scarf.jpg
@bender@twtxt.net :-D Unfortunately, there is not much white fluffy stuff on the ground at all: https://lyse.isobeef.org/morgensonne-2025-01-03/01.jpg (And my brain is broken, Iâd like to change it. I first called the directory â2024-05-03â. O_o)
Oh nice, it snows. :-)
xt
out there? Does anyone know? I did not find anything for "xt/0.0.1".
@prologic@twtxt.net Hmm, whatâs this Emacs client you heard about?
@movq@www.uninformativ.de Unfortunately, there is no feed URL or nick in the User-Agent, it just consists of âxt/0.0.1â, thatâs it. And this client was only active from mid-November until the end of the month.
Itâll probably remain a mystery, weâll never know.
@arne@uplegger.eu Danke! Ui, sehr schön, das sind zweifelsohne hervorragende Upcycling-Projekte. :-) Ja, im Baumarkt Holz zu kaufen ist ziemlich teuer, erst recht, wenn man sich mal die QualitÀt genauer anschaut.
@prologic@twtxt.net Yiha, thatâs great news! Now you just have to migrate away from their DNS, too. :-)
Once again I glimpsed at my twtxt feed access log. Now Iâm wondering: is there a twtxt client named xt
out there? Does anyone know? I did not find anything for âxt/0.0.1â.
@kat@yarn.girlonthemoon.xyz Oh nice, Iâd love to see some progress photos. :-)
Gesundes Neues, @arne@uplegger.eu! Was machst Du mit den Raketenstecken? Bastelst Du damit tolle Dinge? Ich hab damit zwei kleine RegÀlchen zusammengeleimt: https://lyse.isobeef.org/tmp/tischbohrmaschinenregal/10.jpg
Der Wind hat mir soeben einen neuen Stecken beschert, lag er doch plötzlich vor der TĂŒr. Muss wohl vom Dach runtergekommen sein. Damit hab ich ganze zwei dieses Jahr. Hier wird sehr stark auf Böller gesetzt, ein absolutes Unding!
Thank you, @kat@yarn.girlonthemoon.xyz and @ionores@twtxt.net! Yeah, number four looks like a forest fire.
It was supposed to start raining this afternoon, but a rain cloud hit us in the morning just when we approached the foot of our backyard mountain. With the dark sky above us and wind speed picking up, we decided to take the next turn and head back. Luckily, the rain didnât last long, so we paid the tadpole pond a visit to prolong our stroll. My mate told me that it was frozen a few days ago, but there was not much of the icy cover left today. https://lyse.isobeef.org/waldspaziergang-2025-01-02/
We had a faint yellow-orange-redish sky this evening. Only subtle, but it was actually one of those rare 360° sunsets. Just when I thought, that was it, itâs now over, the colors took off like crazy: https://lyse.isobeef.org/abendhimmel-2025-01-01/
A much nicer start into the year than all the hell yesterday. However, just as I type this, there come also the next round of explosions as darkness falls. Those bloody fuckers, please blow yourselves up!
@ionores@twtxt.net Opening the windows is the worst you can do with all that crazy smoke out there. But the music ainât too bad. :-)
@movq@www.uninformativ.de This is indeed very cool! :-) Unfortunately, I do not have a proper hot glue gun. Would have to rig something up from timber.
@movq@www.uninformativ.de Implementing my own TUI rendering in the tt
rewrite, I know what a headache this can be. :-)
@movq@www.uninformativ.de Itâs not any better on the âgroundâ with trees and buildings around. They donât dampen at all, in fact the houses just cause reverb and amplify the bangs. Rest assured, I did not hear any people laughing or anything in that nature. Just grenades going off. Talking to my mates, it appears that I live in an especially bad shithole, they reported a noticable reduction of explosions around 00:20. Over here, there was constant fire till around 02:00.
Yep, thatâs exactly how I imagine a war zone, too.
Whoops, this of course should have read âother than on the last three daysâ. Yeah, people give a fuck, @movq@www.uninformativ.de. And police doesnât care either. https://de.wikipedia.org/wiki/Feuerwerk#Bundesrepublik_Deutschland_(Gegenwart)
@movq@www.uninformativ.de Wow, quite an elaborate editor youâve programmed there!
@bender@twtxt.net For sure, we have isolated bangs since at least 12th December, too. That day I also noticed piles of cracker garbage in the forest. What assholes. Luckily, itâs illegal to sell fireworks other than after the last three days in the year. However, people can still import them and they do. :-(