# 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 194054
# self = https://watcher.sour.is?offset=193915
# next = https://watcher.sour.is?offset=194015
# prev = https://watcher.sour.is?offset=193815
Hi all, this is a cool place! Thinking of spinning up a Gopher server myself soon :)
Tudo parece pouco, mas há que fazer o que se pode para acabar com o #genocídio em #Gaza

https://sicnoticias.pt/especiais/guerra-no-medio-oriente/2025-08-26-mariana-mortagua-miguel-duarte-e-sofia-aparicio-integram-flotilha-humanitaria-que-parte-esta-semana-para-gaza-3ae6438e?s=35
@movq At this rate, I'm going to be carrying a feature phone in a few years' time.
[47°09′04″S, 126°43′41″W] Reading: 0.37000 PPM
@prologic I’m not smart enough to answer that question. 😅 Certainly feels like unregulated capitalism. Governments being too slow and/or unwilling to intervene … It’s a mess.
@thecanine I sure hope there’s going to be push back. Is it going to happen, realistically? I don’t know.
@movq Yeah I'm worried about this too. What's the systemic problem at paay here? Capitalism at it's extreme? 🤔
@prologic Yes, this is another instance of restricting “personal” computing. You won’t be able to install arbitrary software anymore (“sideloading”, as they call it).

It’s not unique, it’s not new. Boiling the frog alive.

We’re heading towards this: https://www.gnu.org/philosophy/right-to-read.html
Its like TV. Very few good channels and many bad channels. Or like books. Very few good books and many bad books. Look for spezialized channels and educate your children. Read the bible.com . But only Jesus is reliable. Forget Moses and the punishing God.
> To combat malware and financial scams, Google announced today that only apps from developers that have undergone verification can be installed on certified Android devices starting in 2026.
>
> This requirement applies to “certified Android devices” that have Play Protect and are preloaded with Google apps. The Play Store implemented similar requirements in 2023, but Google is now mandating this for all install methods, including third-party app stores and sideloading where you download an APK file from a third-party source.
@movq TL;DR? 🤔
RIP Android:

https://9to5google.com/2025/08/25/android-apps-developer-verification/

Since nobody is going to push back on this (I don’t even know if that would be possible), this is going to be a reality on every platform sooner or later.

I’d guess in 20, 30 years, there won’t be “PCs” anymore. No more home computing, no more “I just write my own software”. You won’t own devices anymore, it’ll all be rented and the landlord will tell you what you can do with it.

I hope that I’m wrong, but given where we are today, I don’t think that I will be.
[47°09′30″S, 126°43′11″W] Reading: 1.24 Sv
[47°09′11″S, 126°43′47″W] --interrupted--
I think social media ruined the Web. Think about how much happier and social people would be without those sites feeding themm inflammatory posts and articles.
Yep! Seems to work!
🧮 USERS:1 FEEDS:2 TWTS:1444 ARCHIVED:89656 CACHE:2618 FOLLOWERS:22 FOLLOWING:14
Apparently twtxt wasn't the right client to use. twet seems to be alright, though.
Assuming I configured this right, my twtxt should now also be available over Gemini!
♩ Is there anybody out there? ♩
#Pyxel is a retro inspired #GameEngine for #Python, it's very impressive!

It's not hard to generate a static HTML page that loads your game to run on the browser with #pyodide (WASM). And it comes with an assets editor and a #chiptune making tool.

https://github.com/kitao/pyxel
#BolhaPreguiçosa Qual o equivalente brasileiro do Fourthwall / redbubble que permite fazer uma lojinha com camisetas, cacarecos, adesivos, etc. customizados com os seus desenhos?
Ben c'est pas dommage! Je regrette que de telles infos aient été conservée, naïf que je suis (note pour ce que ça vaut vu ce que j'ai pu entendre: je ne suis pas militant pro-homo, je suis hétéro, et en fait osef, chacun fait ce qu'il lui plaît tant que ça ne force personne). Don du sang : l’EFS supprime ses archives mentionnant les relations homosexuelles après une pétition
[47°09′53″S, 126°43′09″W] Reading: 1.51000 PPM
https://www.jetset.nl/archive/john-paul-ringo-george #TheBeatles #tshirt
Sometimes it's a small thing, it's a bit jarring when orgs that want to pose as international/global publish some copy/event based on US school terms/seasons. That's a reminder of how other people are at the periphery and will be probably ignored most of the time. Isn't it obvious we have different school year arrangements & seasons around the world? I guess @melissawm@melissawm will share my sentiments about this.
I used to be able to sell my music anywhere in the world - and I have managed to send CDs to quite remote places, or kingdoms with nefarious regimes... but now, well, there is one country where I can not ship cassettes or CDs to: the USA 🇺🇸.

