Is your WordPress site shown as No Secure Connection? Solve this easily forcing any http request to be rewritten using https. Just copy and paste the code below into your .htaccess file exactly as shown.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Header always set Content-Security-Policy: upgrade-insecure-requests
Resize a bunch of images at the same time using a Bash loop
/in Tooling/by GénesisYou can take advantage of Bash and ImageMagick to quickly do processing of many images.
But it could be even easier using the command mogrify from the same library:
HOW TO RESIZE MULTIPLE IMAGES AT ONCE
HTML range value
/in HTML5/by GénesisShortest version without form, min or external JavaScript.
Forcing the domain to serve securely using HTTPS (for any site)
/in Tooling/by GénesisIs your WordPress site shown as No Secure Connection? Solve this easily forcing any http request to be rewritten using https. Just copy and paste the code below into your .htaccess file exactly as shown.
Fusion Dance – HTML5 and CSS3
/in Design/by GénesisI’ve had this Goku fusion idea between HTML & CSS in mind for a while but I couldn’t find the time to draw it till now. Many web developers grow in ego once they know some JavaScript tricks but a real front-end engineer is not really good until he/she masters HTML and CSS as well. Never underestimate HTML and CSS!
Automatic email validation
/in HTML5/by GénesisNo JavaScript or attribute pattern required.