ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

451 results

The Coding Gopher
99% of Developers Don't Get Sockets

Get 40% OFF CodeCrafters: https://app.codecrafters.io/join?via=the-coding-gopher ⬆️ Best project-based coding platform.

12:05
99% of Developers Don't Get Sockets

489,214 views

9 months ago

Ganesh H
File Metadata Microservice - freeCodeCamp APIs and Microservices Project Tutorial

This is a full walkthrough for the File Metadata Microservice project on freeCodeCamp. We can install an npm package called ...

9:53
File Metadata Microservice - freeCodeCamp APIs and Microservices Project Tutorial

2,806 views

5 years ago

The Coding Gopher
99% of Developers Don't Get PostgreSQL

Check out Supabase: https://supabase.plug.dev/qnxeTMY ❤️ Get 40% OFF CodeCrafters: ...

12:40
99% of Developers Don't Get PostgreSQL

174,371 views

3 months ago

Ganesh H
Request Header Parser Microservice - freeCodeCamp APIs and Microservices Project Tutorial

This is a full walkthrough for the Request Header Parser Microservice project on freeCodeCamp. We can set up a GET route for ...

8:21
Request Header Parser Microservice - freeCodeCamp APIs and Microservices Project Tutorial

2,275 views

5 years ago

Ganesh H
17 - Set up the Environment - Advanced Node and Express - freeCodeCamp

If you're failing this challenge, go to 16mins 2s To get started with our chat app, we need to set up socket, our database ...

17:04
17 - Set up the Environment - Advanced Node and Express - freeCodeCamp

1,000 views

5 years ago

Ganesh H
02 - Start a Working Express Server - Basic Node and Express - freeCodeCamp Tutorial

We look at how to create an Express server app, and set up a basic route to return a string. We can import express with require(), ...

7:02
02 - Start a Working Express Server - Basic Node and Express - freeCodeCamp Tutorial

2,967 views

5 years ago

Ganesh H
11 - Registration of New Users - Advanced Node and Express - freeCodeCamp

To create a registration form, in the POST route, we should create the user's document in the database if it doesn't exist, and then ...

18:33
11 - Registration of New Users - Advanced Node and Express - freeCodeCamp

851 views

5 years ago

Ganesh H
How to Claim freeCodeCamp Full Stack (Legacy) Certification 2020

All the projects and certifications you need to complete to get the freeCodeCamp Full Stack Developer certification in 2020.

4:14
How to Claim freeCodeCamp Full Stack (Legacy) Certification 2020

8,545 views

5 years ago

Ganesh H
13 - Clean Up Your Project with Modules - Advanced Node and Express - freeCodeCamp

We're gonna clean up our project now by splitting it into 3 files. We can use Node's module.exports and require() functionalities to ...

8:12
13 - Clean Up Your Project with Modules - Advanced Node and Express - freeCodeCamp

681 views

5 years ago

Ganesh H
014 - Longest Collatz sequence  - Project Euler Challenge - JavaScript freeCodeCamp

The following iterative sequence is defined for the set of positive integers: n → n/2 (n is even) n → 3n + 1 (n is odd) Although it has ...

9:03
014 - Longest Collatz sequence - Project Euler Challenge - JavaScript freeCodeCamp

1,402 views

5 years ago

Ganesh H
29 - Add Axes to a Visualization - Data Visualization with D3 - freeCodeCamp Tutorial

We can use some D3 methods to create axes from a set of data and a scale. This returns a set of SVG shapes, on which we can ...

10:50
29 - Add Axes to a Visualization - Data Visualization with D3 - freeCodeCamp Tutorial

735 views

5 years ago

Ganesh H
007 - 10001st prime - Project Euler Challenge - JavaScript freeCodeCamp

By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. What is the nth prime number?

9:22
007 - 10001st prime - Project Euler Challenge - JavaScript freeCodeCamp

644 views

5 years ago

Ganesh H
15 - Implementation of Social Authentication II - Advanced Node and Express - freeCodeCamp

We'll use the 'passport-github' npm package to create a GithubStrategy which will allow the user to login through GitHub and ...

7:46
15 - Implementation of Social Authentication II - Advanced Node and Express - freeCodeCamp

602 views

