I wrote a small-and-quick tutorial for using LibreOffice Styles. It is intended to quickly let you understand (and hopefully grasp) the concepts behind the use of Styles without having to go through an entire manual. It briefly covers and exemplifies the … Sigue leyendo
Archivo de la categoría: English
In light of the discovered weakness in the Type 4 password encryption mechanism, this is a way of generating Type 5 passwords using OpenSSL: openssl passwd -salt `openssl rand -base64 3` -1 PLAINTEXT_PASSWORD After which it can be copied to … Sigue leyendo
This is a note on episode 102 of the fantastic-as-always Packet Pushers Podcast. Initially it was going to be destined for them and less than 140 characters long but I just couldn’t, so I started writing freely and all of … Sigue leyendo
$ cat bin/stats.gawk #!/usr/bin/gawk -f { d = $1 ~ /^[0-9]/; } d && !f { M = $1; m = $1; f = 1; } d && $1 > M { M = $1; } d && $1 < … Sigue leyendo
Sometimes I deeply hate the Opera browser, as with its RAM consumption behavior, but most of the times I just love it. One of the reasons I do is because it allows me to pretty easily tweak my browsing safety. … Sigue leyendo