Recommendations to fixing issues in Apex code

Posted by Abhishek on July 20, 2020

Salesforce Best Practices

This blog explains the best practices & its recommended fixes that every apex code should follow. By following these recommendations, you will be able to write clean code everytime and will help make you a excellent programmer.

Salesforce CI/CD using Github

Posted by Abhishek on June 25, 2020

Salesforce Github DevOps

The biggest pain point for most developers and companies doing Salesforce development is to have a robust DevOps process. There are many costly tools and products for implementing DevOps in Salesforce. In this blog, I will elaborate on the DevOps process that you can setup using Github for free.

Salesforce CI/CD using Azure DevOps Services

Posted by Abhishek on June 15, 2020

Salesforce Azure DevOps

The biggest pain point for most developers and companies doing Salesforce development is to have a robust DevOps process. There are many costly tools and products for implementing DevOps in Salesforce. In this blog, I will elaborate on the DevOps process that you can setup using Azure DevOps services for free.

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.