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

Una buona notizia: ho recuperato i messaggi Whatsapp del signor Q.

Uncategorized
12 4 3

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    1 Views
    Omar Sosa & Seckou Keita – Transparent Water (2017)Sin dalle prime note la musica trasporta istantaneamente gli ascoltatori in un viaggio all'interno del proprio spirito e allo stesso tempo in un viaggio nel mondo reale. Un'esplorazione della musica afro-cubana in tutte le sue forme, una intensa meditazione sui cicli della vita e dell'esistenza... https://noblogo.org/available/omar-sosa-e-seckou-keita-transparent-water-2017Segui il blog e ascolta un album al giorno: @available#LaMusicaCiSalva #UnoDisco #DiscoDelGiorno #Spettacoli
  • 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
    It doesn't matter whether you agree or not with his comment, but this #RichardMedhurst is worth:
  • 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?