Author: Ashfame
-
Setting up Caddy PHP MySQL stack for a web server
Login into your server as the root user ssh root@xx.xx.xxx.xx Update everything first Set timezone to UTC Set hostname Setup user Add a new user for ourselves, we won’t be using root user after this initial setup for security purposes. Setup SSH key based login for ourselves Paste your public key and save the file.…
-
2020-in-Review: Accidental Gap Year
Who takes a gap year and not travel? Apparently this crazy guy ?
-
Show Ajax loading animation automatically using Pace
Making Hubspot’s Pace library behave & work as advertised
-
How much traffic does 200+ upvotes in a Product Hunt launch brings?
Getting 600+ websites being monitored in less than 2 weeks of launch
-
Deploying to AWS lambdas to multiple regions in one go
Deploying your code to AWS Lambdas to multiple regions using a CLI ?
-
Keeping tab on Google Analytics Realtime view without staring at it
Contains Embedded Gist of Javascript code + GIF of the end-result in action
-
Setting cron to be run as root
In Linux based distros, its very simple to setup cron for repeated tasks by using `crontab -e` for editing the crontab of the current user as you are logged in. You can view the contents of your crontab by `crontab -l`. But if you need to call something with root privileges, its as simple as…