blog.reeceappau.comBuilding a Serverless Contact Form API with AWS Lambda, SES, Bedrock, and TerraformWhen someone fills out a contact form on most websites, they get a generic auto-reply — something like “Thanks for reaching out. We’ve received your message.” It’s functional but forgettable. I wanted something better. So I built a serverless contact...Apr 6, 2025·2 min read
blog.reeceappau.comBuilding and deploying a React website on AWS S3 using Terraform and GitHub ActionsIntroduction In this project, I built and deployed a React website hosted on AWS S3, with Amazon CloudFront as a content delivery network (CDN) to improve performance and ensure global availability. Terraform was used for infrastructure as code, and ...Jan 12, 2025·3 min read
thejsaddict.hashnode.devSo you think you know HTML?Most people after going through a course or video on HTML or some other language think they have mastered it. Everyone knows or has that idea in mind that HTML is very easy to point that you can type HTML with your eyes closed. Yeah, I agree with tha...Jan 3, 2025·1 min read
thejsaddict.hashnode.devHow to Sort an Array of Numbers in JavascriptSorting an array in javascript is pretty easy but the problem is sorting an array of numbers. How to sort an array of numbers in descending and ascending order. let numbers = [10, 43, 3, 8, 26]; numbers.sort(); console.log(numbers); //returns [10,...Apr 27, 2020·2 min read