인간의 감정과 행동을 리버스 엔지니어링 해보자 1편 - 나는 왜 '이해'가 있어야만 움직일까 (완벽한 원시인을 읽고)#13
Merged
toothlessdev merged 1 commit intomainfrom Apr 12, 2026
Merged
인간의 감정과 행동을 리버스 엔지니어링 해보자 1편 - 나는 왜 '이해'가 있어야만 움직일까 (완벽한 원시인을 읽고)#13toothlessdev merged 1 commit intomainfrom
toothlessdev merged 1 commit intomainfrom
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces a new blog post titled 'Reverse Engineering Human Emotions and Behavior Part 1' along with its corresponding entry in the posts data file. The review identified several minor issues including a violation of the repository's style guide regarding the date format in the frontmatter, multiple typos in the Korean text, and redundant double quotes in the markdown content.
| @@ -0,0 +1,206 @@ | |||
| --- | |||
| title: "인간의 감정과 행동을 리버스 엔지니어링 해보자 1편 - 나는 왜 '이해'가 있어야만 움직일까 (완벽한 원시인을 읽고)" | |||
| createdAt: 2026-04-12 | |||
There was a problem hiding this comment.
Repository Style Guide (34-43행)에 명시된 형식을 준수하여 createdAt 값을 큰따옴표로 감싸야 합니다. 따옴표를 생략하면 YAML 파서가 이를 날짜 객체로 인식하여, data/posts.json 생성 시 ISO 8601 형식의 긴 문자열("2026-04-12T00:00:00.000Z")로 변환되어 다른 포스트들과의 데이터 일관성이 깨질 수 있습니다.
Suggested change
| createdAt: 2026-04-12 | |
| createdAt: "2026-04-12" |
References
- 모든 포스트는 지정된 frontmatter 형식을 준수해야 하며, createdAt은 큰따옴표로 감싸진 날짜 문자열 형식이어야 합니다. (link)
| 생각은 계속 돌았는데, | ||
| 감정은 정리가 안 됐다. | ||
|
|
||
| 그래서 나는 이걸 하나의 **버그**로 보기 시작햇다 |
| 그런데 가만히 보니, 나는 감정이나 인간관계도 비슷하게 보고 있었다 | ||
|
|
||
| > 감정이 생기면 그냥 느끼기보다 "왜 이런 반응이 나오지?"를 먼저 생각했고 <br/> | ||
| > 사람 행동도 "패턴" 이나 ""알고리즘" 처럼 해석하려고 했다 <br/> |
|
|
||
| ## 👶 돌이켜보니 금쪽이 시절에도 비슷했다 | ||
|
|
||
| 어렸을 때 부모님께서 자주 하시던 말들이 있었따 |
| > 🤔 스마트폰 속 부정적인 정보<br/> | ||
| > 🦍 **주변에 위협이 가득하고, 적대적, 나보다 강한 경쟁자들이 많다. 스트레스 호르몬을 분비할게** | ||
|
|
||
| 즉, 그냥 ""좋은 습관"이 아니라 |
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.
인간의 감정과 행동을 리버스 엔지니어링 해보자 1편 - 나는 왜 '이해'가 있어야만 움직일까 (완벽한 원시인을 읽고)