LEARNING

Expand your Salesforce skills with curated learning resources, tutorials, and courses. From beginners to experts, we’ve got something for everyone.

Why do you need a Selector Layer?

Why do you need a Selector Layer?

A Selector Layer centralizes SOQL queries, ensuring consistency, FLS, sharing rule enforcement, and easier testing with mocking. It avoids duplication, supports caching, and simplifies updates, making your code cleaner, scalable, and more maintainable.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

AppExchange App Support with Subscriber Console
December 19, 2024

AppExchange App Support with Subscriber Console

Optimize Salesforce AppExchange app support with the Subscriber Console. Debug issues, manage protected settings, and access managed pakage logs directly on your subscriber’s org.

Bartosz Suchocki
Bartosz Suchocki

Freelance Salesforce Developer/Architect

Simple Salesforce CICD for Developers
July 4, 2024

Simple Salesforce CICD for Developers

Set up a Salesforce CI/CD pipeline easily! Automate deployments, run tests, and more with our step-by-step guide. Happy coding!

Maciej Ptak
Maciej Ptak

Salesforce DevOps

Salesforce OAuth 2.0 Flows: Integrate in the right way

Salesforce OAuth 2.0 Flows: Integrate in the right way

TL;DR I just want to know which flow to use If you’re short on time or just want to know what flow is for you, just go here. Introduction Brief Overview OAuth, which stands for Open Authorization, is an open-standard protocol that provides users with secure access to resources on an application, such as Salesforce, […]

Mateusz Babiaczyk
Mateusz Babiaczyk

Salesforce Technical Architect

Advanced Salesforce LWC debugging with Chrome Developer Tools
April 15, 2024

Advanced Salesforce LWC debugging with Chrome Developer Tools

LWC debugging and development with Chrome Developer Tools – learn how Salesforce LWC developer can debug and develop Lightning Web Components effectively without console.logs.

Bartosz Suchocki
Bartosz Suchocki

Freelance Salesforce Developer/Architect

Beyond If Statements: Ways to avoid IFs – Polish Dreamin’ 24
March 21, 2024

Beyond If Statements: Ways to avoid IFs – Polish Dreamin’ 24

Code is a representation of business requirements. Business requirements vary for each company, but most of them have an IF-THEN structure. It’s quite common to see IF statements in our code. However, an increasing number of IFs can make our code hard to read and understand.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Advanced Promises in LWC
February 13, 2024

Advanced Promises in LWC

How and when to use Promise.all, allSettled, any, and race in LWC? Check out our latest post about advanced promises!

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Future vs Queueable
January 26, 2024

Future vs Queueable

In Apex, for a long time, a go to Asynchronous method was @Future annotation. Meanwhile, Queueable interface got built up with many useful tools to help developers. Is Queueable better now? Where does it stand in comparison to the @Future? Are there use cases when @Future is still valid? This guide will help you learn everything you need to know about using Asynchronous technologies.

LWC and Apex communication – the Ultimate Guide
January 15, 2024

LWC and Apex communication – the Ultimate Guide

See the ultimate guide for LWC and Apex connectivity solutions – how to get data, how to use wire and how to refresh cache – all in one place!

Krzysztof Pintscher
Krzysztof Pintscher

Salesforce Frontend Preacher

Refs vs QuerySelector in LWC
December 1, 2023

Refs vs QuerySelector in LWC

We have two ways to query DOM elements in LWC: refs and querySelector.Which one is better? Let’s cover it in this post.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Type Casting in Apex
October 15, 2023

Type Casting in Apex

How Apex type casting works? How to cast List in Apex? How to cast Apex Map? Answers to these questions and much more can be found in this post!

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Client Credentials custom Auth. Provider
September 29, 2023

Client Credentials custom Auth. Provider

Do you need to use Client Credentials flow? Or you are just wondering how to create one? Check this step-by-step guide with example on building custom Auth. Provider for Client Credentials. Contains a real life example using PayU API.

Salesforce Flow Considerations
August 29, 2023

Salesforce Flow Considerations

Flows are an amazing automation tool that offers you a lot of possibilities. However it also have a lot of limitations you need to be aware of.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

LWC Getters and Setters – The Last Frontier
August 16, 2023

LWC Getters and Setters – The Last Frontier

See best practices, learn when and how to use getters and setters in LWC.

Krzysztof Pintscher
Krzysztof Pintscher

Salesforce Frontend Preacher

