Hi, what do you want to do?
Curated Video
Create a computer network: Model Network Devices as Objects
From the section: Interacting with Classic Network Devices. In this section, we will look at how to interact with classic network devices with Python libraries. We will explain what we define as classic network devices and use...
Curated Video
Learn Java from Scratch - A Beginner's Guide - Step 01 - Creating a New Java Project with Eclipse
In this video, you will learn about creating a new Java project with Eclipse.
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Creating your First State Store
In this lecture, we will create a state store, and you will learn manually creating state stores and using them in your programs.
r/>
This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time...
r/>
This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time...
Curated Video
Scala & Spark-Master Big Data with Scala and Spark - Creating Class
In this lesson, you will learn how to create a class in Scala.<br<br/>/>
This clip is from the chapter "Classes" of the series "Scala & Spark-Master Big Data with Scala and Spark".This section primarily focuses on classes.
This clip is from the chapter "Classes" of the series "Scala & Spark-Master Big Data with Scala and Spark".This section primarily focuses on classes.
APMonitor
Java ☕ Classes and Objects
One of the biggest advancements in programming in the last few decades is called object oriented programming. Many of the most used programming languages today, including Java, are object oriented. This means that programmers...
Curated Video
C++: Learn how to create a simple Calculator in C++
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a Customer Repository
A Customer Repository class is created and initialized with the connection string and the logger object. GetAllCustomers() method is created to list all customers from the Customer table in the SQL database.
<
br/>
This clip is from...
<
br/>
This clip is from...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a ToDo List Razor Pages Application
This is a walkthrough to build a simple Razor ToDoList application with the in-memory collection. The video uses a service layer and dependency injection principles.
<
br/>
This clip is from the chapter "Detailed Look into Razor...
<
br/>
This clip is from the chapter "Detailed Look into Razor...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - namedtuple Class
Here, we will look at creating a dictionary to store the information of an object and create a copy of this and change values.Â
<
br/>
This clip is from the chapter "Revisiting Dictionary" of the series "The Ultimate Guide to Python...
<
br/>
This clip is from the chapter "Revisiting Dictionary" of the series "The Ultimate Guide to Python...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Creating your First Update Stream – Ktable
In this lecture, we are going to create a super simple example to understand some details of using KTable.
r/>
This clip is from the chapter "KTable - An Update Stream" of the series "Apache Kafka - Real-time Stream Processing...
r/>
This clip is from the chapter "KTable - An Update Stream" of the series "Apache Kafka - Real-time Stream Processing...
APMonitor
Introduction to Python Classes
Python classes are collections of variables and functions. Instances of the class can be initialized and customized to store properties, data, or use methods that belong to the class and instance. The tutorial concludes with an example...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Kafka Storage Architecture
Apache Kafka organizes the messages in Topics, and the broker creates a log file for each Topic to store these messages. However, these log files are partitioned, replicated, and segmented. In this lecture, you will understand the...
APMonitor
Python 🐍 Classes and Objects
Classes are collections of objects and functions. Many Python packages such as time, tclab, numpy, scipy, gekko, and others are distributed as classes. A class is imported with the import statement such as import time. Time is a package...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - KStream Aggregation using Aggregate()
In this lecture, you will learn to use the aggregate() method for real-time stream aggregation.
r/>
This clip is from the chapter "Real-time Aggregates" of the series "Apache Kafka - Real-time Stream Processing (Master...
r/>
This clip is from the chapter "Real-time Aggregates" of the series "Apache Kafka - Real-time Stream Processing (Master...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Building a Spider to Track Product Rank in E-Commerce Websites
In this video, we will guide you step-by-step on how to create a web scraper using Python and Scrapy. We will show you how to build the spider class, define the selectors, and send a request to the website. You will learn how to parse...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - KStream Aggregation using Reduce()
In this lecture, we will learn to use a reduce() method for computing real-time aggregate.
r/>
This clip is from the chapter "Real-time Aggregates" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This...
r/>
This clip is from the chapter "Real-time Aggregates" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This...
Curated Video
The Complete Guide to ASP.NET Core MVC (.NET 6) - Create Category Model-1
In this video, you will learn how to create a category model.
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - How Do We Create an ASP.NET 6.0 Web API Using EF Core?
This is a complete video on creating an ASP.NET 6 Web API using EF Core code first approach. The video shows how to create a new ASP.NET 6 Web API project in VS 2022 and install the Nuget packages.
<
br/>
This clip is from the...
<
br/>
This clip is from the...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - KTable Aggregation using Aggregate()
In this lecture, you will learn the mechanics of using the KTable aggregate () method.
r/>
This clip is from the chapter "Real-time Aggregates" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This...
r/>
This clip is from the chapter "Real-time Aggregates" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Real-time Streaming Challenges
In this lecture, you will understand the main challenge that forces us to take a different approach to real-time stream processing. This video picks up a real-life problem and talks about the complexity and the challenge that you need...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create Your Custom Middleware
This video walks through the steps to create a custom middleware. You are expected to be able to create your own simple custom middleware after going through the video.
<
br/>
This clip is from the chapter "Middleware in ASP.NET...
<
br/>
This clip is from the chapter "Middleware in ASP.NET...
Curated Video
The Art of Doing - Web Development for Beginners - Store Front Two Project Part 2
In this video, you will learn how to style the homepage of the company's site. We will apply appropriate HTML structure and semantic elements to create a visually appealing design. Additionally, we will work on the About page, which...
Curated Video
Design a computer system using tree search and reinforcement learning algorithms : Creating an Agent to Solve the MAB Problem Using Python and Tensorflow
From the section: The Multi-Armed Bandit. In this section, we will learn about the basics and look at one of the most foundational concepts in Reinforcement Learning – The Multi-Armed Bandit We construct a model of a MAB...
Curated Video
Behavioral Design Patterns in C++ - Organization - I
This video shows another example that explains the Iterator design pattern. We will create a class that represents an organization, and the organization class contains the employees.
<
br/>
This clip is from the chapter "Iterator"...
<
br/>
This clip is from the chapter "Iterator"...