Life with 🐘 🐳 🐧 πŸ’»

Follow @DennisdeBest

A Bash Script To Create New Scripts !

In Linux I tend to create my own scripts to try to automate the most stuff possible. In order to do so I used to create a new file in /usr/local/bin, make it executable and then start writing script into that file :

touch /usr/local/bin/my-script
chmod +x /usr/local/bin/my-script
vim /usr/local/...

Continue reading

β€œInnovation is the outcome of a habit, not a random act. ” Sukant Ratnakar

Contribute to Grav plugins

When you notice some errors in the Grav plugins you can help fixing them by changing some of the code inside.

When upgrading to Grav 1.7 and PHP 8 it crashed with the DropCaps plugin.

To get this to work I forked the repository and added a contrib directory at the root of my Grav project.

T...

Continue reading

Lighthouse 6 headless !

Lighthouse audits running headless !

Lighthouse is an auditor created by Google to, as they say, See how well your website performs. Then, get tips to improve your user experience

It has always been an easy tool to use but with plenty of caveats. You can run it straight from you Chrome browse...

Continue reading

Traefik 1.7, Intro !

Traefik is an edge router (for the full information that they put forward you can check their documentation). Basically this means that it will listen to all the incoming traffic on a particular server and then dispatch it to different places. It has many features, some of which I will not talk a...

Continue reading