Curated Video
Java Programming for Complete Beginners - Java 16 - Step 07 - Printing Output to Console with Java
This video talks about printing output to console with Java. This clip is from the chapter "Introduction to Java Programming with JShell Using Multiplication Table" of the series "Java Programming for Complete Beginners - Java 16".In...
Curated Video
Learn Java from Scratch - A Beginner's Guide - Step 07 - Printing Output to Console with Java
This video talks about printing output to the console with Java.
Crash Course
Saturn
Saturn is the crown jewel of the solar system, beautiful and fascinating. It is a gas giant, and has a broad set of rings made of ice particles. Moons create gaps in the rings via their gravity. Saturn has dozens of moons, including...
Curated Video
Implement logical operations in a computer program : Exploring Logical Operators – Part 1
From the section: Introduction to Decision Statements and Control Flow. In this section, you will be introduced to Java's decision statements and control flow constructs. This will include getting to know the Java keywords of if if/else,...
Curated Video
Cloud Native Development on Azure with Java 2.5: Build and Deploy a New Azure App Service Instance
In this video, we will create an Azure web application hosted within the Azure App Service. We will configure it such that it will be compatible for hosting our Java Spring Boot application. • Add a new web application • Deploy a default...
Curated Video
Cloud Native Development on Azure with Java 2.3: Integrate a Web Application with Cosmos DB
This video will show you how to use the Cosmos DB instance we deployed earlier and integrate it with an existing Java Spring Boot application. • Set the values for the document db endpoint URI, document db key, and document db name •...
Curated Video
Cloud Native Development on Azure with Java 2.2: Deploy a New Cosmos DB in Azure
Now it’s time to take a step ahead with the TODO list we created in the previous video! We are going to connect our Java application to use Azure Cosmos DB as a backend for storing the TODO list data items. • Create a new Cosmos DB...
Curated Video
Cloud Native Development on Azure with Java 2.4: Verify the Web Application Functionality Locally
In this video, we will run the Java TODO sample app locally and review the functionality provided by the application. • Add new TODO items • Change the status of the items in the list
Curated Video
Cloud Native Development on Azure with Java 2.6: Deploy Your App to an Azure App Service Instance
In this video, we will show you how to deploy the Spring Boot app to Azure. So, you will be able to migrate your locally running app to Azure Web Apps. • Created an Azure web application hosted within the Azure App Service • Use the KUDU...
Curated Video
Cloud Native Development on Azure with Java 2.1: Build a Spring Boot Java Application and Provide CRUD Functionality for a To-Do List
This video will walk you through a few quick steps to create a simple To-Do application capable of tracking your upcoming tasks. You can add new tasks to the application, and when you are done with a particular task, you can mark it as...
Curated Video
Cloud Native Development on Azure with Java 1.2: Introduction
Before you get a kick-start with a new technology or platform, it is always a good practice to have an overview of it. Also, it adds to the motivation to your learning in the long run. This video will provide you with that pair of eyes...
Curated Video
Cloud Native Development on Azure with Java 4.3: Configure a GitHub Repository and Create a New Pipeline to Set Up CI
This video will walk you through a few simple steps, and show you how to use Git to clone your source code repository and start implementing the CI pipeline for your application. • Configure a GitHub webhook for the Jenkins server •...
Curated Video
Cloud Native Development on Azure with Java 4.1: Create a Jenkins Master in Azure Using an Ubuntu Virtual Machine
We will create a Jenkins master and deploy it on Azure using a new Azure virtual machine. • Deploy a new virtual machine and set up the Jenkins master server • Look for a ready-made instance with Jenkins installed and configured • Track...
Curated Video
Cloud Native Development on Azure with Java 5.3: Scale and Autoscale the Application
In this video, we will learn how to scale and autoscale our application, which we deployed to Azure Kubernetes cluster. • Clone the source code for metrics server from the Kubernetes GitHub repository • Autoscale the app with more replicas
Curated Video
Cloud Native Development on Azure with Java 3.2: Register Your App with Your Azure Active Directory Tenant
One of the key steps to securing our app is to register it with our Azure Active Directory tenant. Let’s go ahead and see how to do this! • Test anonymous access for the application • Add other users to the Azure subscription and define...
Curated Video
Cloud Native Development on Azure with Java 3.3: Configure the App to Use Your Azure AD Tenant
Now that we have registered our app with the Azure Active Directory, the next step is to configure the app to use our Azure AD tenant and then package and redeploy our app. Let’s do it right now! • Change the App ID URI and the reply...
Curated Video
Java 11 Programming for Beginners 4.4: Error Handling in Java 11
The goal here is to acclimatize the beginner with Java’s error handling mechanisms. • Glance through theory on Java exception and the newer try-with-resource • We improve the code by avoiding errors using checks • Use try-catch to better...
Restoration Planet
Why we've decided to go off-grid!
To go off-grid was always our dream, but now we're finally making it a reality! Between seasons of our global series, Restoration Planet, we will live in the wild interior of British Columbia, Canada, build a small cabin powered by...
Zach Star
How Much Programming Do Engineers Do?
Do you wonder how much programming you'll do in college as an engineer. This answer is very dependent on what major you pick, the university you go to, and various other factors. However there are some consistencies in each major that...
Curated Video
Java for Beginners with Hands-On Program and Capstone Project - Disadvantages of Java
In this video, we discuss the disadvantages and challenges associated with Java programming, performance considerations, and the learning curve complexity of Java. By understanding these disadvantages, we will be better equipped to...
Curated Video
Java for Beginners with Hands-On Program and Capstone Project - Introduction and Advantages of Java
In this video, we will explore the key features and benefits of Java as a programming language, Java's platform independence, robustness, versatility, and its vast ecosystem of libraries and frameworks. We will understand the advantages...
Curated Video
Complete Java SE 8 Developer Bootcamp - The Java Platform
Discover the "Java Runtime Environment (JRE)" and how it is used to execute Java programs. This clip is from the chapter "Getting Started with Java" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you get an...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 16 - How are Variables Stored in Memory?
This video talks about how variables are stored in memory. This clip is from the chapter "Introduction to Java Programming with JShell Using Multiplication Table" of the series "Java Programming for Complete Beginners - Java 16".In this...
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...