Hi, what do you want to do?
Curated Video
Complete Java SE 8 Developer Bootcamp - Scope-Part 1
Learn how to recognize the scope which defines the lifecycle and accessibility of state of a variable in a class.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8...
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8...
Curated Video
Multi-Paradigm Programming with Modern C++ - Coroutine Mechanics
In order to be able to implement coroutines, we have to understand a few low-level mechanisms. This video is an overview of how process memory is structured, how functions are called, and finally, how coroutine state is copied from...
Curated Video
Complete Java SE 8 Developer Bootcamp - String Objects
The author details the structure of string object provided by Java SE API.
r/>
This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass...
r/>
This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass...
friEdTech
Smarter Gmail Series: Lesson 3, Archive vs. Delete and Conversation View
Learn to use your Gmail SMARTER not HARDER in this humble little series. This is episode three where you learn why archiving (not deleting) is so important and how conversation view can make your life happier. Enjoy!
Curated Video
Complete Java SE 8 Developer Bootcamp - Passing By Value: Objects
We look into further details of passing arguments, with objects, including Strings.
r/>
This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings...
r/>
This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings...
Curated Video
Complete Java SE 8 Developer Bootcamp - Java Memory Leaks
The author demonstrates the mismanagement of garbage collection, unintentionally causing issues.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In...
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In...
Apalapse
How to Create an ND Filter Effect in Photoshop
How to Create an ND Filter Effect in Photoshop
Curated Video
Complete Java SE 8 Developer Bootcamp - Abstract Classes: Part 2
More examples of using abstract classes.
r/>
This clip is from the chapter "Abstract Classes and Interfaces" of the series "Complete Java SE 8 Developer Bootcamp".Create abstract classes and interfaces on getting familiar in...
r/>
This clip is from the chapter "Abstract Classes and Interfaces" of the series "Complete Java SE 8 Developer Bootcamp".Create abstract classes and interfaces on getting familiar in...
Curated Video
Mastering MEAN Web Development Expert Full Stack JavaScript (Video 20)
Web development is moving fast and to keep up to mark, you need a technology stack that is . The MEAN stack includes MongoDb, Express, Angular, and Node.js. These tools provide a rich environment to build advanced web...
Packt
Implementing a Min Stack
This video demonstrates how to implement a min stack.
<
br/>
This clip is from the chapter "Question 2: Min Stack" of the series "Data Structures and Algorithms: The Complete Masterclass".This section explains the concept of a min...
<
br/>
This clip is from the chapter "Question 2: Min Stack" of the series "Data Structures and Algorithms: The Complete Masterclass".This section explains the concept of a min...
Curated Video
Complete Modern C++ - Dynamic Memory Allocation - Part I (malloc Function)
This video explains basics of dynamic memory allocation in C.
• Learn the meaning of `optiona
l`
• Memory layout of `op
tional`
• Optional
ve
rsus pointers
This clip is from the chapter "Memory...
• Learn the meaning of `optiona
l
• Memory layout of `op
tional
• Optional
ve
rsus pointers
This clip is from the chapter "Memory...
Packt
Max Stacks
This video introduces you to max stacks.<br<br/>/>
This clip is from the chapter "Question 3: Max Stack" of the series "Data Structures and Algorithms: The Complete Masterclass".This section explains the concept of a max stack.
This clip is from the chapter "Question 3: Max Stack" of the series "Data Structures and Algorithms: The Complete Masterclass".This section explains the concept of a max stack.
Curated Video
Hands-On WebAssembly for C++ Programmers - Protecting Your Code with Debug Capabilities
What can we do to catch bugs earlier, without having to manually test?
• Adopt a DevOps mindset to catch bugs
early
• Add debug capabilities to flag proble
matic code
• Utilize sanitizers to detect undefined...
• Adopt a DevOps mindset to catch bugs
early
• Add debug capabilities to flag proble
matic code
• Utilize sanitizers to detect undefined...
Curated Video
Complete Java SE 8 Developer Bootcamp - Pass By Value: Primitives
This video details how primitive arguments are handled in Java.
r/>
This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass by value...
r/>
This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass by value...
The March of Time
Rockefeller Center mail
MOT 1937: ROCKEFELLER CENTER MAIL: (POV behind) Mail clerk man delivering mail to Rockefeller Foundation executive offices African-American receptionist. CU Letters envelopes being sorted addressed to John D. Rockefeller. New York City NYC
Guinness World Records
Tallest Stack of Doughnuts in One Minute
The tallest stack of doughnuts in one minute is 12, and was achieved by Rachael Cholak (USA) at Mike's Donuts and Chicken in Kenosha, Wisconsin, USA, on 30 March 2018.
Curated Video
Creational Design Patterns in Modern C++ - std::unique_ptr
This video highlights the examples explaining how and why a factory method can be implemented as a global function and focuses on the std::unique_ptr function.
r/>
This clip is from the chapter "Factory Method" of the series...
r/>
This clip is from the chapter "Factory Method" of the series...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Build A Queue With Two Stacks
Learn to write the most efficient code to mimic the behaviour of a queue using 2 stacks.
r/>
This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section,...
r/>
This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section,...
Curated Video
Complete Java SE 8 Developer Bootcamp - “this”-Part 1
The author shows how we can use the “this” keyword for specific instance of a class that is in focus.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer...
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer...
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
...
• Begin by introducing the user to the deque container, discussing how it
works
...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Find The Minimum Element In A Stack In Constant Time
Learn to keep track of the minimum element of a stack as it changes.
r/>
This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we build stack...
r/>
This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we build stack...
Curated Video
Introducing Ionic 2 (Video 6)
Hybrid apps are changing the way people build mobile applications. With Ionic 2, hybrid app developers are gifted with not only a fresh, well-built, and powerful platform, but also a tool to enjoy their development experience....
Curated Video
AWS Certified Solutions Architect Associate (SAA-C02) Exam Prep Course - Hands-On Challenge: CloudFormation
This video introduces you to the hands-on challenge: CloudFormation.
r/>
This clip is from the chapter "Resilient Architectures" of the series "AWS Certified Solutions Architect Associate (SAA-C02) Exam Prep Course".This...
r/>
This clip is from the chapter "Resilient Architectures" of the series "AWS Certified Solutions Architect Associate (SAA-C02) Exam Prep Course".This...