Today I Learned - Rocky Kev

TIL How to Un-asterisk a password

POSTED ON:

TAGS:

Sometimes, you want the password to something that is in asterisks.

For example: I needed to grab the api password of a site in production to use in local. The password is saved on the server, but in asterisks. This is how you un-mask it.

!(animated gif)[how-to-asterisks.gif]

Note: This is a old password used for a service at my old job. I no longer use that site.


Related TILs

Tagged:

TIL Content sectioning

Content sectioning or landmarks, like sidebar, content, footer. You know, like better names.

TIL php-fpm

PHP runs as a separated service when using PHP-FPM. By using this PHP version as language interpreter, requests are processed through a TCP/IP socket; so that the Nginx web server only handles the HTTP requests and PHP-FPM interprets the PHP code. The fact of having two separate services is key for increasing efficiency.

TIL Considering Device Obsolescence with web development

I'm incredibly guilty of pushing to build for the latest tech. For good reason too - you can write less code, use more native functions, and things are just more likely to work.