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

My work on LLDB’s FreeBSDKernel plugin:https://minsoo.io/future-of-the-freebsd-kernel-lldb-plugin/

Uncategorized
3 2 6

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    0 Views
    Nuova installazione artistica del collettivo di artisti anonimi Secret HandshakeL'installazione, intitolata "King of the World", ritrae i due personaggi nella ricostruzione di una scena iconica del film Titanic con i personaggi Jack e RoseLe targhe poste accanto alla scultura fanno riferimento ad accuse di legami tra Trump ed EpsteinSe pensate che riguardi solo loro, vi sbagliate: il nostro governo è parte dell'orchestra che suona sul ponte della nave#EpsteinFiles #EpsteinTrumpPedoFiles
  • 0 Votes
    1 Posts
    0 Views
    It doesn't matter whether you agree or not with his comment, but this #RichardMedhurst is worth:
  • Dear Fedi friends,

    Uncategorized noai
    41
    0 Votes
    41 Posts
    12 Views
    @_elena @WeirdWriter wrote two great Anti LLM posts, from the point of view as a writer and what it's doing to his community, if you want something that's outside commentary on this. Have tissues, you will cry from the beauty and care after getting angry.https://sightlessscribbles.com/the-colonization-of-confidence/https://sightlessscribbles.com/posts/the-bookstore-hope/
  • 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?