Curated Video
C++ Standard Template Library in Practice - Stacks and Queues
The user is unfamiliar with the deque container, the adapter containers that wrap it, wishes to know more about them, and when to use them. • Begin by introducing the user to the deque container, discussing how it works • Then break down...
Curated Video
C++ Programming By Example - Adding Search Functionality
How can you add search functionality to the application? • Learn what algorithms could be used from the STL • Implement search by book title • Experiment with search by author This clip is from the chapter "Building a Library Management...
Brian McLogan
Find the actual speed and bearing using vectors
Find the actual speed and bearing using vectors
Flipping Physics
Introduction to Newton's 2nd Law with Example Problem
The application of Newton’s Second Law is when you really understand what the net force equals mass times acceleration where both force and acceleration are vectors really means. Therefore, we introduce Newton’s Second Law and then do an...
Virtually Passed
Work Energy Proof Part 1 - Kinetic Energy
This video will prove that the total work done on a particle between positions 1 and 2 equals the change in kinetic energy.
IDG TECHtalk
R tip: Access nested list items with purrr
In this ninth episode of Do More with R, learn how to easily access and modify nested list items with the purrr package’s modify_depth function. Leave a comment and let us know what tips you’d like to see in a future Do More With R video.
Curated Video
Cinemática
Este programa de video de acción en vivo es sobre la palabra Cinemática. El programa está diseñado para reforzar y apoyar la comprensión y retención por el estudiante de la palabra Cinemática mediante el uso de secuencias de video,...
Curated Video
Multi-Paradigm Programming with Modern C++ - Distributing the Work
Task creation is cheap, but it’s not free. We have to find a compromise between loading all threads with data and introducing unnecessary overhead. In this video we will learn a simple formula for distributing the work, and also discover...
Curated Video
Creational Design Patterns in Modern C++ - Multiple Actors - Part III
This video is the third part of the three-part video that demonstrates how to reduce dependency on the concrete classes through a factory. This clip is from the chapter "Object Pool" of the series "Creational Design Patterns in Modern...
Curated Video
Creational Design Patterns in Modern C++ - Multiple Actors - Part II
This video is the second part of the three-part video that demonstrates how to use the acquire and release methods. This clip is from the chapter "Object Pool" of the series "Creational Design Patterns in Modern C++".This section...
Curated Video
C++ Standard Template Library in Practice - Auxiliary Iterator Functions
We want to know what functions are available for making working with iterators simpler. • Learn what functions are available to make working with iterators more generic • Learn what these different functions can do • Show them in action...
Brian McLogan
Master writing the vector given the direction and magnitude
Master writing the vector given the direction and magnitude
Brian McLogan
Master Sketching a vector in component form and as a linear combination
Master Sketching a vector in component form and as a linear combination
Curated Video
Finding the Centroid of a Triangle Using Vector Geometry and Coordinate Points
The video is a lecture presentation on vector geometry and the ratio theorem, with a focus on the centroid of a triangle. The presenter explains the concept of a centroid, which is the point of concurrency of a triangle formed by the...
Flipping Physics
Nerd-A-Pult #2 - Another Projectile Motion Problem
This time in our projectile motion problem, we know the displacement in the y-direciton and we are solving for the displacement in the x-direciton. We could you use the quadratic formula and I even show you how, however, I also show you...
TMW Media
Scalers and Vectors: Solving a problem, Part 2
Based on previous results, how would solve the next part of the problem and express it in terms of magnitude and angle? Scalers and Vectors, Part 5
Curated Video
C++ Programming By Example - Building a Sorting Application
How to build a mini address book that is sortable by first name, last name, and phone number? • Introduce std::pair and std::tuple • Create fake data for “phone book” • Show how to use the std::sort function to sort by first name, last...
Brian McLogan
What are i and j in terms of vectors
in this video series I will show you how to find the angle of a vector when given in component form or as a linear combination. To understand the direction of a vector it is important to go back to the unit circle and determine how we...
Curated Video
Multi-Paradigm Programming with Modern C++ - Searching and Sorting
Search is the most common operation we perform on data. There are three common types of search: Linear, sorted (binary), and by hash. • Linear search is the simplest way to find things, and often the fastest • Overview of associative...
Curated Video
Complete Modern C++ - std::array (C++11)
In this video, learn the features of std::array and compare it with in-built static arrays. This clip is from the chapter "Standard Template Library" of the series "Complete Modern C++".This section is the description of the standard...
Curated Video
C++ Standard Template Library in Practice - Numeric Algorithms - std::partial_sum and std::adjacent_difference
The listener is new to algorithms and does not know about the numeric algorithms. • Introduce the listener to the std::partial_sum and std::adjacent_difference algorithm • Show how it works and explain the different versions available •...
Curated Video
C++ Standard Template Library in Practice - Iterator Adaptors
We want to learn what other non-container iterators are available, and what they can do. • Introduce the different adapter iterator types • Learn what they can do and cover the differences • Show them in action using a code example This...
Curated Video
C++ Programming By Example - Overview of STL Algorithms
What algorithms are available in the standard template library? • Introduce algorithms available in the standard template library via the documentation • Implement examples of use of the various algorithms • Show the output from program...
Curated Video
Data Science and Machine Learning with R - JSON Parsing: {jsonlite}
This video explains JSON parsing. This clip is from the chapter "Data Manipulation in R" of the series "Data Science and Machine Learning with R from A-Z Course [Updated for 2021]".This section focuses on data manipulation in R.