Skip to content

Instantly share code, notes, and snippets.

@paulsocal
paulsocal / landing-page-copy.md
Created January 13, 2026 07:11
GoodMeasure Landing Page Copy (April Dunford Framework)

GoodMeasure Landing Page Copy

Based on April Dunford's positioning framework

Positioning approach: Pain-first with roofing examples, "See it in action" primary CTA, direct & confident tone.


Hero

@paulsocal
paulsocal / positioning-analysis.md
Created January 13, 2026 06:37
GoodMeasure Positioning Analysis (April Dunford Framework)

GoodMeasure Positioning Analysis

Using April Dunford's "Obviously Awesome" Framework

Date: January 2026 Audience: Founding Team Purpose: Strategic discussion on product positioning


osascript -e 'id of app "Adobe After Effects CC 2020"'
osascript -e 'id of app "Adobe After Effects CC 2019"'
mdfind -onlyin /Applications kMDItemCFBundleIdentifier=='com.adobe.AfterEffects'
@paulsocal
paulsocal / gist:5744799
Created June 9, 2013 19:17
mongoose populate 3 levels deep
var Blogpost = new Schema({
story: 'String',
comments: [{type: ObjectId, ref:'comment', unique: true}]
});
var Comment = new Schema({
comment: 'String',
upvotes: [{type: ObjectId, ref:'user', unique: true}]
});