본문 바로가기

전체 글

(159)
SSLError(SSLCertVerificationError - windows 파이썬 사용 TLDR 1 개인의 cert path를 잡아준다. 2 pip install --user -r requirements.txt --trusted-host pypi.org --trusted-host files.pythonhosted.org # 이걸로 설치한다. 3 C++ builder 를 설치한다. windows 파이썬 사용 https://github.com/pypa/pip/issues/5448#issuecomment-394254705 i cannot install or upgrade pip "ssl error" · Issue #5448 · pypa/pip * Pip version:9.0.3 Python version:3.6.5 latest Operating system:windows 10 home githu..
postgresql create date column with default value alter table 테이블이름 add column "updated_at" TIMESTAMP default now()::timestamp
pg_hba.conf 개발 서버 설정 # TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only local all all trust # IPv4 local connections: host all atlas 0.0.0.0/0 md5 host all postgres 0.0.0.0/0 md5 # IPv6 local connections: host all all ::1/128 ident # Allow replication connections from localhost, by a user with the # replication privilege. #local replication all peer #host replication all 127.0.0..
git * 사용법 A브랜치에서 B브랜치를 병합한다 (= A로 B를 가져온다. A
hugo / github.io 블로그 참고 링크 https://gohugo.io/getting-started/quick-start/ Quick Start Create a Hugo site using the beautiful Ananke theme. gohugo.io https://aidanbae.github.io/code/hugo/deploytutorial/ Hugo로 github page에 블로그 배포하기 Hugo로 github page에 블로그 배포하기 - 아이단의 블로그 aidanbae.github.io 이거 보고 따라하면 됨. Step 1: Install Hugo brew install hugo hugo version Step 2: Create a New Site hugo new site quickstart (휴고 명령어를 쓸 수 있..
맥북 공장 초기화 후 for user 1 크롬설치, 동기화 사용 2 한영키 세팅 3 트랙패드랑 마우스 스크롤 설정 변경 앱 scroll reverser 설치 (https://pilotmoon.com/scrollreverser/) 4 화면분할앱 spectacle 설치 (https://www.spectacleapp.com/) 5 amphetamine 설치 6 날짜 시간 표기 변경 -------------------------------------------------------------------------------- 7 karabiner 로 한영전환키 세팅 (https://macnews.tistory.com/5043) 8 캘린더앱 설치 (https://www.mowglii.com/itsycal/) 9 잠금화면 메시지 설정 ..
term 정리 환경변수(컴퓨터 시스템 전반에 걸쳐 쉽게 참조할 수 있도록 만들어 놓은 변수) - https://medium.com/@psychet_learn/python-%EA%B8%B0%EC%B4%88-2%EC%9E%A5-python-%EC%84%A4%EC%B9%98-%EB%B0%8F-%ED%99%98%EA%B2%BD%EC%84%A4%EC%A0%95-windows-ver-b030d96bcbd0 [Python 기초] 2장. Python 설치 및 환경설정(Windows Ver.) Version Info: (python = 3.6) medium.com
upgrade postgresl 9.2 -> 12 상황 : EOL 버전을 굳이 설치하여 쓰다가 json-b 를 사용하기 위하여 업그레이드 해야함. 버전 : cat /etc/centos-release CentOS Linux release 7.6.1810 (Core) ################################################ pg_config --version PostgreSQL 9.2.24 JSON-B가 뭐야? : JSON-B is a standard binding layer for converting Java objects to/from JSON messages. It defines a default mapping algorithm for converting existing Java classes to JSON, while ..