11/03/2024
New video! Redux Core Concepts (in Tamil).
People struggle to understand which are the features of Redux and which ones are from React-Redux, the library that integrates React to Redux. So in this video, I wanted to explain only Redux by consuming it as a node module without any UI. Drawing proper boundaries and learning will help understand concepts better.
https://www.youtube.com/watch?v=5ZNwCpLIDlI
Redux Core Concepts | Tamil
Learning Redux Core Concepts like, store, reducers, actions and middlewares without involving react or react-redux libraries in Tamil
11/03/2024
New Video!
Go Embed is a great feature to embed static files/assets into the go binary so that distribution is easy. In this video, you will learn how to embed a React application in Go binary
https://www.youtube.com/watch?v=tf8AC4mmJFM
Embed React Application in Go Binary | Tamil
Embedding a React static application in Go binary using go:embed
27/08/2023
Yesterday, I got an opportunity to give a full day workshop on JWT Authentication using Node.js to the students of Amrita Vishwa Vidyapeetham, Chennai Campus. It was a great session, thanks to students for making it interactive. Some of the feedbacks I got just made my day. It's always a pleasure to interact with students. Looking forward to many more.
17/07/2023
In this new tutorial video, I'm explaining , & functions in detail. These three functions together can do any data transformation in a simplified manner.
https://youtu.be/kerAKq6YKXk
17/07/2023
In this new tutorial video, I'm explaining , & functions in detail. These three functions together can do any data transformation in a simplified manner.
https://youtu.be/kerAKq6YKXk
Map, Filter, & Reduce in Javascript | Tamil | தமிழ்
This video explains Javascript array functions map, filter & reduce in detail in Tamil00:00 Map function09:46 Filter function16:12 Reduce function25:08 Combi...
08/07/2023
Here is the new video for people who wants to get started with by learning the basics in a short time.
https://youtu.be/mU7Wq2edu_o
React.js in 45 mins | Tamil
This video explains React.js concepts like Props, State, Effects, Component composition etc in 45 mins in TamilPhoto by Luca Bravo on StockSnap
30/05/2023
New Video! Tried to cover Spring Boot REST API, Validation, Persistence using JPA, all in a single video in . https://youtu.be/XB7kwQUdr3Y
REST API using Spring Boot in 40 mins | in Tamil
REST api for a todo application developed with spring boot from scratch in 40 mins.
15/05/2023
Finally got some good reactive primitives with . Here's my video on it in .
https://youtu.be/7FvC_LsuBX4
Angular Signals | in Tamil | தமிழில்
00:00 Introducing Signals06:29 Effects08:29 What will happen to Rxjs?
22/03/2023
Let's look at what are the changes done to react documentation recently and how it affects us!
React Documentation Changed! | Tamil
00:00 New documentation website02:04 No class based examples03:20 Tic-Tac-Toe tutorial04:49 Death of Create-React-App06:11 Challenges06:47 Future Direction
22/02/2023
New video in using Go series. This time it's Singly Linked List which is a very basic and very widely used Datastructure. Most importantly using .
https://www.youtube.com/watch?v=L973lpYSG9s
Singly Linked List using Generics | Datastructures in Go
This tutorial helps to create a Singly linked list which can do Insert, Get, Modify, Delete, Append, ForEach operations in Golang with Generics00:00 Intro an...
13/10/2022
The major advantage of Go is its concurrency model. Let's explore how easy it is to convert the Queue which we created in our last video to a Goroutine-safe Queue.
https://youtu.be/r03ccQeAOWI
Goroutine-safe Queue using Linked List & RWMutex | Datastructures in Go
This video teaches how to test if a Queue is Goroutine-safe and if not, how to convert it into a Goroutine-Safe queuehttps://github.com/fareez-ahamed/go-dsa
30/09/2022
New Video
Go DS Queue
This video explains how to create a Queue Datastructure using Generics and Linked List in Go