-
Notifications
You must be signed in to change notification settings - Fork 5
스트리트 코더 sprint 9 - 이동현 #658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dhlee3994
wants to merge
3
commits into
main
Choose a base branch
from
dhlee-2026-SC-week3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # 4 ~ 6장 | ||
|
|
||
| ## 내용 | ||
|
|
||
| - 위협 모델링 | ||
| - 위협 모델: 보안 측면에서 무엇이 잘못될 수 있는지를 명확히 이해하는 것 | ||
| - 보안 조치의 우선순위, 비용 최적화, 효율성을 높이기 위함 | ||
| - 소형 위협 모델 | ||
| - 애플리케이션의 자산 | ||
| - 자산을 저장하는 서버: 사용자 그룹별 액세스 가능 여부 파악 | ||
| - 정보 민감성: 정보 유출시 피해의 정도 | ||
| - 리소스에 대한 액세스 경로: DB에 접근 가능한 다른 방법이 있는지, 누가 접근 가능한지 등 | ||
| - 은둔 보안: 임시 방편이지만 **시간을 버는 용도**로는 좋음 | ||
| - 검증된 보안 라이브러리를 사용할 것 | ||
| - **타이밍 공격 방지** | ||
| - : 별것 아니라고 생각되지만 해커들에게 좋은 먹이감이 될 수 있겠네.. | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # 7 ~ 9장 | ||
|
|
||
| ## 논의 | ||
|
|
||
| 저희 회사는 버그 분류를 우선순위 정도로만 하고 있는데, 다른 분들은 어떻게 분류하는지 경험을 이야기하면 좋을 것 같습니다. | ||
|
|
||
| ## 내용 | ||
|
|
||
| - 100ms 이상이면 지연을 느낌 | ||
| - 성능 문제 발생 시, 애플리케이션 최상위 계층부터 시작해 이진 검색 방식으로 문제 위치 파악 | ||
| - 코드 최적화 | ||
| - 효율적인 자료구조 사용 => 검색 성능 개선 | ||
| - 플래그 저장시 문자열 지양 | ||
| - 불리언 평가 최적화 (변수 > 필드 > 속성 > 메서드 호출) | ||
| - CPU 최적화 | ||
| - 데이터 정렬: CPU는 4, 8, 16바이트 단위로 정렬된 데이터를 읽음 | ||
| - 캐시 근접성: 배열이 연결 리스트보다 빠름 | ||
| - 종속성 제거, 분기 예측으로 파이프라이닝 효율 증대 | ||
| - SIMD(Single Instruction Multiple Data) 활용 | ||
| - I/O 및 캐싱 | ||
| - 버퍼링: I/O 작업시 1바이트씩 읽지 말고, 적절한 크기만큼 읽어 시스템 호출 오버헤드 줄이기 | ||
| - 비동기 I/O (async/await): 병렬성을 높이고 리소스 절약 | ||
| - 캐시 활용: 최후의 수단 | ||
| - 수동 잠금(Lock) 주의사항: 잠금 전용 객체를 별도로 할당하여 사용 (제어할 수 없는 외부 코드와 충돌하여 데드락 유발할 수 있기 때문) | ||
| - 버그 분류 (Bug Triage): 우선순위와 심각성 기준으로 분류 (like 아이젠하워 매트릭스) | ||
| - 덤프 다이빙: JVM 진영에서는 `jhsdb` |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'먹이감'은 '먹잇감'의 잘못된 표기입니다. 한글 맞춤법 사이시옷 규정에 따라 '먹잇감'으로 수정하는 것이 좋습니다.