Search result

[php] 버전업 마이그레이션 7.4 -> 8.0

- Migrating from PHP 7.4.x to PHP 8.0.x https://www.php.net/manual/en/migration80.php //-------------------------------------------- < 하위 비호환 변화 > https://www.php.net/manual/en/migration80.inco...

PHP

[php] 버전업 마이그레이션 7.3 -> 7.4

- Migrating from PHP 7.3.x to PHP 7.4.x https://www.php.net/manual/en/migration74.php //------------------------------------ < 비호환 변화 (Backward Incompatible Changes ) > https://www.php.net/manual...

PHP

백신 접종률 나라별 비교 사이트

백신 접종비율 나라별 비교 사이트 - 대한민국 vs 일본 https://ourworldindata.org/grapher/covid-vaccination-doses-per-capita?tab=chart&stackMode=absolute&time=earliest..latest&country=JPN~KOR®ion=World...

Etc

puttygen 설치 및 OpenSSH 개인키를 RSA 개인키로 변환

Page edited by 정광섭 설치 변환 같이 보기 ssh-keygen 으로 생성한 개인키를 로딩하지 못하고 "Load key '~/.ssh/id_rsa' invalid format" 에...

SSH Load key "Invalid format" 에러 처리 - OpenSSH 용 개인키를 RSA 개인키로 변환

Page edited by 정광섭 원인 조치 키 생성시 RSA 형식 지정 키 포맷 변환 같이 보기 Ref 원인OpenSSH 최신 버전에서 ssh-keygen 을 실행하면...

[sql] 일정한 수를 증가 시키는 쿼리 (null 인 칼럼 포함)

- mysql 서버에서 null 인 칼럼에도 일정한 수를 증가 시키는 update 한방 쿼리 - laravel increment() 는 null 값에는 작동안함 UPDATE table1 SET num1 = IFNULL(num1, 0) + 1 WHERE id=1; // MS SQL Server 에서...

Database (DB)

Linux 에서 로캘 에러 "warning: setlocale: LC_ALL: cannot change locale" 처리

Page added by 정광섭 원인 조치 같이 보기 원인리눅스에 로그인하면 아래와 같이 cannot change locale 에러가 나는 경우가 있습니다.  -bash:...

[Web] 백엔드 웹프레임워크 속도 측정 비교

- backend web frameworks performance benchmark (성능 벤치마크 리스트) the-benchmarker / web-frameworks https://github.com/the-benchmarker/web-frameworks - 2021/03/02 - 측정 결과 48 go (1.16) gin (1.6)...

Web

[Tips] 윈도우 폴더 경로 환경변수 모음

- Windows predefined Environment variables, 윈도우 기본 설정된 시스템 고유 환경변수, 시스템 폴더 경로 SystemDrive = C: WINDIR = C:\Windows USERNAME = 사용자이름 USERPROFILE = C:\Users\Username = C:\Us...

IT

Go 언어

- GoLang , Go Programming Language, 고 프로그래밍 언어 * 버전 역사 1.0 - 2012 1.5 - 2015 1.10 - 2018 1.15 - 2020 * 매뉴얼 https://golang.org/doc/ http://golang.site/go/basics - 한글 * 다운로드 설치 ht...

Code