Hi, what do you want to do?
Brian McLogan
Learn how to determine the reference angle of an angle in terms of pi
👉 Learn how to find the reference angle of a given angle. The reference angle is the acute angle formed by the terminal side of an angle and the x-axis. To find the reference angle, we determine the quadrant on which the given angle lies...
Brian McLogan
How to determine the reference angle of an angle in degrees
👉 Learn how to find the reference angle of a given angle. The reference angle is the acute angle formed by the terminal side of an angle and the x-axis. To find the reference angle, we determine the quadrant on which the given angle lies...
Brian McLogan
Find the reference angle of a negative angle
👉 Learn how to find the reference angle of a given angle. The reference angle is the acute angle formed by the terminal side of an angle and the x-axis. To find the reference angle, we determine the quadrant on which the given angle lies...
Curated Video
Multi-Paradigm Programming with Modern C++ - Arguments and Return Values
How many arguments should a function have, and how to pass them properly? There are simple ways for making the functions even better.
• How many argum
ents?
• Passing by value, by reference and
by pointer
• Return...
• How many argum
ents?
• Passing by value, by reference and
by pointer
• Return...
Brian McLogan
What is the definition of a reference angle and how do I use it
👉 Learn about angles in trigonometry. An angle is the figure formed by two rays sharing the same endpoint. The two rays are called the sides of the angle while the common endpoint of the two rays is called the vertex of the angle. Angle...
The Business Professor
Process for Filing for Patent Protection
Process for Filing for Patent Protection
Let's Tute
Microsoft Excel Tutorial: Understanding Relative Reference
This video tutorial explains the concept of relative reference in Microsoft Excel. It demonstrates how the cell reference changes automatically when the formula or data is copied to another cell. The tutorial also provides examples of...
Curated Video
Learn and Master C Programming - Passing By Value vs. Passing By Pointer
We will revisit passing parameters to functions to go over differences between passing by value and passing by reference (pointer).
r/>
This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For...
r/>
This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For...
Curated Video
Learn Go in 3 Hours - Methods
One object-oriented programming concept that has been very useful is the method, which tightly couples data with the code that processes it.
• This video covers Go’s support for methods and how it is both similar to and...
• This video covers Go’s support for methods and how it is both similar to and...
Curated Video
Learn Git in 3 Hours- What Is a Branch?
Branches can be used to enable parallel, simultaneous workflows in a single repository.
• Learn how they are represented b
y Git
• Learn why they are
s
o useful
This clip is from the chapter "Branches and...
• Learn how they are represented b
y Git
• Learn why they are
s
o useful
This clip is from the chapter "Branches and...
Packt
ES6 Sets
Other Newer Features - ES2015+: ES6 Sets
<
br/>
This clip is from the chapter "Other Newer Features - ES2015+" of the series "Modern JavaScript from the Beginning".In this section, you will learn about the newer features of...
<
br/>
This clip is from the chapter "Other Newer Features - ES2015+" of the series "Modern JavaScript from the Beginning".In this section, you will learn about the newer features of...
Curated Video
Multi-Paradigm Programming with Modern C++ - Shared Pointer
Shared_ptr is a reference-counting smart pointer. It’s less efficient than unique_ptr, but lets us forget about complexities of memory management, and helps avoid double delete bugs.
• How shared_ptr
works
• Using...
• How shared_ptr
works
• Using...
Curated Video
Complete Modern C++ - Type Traits (C++11)
This video shows you a few type traits and how to use them.
r/>
This clip is from the chapter "Templates" of the series "Complete Modern C++".In this section, we will see non-type template arguments, perfect forwarding,...
r/>
This clip is from the chapter "Templates" of the series "Complete Modern C++".In this section, we will see non-type template arguments, perfect forwarding,...
Curated Video
Apache Maven Beginner to Guru - Setting a Version Using Maven Property
This video demonstrates how to set a version using Maven property.
r/>
This clip is from the chapter "Multi-Module Projects" of the series "Apache Maven: Beginner to Guru".This section presents an overview of the multi-module...
r/>
This clip is from the chapter "Multi-Module Projects" of the series "Apache Maven: Beginner to Guru".This section presents an overview of the multi-module...
Curated Video
C++ Standard Template Library in Practice - Iterators
We need to get up to speed on what iterators are and what they can do.
• Cover the basics of iterators and set the ground work for what they are use
d for
• Show the technical elements of the iterator and start learning...
• Cover the basics of iterators and set the ground work for what they are use
d for
• Show the technical elements of the iterator and start learning...
Let's Tute
Efficient Formulas with Fixed and Relative Reference in Excel
This video tutorial teaches how to write formulas efficiently with fixed and relative reference in Microsoft Excel, covering three types of reference: absolute fixed cell reference, fixed row but not fixed column reference, and fixed...
Brian McLogan
Evaluate the 6 trig functions using the unit circle
👉 Learn how to evaluate the six trigonometric functions of a given angle. When given an angle we locate the angle on the unit circle. Then using the coordinate of the terminal side of the angle on the unit circle and the definitions of...
Curated Video
Apache Maven Beginner to Guru - Other Maven Plug-ins
This video introduces you to other Maven plug-ins.
r/>
This clip is from the chapter "Common Maven Plug-ins" of the series "Apache Maven: Beginner to Guru".This section introduces you to various Maven plug-ins, such as Maven...
r/>
This clip is from the chapter "Common Maven Plug-ins" of the series "Apache Maven: Beginner to Guru".This section introduces you to various Maven plug-ins, such as Maven...
TLDR News
The Problem with WAB’s Transition Period - Brexit Explained
On Tuesday evening MPs voted to reject the government's schedule for Brexit. Many MPs believed that they needed longer to scrutinise the bill. In this video, we discuss some of the issues that MPs have with the deal and why they want...
IDG TECHtalk
How to use a database ORM in Python
ORMs let you work with databases by way of a programming language's native metaphors, instead of by constructing raw database commands as strings. In this video we'll look at a simple ORM for Python, Peewee, and how it uses Python...
Curated Video
Creational Design Patterns in Modern C++ - Cloning Types
This video explains the basics of cloning and demonstrates how to use the prototype pattern to implement it.
• Open Qt Cr
eator
• Create a ne
w Qt class
• Add the files to the correct folders in
th
e course code
...
• Open Qt Cr
eator
• Create a ne
w Qt class
• Add the files to the correct folders in
th
e course code
...
Curated Video
Creational Design Patterns in Modern C++ - std::shared_ptr
This video demonstrates how to use the factory method as functions and focuses on the std::shared_ptr function.
r/>
This clip is from the chapter "Factory Method" of the series "Creational Design Patterns in Modern C++".This...
r/>
This clip is from the chapter "Factory Method" of the series "Creational Design Patterns in Modern C++".This...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Project phase 1: Build random int list generator
Implement the selection sort algorithm step by step
r/>
This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data...
r/>
This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data...
Brian McLogan
Find the reference angle and sketch both angles in standard position
👉 Learn how to sketch angles in terms of pi. An angle is the figure formed by two rays sharing the same endpoint. Angle is measured in radians or in degrees. One complete revolution about a point is equivalent to 2pi radians and 360...