본문 바로가기
728x90
2024년 8월 플스플러스(PS플러스)무료게임 공개 (월간게임) 8월 PlayStation Plus 월간 게임 1. LEGO® Star Wars: 스카이워커 사가 2. Five Nights at Freddy's Security Breach 3. ENDER LILIES: Quietus of the Knights 2024. 8. 9.
if else 문 한줄에 쓰기 - 파이썬 if else 문을 간단하게 한줄에 쓰고 싶을 경우가 있다.  파이썬은 구조가 좀 특이한데 아래 소스를 확인하면 알 수 있다.  if(test==1):   print("True")else:    print("False") -> 한줄로 요약print("Ture") if(test==1) else print ("False") if(test=="1"):     print("1") elif(test=="2"):     print("2") else:     print("3") -> 한줄로 요약print("1") if(test=="1") else print("2") if(test=="2") else print("3") 2024. 8. 9.
find ctime 명령어 옵션 (검색 후 삭제하기) - 리눅스 파일 생성 날짜가 3일이 지난 파일을 삭제하는 명령어 find ./ -ctime +2 -exec rm {} \ ; find /home -name '*.txt' -ctime +2 -exec rm {} \; *  일정기간 지난 파일 삭제 명령 - 1일 지난 파일 삭제 예 find [디렉토리] -ctime +0 -exec rm -f {} \; *  일정기간 지난 파일 삭제 명령 - 7일 지난 파일 삭제 예 find [디렉토리] -ctime +7 -exec rm -f {} \; * 수정한지 3일 이내 ( -mtime -3 ) 의 파일만 ( 백업할 때 유용 )find . -mtime -3 -type f -ls * 수정한지 30분 이내 ( -mmin -30 ) 의 파일만find . -mmin -30 -type -f.. 2024. 8. 8.
iframe 클릭 이벤트 처리 - jquery iframe 안을 클릭했을 때 이벤트 처리방법​https://tv.naver.com/embed/25698159?autoPlay=true' frameborder='no' scrolling='no' marginwidth='0' marginheight='0' WIDTH='544' HEIGHT='306' allow='autoplay' allowfullscreen > 2024. 8. 7.
다중선택 셀렉트박스안에 체크박스 넣기 다중선택을 하는 셀렉트박스는 선택 시 컨트롤키를 눌러 다중선택을 하게 되어있는데 이렇게 말고 체크박스를 넣어 컨트롤키를 누르지 않아도 다중선택할 수 있게하였다. 물론 셀렉트박스가 아닌  DIV 로 처리했다.           http://www.w3.org/TR/html4/strict.dtd">  다중선택 리스트    체크리스트1    체크리스트2    체크리스트3    체크리스트4    체크리스트5    체크리스트6    체크리스트7 2024. 8. 6.
SLICK 슬라이드 페이징 넣기 SLICK 슬라이드에서 원하는 부분에 1/5 와 같은 페이징을 넣는 방법이다.​​1 / 3 test1 test2 test3 ​$('.main_news_sld').slick({ infinite: false, speed: 300, initialSlide : 0, slidesToShow: 1, slidesToScroll: 1, vertical:true, });​ $('.main_news_sld').on('init reInit afterChange', function(event, slick, currentSlide, nextSlide){ var i = (currentSlide ? currentSlide : 0) + 1; $('.sPage1').html(""+i+" / "+slick.slideCount+".. 2024. 8. 6.
ckeditor5 - 높이설정 에디터의 높이를 설정하는 방법​}).then(function(editor) {​//높이를 480으로 지정 - 높이고정//입력이 480을 넘으면 스크롤이 생김$('style').append('.ck-content { height: 480px; }');objEditor = editor;​//최소 높이를 480으로 지정 - 높이 가변//입력이 480을 넘으면 높이가 늘어남$('style').append('.ck-content { min-height: 480px; }');​}).catch( error => { console.log( error ); } ); 2024. 8. 5.
ckeditor html 태그 허용 ckeditor5 에서 허용태그 세팅방법은 아래 사이트를 참조 https://ckeditor.com/docs/ckeditor5/latest/features/general-html-support.html General HTML Support | CKEditor 5 DocumentationLearn how to install, integrate, configure, and develop CKEditor 5. Get to know the CKEditor 5 Framework. Browse through the API documentation and online samples.ckeditor.com 아래는 모든 태그를 허용하는 세팅이다. ​ClassicEditor.create( document.querySele.. 2024. 8. 5.
ckeditor mediaEmbed 카카오tv 처리 ckeditor5 media embed 에서 카카오tv 주소를 넣었을 경우 글에 삽입되도록 처리하는 방법이다. ​주소형식 2가지를 받아 iframe 형식으로 만들어 리턴해주는 설정이다​ClassicEditor.create( document.querySelector( '#ckeditor' ), { toolbar: {items : ['mediaEmbed'], shouldNotGroupWhenFull: true,},mediaEmbed: {previewsInData: true,providers: [{name: 'kakaotv',url: [/^tv\.kakao\.com\/v\/([\w-]+)/, /^tv\.kakao\.com\/channel\/[^/]+\/cliplink\/(\d+)/],html: match =>.. 2024. 8. 5.
ckeditor5 - toolbar 세팅 ckeditor5의 툴바에 원하는 메뉴를 세팅하고 싶다면 ​먼저 홈페이지에 들어가 원하는 기능을 세팅하여 빌드하여 다운로드 하여야한다.​주소는 아래와 같은데 진행은 어렵지 않다. 원하는 기능들을 선택 후 쭉~ 진행하고​다운로드 받으면된다. 물론 유료기능들은 돈을 지불해야한다. ​이렇게 빌드하지 않고 기본 버전에 기능을 넣으면 지원하지 않는 기능이라고 나온다. https://ckeditor.com/ckeditor-5/online-builder/ CKEditor 5 BuilderCreate and customize your online editor with CKEditor 5 Builder. Choose features, set up your editor, and see changes in real-time.. 2024. 8. 5.
[HTML] 버튼 정렬하기 버튼을 오른쪽 정렬하고 싶은 경우 아래와 같이 처리​1.​2. 2024. 8. 5.
한글 문자열 자르기 - 파이썬 한글 문자열을 원하는 길이만큼 잘라서 배열로 리턴하는 함수를 만들어봤다.​def splitString(text, length=10): return [text[i:i+length] for i in range(0, len(text), length)]​#사용법temp = "국내 정상급 가수들의 공연·불꽃쇼 등 볼거리 가득 나흘간 카약·요트 등 무료 해상 스포츠 체험 제공 워터슬라이드·에어바운스 갖춘 수상 워터파크 운영"result = splitString(temp, 10)print(result) 2024. 7. 31.
반응형