Curated Video
Python In Practice - 15 Projects to Master Python - Creating Models and Storing eBooks in the Database
This video explains creating models and storing eBooks in the database. This clip is from the chapter "eBook Web Store" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on the eBook web store.
Curated Video
AWS Solutions Architect Associate (SAA-C02) Exam Prep Course - 2021 UPDATED! - Creating Elastic Block Store (EBS) Volumes Lab
This video explains the EBS concepts and demonstrates the creation and usage of EBS volumes. This clip is from the chapter "Solutions Architect Chapter 2 – Amazon Web Services (AWS) Storage Design" of the series "AWS Solutions Architect...
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. This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time Stream Processing...
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. 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 can...
Curated Video
AWS Certified Data Analytics Specialty 2021 – Hands-On - S3 Storage Classes Hands-On
This video is a practical video where we will demonstrate storage classes. This clip is from the chapter "Domain 2: Storage" of the series "AWS Certified Data Analytics Specialty (2022) Hands-on".In this section, you will learn about the...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Object Attributes - Classes - Cart Class
In the previous lesson, we created our object and class; now, we will look at creating the cart class, which is useful for storing the objects that we have created. This clip is from the chapter "Classes" of the series "The Ultimate...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - State Store Fault Tolerance
In this lecture, we will learn about the fault tolerance capability of the local state store. This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This section is...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Understanding States and State Stores
In this lecture, you will understand the concept of states and state store. This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This section is about States and...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Section Summary and References "States and Stores"
This lecture summarizes the state stores section. This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This section is about States and Stores. You will learn to...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Caution with States
In this lecture, we will try to understand the need for repartitioning your Kafka Stream and also learn a method for doing the same. This clip is from the chapter "States and Stores" of the series "Apache Kafka - Real-time Stream...
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. This clip is from the chapter "Revisiting Dictionary" of the series "The Ultimate Guide to Python Programming...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 01 - Reference Types - How are they Stored in Memory?
In this video, we will learn about reference types - how they are stored in memory. This clip is from the chapter "Reference Types" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look into...
Curated Video
Java for Beginners with Hands-On Program and Capstone Project - Creating the Book DTO and Entity Classes
This video will dive into creating the data transfer object (DTO) and entity classes for the Bookstore App. This video will explain the purpose and structure of DTOs and entities and implement them for the Bookstore App, enabling storing...
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. This clip is from the chapter "KTable - An Update Stream" of the series "Apache Kafka - Real-time Stream Processing (Master...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create an Order Repository
An Order Repository class is created and initialized with the connection string and the logger object. GetAllOrders() method is created to list all orders from the Orders table in the SQL database. This clip is from the chapter "Coding...
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. This clip is from the chapter...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Startup Class - How to Configure Services
This video discusses the Startup class in an ASP.NET Core 3.1 project. After going through this video, you will have knowledge about the two main methods in this class, in particular, the ConfigureServices() method, which is used to...
Curated Video
Learn Java from Scratch - A Beginner's Guide - Step 01 - Reference Types - How Are they Stored in Memory?
In this video, you will learn about reference types—how they are stored in memory.
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Introducing KTable
This lecture introduces you to the notion of KTable. This clip is from the chapter "KTable - An Update Stream" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This section is about KTable. You will create your...
Curated Video
Apache Kafka - Real-time Stream Processing (Master Class) - Creating Tumbling Windows
In this lecture, you will learn to create tumbling windows. This clip is from the chapter "Timestamps and Windows" of the series "Apache Kafka - Real-time Stream Processing (Master Class)".This section is about Timestamps and windows.
Curated Video
Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Custom Class and ArrayList
In this video, we will apply our knowledge of ArrayLists and Generics to work with custom class objects. We will learn to code on creating an ArrayList of custom objects, adding, removing, and searching for objects, and leveraging the...
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 Kafka...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Program Class and Host Object
The Program class is where the ASP.NET Core web app builds its web host server and other infrastructure and starts up as a console app (on which the web host is built), utilizing the Startup class. This clip is from the chapter "Create...