Curated Video
Hands-On WebAssembly for C++ Programmers - Converting the Game to SDL
How do we start moving more functionality to C++, especially hardware interactions? • Learn about the Simple DirectMedia Layer API • Compile our program with SDL • Convert our pong game to use an SDL loop This clip is from the chapter...
Curated Video
Hands-On WebAssembly for C++ Programmers - Drawing Our Game in WebAssembly
In the last video, we lost all our graphics progress. How do we draw the graphics in C++? • Learn about SDL Graphics • Utilize fonts in your SDL code • Draw all graphics in C++ instead of JavaScript This clip is from the chapter "Working...
Curated Video
Modern Web Design with HTML5, CSS3, and JavaScript - Using JavaScript Code to Create a Fun Game - Coding Challenge
This video provides a coding challenge on how to create a fun game using JavaScript. This clip is from the chapter "JavaScript Introduction" of the series "Modern Web Design with HTML5, CSS3, and JavaScript".This section introduces you...
Curated Video
Full Stack Web Development MASTERY Course - Novice to Expert - Slither/Snake Game Using JavaScript
This video will help you build a Slither/Snake game using JavaScript. This clip is from the chapter "#3 Project: Slither Game" of the series "Full Stack Web Development Mastery Course - Novice to Expert".This section focuses on the third...
Curated Video
Hands-On WebAssembly for C++ Programmers - Calling C++ Functions with JavaScript
So far, we've written entire C++ applications. See how you can JavaScript call just a single C++ function. • Learn about embind • Setup C++ code to expose functions through embind • Modify the JavaScript code to call the C++ code This...
Curated Video
The Modern JavaScript Bootcamp (2019) - HTTP Requests from JavaScript
In this lesson, you’ll learn how to make HTTP requests from the client-side JavaScript code. This is going to allow us to fetch a randomly generated puzzle for the hangman game. This clip is from the chapter "Asynchronous JavaScript" of...
Curated Video
The Art of Doing - Web Development for Beginners - JavaScript Variables: let, var, and const
In this video, we will explore how to declare variables using the let, var, and const keywords in JavaScript. We will discuss the differences between these keywords and learn when to use each one based on their scope and reassignment...
Curated Video
Full Stack Web Development MASTERY Course - Novice to Expert - Introduction to JavaScript
This video provides an introduction to JavaScript. This clip is from the chapter "JavaScript ES6 (Zero to Hero)" of the series "Full Stack Web Development Mastery Course - Novice to Expert".This section focuses on JavaScript ES6.
Curated Video
The Modern JavaScript Bootcamp (2019) - Setting up the Hangman Theme
In this video, you'll be setting up the theme for the hangman game. This clip is from the chapter "App Themes" of the series "The Modern JavaScript Bootcamp (2019)".In this section, we’ll create an App theme.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Suggesting a Move - Implementing a Computer Player
Here, we will define the game's moves, where the game makes suggestions to the player to make a particular move, or we will be able to click on the New Game button to reset a game and start over. You will also learn to implement a player...
Curated Video
Learn JavaScript from Scratch JavaScript for Everyone - While Loops
In this video, you'll learn to work with while loops in JavaScript. This clip is from the chapter "Intermediate JavaScript" of the series "Learn JavaScript from Scratch: JavaScript for Everyone".In this section, you'll learn the tools...
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Calculating the Winner
In this video, after completely restyling our game board, we will focus on the game functionality and create the gaming functions, define the winner properties and conditions, and get the game to function.
Curated Video
Modern Web Design with HTML5, CSS3, and JavaScript - Quirks Mode in JavaScript
This video focuses on the quirks mode in JavaScript. This clip is from the chapter "Common JavaScript Questions and Answers for Interview Preparation and Practice" of the series "Modern Web Design with HTML5, CSS3, and JavaScript".This...
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Initializing the Game
Here, we will use the component "didinitevent" to initialize the game on the game board using the React State hook. You will also learn to initialize the players of the game.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Determining a Draw Condition
After getting the moves to function in the game, we will now determine a draw condition when there are two players and how the game is a tie or a draw, what parameters are defined to determine the draw, and the conditions of the game.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Displaying the Winner
After defining the moves in the game and being able to calculate the winner, we will now create a display effect on the game board to display the winner after the game is completed.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Styling the Game Board - Header and Footer
We will take the styling of the game board further, and instead of just the 16 circles, we will add a header and footer to the game board and improve its overall appearance.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Game Circle - Event
In this video, we will create the game board component and define the Event() functions for the game.
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Assigning Variables to Each Other in JavaScript - Part I
In this video, you will learn how to assign variables to each other in JavaScript, which can be useful for swapping variable values or updating them based on certain conditions. This clip is from the chapter "Introduction to Programming...
Curated Video
JavaScript Masterclass - Zero to Job-Ready with Hands-On Projects - Selector Game II
This video explains attributes selector using an example. This clip is from the chapter "(Optional) HTML and CSS Refresher" of the series "JavaScript Masterclass - Zero to Job-Ready with Hands-On Projects".This section is an HTML and CSS...
Curated Video
JavaScript Masterclass - Zero to Job-Ready with Hands-On Projects - Selector Game I
This video explains the selector content using an example. This clip is from the chapter "(Optional) HTML and CSS Refresher" of the series "JavaScript Masterclass - Zero to Job-Ready with Hands-On Projects".This section is an HTML and...
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Creating the Game Board
This video demonstrates how to create the game board for the Connect-4 game, which will download all the dependencies and files required, create a template and do the configurations.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Initializing the Game Board
In this lecture, you will learn to debug the errors created in the previous video, which did not allow certain functions to execute properly, and we will initialize the game board.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Using React State Hook (again)
You will learn to use the React State hook you learned to use in Project 2. Further, we will use the hook to add more functionality to the game in our React project.