5 years ago

Ganesh H
011 - Largest product in a grid - Project Euler Challenge - JavaScript freeCodeCamp

In the 20×20 grid below, four numbers along a diagonal line have been marked in red. The product of these numbers is 26 × 63 ...

15:17
011 - Largest product in a grid - Project Euler Challenge - JavaScript freeCodeCamp

1,261 views

5 years ago

Ganesh H
14 - Implementation of Social Authentication - Advanced Node and Express - freeCodeCamp

In this short project, we'll be setting up an Oauth strategy that allows users to log into the site using a Github account and provide ...

11:22
14 - Implementation of Social Authentication - Advanced Node and Express - freeCodeCamp

1,305 views

5 years ago

Ganesh H
16 - Implementation of Social Authentication III -  Advanced Node and Express - freeCodeCamp

The final thing we need to add is some database functionality and use the profile information obtained from GitHub to create a ...

11:32
16 - Implementation of Social Authentication III - Advanced Node and Express - freeCodeCamp

577 views

5 years ago

Ganesh H
22 -  Run Functional Tests on API Response using Chai-HTTP IV - PUT method - freeCodeCamp Tutorial

We can combine all our previous knowledge now to setup a Chai test for a POST request from scratch. Link to Challenge ...

6:01
22 - Run Functional Tests on API Response using Chai-HTTP IV - PUT method - freeCodeCamp Tutorial

1,235 views

5 years ago

Ganesh H
012 - Highly divisible triangular number  - Project Euler Challenge - JavaScript freeCodeCamp

The sequence of triangle numbers is generated by adding the natural numbers. What is the value of the first triangle number to ...

10:48
012 - Highly divisible triangular number - Project Euler Challenge - JavaScript freeCodeCamp

1,094 views

5 years ago

Ganesh H
21 - Announce New Users - Advanced Node and Express - freeCodeCamp

Now that we have access to User information, we can announce to all clients the users that have entered and left the chat, using ...

6:23
21 - Announce New Users - Advanced Node and Express - freeCodeCamp

675 views

5 years ago

Ganesh H
009 -  Special Pythagorean triplet - Project Euler Challenge - JavaScript freeCodeCamp

A Pythagorean triplet is a set of three natural numbers, a less than b less than c, for which, a^2 + b^2 = c^2. There exists exactly ...

12:31
009 - Special Pythagorean triplet - Project Euler Challenge - JavaScript freeCodeCamp

804 views

5 years ago

Ganesh H
06 - Authentication Strategies -  Advanced Node and Express - freeCodeCamp

To be able to log in users using a username and password, we have to set up a 'strategy' so that we can use these details to ...

11:21
06 - Authentication Strategies - Advanced Node and Express - freeCodeCamp

1,418 views

5 years ago

Ganesh H
19 - Run Functional Tests on API Endpoints using Chai-HTTP - freeCodeCamp Tutorial

We can integrate Chai testing into our APIs and Express Apps using a plugin called chai-http. This allows Chai to send requests to ...

10:38
19 - Run Functional Tests on API Endpoints using Chai-HTTP - freeCodeCamp Tutorial

2,654 views

5 years ago

Ganesh H
013 - Large sum - Project Euler Challenge - JavaScript freeCodeCamp

Work out the first ten digits of the sum of the following one-hundred 50-digit numbers. Link to Challenge ...

8:01
013 - Large sum - Project Euler Challenge - JavaScript freeCodeCamp

594 views

5 years ago

Ganesh H
17 - Add Labels to D3 Elements - Data Visualization with D3 - freeCodeCamp Tutorial

Let's add some labels to our bars. We can use the SVG text element to render text on an SVG canvas. We can give this x and y ...

5:04
17 - Add Labels to D3 Elements - Data Visualization with D3 - freeCodeCamp Tutorial

1,420 views

5 years ago

Ganesh H
05 - Use the Double Equals to Assert Equality - Quality Assurance with Chai - freeCodeCamp Tutorial

One way we can assert that two values are equals is by using the loose equality (==) operator. Chai has the assert methods ...

9:49
05 - Use the Double Equals to Assert Equality - Quality Assurance with Chai - freeCodeCamp Tutorial

732 views

5 years ago