Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

can i talk to an openclaw bot using internet relay chat?

Uncategorized
41 18 0

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    0 Views
    Profuse apologies for not hiding my post on AI resistance behind a content warning, sigh. It's a really divisive topic and I hope I didn't offend anyone (especially devs who have no choice).Anyway I'm off to pick up my little one from daycare so I will be mostly offline for the rest of the day.Wishing you all a great morning / afternoon / evening wherever you are 🌞
  • 0 Votes
    1 Posts
    3 Views
    La Russia alla Biennale di Venezia suscita le ire UE. Virkkunen: “Pronti a tagliare i fondi”@newshttps://www.eunews.it/2026/03/11/la-russia-alla-biennale-di-venezia-suscita-le-ire-ue-virkkunen-pronti-a-tagliare-i-fondi/La Fondazione si rifiuta di escludere la Federazione russa dalla 61esima esposizione internazionale al via dal 9 maggio e scoppia il caso: sollevazione di 22 ministri e del Parlamento europeo. Giuli: "Governo contrario". La Commissione minaccia di interrompere i
  • This post did not contain any content.

    Uncategorized
    1
    1
    0 Votes
    1 Posts
    0 Views
    This post did not contain any content.
  • 0 Votes
    1 Posts
    0 Views
    What is this "sort-of fail2ban?" I talked about in my last post, you may ask. Simple...I wanted some sort of syslog aggregation but found the popular software packages way too big and complicated (plus in one certain case: cumbersome to configure and poorly documented). Settled on a central syslogd instead.Having the central syslog was nice, but "grep" was insufficient for more structured searches, so I wrote a small tool to feed it all into a PostgreSQL-DB and a small command line client for querying the DB without having to write a full SQL query every time."Hm, when I feed it into the DB I could already extract the interesting parts and have a small and fast index for those?!". Done.Having that I now can do two things:1) A single SELECT gets me an accumulated list of bad actor IPs that I can feed into "pf" periodically.2) A VIEW and another single SELECT gets me an RSS feed of things I like to know about.These two things were not planned at all when I started with the log aggregation, yet turned out to be incredibly handy.The whole project has only about 900 lines of code (mostly Perl, some SQL, a tiny bit of Go).Which selfmade tools do you have?