+ it dev react jotai Advanced State Management in React with Jotai (TypeScript)This guide covers: Basic Atoms Dependent Atoms Async Atoms with loadable Scoped Providers Accessing... Tagged with jotai, react, atomic, statemanagement. wono | discuss | tweet + 생활 자동차 GDI인젝터 교체 - 포르테쿱.. 망할 놈..사실 이 모든 엔진 리빌드의 원흉은.... 이 녀석 때문입니다.. 촉매기능저하.. 하... 사실 노답입니다...ㅋ... wono | discuss | tweet + 생활 자동차 인젝터 인젝터 교체 비용 너무 비싼데... 클리닝 해도 시동 잘 걸릴까인젝터 교체 비용 너무 비싼데... 클리닝 해도 시동 잘 걸릴까요? 제가 작년 이맘때 인젝터 문제라고 해서 2백만원 주고 교체할 뻔했는데, 결국 10만원에 해결했고 그 극적인 스토리도 이따 쓸게요. wono | discuss | tweet + it dev typescript typeguard Custom Type guards in TypescriptCustom type guards are often used when dealing with data coming from the outside world. This is particularly useful when the TypeScript compiler can't determine the exact type of the data but you, as a developer, have more knowledge about its structure and types. wono | discuss | tweet + it dev typescript dynamic type TypeScript Object with Dynamic Keys | BasedashThis post provides a comprehensive guide on working with TypeScript objects that have dynamic keys, covering various techniques and scenarios. wono | discuss | tweet + it dev nextjs jotai Async Atoms — Easy State Management in Next.js with JotaiJotai also supports async atoms. Async atoms are atoms that can be read and written asynchronously. You can create an async atom using the atom function and loadable function from the jotai/utils… wono | discuss | tweet + it dev typescript 함수형 React 컴포넌트 시대, defaultProps는 더 이상 필요하지 않다. - point of view.React 컴포넌트를 타입스크립트로 작성할 때 컴포넌트가 Props를 받기 위해서는 Props의 타입을 선언해줘야 한다. Props의 타입을 선언하는 방법에는 interface를 사용하거나 type을 사용하는 두 가지가 있다. (혹은 인라인으로 타입을… wono | discuss | tweet + it dev shadcnui selectbox combobox Integrate/add react-select library with shadcn select component · Issue #927 · shadcn-ui/uiIntegrate react-select library with shadcn ui select component and design system which gives features like multi-select, async-select, creatable-select, select-animations, etc. (just like command component Integrate with cmdk library) Ex... wono | discuss | tweet + it dev typescript eslint eslint-plugin-import/docs/rules/no-anonymous-default-export.md at main · import-js/eslint-plugin-importESLint plugin with rules that help validate proper imports. - eslint-plugin-import/docs/rules/no-anonymous-default-export.md at main · import-js/eslint-plugin-import wono | discuss | tweet + it dev react state React Official Documentation Recommends Passing setState to Child ComponentsIn the official React documentation, there's an example where the setState function is passed down to child components: import { useState } from 'react'; function FilterableProductTable({ products... wono | discuss | tweet + it dev react typescript Typescript useState: SetState in Child with argumentHow can I pass down setState to a child component and use the c argument without a typescript error? Parent: Passing down setState export interface State { value1: string; value2: string; } wono | discuss | tweet + it dev react values [react] form을 다루는 5가지 방법react에서 form을 다루는 방법은 여러가지가 있고 어떤식으로 사용할 수 있는지 한번 알아보자. 다음와 같은 로그인 form이 있다. 아주 간단한 양식이지만 react에서는 여러가지 방식으로 form을 사용할 수 있다. 위 화면에는 Email과 password 필드가 있고 전송 버튼을 클릭할 때 일반적으로 해당 값으로 ajax를 통해 서버를 호출한다. 여기서는 서버로 요청하기 전에 해당 필드의 값을 어떻게 얻어낼 수 있는지에 대한 방법을 알아본다. 사용가능한 방법은 아래와 같다. State와 Handler 사용하는 방법 Ref를 사용하는 방법 FormData와 브라우저 API 사용 Custom Hook 사용하기 React Forms Library 사용하기 1. State와 Handler 사용하는 방법.. wono | discuss | tweet + it dev react #11. React화면에서 각 항목의 Input Value을 가져오기#10. React 링크서비스 등록 및 편집 화면 개발(등록화면 디자인) #10. React 링크서비스 등록 및 편집 화면 개발(등록화면 디자인) #9. 초화면 디자인 ( CSS 적용 및 화면 Component제작 ) #9. 초화면 디자인 ( CSS 적용 및 화면 Component제작 ) #8. 프론트엔드 화면개발 (component 제작) #8. 프론트엔드 화면개발 (component 제작) #7. 프론트엔드 firstvalue.tistory.com 등록 및 편집화면 디자인이 되었으니, 이젠 입력 기능을 만들어 보자. React화면에서 각 항목의 Input Value을 가져오기 ⌘ links.create.jsx ( 위치: linkservice/client/src/component/links.create.. wono | discuss | tweet + it dev shadcnui datetimepicker Feature request: Time picker · Issue #255 · shadcn-ui/uiBeautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source. - Feature request: Time picker · Issue #255 · shadcn-ui/ui wono | discuss | tweet + it dev typescript declare global 타입스크립트 declare 사용법declare 키워드 기능 환경 선언(ambient declarations) 만들 때 사용 네임스페이스 확장으로 특정 모듈이나 변수, 함수, 클래스 등이 존재한다는 것을 TypeScript 컴파일러에게 알릴 때 사용 d.ts를 통한 분리 관리 1. 환경 선언(Ambient Declarations) declare를 사용하는 환경 선언은 TypeScript에게 특정 변수나 모듈이 존재한다고 알리기 위해 사용된다. 주로 외부 자바스크립트 라이브러리나 환경에 존재하는 변수들에 대한 타입 정보를 제공할 때 사용한다. 예시 전역 변수 선언 전역 변수 MY_GLOBAL이 자바스크립트 환경에서 이미 존재한다고 가정할 때, 다음과 같이 TypeScript에게 이 변수의 존재와 타입을 알릴 수 있다. TypeScript .. wono | discuss | tweet + it ops db type MySQL :: MySQL Workbench Manual :: 10.6.4 PostgreSQL Type Mapping wono | discuss | tweet + it dev nextjs s3 presignedurl Next.js 에서의 대용량 파일 s3 업로드서버에 파일을 적재하지 않고 프론트엔드에서 다이렉트로 s3 버켓에 대용량 파일을 업로드 해봅시다 wono | discuss | tweet + it ops aws ses 117.AWS SES로 1주일안에 메일서비스 구축AWS SES서비스 사용하기 | <1> AWS SES로 1주일 안에 메일서비스를 구축하자. <2> SES 작업 순서 <1> AWS SES로 1주일 안에 메일서비스를 구축하자 대량 메일을 보내도록 메일 서버를 구축해보자. 2가지는 필수로 설정해야 한다. 1. 보내는 도메인이 검증된 도메인인지 인증하기 (필수) 2. 메일 발송수 증가 신청하기 (필수) - Sandbox 해제 해야 wono | discuss | tweet + it dev nextjs form multipage Build a multi step form with React Hook Forms (Nextjs)Welcome to my personal portfolio and blog! My name is Samuel Omanchi. I am a frontend developer with a passion for creating intuitive and engaging user experiences. Explore my portfolio to see some of my recent projects, and check out my blog for insights on frontend development and the latest industry trends. wono | discuss | tweet + it dev nextjs react multipage 멀티페이지 폼을 아름답게 만들면서 멋지게 유효성 검사하기ReactHookForm과 Zod 그리고 shadcn/ui를 사용하여 멀티페이지 폼 만들기 | 미량의 개발 블로그, miryang.dev wono | discuss | tweetNext
+ it dev react jotai Advanced State Management in React with Jotai (TypeScript)This guide covers: Basic Atoms Dependent Atoms Async Atoms with loadable Scoped Providers Accessing... Tagged with jotai, react, atomic, statemanagement. wono | discuss | tweet
+ 생활 자동차 GDI인젝터 교체 - 포르테쿱.. 망할 놈..사실 이 모든 엔진 리빌드의 원흉은.... 이 녀석 때문입니다.. 촉매기능저하.. 하... 사실 노답입니다...ㅋ... wono | discuss | tweet
+ 생활 자동차 인젝터 인젝터 교체 비용 너무 비싼데... 클리닝 해도 시동 잘 걸릴까인젝터 교체 비용 너무 비싼데... 클리닝 해도 시동 잘 걸릴까요? 제가 작년 이맘때 인젝터 문제라고 해서 2백만원 주고 교체할 뻔했는데, 결국 10만원에 해결했고 그 극적인 스토리도 이따 쓸게요. wono | discuss | tweet
+ it dev typescript typeguard Custom Type guards in TypescriptCustom type guards are often used when dealing with data coming from the outside world. This is particularly useful when the TypeScript compiler can't determine the exact type of the data but you, as a developer, have more knowledge about its structure and types. wono | discuss | tweet
+ it dev typescript dynamic type TypeScript Object with Dynamic Keys | BasedashThis post provides a comprehensive guide on working with TypeScript objects that have dynamic keys, covering various techniques and scenarios. wono | discuss | tweet
+ it dev nextjs jotai Async Atoms — Easy State Management in Next.js with JotaiJotai also supports async atoms. Async atoms are atoms that can be read and written asynchronously. You can create an async atom using the atom function and loadable function from the jotai/utils… wono | discuss | tweet
+ it dev typescript 함수형 React 컴포넌트 시대, defaultProps는 더 이상 필요하지 않다. - point of view.React 컴포넌트를 타입스크립트로 작성할 때 컴포넌트가 Props를 받기 위해서는 Props의 타입을 선언해줘야 한다. Props의 타입을 선언하는 방법에는 interface를 사용하거나 type을 사용하는 두 가지가 있다. (혹은 인라인으로 타입을… wono | discuss | tweet
+ it dev shadcnui selectbox combobox Integrate/add react-select library with shadcn select component · Issue #927 · shadcn-ui/uiIntegrate react-select library with shadcn ui select component and design system which gives features like multi-select, async-select, creatable-select, select-animations, etc. (just like command component Integrate with cmdk library) Ex... wono | discuss | tweet
+ it dev typescript eslint eslint-plugin-import/docs/rules/no-anonymous-default-export.md at main · import-js/eslint-plugin-importESLint plugin with rules that help validate proper imports. - eslint-plugin-import/docs/rules/no-anonymous-default-export.md at main · import-js/eslint-plugin-import wono | discuss | tweet
+ it dev react state React Official Documentation Recommends Passing setState to Child ComponentsIn the official React documentation, there's an example where the setState function is passed down to child components: import { useState } from 'react'; function FilterableProductTable({ products... wono | discuss | tweet
+ it dev react typescript Typescript useState: SetState in Child with argumentHow can I pass down setState to a child component and use the c argument without a typescript error? Parent: Passing down setState export interface State { value1: string; value2: string; } wono | discuss | tweet
+ it dev react values [react] form을 다루는 5가지 방법react에서 form을 다루는 방법은 여러가지가 있고 어떤식으로 사용할 수 있는지 한번 알아보자. 다음와 같은 로그인 form이 있다. 아주 간단한 양식이지만 react에서는 여러가지 방식으로 form을 사용할 수 있다. 위 화면에는 Email과 password 필드가 있고 전송 버튼을 클릭할 때 일반적으로 해당 값으로 ajax를 통해 서버를 호출한다. 여기서는 서버로 요청하기 전에 해당 필드의 값을 어떻게 얻어낼 수 있는지에 대한 방법을 알아본다. 사용가능한 방법은 아래와 같다. State와 Handler 사용하는 방법 Ref를 사용하는 방법 FormData와 브라우저 API 사용 Custom Hook 사용하기 React Forms Library 사용하기 1. State와 Handler 사용하는 방법.. wono | discuss | tweet
+ it dev react #11. React화면에서 각 항목의 Input Value을 가져오기#10. React 링크서비스 등록 및 편집 화면 개발(등록화면 디자인) #10. React 링크서비스 등록 및 편집 화면 개발(등록화면 디자인) #9. 초화면 디자인 ( CSS 적용 및 화면 Component제작 ) #9. 초화면 디자인 ( CSS 적용 및 화면 Component제작 ) #8. 프론트엔드 화면개발 (component 제작) #8. 프론트엔드 화면개발 (component 제작) #7. 프론트엔드 firstvalue.tistory.com 등록 및 편집화면 디자인이 되었으니, 이젠 입력 기능을 만들어 보자. React화면에서 각 항목의 Input Value을 가져오기 ⌘ links.create.jsx ( 위치: linkservice/client/src/component/links.create.. wono | discuss | tweet
+ it dev shadcnui datetimepicker Feature request: Time picker · Issue #255 · shadcn-ui/uiBeautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source. - Feature request: Time picker · Issue #255 · shadcn-ui/ui wono | discuss | tweet
+ it dev typescript declare global 타입스크립트 declare 사용법declare 키워드 기능 환경 선언(ambient declarations) 만들 때 사용 네임스페이스 확장으로 특정 모듈이나 변수, 함수, 클래스 등이 존재한다는 것을 TypeScript 컴파일러에게 알릴 때 사용 d.ts를 통한 분리 관리 1. 환경 선언(Ambient Declarations) declare를 사용하는 환경 선언은 TypeScript에게 특정 변수나 모듈이 존재한다고 알리기 위해 사용된다. 주로 외부 자바스크립트 라이브러리나 환경에 존재하는 변수들에 대한 타입 정보를 제공할 때 사용한다. 예시 전역 변수 선언 전역 변수 MY_GLOBAL이 자바스크립트 환경에서 이미 존재한다고 가정할 때, 다음과 같이 TypeScript에게 이 변수의 존재와 타입을 알릴 수 있다. TypeScript .. wono | discuss | tweet
+ it ops db type MySQL :: MySQL Workbench Manual :: 10.6.4 PostgreSQL Type Mapping wono | discuss | tweet
+ it dev nextjs s3 presignedurl Next.js 에서의 대용량 파일 s3 업로드서버에 파일을 적재하지 않고 프론트엔드에서 다이렉트로 s3 버켓에 대용량 파일을 업로드 해봅시다 wono | discuss | tweet
+ it ops aws ses 117.AWS SES로 1주일안에 메일서비스 구축AWS SES서비스 사용하기 | <1> AWS SES로 1주일 안에 메일서비스를 구축하자. <2> SES 작업 순서 <1> AWS SES로 1주일 안에 메일서비스를 구축하자 대량 메일을 보내도록 메일 서버를 구축해보자. 2가지는 필수로 설정해야 한다. 1. 보내는 도메인이 검증된 도메인인지 인증하기 (필수) 2. 메일 발송수 증가 신청하기 (필수) - Sandbox 해제 해야 wono | discuss | tweet
+ it dev nextjs form multipage Build a multi step form with React Hook Forms (Nextjs)Welcome to my personal portfolio and blog! My name is Samuel Omanchi. I am a frontend developer with a passion for creating intuitive and engaging user experiences. Explore my portfolio to see some of my recent projects, and check out my blog for insights on frontend development and the latest industry trends. wono | discuss | tweet
+ it dev nextjs react multipage 멀티페이지 폼을 아름답게 만들면서 멋지게 유효성 검사하기ReactHookForm과 Zod 그리고 shadcn/ui를 사용하여 멀티페이지 폼 만들기 | 미량의 개발 블로그, miryang.dev wono | discuss | tweet