Skip to content

Instantly share code, notes, and snippets.

View douglascayers's full-sized avatar

Doug Ayers douglascayers

View GitHub Profile
@douglascayers
douglascayers / DemoBatchJob.cls
Last active February 17, 2023 00:47
Demo of Apex Batch Job's finish method not running if exception occurs in its execute method (API v46.0)
public class DemoBatchJob implements Database.Batchable<SObject> {
public Database.QueryLocator start( Database.BatchableContext context ) {
System.debug( 'DemoBatchJob.start: ' + context );
return Database.getQueryLocator([ SELECT Id FROM Organization ]);
}
public void execute( Database.BatchableContext context, List<SObject> records ) {
System.debug( 'DemoBatchJob.execute: ' + context );
Integer i = 1 / 0; // cause exception
@douglascayers
douglascayers / event-start-time-utc.txt
Created June 23, 2019 03:16
Format Event Start Time in UTC in ISO-8601 Format (no dashes)
TEXT( YEAR( ActivityDate ) ) &
LPAD( TEXT( MONTH( ActivityDate ) ), 2, '0' ) &
LPAD( TEXT( DAY( ActivityDate ) ), 2, '0' ) &
'T' &
LPAD( TEXT( HOUR( TIMEVALUE( ActivityDateTime ) ) ), 2, '0' ) &
LPAD( TEXT( MINUTE( TIMEVALUE( ActivityDateTime ) ) ), 2, '0' ) &
LPAD( TEXT( SECOND( TIMEVALUE( ActivityDateTime ) ) ), 2, '0' ) &
'Z';
@douglascayers
douglascayers / event-end-time-utc.txt
Last active June 23, 2019 03:39
Format Event End Time in UTC in ISO-8601 Format (no dashes)
/* 1440 minutes in a day */
TEXT( YEAR( ActivityDate + DurationInMinutes / 1440 ) ) &
LPAD( TEXT( MONTH( ActivityDate + DurationInMinutes / 1440 ) ), 2, '0' ) &
LPAD( TEXT( DAY( ActivityDate + DurationInMinutes / 1440 ) ), 2, '0' ) &
'T' &
LPAD( TEXT( HOUR( TIMEVALUE( ActivityDateTime + DurationInMinutes / 1440 ) ) ), 2, '0' ) &
LPAD( TEXT( MINUTE( TIMEVALUE( ActivityDateTime + DurationInMinutes / 1440 ) ) ), 2, '0' ) &
LPAD( TEXT( SECOND( TIMEVALUE( ActivityDateTime + DurationInMinutes / 1440 ) ) ), 2, '0' ) &
'Z';
@douglascayers
douglascayers / delete-orphaned-local-branches.sh
Last active March 7, 2025 18:26
Delete local branches that no longer exist on a remote
#!/bin/bash
# https://gist.github.com/douglascayers/661eef9ff9f45a49b2025f6cbdc5679e
set -e
# Get the name of the currently checked out branch.
current_branch=$(git branch --show-current)
# Delete all local branches whose remote branch no longer exists, excluding the current branch.
@douglascayers
douglascayers / sfdx-project.json
Last active April 28, 2019 06:47
Simple Salesforce DX project configuration file to activate Salesforce Extensions for Visual Studio Code.
{
"packageDirectories": [
{
"path": "force-app",
"default": true
}
],
"namespace": "",
"sfdcLoginUrl": "https://login.salesforce.com",
"sourceApiVersion": "45.0"
@douglascayers
douglascayers / tasks.json
Last active January 30, 2024 22:27
Simple tasks for Visual Studio Code to deploy/retrieve/delete the currently opened file, or an entire folder, using Salesforce CLI force:source commands.
{
"version": "2.0.0",
"tasks": [
{
"label": "SFDX: Deploy Current File",
"type": "shell",
"command": "sfdx",
"args": [
"force:source:deploy",
"--sourcepath",
@douglascayers
douglascayers / setup.sh
Created February 5, 2019 05:05
Deploy Chatter Bot for Feeds using Salesforce CLI
# Install Git
# https://git-scm.com/downloads
# Install Salesforce CLI
# https://developer.salesforce.com/tools/sfdxcli
# Authorize to the org you want to install Chatter Bot apps to
sfdx force:auth:web:login -a YourOrgAlias
# Download the Chatter Bot Groups app and deploy to your org (pre-requisite for Chatter Bot Feeds demo)
{
"version": "2.501",
"url": "https://github.com/douglascayers-org/sfdx-mass-action-scheduler/wiki/Release-Notes"
}
/* SharedLibrary.js, upload as a static resource */
window.sum = function(a, b) {
return ( a + b );
}
<!-- ServiceComponent.cmp -->
<aura:component>
<aura:method name="sum" action="{!c.handleSum}">
<aura:attribute name="a" type="Integer" required="true"/>
<aura:attribute name="b" type="Integer" required="true"/>
</aura:method>
</aura:component>