Chema Zapiens’

web

log

 

Life

Trips and trappings of daily life:

Apply for a driver's license in Mexico City

Enter the page of the Multiple Payment Format of the Ministry of Finance, in the "Transit" option, select “License A motorist and motorcyclist for 3 years (Expedition and replacement)”And print your capture line with the key 01. (enter here to ...

Stepping on the tail of comet C / 2020 F3 (NEOWISE)

Comet C / 2020 F3 (NEOWISE) has become one of the brightest in recent times, although it did not burn the saint: its current magnitude is 2.5 and it is increasing (the bigger, less is seen, for some reason; the brightest objects, instead,...

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:

How to get SSL certificate expiration date from command line

cd ~/.acme.sh/medio.click/ openssl x509 -noout -enddate -in medio.click.cer notAfter=May 16 23:05:19 2021 GMT For the rest of the certificate information: openssl x509 -help Usage: x509 [options] Valid options are: ... -subject Print subject DN -issuer Print...

Reviewing the console command history in Chrome’s DevTools

You can use up-arrow or type the start of a previous command to search your command history in DevTools, but if you don't recall the command and it's far away in your history, you can use this method to see all your console history: While in DevTools, Undock into...

Renaming multiple files with Perl’s Regex power

(you can read this publication in spanish here) 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$1L$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...