MySQL 5.7 Reset Root Password

The most simple way to reset the root password of MySQL 5.7 on CentOS 7

Read Article

Golang self-signed certificate

The simplest way to create a self-signed certificate with Go:

or ecdsa 10 years duration

or ed25519 10 years duration

Read Article

Angular multipart/formdata

You would like to upload or post something not as an application/json but as a multipart/formdata. It’s pretty simple, simpler than you would’ve thought 🙂 1. create the FormData instance

then you can use .set or .append methods to add values to the post body of the FormData.

and finally we upload it…

Read Article