Skip to content

Commit 06d5088

Browse files
fredrivettclaude
andauthored
Add Substack blog post and Conductor setup (#1)
- Import "Truth or comfort" blog post from Substack (Oct 15, 2022) - Add conductor.json with setup and run scripts for Conductor integration - Update package.json dev/start scripts to support CONDUCTOR_PORT environment variable 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent f4e3210 commit 06d5088

3 files changed

Lines changed: 59 additions & 2 deletions

File tree

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: Truth or comfort
3+
description: What are you optimising for? If you had to pick one, which would you choose?
4+
date: "2022-10-15"
5+
---
6+
7+
What are you optimising for?
8+
9+
If you had to pick one, which would you choose?
10+
11+
Truth or comfort?
12+
13+
Will you open yourself to the reality of the situation and embrace it, or wrap yourself in your duvet and hide?
14+
15+
I've come to believe that the raw, honest answer to this question can accurately predict most of how our lives will go.
16+
17+
Choose truth, and accept pain, accept reality not aligning with our perfect little world, expect hard work as a result.
18+
19+
Choose comfort, and accept atrophy, accept nice stories that make us feel warm and fuzzy, but don't correlate to reality, expect future pain as a result.
20+
21+
This dichotomy shows itself in every area of our lives.
22+
23+
Will we have the hard conversation in that relationship, or will we compromise and let it slide?
24+
25+
Will we question the worldview we were given as a child, or seek answers that confirm what we want to be true, regardless of whether it is?
26+
27+
Will we look ourselves in the mirror, and acknowledge where our health is really at?
28+
29+
The truth seeker knows the trade off.
30+
31+
It feels the lure of comfort.
32+
33+
And truth be told, it misses it, sometimes.
34+
35+
Not the path it leads you on, which is towards destruction, towards entropy.
36+
37+
But the in-the-moment feeling, the self-deception that rolling over in bed, hitting snooze and missing that work out won't really have an impact on your life.
38+
39+
And sure, small blips aren't that consequential, we all have ups and downs in life. Missing one workout won't make any noticeable difference.
40+
41+
It's not about playing the perfect game. Not every season is one of "going hard".
42+
43+
But truth and comfort lie at opposite ends of the spectrum, like the north and south pole.
44+
45+
And us, like magnets, will be pulled towards that which we crave the most.
46+
47+
Our mindset will dictate what we gravitate towards.
48+
49+
Truth or comfort.
50+
51+
Which one will you choose?

conductor.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"scripts": {
3+
"setup": "if [ -n \"${CONDUCTOR_ROOT_PATH:-}\" ] && [ -f \"$CONDUCTOR_ROOT_PATH/.env.local\" ]; then ln -sf \"$CONDUCTOR_ROOT_PATH/.env.local\" .env.local; else echo \"Missing CONDUCTOR_ROOT_PATH/.env.local; skipping link\"; fi && yarn install",
4+
"run": "yarn dev"
5+
}
6+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"node": ">=22 <23"
66
},
77
"scripts": {
8-
"dev": "next dev -p 3100",
8+
"dev": "next dev -p ${CONDUCTOR_PORT:-3100}",
99
"build": "next build",
10-
"start": "next start",
10+
"start": "next start ${CONDUCTOR_PORT:-3100}",
1111
"build-stats": "cross-env ANALYZE=true yarn build",
1212
"export": "next export",
1313
"build-prod": "run-s clean build export",

0 commit comments

Comments
 (0)