Design and Development Articles
Git Tip! Did you make your changes in the wrong branch?
We’ve all forgotten to create a new branch from time to time, but making changes in the wrong branch is easily fixed. The command below creates a new branch and moves all your changes over to that new branch. git switch -c “new-branch”
… read moreSharing data between ReactJS components with RxJS
Sharing data using RxJS observables… read more
Basic ReactJS Routing
ReactJS Routing including route params… read more
Categories
New ES2021 Features
Here's some of the new ES2021 features.… read more
Getting WordPress back up and running after restarting Ubuntu
Restarting Apache, PHP and MySQL after restarting Ubuntu.… read more
Handling loading and error states with Angular’s async pipe
How to deal with loading and error states when using the Angular async pipe… read more
Request Validators with API Gateway REST API
Validating your request body in API gateway… read more
Partition Keys and Sort Keys in DynamoDB
The different between DynamoDB's Partition and Sort keys… read more
Enabling CORS in AWS API Gateway
Enabling CORS for your AWS REST API… read more
Building an API with AWS Lambda and API gateway
Create a Serverless API with AWS Lambda and API Gateway tutorial… read more
Sorting object arrays by property values
How to sort an object array by a property values in JavaScript… read more
Reloading components when route parameters change in Angular
A simple way to reload component data when route params change in Angular… read more
Creating an ‘Add to Calendar’ link in React
Creating a cross browser .ics link with a 15 minute alert/reminder in React … read more
Google Analytics (gTag) and Angular
Adding Google Analytics (gTag) to an Angular 8 application… read more
Installing Docker on an AWS EC2 instance
How to install Docker and Docker compose on an Linux EC2 instance… read more
Using Docker for local WordPress Development
docker-compose for local development with an existing Wordpress site… read more
Running Angular unit tests in headless Chrome
Setting up Karma to run unit tests in headless chrome… read more
Angular nested template forms.
Giving child components access to the parent form object… read more
Testing a failed api response when unit testing Angular/Ionic apps
Two methods for unit testing failed api responses in Angular applications… read more