Curated Video
Data Science Model Deployments and Cloud Computing on GCP - Introduction
This video provides an introduction to the section. 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, you...
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
Vue.js 3 and Firebase for Beginners - Updating Regular Users to Admin Part 2
In this video, we will toggle into the ToggleAdmin.Vue component to import the views created in the previous video. This clip is from the chapter "Roles and Permissions" of the series "Vue.js 3 and Firebase for Beginners".This section...
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 - Unsubscribing from Updates
In this video, the author talks about how to unsubscribe from updates. To do this, we will use the useOrders.js file, where we can add the unsubscribe function to a variable. This clip is from the chapter "Real-Time Updates and Firebase...
Curated Video
Vue.js 3 and Firebase for Beginners - Real-Time Order Updates
We will make a few updates in the useOrder.js file to get real-time order updates in the website. This clip is from the chapter "Real-Time Updates and Firebase Rules" of the series "Vue.js 3 and Firebase for Beginners".This section...
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 - Adding the User to Orders
In this video, we will make sure the user object is placed on our order before pushing it to the database. We will also make sure that the user is logged in before creating a new order and to do this, we will go into the useBasket...
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 - Logging In and Out
This video explains the code to log in and log out users from the application. This clip is from the chapter "Authentication" of the series "Vue.js 3 and Firebase for Beginners".This section is all about authentication and how to create...
Curated Video
Vue.js 3 and Firebase for Beginners - Modal Toggle
This video explains a code on how to open and close modal toggle. This clip is from the chapter "Authentication" of the series "Vue.js 3 and Firebase for Beginners".This section is all about authentication and how to create login and...
Curated Video
Vue.js 3 and Firebase for Beginners - Creating the Sign-In Form
This video explains how to create a sign-in form to capture user details. This form is both dual use as it can be used for both sign in and sign up. This clip is from the chapter "Authentication" of the series "Vue.js 3 and Firebase for...
Curated Video
Vue.js 3 and Firebase for Beginners - The Signup Function
This video explains the signup function. This project is going to use Firebase authentication to manage user accounts and allow them to sign up and sign in. This clip is from the chapter "Authentication" of the series "Vue.js 3 and...
Curated Video
Vue.js 3 and Firebase for Beginners - Deleting Orders
This video explains how to delete the orders using the deleteOrder reference. This clip is from the chapter "Firebase Setup and Firestore" of the series "Vue.js 3 and Firebase for Beginners".This section explains the Firebase setup and...
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 - Creating Orders
This video explains the code to create a new order, which follows a similar pattern to creating a new pizza. 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 - Composable Files
Vue Composables allows us to extract the reactive state and functionality to reuse in other components. This clip is from the chapter "Composition API" of the series "Vue.js 3 and Firebase for Beginners".This section explains the...
Curated Video
Vue.js 3 and Firebase for Beginners - Computed Properties
Computed Property is used to declaratively describe a value that is dependent on other values. This feature of VueJS allows for transformations or computations based on our data. This clip is from the chapter "Composition API" of the...
Curated Video
Vue.js 3 and Firebase for Beginners - Removing and Changing Basket Quantity
In this video, we will remove and change basket quantity in the item list by working on the menu view and using the null property. This clip is from the chapter "Composition API" of the series "Vue.js 3 and Firebase for Beginners".This...
Curated Video
Vue.js 3 and Firebase for Beginners - Checking for Duplicate Basket Items
In this video, we will check for duplicate items in the basket and, rather than adding new line items, we will increase the quantity in the existing items. This clip is from the chapter "Composition API" of the series "Vue.js 3 and...
Curated Video
Vue.js 3 and Firebase for Beginners - Refs and Adding to Basket
A ref is a wrapper for a value and in our case, the value is a pizza. In this video, we will use ref as a wrapper for our basket, which the user can add pizzas to. This clip is from the chapter "Composition API" of the series "Vue.js 3...
Curated Video
Fundamentals of Neural Networks - Lab 3 - Deep CNN
This video demonstrates a deeper CNN, where you will build a much bigger number of trainable parameters. This clip is from the chapter "Convolutional Neural Networks" of the series "Fundamentals in Neural Networks".This section explains...