# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 194093
# self = https://watcher.sour.is?offset=190488
# next = https://watcher.sour.is?offset=190588
# prev = https://watcher.sour.is?offset=190388
that site of mine i mentioned earlier? well it's now statically generated with astro, AND it automatically builds and deploys after i push changes to my own git instance, with the power of sourcehut builds! this is so cool
that site of mine i mentioned earlier? well it's now statically generated with astro, AND it automatically builds and deploys after i push changes to my own git instance, with the power of sourcehut builds! this is so cool
@prologic hahahah i chose astro!
@prologic hahahah i chose astro!
@prologic noted!
@prologic noted!
@movq yeahhh very true stuff. find is annoying af i just use fd when i can
@movq yeahhh very true stuff. find is annoying af i just use fd when i can
@prologic it's so annoying!
@prologic it's so annoying!
@movq :DDD
@movq :DDD
@prologic What can I do for you? :)
#IL no twitter: "Estes vieram estragar e destruir enquanto a Iniciativa Liberal trabalha também para defender o ambiente."

Programa da IL sobre o ambiente: "uma rota política reformista, sustentada numa economia livre e aberta, capaz de produzir as soluções e transformações tecnológicas e infraestruturais de que precisamos." [isto é: solucionismo tecnológico]; "mais tecnologia e cada vez mais barata, para acelerar a transição energética rumo a um futuro não só mais eficiente, mas mais abundante." [idem]; "A Iniciativa Liberal está comprometida com os objetivos estabelecidos no Acordo de Paris, e considera fundamental que Portugal alcance uma economia de carbono líquido zero até 2050." [meta que segundo a IEA tem de ser atingida em 2035 para cumprir com o Acordo de Paris].

Ou seja, o que os miúdos vieram mesmo estragar e destruir foi a fantasia que a IL tenta espalhar de que eles estão do lado da solução e não do problema quanto à crise climática.

#criseclimática
#IL no twitter: "Estes vieram estragar e destruir enquanto a Iniciativa Liberal trabalha também para defender o ambiente."

Programa da IL sobre o ambiente: "uma rota política reformista, sustentada numa economia livre e aberta, capaz de produzir as soluções e transformações tecnológicas e infraestruturais de que precisamos." [isto é: solucionismo tecnológico]; "mais tecnologia e cada vez mais barata, para acelerar a transição energética rumo a um futuro não só mais eficiente, mas mais abundante." [idem]; "A Iniciativa Liberal está comprometida com os objetivos estabelecidos no Acordo de Paris, e considera fundamental que Portugal alcance uma economia de carbono líquido zero até 2050." [meta que segundo a IEA tem de ser atingida em 2035 para cumprir com o Acordo de Paris].

Ou seja, o que os miúdos vieram mesmo estragar e destruir foi a fantasia que a IL tenta espalhar de que eles estão do lado da solução e não do problema quanto à crise climática.

#criseclimática
[47°09′41″S, 126°43′58″W] Resetting transponder
YouTube just went from this:



To this:



Why.

Red for “activated” and dark gray for “deactivated” was easy to recognize.

Now we have light gray for “activated” and dark gray for “deactivated”. It’s clearly worse.

Why, why, why.
YouTube just went from this:



To this:



Why.

Red for “activated” and dark gray for “deactivated” was easy to recognize.

Now we have light gray for “activated” and dark gray for “deactivated”. It’s clearly worse.

Why, why, why.
Nice European greenfinch: https://lyse.isobeef.org/gruenfink-2025-05-10/

A programming env for computer/phone, now with tutorials, learning programming, examples, reference docs: https://akkartik.itch.io/carousel
A programming env for computer/phone, now with tutorials, learning programming, examples, reference docs: https://akkartik.itch.io/carousel
@kat You don't need to change the directory first in line 11, you can just create the directory, that's sufficient since you're having an absolute path.

The echo in line 13 is useless, you can simplify this to: newdir="$WD/$now" If you reversed this line with the previous one, you could make use of the variable in the directory creation: mkdir "$newdir".

