@suitechic@yarn.girlonthemoon.xyz Itās the exact opposite for me. :-)
@bender@twtxt.net I always schedule the next appointment right away. :-) Yeah, over here, itās just winter. Nothing really surprising. But it gets us every time. I prefer the ice over the the fire for sure.
@movq@www.uninformativ.de That was the only time I left the house today.
Walking those few hundred meters to the dentist and home took me at least three times as long as usual. Complete sheets of ice on the footpaths, definitely ice skating territory. The dentist was caught in a traffic jam and arrived about an hour late. On my morning journey I saw two ambulance operations, one on the way there and the other one when I returned. Just 200m apart. I fear itās going to be an exhausting day for all the rescue personell.
@xuu@txt.sour.is Haha, thatās cool! Be careful with reporting or they might sue you to death.
@arne@uplegger.eu Uuhhhh, more twtxt clients, very nice! :-)
@aelaraji@aelaraji.com @movq@www.uninformativ.de Damn, I forgot, too! And the clouds prevent me from catching up on that. But itās really cool to hear that you were able to see something nice up there. :-)
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@txt.sour.is 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.