2023년 7월, Monthly I Learned

728x90

 

23/07/27 - chmod 계산기 사이트


https://chmod-calculator.com/ 에서 chmod를 계산할 수 있다.

 

 

23/07/26 - postgreql timestamp에서 mileseconds를 지우고 싶을 때


SELECT now()::timestamp(0); SELECT date_trunc('second', now()::timestamp);

23/07/25 - 사내용 github repository에 접근하기 위한 방법


# 단순 비공개 repo도 아래와 같이 해야되는지는 모르겠음 # 비공개 github repository에 접근하려면 아래와 같이 작성해야 한다 git remote set-url origin https://{사용자 github id}@github.com/{repository 주소}.git

 

23/07/24 - github push/pull 할 때 계정 정보 묻지 않도록 설정


# 공통으로 주려면 --global 인자를 추가하세요.  # credential 정보 저장 git config credential.helper store  # 임시 캐시 저장 git config credential.helper cache

 

23/07/17 - gmail에서 안 읽은 메일을 확인하고 싶을 때


지메일 검색창에 ‘is:unread’ 를 입력하면 읽지 않은 메일만 필터링할 수 있다.

 

23/07/13 - mySQL에서 프로시저 목록 확인하고 삭제하고 싶을 때


-- 목록 확인 SHOW PROCEDURE STATUS  -- 삭제 DROP PROCEDURE IF EXISTS {프로시저 이름};

 

 

728x90

'Monthly I Learned' 카테고리의 다른 글

2023년 8월, Monthly I Learned  (0) 2023.08.30
2023년 6월, Monthly I Learned  (0) 2023.07.03
2023년 5월, Monthly I Learned  (0) 2023.05.04