Box Selection – Visual Studio C#

VISUAL STUDIO TIPSEdit multiple lines of code at the same timeTip 1: Box SelectionLet’s take an example of the following class with integer properties and apply box selection to update int to, let's say, double at one shot.public class Test { int x = 10; int y = 20; int z = 30; int l = 40;}Shortcut … Continue reading Box Selection – Visual Studio C#

Learn to add Excel Gists

GITHUB GISTHow to add a searchable table into the medium article.Photo by Lukas from PexelsI have always wondered how to add table data into a Medium Story?One can think of creating tables with pipes | and hyphens - as shown below| First Header | Second Header || ------------- | ------------- || Content Cell | Content Cell || Content … Continue reading Learn to add Excel Gists

Top tips for Technical Articles

TIPS & TRICKSI am not an expert writer yet, but I do have a passion for writing, sharing knowledge to help people. Because of that, I have discovered many tips & tricks which I craved to share.“Formatting blog helps to obtain Reader’s interest.”Choose TopicMost writers acknowledge that picking the appropriate topic is the biggest concern. I divide … Continue reading Top tips for Technical Articles

An alternative way to add multiple spaces or use tab key on Medium Story

ALTERNATIVEAs a medium story doest not support more than one space or indentation, here is the alternative way on how to add it.Sample snippet with indentation and tabshttps://gist.github.com/ssukhpinder/d786d8e0639864ce822a0017a3097c5cLive DemoLets StartStep 1: Navigate to https://gist.github.com/Step 2: Enter details like filename with the proper extension.NOTE: For demonstration, typescript extension “.ts” is used.GIST file created successfully as shown belowStep 3: … Continue reading An alternative way to add multiple spaces or use tab key on Medium Story

Have you heard of Deep Linking in Swagger?

.NET CORE & SWAGGER PROGRAMMINGDeep linking is using a URL to get to a specific piece of content. A deep link is a URL that can be parsed by an application, for particular data & app navigation.This article demonstrates steps to enable deep linking in swagger UI inside a .Net Core API.What is deep linking?Deep linking … Continue reading Have you heard of Deep Linking in Swagger?