Published 2023-01-14 15:10:18
What Is Policy As Code (POC)?Policy as code is the idea of automating the compliance of a software environment using software instead of a staff member or team. Depending on the software system under discussion, you might need to comply with different policies. For ex...
Published 2023-01-08 06:48:30
Why Proof Of Work?When I first read that proof of work was a way to achieve consensus on the blockchain network by solving a resource-intensive math puzzle it made little sense to me. It made little sense to me because I didn't understand how solving complex math problems ensured that a network remained unc...
Published 2022-11-26 03:50:45
What Is Pixel Tracking?Pixel tracking is when an obscure image is sent in the body of an email to gather information about the recipient. Pixel tracking is prevalent in the world of digital advertisement. Service providers typically use it when they have limi...
Published 2022-11-25 04:52:44
Repeat Words X Times |PHPRepeating a given string several times is something you rarely have to do as a developer, however, sometimes you need to repeat white spaces to pad some text to keep spacing even across a list. You can use either a loop or the built-in PHP function...
Published 2022-11-13 16:29:25
Adding A Copy Button To HighlightJS Code SnippetsThe code below produces the code snippet shown above using Highl...
Published 2022-11-05 03:50:45
What Is A Cronjob?A Cron Job is what you set up if you need a script or piece of code to be executed sometime in the future, once or at intervals. Cron jobs are usually set up to run tasks at regular intervals. This includes things like backing up data on ...