본문 바로가기

반응형

전체 글

(134)
PostgreSQL에서 auto_increment 값 조정하는 방법 SELECT last_value FROM your_table_idx_seq;형태로 기존 갑을 확인 할 수 있으며, SELECT setval('your_table_idx_seq', (SELECT MAX(idx) FROM your_table) + 1); 형태로 기존 값을 현재값의 가장 높은값 +1로 조정할 수 있다.
한글 철자 및 영문알파벳, 숫자 공부하는 앱 이제 막 한글을 시작하는 어린이를 위한 간단한 앱입니다. https://study.unidago.com 한글/영어 철자공부 알아요 다시시작1 / 0 몰라요 한글 소문자 대문자 숫자 study.unidago.com 한글의 경우 '가나다라마바사아자차카타파하'가 먼저 출력되며, '가'에 대해 알아요를 누르면 그 다음부터는 해당 글자는 보이지 않게 처리하였습니다. 많은 이용 부탁드려요
input type=month 이전달, 다음달 넣기 input type=month에 이전달과 다음달 넣기 버튼입니다. 이전 월 다음 월
[ai] Adobe illustrator multiple file into one 어도비 일러스트레이트에서 여러개의 파일을 하나의 대지(artboard)에 합치는 스크립트 입니다. singsinghe/mergeAiFile: This program is combines multiple illustrations and pdf files into one file. (github.com) GitHub - singsinghe/mergeAiFile: This program is combines multiple illustrations and pdf files into one file. This program is combines multiple illustrations and pdf files into one file. - GitHub - singsinghe/mergeAiFile: This pr..
한진택배 api PHP에서 HMACSha245 값 처리방법 php로 한진택배 송장출력 api를 작성중에 관련 소스가 없어서 오픈한다. $hanjin_client_id = "고객사 id"; // 영문아이디 $hanjinApiKey = "한진APIKEY"; $hanjinSecretKey = "한진SecretKey"; $method = "POST"; // "POST"; // $_SERVER['REQUEST_METHOD']; $requestUrl = "http://$_SERVER[HTTP_HOST]"."$_SERVER[REQUEST_URI]"; $queryString = getQueryString($requestUrl); $timestamp = date("YmdHis"); $message = $timestamp . $method . $queryString . $hanj..
[php] 원천징수 계산함수(3.3%) function getTaxAfter($price){ $a = round(floor($price*0.03),-1); $b = round(floor($a*0.1),-1); $p = $price - ($a+$b); return $p; }
Skibidi Toilet TV Woman TV우먼 색칠공부 PDF파일입니다.
ffmpeg 타임 쉬프트(time shift) 배치파일(음성,영상 싱크 오류시) 아래 내용을 bat 파일로 작성해서 파일을 드래그 해서 넣으면. 특정 시간을 입력받아서 음성과 영상의 싱크를 조절해준다. ======================= @echo off setlocal :: str 변수 초기화 set str= :REDO set /p str=쉬프트할 시간을 입력하세요. ffmpeg -i %1 -itsoffset %str% -i %1 -map 0:0 -map 1:1 -c copy %1-1.mp4

반응형