Hugo is a fantastic and fast website engine. It’s written in Go (aka Golang). One day, I visited a blog that is built on Hugo’s framework and I immediately charmed by the fluidity, well-structured and responsiveness of that website. Thanks again, aozaki.cc Many great […]
Author: foxdie
Cryptanalysis of coronavirus
by Elena Larina Source: https://aurora.network/articles/1-mirovoy-krizis/77716-kriptoanalitika-koronavirusa In collaboration with Vladimir Ovchinsky Behind the scenes of a pandemic The coronavirus pandemic is a complex and dangerous process. When discussing it, there is no place for hype, hatering, cheap conspiracy theories and amateurish reasoning. Virologists and physicians […]
Some usual Varnish commands
(for CentOS 7) nano /etc/varnish/default.vcl nano /etc/varnish/varnish.params varnish_reload_vcl netstat -lntp | grep 80 service nginx reload varnishstat varnishlog service nginx restart service varnish restart # Start and enable Varnish process to start at system boot. systemctl enable –now varnish nano /etc/nginx/conf.d/… # Verify that Varnish […]
Configure Varnish to auto direct from http to https
In SSH terminal, edit the domain configuration file in /etc/nginx/conf.d/ Configure Nginx as SSL Proxy server { listen 443 ssl http2; server_name pquan.info; #change mine to your domain. # SSL #You can use Let's Encrypt or Comodo ssl_certificate /etc/nginx/ssl/nginx.crt; ssl_certificate_key /etc/nginx/ssl/nginx.key; location / { […]
How to Easily Display Code on Your WordPress Site
Repost from https://www.wpbeginner.com/wp-tutorials/how-to-easily-display-code-on-your-wordpress-site/ Do you want to display code in your WordPress blog posts? If you tried to add code like regular text, then WordPress will not display it correctly. WordPress runs your content through several cleanup filters each time you save a post. […]
Building Offline Sites with ServiceWorkers and UpUp
Repost from https://dev.opera.com/articles/offline-with-upup-service-workers/ We are living in an increasingly mobile world. We rely on our phones to keep us connected wherever we go, and to provide us with the information we need to get through our day. But connectivity hasn’t quite caught up with […]
I love Vivaldi, from a not-so experienced WP user.
Hello Vivaldi community, this is my first post on My Vivaldi Blog. When I first logged in, I felt very familiar, and happy too, seeing the WordPress interface. Because I’m building my own WordPress site, and I have to install everything from scratch, you […]