분류 전체보기(224)
-
(쓰는중)[Ubuntu] Wikedocs - Ubuntu와 WSL 읽기 및 정리
[책] https://wikidocs.net/book/10238 Ubuntu와 WSL 우분투(Ubunt) 리눅스와 WSL(Windows Subsystem for Linux) 관련 내용을 모아둡니다. 표지: wikidocs.net 1. 설치 사이트 https://ubuntu.com/download Get Ubuntu | Download | Ubuntu Download Ubuntu desktop, Ubuntu Server, Ubuntu for Raspberry Pi and IoT devices, Ubuntu Core and all the Ubuntu flavours. Ubuntu is an open-source software platform that runs everywhere from the PC to ..
2023.11.15 -
[flask] 이미지,css,js 등 연결
내부 css로 바꿔서 이런식으로 경로를 지정해주면 된다
2023.11.15 -
[jsp] 페이지네이션 하기
//페이지네이션 버튼 만들기 function btnMake(res, limit, currentPage) { let total_page = Math.ceil(res.length / limit); // 올림을 사용하여 전체 페이지 수 계산 var oHtml = ''; var startPage = Math.floor((currentPage - 1) / 5) * 5 + 1; var endPage = Math.min(startPage + 4, total_page); // 이전 버튼 추가 if (startPage > 1) { oHtml += '이전'; } // 5개씩 페이지 버튼 생성 for (var i = startPage; i
2023.11.09 -
[Python] log 저장하기
✔️참고 https://yurimkoo.github.io/python/2019/08/11/logging.html 유림's Blog 베짱이가 되고 싶은 개미의 기술 블로그 yurimkoo.github.io python 라이브브러리 중 logging이라는 라이브러리가 있다. 그것을 이용한다. ########### 로그 셋팅부 START################# logger = logging.getLogger('admin') loggerlevel = config['LOG']['loggerlevel'] # 로그 레벨 문자열을 대문자로 변환하여 사용 if loggerlevel == "INFO": logger.setLevel(logging.INFO) elif loggerlevel == "DEBUG": logg..
2023.11.08 -
[MYSQL] TRIGGER 만들기
[QUERY문] DELIMITER // CREATE TRIGGER 트리거 명 BEFORE 발동조건/ 행위 [예시)INSERT ON 데이터베이스] FOR EACH ROW BEGIN SET NEW.컬럼1 = 함수1; SET NEW.컬럼2 = 함수2; END; // DELIMITER ; [관리Query문] 1.SHOW TRIGGERS;
2023.11.07 -
[Flask] html,js,css 등 정적 파일 연결 하는법
1.html 파일 -> 무조건 templates라는 폴더를 만들고 거기다 html 파일들을 넣는다. render_template('파일 이름') 2. js, css 파일 및 사진, 폰트 -> static라는 폴더를 생성 후 넣는다 -> html에 밑에 형식으로 넣어야 적용이 가능
2023.11.07