Top 10+ Salesforce deployment errors
August 3, 2023

Top 10+ Salesforce deployment errors

Mastering Salesforce deployments can be tricky. Learn how to avoid 10+ common deployment errors with our expert guide. Get started now!

Maciej Ptak
Maciej Ptak

Salesforce DevOps

Apex CPU Benchmarking
July 28, 2023

Apex CPU Benchmarking

Have you ever encountered the infamous Apex CPU time limit exception? Check out this post to see how to efficiently measure the performance of your Apex code.

Adam Osiecki
Adam Osiecki

Freelance Salesforce Developer

SOQL Lib

SOQL Lib

The SOQL Lib provides functional constructs for SOQL queries in Apex. Use the SOQL Lib as a Selector Layer on your project.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Static in Apex Salesforce
July 2, 2023

Static in Apex Salesforce

Static variables are a key aspect of apex programming that can significantly enhance code functionality and efficiency.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Then vs Async Await in LWC
February 13, 2023

Then vs Async Await in LWC

then and await are key concepts in asynchronous JavaScript programming. Understand the differences between them and check the best practices.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Apex Triggers Introduction
February 5, 2023

Apex Triggers Introduction

Preview and introduction to Apex Triggers. Learn how to define one and its capabilities.

Top 3 Git Branching strategies for Salesforce
December 3, 2022

Top 3 Git Branching strategies for Salesforce

An overview of the top 3 git branching strategies for Salesforce. Pros & Cons included

Maciej Ptak
Maciej Ptak

Salesforce DevOps

System.Assert Class vs System.assertEquals methods
November 7, 2022

System.Assert Class vs System.assertEquals methods

Salesforce released new Assert methods in Winter 23. Are they better or worse than existing assert methods? Should we replace the old ones with new methods? Check this article to find out!

Adam Osiecki
Adam Osiecki

Freelance Salesforce Developer

Publishing Visual Studio Code Extension
November 1, 2022

Publishing Visual Studio Code Extension

How to make and share a VS Code extension? It is easier than you think. Follow these steps to add a new extension to the Marketplace.

Web-to-Anything: Secure Forms with FormAssembly
October 3, 2022

Web-to-Anything: Secure Forms with FormAssembly

Learn how to build secure web-to-anything Salesforce forms using FormAssembly.

Mixins in Lightning Web Components – Dreamforce 2022 session
September 30, 2022

Mixins in Lightning Web Components – Dreamforce 2022 session

Learn what the Javascript mixins are and how to use them in Lightning Web Components.

Krzysztof Pintscher
Krzysztof Pintscher

Salesforce Frontend Preacher

Hangman Game Built with LWC
September 21, 2022

Hangman Game Built with LWC

Learn how to build hangman game using LWC and vanilla JS

Adam Osiecki
Adam Osiecki

Freelance Salesforce Developer

Salesforce To Google REST API Integration
September 20, 2022

Salesforce To Google REST API Integration

Integrate your Salesforce environment with Google by REST API. Check the completed integration guide.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Promises in LWC
September 4, 2022

Promises in LWC

What is a Promise? How does it work in LWC? What is the difference between then/catch and async/await? Let’s check.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Salesforce SPA using LWC
August 27, 2022

Salesforce SPA using LWC

Create a powerful Single Page Application using Lightning Web Components. The perfect approach for internal and external Salesforce apps.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

How to recover deleted files in git
August 25, 2022

How to recover deleted files in git

How to recover deleted files in git which were not committed? Not easy but possible.

Maciej Ptak
Maciej Ptak

Salesforce DevOps

Abstract, Virtual, Interface in Apex
August 14, 2022

Abstract, Virtual, Interface in Apex

Find the differences between Abstract, Virtual, and Interface implementation in Apex code. Understand the purpose and make your code better.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Apex Debugging
August 7, 2022

Apex Debugging

Salesforce provides sophisticated methods to debug your apex code. Check how to use all of them and resolve issues more efficiently.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

Salesforce Platform Cache
July 16, 2022

Salesforce Platform Cache

Platform Cache is salesforce feature, which allows you improve you app performance and improve user experience.

Piotr Gajek
Piotr Gajek

Senior Salesforce Developer

How to deploy in Salesforce
July 12, 2022

How to deploy in Salesforce

How business logic works in Salesforce is described by metadata. So how to deploy it in the best possible way?

Maciej Ptak
Maciej Ptak

Salesforce DevOps

Showing 34 of 34 results