In line 16, pull the directory change out of the loop upfront. The loop body doesn't modify the working directory, so no need to reset it with each cycle. In fact, you could even spare the cd altogether when you simply tell find where to look: find "$basedir" -type f….

I didn't try it, but if I read the manpage correctly, you should be able to simplify line 19 as well:

> -C Change to DIR before performing any operations. This option is order-sensitive, i.e. it affects all options that follow.

Hence, remove the cd and put the -C "$WD" as the first argument to tar. Again, I didn't try it. Proceed with caution.

Finally, you don't need to specify the full path to rm in line 21. I bet, /bin is in your PATH. When you removed the previous cd from my last suggestion, the relative path that follows won't work anymore. So, just use the absolute path that you already have in a variable: rm -rf "$newdir"

I hope you find this tiny review a wee bit useful. :-)
@kat Tux plushie is life, Tux plushie is best friend 🤘
@kat Tux plushie is life, Tux plushie is best friend 🤘
@kat @movq @prologic Yeah, I'm also having them in my repertoire for ages, so I'm used to the weird command line options. From today's perspective, they're not consistent with the rest of the typical shell utilities, that's for sure.

Regarding find | grep foo, I recommend find -name '*foo*', prologic. Also, I regularly use -type d and -type f to find directories or files.
[47°09′09″S, 126°43′33″W] Transponder still failing
@kat Nothing wrong with handwritten HTML. That's often superior to generated stuff I believe. :-)
Farrrk me Google search is and these days. Will they please "fuck off" with this Gemini AI garbage at the top that takes forever and is distracting as shit™ 💩 Fark me 🤦‍♂️ #Google #Search #Sucks #AI #Gemini
@movq Yeah I _actually_ use sift a lot these days for most "searching" -- at least code and text searching. For finding files by name I still use find | grep.
@kat @prologic Given that all these programs are super old (tar is from the late 1970ies), while trying to retain backwards-compatibilty, I’m not surprised that the UI isn’t too great. 🤔

find has quite a few pitfalls, that is very true. At work, we don’t even use it anymore in more complex scenarios but write Python scripts instead. find can be fast and efficient, but fewer and fewer people lack the knowledge to use it … The same goes for Shell scripting in general, actually.
@kat @prologic Given that all these programs are super old (tar is from the late 1970ies), while trying to retain backwards-compatibilty, I’m not surprised that the UI isn’t too great. 🤔

find has quite a few pitfalls, that is very true. At work, we don’t even use it anymore in more complex scenarios but write Python scripts instead. find can be fast and efficient, but fewer and fewer people lack the knowledge to use it … The same goes for Shell scripting in general, actually.
@kat It's also perfectly safe to nuke your cache as well. i.e: rm data/cache* and it's all good, things will just get rebuilt 👌
@kat I totally recommend zs 🤣 It powers all my sites! 😅 https://twtxt.dev https://yarn.socia/ https://prologic.dev etc 😎
i got so emo about my site not being statically generated and instead hand coded but it's like i don't even know if i want that because i feel most SSGs are built for blogging and continuous posting and i don't want that i just want to make my silly pages....

that being said, the one i'd use if i did switch to one would be astro and that one is so flexible i could really do anything with it including keeping my pages as is mostly without doing the blog stuff. idk! something to consider
i got so emo about my site not being statically generated and instead hand coded but it's like i don't even know if i want that because i feel most SSGs are built for blogging and continuous posting and i don't want that i just want to make my silly pages....

