error 5

<플러터: Xcode> Xcode 14.3 빌드 에러

🐛 Xcode 14.3 에러 #1 Could not build the precompiled application for the device. Error (Xcode): File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a Error (Xcode): Linker command failed with exit code 1 (use -v to see invocation) 해결 #1 ios/Podfile에 아래와 같은 코드를 추가했습니다. (추가할 위치 파악을 위해, 기존 코드도 포함) post_install do |installer| i..

<GitHub> Error: unexpected end of file from server..

🎸 unexpected end of file from server... 어제까지 잘되던 GitHub 코드 푸시가 되지 않았습니다. 에러 내용은 대략 아래와 같았습니다. invocation failed unexpected end of file from server java.lang.runtimeexception:... git push caused by: java.net.socketexception: unexpected end of file from server... Invalidate Caches... 안드로이드 스튜디오 > File > Invalidate Caches... 기능으로 캐시를 정리하니 정상적으로 푸시되었습니다. https://stackoverflow.com/questions/71535668/..

<TIL> fileName.ts:24:12, NPMCompare.com

🧭 에러코드에서 두번째 숫자의 의미 에러가 발생하면 "fileName.ts:24:12"와 같이 에러가 발생한 위치를 알려줍니다. 첫번째(24)는 에러가 발생한 줄이라고 알았지만, 두번째(12)는 에러가 발생한 컬럼인 것을 이제야 알았습니다. https://stackoverflow.com/questions/16366207/what-does-the-2nd-number-after-the-colon-in-a-node-js-stack-trace-line-mean What does the 2nd number after the colon in a node.js stack trace line mean? In a node.js stack trace there are always two numbers, the line n..

클래스/└ TIL 2022.05.15

<TIL> 오늘 만난 에러들

🧭 [ExceptionHandler] Nest can't resolve dependencies of the ... 에러 해당 기능의 Module에서 의존성을 설정하면 해결됩니다. MissingPrimaryColumnError: ... 에러 @PrimaryColumn을 추가하면 해결됩니다. UpdateValuesMissingError: ... 에러 DB의 데이터를 업데이트하는데 값이 제대로 들어가지 않아서 발생하는 에러입니다. DB에 넣을 데이터를 DB에서 찾아오는데 await를 누락했습니다. await만 추가하니 정상 작동하였습니다.

클래스/└ TIL 2022.05.11

<CSS> TIL: 텍스트 수정(회전, 맞춤, 배경), 화면 높이 에러

CSS 텍스트 회전 1. display 속성값을 inline-block 으로 설정한다(inline 요소는 회전 불가능). 2. transform 속성값으로 rotate 값을 대입한다(rotate === rotateZ). span { display: inline-block; transform: rotate(180deg); } CSS 문제 해결 1. Error: 화면 높이 🆖 현황 - height 속성을 100%로 맞추었지만 해당 요소의 컨테이너 밖으로 넘치게 되었음 🔑 해결방안 - header의 높이만큼 padding-bottom 속성값을 부여 .window { background-color: white; width: 80%; height: 80%; border-radius: 8px; padding-bot..

무기 2021.11.08