Revolutionizing Real Estate: The Power of AI in the Industry

An AI-powered tool that generates property descriptions can be a valuable asset in real estate. By using advanced algorithms and natural language processing, the tool can quickly produce a detailed and accurate description of a property, saving time and effort for real estate professionals. With the ability to analyze data such as house size, number […]
What is new in Material UI V5?
If you are like me who has been following the material UI, you must have noticed a new changes to the Material UI V5 components. Well it’s not actually new but a complete rebuild of the Grid component. It’s called Grid v2 and in case you are wondering what has changed, here are the changes […]
How to Customize Material UI Theme
Material UI is one of the most popular front-end UI framework. In this blog post we are going to take a look at how to customize a material ui theme. There are several reasons why you would want to customize a theme. Maybe a customer has a specific color palette or you are not happy […]
The Best React UI Framework to Choose in 2022
When you are developing a website for a business user experience is the main priority. Believe it or not but what the users’ view and experience is what matters no matter how complex the back end is. In order to develop interactive, modern and user-centric websites require frontend UI frameworks that streamline the development process […]
How to setup Apache server to work with React router
Let’s say you have built your next react app and it works flawlessly in your local environment. Now you build the app and upload to a server. You visit the home page and looks great. You click on a link and things don’t look too good. It seems the server does not know how to […]
How to Pass Environment Variables to Apache Server
I was using the AWS SDK for PHP to access my S3 bucket but before I could access the bucket I needed to set some environment variables. The documentation talks about different ways of setting the secret key and the key id and the method I chose was to put the key data in a […]
How to use SendGrid Web API via PHP in Loalhost
I was working on an app for a client and I needed to send email from localhost. The scripting language that I was using was php and I was using WAMP as my server. So the first thing I did was to download the sendgrid php api since I did not have composer. After unzipping […]
Create an Expanding Search Box
In this blog post we will be creating a growing search box in React as seen in the image. As you can see initially it’s just a magnifying glass and when you hover your mouse over it, it expands. When you click inside and give it focus it will stay in expanded state. If you […]
How to Lazy Load Images in React Using Intersection Observer API
In this blog post we are going to take a look at the Intersection Observer API and how we can use it to lazy load images and we will by using it in a React project. This can be useful when you have a grid of images and you want to load them when user […]
How to Create an Increment Decrement Control in React
In this blog post we are going to create an increment decrement control in React. This will be a profession reusable component so that you can use it anywhere in your project or in production. So let’s get started. First thing we will add is styled components. You can read more using the link but […]
