+ it ops aws naming 2. AWS 아키텍처 설계 기본 - Alchemine Studio wono | discuss | tweet + it dev vscode prettier Prettier 상세 설정 - .Prettierrc 설정 파일 사용Prettier는 크게 3가지 방법으로 설정할 수 있다.첫 번째 방법은 Prettier 명령어를 실행할 때 커맨드 라인 옵션으로 넘기는 방법이다. 일회성 설정을 할 때는 간편하게 쓸 수 있지만, 설정할 항목이 많아지면 오히려 작성하기 어렵고 오타가 날 확률이 높다.Co wono | discuss | tweet + it ops github linguist/lib/linguist/languages.yml at main · github-linguist/linguistLanguage Savant. If your repository's language is being reported incorrectly, send us a pull request! - linguist/lib/linguist/languages.yml at main · github-linguist/linguist wono | discuss | tweet + it ops mysql mysql backup과 restore(복구)는 어떻게 하나요? wono | discuss | tweet + it ops git readme standard-readme/README.md at main · RichardLitt/standard-readmeA standard style for README files. Contribute to RichardLitt/standard-readme development by creating an account on GitHub. wono | discuss | tweet + it ops git image 4 Ways to Add Images to GitHub README + 1 Bonus Method | CloudinaryGitHub is a popular platform for storing, managing, and sharing source code. README.md is your Github repository's welcome mat. wono | discuss | tweet + it ops git commit Conventional Commits커밋 메시지에 사용자와 기계 모두가 이해할 수 있는 의미를 부여하기 위한 스펙 wono | discuss | tweet + it ops git branch GitHub 플랜 및 계정 유형 총정리: 요금제와 기능 한눈에 보기GitHub 플랜과 계정 유형 비교 완벽 가이드: 무료부터 유료까지 내 프로젝트에 맞는 요금제 선택하기 wono | discuss | tweet + it ops git branch GitHub의 조직 차원에서 저장소에 적용할 규칙을 관리할 수 있는 Repository Rules :: Outsider's Dev Story23년 7월 GitHub은 저장소에 적용할 수 있는 [저장소 규칙(Repository Rules)](https://github.blog/2023-07-24-github-repository-rules-are-now-generally-available/) 기능을 정식으로 공개했다. 협업하다... wono | discuss | tweet + it ops git branch [GITHUB] Branch Protection Rule 적용하기GitHub의 Branch Protection 기능은 팀 프로젝트에서 주요 브랜치(main, master 등)에 대한 접근과 수정 권한을 제한하여 코드의 안정성, 품질, 협업을 보장하는 중요한 도구입니다. 이 기능을 사용하면 특정 브랜치에 대한 다양한 규칙을 설정하여 협업 환경에서의 실수나 문제가 발생하지 않도록 할 수 있습니다. 주요 목적 및 장점안정성 유지 주요 브랜치 보호: main이나 master 브랜치는 제품 릴리스나 배포에 사용됩니다. 이 브랜치를 보호하면 검증된 안정적인 코드만 병합되므로 제품 품질을 보장할 수 있습니다. 실수 방지 푸시 제한: 강제 푸시를 막고, 코드 검토 및 상태 체크를 요구하여 실수로 인한 코드 손상을 예방합니다. 실수로 중요한 브랜치에 잘못된 코드가 푸시되는 것을 방지.. wono | discuss | tweet + it ops git branch [GitHub] merge 후 브랜치 자동삭제 안되는 이유 (feat. Branch protection rules)시작하며...분명 Automatically delete head branches 옵션을 선택하여 PR 을 올려 merge 가 되었을 때, 해당 브랜치가 삭제되도록 설정하였다.그러나 merge 가 되었음에도 불구하고 브랜치가 삭제되지 않는 현상을 발견하였다. 문제 해결하기해당 문제에 대해 의문이 있었는데 다행히 이 문제를 해결할 수 있었다! 결론은 내 문제 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ 바로 Branch Protection Rules 때문이었다! Branch Protection Rules 설정PR 을 올릴 때 2명 이상한테 Approve 를 받아야 merge 될 수 있도록 규칙을 설정하였다. 여기서 문제였다! 특정 브랜치에 merge 될 때 그 특정 브랜치의 패턴을 입력해야 한다. 그래서 처음엔 모든 브랜치에 적.. wono | discuss | tweet + it dev nextjs react React와 Next.js 업그레이드 방법: React 19 호환성 확인 및 의존성 충돌 해결 가이드React 19 업그레이드 시 발생할 수 있는 의존성 충돌을 해결하고, Next.js 15.1의 새로운 기능과 호환성을 유지하는 방법을 알아봅니다. wono | discuss | tweet + it dev git 커밋 메시지 템플릿 설정하고, 짱편하게 커밋하기커밋 컨벤션(commit convention)프로젝트 참여자들이 일관적인 커밋 메시지를 작성하기 위한 규칙, 가이드라인을 의미한다.1. 가독성 향상으로 작업 내용 파악하기 쉬움 (커뮤니케이션 효율 증대)2. 변경 이력 추적 용이 Conventional CommitsA specification for adding human and machine readable meaning to commit messageswww.conventionalcommits.org 위 사이트에서는 커밋 메세지를 구성하는 방법을 아래와 같이 요약하고 있다: [optional body][optional footer] 1. 변경 사항 유형으로, 해당 내용만 봐도 어떤 커밋의 내용인지 확인하기 위해 명확하게 작성해야한다.feat새로운 .. wono | discuss | tweet + it dev nodejs nodemailer Sending mail with nodemailer to office@company.ro addresslet transporter = nodemailer.createTransport({ service: '?', auth: { user: 'office@company.ro', pass: 'passHere' } }); This is the code I'm using. Earlier, I was sendin... wono | discuss | tweet + it dev nodejs nodemailer 사용자에게 이메일 전송하기 (nodemailer)nodemailer를 사용해 사용자에게 이메일 알림이나 사용자 인증 메일을 보내야 하는 경우의 과정을 다뤄보겠습니다. nodemailer 모듈은 발신자와 수신자 정보, 보낼 내용만 설정하여 간편하게 서드파티 앱에서 이메일을 보낼 수 있게 도와줍니다 wono | discuss | tweet + it dev nodejs nodemailer [Node.js] nodemailer - 나의 이메일 계정 사용하기 회원 등록 시, 이메일 인증을 하는 플로우가 필요했다. 가장 많이 쓴다는 nodemailer을 사용하기로 했다. 예제를 따라하니 gmail 계정 연동하기까지는 참 쉬웠다. 문제는 보내는 사람의 이메일 주소가 회사 계정이어야된다는 점이었다. 왜 이런 예제는 없지요 wono | discuss | tweet + it ops sql submenu json SQL Select to JSON for Menu StructureI was looking for help with a query which will produce the output in JSON that I could use to populate a Menu, thus the JSON needs to create the menu structure. Here are the two tables that I have,... wono | discuss | tweet + it ops postgresql submenu recursive_query_in_postgresql_to_create_a_menu wono | discuss | tweet + it ops kysely menu Utilizing Complex Queries - Mastering Kysely: The Essential GuideKysely enables powerful complex queries through its fluent API. You can construct sophisticated queries using methods like leftJoin, innerJoin, where, and ... wono | discuss | tweet + 생활 자동차 현대차, 기아차의 침묵 속에 피해는 소비자만 (세타 2 MPI 엔진 결함)현대차, 기아차의 침묵 속에 피해는 소비자만 (세타 2 MPI 엔진 결함) 내 차는 2010년식 YF 소나타이... wono | discuss | tweetNext
+ it dev vscode prettier Prettier 상세 설정 - .Prettierrc 설정 파일 사용Prettier는 크게 3가지 방법으로 설정할 수 있다.첫 번째 방법은 Prettier 명령어를 실행할 때 커맨드 라인 옵션으로 넘기는 방법이다. 일회성 설정을 할 때는 간편하게 쓸 수 있지만, 설정할 항목이 많아지면 오히려 작성하기 어렵고 오타가 날 확률이 높다.Co wono | discuss | tweet
+ it ops github linguist/lib/linguist/languages.yml at main · github-linguist/linguistLanguage Savant. If your repository's language is being reported incorrectly, send us a pull request! - linguist/lib/linguist/languages.yml at main · github-linguist/linguist wono | discuss | tweet
+ it ops git readme standard-readme/README.md at main · RichardLitt/standard-readmeA standard style for README files. Contribute to RichardLitt/standard-readme development by creating an account on GitHub. wono | discuss | tweet
+ it ops git image 4 Ways to Add Images to GitHub README + 1 Bonus Method | CloudinaryGitHub is a popular platform for storing, managing, and sharing source code. README.md is your Github repository's welcome mat. wono | discuss | tweet
+ it ops git commit Conventional Commits커밋 메시지에 사용자와 기계 모두가 이해할 수 있는 의미를 부여하기 위한 스펙 wono | discuss | tweet
+ it ops git branch GitHub 플랜 및 계정 유형 총정리: 요금제와 기능 한눈에 보기GitHub 플랜과 계정 유형 비교 완벽 가이드: 무료부터 유료까지 내 프로젝트에 맞는 요금제 선택하기 wono | discuss | tweet
+ it ops git branch GitHub의 조직 차원에서 저장소에 적용할 규칙을 관리할 수 있는 Repository Rules :: Outsider's Dev Story23년 7월 GitHub은 저장소에 적용할 수 있는 [저장소 규칙(Repository Rules)](https://github.blog/2023-07-24-github-repository-rules-are-now-generally-available/) 기능을 정식으로 공개했다. 협업하다... wono | discuss | tweet
+ it ops git branch [GITHUB] Branch Protection Rule 적용하기GitHub의 Branch Protection 기능은 팀 프로젝트에서 주요 브랜치(main, master 등)에 대한 접근과 수정 권한을 제한하여 코드의 안정성, 품질, 협업을 보장하는 중요한 도구입니다. 이 기능을 사용하면 특정 브랜치에 대한 다양한 규칙을 설정하여 협업 환경에서의 실수나 문제가 발생하지 않도록 할 수 있습니다. 주요 목적 및 장점안정성 유지 주요 브랜치 보호: main이나 master 브랜치는 제품 릴리스나 배포에 사용됩니다. 이 브랜치를 보호하면 검증된 안정적인 코드만 병합되므로 제품 품질을 보장할 수 있습니다. 실수 방지 푸시 제한: 강제 푸시를 막고, 코드 검토 및 상태 체크를 요구하여 실수로 인한 코드 손상을 예방합니다. 실수로 중요한 브랜치에 잘못된 코드가 푸시되는 것을 방지.. wono | discuss | tweet
+ it ops git branch [GitHub] merge 후 브랜치 자동삭제 안되는 이유 (feat. Branch protection rules)시작하며...분명 Automatically delete head branches 옵션을 선택하여 PR 을 올려 merge 가 되었을 때, 해당 브랜치가 삭제되도록 설정하였다.그러나 merge 가 되었음에도 불구하고 브랜치가 삭제되지 않는 현상을 발견하였다. 문제 해결하기해당 문제에 대해 의문이 있었는데 다행히 이 문제를 해결할 수 있었다! 결론은 내 문제 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ 바로 Branch Protection Rules 때문이었다! Branch Protection Rules 설정PR 을 올릴 때 2명 이상한테 Approve 를 받아야 merge 될 수 있도록 규칙을 설정하였다. 여기서 문제였다! 특정 브랜치에 merge 될 때 그 특정 브랜치의 패턴을 입력해야 한다. 그래서 처음엔 모든 브랜치에 적.. wono | discuss | tweet
+ it dev nextjs react React와 Next.js 업그레이드 방법: React 19 호환성 확인 및 의존성 충돌 해결 가이드React 19 업그레이드 시 발생할 수 있는 의존성 충돌을 해결하고, Next.js 15.1의 새로운 기능과 호환성을 유지하는 방법을 알아봅니다. wono | discuss | tweet
+ it dev git 커밋 메시지 템플릿 설정하고, 짱편하게 커밋하기커밋 컨벤션(commit convention)프로젝트 참여자들이 일관적인 커밋 메시지를 작성하기 위한 규칙, 가이드라인을 의미한다.1. 가독성 향상으로 작업 내용 파악하기 쉬움 (커뮤니케이션 효율 증대)2. 변경 이력 추적 용이 Conventional CommitsA specification for adding human and machine readable meaning to commit messageswww.conventionalcommits.org 위 사이트에서는 커밋 메세지를 구성하는 방법을 아래와 같이 요약하고 있다: [optional body][optional footer] 1. 변경 사항 유형으로, 해당 내용만 봐도 어떤 커밋의 내용인지 확인하기 위해 명확하게 작성해야한다.feat새로운 .. wono | discuss | tweet
+ it dev nodejs nodemailer Sending mail with nodemailer to office@company.ro addresslet transporter = nodemailer.createTransport({ service: '?', auth: { user: 'office@company.ro', pass: 'passHere' } }); This is the code I'm using. Earlier, I was sendin... wono | discuss | tweet
+ it dev nodejs nodemailer 사용자에게 이메일 전송하기 (nodemailer)nodemailer를 사용해 사용자에게 이메일 알림이나 사용자 인증 메일을 보내야 하는 경우의 과정을 다뤄보겠습니다. nodemailer 모듈은 발신자와 수신자 정보, 보낼 내용만 설정하여 간편하게 서드파티 앱에서 이메일을 보낼 수 있게 도와줍니다 wono | discuss | tweet
+ it dev nodejs nodemailer [Node.js] nodemailer - 나의 이메일 계정 사용하기 회원 등록 시, 이메일 인증을 하는 플로우가 필요했다. 가장 많이 쓴다는 nodemailer을 사용하기로 했다. 예제를 따라하니 gmail 계정 연동하기까지는 참 쉬웠다. 문제는 보내는 사람의 이메일 주소가 회사 계정이어야된다는 점이었다. 왜 이런 예제는 없지요 wono | discuss | tweet
+ it ops sql submenu json SQL Select to JSON for Menu StructureI was looking for help with a query which will produce the output in JSON that I could use to populate a Menu, thus the JSON needs to create the menu structure. Here are the two tables that I have,... wono | discuss | tweet
+ it ops kysely menu Utilizing Complex Queries - Mastering Kysely: The Essential GuideKysely enables powerful complex queries through its fluent API. You can construct sophisticated queries using methods like leftJoin, innerJoin, where, and ... wono | discuss | tweet
+ 생활 자동차 현대차, 기아차의 침묵 속에 피해는 소비자만 (세타 2 MPI 엔진 결함)현대차, 기아차의 침묵 속에 피해는 소비자만 (세타 2 MPI 엔진 결함) 내 차는 2010년식 YF 소나타이... wono | discuss | tweet