Deepen your technical knowledge
Learn and share the latest technology with community members in Webscale’s Engineering Education Program.
Implementing Skeleton Loading In Next.js With Tailwind CSS
Skeleton loaders are aimed at giving users the best experience during wait time before the actual web content is fetched and displayed. In this tutorial, we will discuss skeleton loaders, where they...
Understanding Java Inheritance and Polymorphism
Java is an object-oriented programming language since it provides Java developers with the ability to implement objects as real-life entities. OOP (object-oriented programming) is a programming paradigm built around objects and their properties (attributes) and...
Building Scalable Multi-Module Projects in Spring Boot
In this tutorial, we will go through the multi-module architecture - which gives a drastic improvement on the monolith approach, yet offers as many possibilities of the microservices architecture, while evading the huge demands of microservices. We will build a model...
DBSCAN Algorithm Clustering in Python
DBSCAN is a popular density-based data clustering algorithm. To cluster data points, this algorithm separates the high-density regions of the data from the low-density areas. Unlike the K-Means algorithm, the best thing with this algorithm is that we don’t need to...
How to Set up a Node.js Express Server for React
React is a JavaScript library used to build user interfaces and develop single-page applications using reusable UI components. React is used for building...
Introduction to YOLO Algorithm for Object Detection
YOLO is an algorithm that uses neural networks to provide real-time object detection. This algorithm is popular because of its speed and accuracy. It has been...
Building your First Telegram Bot using Node.js and Telegraf
What are telegram bots? Bots are third-party application accounts that run inside the Telegram application. Users can interact with bots by sending them...
User Groups and Permissions in Linux
From smartphones to cars, supercomputers and home appliances, home desktops to enterprise servers, the Linux operating system is everywhere. Introduction To...
Comparing Graphical User Interface (GUI) and Command Line Interface (CLI)
The operating system enables the interaction between the user and the device. It does this by providing two user interfaces: a command-line interface (CLI)...
How to Make an Image Carousel Using Basic HTML, CSS, and JavaScript
An image carousel is a container (slideshow) of images or info that users can select by clicking a button that directs them forward or backward in the...
How to Insert 3D Objects into a Webpage using HTML and CSS
Are you a creative frontend web designer or are you looking for ways to make your website look more interactive and visually appealing? Would you like to...
Dunder/Magic Methods in Python
Dunder methods are names that are preceded and succeeded by double underscores, hence the name dunder. They are also called magic methods and can help...
Getting Started with Electron by Creating a React App
Electron with Create-React-App The methods of creating desktop applications have come a long way. Every day, developers are coming up with easier to use...