Find the most recurring character in a string- via JavaScriptIntroduction This is the fourth post in the series DS & Also Practice - using examples & snippets. Problem Statement Given an input string, find the most recurring character. Ex - "aabbcccdddddd" -> here character d repeats 6 times, hence the most re...Nov 29, 2021·2 min read·187
IValidatableObject Interface – Custom Validations in .NET Core.Net ecosystem provides us a way to create custom validations using IValidatableObject Interface. Let’s see it in action in a .Net Core 3.1 MVC project. Getting Started Let us create a sample .NET Core 3.1 MVC project, add a new controller named as P...Jul 1, 2021·3 min read·88
Vue Js – Weather AppCreated a weather app using Vue and Open Weather Map API. Created a vue app using Vue CLI – vue create vue-weather-app Code Skeleton App.vue – template code : use of v-model, v-on:click, interpolation syntax <template> <div id="container"> <h3>...May 19, 2021·2 min read·105
Vue Js – IntroductionDifferent ways of utilizing Vue. Vue can be used to control parts of HTML pages or entire pages . Widget approach on a multi-page application. Vue can also be used to control the entire frontend of a web application. SPA approach – Server only sen...May 17, 2021·2 min read·56
Azure DevOps – CI/CD PipelineIn this post, we would see how to create a CI/CD pipeline in Azure DevOps, and deploy a .NET Core application to Azure App Service along with an Azure SQL database. Getting Started We’ll resume on the same ‘Sports Management Project’, which we had cr...Jun 3, 2020·7 min read·78
.NET 5 – The BuzzIn this post, we would introduce .NET 5, what’s the deal behind it, how the releases are planned, new features, etc. Introduction There’s always been speculation about Microsoft stack with various frameworks, releases, versions, APIs, etc. Currently ...May 29, 2020·3 min read·50
Azure DevOps Repository ManagementThis post will explain how to manage a GIT repository with Azure DevOps. How to properly manage branches, commits, pull requests (PRs), code reviews and much more. Getting Started Login to your Azure DevOps account at https://dev.azure.com/ and creat...May 28, 2020·5 min read·152