RSSAmplifier

Blog

Blogs by Snehasish

Pandora's Box to everything technical

blogs.snehasish-chakraborty.comRSS feed ↗10 posts

Latest posts

Unleash Efficiency: Automating Azure Infrastructure with Terraform and GitHub Actions

"Automate your Azure infrastructure provisioning with Terraform and streamline your workflow with GitHub Actions. Say goodbye to manual setups and hello to efficiency and consistency. Learn how to leverage these powerful tools in our latest blog post! #Azure #Terraform #GitHubActions #InfrastructureAsCode" The post Unleash Efficiency: Automating Azure Infrastructure with Terraform and GitHub…

Understanding different Grant Types in OAuth2 and how to use them correctly

This article describes all available Grant Types in OAuth2.0 in detail to understand how to use them correctly. The post Understanding different Grant Types in OAuth2 and how to use them correctly appeared first on Blogs by Snehasish .

any vs unknown in Typescript – which one should you pick

I was quite curious about the fact that Typescript supports both any and unknown types which can be used to store any type of data without strict type checking. I had no Idea why there are two types for the same reason. I recently came to know their differences. Lets understand with below snippets. Photo [ ] The post any vs unknown in Typescript which one should you pick appeared first on Blogs by…

Spring Security Chapter 4: Working with the AuthenticationFilter

This article deals with creating our Custom Authentication Filter and making it part of Spring Security's Filter chain. The post Spring Security Chapter 4: Working with the AuthenticationFilter appeared first on Blogs by Snehasish .

Spring Security Chapter 3: How does AuthenticationProvider Work

This Post talks about the use of AuthenticationProvider and how we can create our own to have custom authentication logic. The post Spring Security Chapter 3: How does AuthenticationProvider Work appeared first on Blogs by Snehasish .

Function Currying in JavaScript with real world examples

This article explains what Function Currying in JavaScript is and let you understand the benefits of using it using real world examples. The post Function Currying in JavaScript with real world examples appeared first on Blogs by Snehasish .

Quick Tip: Template Literal Types in Typescript 4.1

This quick article talks about the Template Literal Type features introduced in Typescript version 4.1 which uses string interpolation. The post Quick Tip: Template Literal Types in Typescript 4.1 appeared first on Blogs by Snehasish .

Spring Security Chapter 2: Adding Database into the picture

In this article, we learn how we can use database to store user information and create custom UserDetailsManager to manage User information. The post Spring Security Chapter 2: Adding Database into the picture appeared first on Blogs by Snehasish .

Spring Security Chapter 1: Secure your Spring Boot Project

This series will cover everything related to Spring Security, This series will cover basic user name password based authentication to the most advanced ones like SAML, Oauth2 and OIDC, Multi factor authentication, authorization and the most common security concerns. The post Spring Security Chapter 1: Secure your Spring Boot Project appeared first on Blogs by Snehasish .

Difference between target=”_blank” and target=”blank”

This short article talks about target attribute in tags and see the different result that you get when you use target=blank vs target=_blank The post Difference between target= _blank and target= blank appeared first on Blogs by Snehasish .