Science Buddies
Breast Cancer Diagnosis with Python & KNN: A Step-by-Step Coding Tutorial
Explore how machine learning can diagnose malignant and benign breast tumors in this AI science project
Science Buddies
Tic-Tac-Toe AI Player using the Minimax Algorithm: A Step-By-Step Python Coding Tutorial
Explore how changing the depth that the Minimax algorithm explores can change the decisions that it makes
Science Buddies
How to Use a Photoresistor (Light Sensor) with Arduino (Lesson #27)
This easy video tutorial will show you how to use an Arduino.
Curated Video
Fundamentals of Object-Oriented Programming - C++ - Recursion
In this video, you will learn about recursion with a factorial program. This clip is from the chapter "Module 2" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we will cover statements and flow...
Curated Video
Fundamentals of Object-Oriented Programming - C++ - Header Files
In this video, we will work on our simple calculator program and learn how to add header files. This clip is from the chapter "Module 2" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we will cover...
Curated Video
Get Hired: Technical Interview
What is a technical interview? It is when you are required to perform a specific activity or assignment to demonstrate your knowledge, ability, and method from start to finish. The variance of tasks may depend on your vocation and are...
Curated Video
Web Shoppers Beware: The SCOB Virus and the Threat to Online Security
This video discusses the SCOB virus, a recent web virus that has infected numerous computers and servers. The virus spreads through banner ads, pictures, and logos on trusted websites like eBay and Yahoo. Unlike traditional viruses, SCOB...
Curated Video
Microchip Implants: Revolutionizing Medical Information Access or Privacy Concerns?
This video discusses the potential of a microchip that can be inserted under the skin, revolutionizing the way doctors access patient information. The chip, treated with Bio Bond, remains dormant until a scanner is used to activate it....
Science Buddies
RGB LED Color Mixing with Arduino (Lesson #28)
This easy video tutorial will show you how to use an Arduino.
Curated Video
Java Multithreading and Parallel Programming Masterclass - No-Starve Mutex Problem
This video explains the No-Starve Mutex Problem.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Sleeping Barber Problem
This video talks about the Sleeping Barber Problem.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Handling Exceptions in ThreadPools
This video demonstrates handling exceptions in ThreadPools.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Course Prerequisites and Code Resources
This video talks about the course prerequisites and code resources.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Course Overview
This video provides an overview of the course.
Curated Video
Cyber Security for Absolute Beginners - 2022 Edition - Part 02 - Patching and Updates
This video demonstrates how applying Windows safety patches and updates is essential in constantly keeping the system safe and how to use these patches and updates.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Dunder Methods or Magic Methods
In this video, you will dive into dunder (double underscore) methods or magic methods in Python. You will learn how these special methods allow you to customize the behavior of classes and objects and gain a deep understanding of their...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Method Overriding and MRO
In this video, you will learn about method overriding, which allows a subclass to provide a new implementation of a method inherited from a parent class. You will also understand the concept of method resolution order (MRO), which...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Object Techniques + Class Variables (Part 2)
In this video, you will explore advanced object techniques in Python, such as using class variables in conjunction with objects to create powerful and dynamic OOP structures.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Introduction to Object-Oriented Programming
In this video, you will learn the basics of object-oriented programming. You will understand the concept of objects and classes, and this video will provide a comprehensive overview of OOP in Python and its advantages.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Multiple Inheritance: Part 2
Continuing from the previous video, this video will cover multiple inheritance in Python, which allows a class to inherit from more than one parent class. You will learn about the method resolution order (MRO) and how to handle conflicts...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Introduction to Inheritance
Building upon the previous video, this video will introduce you to the concept of inheritance in Python. You will learn how to create and use subclasses that inherit attributes and methods from a parent class. This video will cover the...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Static Method
In this video, you will explore static methods in Python. You will understand the concept of static methods, which are methods that do not depend on the state of the instance or the class, and how to define and use them in your classes....
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 1)
In this video, you will dive into the concept of class methods in Python. You will learn how to define and use class methods, which are methods that are bound to the class and not the instance of the class. This video will cover the...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Issue in Class
In this video, you will continue our exploration of object techniques in Python OOP, focusing on more advanced usage of class variables, including class methods and inheritance.