Chema Zapiens’

retejo

log

 

Life

Trips and trappings of daily life:

Petu stirpermesilon en Meksikurbo

Ingresa a la página del Formato Múltiple de Pago de la Secretaría de Finanzas, en la opción “Tránsito”, selecciona “Licencia A automovilista y motociclista por 3 años (Expedición y reposición)” e imprime tu línea de captura con la clave 01. (ingresa aquí para...

Pisando la cola del cometa C/2020 F3 (NEOWISE)

El cometa C/2020 F3 (NEOWISE) se ha convertido en uno de los más brillantes de los últimos tiempos, aunque tampoco quemó al santo: su magnitud actual es de 2.5 y va en aumento (mientras más grande, menos se ve, por alguna razón; los objetos más brillantes, en cambio,...

Root, Rinse & Rise

Growing up tech: learning, maturation & unburdening games:

Jay Earley’s Pattern System

From the Internet Archive (all of Jay's websites are defunct) Introduction to the Pattern System The Pattern System is a way of understanding your personality that is oriented toward psychological healing and personal growth. It also helps you to understand other...

HeadSpace Tips (of the iceberg)

Headspace Pro 1 It's useful to focus on something when you start training your attention, but the end goal is to remain aware without crutches. At the end of every guided meditation, we have a little taste of this (Andy calls it Resting Awareness) when we let...

Eating Meditation, Ruth Denison

Eating, here on our retreat, actually begins with waiting in line. What is happening is that you are standing. Serving has not begun yet. It is a wonderful opportunity to relate to that feeling that we are going to satisfy ourselves by taking food. What is that...

Games

In video and board:

No Results Found

The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.

Dev

Software development: Python, JS, Flutter, Linux and other black magicks:

Kiel akiri SSL-eksvalidan daton de komandlinio

cd ~/.acme.sh/medio.click/ openssl x509 -noout -enddate -in medio.click.cer notAfter=May 16 23:05:19 2021 GMT Para el resto de la información del certificado: openssl x509 -help Usage: x509 [options] Valid options are: ... -subject Print subject DN -issuer Print...

Reviziante la konzolan komandhistorion en DevTools de Chrome

Vi povas uzi supren-sagon aŭ tajpi la komencon de antaŭa komando por serĉi vian komandhistorion en DevTools, but if you don't recall the command and it's far away in your history, vi povas uzi ĉi tiun metodon por vidi vian tutan konzolan historion: Dum en DevTools, Undock into...

Renaming multiple files with Perl’s Regex power

(puedes leer esta publicación en español aquí) Useful one-liner to rename multiple files using regular expressions:perl -we '$regex = shift(@ARGV); $rep = shift(@ARGV); $rep =~ s/"/\"/g; $rep = qq("$rep"); foreach (@ARGV) { if (/$regex/) { $ren =...

Tech Support

Solutions to random software and hardware problems

Change Capitalized Text to Title Case With Regular Expression

For Spanish, this should do the trick: Substitute \b([A-ZÁÉÍÓÚÑ])([A-ZÁÉÍÓÚÑ][\wÁÉÍÓÚÑ]*) with \u$1\L$2. To capitalize back roman numerals, acronyms or initials, make a list: ([IVXL]{2,}|CONACULTA|FONCA|INAH)and substitute with caps: \U$1 (you might need to set your...