PHP-Array-Speed-Test

By Dillon Smart · · · 0 Comments

0 Comment

Was this helpful? Leave a comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.

What’s the difference between AWS Regions and AWS Availability Zones

Updated 3rd January 2024

AWS (Amazon Web Services) is built with scalability and high availability at its heart. Not too long ago, I took the AWS Cloud Practitioner class and passed the AWS Cloud Essentials exam, with the hope of achieving the Cloud Practioner certification soon. During the class, I noticed it was easy to get muddled between AWS

Understand Angular Decorators – What is a Decorator in Angular?

Updated 29th March 2022

Decorators are a core concept when developing applications with Angular. Angular.js, Angular’s predecessor, didn’t use Decorators, opting to use methods such as .component() instead. In this post, I will help you understand Angular decorators. What is a Decorator? A Decorator is a special kind of declaration provided by TypeScript that can be attached to a

DRY: What is DRY in Development

Updated 16th August 2022

DRY stands for Don’t Repeat Yourself. It’s a principle in software development that aims to reduce the repetition of code and favor abstraction and avoid redundancy. Let’s learn the meaning of DRY. The DRY principle is stated as “Every piece of knowledge must have a single, unambiguous, authoritative representation within a system”, but what does