- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Back 키 클릭 감지
- MariaDB
- Activity 전체화면
- 터치좌표 view
- 피쉬랜드
- 시간대 테이블생성
- MySQL
- CentOS
- MFC
- 가변영역 스크롤
- springboot 재가동
- CSS
- kill -9
- vc++
- pid 찾아 kill
- c언어
- view 획득
- ffmpeg
- rn
- SQL
- mybatis exception
- springboot
- group by
- 코드로 서버 재실행
- 시간대별 통계
- sql exception
- 스크롤적용
- reactnative
- 말줌임 CSS
- 파티션 빠른 삭제
개발은 하는건가..

OpenSSL 1.0.1g 예전 버전의 64bit 라이브러리가 필요하여 빌드하는 방법을 찾아 정리해봄 1. https://www.openssl.org/source/old/ 에 접속하여 필요한 버전의 링크로 이동한 후 해당 파일을 다운로드 받습니다. 다운로드 받은 파일을 원하는 경로에 압축해제 합니다. 2. Perl 을 다운로드 받습니다. https://www.activestate.com/products/perl/ Cross-platform, secure Perl by ActiveState - for developers and enterprise Perl powered by the ActiveState Platform. Designed to meet the security and package manage..
FFmpeg 를 이용하여 IP camera 연결용 rtsp client class 이다. 주요부분은 ffmpeg api 를 이용하여 rtsp 연결 및 frame 패킷을 획득하는 부분이므로 코드에서 사용된 decoder 는 포함하지 않았습니다. # header file #pragma once #include "TimeoutHandler.h" #include "VideoDecoder.h" #define RTP_CONNECT_TIMEOUT10000 #define RTP_TIMEOUT_MS10000 #define RTP_PACKET_TIMEOUT_MS30000 #define RTP_BASE_FRAME_DURATION33 #define RTP_MAX_FRAME_DURATION50// 최대 프레임 duration ..
개발모드와 상용 모드에 따라 DB 주소, 파일 업로드 경로와 같이 다르게 설정되어야 할 경우 application.properties 를 구분해야 할 경우 다음과 같이 application.properties 에는 공통 속성만 정의하고 개발과 상용 application.properties 구분하여 관리한다. # application.properties 파일. # Profile (dev=development build, prod=product build) spring.profiles.active=dev # !! Version is automatically updated by gradle. info.build.version=1.0.0 # Common properties server.port=16300 ser..