Deepen your technical knowledge
Learn and share the latest technology with community members in Webscale’s Engineering Education Program.
Creating ChatBot Using Natural Language Processing in Python
A bot is a computer program that performs predetermined tasks automatically. Its goal is to perform human duties the same way humans do. In a nutshell, they mimic human behavior. In this tutorial,...
Building a Vue 3 Application with JSON Server and Axios
Vue is a front-end JavaScript framework used to create single-page apps that run on the client-side. It can also be used to create full-stack applications by making HTTP requests to a backend server. It is popular with Node.js and the Express(MEVN stack). JSON...
License Plate Detection And Recognition Using OpenCv And Pytesseract
License plate detection is identifying the part of the car that is predicted to be the number plate. Recognition is identifying the values that make up the license plate. License plate detection and recognition is the technology that uses computer vision to detect and...
A 3D Object Detection Solution for Everyday Objects
This tutorial will perform 3D object detection using the mediapipe library and python. We will be drawing a 3D bounding box around an object instead of the common 2D bounding boxes that we are used to. Prerequisites To follow along with this tutorial, you need to: Be...
How to use TypeScript with Node.js
Typescript, a JavaScript superset, is gaining tremendous popularity among developers. It incorporates every JavaScript feature with supplementary traits such...
Node.js Network Requests using Axios
In the modern technological world, it is very rare to find stand-alone applications. Most applications depend on resources from other applications. These...
Embedding a Video into a Webpage Using HTML and CSS
Video embedding has become a popular aspect of web development. With recent advancements in the tech industry, developers can embed videos into various web...
How to Connect MongoDB to Node.js Using Mongoose
Mongoose.js connects your MongoDB clusters or collections with your Node.js app. It enables you to create schemas for your documents. Mongoose provides a lot...
How to Create a Simple REST API using TypeScript and Node.js
Typescript is a superset of JavaScript with additional features such as static types checking. Typescript is gaining a lot of popularity among JavaScript...
Session Management in Node.js using ExpressJS and Express Session
A website is based on the HTTP protocol. HTTP is a stateless protocol which means at the end of every request and response cycle, the client and the server...
A Vanilla Node.js REST API without Frameworks such us Express
Node.js is a very popular JavaScript framework. It shines most when used to build back-end services and APIs. Node.js developers often utilize...
Container Components in React
When you use React to build applications, you should think of how data is being passed among different components in the application. In this article, we’ll...