본문 바로가기

전체 글471

화면캡쳐 applescript set N to text returned of (display dialog "반복할 횟수를 입력하세요." default answer "") try set A to N as integer -- if A > 0 and A < 10 then -- exit repeat -- else -- display dialog "Your entry was out of bounds" -- end if on error display dialog "An Integer, Please" end try --repeat A times -- say "hello" -- end repeat delay 2 repeat A times (* tell application "Extra Suites" to set kd to ES keys down *.. 2024. 4. 3.
평택농업기술센터.귀농교육.2차. ### # 귀농창업 및 주택구입 지원사업 - 김기종 : kgjhop2@naver.com - 경기도총 국무총리실 국무조정실 근무. - 경기도 친환경농업과장, 급식지원센터장 근무. #### # 평택 귀농. - 평택을 귀농 지역으로 선정한 것은 잘 한 일이다. - 평택이 괜찮은 도시이다. - 먹거리 산업은국가가 끌고 가야하는 산업이다. - 정부지원 받고 - 창의력을 발휘하면 된다. - 블루오션 산업이다 - 정부 지원사업. - 지피지기 백전백승 이순신장군. - 춘추전국시대 손무. 지피지기 백전불패. - 꼭 현실을 정확히 알아야한다. - 농업소득이 상당히 낮다. - 기업이나 프랜차이지 본사는 통계를 적절히 잘 이용한다. - 피자집이나 통닭집 낼때 1.2킬로 안에 인구와 구매 실태를 싹한다. - 어떤걸 사먹는지. .. 2024. 3. 11.
평택농업기술센터.귀농교육.1차. #### 교육 일정 - 2023년08월23일 ~ 2주마다 수요일. 11월 말까지 - 4가지 약속 - 졸리지 않는 강의 하겠다. ( 주무시고 조는건 아님. ) - 1시간 강의하면 12분간 휴식한다. - 알아가려고 하지 말라??? - 이론과 실무를 최선을 다해 알려주겠다. - 농사에 정답은 없다. - 이론 30% : 이론 하나 나오면 사례3개 - 실무 70% #### 사이트 - 귀농귀촌종합센터 : https://www.returnfarm.com:444/ - 흙토람 : http://soil.rda.go.kr/soil/soilmap/crop.jsp - 농사로 : http://www.nongsaro.go.kr/portal/portalMain.ps?menuId=PS00001 - 웰촌 : https://www.wel.. 2024. 3. 11.
파이썬 패키지 임포트 2023. 6. 8.
Split file by minute using ffmpeg with shell script ```sh inc=5 if [ $# -lt 1 ] ; then echo "Usage: ff2 file_name sec loop_count" exit 1 elif [ $# -lt 2 ] ; then inc=5 else inc=$2 fi loop=5 if [ "$3" != "" ] ; then loop=$3 fi convertsecs() { ((h=${1}/3600)) ((m=(${1}%3600)/60)) ((s=${1}%60)) printf "%02d:%02d:%02d\n" $h $m $s } # echo loop $loop; # ffmpeg -ss 01:00:00 -i $1.mp4 -t 00:15:00 -c copy $1_05.mp4 fromSec=0 toSec=0 fromMin=0 toMin=0 fro.. 2023. 6. 2.
화면 스크롤 로드 체크 - new IntersectionObserver const io = new IntersectionObserver((entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { var sectionName = $(entry.target).attr("class"); var subGubun = sectionName.split(" ")[1]; //console.log( "active.class", subGubun ); $(entry.target).addClass('active').trigger("activeClass"); onSearch(subGubun); } }); }); document.querySelectorAll("section").forEach((item) => { io.. 2023. 5. 30.