분류 전체보기
-
Collision Detection Using the Separating Axis Theorem공부/Physics for Game Developers 2023. 11. 10. 16:30
https://code.tutsplus.com/collision-detection-using-the-separating-axis-theorem--gamedev-169t Collision Detection Using the Separating Axis Theorem | Envato Tuts+ The Separating Axis Theorem is often used to check for collisions between two simple polygons, or between a polygon and a circle. As with all algorithms, it has its strengths and its weaknesses.... code.tutsplus.com - 분리 축 정리를 이용한 충돌 감..
-
[Ajax] file drag and drop upload공부/Flask 2023. 10. 11. 12:02
참고: https://www.easydevguide.com/posts/drag_drop_upload Upload multiple files using "drag and drop" with html5 and flask - EasyDevGuide.com Upload multiple files using "drag and drop" with html5 and flask In the aritcle How to upload multiple files with python flask, we showed how to upload with html form. In this aritcle, we will show how to upload in the "drag and drop" way. In this way, we ww..
-
[자격증] ISTQB 후기일상/회고 또는 후기 2023. 10. 11. 11:30
https://www.sten.or.kr/bbs/board.php?bo_table=sten_ist&gclid=Cj0KCQjw7JOpBhCfARIsAL3bobcLQt0Kjjve3a1KxS_J3KDV14j8DH8cHIE0hduolReZkQqOlPtb_VAaAopoEALw_wcB ISTQB > ISTQB 자격증 소개 1 페이지 ISTQB 란? ISTQB 자격증 (ISTQB Certified Tester)은 비영리 국제 소프트웨어(SW) 테스팅 전문가 네트워크인 국제 SW 테스팅자격위원회 (ISTQB: International Software Testing Qualification Board)에서 주관하는 국제자격 www.sten.or.kr http://www.kstqb.org/sw/sw3.asp KSTQB I..
-
[python-pptx] 파이썬 업무 자동화공부/Python 2023. 9. 19. 17:25
python-pptx Library: PowerPoint(.pptx) 파일을 조작하기 위한 라이브러리 https://python-pptx.readthedocs.io/en/latest/ python-pptx — python-pptx 0.6.22 documentation python-pptx Release v0.6.22 (Installation) python-pptx is a Python library for creating, reading, and updating PowerPoint (.pptx) files. A typical use would be generating a PowerPoint presentation from dynamic content such as a database query, anal..
-
[2018 KAKAO BLIND RECRUITMENT] 셔틀버스알고리즘/프로그래머스 2023. 8. 11. 13:39
https://school.programmers.co.kr/learn/courses/30/lessons/17678 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr - 코드 from collections import defaultdict def solution(n, t, m, timetable): # 요소들은 분 으로 변환 tt = sorted(list(map(lambda x : convert(x), timetable))) table = defaultdict(int) # 셔틀이 오는 시각 구하기 shuttle = [540+i*t for i in range(n..
-
[C] 키오스크 - IEC61508 위배 코드공부/C 2023. 8. 4. 17:23
IEC 61508 표준 위배 코드 작성 06/04 ~ #include #include #include // 키 입력 #define UP 72 #define LEFT 75 #define RIGHT 77 #define DOWN 80 #define ENTER 13 #define MENUNUM 4 #define OPTION(a) a?"hot":"ice" static int pageStatement = 0; // 콘솔에 위치할 메뉴의 높이, 메뉴의 개수 //static int menuHeight = 8; //static int menuNumber = 2; static const char* menu[MENUNUM][2] = { {"Americano", "2000"}, {"Cafe_Latte", "3000"}, {"..
-
[Python] 에어컨알고리즘/프로그래머스 2023. 7. 28. 09:28
https://school.programmers.co.kr/learn/courses/30/lessons/214289 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr - 코드 import math def solution(temperature, t1, t2, a, b, onboard): # 0으로 정규화 diff = temperature - t2 if temperature > t2 else t1 - temperature # 시간0에 대해 초기 비용으로 초기화 result = [[ 1000000 for i in range(diff+1) ]+[0]] last_pa..