Logger Framework in Salesforce

Posted by Abhishek on May 29, 2020

Salesforce Architecture

Logging errors in Salesforce environment is a practice that almost every organization and developer follows. In this blog, I will introduce a logging framework that will ensure that logging is done consistently.

SFDX Environment Preparation in Ubuntu 20.04 LTS

Posted by Abhishek on April 24, 2020

.NET

In this blog, I will briefly explain the steps for setting up your SFDX environment in Ubuntu 20.04 LTS Linux machine

Install .NET Core SDK 3.1 in Ubuntu 20.04 LTS

Posted by Abhishek on April 24, 2020

.NET

As of the release of Ubuntu 20.04 LTS, installation of dotnet core sdk has been a bit of pain. This blog shares the installation instructions clearly for dotnet-sdk-3.1 in Ubuntu 20.04 LTS

Backend with NodeJS - Part 2

Posted by Abhishek on April 22, 2020

NodeJS Deep Dive

In this blog, we will improve the NodeJS API that we created in the Part 1 from in-memory data storage to persistant storage using MongoDB & Mongoose.

API Versioning

Posted by Abhishek on April 21, 2020

.NET Deep Dive

In this blog post, we will closely look at different strategies to versioning API's

Trigger Optimization Framework in Salesforce

Posted by Abhishek on April 20, 2020

Salesforce

In this blog post, we will do a deep dive into improving existing Apex Trigger Frameworks into a comprehensive, configurable Trigger Framework that we can adopt in Salesforce.

Inversion of Control - Part 1

Posted by Abhishek on April 20, 2020

Architecture Deep Dive

In this blog post, we will understand the basic principles of Inversion of Control and Dependency Injection. Also, we will see how it is very important for developers to adopt IOC.

REST API Standards

Posted by Abhishek on April 08, 2020

Best Practices Deep Dive

In this blog post, I will explain what REST standards are. Additionally, we will list out what API's need to have for it to be RESTful.

ASP.NET Core Web API with Swagger [Linux Edition]

Posted by Abhishek on April 08, 2020

.NET Deep Dive

In this blog post, we will learn how to create an ASP.NET Core Web API with Swagger feature in a Linux environment. Swashbuckle is an open source project that generates swagger documents for Web API’s. Swagger makes it really easy for people to understand an API and provides a playground to interact with the Web API. Thus it ensures a rich...

Backend with NodeJS - Part 1

Posted by Abhishek on April 01, 2020

NodeJS Deep Dive

In this blog, you will learn how to create backend for your application using NodeJS.