일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- allow_anonymouse
- listener 1883
- AntDesign
- vite
- setInterval clear
- datagridview 직접입력
- mosquitto
- pm2 상태 확인
- 데이터테이블 데이터 넣기
- pm2 시작
- invalid data
- pm2 설치
- setInterval 중지
- timepicker
- DatePicker
- map이 undefined가 뜰 때
- setInterval 정지
- pm2
- DataGridView 직접 입력
- mosquitto.conf
- tailwind
- pm2 확인
- html #select #option #multiple
- 서버동기화
- 1883
- 맥 어드레스
- setInterval 외부 정지
- c# datagridview 데이터 넣기
- mySQL_Replication
- react
- Today
- Total
목록전체 글 (749)
개발 노트
레지스트리 설정 확인npm config get registry 공식레지스트리가 아닐시 변경npm config set registry https://registry.npmjs.org/ 캐시제거npm cache clean --force 노드모듈 설치npm i
1. 설치 가능한 패키지 검색$ apt list 패키지명$ apt list zip* 2. 설치된 패키지 검색$ apt --installed list$ apt --installed list *jdk* 3. 설치된 패키지 삭제$ apt remove openjdk*# 완전삭제$ sudo apt --purge remove [패키지이름]# or$ sudo purge remove [패키지이름] 4. 관련 패키지 삭제# 패키지검색$ dpkg --list | grep [패키지 이름]# 패키지 삭제$ sudo dpkg --purge [패키지 이름] https://velog.io/@coral2cola/Ubuntu-%ED%8C%A8%ED%82%A4%EC%A7%80-%EC%82%AD%EC%A0%9C%ED%95%98%EA%B8..
unzip과 zip사용시 분할압축된 파일을 zip으로 다시 합치고 unzip해야하므로 번거로움 7z 설치# ubuntusudo apt install p7zip-full 7z로 압축 해제7za x test.zip 특정 디렉토리에 압축해제할때7za x test.zip o.test https://iambeginnerdeveloper.tistory.com/175 Ubuntu | .7z 파일 압축 해제하기, Ubuntu .7z file unzip | 리눅스, p7zip(7-Zip) 사용이때까지 마주한 압축 파일 포맷은 .zip과 .tar이 전부였는데 이번에 .7z라는 파일을 마주하게 되었다. p7zip는 리눅스에서 사용할 수 있는 7-Zip이며 압축률이 높아서 zip이나 tgz보다 작은 파일을 만iambegin..
git은 단일 파일이 100mb를 초과하는경우에는 일반 commit으로는 진행이 어렵다이때 무료로 2gb까지 지원하는 git lfs를 설치 및 사용하면 파일 업로드가 가능하다 https://newsight.tistory.com/330 Git LFS (Large File Storage) 사용하기Git의 용량제한과 LFS기본적으로 git은 여러개의 작은 소스코드 파일들을 위한 버전 컨트롤 시스템(VCS)이다. 따라서 Github의 경우 50Mb부터 Warning이 표시되고, 100Mb부터는 push시 Error가 발생한다. 그럼newsight.tistory.comhttps://miiingo.tistory.com/333 [Git] Ubuntu 16.04에서 Git LFS(Large File Storage) 사..

https://github.com/vercel/next.js/discussions/38477 Nextjs project is very slow to save file in VS Code · vercel next.js · Discussion #38477I am building the project with nextjs and antd, in VS Code it is very slow every time I save the file. I don't know why this is happening, does anyone know how to fix this?github.com 문제 원인:Next js사용 중 자동완성 및 복사 붙여넣기, 포맷팅의 속도가 느려지는 현상 발생 해결:vscode의 extension과..