that being said, the one i'd use if i did switch to one would be astro and that one is so flexible i could really do anything with it including keeping my pages as is mostly without doing the blog stuff. idk! something to consider
i still want a tux plushie ngl. i'm gonna draft my sister (she can sew) into making me one
i still want a tux plushie ngl. i'm gonna draft my sister (she can sew) into making me one
@prologic haven't noticed anything weird in the logs! i'll let you know if it happens again and monitor more closely though. it was def weird!
@prologic haven't noticed anything weird in the logs! i'll let you know if it happens again and monitor more closely though. it was def weird!
@kat Hmmm Please if this happens again, help me reproduce it. Any clues in the logs? Hmm? 🧐 My own pod has been running flawlessly for weeks now 😅
@movq Same here, you do get used to things over time and build a sort-of "muscle memory". But you're right, maybe they have terrible interfaces and usage options? 🤔
@movq the flags are SO WEIRD AND CONFUSING especially
tar
which all look keysmashed and make no sense and the order matters apparently?!?! and
find
is SO SLOW and when i look at a typical command for it on stack overflow it looks like fucking regex it's EVILLLLL LMAO
@movq the flags are SO WEIRD AND CONFUSING especially
tar
which all look keysmashed and make no sense and the order matters apparently?!?! and
find
is SO SLOW and when i look at a typical command for it on stack overflow it looks like fucking regex it's EVILLLLL LMAO
@kat What’s wrong with them? I’ve been doing this for so long now, I don’t see the issues anymore. 🤣 (Doesn’t mean they don’t exist.)
@kat What’s wrong with them? I’ve been doing this for so long now, I don’t see the issues anymore. 🤣 (Doesn’t mean they don’t exist.)
The album I got by accident is starting to grow on me. Not that bad. 🤔 It’s Dredg – El Cielo, btw: https://www.youtube.com/watch?v=e4JB8rmXaO8&list=PLRASiMqDV8psZSFQi7nUX4p0R8oRHbUy_&index=1
The album I got by accident is starting to grow on me. Not that bad. 🤔 It’s Dredg – El Cielo, btw: https://www.youtube.com/watch?v=e4JB8rmXaO8&list=PLRASiMqDV8psZSFQi7nUX4p0R8oRHbUy_&index=1
last night my timeline randomly reset to only show my own recent twts and i restarted my instance a few times and pulled from main and shit and it didn't change but it seems fine now lol?!
last night my timeline randomly reset to only show my own recent twts and i restarted my instance a few times and pulled from main and shit and it didn't change but it seems fine now lol?!
@eldersnake awww ty! it's mostly fun stuff and links to my friends :) the buttons have been revived by indie web folks and the people at neocities, it's super fun!
@eldersnake awww ty! it's mostly fun stuff and links to my friends :) the buttons have been revived by indie web folks and the people at neocities, it's super fun!
@bender I like to self-host 🤣
Raw fish: Grants the So long and thanks for all the fish achievement. NICE!!!
@prologic you are certainly a special case of a luddite. Or you like to self-punish. Or both! LOL.
@bender Yeah I know 😢 Don't have Disney+, hell I don't have many streaming services at all really 🤣
@prologic yes, @xuu was the one who mention it. That's on Disney+, though.
Hmmm Star Wars Andor I _think_ it was 🤔
@bender Ahh I see. That reminds me, I was going to start watching something someone recommended here hmmm 🧐
@prologic LOL. It is from the Severance), AppleTV+ series. I am about to finish watching it with my kid---well, what's available for seeing. The series is still ongoing. I recommend it!
@bender Huh? 🤔
"Forgive me for the harm I have caused this world. None may atone for my actions but me and only in me shall their stain live on. I am thankful to have been caught, my fall cut short by those with wizened hands. All I can be is sorry, and that is all I am."
Anyone want to help me alpha/beta test the new WAF I'm building? It's a Caddy module. 🤔
On my blog: Developer Diary, International Nurses Day https://john.colagioia.net/blog/2025/05/12/nurses.html #programming #project #devjournal
[47°09′51″S, 126°43′42″W] Transponder fixed
Mécanisme des réseaux sociaux -- A Damasio https://www.youtube.com/watch?v=qArH0N5OxPI
Mécanisme des réseaux sociaux -- A Damasio https://www.youtube.com/watch?v=qArH0N5OxPI
[47°09′23″S, 126°43′10″W] Transponder malfunction
I just have to say the buttons page gives me the warm fuzzies with all the old school animated gifs. The internet seemed so fun back then...
[47°09′04″S, 126°43′00″W] --interrupted--
made the HTML for one of my static handwritten sites semantic!
made the HTML for one of my static handwritten sites semantic!
This is gopherspace! Somekind spanish shame...
🧮 USERS:1 FEEDS:2 TWTS:1338 ARCHIVED:87031 CACHE:2786 FOLLOWERS:22 FOLLOWING:14
Rocha leva com pó verde de activistas do "fim ao fóssil".

