본문 바로가기

전체 글65

[Linux] apt update 오류 (hash sum mismatch) 운영체제 공룡책 강의 시작하려는데 설치부터 문제가 생겼다. sudo apt-get update 명령어 실행시에 hash sum mismatch 에러가 발생 클로드에 의하면 이 오류 발생의 이유는1. 네트워크 연결 문제2. 프록시 또는 캐시 서버 문제3. 로컬 패키지 캐시 손상4. 저장소 미러 동기화 문제 등등 이라고 한다. 클로드가 제안한 해결법으로는 제대로 해결해내지 못했다. 그래서 구글링을 통해 https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1785778 Bug #1785778 “Hash Sum mismatch Ubuntu Server 18.04.1 LTS” : Bugs : apt package : UbuntuHi, I'm getting weird Hash.. 2025. 4. 3.
[webpack.cache.PackFileCacheStrategy/webpack.FileSystemInfo] nextjs14 [webpack.cache.PackFileCacheStrategy/webpack.FileSystemInfo] Resolving '../../../../../../../../.vscode/extensions/wallabyjs.console-ninja-1.0.253/out/buildHook/index' in C:\Users\user\Desktop\2023react\shadcn-table\node_modules\next\dist\compiled\webpack for build dependencies doesn't lead to expected result 'c:\Users\user\.vscode\extensions\wallabyjs.console-ninja-1.0.253\out\buildHook\index.j.. 2023. 11. 9.
There are multiple modules with names that only differ in casing. [git bash] ./node_modules/next/dist/client/components/app-router.js There are multiple modules with names that only differ in casing. 문제발생 노트북으로 공부하던 프로젝트를 깃헙에 올리고 데스크탑으로 클론해서 npm run dev 실행시키니 발생한 오류였다. 문제해결 시도 1. rm -rf .next && rm -rf node_modules 로 새로 설치해보았지만 실패 2. node 버젼 문제같아서 nvm 으로 20.9.0 버젼 설치 후 1번 과정 다시 시도 해보았지만 실패 좀 더 낮은 18.18.2도 동일하게 해보았지만 실패 3. 좀 더 구글링 해보았더니 해결책을 찾았다. https://stackoverflow.com.. 2023. 11. 8.
History api (pushState, replaceState) https://programmers.co.kr/skill_check_assignments/199 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 평소 리액트로만 주고 코딩을 했고 자바스크립트 구현에 익숙하지 않아 공부하기 위해 바닐라 자바스크립트 구현 과제테스트를 풀어보았다. 바닐라 자바스크립트로 SPA를 구현할때 가장 중요한 페이지 라우팅을 구현할 때 필요한 history api를 정리해 보았습니다. 1. History api History api란 history 글로벌 객체를 이용해 브라우저의 세션 히스토리에 대한 접근과 조작 기능을 제공하는 것으로 즉.. 2023. 7. 17.