How to Integrate Salesforce with a Next.js App Using jsforce

In this post, we’re going to walk through the process of integrating Salesforce with a Next.js application using the jsforce library. This is especially useful if you need to access Salesforce data from a Next.js app, whether for displaying information or for backend operations. What is jsforce? jsforce (formerly known as Node-Salesforce) is a powerful… Read More How to Integrate Salesforce with a Next.js App Using jsforce

How To Set Up CICD On Bitbucket Pipelines With Salesforce DX And Delta Deployment

Learn how to setup set up CICD delta deployment with Salesforce DX. Tips and tricks for authorisation , setting up node and the basic git commands. I’m revamping our CICD process with Salesforce DX and Bitbucket Pipeline with the following initial setup which will only allow delta deployments. Authentication method – authorize an org and… Read More How To Set Up CICD On Bitbucket Pipelines With Salesforce DX And Delta Deployment

How to Validate forms built with Lightning Components

Learn how to validate lightning components forms easily. I recently had a requirement to create a basic lightning component to capture form inputs. I previously had a not so good experience with building custom validation with Lightning components back in Summer17 when lightning was pretty new. I was using force:inputField and also used lightning:inputField. Past… Read More How to Validate forms built with Lightning Components

How to Integrate Google APIs with a Next.js App (OAuth 2.0 Guide)

In this post, we’ll dive into integrating Google APIs with a Next.js app. We’ll walk through how to: Ready? Let’s get started! Step 1: Set Up Google Cloud Console Head over to console.cloud.google.com.Create a New Project.Under API & Services: Next, Create Credentials: Step 2: Install Dependencies Step 3: Set Up Your .env File These values are required to authenticate users via… Read More How to Integrate Google APIs with a Next.js App (OAuth 2.0 Guide)

Step-by-Step Guide: Integrating Salesforce with Postman Using OAuth 2.0 and Connected Apps

How to Use Postman to Integrate with Salesforce Using a Connected App In this blog post, we will walk through how to integrate Salesforce with Postman using a connected app. Salesforce provides a secure way for third-party applications to access its resources through a REST API. To achieve this, you need to authorize the app… Read More Step-by-Step Guide: Integrating Salesforce with Postman Using OAuth 2.0 and Connected Apps

How to install the latest @salesforce/cli with node20 using Homebrew.

If you are running on a Mac with homebrew and have node installed, the chances are when you try to install the latest @salesforce/cli it would show that installation was successful. However, any commands you run like sf version will throw this annoying warning. Update: This issue seems to have been fixed with node-v21.6.0 and… Read More How to install the latest @salesforce/cli with node20 using Homebrew.

Enhance Your TV Watching Experience: ECHOGEAR Swivel Full Motion TV Wall Mount Review

Television has become a ubiquitous part of our lives. We use it for entertainment, news, and even education. As televisions have evolved, so too have the ways we mount and display them. The traditional TV stand has been replaced by TV mounts, which offer a range of benefits over their old-fashioned counterparts. TV mounts come… Read More Enhance Your TV Watching Experience: ECHOGEAR Swivel Full Motion TV Wall Mount Review

Joby GorillaPod 1kg and Ball Head Kit Review – Ultimate Mini Tripod

In this post, I’ll be talking about my review of the Joby GorillaPod 1kg and ball head kit, an innovative tripod that will change the way you shoot your videos and take your photos. This is perfect for creators, vloggers, and anyone who’s looking for a reliable and flexible tripod. Body and Features The GorillaPod… Read More Joby GorillaPod 1kg and Ball Head Kit Review – Ultimate Mini Tripod

How To Solve “‘windows’ was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene instead” warning in Swift.

Quick tip on how to fix the error which mostly depends on where you are calling the code in your app. In my app for example I use a similar code in two places. Common among them is it tries to determine the first key window in the application regardless of the scene. I have… Read More How To Solve “‘windows’ was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene instead” warning in Swift.