Deconstructing Digital Worlds.
I'm Christian Coleman — a senior Salesforce developer and technical lead with 13 years of experience across federal, state, and private-sector platforms. This is my personal hub for software development, reverse engineering, 3D printing, drones, and other tech explorations.
// Quick Access
>> Recent Dispatches
>> Project Spotlight
Kiki Gadget
A Windows desktop tool for a pinball community — installation setup, table assets, and display/lighting diagnostics, with Google sign-in and Cloudflare-backed file delivery.
Spaceship Earth in Three.js
An interactive WebGL recreation of Epcot's Spaceship Earth, iterated from a particle cloud to programmable lighting.
?? What I'm Exploring
- Agentic AI and AI-assisted software delivery
- Salesforce Revenue Cloud architecture
- Drone flight — FAA Part 107 certified
- 3D printing and hardware tinkering
:: Example Code Snippet ::
// AccountTriggerHandler.cls — one trigger, one handler, no logic in the trigger
public with sharing class AccountTriggerHandler extends TriggerHandler {
public override void beforeInsert(List<Account> newRecords) {
AccountDomain.applyRegionDefaults(newRecords);
}
public override void afterUpdate(
Map<Id, Account> oldMap, Map<Id, Account> newMap
) {
// Async work stays out of the transaction's critical path
AccountSyncQueueable.enqueueChanged(oldMap, newMap);
}
}