It's not like I'm expecting any loss: I rarely sell music, and when I do it is rarely to the states (I don't know why, I think my stuff ought to be way more popular! 😁). But still, it is disheartening to see there is now an effective wall, a country where I won't be able to (directly) reach. Congratulations to everyone involved.

[PS: if you're puzzled about what is this all about - a number of European countries, including Portugal, won't be shipping stuff to the US due to legal uncertainty regarding Trump's tariffs.]
I only learned about the .envelope object/propriety in #shapely yesterday, before that I used .bounds (a min/max of points tuple), but envelope is good to know because it provides an easy way of getting the centroid and the area of the bounding box, which can be very useful.
Interactive demo of #shapely's centroid for the triangle :)

n
import py5
from shapely import Polygon, Point

def setup():
    py5.size(400, 400)
    py5.stroke_join(py5.ROUND)
    
def draw():
    py5.background(200)
    pts = ((100, 100), (300, 100),
           (py5.mouse_x, py5.mouse_y))
    xs, ys = zip(*pts)
    cx = sum(xs) / len(xs)
    cy = sum(ys) / len(ys)
    tri = Polygon(pts)
    py5.no_fill()
    py5.stroke_weight(1)
    py5.stroke(0, 200, 0)
    py5.shape(Point(cx, cy).buffer(5))
    py5.stroke(0, 0, 200)
    py5.shape(tri.envelope.buffer(2))
    py5.shape(tri.envelope.centroid.buffer(5))
    py5.stroke_weight(3)
    py5.stroke(0)
    py5.shape(tri)
    py5.fill(0)
    py5.shape(tri.centroid.buffer(2))

py5.run_sketch(block=False)

#py5 #python #creativeCoding
[47°09′27″S, 126°43′46″W] Reading: 1.10 Sv
Instagram is shit, Bluesky is corporate, and Mastodon is...okay, but not fantastic. Maybe twtxt is what I'm after...
James Gleick: "The lie of AI"
https://around.com/the-lie-of-ai/
Long read, it starts with Claude Shannon and Markov chains...
@movq Yeah I just got a bit curious after watching your video and reading your OP 😅
@prologic Anything above a couple hundred Euros. 😅 The current Epson LX-350 appears to be not *that* pricey, though. 🤔

I mean, what do you want to do with it? If you want to use this as an actual printer for daily use, I’d get a laser printer instead, because they’re very reliable and the print quality is top notch.

I got my dot matrix printer mostly for experiments and nostalgia, so I wouldn’t want to pay something like 300-400€ for it.
@movq Haha yeah rightio, and yeah inches suck 🤣
@prologic It’s quite similar to how escape sequences work in a terminal. ASCII text is printed as ASCII text and then an escape sequence can make it bold or underline and so on. Other escape sequences allow you to say “the following $n bytes are part of a bitmap image”, and then this gets printed at whatever the current position is (somewhat similar to SIXEL in a terminal).

It’s just that the *units* are a bit weird, because this is all done in bloody inch. 😅
Tiens, cool ça, pour se prêter des trucs entre voisins: https://lesecolohumanistes.fr/lecologie-au-quotidien/pret-entre-voisins/
@movq What do you define as "expensive"? 🤔 (I've always thought of modern-day painters as a "rip", and the ink my god 🤯)
@movq Is there like a TL;DR of this standard? I can't say I remember this tbh 🤔
@prologic Here’s one: https://github.com/vmykh/printer_labs/blob/master/escp2ref.pdf
@prologic Yeah, those POS thingies are similar. There’s “ESC/POS” as a variant of “ESC/P”, if I’m not mistaken.

All I can say is, when I go to big stores like Amazon, then I have trouble finding “traditional” dot matrix printers for use at home. 😅 Epson still sells them, but they’re more expensive than my laser printer was. So yeah, they still exist, just expensive, by the looks of it.
@movq Got a link to this

> ESC/P standard.
@movq Are you sure?

> because there is virtually no market for these devices anymore, meaning new ones are very, very expensive.

I think dot matrix printers are still pretty common in many Point of Sales (POS) registers right? At least here in AU they're very common. I had a quick look myself today, there seems to be quite a solid market for these types of printers. In fact even EPSON still sell Dot Matrix printers themselves 🤣
@thecanine That’s cute. 😃 (Why Clippy, though? 😅)
@prologic Hmm, good question. I haven’t checked the market, I got mine from someone I know. But to be honest, I’d suspect that buying a *used* one is actually your best shot, because there is virtually no market for these devices anymore, meaning *new* ones are very, very expensive. 🫤

FWIW, I have an OKI Microline 3390eco. Good thing is, you can still buy new cartridges for it.

If you want to buy a new device, check if it supports the “ESC/P” standard. That’s very widely supported.
@movq Kind of curious now... Is there a (to buy new) dot matrix printer you'd recommend if someone wanted to get into this sort of thing (sending plain 'ol bytes to a printer port)? 🤔 (I remember this back in the ye 'old days!)
[47°09′05″S, 126°43′31″W] Saalmi, retransmit, please
[47°09′28″S, 126°43′38″W] --white noise--
[47°09′19″S, 126°43′53″W] Dosimeter fixed
🧮 USERS:1 FEEDS:2 TWTS:1443 ARCHIVED:89640 CACHE:2613 FOLLOWERS:22 FOLLOWING:14
#Python is for artists too @ #SescAvPaulista
(Oficina do Clubinho Gráfico aos domingos) "#Python for artists" button
Oh, j'ignorais ça à propos des messages sur l'acceptation des cookies trop chiants. ublock peut les désactiver. Merci fredg! https://galusik.fr/log/2025-08-24-ublock-petit-setup-ameliore.html
[47°09′56″S, 126°43′32″W] Dosimeter overflow
Should I go on a tour with these hot air balloons some day? Not sure if it’s scary as hell. 😂

https://movq.de/v/3e26ec9a71/IMG_8800-edit.jpg
[47°09′49″S, 126°43′46″W] Dosimeter still failing
#Diátaxis and #Python #documentation

https://discuss.python.org/t/diataxis-and-python-documentation/41836
https://galusik.fr/log/2025-08-24-ublock-petit-setup-ameliore.html dernier article: setup amélioré avec uBlockOrigin
[47°09′10″S, 126°43′52″W] Dosimeter malfunction
This is why I love tech from that era.

Write bytes to a parallel port and stuff happens. If it’s just ASCII bytes, then it will print ASCII text. Even the simplest programs can use a printer this way.

With a little bit of ESC/P, you can print images and other fancy stuff. That’s what I did this morning – never worked with ESC/P before, now I can print images. It’s not that hard.

Hayes-compatible modems are similar: Write some AT commands to the serial port and the modem does things. This isn’t even arcane knowledge, it’s explained in the printed manual.

Maybe I’m wearing rose-tinted glasses here, but I think with all this old stuff, *you get useful results very quickly* and the manuals are usually actually helpful. It’s so much easier to get started and to use this hardware to the full extent. Much less complexity than what we have today, not a ton of libraries and dependencies and SDKs and cloud services and what not.

https://movq.de/v/4bd16cb3c7/tux1.jpg

https://movq.de/v/4bd16cb3c7/tux2.jpg
[47°09′00″S, 126°43′33″W] Storm recedes -- back to normal work
[47°09′17″S, 126°43′57″W] Automatic systems disengaged due to blizzard
Your welcome a413f
https://orphansandempires.substack.com/p/americas-kryptonite
🧮 USERS:1 FEEDS:2 TWTS:1442 ARCHIVED:89622 CACHE:2606 FOLLOWERS:22 FOLLOWING:14
Sinfonias de Aço (de Manuel Melo)
(aos Sábados das 12h às 15h, na Rádio Barcelos)
Emissão de 23 Agosto 2025

39 músicas de bandas portuguesas, incluindo 7 que integram o catálogo da ANTI-DEMOS-CRACIA:

. The Dreams Never End - Perdido
. Marciano - John Said
. Ameeba - Lizard Face
. Sci Fi Industries - TriVial
. Kokori – Time Traveler (sedation mix)
. Turning Point – Espelho
. Zero à Esquerda - Porque Tens Tanto Poder

https://www.sinfonias.org/playlists/1961-playlist-podcast-23-agosto-2025

#kokori
Sinfonias de Aço (de Manuel Melo)
(aos Sábados das 12h às 15h, na Rádio Barcelos)
Emissão de 23 Agosto 2025

39 músicas de bandas portuguesas, incluindo 7 que integram o catálogo da ANTI-DEMOS-CRACIA:

. The Dreams Never End - Perdido
. Marciano - John Said
. Ameeba - Lizard Face
. Sci Fi Industries - TriVial
. Kokori – Time Traveler (sedation mix)
. Turning Point – Espelho
. Zero à Esquerda - Porque Tens Tanto Poder

https://www.sinfonias.org/playlists/1961-playlist-podcast-23-agosto-2025

#kokori
[47°09′02″S, 126°43′20″W] Wind speed: 86kph -- batteries low
[47°09′41″S, 126°43′37″W] Wind speed: 48kph
De la lecture pour écrire du C moderne: https://github.com/jetm/Modern-C-Guidelines
w3m rocks: https://w3m.rocks/howto/
[47°09′00″S, 126°43′04″W] Wind speed: 93kph
Who knows some dialup accounts for old computers before 1992?
bluedwarf.top is a very nice social media adress. Thanks!
[47°09′42″S, 126°43′29″W] Wind speed: 87kph -- batteries low
[47°09′59″S, 126°43′37″W] Wind speed: 69kph -- batteries low
internet is dead
O segundo dia de #Extramuralhas 2025 foi assim. Pink Opake Darkways LA BOUM BRUTE esteve bem boum Suicide Commando
O segundo dia de #Extramuralhas 2025 foi assim. Pink Opake Darkways LA BOUM BRUTE esteve bem boum Suicide Commando
🧮 USERS:1 FEEDS:2 TWTS:1441 ARCHIVED:89619 CACHE:2612 FOLLOWERS:22 FOLLOWING:14
https://galusik.fr/fridayrockmetal/2025-08-22-frm.m3u Tonight #FridayRockMetal playlist
J'ai fait du tri dans /log aujourd'hui. Des choses qui ne sont plus d'actualité, d'autres que je préfère oublier
[47°09′34″S, 126°43′30″W] Wind speed: 71kph -- batteries low
I’ve been doing this for so lang that I’ve unlearned how to do this.
I’ve been doing this for so lang that I’ve unlearned how to do this.
Migration is done \o/ So, Sorry for the noise in your rss reader. To forgive me, tonight, let's headbang \m/ \m/
[47°09′55″S, 126°43′57″W] Wind speed: 94kph
Um exemplo do conceito de #PublicMoneyPublicCode posto em prática, desta vez em #Lisboa. Precisamos mais disto!

@EsquerdaNet@EsquerdaNet https://masto.pt/@EsquerdaNet/115071753190472828
Um exemplo do conceito de #PublicMoneyPublicCode posto em prática, desta vez em #Lisboa. Precisamos mais disto!

@EsquerdaNet@EsquerdaNet https://masto.pt/@EsquerdaNet/115071753190472828
Um exemplo do conceito de #PublicMoneyPublicCode posto em prática, desta vez em #Lisboa. Precisamos mais disto!

@EsquerdaNet@EsquerdaNet https://masto.pt/@EsquerdaNet/115071753190472828
guys try Bluedwarf.top its so good and it works on every single browser even ones from 1990 its the best social media youll find
im 2929b
The move from sourcehut git pages hosting is almost done. This is a test ;)
Un nouveal article où je parle du nouveau markup orienté plaintext que je me suis amusé à bricoler: https://si3t.ch/log/2025-08-22-amore-a-more-readable-plaintext-markup.txt
@lyse Aww, yeah. 😍 (Reminds me, I haven’t paid attention to the sunset in quite a while …)
@lyse Aww, yeah. 😍 (Reminds me, I haven’t paid attention to the sunset in quite a while …)
@lyse When/if I can pull it off, there _will_ be videos! 😅

I never used hardcopy terminals, either. We did have a dotmatrix printer, but that was just used as a regular printer.

Inkjets, I don’t know. They were pretty fascinating and cool when they came out. A lot faster than dotmatrix and obviously quiter. They never gave me much trouble, actually. But I switched to a laser printer long before crap like DRM’ed ink cartridges became a thing.
@lyse When/if I can pull it off, there _will_ be videos! 😅

I never used hardcopy terminals, either. We did have a dotmatrix printer, but that was just used as a regular printer.

Inkjets, I don’t know. They were pretty fascinating and cool when they came out. A lot faster than dotmatrix and obviously quiter. They never gave me much trouble, actually. But I switched to a laser printer long before crap like DRM’ed ink cartridges became a thing.
Here’s an interesting thought/angle on this topic:

gemini://gemini.conman.org/boston/2025/08/21.1

> A further check showed that all the network blocks are owned by one organization—Tencent [4]. I'm seriously thinking that the CCP (Chinese Communist Party) encourage this with maybe the hope of externalizing the cost of the Great Firewall [5] to the rest of the world.
Here’s an interesting thought/angle on this topic:

gemini://gemini.conman.org/boston/2025/08/21.1

> A further check showed that all the network blocks are owned by one organization—Tencent [4]. I'm seriously thinking that the CCP (Chinese Communist Party) encourage this with maybe the hope of externalizing the cost of the Great Firewall [5] to the rest of the world.
[47°09′34″S, 126°43′20″W] Wind speed: 57kph