Curated Video
Develop a computer program to solve a problem using a sequence of instructions : Advanced If Statements
From the section: JavaScript Basics: Variables and Flow Control. In this section, we’ll learn about the basics of JavaScript. In this lesson, we’re going to continue looking at the if statement. We know about “if” and “else”, but there’s...
Institute for New Economic Thinking
A New National Innovation Fund
In part 5 of INET's interview with Fred Block, he says that the country needs all companies in a national innovation fund that helps pay for research into profitable products, and can insure that the public receives a return on its...
Curated Video
Excel VBA Programming The Complete Guide - The Byte, Integer and Long Data Types
VBA has 3 options for whole numbers: Byte, Integer, and Long. Each data type supports a different range of numbers; Byte only supports any number from 0 to 256 while Long can store numbers in the billions. In this lesson, we practice...
Curated Video
PMP Certification Training - Case Study - 5
This video is a case study of a software company that develops applications for telecom, healthcare, retail, and so on. This clip is from the chapter "Case Studies" of the series "PMP® Certification Training".This section explains...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Navigation
In this lesson, we will look at navigating and exploring the various capabilities, applications, and folder structures of a personal computer. This clip is from the chapter "Generic Programming" of the series "The Ultimate Guide to...
Programming Electronics Academy
Display Arduino output (e.g. sensor data) on your computer monitor with this simple function: Part 2
In many cases while using an Arduino, you will want to see the data being generated by the Arduino. One common method of doing this is using the print() function from the Serial library to display information to your computer’s monitor....
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Terminal
Here, we will understand the concept of working on a terminal with programming and non-programming operations of a computer. This clip is from the chapter "Generic Programming" of the series "The Ultimate Guide to Python Programming with...
Programming Electronics Academy
Lesson 3 | Download and Install the Arduino IDE for PC | Arduino Crash Course
We are going to download, install, and set some preferences for the Arduino IDE on a PC. I'm running this on a computer that is a Windows 8 machine, maybe like 8.1 or something like that. Windows 10 is just coming out, and maybe by the...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Install Rust on Your Computer
In this video, you will be installing Rust on your computer. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Smart Computer Player (Basic AI)
After creating the Suggest button and clicking on it, the game will suggest a random number so the player can strategize their moves. We will use artificial intelligence to improve the player's intelligence on the computer and make more...
Programming Electronics Academy
Lesson 2 | Parts List | Arduino Crash Course
Lesson 2 | Parts List | Arduino Crash Course
TED Talks
TED: The politics of fiction | Elif Shafak
Listening to stories widens the imagination; telling them lets us leap over cultural walls, embrace different experiences, feel what others feel. Elif Shafak builds on this simple idea to argue that fiction can overcome identity politics.
Let's Tute
Creating Stunning Backgrounds for Mandalas with Watercolors and Plastic Sheet Technique
This video teaches different techniques for creating beautiful backgrounds for mandalas using watercolors. It demonstrates how to layer and blend colors to create a smooth gradient effect. Additionally, it shows a unique technique using...
Curated Video
Introduction to Selection and If Statements in Scratch Programming
In this tutorial, students learn about the concept of selection in programming using Scratch. They explore the 'if' statement to make the computer decide between two actions based on given conditions, such as determining if a person is...
Curated Video
Introduction to Programming with Scratch: Building Your First Program
In this tutorial series, Justin Arnold guides beginners through learning to program using Scratch, a user-friendly tool for creating computer programs. Viewers are introduced to the basics of coding step by step, from creating an account...
Let's Tute
Creating a Safari Landscape
This video demonstrates how to create a stunning safari landscape using acrylic paints. With simple materials like canvas, painters tape, and brushes, it guides viewers through the step-by-step process of painting a vibrant sunset,...
Curated Video
Programming with Scratch: Understanding Input and Output
This tutorial video explores the concepts of input and output in programming using Scratch. It demonstrates how to create a simple program where a character asks for the user's name as input and then outputs a personalized greeting. By...
Curated Video
Programming Basics: Definite and Indefinite Iteration in Scratch
This tutorial video explores the concepts of definite and indefinite iteration in programming using Scratch. The instructor demonstrates how to create a password protection system and a game where a pterodactyl chases the mouse. Viewers...
Curated Video
Excel VBA Programming The Complete Guide - Intro to Arrays
In this section, we'll explore the array, the most popular data structure in computer science. An array is a sequenced collection of elements, each of which is assigned an index position. In this lesson, we create a fixed-size array of...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Datatypes in Programming
In this video, you will learn about data types in programming, which are used to define the type of data that a variable can hold, such as numbers, strings, and Boolean values. You will also discover the importance of understanding data...
Pitsco Education
Code Cube Lesson 5: Sound Off
In this lesson, you will learn how to make your Code Cube display different images with sounds.
Programming Electronics Academy
Connect Arduino to internet over USB (with Processing) - Simple Space Weather meter example (Part 1)
Have you ever wanted to connect your Arduino to the internet? Your first thought was probably like okay, I guess I'll need some type of Wi-Fi shield or a Wi-Fi enabled board in order to connect to the internet. But what if you're...
Programming Electronics Academy
Connect Arduino to internet over USB (with Processing) - Simple Space Weather meter example (Part 2)
Have you ever wanted to connect your Arduino to the internet? Your first thought was probably like okay, I guess I'll need some type of Wi-Fi shield or a Wi-Fi enabled board in order to connect to the internet. But what if you're...
APMonitor
Java ☕ Loops
I recently wrote a computer program to solve Sudoku puzzles. As part of the program, I needed to the computer to check every empty box on the grid. Sudoku is played on a 9 by 9 grid. That means I would have to check 81 times. It wouldn't...