Skip to content

Instantly share code, notes, and snippets.

View the-last-byte's full-sized avatar

the-last-byte

View GitHub Profile
@the-last-byte
the-last-byte / backgroundImagePdf.page
Last active February 25, 2024 22:33
VisualForce PDF with Background Images
<apex:page renderAs="advanced_pdf"
applyBodyTag="false"
standardStylesheets="false"
showHeader="false"
sideBar="false"
showChat="false"
applyHtmlTag="false">
<html lang="en">
<head>
<title>SOME TITLE</title>
@the-last-byte
the-last-byte / Export-Schema.apex
Last active August 21, 2023 05:17
Script that prints a CSV of the Salesforce Schema to the console. This output can be imported into LucidChart (using the MySQL option) to create an ERD from your current schema.
/**
* Should only name, required, and lookup fields be exported. Set this to true
* if a (probably much smaller) result showing primarily objects and relationships
* is desired.
*/
final Boolean keyFieldsOnly = false;
/**
* Optional. List of SObject API names to return. If this is empty, all SObjects
* will be returned.