분류 전체보기
-
Rectangle 키보드 macOS 업데이트 이후 작동하지 않을 때 해결 방법Configuration 2025. 4. 2. 09:35
최근 macOS 업데이트 이후, 평소 잘 쓰던 창 관리 앱 Rectangle이 제대로 작동하지 않는 문제가 발생했습니다.저도 평소에 Rectangle을 애용하고 있어 꽤나 불편함을 느꼈기에, 해결 방법을 찾게 되어 공유합니다.문제 상황창을 화면 가장자리로 드래그해도 자동 정렬이 되지 않음키보드 단축키로 창을 정렬하는 기능도 반응 없음메뉴바에서 옵션을 선택해도 창이 움직이지 않음 즉, 어플은 정상적으로 실행 되나, 아무런 동작도 하지 않는 상태입니다.원인macOS에서 앱이 창의 위치나 크기를 조정하려면 손쉬운 사용(Accessibility) 권한이 필요합니다.macOS 업데이트 이후 이 권한 설정이 초기화되었거나, 내부적으로 충돌이 발생해 Rectangle이 더 이상 시스템 제어를 할 수 없게 된 것으로 ..
-
동사 + of 구조영어 2025. 4. 2. 08:47
https://env.t3.gg/docs/introduction 해당 글을 읽다 be + of 가 잘 해석되지 않아 탐구하고 작성한 글입니다ㅏ. 영어에서 “동사 + of” 구조는 자주 등장하고, 동사에 따라 뉘앙스가 크게 달라집니다.이 구조가 나타내는 기능/뉘앙스별 분류, 자주 쓰이는 동사 예시, 그리고 해석과 느낌의 차이까지 자세히 알아봅시다. 🧠 1. “동사 + of” 구조는 어떤 뉘앙스를 가지는가? “of”는 기본적으로 소속, 분리, 특성, 출처를 나타내는 전치사입니다.따라서 동사와 결합되면 다음과 같은 뉘앙스를 가질 수 있습니다:뉘앙스설명예시 동사소속/특성어떤 성질이나 속성을 갖다be, speak, think분리/제거어떤 것에서 떨어져 나가다dispose, rid, die출처/정보어떤 것으로부터..
-
Neo Vim 맥북 세팅 - 5분 예상Configuration 2024. 4. 26. 12:02
referencePrequesite 사전 준비먼저 많은 nvim library에 사용되는 python을 설치해줍니다.## 설치되어있는지 확인python3 --version## 정상적으로 brew를 설치했다면, 자동으로 설치되어있을겁니다.## Python 3.9.6(Option & recommend) oh-my-zsh 설치 - zshrc 관리 및 plugin관리또한 용이하기에 사용을 추천드립니다.(옵션, 필수 아님)https://ohmyz.sh/#installPynvim 설치 - 많은 nvim plugin들이 pynvim dependency에 의존하고있기 때문입니다.python3 -m pip install -U pynvimpython-lsp-server 설치 - (pylsp) is a Python Lang..
-
zed 편집기 VisualStudioCode 단축키 가져오기Configuration 2024. 3. 21. 09:37
1. zed 편집기를 실행한다.2. command + shift + p 를 입력한 뒤, key map (default 말고)를 검색해 사용자 지정 key map file을 열어준다.3. 아래 파일을 붙여 넣기하고 저장한다.[ { "context": "Workspace", "bindings": { "cmd-b": "workspace::ToggleLeftDock", "cmd-r": "workspace::ToggleRightDock", "alt-cmd-y": "workspace::CloseAllDocks", "cmd-shift-f": "pane::DeploySearch", "cmd-k cmd-s": "zed::OpenKeymap",..
-
React-Native Sentry errorReact-Native 2024. 3. 11. 10:21
발단 react-native build시 자꾸 에러 생김 xcode, command-line을 통한 빌드에도 지속적인 에러 발생 flipper, herems를 자꾸 언급하며 에러 발생 -> 이게 사실 미치게한다. 원인 분석 react-native version 이슈인가? ios min sdk version testing react-native version testing herems, flipper... 하면 떠오르는 개노답 FBSDK 3형제 firebase sdk version testing herems disabled 처리 및 flipper disabled 처리 AppDelegate.mm 파일 firebase SDK 및 app instance debugging cocoapods? gem version..
-
zed 편집기 터미널 단축키 등록하기 ("zed" code editor alias for MacOS)Configuration 2024. 3. 5. 16:13
본 글은 Mac OS, zsh shell 기준으로 작성되었음을 알린다.Note: This article is written based on Mac OS and zsh shell.`ZED` 코드 편집기를 설치해준다.Install the ZED code editor.[install Zed for Mac OS](https://zed.dev/downloadiTerms2 또는 Terminal을 연 뒤, 다음과 같이 입력한다.Open iTerm2 or Terminal, then enter the following: # Bash Shell인 경우, vi ~/.bashrc # zsh shell 인경우, or vi ~/.zshrc모르겠다면 echo $SHELL 명..
-
nest.js [File Upload] - express adapter error fixJavascript/Nest.js 2024. 2. 1. 16:17
error occurred after I've installed the @types/multer lib in nest.js project -> 그 nestjs 프로젝트에서 multer 연동하다가 에러 발생하신분들을 위해 빠르게 메모 남겨봅니다.. -> 아 참 그리고, nest.js multer library는 express (default nest.js server module)이 아닌 fastify user들을 위한 라이브러리가 아니니 혹여나 fastify setting을 따로 하신분들을 위한 글은 아님을 유의해주세요. displayed error: $ yarn build yarn run v1.22.21 $ rimraf dist $ nest build node_modules/@nestjs/pla..
-
docker http: invalid Host header 에러Cloud Services/Docker 2024. 2. 1. 15:03
발생 시점 sudo docker compose up --build # 혹은 docker compose 명령어를 Ubuntu 20 + 버전에서 입력하였을 경우 발생 결과값 (ERROR)[+] Building 17.1s (1/1) FINISHED => ERROR [internal] booting buildkit 17.1s => => pulling image moby/buildkit:buildx-stable-1 2.4s => => creating container buildx_buildkit_default 14.7s [internal] booting buildkit: #0 17.14 time="2023-10-31T12:33:22Z" level=warning msg="using host network as th..