Author: Pavel Drozd

Engineering

Generating Realistic Synthetic Data

This article briefly describes one of the most convenient and powerful ways to generate complex datasets in Salesforce and other systems. I hope it will be interesting for you even if you’re not working with Salesforce. The practice steps below can be applied to a majority of modern relational databases...

February 7, 2024
Engineering

Dependency Injection in Salesforce

Dependencies: good or bad? When it comes to code dependencies, you will often see this example: public ClassA { } public Class B { private ClassA service; } As you can see, ClassB needs ClassA to do its job, in other words, Class B is dependent on ClassA. This is...

June 23, 2022