Curated Video
Data Science Model Deployments and Cloud Computing on GCP - REST APIs
This video explains REST API, which is a collection of six architectural constraints. In common language between developers, REST APIs point to a collection of HTTP methods that are resource-based. This clip is from the chapter "Client /...
Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Database
This video explains a database that holds onto data for a web application long-term. The browser can only hold onto information for a limited time. The data in databases is persistent. The data does not go away if the database or...
Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Client
This video explains the client, which is a login that makes a webpage smart. It handles user interactions and flow of data between the user and server. The client is what turns a webpage into a web application. This clip is from the...
Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Introduction to Cloud Datastore
This video provides an introduction to Cloud Datastore. This clip is from the chapter "Cloud Functions - Serverless and Event-Driven Applications" of the series "Data Science Model Deployments and Cloud Computing on GCP".In this section,...
Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Lab - Deploy Python Application Using HTTP Triggers
In this lab video, you will learn how to deploy a Python application using Google Cloud Functions triggered by HTTP requests. Cloud Functions is a powerful serverless platform that allows you to build scalable and event-driven...
Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Lab - Implement Caching Mechanism in Python Application - Part 1
This video is the first part of a two-part tutorial on implementing caching mechanism in a Python application. This clip is from the chapter "Google App Engine - For Serverless Applications" of the series "Data Science Model Deployments...
Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Scalability - Horizontal Versus Vertical Scaling
This video discusses scalability in the context of horizontal versus vertical scaling, exploring the advantages and disadvantages of each method, and providing insights into when to choose one over the other. This clip is from the...
Curated Video
Vue.js 3 and Firebase for Beginners - Retrieving Admin Users
This video explains how to retrieve admin users from our database and to check whether the admin property is set to True. As we will be retrieving users, we can create a reference to the database collection inside the Firebase file. This...
Curated Video
Vue.js 3 and Firebase for Beginners - Adding Users
This video explains how to add new users to the website who can access the entire website. We need to set up a way to allow only authorized admin users into the admin section. We will do this using custom claims. This clip is from the...
Curated Video
Vue.js 3 and Firebase for Beginners - Real-Time Pizza Updates
This video talks about how to add real-time pizza updates to the website as some updates are reflected immediately while others are not updated. So, we will make a few changes to the usePizza.js file to get real-time updates. This clip...
Curated Video
Vue.js 3 and Firebase for Beginners - Restricting New Pizzas
In this video, we will see how to restrict anyone from adding a new pizza to the database if the user is not logged in into the website. This clip is from the chapter "Finishing Touches" of the series "Vue.js 3 and Firebase for...
Curated Video
Vue.js 3 and Firebase for Beginners - Fetching Orders
This video explains how to successfully retrieve the orders from the database to use them in our project. This clip is from the chapter "Firebase Setup and Firestore" of the series "Vue.js 3 and Firebase for Beginners".This section...
Curated Video
Vue.js 3 and Firebase for Beginners - Getting Pizzas
This video explains how to get pizzas using the async function, getPizza, and calling the import function called getDocs. This clip is from the chapter "Firebase Setup and Firestore" of the series "Vue.js 3 and Firebase for...
Curated Video
Vue.js 3 and Firebase for Beginners - Adding Pizzas to the Database
This video explains how to work with the database to add pizzas using dbPizzaRef and dbOrderRef. This clip is from the chapter "Firebase Setup and Firestore" of the series "Vue.js 3 and Firebase for Beginners".This section explains the...
Curated Video
Vue.js 3 and Firebase for Beginners - Firebase Setup
This video explains the setup of Firebase and how to set up the project on the application. This clip is from the chapter "Firebase Setup and Firestore" of the series "Vue.js 3 and Firebase for Beginners".This section explains the...
Curated Video
Vue.js 3 and Firebase for Beginners - Looping over Pizzas
In this video, we will temporarily create a ref in which we can push our pizzas to, which will then allow us to loop over these pizzas and display them inside a table. This clip is from the chapter "Composition API" of the series "Vue.js...
Curated Video
Vue.js 3 and Firebase for Beginners - Admin: Listing Orders Component
The final component we are adding to the admin list is the current orders component. This component will be used to list the current orders and is added to the admin folder to keep it organized. This clip is from the chapter "Project UI"...
Curated Video
Building Microservices API in Go - Application Configuration
In this video, you will learn how to manage application configuration using environment variables. We will discuss best practices for handling configuration in your application and how to securely store sensitive information such as API...
Curated Video
Building Microservices API in Go - Assignment Solution: Fix GetAllCustomers API
In this solution video, we will review the solution for the GetAllCustomers API assignment and discuss the best practices for implementing the required functionality. This clip is from the chapter "Application Development" of the series...
Curated Video
Building Microservices API in Go - Error Handling Part 2
In this video, we will continue our discussion on error handling, including setting up an error handling infrastructure and handling internal server errors and not found errors. This clip is from the chapter "Application Development" of...
Curated Video
Building Microservices API in Go - Error Handling Part 1
In this video, we will cover error handling in our application, including retrieving a single customer from the server-side and handling errors that may occur. This clip is from the chapter "Application Development" of the series...
Curated Video
Building Microservices API in Go - Database Adapter
In this video, we will focus on building a database adapter for our Go application, including setting up a MySQL connection pool, implementing the repository pattern, and injecting dependencies at the time of application wiring. This...
Curated Video
Building Microservices API in Go - Getting Started
In this video, we will cover the necessary tools required for developing REST-based microservices APIs in Go, including setting up your development environment and understanding the tools that will be used throughout the course. This...
Curated Video
The Ultimate ChatGPT Guide with React Native - Develop Mobile Apps - FlatList in React Native and Displaying Data
This video helps you in using FlatList in React Native to display data in your application's user interface. You will learn how to fetch and parse data from APIs or databases, as well as how to render the data in a scrollable list using...