전체 글

기타

git 관리

이름 변경을 클릭해서 새 프랜치명을 feature/Added_a_5th_period_to_the_timetable => finish-work/Added_a_5th_period_to_the_timetable로 해주면 finish-work 브랜치로 이동하게 됨. 여기 까지는 로컬에서만 작업한거니까 원격에도 적용해줘야 함. git push origin finish-work/ Added_a_5th_period_to_the_timetable 해주고 정리도 해줘야함. git push origin --delete feature/ Added_a_5th_period_to_the_timetable

Claude

statusline 커스텀

1. HUD 설정 파일 C:\Users\FAMILY\.claude\.omc\hud-config.json HUD 레이아웃, 표시 요소, 프리셋 설정 2. Claude Code 설정 C:\Users\FAMILY\.claude\settings.json statusLine 명령어 등록, alwaysThinkingEnabled 설정 3. 수정된 HUD 렌더러 (커스텀 레이아웃) C:\Users\FAMILY\.claude\plugins\cache\omc\oh-my-claudecode\4.0.7\dist\hud\render.js Line 1 배치 순서 변경 (skills→plugins→permission→thinking→model) 4. 수정된 Context 엘리먼트 (색상 통일) C:\Users\FAMILY\.cl..

Claude

oh-my-claudecode 간단 설치

/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode/plugin install oh-my-claudecode /oh-my-claudecode:omc-setup

Windows Driver/Kernel & Driver 개발

WDF VS WDM 차이점 및 비교

WDF의 추상화로 인한 제한.1. IRP 직접 제어 제한// WDM - IRP 완전 제어 가능 IoCompleteRequest(Irp, IO_NO_INCREMENT); Irp->IoStatus.Status = STATUS_SUCCESS; // WDF - 프레임워크가 IRP 생명주기 관리 // 직접 조작 제한됨 2. 컨텍스트 구조// WDF - 프레임워크가 정한 방식으로만 컨텍스트 연결 WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&attributes, DEVICE_CONTEXT); // WDM - DeviceExtension 자유롭게 구조화 deviceObject->DeviceExtension = 원하는_구조체; 3. 제한되는 영역항목WDFWDMIRP 직접 조작제한적완전 자유인..

lwj789
운동하는 개발자