Rocha diz que todos têm o direito a falar.

IL apresenta queixa contra os dois jovens ativistas.
Rocha leva com pó verde de activistas do "fim ao fóssil".

Rocha diz que todos têm o direito a falar.

IL apresenta queixa contra os dois jovens ativistas.
DEN vs OKC #NBA #Playoffs
@kat my terrible script https://bytes.4-walls.net/kat/dotfiles/src/branch/main/scripts/Scripts/tinypin-log.sh
@kat my terrible script https://bytes.4-walls.net/kat/dotfiles/src/branch/main/scripts/Scripts/tinypin-log.sh
tar
and
find
were written by the devil to make sysadmins even more miserable
tar
and
find
were written by the devil to make sysadmins even more miserable
my new plant gemini://astrobotany.mozz.us/public/7c5f294a97154557af2bf0f8ecb8c1ec/m1 #astrobotany
[47°09′25″S, 126°43′52″W] --bad checksum--
sleep
News from Ukraine: kyivpost_official on Telegram.
You can post a link. \0 from Ulyanovsk.
ya girl's officially a credited code contributor for the biggest fanfiction site in the world! (i did the gif icon fix) https://archiveofourown.org/admin_posts/31720
ya girl's officially a credited code contributor for the biggest fanfiction site in the world! (i did the gif icon fix) https://archiveofourown.org/admin_posts/31720
de vuelta a tinylog! -> gemini://station.martinrue.com/dev1lsx/tinylog #logs
sundays! https://0x0.st/8yq5.jpg #grok
[47°09′59″S, 126°43′03″W] Not enough data -- sampling finished
@prologic haha true ig! :')
@prologic haha true ig! :')
mucho tiempo sin usar #gemini.. gemini://bbs.geminispace.org/ es un buen foro!
Montenegro na sua capanha em Cantanhede diz que não há pessoas na rua no nosso país a não ser quando há "Interferências políticas de última hora".

Ó Luis, eu percebo que ache que o 25 de Abril, o 1º de Maio e a greve dos trabalhadores da CP sejam "Interferências políticas". E realmente enquanto o país estiver a ser liderado com alguém com essa atitude nós continuaremos na rua, interferindo para defender politicamente o povo. Para defender a liberdade, para defender os trabalhadores, para defender os direitos laborais - e tudo o mais que tem desdenhado.
Montenegro na sua capanha em Cantanhede diz que não há pessoas na rua no nosso país a não ser quando há "Interferências políticas de última hora".

Ó Luis, eu percebo que ache que o 25 de Abril, o 1º de Maio e a greve dos trabalhadores da CP sejam "Interferências políticas". E realmente enquanto o país estiver a ser liderado com alguém com essa atitude nós continuaremos na rua, interferindo para defender politicamente o povo. Para defender a liberdade, para defender os trabalhadores, para defender os direitos laborais - e tudo o mais que tem desdenhado.
[47°09′57″S, 126°43′59″W] Taking samples
#superbooth25, m8 totally got me, but i already have a tracker sequencer... do i need another tracker sequencer?
#superbooth25, fell in love with the ohmforce boum trio, lookin fwd to get it in june
superbooth25 was a blast, it was very clear that one day is not enough to see and experience everything...
《You open the installer?

“Next. Button. Button. Button. Button.” That’s all Orca says.

Ubuntu MATE 12.04 had a working, labeled, navigable installer.
Ubuntu MATE 24.04? It’s garbage.

No headings. No structure. No sense of where you are. Just unlabeled buttons and blank space.

This isn’t a bug.
This is neglect.》

#Ubuntu #Acessibility

@labellaragassa@labellaragassa https://exquisite.social/@labellaragassa/114488143878385178