+ it dev css center W3Schools.comWell organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more. wono | discuss | tweet + it ops aws billing 변경된 AWS CLOUD 세금설정 방법 (2020년 업데이트), feat AWS KOREAAWS CLOUD의 청구 사업자가 AWS 본사에서 AWS KOREA로 바뀌면서 AWS CLOUD 세금설정 화면이 수정됬네요 서비스공급자가 아마존 미국법인에서 한국법인으로 바뀐다는 안내를 받았었는데, 이런 중요한 업데이트가 있으면 서비스공급자 변경 안내할 때 같이 좀 알려주면 좋지 않았을까~ 신규 계정 등록하는데, 이렇게 또 삽질을 하게 만드네. 외국사업자들 분발 좀 하쇼~ 예전과 달라진 점은, ㅇ 세금등록번호(Tax Registration Number) 예전에는 '세금등록번호'라는 곳에 사업자등록번호를 'KR'앞에 붙여서, KR114-88-12345 이런 식으로 작성했었는데, 'KR'을 떼고, 등록번호만 입력 ㅇ세금등록증명서(사업자등록증) 첨부 기능 신설 예전에는 사업자등록번호만 맞게 등록하며 됬었는데,.. wono | discuss | tweet + it ops aws billing 세금 도움말 - 대한민국 wono | discuss | tweet + it ops aws ec2 [AWS] 📚 EC2 요금 모델 💰 정말 알기 쉽게 설명EC2 4가지 가격 모델 AWS EC2 인스턴스에 대한 요금을 지불하는 방법에는 온 디맨드 인스턴스, 예약 인스턴스, 스팟 인스턴스 및 전용 호스트의 네 가지 방법이 존재한다. 이렇게 가격 모델을 나눈 이뉴는 일종의 마케팅 전략이라고 보면 된다. 대신 소비자 입장에서도 더욱 저렴하게 필요할때만 쓸수 있어 사용량 요금을 절약할 수 있으니, 클라우드를 사용한다고 마음을 먹었다면, aws 가격정책 모델에 대해서 이해는 필수이라고 봐도 된다. AWS EC2 요금제 지불하는 방식이 AWS 공식사이트에도 명시되어 있지만, 보다 명확하면서도 이해되기 쉽게 재정리 해본다. 온 디멘드 (On-Demand Pricing) 온 디맨드 인스턴스를 사용하면 실행하는 인스턴스에 따라 시간당 또는 초당 컴퓨팅 용량을 지불하게 된다.. wono | discuss | tweet + it dev css tip Combining CSS :has() And HTML <select> For Greater Conditional Styling — Smashing Magazine``` #form-part select:has(option:not([value=""]):checked) { color: #555; } ``` wono | discuss | tweet + it dev javascript error Javascript console.log errors: how to see the real object of the ErrorWhen console.logging errors, the browser prints a differently styled output than if it were a normal object. How can you force Google / Firefox to print the real object of the Error class instead o... wono | discuss | tweet + it dev nextjs port How to Set port in next.jsOne application is running on port 3000 and I want to run another application on a different port from the default port, which is 3000. How do I change this in React Next.js? My package.json curren... wono | discuss | tweet + it ops db mysql dump mysql DUMP사용dump 옵션 –single-transaction : dump를 하나의 트랜잭션을 이용해서 실행함 (InnoDB 스토리지 엔진을 사용하는 테이블에 대해서는 Lock없이 일관된 덤프를 받을 수 있음). 자세한 내용은 아래 “일관된 데이터 덤프 받기” 참조 –flush-logs : dump를 시작하는 시점에 binary log를 rotation 시키도록 한다. Binary log를 증분 백업용으로 사용하는 경우, 풀백업과 증분 백업의 구분을 명확히 할 수 있다. –master-data : 이… wono | discuss | tweet + it ops db mysql dump mysqldump 사용시 주의점mysqldump는 mysql, mariadb 에서 데이터 백업시 주로 사용하는 백업방법 중 하나이다. 개발 DB에서 사용할 때는 문제가 없지만 서비스 DB에서 이걸 사용한다면 한가지 주의할 점이 있다. 모르고 그냥 사용하게 된다면 TABLE LOCK 때문에 서비스 장애를 일으킬 수 있다. mysqldump는 여러 옵션이 있는데 그것을 모르고 default 옵션만 놓고 사용한다면 문제가 발생한다. 1. default 옵션사용시 ex) mysqldump -uroot -p비번 xxxxDB TB_TEST_HIST > TB_TEST_HIST_20230110.sql MariaDB [(none)]> show processlist; +----------+-------------+---------------------.. wono | discuss | tweet + it ops db mysql dump [Mysql] mysql dump 사용법데이터 백업 : mysqldump는 모든 데이터베이스 테이블의 내용을 SQL 명령으로 추출하여, 이를 통해 테이블 생성과 데이터 삽입을 할 수 있는 SQL 스크립트를 생성합니다.데이터 복원 : 생성된 덤프 파일은 mysql 명령어 라인 유틸리티를 사용하여 MySQL 데 wono | discuss | tweet + it ops db postgresql varchar Don't Do This - PostgreSQL wiki wono | discuss | tweet + it ops db postgresql Should I add an arbitrary length limit to VARCHAR columns?According to PostgreSQL's docs, there's no performance difference between VARCHAR, VARCHAR(n) and TEXT. Should I add an arbitrary length limit to a name or address column? Edit: Not a dupe of: W... wono | discuss | tweet + it ops code error Differences in Javascript with throwing and return errorThis blog is to differentiate the throwing an error with returning an error. In project, I found different people have different ways of handling errors, but when people work together, this kind of… wono | discuss | tweet + it ops code error Why is it better to throw an exception rather than return an error code?Legacy error handling tends to follow the method that all functions return a code depending on success/failure. You would check this code and handle (if an error) appropriately. Modern programming wono | discuss | tweet + it dev nextjs Globally disable eslint “import/no-anonymous-default-export” on vscodeAllow me to introduce you to the coolest default override in the world: anonymous default exports. wono | discuss | tweet + it dev nextjs lint Next lint not working on files anywhere other than the ones inside the pages folderI have a FRESHLY installed NextJS app with TypeScript. I am using Next V12, when I run yarn lint, it runs next lint and shows no errors. And now when I add an extra rule in the .eslintrc file like... wono | discuss | tweet + 업무 도구 생산성 협업 Obsidian, 이제 업무용으로 무료 이용 가능 | GeekNews이제 Obsidian을 업무에서도 무료로 사용할 수 있음기존의 Obsidian 상업용(Commercial) 라이선스는 선택 사항으로 변경변하는 것은 없음 : 기능 제한 없음, 계정 생성 불필요, 광고 없음, 추적 없음, 데이터는 로컬에 마크다운으로 저장변경 이유 : 단순함을 위해기존 상업용 라이선스 정책이 복잡하고 혼란을 초래Obsidian의 철학: 모든 wono | discuss | tweet + it tip font 최고의 프로그래밍 폰트는? | Eric Han's IT Blog wono | discuss | tweet + it dev nextjs auth Next.js Authentication Best PracticesExplore key Next.js authentication best practices, including middleware vs. page component auth, preserving static rendering, and implementing multi-layered protection. Next.js authentication is the… wono | discuss | tweet + it dev nextjs auth rbac How to Add RBAC Authorization in Next.jsAuthorization, the process in our applications that determines what users can perform on which resources, is a crucial requirement for every application. Implementing Role-Based Access Control (RBAC)… wono | discuss | tweetNext
+ it dev css center W3Schools.comWell organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more. wono | discuss | tweet
+ it ops aws billing 변경된 AWS CLOUD 세금설정 방법 (2020년 업데이트), feat AWS KOREAAWS CLOUD의 청구 사업자가 AWS 본사에서 AWS KOREA로 바뀌면서 AWS CLOUD 세금설정 화면이 수정됬네요 서비스공급자가 아마존 미국법인에서 한국법인으로 바뀐다는 안내를 받았었는데, 이런 중요한 업데이트가 있으면 서비스공급자 변경 안내할 때 같이 좀 알려주면 좋지 않았을까~ 신규 계정 등록하는데, 이렇게 또 삽질을 하게 만드네. 외국사업자들 분발 좀 하쇼~ 예전과 달라진 점은, ㅇ 세금등록번호(Tax Registration Number) 예전에는 '세금등록번호'라는 곳에 사업자등록번호를 'KR'앞에 붙여서, KR114-88-12345 이런 식으로 작성했었는데, 'KR'을 떼고, 등록번호만 입력 ㅇ세금등록증명서(사업자등록증) 첨부 기능 신설 예전에는 사업자등록번호만 맞게 등록하며 됬었는데,.. wono | discuss | tweet
+ it ops aws ec2 [AWS] 📚 EC2 요금 모델 💰 정말 알기 쉽게 설명EC2 4가지 가격 모델 AWS EC2 인스턴스에 대한 요금을 지불하는 방법에는 온 디맨드 인스턴스, 예약 인스턴스, 스팟 인스턴스 및 전용 호스트의 네 가지 방법이 존재한다. 이렇게 가격 모델을 나눈 이뉴는 일종의 마케팅 전략이라고 보면 된다. 대신 소비자 입장에서도 더욱 저렴하게 필요할때만 쓸수 있어 사용량 요금을 절약할 수 있으니, 클라우드를 사용한다고 마음을 먹었다면, aws 가격정책 모델에 대해서 이해는 필수이라고 봐도 된다. AWS EC2 요금제 지불하는 방식이 AWS 공식사이트에도 명시되어 있지만, 보다 명확하면서도 이해되기 쉽게 재정리 해본다. 온 디멘드 (On-Demand Pricing) 온 디맨드 인스턴스를 사용하면 실행하는 인스턴스에 따라 시간당 또는 초당 컴퓨팅 용량을 지불하게 된다.. wono | discuss | tweet
+ it dev css tip Combining CSS :has() And HTML <select> For Greater Conditional Styling — Smashing Magazine``` #form-part select:has(option:not([value=""]):checked) { color: #555; } ``` wono | discuss | tweet
+ it dev javascript error Javascript console.log errors: how to see the real object of the ErrorWhen console.logging errors, the browser prints a differently styled output than if it were a normal object. How can you force Google / Firefox to print the real object of the Error class instead o... wono | discuss | tweet
+ it dev nextjs port How to Set port in next.jsOne application is running on port 3000 and I want to run another application on a different port from the default port, which is 3000. How do I change this in React Next.js? My package.json curren... wono | discuss | tweet
+ it ops db mysql dump mysql DUMP사용dump 옵션 –single-transaction : dump를 하나의 트랜잭션을 이용해서 실행함 (InnoDB 스토리지 엔진을 사용하는 테이블에 대해서는 Lock없이 일관된 덤프를 받을 수 있음). 자세한 내용은 아래 “일관된 데이터 덤프 받기” 참조 –flush-logs : dump를 시작하는 시점에 binary log를 rotation 시키도록 한다. Binary log를 증분 백업용으로 사용하는 경우, 풀백업과 증분 백업의 구분을 명확히 할 수 있다. –master-data : 이… wono | discuss | tweet
+ it ops db mysql dump mysqldump 사용시 주의점mysqldump는 mysql, mariadb 에서 데이터 백업시 주로 사용하는 백업방법 중 하나이다. 개발 DB에서 사용할 때는 문제가 없지만 서비스 DB에서 이걸 사용한다면 한가지 주의할 점이 있다. 모르고 그냥 사용하게 된다면 TABLE LOCK 때문에 서비스 장애를 일으킬 수 있다. mysqldump는 여러 옵션이 있는데 그것을 모르고 default 옵션만 놓고 사용한다면 문제가 발생한다. 1. default 옵션사용시 ex) mysqldump -uroot -p비번 xxxxDB TB_TEST_HIST > TB_TEST_HIST_20230110.sql MariaDB [(none)]> show processlist; +----------+-------------+---------------------.. wono | discuss | tweet
+ it ops db mysql dump [Mysql] mysql dump 사용법데이터 백업 : mysqldump는 모든 데이터베이스 테이블의 내용을 SQL 명령으로 추출하여, 이를 통해 테이블 생성과 데이터 삽입을 할 수 있는 SQL 스크립트를 생성합니다.데이터 복원 : 생성된 덤프 파일은 mysql 명령어 라인 유틸리티를 사용하여 MySQL 데 wono | discuss | tweet
+ it ops db postgresql Should I add an arbitrary length limit to VARCHAR columns?According to PostgreSQL's docs, there's no performance difference between VARCHAR, VARCHAR(n) and TEXT. Should I add an arbitrary length limit to a name or address column? Edit: Not a dupe of: W... wono | discuss | tweet
+ it ops code error Differences in Javascript with throwing and return errorThis blog is to differentiate the throwing an error with returning an error. In project, I found different people have different ways of handling errors, but when people work together, this kind of… wono | discuss | tweet
+ it ops code error Why is it better to throw an exception rather than return an error code?Legacy error handling tends to follow the method that all functions return a code depending on success/failure. You would check this code and handle (if an error) appropriately. Modern programming wono | discuss | tweet
+ it dev nextjs Globally disable eslint “import/no-anonymous-default-export” on vscodeAllow me to introduce you to the coolest default override in the world: anonymous default exports. wono | discuss | tweet
+ it dev nextjs lint Next lint not working on files anywhere other than the ones inside the pages folderI have a FRESHLY installed NextJS app with TypeScript. I am using Next V12, when I run yarn lint, it runs next lint and shows no errors. And now when I add an extra rule in the .eslintrc file like... wono | discuss | tweet
+ 업무 도구 생산성 협업 Obsidian, 이제 업무용으로 무료 이용 가능 | GeekNews이제 Obsidian을 업무에서도 무료로 사용할 수 있음기존의 Obsidian 상업용(Commercial) 라이선스는 선택 사항으로 변경변하는 것은 없음 : 기능 제한 없음, 계정 생성 불필요, 광고 없음, 추적 없음, 데이터는 로컬에 마크다운으로 저장변경 이유 : 단순함을 위해기존 상업용 라이선스 정책이 복잡하고 혼란을 초래Obsidian의 철학: 모든 wono | discuss | tweet
+ it dev nextjs auth Next.js Authentication Best PracticesExplore key Next.js authentication best practices, including middleware vs. page component auth, preserving static rendering, and implementing multi-layered protection. Next.js authentication is the… wono | discuss | tweet
+ it dev nextjs auth rbac How to Add RBAC Authorization in Next.jsAuthorization, the process in our applications that determines what users can perform on which resources, is a crucial requirement for every application. Implementing Role-Based Access Control (RBAC)… wono | discuss | tweet