Skip to content

Add blog post: Thinking in Notes#4

Closed
noobnooc wants to merge 9 commits into
mainfrom
blog/thinking-in-notes
Closed

Add blog post: Thinking in Notes#4
noobnooc wants to merge 9 commits into
mainfrom
blog/thinking-in-notes

Conversation

@noobnooc
Copy link
Copy Markdown
Member

A new blog post exploring how note-taking serves as a thinking tool, not just storage.

Summary

  • Post title: "Thinking in Notes" (用笔记思考 / Pensar en Notas / In Notizen Denken / Penser en Notes / Pensare in Note / ノートで考える / 노트로 생각하기)
  • Topics: cognitive offloading, externalization, writing as thinking tool, mental clarity
  • 8 language versions included: en, zh, es, de, fr, it, ja, ko
  • Category: usage (existing)
  • Tags: Usage (existing)

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.

Copilot AI review requested due to automatic review settings March 13, 2026 08:08
@chatgpt-codex-connector
Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

@github-actions
Copy link
Copy Markdown

🚀 Preview deployed: https://sparkmemos-pr-4.dippod.workers.dev

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 }}" \
@noobnooc noobnooc closed this Mar 24, 2026
@noobnooc noobnooc deleted the blog/thinking-in-notes branch March 24, 2026 13:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants