Skip to content

Commit a5a61cf

Browse files
Expand to 10-step discernment framework
- Add Step 4: The Heart (motives examination) with Ps 139, Jas 4:3, Mt 6:33 - Add Step 10: The Glory of God (doxological capstone) with 1 Cor 10:31, Col 3:17, Mt 5:16 - Re-number spirit→05, counsel→06, circumstances→07, trust→08, obedience→09 - Replace Isaiah 30:21 + 2 Cor 2:12-13 in circumstances with Acts 16:6-10 - Replace 1 Thess 4:3 in obedience with James 1:22 (remove verse repetition) - Change DAILY_VERSE to Proverbs 3:5-6 - Update home section heading to "A 10-Step Discernment Path" with intro copy - Update hero button to "Begin the 10-step guide" - Fix scroll: smooth scroll on section change, remove conditional guard - Add missing CSS: hero-verse, new-decision-link, reset-modal, foundation-section, summary components, peace-reflection - Fix scripture-card padding (0 → 16px for direct button element) - Fix App.jsx: remove orphaned lines from previous incomplete edit
1 parent 2976e14 commit a5a61cf

12 files changed

Lines changed: 1036 additions & 169 deletions

File tree

.venv/bin/python

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python3

.venv/bin/python3

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/usr/bin/python3

.venv/bin/python3.12

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python3

.venv/lib64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lib

.venv/pyvenv.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
home = /usr/bin
2+
include-system-site-packages = false
3+
version = 3.12.3
4+
executable = /usr/bin/python3.12
5+
command = /usr/bin/python3 -m venv /workspaces/hiswillguide/.venv

fix.ipynb

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"id": "ccdcabb9",
7+
"metadata": {},
8+
"outputs": [],
9+
"source": [
10+
"\n",
11+
"# Fix App.jsx — remove orphaned lines at end of file\n",
12+
"path = '/workspaces/hiswillguide/src/App.jsx'\n",
13+
"with open(path, 'r', encoding='utf-8') as f:\n",
14+
" lines = f.readlines()\n",
15+
"\n",
16+
"print(f\"Total lines before fix: {len(lines)}\")\n",
17+
"print(\"Last 10 lines:\")\n",
18+
"for i, line in enumerate(lines[-10:], start=len(lines)-9):\n",
19+
" print(f\" {i}: {repr(line)}\")\n",
20+
"\n",
21+
"# Truncate to 1011 lines\n",
22+
"lines = lines[:1011]\n",
23+
"with open(path, 'w', encoding='utf-8') as f:\n",
24+
" f.writelines(lines)\n",
25+
"\n",
26+
"print(f\"\\nDone. File now has {len(lines)} lines.\")\n",
27+
"print(\"Last line:\", repr(lines[-1]))\n"
28+
]
29+
}
30+
],
31+
"metadata": {
32+
"kernelspec": {
33+
"display_name": ".venv (3.12.3)",
34+
"language": "python",
35+
"name": "python3"
36+
},
37+
"language_info": {
38+
"name": "python",
39+
"version": "3.12.3"
40+
}
41+
},
42+
"nbformat": 4,
43+
"nbformat_minor": 5
44+
}

fix_app.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python3
2+
import os
3+
4+
path = 'src/App.jsx'
5+
lines = open(path, encoding='utf-8').readlines()
6+
print(f'Total lines: {len(lines)}')
7+
print(f'Line 1011: {repr(lines[1010])}')
8+
print(f'Line 1012: {repr(lines[1011])}')
9+
# Keep only up to line 1011 (index 1010, inclusive)
10+
clean = lines[:1011]
11+
open(path, 'w', encoding='utf-8').writelines(clean)
12+
print(f'Written {len(clean)} lines')
13+
print(f'Last line: {repr(clean[-1])}')

fix_orphan.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import subprocess, sys
2+
with open('/workspaces/hiswillguide/src/App.jsx', 'r', encoding='utf-8') as f:
3+
lines = f.readlines()
4+
with open('/workspaces/hiswillguide/src/App.jsx', 'w', encoding='utf-8') as f:
5+
f.writelines(lines[:1011])
6+
print(f'Trimmed from {len(lines)} lines to 1011 lines')

0 commit comments

Comments
 (0)