일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mapreduce
- window
- Python
- NPM
- xPlatform
- es6
- SQL
- table
- 공정능력
- Eclipse
- JavaScript
- Android
- SPC
- vaadin
- tomcat
- 보조정렬
- R
- MSSQL
- Java
- Kotlin
- IntelliJ
- Sqoop
- mybatis
- Spring
- SSL
- GIT
- hadoop
- plugin
- Express
- react
- Today
- Total
목록분류 전체보기 (655)
DBILITY
package 설치부터 대충 정리해 보자. PS C:\Dev64\workspace\project> npm install react-router-dom@6.2.1 PS C:\Dev64\workspace\project> npm ls project@0.1.0 C:\Dev64\workspace\project +-- @testing-library/jest-dom@5.16.2 +-- @testing-library/react@12.1.2 +-- @testing-library/user-event@13.5.0 +-- bootstrap@4.6.0 +-- react-bootstrap@1.6.4 +-- react-dom@17.0.2 +-- react-redux@7.2.6 +-- react-router-dom@6.2.1 +--..
https://github.com/KhaosArbiter/modern-react-qr-reader GitHub - KhaosArbiter/modern-react-qr-reader: An easy to implement drop in React Component for QR Code Scanning using mobile pho An easy to implement drop in React Component for QR Code Scanning using mobile phones. - GitHub - KhaosArbiter/modern-react-qr-reader: An easy to implement drop in React Component for QR Code Scann... github.com re..
이거 보고 광고 한번 안 누른 이는 삼대가 재수가 없을지어다!ㅋㅋ function grdList_onchar(obj:Grid, e:GridEditCharEventInfo) { if(e.col==3){ // 3번 컬럼에 대해서 //trace(e.chartext); var objRegExp = new RegExp("[0-9a-zA-Z가-힣ㅎ\-]", "g"); //숫자, 영문 대문자와 한글,하이픈(-) 만 입력받음 var objResult = objRegExp.exec(e.chartext); if( objResult ){ e.chartext = e.chartext.toUpperCase(); // 대문자로 변경 return true; }else{ return false; } } else { return tru..
https://github.com/cozmo/jsQR GitHub - cozmo/jsQR: A pure javascript QR code reading library. This library takes in raw images and will locate, extract and pa A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within. - GitHub - cozmo/jsQR: A pure javascript QR code reading lib... github.com
project생성 후 .idea를 제외하기 위해 .gitignore에 추가해도 동작이 이상할 때가 있었다. 다음과 같이 조치하였다. 물론 구글링을 통해 알게 되었음. git rm -r --cached . git add . git commit -m "gitignore reconfigure"