Curated Video
Mastering Swift 2 Programming (Video 28)
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...
Curated Video
Mastering Swift 2 Programming (Video 10)
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...
Curated Video
Mastering Swift 2 Programming (Video 56)
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...
Curated Video
High Performance Scientific Computing with C 3.2: Pipelining and Hardware-Oriented Design
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!
Curated Video
Learn and Master C Programming - Using Visual Studio Command Prompt to write 'Hello, World' one more time
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...
Curated Video
Learn and Master C Programming - How To Calculate Array Size in C/C++
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...
Curated Video
Mastering Swift 2 Programming (Video 46)
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...
Curated Video
Mastering Swift 2 Programming (Video 15)
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...
Curated Video
Mastering Swift 2 Programming (Video 51)
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...
Curated Video
Mastering Swift 2 Programming (Video 1)
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...
Curated Video
Learn and Master C Programming - More on Block Scope in C
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...
Curated Video
C++ for Beginners - Examining the Build Log
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
Curated Video
Mastering Swift 2 Programming (Video 36)
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...
Curated Video
Mastering Swift 2 Programming (Video 14)
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...
Curated Video
Mastering Swift 2 Programming (Video 5)
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...
Curated Video
Learn and Master C Programming - A brief history of C language
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...
Curated Video
Learn and Master C Programming - Introduction & Section Overview
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...
Curated Video
Mastering Swift 2 Programming (Video 38)
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...
Curated Video
C++ Developer - Saying Hello to C++
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++.
Curated Video
Mastering Swift 2 Programming (Video 12)
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...
Curated Video
Mastering Swift 2 Programming (Video 54)
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...
Curated Video
Multi-Paradigm Programming with Modern C++ - Synchronization with Atomics
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...
Curated Video
Mastering Swift 2 Programming (Video 53)
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...
Curated Video
High Performance Scientific Computing with C 4.2: Shared Memory Parallelism with OpenMP
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