웹 서버 구축(28)
-
sessionStorage에 객체 저장 방법
https://sanghye.tistory.com/14 [Javascript] sessionStorage 에 객체 저장하고 꺼내기 문제점 sessionStorage 는 기본적으로 key, value 형태의 문자열 값을 저장할 수 있도록 한다. 따라서 객체의 형태를 저장할 경우 String 형태로 "[Object, Object]" 가 저장되기 때문에 getItem 하여 사용할 수.. sanghye.tistory.com
2021.11.01 -
특정 범위의 중복 구간 검출
https://stackoverflow.com/questions/3269434/whats-the-most-efficient-way-to-test-two-integer-ranges-for-overlap What's the most efficient way to test two integer ranges for overlap? Given two inclusive integer ranges [x1:x2] and [y1:y2], where x1 ≤ x2 and y1 ≤ y2, what is the most efficient way to test whether there is any overlap of the two ranges? A simple implementation is as stackoverflow.com
2021.10.30 -
우분투 용량 부족 문제 해결
https://jjudrgn.tistory.com/28 리눅스 용량 부족할때 커널로그 삭제 우분투를 사용하던중 사용하던 kvm이 동작을 안하고 tab키를 눌러 자동완성을 하는것도 잘안되는 상황이 나타났다. -bash: cannot create temp file for here-document : No space left on device df -h 로 디스.. jjudrgn.tistory.com
2021.10.27 -
XML 변환기 오류: 요소 없음 해결
sudo apt-get install php7.4-xml sudo systemctl restart apache2.service
2021.10.24 -
PHPMailer 를 사용해서 자체 메일 서버 없이 이메일 보내기
1. ubuntu 20.04 에 libphp-phpmailer 설치하기 https://www.devmanuals.net/install/ubuntu/ubuntu-20-04-focal-fossa/installing-libphp-phpmailer-on-ubuntu20-04.html How to install libphp-phpmailer on Ubuntu 20.04 (Focal Fossa)? Quick installation of libphp-phpmailer Architecture: all Version: 6.0.6-0.1: Step 1: Update system: sudo apt-get update Step 2: Install: libphp-phpmailer Architecture: all Version:..
2021.10.22 -
암호 생성 / MariaDB 계정 비밀번호 변경하기
https://ubunlog.com/ko/generar-contrasenas-seguras-terminal/ 강력한 암호를 생성하고 터미널에서 확인하는 방법 다음 기사에서는 강력한 암호를 생성하고 Ubuntu 터미널의 명령을 통해 쉽게 확인하는 방법을 살펴 보겠습니다. ubunlog.com https://velog.io/@ddusi/mysql-1 2020-02-04 MySql & MariaDB 계정 비밀번호 변경하기 2020-02-04-MySQL MariaDB change user password프로젝트를 하면서 아주 사소한 것이지만, 각 DB계정의 비밀번호가 달라서 충돌되는 경우가 있다. 이때 서로 비밀번호를 맞춰주기 위해 DB의 비밀번호를 손 쉽 velog.io
2021.10.20