Crash Course
Programming Basics: Statements & Functions: Crash Course Computer Science
Today, Carrie Anne is going to start our overview of the fundamental building blocks of programming languages. We’ll start by creating small programs for our very own video game to show how statements and functions work. We aren’t going...
Curated Video
The Art of Doing - Web Development for Beginners - Course Introduction
In this video, we will provide an overview of the course and what you can expect to learn. This clip is from the chapter "Introduction" of the series "The Art of Doing - Web Development for Beginners".In this section, we will introduce...
Curated Video
The Art of Doing - Web Development for Beginners - Final Project Part 5
In this video, we will work on the pricing and sizing pages of our project, adding important features and functionality to make our web application more user-friendly and engaging. Join us as we polish our project and make it shine! This...
Curated Video
Behavioral Design Patterns in C++ - Pros and Cons-Strategy Pattern
This video talks about the pros and cons of the strategy pattern. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the strategy pattern.
Curated Video
Behavioral Design Patterns in C++ - Dynamic Array - IV
This video explains how to use the dynamic strategy to decide the thread-safety for the array class. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the...
Curated Video
Behavioral Design Patterns in C++ - Spreadsheet Application - III
In this third video of the series, we will try to replace conditional statements with inheritance and see if it works. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will...
Curated Video
Behavioral Design Patterns in C++ - Introduction-State
This video provides an introduction to the State design pattern and helps find the state of the object. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on the State design...
Curated Video
Behavioral Design Patterns in C++ - Methods for States - I
This video demonstrates another approach—methods for state approach that can be implemented in the State design pattern. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on...
Curated Video
Deep Learning - Computer Vision for Beginners Using PyTorch - Conditional Statements in Python - if
In this video, you will learn about the "If" conditional statement and how to implement it. This clip is from the chapter "Optional Learning - Python Basics" of the series "Deep Learning - Computer Vision for Beginners Using PyTorch".In...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Arrays and the Split Function
This video explains the split function where the string will be split into substrings using a delimiter. This clip is from the chapter "Arrays" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This video explains...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Multidimensional Arrays
This video explains multidimensional arrays, which are made by adding a comma after the first number between round brackets of your array name, then adding another number. This clip is from the chapter "Arrays" of the series "The...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Cell Property
This video explains the Cell property used to reference the cells on your spreadsheets. This clip is from the chapter "Loops with VBA" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains loops...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Logical Operators
This video explains logical operators in VBA such as AND, OR, NOT. This clip is from the chapter "VBA Conditional Statements" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains the various...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Message Box
This video explains the message box or the msg box in Excel VBA. This clip is from the chapter "Subs and Functions" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains subs and functions in VBA.
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Subroutines
This video explains a subroutine, which is a piece of code that performs a specific task described in the code but does not return a result or value. This clip is from the chapter "Subs and Functions" of the series "The Ultimate Excel...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Arrays and Loop
This video explains how to store some numbers in an array and then use a loop to print the amount of cells in the spreadsheet. This clip is from the chapter "Arrays" of the series "The Ultimate Excel VBA Course - Learn and Master VBA...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Arrays
This video explains arrays where you can store more than one value under the same name. This clip is from the chapter "Arrays" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This video explains arrays, loops,...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Do Loop
This video explains the Do Loop that allows the user to repeat a certain process in a macro. This clip is from the chapter "Loops with VBA" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - For Each Loop
This video explains the For Each loop that is normally used with collections and arrays, which helps you run one or more loops to cycle through. This clip is from the chapter "Loops with VBA" of the series "The Ultimate Excel VBA Course...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - For Loop
This video explains the For loop that enables you to loop through a range of cells with just a few codes lines until the condition is met, and the code moves onto the next line of code. This clip is from the chapter "Loops with VBA" of...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - String Exercise
This video explains an exercise where you have a product code on a spreadsheet that is in the wrong format, and you have been given certain conditions as to how the output should look like after applying all you have learnt in this...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Mid Function
This video explains the mid function, which is used to grab characters from a string of text; it has three parts: the string to search, the starting position, and the number of characters to grab. This clip is from the chapter "String...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - The Left and Right Functions
This video explains the left and right functions, which will help us chop a string. The left function will help chop the characters from the start of the string and the right function will help chop the character from the end of the...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - InStr, InStrRev, and StrReverse
This video explains Instr and InstrRev, where Instr is looking from the start to the end, while InstrRev is looking from the end of the string to the beginning. The StrReverse returns a string by reversing the original string supplied....