일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- oracle
- PYTHON MSSQL
- 딥러닝
- MSSQL
- 파이썬
- windows10
- pymssql
- vscode
- scrapy
- Visual Studio Code
- MSSQL PYTHON
- c#
- MX Component
- 자본주의
- sql developer
- rs485
- 오라클
- M2M
- rs422
- 티스토리 초대장
- 크롤링
- 텐서플로우
- matplot
- 윈도우10
- Serial
- tensorflow
- django
- 장고
- MEAN Stack
- Today
- Total
목록분류 전체보기 (666)
안까먹을라고 쓰는 블로그
[참고사이트] https://bangu4.tistory.com/352
프로시저 안에는 여러 개의 쿼리가 있을수 있고, 다른 프로시저를 호출할 수도 있다. 이런 각 부분 마다 아래와 같이 시간과 구분값을 표시할 수 있는 PRINT문을 추가한다. 구분 값은 숫자를 트리 형식으로 하면 확인하기 좋다. Ex) 1.1 1.1.1 1.1.1.1 1.2 1.2.1 PRINT(CONVERT(NVARCHAR(100), GETDATE(), 120) + ' : 1.2') 위의 방법으로 프로시저를 SSMS에서 실행하면, 하단의 결과 값의 "메시지" 부분에 위에 추가한 PRINT문의 값이 표시된다. 각 구분 값의 시간을 확인하여, 어디에서 불필요하게 많은 시간이 소요되는지 확인한다. 이 부분의 쿼리를 수정하여, 성능을 개선한다. ■ 개선방법 Case1. 특별한 작업을 하지 않았는데, 갑자기 느려..
https://fre2-dom.tistory.com/175 [Flutter] 플러터 VS Code에서 개발환경 구축 VS Code에서 플러터 개발환경을 구축해보자. Flutter SDK 설치 Install Install Flutter and get started. Downloads available for Windows, macOS, Linux, and Chrome OS operating systems. flutter.dev Flutter 공식 사이트의 접속한다. 자 fre2-dom.tistory.com - Flutter 설치 (Feat. VS CODE) - 환경변수 설정 - Android Studio 설치 및 설정 - VS CODE 설치 https://overit.tistory.com/entry/%ED..
https://overit.tistory.com/manage/newpost/746?type=post&returnURL=https%3A%2F%2Foverit.tistory.com%2Fentry%2F%ED%95%98%EC%9D%B4%EB%B8%8C%EB%A6%AC%EB%93%9C%EC%95%B1-BackEnd-%EC%84%A4%EC%A0%95Feat-Nodejs https://overit.tistory.com/manage/newpost/746?returnURL=https%3A%2F%2Foverit.tistory.com%2Fentry%2F%ED%95%98%EC%9D%B4%EB%B8%8C%EB%A6%AC%EB%93%9C%EC%95%B1-BackEnd-%EC%84%A4%EC%A0%95Feat-Nodejs&type..
https://docs.devexpress.com/XtraReports/DevExpress.XtraReports.UI.XRPictureBox.ImageUrl XRPictureBox.ImageUrl Property | Reporting | DevExpress Documentation XRPictureBox.ImageUrl Property Bindable. Specifies a path to the image that the XRPictureBox control displays. Namespace: DevExpress.XtraReports.UI Assembly: DevExpress.XtraReports.v22.1.dll NuGet Package: DevExpress.Reporting.Core Declarat..
https://medium.com/kick-start-fluttering/saving-data-to-local-storage-in-flutter-e20d973d88fa
https://fonts.google.com/icons?selected=Material+Icons Material Symbols and Icons - Google Fonts Material Symbols are our newest icons consolidating over 2,500 glyphs in a single font file with a wide range of design variants. fonts.google.com

■ npm start 배치파일 만들기 메모장에서 아래 코드 작성 후, Node_Start.bat 로 저장 더블클릭하여, 정상 실행되는지 확인 cd "D:\dz\OverIt\SubJob\Source\BackEnd" npm start @echo off cmd /k pause ■ 배치파일 윈도우 서비스 등록하기 sc create "등록할 서비스 명" binpath="배치파일 경로" displayName="등록할 서비스 명" start= auto 주의 : start= 공백(띄어쓰기) 후 auto를 작성해야한다 sc create "NodeStart" binpath="D:\dz\OverIt\SubJob\node_start.bat" displayName="NodeStart" start= auto ※ 서비스는 등록디 ..

1. 터미널 혹은 커맨드창에서 '빌드하고 싶은 플러터 프로젝트 디렉토리로 이동' D:\dz\OverIt\SubJob\Source\FrontEnd\frontend_flutter 2. 명령어 입력 --release로 하니깐, 서버접속이 안된다.. flutter build apk --debug --target-platform=android-arm64 flutter build apk --release --no-sound-null-safety --target-platform=android-arm64 flutter build apk --release --target-platform=android-arm64 3. 빌드 경로는 [Project Forder]/build/app/outputs/flutter-apk/app-..