본문 바로가기

...

(5)
맥북 초기화 오류 작업을 완료할 수 없습니다.(pkdownloaderror 오류 8.) 맥북프로 초기화하다 오류를 만나 해결방법을 기록함 오류내용 작업을 완료할 수 없습니다.(pkdownloaderror 오류 8.) 해결방법 랩탑 실행 > 시프트 + 옵션 + 커멘트 + R > 맥 OS 다시설치하기 필요하다면 하드 지우고 다시 생성 후 진행
소스트리(SourceTree) fatal: Authentication failed for 에러 대처법 상황 : 맥북 소스트리에서 커밋 후 푸쉬할때 'fatal: Authentication failed for...' 이라는 에러 발생 대처방법 : 커멘드 + 스페이스바 > 키체인 접근.app 실행 > 검색 SourceTree > 해당 목록 전부 삭제 키체인에 저장된 SourceTree 데이터 삭제 후 다시 커밋하면 비밀번호 재입력이 나오고 입력하면 정상 작동됨
Tailwindcss Setup () nodejs, gulp npm initpackage.json 파일 수정 { "name": "airbnb-clone", "version": "1.0.0", "description": "Python, Django, Tailwind ...", "repository": { "type": "git", "url": "git+https://github.com/3chamchi/airbnb-clone.git" }, "homepage": "https://github.com/3chamchi/airbnb-clone#readme" } 패키지 설치 npm install gulp gulp-postcss gulp-sass gulp-csso node-sass -D npm install tailwindcss -D.gitignore..
Nodejs Tutorial 노드js 시작하기 Nodejs Tutorial 노드js 시작하기 (nodejs 설치) https://nodejs.org/en/ .LTS 장기적 지원 버전 -> 개발, 배포에 사용 .장기적 지원x 최신 기능 사용 가능 -> 최신 기능 사전 학습 nodejs, npm 설치확인 node -v npm -v(개발툴 설치) https://code.visualstudio.com/ EXTENSIONS(확장 모듈) 설치 .StandardJS - JavaScript Standard Style .ES7 React/Redux/GraphQL/React-Native snippets (Node.js핵심개념) I/O : Input Output 비동기 동기 Non-blocking blocking (npm, npx) REPL - 커멘트(cmd) Node..
Java - 두 좌표간 거리, 방위각 구하기 + 좌표 이동 두 좌표간 거리 측정 /** * 두 좌표 거리 구하기 * @param latitude1 Start latitude * @param longitude1 Start longitude * @param latitude2 End latitude * @param longitude2 End longitude * @return Distance(m) */ public static double geoDistance(double latitude1, double longitude1, double latitude2, double longitude2) { DecimalFormat df = new DecimalFormat("#.#####"); if ((latitude1 == latitude2) && (longitude1 == lo..