개발 & IT (78) 썸네일형 리스트형 [Spring Boot]JPA @query null Parameter https://www.baeldung.com/spring-data-jpa-null-parameters Spring Data JPA and Null Parameters | Baeldung Learn different ways to use null parameters with Spring Data JPA queries, including how to make query parameters optional. www.baeldung.com jpa @query 사용 도중 null 인 경우에 조회하지 않도록 조건을 주어야 할 때 @Query("SELECT c FROM Customer c WHERE (:name is null or c.name = :name) and (:email is null" + " or c.em.. [Apache] upload file size limit PHP-Apache로 구동 중인 서버의 업로드 파일 사이즈 변경php 환경설정 파일의 위치를 확인한다.$ find / -name php.iniphp.ini 파일을 open$ sudo vim /etc/php/7.2/apache2/php.inipost_max_size, upload_max_filesize 필드를 찾아 원하는 값으로 수정한다.post_max_size = 100M...upload_max_filesize = 100M 혹은 sed 명령어도 수정한다.# 예시: /etc/php/7.2/apache2/php.ini 파일 수정PHP_INI="/etc/php/7.2/apache2/php.ini"# post_max_size 설정 (있으면 주석 제거 및 값 변경, 없으면 맨 아래 추가)sudo sed -i '/.. [face-api.js] 얼굴인식 https://justadudewhohacks.github.io/face-api.js/docs/index.html face-api.js face-api.js JavaScript API for face detection and face recognition in the browser implemented on top of the tensorflow.js core API (tensorflow/tfjs-core) Table of Contents: Resources Live Demos Check out the live demos! Tutorials Check out my face-api.js t justadudewhohacks.github.io 업로드된 파일에서 사람을 인식해서 학습하고, 학습된 데이터 내에서 .. [fluent-ffmpeg] video codec 변경 flutter로 작성한 모바일앱에서 첨부한 동영상 파일 중 일부가 재생 안 되는 현상 발생. 동영상 코덱이 재생할 수 없는 형태로 인코딩 되어있음을 확인했다. nodejs 구성한 백엔드에서 첨부된 비디오 코덱을 일괄 변경하기로 결정. fluent-ffmpeg이라는 라이브러리를 사용했다. https://www.npmjs.com/package/fluent-ffmpeg fluent-ffmpeg A fluent API to FFMPEG (http://www.ffmpeg.org). Latest version: 2.1.2, last published: 5 years ago. Start using fluent-ffmpeg in your project by running `npm i fluent-ffmpeg`. The.. [AI 자동투자 봇] 키움증권 KOA 스튜디오 api 접속 오류 키움증권에서 제공하는 KOA 스튜디오를 실행하여 접속 후 업데이트가 실행되고 난 뒤에 스튜디오 프로그램을 재실행할 경우 오류가 발생하였다. [open api를 실행할 수 없습니다. ocx등록을 확인해주시길 바랍니다.] 위와 같은 오류가 발생하며 접속이 되지 않는다. 키움증권의 Q&A를 검색해보면 OpenAPI가 없을 때 발생하니 설치하라는 답변만 있는 상태. OpenAPI는 이미 설치되어 있다. 별로 도움 안됨. 구글링으로 OpenAPI설치 폴더의 opversionup을 실행 후 다시 스튜디오 접속하면 된다는 해결책을 찾았다. 접속 잘 된다. https://howtoworld.tistory.com/24 KOA Studio실행시 OpenAPI OCX 오류 opstarter "버전처리를 받으시려면 현재 실행.. [Html] Video Tag start_time, end_time 운영 중인 사이트에 고객이 올려놓은 동영상의 thumbnail 이미지가 동일하다는 문의가 들어왔다. 동영상의 첫 번째 프레임이 전부 같았던 문제. 슈퍼 하도급 용역은 동영상 프레임 문제니 동영상을 수정하라고 할 수 없으므로, video src value에 start_time을 조정해준다. ※poster attr를 사용하여 직접 썸네일을 지정해 줄 수도 있다. 이런 식으로 시작시간을 미세하게 조정해주면 thumbnail도 바뀐다. ※ HTML5 공식 문서에는 따로 언급 안되어 있다. #t=[start_time], [end_time] 위와 같은 형식으로 구간을 설정할 수도 있으며, #t=[hour]:[minutes]:[seconds]로 시간을 지정할 수 있다고 한다. https://web.dev/video-.. [PHP] XMLWriter https://www.php.net/manual/en/book.xmlwriter.php ※ 참고 사이트 : https://board.phpbuilder.com/d/10356853-a-quick-php-xmlwriter-class-tutorial-xml-amp-rss/2 A quick PHP XMLWriter Class Tutorial (XML & RSS) Since there is absolutely no documentation on how to use PHP5's XMLWriter class, here is a very simple example of how to use the class to create an rss feed.... board.phpbuilder.com [Swift] EXC_BREAKPOINT (SIGTRAP) 앱이 특정 케이스에서 crash 되는 오류가 발생. 오류를 보니 EXC_BREAKPOINT 라는 exception이 발생했다. Apple Developer Documentation developer.apple.com 애플 문서를 보면,, trace trap이 특정 지점에 프로세스를 중단했다는 말이라고 하는데.. swift 런타임은 복구할 수 없는 오류가 발생했을 경우 trace trap을 사용해서 프로세스를 중단시킨다고 한다. https://developer.apple.com/documentation/xcode/addressing-crashes-from-swift-runtime-errors Apple Developer Documentation developer.apple.com 관련 문서를 보면 nil .. 이전 1 ··· 6 7 8 9 10 다음