Curated Video
Learning Akka (Video 9)
Akka helps you to build scalable, resilient, and fault-tolerant distributed systems that can provide outstanding performance on local machines as well as over remote networks. Employing the actor model, it is possible to leverage these...
Curated Video
SALIR DE LA RUTINA PROFESIONAL - Getting out of a Career Rut
Todos nos quedamos atascados en la carrera de vez en cuando. Si te sientes desmotivado o sin confianza, Peter Quarry cree que primero hay que dar "pasos pequeños" (por ejemplo, actualizar tu perfil de LinkedIn, establecer redes para...
Curated Video
Django3- Static Files
In this video, we will look at static files. This clip is from the chapter "Site 2 - Personal Portfolio" of the series "Django 3 - Full Stack Websites with Python Web Development".In this section, we will be working on our project site 2...
Curated Video
10 Ways To Impress In An Interview
Let's go through 10 ways to impress in an interview. This could be a job interview or an interview for a study placement, either way it is important to make a good impression and try to stand out from the competition. If you need some...
friEdTech
First Look at Google Slides Q&A
A first look at the new Google Slides Q&A feature and the laser pointer.
Rachel's English
Resumes
Applying for jobs in America while you’re learning English? I’ll show you to write your resume and cover letter in English and give you lots of tips for your job search. Learning English in the context of important life events is a great...
Curated Video
Adding a Resume Button in PowerPoint
In this tutorial, Justin demonstrates how to add a resume button in PowerPoint presentations to easily pick up where you left off. By utilizing a simple code, the button allows you to save the slide you were on and quickly resume from...
Institute for New Economic Thinking
Understanding LGBTQ Employment Discrimination
"If you want to make the world a more equal place, you need to understand the tools." Contrary to popular belief, the dismal science has terrific power to help people. In this interview, Marina Gorsuch explains her experiments with...
Curated Video
Data Science and Machine Learning with R - Setting Up a Website
This video explains how to set up a website. This clip is from the chapter "Starting a Career in Data Science" of the series "Data Science and Machine Learning with R from A-Z Course [Updated for 2021]".This section explains how to start...
Curated Video
Django3- Introduction 5-1
Let's take a quick introduction to this section. This clip is from the chapter "Site 2 - Personal Portfolio" of the series "Django 3 - Full Stack Websites with Python Web Development".In this section, we will be working on our project...
Seven Dimensions
Recruiting High Achievers
In this video, the speaker discusses the importance of hiring high achievers and the challenges organizations face in doing so. They highlight the need to assess attitudinal characteristics and ask behavioral questions to identify high...
Curated Video
Multi-Paradigm Programming with Modern C++ - What Is a Coroutine?
Coroutine is a function whose execution can be suspended and resumed. Suspension saves the state of the function, then the caller can execute as if the function has returned. Resumption loads the saved state back and continues execution...
Rachel's English
Cover Letters
Land the job interview with the right cover letter. The best cover letter starts a conversation, it answers the question why: Why you? Write a convincing cover letter with advice from three hiring experts.
Curated Video
Multi-Paradigm Programming with Modern C++ - Coroutine Machinery
C++ does not specify semantics for coroutines. Instead, the language provides some low-level constructs. The promise is an interface for a coroutine’s state machine, and there are also a few primitives for suspending and resuming a...
Curated Video
Comprehensive Android Developer Bootcamp - Making Sure Google Play Services Works
Android Locations and Maps:Making Sure Google Play Services Works This clip is from the chapter "Android Locations and Maps" of the series "The Comprehensive Android Developer Bootcamp".This section will show you how to create Maps and...
Curated Video
Multi-Paradigm Programming with Modern C++ - Implementing Continuations
We want to co_await other tasks. To implement this, every task will keep handles to coroutines that are waiting on it. Once a task is finished, it will cal resume on those handles. All resumptions should be scheduled with the executor. •...
Curated Video
Multi-Paradigm Programming with Modern C++ - Scheduling a Coroutine
Our task class should enable scheduling coroutines on thread pool threads. The coroutine must suspend, and then resume on one of those threads. • Implementing task’s resumption on task manager thread • Implementing task suspension with a...
Curated Video
Multi-Paradigm Programming with Modern C++ - Resuming the Coroutine
Our first coroutine was suspended, but never resumed. In this video we will see how to implement coroutine’s resumption for lazy evaluation, and also how to handle return values of a coroutine. • Implementing co_return support in the...
FuseSchool
Covalent Bonding In Carbon Dioxide
Carbon dioxide is a product of one of the most important chemical reactions in the world: combustion. Combustion is how a lot of people in the world heat their homes and power their cars. It also unfortunately contributes to the...
Curated Video
C++ 20 (2a) New Features - Coroutine Anatomy
Here, discuss new keywords and when and how does a function becomes a coroutine. • Discuss what new tools coroutines provide the programmers with • Discuss what is missing from coroutines • Discuss how and when does a function become a...
Curated Video
AZ-104: Microsoft Azure Administrator Full Course - Multiple NICs - Lab Activity
In this video, we will cover multiple NICs - lab activity. This clip is from the chapter "Azure Virtual Networking" of the series "AZ-104: Microsoft Azure Administrator Full Course".This section explains Azure virtual networks and their...
Curated Video
Multi-Paradigm Programming with Modern C++ - Returning Values
Our coroutines are now able to suspend and then to resume on executor threads. They cannot return values yet though. A coroutine returns the value using co_return operator, which forwards the value to promise_type::return_value. The...
Curated Video
AWS Certified Data Analytics Specialty 2021 - Hands-On! - Amazon Redshift Durability and Scaling
This video focuses on Amazon Redshift durability and scaling. This clip is from the chapter "Domain 4: Analysis" of the series "AWS Certified Data Analytics Specialty 2021 "Hands-On!".In this section, you will learn how to build a more...
Curated Video
Kubernetes for the Absolute Beginners - Hands-On - Deployments
In this video, we will learn about deployments. This clip is from the chapter "Kubernetes Concepts - Pods, ReplicaSets, Deployments" of the series "Kubernetes for the Absolute Beginners - Hands-On".In this section, we will work with Pods...