A.K.A: The endless research for the perfect (01) code editor (potentially IDE) My journey began years ago when the programming part of my job wanted to be more pressing in some way. Anyway I ve been a script guy since forever: mostly Bash, Python, Ruby, Markdown, Asciidoc My path has been something like this (chronologically speaking): [ ]
[Ita, Eng N/A] Intro Self-hosting inteso come fornire servizi (per se stessi o persone amiche) da un computer o server di cui si ha il completo controllo (hardware, software). Esempio di servizi possono essere: sito/blog, istanza pleroma/mastodon, server xmpp, repository codice, archiviazione/condivisione file, ecc Questi servizi possono essere limitati alla rete lan o wifi locale [ ]
Asciidoc[0] è un linguaggio per formattare il testo! Asciidoctor[1] sono una serie di tool per renderci la vita ancor più leggiadra. Come Markdown ma molto più esteso. Quasi come Latex ma molto più usabile. Outputta verso html e pdf e epub e molto altro! Ci possiamo scrivere siti, articoli, libri, documenti, ricette. [0] https://asciidoc.org/ [1] [ ]
Some time ago I found a somewhat old Netgear Switch. 24 ports 10/100/1000 Managed Double SFP! Well, the first port is broken :) And it s too loud! In our lab we have already a file server and an UPS, powered 24/7. This is the fan that make so much noise: We need a solution to [ ]
Oooooh: $ cat list grep some awk '{print $1}' Oh my god, 3 processes, we re all gonna get a SIGKILL! Then: grep 'some' list awk '{print $1}' What? Not yet.. awk '/some/{print $1}' list \é/ And I count my lines with: grep -c 'some' list instead of wced-greped-cated