Instructional Video3:45
Curated Video

Mastering Swift 2 Programming (Video 28)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video3:57
Curated Video

Mastering Swift 2 Programming (Video 10)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video3:27
Curated Video

Mastering Swift 2 Programming (Video 56)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video8:59
Curated Video

High Performance Scientific Computing with C 3.2: Pipelining and Hardware-Oriented Design

Higher Ed
How can we design our programs to take the most advantage of modern CPU design? • Learn about caching • Learn about branch prediction and speculative execution • Stay out of the way of the CPU and compiler!
Instructional Video8:59
Curated Video

Learn and Master C Programming - Using Visual Studio Command Prompt to write 'Hello, World' one more time

Higher Ed
Learn an easier and slight faster way to build and compile C programs from the command prompt. This clip is from the chapter "Writing our First Program - A 'Hello, World!' Program in C" of the series "Learn and Master C Programming For...
Instructional Video6:44
Curated Video

Learn and Master C Programming - How To Calculate Array Size in C/C++

Higher Ed
Learn how to use the compiler with the help of 'sizeof' operator to calculate the size (number of elements) inside array without having to hard-code this value! This clip is from the chapter "Arrays" of the series "Learn and Master C...
Instructional Video6:04
Curated Video

Mastering Swift 2 Programming (Video 46)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video3:28
Curated Video

Mastering Swift 2 Programming (Video 15)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video7:54
Curated Video

Mastering Swift 2 Programming (Video 51)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video4:03
Curated Video

Mastering Swift 2 Programming (Video 1)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video3:45
Curated Video

Learn and Master C Programming - More on Block Scope in C

Higher Ed
We will look at an important tip to help you avoid running into compilation issues with some C compilers when declaring and using local variables. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C...
Instructional Video9:13
Curated Video

C++ for Beginners - Examining the Build Log

Higher Ed
In this video, your instructor, David, discusses the Build Log. This clip is from the chapter "Your First Program" of the series "C++ for Beginners".Where to get the IDE
Instructional Video4:15
Curated Video

Mastering Swift 2 Programming (Video 36)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video5:09
Curated Video

Mastering Swift 2 Programming (Video 14)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video6:05
Curated Video

Mastering Swift 2 Programming (Video 5)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video3:24
Curated Video

Learn and Master C Programming - A brief history of C language

Higher Ed
We will cover how C language was created and go over the different versions of C standards available and understand differences between them. This clip is from the chapter "Quick Intro To Computer Basics" of the series "Learn and Master...
Instructional Video2:25
Curated Video

Learn and Master C Programming - Introduction & Section Overview

Higher Ed
Overview of the section and a quick review of memory, variables and the introduction of & operator. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute Beginners!".In this section of the...
Instructional Video6:27
Curated Video

Mastering Swift 2 Programming (Video 38)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video11:15
Curated Video

C++ Developer - Saying Hello to C++

Higher Ed
This video introduces you to C++. This clip is from the chapter "Fundamentals of C++" of the series "The Complete C++ Developer Course".This section discusses the fundamentals of C++.
Instructional Video5:29
Curated Video

Mastering Swift 2 Programming (Video 12)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video5:11
Curated Video

Mastering Swift 2 Programming (Video 54)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video14:32
Curated Video

Multi-Paradigm Programming with Modern C++ - Synchronization with Atomics

Higher Ed
Even something as simple as an integer is not immune from data races. Atomics can solve this problem. They are often implemented at hardware level, and C++ provides an API. In this video, we will learn how to use atomics. • Introduction...
Instructional Video4:49
Curated Video

Mastering Swift 2 Programming (Video 53)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video9:11
Curated Video

High Performance Scientific Computing with C 4.2: Shared Memory Parallelism with OpenMP

Higher Ed
How can we easily use our multi-core systems with more than one thread? • Learn how to parallelize loops with OpenMP • Learn how to change the number of threads • Learn how to use reductions to finalize calculations