There are various online tools or methods to convert image file to text. By converting image into text I mean by extracting all the text that is visible in an image and converting into text string. For example, look at…
Author: Arvind Kumar
Using @ alias in React for cleaner React and TypeScript imports from various paths
React along with TypeScript is a wonderful tool for building scalable, maintainable, modern web applications. React + TypeScript is very popular among developers. In this post we will see the use of Aliases in React+TypeScript+Vite(optional). To follow along with this…
Deploying Next.js Application with Nginx on Ubuntu – 2025
Next.js is a popular React framework which enables developers to build user-friendly web applications and websites. It come with inbuilt file/folder name based routing to jetpack developers into the code part directly. Next.js simplifies the process of creating both static…
How to Setup Daily and Weekly Backup Cron on Linux server
Many hosting service providers provide free or paid backup services. Hosting Management software like WHM by cPanel come with powerful backup option that can be used if you are a paid member of the software. In this post however I…
State Management in React Native with React Hooks and Context API
How do you manage state in a React application? Have you used Redux or Hookstate or MobX etc. to manage state in your last React application. Do you remember all the stuff like store, actions and reducers in Redux? And…
Implementing Dropdown Selection with React Hook Form in React Native
I was using React Hook Form in my new React Native project. Unfortunately I was not able to find any useful examples of React Hook Form’ dropdown implementation in React Native except this one. So I had to put some…
Merging two CSS Style objects using Typescript in React Native
I am in the starting phase of using Typescript and I am sharing this code which I created to merge two different CSS definition files to combine and use merged css styles. I used similar code to combine two javascript…
How to Set and Get a new attribute in a Model in Laravel 9+
Laravel has unique way to set and get a new or custom attribute in a model. I will explain with help of an example. Accessors (Getters) and Mutators (Setters) in Laravel Mutators Mutators are used to transform model attributes. See…
How to fix WordPress “the website is undergoing scheduled maintenance…” error
While doing a plugin update on a WordPress website I accidentally clicked on a link on the update page and it took me away to another page. Consequently it disrupted the ongoing update process and it left the website in…
How to add path alias in React Native and to configure editors
Isn’t it frustrating to locate a file by path, for example by “../../../../../path/to/component” in import or require calls. Is there a better way for example making it like @core/component or @src/component? Yes, there is. Using path alias in React Native…