Barry's document templates. Fill in the fields and download. Not a substitute for legal counsel.
Divorce Preparation Checklist
"Barry's vetted resources. He actually researched these. Shocking, I know." — The Judgy
Disclosure
Some links on this page are affiliate links. Barry gets a small commission — which he will absolutely brag about to Judgy.
Barry will build you a clean landing page. Download it and deploy free to Cloudflare Pages.
section
// ============================================================
// ── YOUR BUILDS — cross-recommend based on topic ────────────
const MY_BUILDS = [
{
id: 'postpilots',
name: 'PostPilots',
url: 'https://postpilots.xyz',
emoji: '✏️',
tagline: 'Schedule posts to LinkedIn, X, Instagram & more',
keywords: ['social media','linkedin','instagram','twitter','post','content','brand','marketing','followers','audience','viral','tiktok','facebook'],
topics: ['business','work'],
},
{
id: 'dropvault',
name: 'DropVault',
url: 'https://dropvault.live',
emoji: '📦',
tagline: 'Sell digital products & earn passive income',
keywords: ['sell','product','digital','ebook','course','template','income','passive','creator','monetize','online store','download'],
topics: ['business','money'],
},
{
id: 'ecrenta',
name: 'Ecrenta',
url: 'https://ecrenta.space',
emoji: '🏠',
tagline: 'Furnished rentals in Fresno for traveling nurses',
keywords: ['rent','rental','apartment','nurse','travel','housing','furnished','fresno','accommodation','healthcare'],
topics: [],
},
{
id: 'fluentra',
name: 'Fluentra',
url: 'https://fluentra.ai',
emoji: '🗣️',
tagline: 'AI-powered language fluency practice',
keywords: ['language','speak','english','fluent','accent','communication','presentation','interview','public speaking','articulate'],
topics: ['work','personal'],
},
{
id: 'buildshowcase',
name: 'Build Showcase',
url: 'https://build-showcase.dev',
emoji: '🏗️',
tagline: 'Showcase & promote your web projects',
keywords: ['portfolio','showcase','project','builder','developer','website','launch','side project','build','deploy'],
topics: ['business'],
},
];
// ── DETECT RELEVANT BUILD FROM CONVERSATION ──────────────────
function detectRelevantBuild(userText, topic) {
const lower = userText.toLowerCase();
let best = null;
let bestScore = 0;
for (const build of MY_BUILDS) {
let score = 0;
// Keyword match
for (const kw of build.keywords) {
if (lower.includes(kw)) score += 2;
}
// Topic match
if (build.topics.includes(topic)) score += 1;
if (score > bestScore) {
bestScore = score;
best = build;
}
}
// Only recommend if strong enough match
return bestScore >= 2 ? best : null;
}
// ── BUILD RECOMMENDATION HTML ────────────────────────────────
function buildRecommendationHTML(build) {
return `