Deepen your technical knowledge
Learn and share the latest technology with community members in Webscale’s Engineering Education Program.
How to Create Cookies and Sessions in ASP.NET
Cookies are small tokens of data that are stored on the computer. They are used to store user data on the client end. Some of the details stored on the client’s computer include name, user id,...
Acelerating Automation with Hyperautomation
Every organization strives to make its operations faster and more efficient. One way to achieve this is through automation. Automation has helped many organizations accomplish a given level of their desired efficiency. Yet, they still want to optimize their resources...
A Look at C# Coding Conventions
This article outlines a set of coding guidelines, design principles, and naming conventions for the C# programming language and the .NET framework. It lays out the rules in a format that is simple to read and understand, allowing software engineers to apply them...
A Gentle Introduction to the Python Binance API
Python-binance is an application programming interface that allows you to connect to the Binance servers via the Python programming language. It is important to note that the python-binance library is not affiliated with Binance. This tutorial will show you how to...
Getting Started with Push Notifications in Node.js using Service Workers
A push notification is a message that pops on the screen when a mobile or a web application is performing another activity. In modern web applications, push...
The Basics of Genetic Algorithms in Machine Learning
A genetic algorithm is a search-based algorithm used for solving optimization problems in machine learning. This algorithm is important because it solves...
How to Generate QR Code Using Node.js
Have you ever wanted to build an application that generates QR codes of text or URLs using Node.js? If so, then you are in the right place. In this tutorial,...
How to Fix Memory Leaks in Python?
In Python, memory storage plays a significant role, but it can lead to storage issues because of memory leaks. Memory is key to keeping any program working...
Introduction to Machine Learning using C++
C++ is a high-level object-oriented programming language with a faster run-time compared to most programming languages. This is because it is closer to...
How to use CORS in Node.js with Express
Node.js is an open-source and cross-platform runtime used when executing JavaScript code on the server-side. One of the popular Node.js server frameworks is...
Creating a Location-tracking App using Firebase and Google Maps in Android
In this tutorial, you will learn how to create an application that uses Google Maps API to determine the precise location of another user. We will achieve...
How to Get SSL HTTPS for Localhost
This article will take you through the process of provisioning SSL certificates for local servers. Building a web application for a production server requires...
Documenting a Node.js REST API using Swagger
Swagger is a software tool used for designing, building, documenting, and using RESTful APIs. It follows the OpenAPI specification. An API (Application...