Dart vs Go
Dartlang vs Golang
HTTP performance
A simple test
Webentwicklungg, Programmieren, Software, Server… irgendwie alles was in den Bereich Computer und Entwicklung fällt
Anything regarding web-development
Dart vs Go
Dartlang vs Golang
HTTP performance
A simple test
The most simple way to reset the root password of MySQL 5.7 on CentOS 7
1 2 3 4 5 6 7 8 9 10 11 12 13 |
systemctl stop mysqld systemctl set-environment MYSQLD_OPTS="--skip-grant-tables" systemctl start mysqld mysql -u root mysql> UPDATE mysql.user SET authentication_string = PASSWORD('YourNewPassword') WHERE User = 'root' AND Host = 'localhost'; mysql> FLUSH PRIVILEGES; mysql> quit systemctl stop mysqld systemctl unset-environment MYSQLD_OPTS systemctl start mysqld mysql -u root -p |
The simplest way to create a self-signed certificate with Go:
1 |
go run /usr/lib/go/src/crypto/tls/generate_cert.go -host localhost |
or ecdsa 10 years duration
1 |
go run /usr/lib/go/src/crypto/tls/generate_cert.go -duration 87600h0m0s -ecdsa-curve P256 -host localhost |
or ed25519 10 years duration
1 |
go run /usr/lib/go/src/crypto/tls/generate_cert.go -duration 87600h0m0s -ed25519 -host localhost |
When you buy PHP Melody there’s a .htaccess file and a .htaccess-nginx file.
However you’re missing everything else of it.
So here’s how you properly configure nginx to run PHP Melody.
Continue reading “PHP Melody nginx config done right”