it + it dev shadcnui table Data Table ignoring column size · Issue #2854 · shadcn-ui/uiHi. I want to set a fixed width on one of my Data Table columns, so I checked TanStack Table docs and found they have size property for the ColumnDef: https://tanstack.com/table/v8/docs/guide/column-sizing But I tried using it and it doe... wono | discuss | tweet + it dev react table expand Expanding Guide | TanStack Table DocsExamples Want to skip to the implementation? Check out these examples: API Expanding Feature Guide Expanding is a feature that allows you to show and hide additional rows of data related to a specific... wono | discuss | tweet + it dev shadcnui expand table Expand and Collapse Table Rows | A shadcn/ui and v0 generationThis is a v0.dev and shadcn/ui generation for the prompt: Expand and Collapse Table Rows wono | discuss | tweet + it dev shadcnui expand table Help expanding items in a table row · shadcn-ui/ui · Discussion #3589Help expanding items in a table row wono | discuss | tweet + it dev shadcnui nextjs Build an Expandable / Collapsible Data Table with 2 shadcn/ui ComponentsWhat you will find in this article? In the modern digital age, the way we present data to... Tagged with nextjs, tailwindcss, tutorial, webdev. wono | discuss | tweet + it blog 혼자서 앱 3000개를 만들고 연 매출 100억을 달성한 1인 개발자, 케빈님이 글은 [조쉬의 뉴스레터]에서 발행되었습니다.퀄리티 있는 프로덕트, 창업가, 비즈니... wono | discuss | tweet + it tech 2025년 Next.js의 7가지 주요 대안 - 더이노베이터스Next.js는 서버사이드 렌더링(SSR), 정적 사이트 생성(SSG) 등으로 현대 웹 개발의 판도를 바꾼 프레임워크입니다. 그러나 더 높은 맞춤화, 성능, 모듈화를 원하는 개발자들이 늘어나면서 Next.js의 대안들도 함께 주목받고 있습니다. wono | discuss | tweet + it news best_way_to_keep_up_with_dev_news_and_current wono | discuss | tweet + it news podcast syntax Syntax - Web Development PodcastFull Stack Web Developers Wes Bos and Scott Tolinski dive deep into web development, CSS, JavaScript, Frameworks, Typescript, Servers and more. Listen in 3 times a week! wono | discuss | tweet + it ops fullstack 오픈소스 Backend AppwriteFirebase 대체제이고 완전 로 유명한 백엔드 오픈소스 Appwrite 에 대해 알아보자. 웹앱, 모바일앱 개발시 많이 사용된다. wono | discuss | tweet + it dev react loop Loop inside React JSX wono | discuss | tweet + it ops db postgresql collate [TIL, 일일 회고] 2024.12.09 - PostgreSQL : 데이터베이스 생성 설정 파라미터 이해하기프로젝트 회고 중 init.sql에 데이터베이스를 생성하는 쿼리문에 대해서 정리하고자 합니다. 데이터베이스 생성 시 사용된 각 설정의 의미와 중요성에 대해 자세히 알아보겠습니다. 데이터베이스 생성 쿼리 살펴보기CREATE DATABASE post WITH OWNER = postgres ENCODING = 'UTF8' LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8' TABLESPACE = pg_default CONNECTION LIMIT = -1; 1. 데이터베이스 이름과 소유자CREATE DATABASE post'post'라는 이름의 새 데이터베이스를 생성합니다.OWNER = postgres데이터베이스의 소유권을 postgres 사.. wono | discuss | tweet + it ops db postgresql collate Postgresql 한글 정렬첨부할 사진이 준비되어 있지 않지만 아무튼 postgresql 을 아무 추가 설정 없이 이용했을 때 한글 정렬에 문제가 있다. 기본적으로 한글을 오름차순 정렬한다고 하면 ㄱ ~ ㅎ 으로 진행되는 것을 기대할 것인데 그렇게 작동하지 않는다. 1. 데이터 베이스 정렬은 Collate 컬럼에 의해 결정된다. -> postgres 접근해서 `\l` 명령어로 확인할 수 있음. 2. 데이터 베이스를 만들 때부터 LC_COLLATE 값을 C 로 설정해서 만들어야 함 -> 이미 만들었다면 dump한 이후 지우고 새로 만든 다음 dump 파일 추가해야 함 dump 하는 방법은 구글링하면 쉽게 찾을 수 있으므로 dump를 진행한 다음에 기존 데이터베이스를 지워주자. 그리고 다음과 같이 데이터베이스를 생성해준다. CREAT.. wono | discuss | tweet + it ops db postgresql collate [AWS]RDS postgresql 한글정렬 문제rds에서 기본데이터베이스 생성시 collate option이 en_US로 되어 orderBy쿼리시 한글정렬이 원하는 대로 되지 않는다.따라서 다음의 과정이 필요하다.c(POSIX)옵션의 경우 아스키코드값으로 비교하는데 한글영어 혼합의 경우 정렬이 정상적으로 되지 않을 wono | discuss | tweet + it ops db rds 프로젝트 삽질기22 (feat 커넥션 풀 누수)들어가며AWS Aurora PostgreSQL를 활용해서 서비스를 운영하고 있습니다. 성능 테스트를 하면서 Writer DB의 Connections 수가 특정 숫자 이상이 되면 커넥션을 더 이상 맺을 수 없어서 장애가 발생한다는 것을 파악했습니다. 장애를 겪을 것을 대비하여 RDS의 connections 수를 트래킹 하며 커넥션 수가 특정 개수 이상이 넘으면, slack으로 알림을 받도록 구성했습니다. 얼마 전, max connections 수가 특정 수를 넘었다는 알림을 받았습니다. 알림을 받은 이후 시간이 지나도, 커넥션 수가 떨어지지 않는 문제가 생겼습니다. 그 과정에서 팀에서는 어떤 문제를 겪었고, 이 문제를 어떻게 해결했는지 공유하고자 글을 씁니다. RDS 커넥션 풀 누.. wono | discuss | tweet + it ops db postgresql collate 도커 postresql 시간대, 언어 설정 방법들의 비교도커 postgresql 의 다양한 환경설정 방법들을 실험하며 차이점을 살펴보겠습니다. wono | discuss | tweet + it ops db postgresql collate 한글과 LC_COLLATE한국어 환경에서 PostgreSQL LC_COLLATE 설정 wono | discuss | tweet + it ops db postgresql collate PostgreSQL 15 한글 검색 설정Postgresql 에서 한글 검색을 위한 encode, collate, ctype 설정 및 gin 인덱스 설정에 대해 알아보자. wono | discuss | tweet + it dev shadcn Using "country-state-city" try to create a country select input consisting of all countries and also create another select input of cities in the country selcted. | A shadcn/ui and v0 generationThis is a v0.dev and shadcn/ui generation for the prompt: Using "country-state-city" try to create a country select input consisting of all countries and also create another select input of cities in the country selcted. wono | discuss | tweet + it dev rhf reacthookform_usefieldarray_issue wono | discuss | tweetNext
+ it dev shadcnui table Data Table ignoring column size · Issue #2854 · shadcn-ui/uiHi. I want to set a fixed width on one of my Data Table columns, so I checked TanStack Table docs and found they have size property for the ColumnDef: https://tanstack.com/table/v8/docs/guide/column-sizing But I tried using it and it doe... wono | discuss | tweet
+ it dev react table expand Expanding Guide | TanStack Table DocsExamples Want to skip to the implementation? Check out these examples: API Expanding Feature Guide Expanding is a feature that allows you to show and hide additional rows of data related to a specific... wono | discuss | tweet
+ it dev shadcnui expand table Expand and Collapse Table Rows | A shadcn/ui and v0 generationThis is a v0.dev and shadcn/ui generation for the prompt: Expand and Collapse Table Rows wono | discuss | tweet
+ it dev shadcnui expand table Help expanding items in a table row · shadcn-ui/ui · Discussion #3589Help expanding items in a table row wono | discuss | tweet
+ it dev shadcnui nextjs Build an Expandable / Collapsible Data Table with 2 shadcn/ui ComponentsWhat you will find in this article? In the modern digital age, the way we present data to... Tagged with nextjs, tailwindcss, tutorial, webdev. wono | discuss | tweet
+ it blog 혼자서 앱 3000개를 만들고 연 매출 100억을 달성한 1인 개발자, 케빈님이 글은 [조쉬의 뉴스레터]에서 발행되었습니다.퀄리티 있는 프로덕트, 창업가, 비즈니... wono | discuss | tweet
+ it tech 2025년 Next.js의 7가지 주요 대안 - 더이노베이터스Next.js는 서버사이드 렌더링(SSR), 정적 사이트 생성(SSG) 등으로 현대 웹 개발의 판도를 바꾼 프레임워크입니다. 그러나 더 높은 맞춤화, 성능, 모듈화를 원하는 개발자들이 늘어나면서 Next.js의 대안들도 함께 주목받고 있습니다. wono | discuss | tweet
+ it news podcast syntax Syntax - Web Development PodcastFull Stack Web Developers Wes Bos and Scott Tolinski dive deep into web development, CSS, JavaScript, Frameworks, Typescript, Servers and more. Listen in 3 times a week! wono | discuss | tweet
+ it ops fullstack 오픈소스 Backend AppwriteFirebase 대체제이고 완전 로 유명한 백엔드 오픈소스 Appwrite 에 대해 알아보자. 웹앱, 모바일앱 개발시 많이 사용된다. wono | discuss | tweet
+ it ops db postgresql collate [TIL, 일일 회고] 2024.12.09 - PostgreSQL : 데이터베이스 생성 설정 파라미터 이해하기프로젝트 회고 중 init.sql에 데이터베이스를 생성하는 쿼리문에 대해서 정리하고자 합니다. 데이터베이스 생성 시 사용된 각 설정의 의미와 중요성에 대해 자세히 알아보겠습니다. 데이터베이스 생성 쿼리 살펴보기CREATE DATABASE post WITH OWNER = postgres ENCODING = 'UTF8' LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8' TABLESPACE = pg_default CONNECTION LIMIT = -1; 1. 데이터베이스 이름과 소유자CREATE DATABASE post'post'라는 이름의 새 데이터베이스를 생성합니다.OWNER = postgres데이터베이스의 소유권을 postgres 사.. wono | discuss | tweet
+ it ops db postgresql collate Postgresql 한글 정렬첨부할 사진이 준비되어 있지 않지만 아무튼 postgresql 을 아무 추가 설정 없이 이용했을 때 한글 정렬에 문제가 있다. 기본적으로 한글을 오름차순 정렬한다고 하면 ㄱ ~ ㅎ 으로 진행되는 것을 기대할 것인데 그렇게 작동하지 않는다. 1. 데이터 베이스 정렬은 Collate 컬럼에 의해 결정된다. -> postgres 접근해서 `\l` 명령어로 확인할 수 있음. 2. 데이터 베이스를 만들 때부터 LC_COLLATE 값을 C 로 설정해서 만들어야 함 -> 이미 만들었다면 dump한 이후 지우고 새로 만든 다음 dump 파일 추가해야 함 dump 하는 방법은 구글링하면 쉽게 찾을 수 있으므로 dump를 진행한 다음에 기존 데이터베이스를 지워주자. 그리고 다음과 같이 데이터베이스를 생성해준다. CREAT.. wono | discuss | tweet
+ it ops db postgresql collate [AWS]RDS postgresql 한글정렬 문제rds에서 기본데이터베이스 생성시 collate option이 en_US로 되어 orderBy쿼리시 한글정렬이 원하는 대로 되지 않는다.따라서 다음의 과정이 필요하다.c(POSIX)옵션의 경우 아스키코드값으로 비교하는데 한글영어 혼합의 경우 정렬이 정상적으로 되지 않을 wono | discuss | tweet
+ it ops db rds 프로젝트 삽질기22 (feat 커넥션 풀 누수)들어가며AWS Aurora PostgreSQL를 활용해서 서비스를 운영하고 있습니다. 성능 테스트를 하면서 Writer DB의 Connections 수가 특정 숫자 이상이 되면 커넥션을 더 이상 맺을 수 없어서 장애가 발생한다는 것을 파악했습니다. 장애를 겪을 것을 대비하여 RDS의 connections 수를 트래킹 하며 커넥션 수가 특정 개수 이상이 넘으면, slack으로 알림을 받도록 구성했습니다. 얼마 전, max connections 수가 특정 수를 넘었다는 알림을 받았습니다. 알림을 받은 이후 시간이 지나도, 커넥션 수가 떨어지지 않는 문제가 생겼습니다. 그 과정에서 팀에서는 어떤 문제를 겪었고, 이 문제를 어떻게 해결했는지 공유하고자 글을 씁니다. RDS 커넥션 풀 누.. wono | discuss | tweet
+ it ops db postgresql collate 도커 postresql 시간대, 언어 설정 방법들의 비교도커 postgresql 의 다양한 환경설정 방법들을 실험하며 차이점을 살펴보겠습니다. wono | discuss | tweet
+ it ops db postgresql collate 한글과 LC_COLLATE한국어 환경에서 PostgreSQL LC_COLLATE 설정 wono | discuss | tweet
+ it ops db postgresql collate PostgreSQL 15 한글 검색 설정Postgresql 에서 한글 검색을 위한 encode, collate, ctype 설정 및 gin 인덱스 설정에 대해 알아보자. wono | discuss | tweet
+ it dev shadcn Using "country-state-city" try to create a country select input consisting of all countries and also create another select input of cities in the country selcted. | A shadcn/ui and v0 generationThis is a v0.dev and shadcn/ui generation for the prompt: Using "country-state-city" try to create a country select input consisting of all countries and also create another select input of cities in the country selcted. wono | discuss | tweet