분류 전체보기 132

크롤링 정책 확인하는 방법

https://velog.io/@yunhuiii/TIL-%ED%81%AC%EB%A1%A4%EB%A7%81-robots.txt-%EC%82%AC%EC%9D%B4%ED%8A%B8-%ED%81%AC%EB%A1%A4%EB%A7%81-%EC%A0%95%EC%B1%85 TIL | 크롤링 / robots.txt / 사이트 크롤링 정책 웹은 매일 같이 많은 정보들이 쏟아지고 있기 때문에 누군가가 검색해서 찾아볼 수 있도록 저장하고 관리할 수 있도록 하는 게 크롤링이고 소프트웨어로 만든게 크롤러다 ex) google - 웹 페이지를 velog.io

카테고리 없음 2023.07.19

[typescript] mac에서 설치 오류 시 sudo npm install -g typescript

sudo npm install -g typescript https://stackoverflow.com/questions/51116803/cant-install-typescript-on-macos-terminal-error Can't install TypeScript on MacOS - Terminal Error I have Visual Studio Code on my Mac and want to install TypeScript for Angular. I already previously installed Node.js or Git I think. This command from the TypeScript website should install TypeSc... stackoverflow.com bole..

카테고리 없음 2023.07.17

[mysql] 비밀번호 초기 설정 시 에러 mysql> create user root@localhost identified by 비밀번호;ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to u..

비밀번호 초기 설정 시에 기존에 하던대로 이렇게 입력했는데 synteax error가 발생했다. create user root@localhost identified by 비밀번호; 그래서 create 말고 alter로 입력해봤는데도 안된다. ALTER USER root@localhost IDENTIFIED BY 0000; 그래서 mysql 문서에서 찾아서 아래와 같이 입력하니 정상작동한다. mysql 8.0 이후로 설정 방법이 바뀐듯하다. SET PASSWORD FOR 'jeffrey'@'localhost' = 'auth_string'; https://dev.mysql.com/doc/refman/8.0/en/set-password.html MySQL :: MySQL 8.0 Reference Manual ..

카테고리 없음 2023.07.14

[mysql] mac에서 workbench 설치 시 에러

이전 버전으로 다운그레이드 다운로드 Downgrade to 8.0.31: https://downloads.mysql.com/archives/workbench/ https://developer.apple.com/forums/thread/724378 MySql workbench is crashing | Apple Developer Forums As per the suggestions above, I was facing the same issue for Workbench version 8.0.32. Downgrading to the previous version 8.0.31 did the trick for me. I'm using an M1 macbook pro, MacOS version 13.2.1 deve..

카테고리 없음 2023.07.14