it + it dev nextjs aws ecs nextjs 서비스 개발부터 운영까지nextjs 서비스 개발부터 운영까지. GitHub Gist: instantly share code, notes, and snippets. wono | discuss | tweet + it dev nextjs aws ecs 💪도전! 프리티어로 AWS ECS 사용하기: Next.js 배포 자동화 구현하기 (feat. github actions)전에 💪도전! 프리티어로 AWS ECS 사용하기: ECS 클러스터에 EC2 인스턴스 연결 + 간단 배포에서 AWS 콘솔에서 간단히 ECS 실습을 했었다.이제 github actions을 활용해서 진짜 최종 목표인 배포 자동화를 달아보자!바로 시작!!먼저 나는 프리티어 wono | discuss | tweet + it dev nextjs ecs aws AWS Amplify에서 ECS로: Next.js 서비스 배포와 Github Action을 통한 CI/CD 구축AWS Amplify의 문제점을 맞닥뜨리고 해결해나간 과정을 공유합니다. wono | discuss | tweet + it dev shadcn table Unexpected behavior on table horizontal scrolling · Issue #416 · shadcn-ui/uiHi @shadcn! Many thanks for this repo, amazing work 👏 Just noticed a strange behavior on the table component. When the content of the table is larger than the screen, a white space the size of the overflow is created. I have tried severa... wono | discuss | tweet + it dev kysely dummy kysely dummyDocumentation for kysely wono | discuss | tweet + it dev kysely array fn.agg doesn't type-check · Issue #1046 · kysely-org/kyselyThe following query (playground Link): const result = await db.selectFrom('person') .select(({ fn }) => fn.agg<string[]>('array_agg', 'first_name').as('imageNames')) .execute() executes fine in PostgreSQL, but TypeScript complains on 'fi... wono | discuss | tweet + 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 | tweetNext
+ it dev nextjs aws ecs nextjs 서비스 개발부터 운영까지nextjs 서비스 개발부터 운영까지. GitHub Gist: instantly share code, notes, and snippets. wono | discuss | tweet
+ it dev nextjs aws ecs 💪도전! 프리티어로 AWS ECS 사용하기: Next.js 배포 자동화 구현하기 (feat. github actions)전에 💪도전! 프리티어로 AWS ECS 사용하기: ECS 클러스터에 EC2 인스턴스 연결 + 간단 배포에서 AWS 콘솔에서 간단히 ECS 실습을 했었다.이제 github actions을 활용해서 진짜 최종 목표인 배포 자동화를 달아보자!바로 시작!!먼저 나는 프리티어 wono | discuss | tweet
+ it dev nextjs ecs aws AWS Amplify에서 ECS로: Next.js 서비스 배포와 Github Action을 통한 CI/CD 구축AWS Amplify의 문제점을 맞닥뜨리고 해결해나간 과정을 공유합니다. wono | discuss | tweet
+ it dev shadcn table Unexpected behavior on table horizontal scrolling · Issue #416 · shadcn-ui/uiHi @shadcn! Many thanks for this repo, amazing work 👏 Just noticed a strange behavior on the table component. When the content of the table is larger than the screen, a white space the size of the overflow is created. I have tried severa... wono | discuss | tweet
+ it dev kysely array fn.agg doesn't type-check · Issue #1046 · kysely-org/kyselyThe following query (playground Link): const result = await db.selectFrom('person') .select(({ fn }) => fn.agg<string[]>('array_agg', 'first_name').as('imageNames')) .execute() executes fine in PostgreSQL, but TypeScript complains on 'fi... wono | discuss | tweet
+ 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