If you have a large ecosystem with multiple applications, it’s nice to have a common user account that you can use to authenticate in these separate applications. So when a user authenticates any of these apps, they will be logged in everywhere.
This article will share with you how to make a simple CRUD operation application in Laravel 8 for example. As you know Laravel 8 already release with many new features and functionality. This tutorial is for beginners. So, if any…
Heap sort is a comparison-based sorting technique based on Binary Heap data structure. It is similar to selection sort where we first find the minimum element and place the minimum element at the beginning. We repeat the same process for…
When adding a form to a public site, there’s a risk that spambots will try to submit it with fake values. Luckily, the majority of these bots are pretty dumb. You can thwart most of them by adding an invisible…
PDFMiner: PDFMiner is a text extraction tool for PDF documents. Install PDFMiner : pip install pdfminer PyMuPDF: Python bindings for the PDF toolkit and renderer MuPDF Install PyMuPDF : pip install PyMuPDF You can use this script to fill signature…
Install muPDF Repair damaged PDF using command The clean command pretty prints and rewrites the syntax of a PDF file. It can be used to repair broken files, expand compressed streams, filter out a range of pages, etc. mutool clean…
Python-tesseract is an optical character recognition (OCR) tool for python. That is, it will recognize and “read” the text embedded in images. Python-tesseract is a wrapper for Google’s Tesseract-OCR Engine. It is also useful as a stand-alone invocation script to tesseract,…
docugen strives to make the process of creating business documents easy. With docugen, users have a wide range of options to create/upload their business templates easily. Users can design a template, upload a PDF/image from your local system or pick one…
Here is a step by step guide in this ReactJS Tutorial to start with the first react application. 1. To start with ReactJS, we need to first import the react packages as follows. 2. Save the file as index.js in…