Skip to content

Commit 9e39867

Browse files
committed
Adds word cloud regeneration in precommit hook
1 parent 544d012 commit 9e39867

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

_posts/2016-06-22-the-bungsu-story---some-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tags:
1010
- Indonesia
1111
---
1212

13-
About six months ago I got home, from the adventure of our life time in Indonesia. At the time I was actually feeling very underwhelmed and that we've failed in our work there.
13+
About six months ago I got home from the adventure of our life time in Indonesia. At the time I was actually feeling very underwhelmed and that we've failed in our work there.
1414

1515
But the more I think about it and the more I [speak and write](https://www.marcusoft.net/tags/#Indonesia) about our experiences there, and especially the mind blowing transformation we led in Rumah Sakit Bungsu - the more I realize that this is an once in a life time thing that have happened.
1616

_posts/2025-08-04-ai-scare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Developers who combine technical skill with product thinking will become even mo
7171

7272
## Expressing what we want
7373

74-
As I wrote, and as, [described better here](https://youtu.be/MUol_5xvFTI?si=9KeNRTS0T6Tkao2D) natural language is just too vague to describe how we want an application to work. Even on an outcome oriented level.
74+
As I wrote, and as [described better here](https://youtu.be/MUol_5xvFTI?si=9KeNRTS0T6Tkao2D) natural language is just too vague to describe how we want an application to work. Even on an outcome oriented level.
7575

7676
A bit more formality is needed to express what we want, something like an Domain Specific Language (DSL) for testing like [Gherkin](https://cucumber.io/docs/gherkin/), might be a way to ensure that we get closer to what we want. But also that we get some way to verify what was built actually does what was expected.
7777

scripts/create_wordcloud_precommit.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
set -euo pipefail
44

5-
65
repo_root=$(git rev-parse --show-toplevel)
76
YEARS=$(git diff --cached --name-only \
87
| grep '^_posts/' \

scripts/git-hooks/pre-commit

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ if [ $SPELL_STATUS -ne 0 ] || [ $LINT_STATUS -ne 0 ]; then
1616
exit 1
1717
fi
1818

19+
# Regenerate wordclouds, if needed
1920
bash ./scripts/create_wordcloud_precommit.sh
2021

2122
echo "✅ All pre-commit checks passed."
2223

23-
exit 1
24+
exit 0

0 commit comments

Comments
 (0)