Add blog post: Thinking in Notes#4
Closed
noobnooc wants to merge 9 commits into
Closed
Conversation
A new blog post exploring how note-taking serves as a thinking tool, not just storage. Covers cognitive offloading, externalization of thoughts, and how writing clarifies ideas. Available in 8 languages: en, zh, es, de, fr, it, ja, ko
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
🚀 Preview deployed: https://sparkmemos-pr-4.dippod.workers.dev |
There was a problem hiding this comment.
Pull request overview
This PR adds a new multi-language blog post to the Velite-powered content pipeline, but it also includes unrelated changes to the deployment workflow and README.
Changes:
- Add the “Thinking in Notes” post in 8 languages under
blog/posts/2026-03-13-thinking-in-notes/. - Update the GitHub Actions deploy workflow to deploy PR previews, comment preview links, and clean up on PR close.
- Modify
README.md(appears to be an unrelated/accidental change).
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 12 comments.
Show a summary per file
| File | Description |
|---|---|
| blog/posts/2026-03-13-thinking-in-notes/en.md | Adds English version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/zh.md | Adds Chinese version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/es.md | Adds Spanish version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/de.md | Adds German version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/fr.md | Adds French version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/it.md | Adds Italian version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/ja.md | Adds Japanese version of the new post. |
| blog/posts/2026-03-13-thinking-in-notes/ko.md | Adds Korean version of the new post. |
| .github/workflows/deploy.yml | Implements PR preview deploy + PR commenting + cleanup on close. |
| README.md | Adds a stray # Test line at the end. |
| - 인지적 내려놓기 | ||
| - 창조적 사고 | ||
| - 아이디어 발전 | ||
| - 스팹 Memmos |
|
|
||
| Quand vous avez une idée, vous faites seulement *croire* que vous la comprenez. Le moment où vous essayez de la fixer—l'écrire, l'expliquer à quelqu'un, prendre des décisions à son sujet—c'est là que des lacunes apparaissent. Des ambiguïtés que vous n'aviez pas remarquées. Des connexions que vous pensiez évidentes mais qui ne le sont pas. Une logique qui semblait infaillible mais qui s'effondre sous le regard. | ||
|
|
||
| C'est pourquoi prendre des notes n'est pas seulement enregistrer. C'est *révél*. |
|
|
||
| Quando scrivi qualcosa, si attivano diverse cose: | ||
|
|
||
| **Esternalizzazione.** Spostare un pensiero fuori dalla tua testa crea distanza. Quella distanza ti permette di guardare il pensiero invece di simply *averlo*. È la differenza tra essere dentro un labirinto e guardare una mappa. |
Comment on lines
14
to
22
| jobs: | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| deployments: write | ||
| issues: write | ||
| pull-requests: write | ||
|
|
| - name: Deploy to Cloudflare (Preview) | ||
| if: github.event_name == 'pull_request' | ||
| run: | | ||
| wrangler deploy --env pr-${{ github.event.pull_request.number }} --legacy-env |
|
|
||
| **外部化。** 考えを頭の外に移動させると距離ができます。その距離があると、その考えを持つ代わりに眺めることができます。迷路の中にいることと、地図を見るの違いです。 | ||
|
|
||
| **明確化。** もやっとしたアイデアは筆記言語の圧力下で崩壊します。「あのプロジェクトをいつかやるべき」は「金曜日までにプロジェクトの草案を完成させる」になる,或者は「あのプロジェクト」が実際には何を意味するかあなたが知らないことを明らかにする。どちらにせよ、何も得たことがある。 |
|
|
||
| Algo extraño sucede: a veces no entiendes realmente una idea hasta que intentas escribirla. | ||
|
|
||
| No se trata de las notas en sí. Se trata de lo que pasa en tu cabeza cuando traduces un pensamiento Difuso en palabras en una pantalla. ¿Ese proceso de traducción? ahí está la magia. |
Comment on lines
7
to
+12
| pull_request: | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| - reopened | ||
| - closed |
Comment on lines
+68
to
+84
| PR_NUM=${{ github.event.pull_request.number }} | ||
| ACCOUNT_ID=${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
| WORKER_NAME="sparkmemos" | ||
|
|
||
| SUBDOMAIN_RESPONSE=$(curl -s -X GET \ | ||
| "https://api.cloudflare.com/client/v4/accounts/${ACCOUNT_ID}/workers/subdomain" \ | ||
| -H "Authorization: Bearer ${{ secrets.CLOUDFLARE_API_TOKEN }}" \ | ||
| -H "Content-Type: application/json") | ||
|
|
||
| ACCOUNT_SUBDOMAIN=$(echo $SUBDOMAIN_RESPONSE | jq -r '.result.subdomain // empty') | ||
|
|
||
| if [ -z "$ACCOUNT_SUBDOMAIN" ]; then | ||
| ACCOUNT_SUBDOMAIN=$ACCOUNT_ID | ||
| fi | ||
|
|
||
| PREVIEW_URL="https://${WORKER_NAME}-pr-${PR_NUM}.${ACCOUNT_SUBDOMAIN}.workers.dev" | ||
|
|
Comment on lines
+148
to
+156
| PR_NUM=${{ github.event.pull_request.number }} | ||
| ACCOUNT_ID=${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
| WORKER_NAME="sparkmemos" | ||
|
|
||
| echo "Cleaning up preview environment for PR #${PR_NUM}" | ||
|
|
||
| RESPONSE=$(curl -s -X DELETE \ | ||
| "https://api.cloudflare.com/client/v4/accounts/${ACCOUNT_ID}/workers/scripts/${WORKER_NAME}/environments/pr-${PR_NUM}" \ | ||
| -H "Authorization: Bearer ${{ secrets.CLOUDFLARE_API_TOKEN }}" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A new blog post exploring how note-taking serves as a thinking tool, not just storage.
Summary
The post discusses how writing ideas down isn't just about storage—it's a thinking process that helps clarify thoughts, make connections, and reduce cognitive load. Includes practical advice for building the habit.
Build passes successfully.