• home
  • blog
  • about
    • coverImage
      A Junior Developer's Introduction to Understanding Algorithms
      1/4/2025•19 views•5 min read•10 likes
      algorithms
      Introduction Some Developers have this idea that they have to memorize standard algorithms for their day-to-day operations as a developer, that might be the use case for some technical job interviews, but that’s not exactly important for being a succ...
    • coverImage
      Deploy a Next.js app on AWS Amplify
      7/1/2023•64 views•8 min read•0 likes
      programming blogs
      aws
      devops
      typescript
      next.js
      AWS Amplify announced server-side rendering support here, which means we can fully utilize Next.js server-side rendering. In this article you would build a user store app that shows you a list of users, you'll utilize Next.js server-side rendering to...
    • coverImage
      How To Create Custom Hooks in React / Next JS
      6/27/2023•120 views•8 min read•10 likes
      next.js
      react
      javascript
      programming blogs
      web development
      What are React Hooks? React Hooks allows developers "hook into" React's lifecycle and state management features from functional components. They provide a more concise and reusable way to manage component logic. Some popular examples are useState and...
    • coverImage
      Observability and Monitoring Amazon EC2 Instances with Amazon CloudWatch
      5/13/2023•23 views•5 min read•10 likes
      programming blogs
      aws
      aws amplify
      ec2
      What is Amazon EC2? Amazon EC2 (Elastic Compute Cloud) is a cloud service that allows anyone to rent servers located at different data centers around the world. This eliminates the time and upfront cost of installing servers locally. This is done so ...
    • coverImage
      How To Add Fonts In A Next 13 App
      4/24/2023•294 views•3 min read•1 likes
      next.js
      tailwind css
      react
      typescript
      javascript
      Overview In this article, I'll show you how Nextjs 13 now allows us to optimize our fonts with the next/font package. There is no need to download the Google fonts locally and no need for CDN links. Google Fonts To use Google fonts in your Nextjs app...
    • coverImage
      Getting Started With React Hooks
      1/15/2023•146 views•6 min read•1 likes
      react
      javascript
      reacthooks
      next.js
      newbie
      What are React Hooks? In the React 16.8 version, hooks are the new functionality. It permits the use of state and other React features without the need to create a class. In the past, you'll have to write class-based components to perform some of the...
    • coverImage
      Creating a simple Web app in Django – Mitchel Inaju
      11/29/2020•164 views•8 min read•0 likes
      django
      python 3
      python
      web development
      What is Django? Django is a Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without nee...