- Видео 11
- Просмотров 50 473
The Standup Coder
Индия
Добавлен 16 сен 2022
We create videos on concepts that are difficult to understand & hard to find on the internet.
Views in SQL | Oracle, SQL Server | Creating and Using SQL Views | Database
In this video, we'll explore SQL views and how they can simplify your complex queries. Learn how to create and use views to streamline your database management and enhance your SQL skills. Perfect for beginners and anyone looking to optimize their SQL queries!
📱 Follow TheStandupCoder
+ Instagram - / thestandupcoder
📫 Business / Collaboration - thestandupcoderpvt@gmail.com
#views #sql #sqlserver #database
📱 Follow TheStandupCoder
+ Instagram - / thestandupcoder
📫 Business / Collaboration - thestandupcoderpvt@gmail.com
#views #sql #sqlserver #database
Просмотров: 37
Видео
Scaling NodeJS using Clusters | Multithreading | Multi-Core | NodeJs Cluster Module | English
Просмотров 1,3 тыс.7 месяцев назад
In this video, we will explore NodeJS Clusters using the NodeJS Cluster Module. How can we scale NodeJS apps using Clustering Following things have been covered in this video: Why do we need clusters? What are cores within a CPU? How performance of NodeJs is impacted without clusters? With a live code example. How clustering helps in distributing the workload among the clusters and improving th...
Call By Value & Call By Reference using Pointers in C programming language using Functions | English
Просмотров 1417 месяцев назад
C Programming & Data Structures: Call By Value & Call By Reference in C Topics discussed: 1) Call by value method of passing arguments to a function. 2) Call by reference method of passing arguments to a function. 3) Example of the call by value method of passing the arguments. 4) Example of the call by reference method of passing the arguments. 📱 Follow TheStandupCoder Instagram - instagram.co...
What are Pointers in C | How it works? | Pointers in C Programming Language with Example | English
Просмотров 2107 месяцев назад
In this tutorial, we'll walk you through a hands-on example, illustrating how pointers works in C Programming Topics discussed: 1) Pointer definition in C Programming. 2) Pointer example in C Programming. Creating a pointer: int *ptr; Assigning the address of variable "a" to the pointer, ptr = &a; Accessing the value present at the memory address which is stored in the pointer ptr, int temp = *...
Debug JavaScript in VSCode | NodeJS Debugging | No Extension Required | Visual Studio Code | English
Просмотров 2388 месяцев назад
Welcome to our latest tutorial where we explore the powerful debugging capabilities of Visual Studio Code for JavaScript applications, specifically focusing on Node.js. In this step-by-step guide, we'll cover everything from setting up your environment, creating breakpoints, to inspecting variables in real-time. Whether you're a beginner or an experienced developer, mastering debugging is a cru...
Redis with Docker | Boost Your App's Speed | Use Cases | SetUp | Write/Read Operations | English
Просмотров 3008 месяцев назад
Redis is an in-memory data structure store that can be used as a caching mechanism, meaning that all the data is stored in RAM. This allows for extremely fast read and write operations. List of Commands used: 1. pulling the docker image of Redis: docker pull redis 2. Starting a Redis container named 'my-redis' on port 6379: docker run -d -p 6379:6379 name my-redis redis 3. Check if the Redis is...
PhonePe Payment Gateway Integration Using NodeJs | ExpressJs | PhonePe API Integration | English
Просмотров 18 тыс.8 месяцев назад
PhonePe payment gateway integration using Node.js and Express.js, JavaScript in English. This tutorial covers API integration, providing a comprehensive guide to seamlessly implement PhonePe payments into your web applications. Explore the GitHub repository for the complete code and check out the detailed Medium article for additional insights: (Refer the pinned comment for the GitHub repo link...
Database Design With Example | REAL LIFE EXAMPLE | INTERVIEW QUESTION |Database Design | English
Просмотров 521Год назад
Hey there, welcome to StandupCoder! In this video, we've explained database schema design using a simple example. If you've ever scratched your head over database design interviews or wondered about structuring custom fields for customer records, worry no more - we've got your back! We believe database schema design doesn't have to be complicated. Join us in this refreshingly simple video as we...
Using SCP to transfer files/folder from Local to Remote & from Remote to Local in Linux/Windows/Mac
Просмотров 28 тыс.2 года назад
In this video, I've explained how to transfer a single file / multiple files/folder securely from a local machine to a remote server & vice versa using SSH/password authenticated remote server. SCP encrypts both the file and any passwords exchanged so that anyone snooping on the network cannot view them. Command to transfer files: scp from_address to_address address of the remote server: userna...