Category Archives: Software

How Do I Take a Piece of My Status to Print It Somewhere?

useSelector is used to obtain information from the state. const state = useSelector(state => state); The code snippet above basically makes the useSelector hook convert the state into an object that can be accessed with the variable that holds useSelector, in this case, “state”. One idea is that you can destructure the state, for example, […]

How to Fix the ‘502 Bad Gateway’ Error in Django Deployed on AWS Elastic Beanstalk

Introduction The “502 Bad Gateway” error is common when Nginx, acting as a reverse proxy, fails to pass requests to the Gunicorn application server in Django applications deployed on AWS Elastic Beanstalk. This tutorial guides you through the steps to diagnose and fix this issue, focusing on the importance of properly managing your application’s dependencies. […]

Setting Up an Environment Variable in AWS Elastic Beanstalk

Step 1: Access Elastic Beanstalk Log in to your AWS console and navigate to Elastic Beanstalk. Select your application. Step 2: Select Your Environment Choose the specific environment of your application where you want to add the environment variable. Step 3: Environment Configuration On the environment summary page, locate the “Configuration” section. Step 4: Modify […]

Sign Language Translator

The sign language translator created by Priyanjali Gupta — How was it made? She is a third-year Engineering student at Vellore Institute of Technology in India. She developed a model that uses artificial intelligence to instantly convert sign language into English words. Previously, in 2020 and 2021, Nicholas Renotte uploaded tutorials to his YouTube channel […]