it + it arc composite ui pattern 마이크로서비스 관계 패턴 - UI 패턴마이크로서비스 외부 아키텍처중 마이크로서비스 관계에 대한 패턴을 살펴보자. wono | discuss | tweet + it dev nextjs shadcnui GitHub - Kiranism/next-shadcn-dashboard-starter: Admin Dashboard Starter with Nextjs14 and shadcn uiAdmin Dashboard Starter with Nextjs14 and shadcn ui - Kiranism/next-shadcn-dashboard-starter wono | discuss | tweet + it db uuid postgresql PostgreSQL에서 PK로 UUID를 사용할 때 고려해야 하는 성능 이슈UUID는 중복을 방지하고 예측할 수 없는 값이기 때문에 Primary Key의 값으로 좋은 선택지입니다.하지만 UUID로 인해 성능 이슈가 발생할 수 있는 여지가 있고 이를 개발자 수준에서 고려하고 적절히 대처해야 합니다.이번 포스팅에서는 PostgreSQL 기준으로 UUID 사용 시 발생할 수 있는 성능 이슈에 대해 정리하려 합니다. UUID 저장 시 UUID 전용 데이터 타입에 저장하기흔히 UUID를 저장하기 위한 데이터 타입으로 Text 타입 혹은 String 타입을 사용합니다.uuid는 128 비트 길이의 값을 생성하기 때문에 메모리 상에서 16바이트의 공간을 차지합니다.( 1byte = 8bit, 128bit / 8bit = 16byte ) 이런 uuid 값의 길이는 항상 고정적이기 때문에 P.. wono | discuss | tweet + it db uuid postgresql Use data type uuid or varchar(36) for my UUID column? wono | discuss | tweet + it dev spring GitHub - amira921/Todo-List-Microservices: This project follows a microservices, client-server architectures, consisting of separate services for authentication and managing to-do items, each exposing RESTful APIsThis project follows a microservices, client-server architectures, consisting of separate services for authentication and managing to-do items, each exposing RESTful APIs - amira921/Todo-List-Microservices wono | discuss | tweet + it blog python msa Build a Todo App Using a Microservices Architecture and Use Auth Service to Protect Its RoutesIn part one I showed how to build an auth microservices using Django, protecting his routes with a decorator to verify if the user is authorized to interact with his views. If you missed it, take a… wono | discuss | tweet + it blog python msa How To Protect Your MicroservicesWhen I started learning about microservices I wondered how I could protect the services and be sure the user was authorized to use the APIs. I was pretty confident about how to structure an… wono | discuss | tweet + it dev python msa An Authentication Pattern for microservices using DjangoHow can we design the authentication for microservices written in Django following one of its main principles ? Most of early stage APIs are developed using a monolithic architecture, meaning that… wono | discuss | tweet + it dev flutter jwt [Flutter] Token Login / Auth 구현하기Token Login / Auth 구현하기 https://nx006.tistory.com/64 Session VS Token Authentication - feat. JWT 기술 Authentication 앱을 만들 때 회원가입/로그인 기능을 구현해야 할 때가 있습니다. 인증 및 인가된 사용자에게 앱의 기능을 사용할 수 있게 하기 위해서는, 로그인이라는 Authentication(인증) 기능을 거 nx006.tistory.com 이전 글에서 Session 로그인과 Token Login 방식에 대해서 알아봤습니다. 이번 글에서는 어떻게 하면 Flutter에서 Token 로그인 방식을 관리할 수 있는지, 클라이언트 관점에서 구현해보겠습니다. 이 방법은 코드팩토리 님의 Flutter 강의를 듣고서 정리한 글입.. wono | discuss | tweet + it qa rest 수정이라는 작업을 할 때 PUT을 더 사용하는 이유가 있을까요? - 인프런 | 커뮤니티 질문&답변누구나 함께하는 인프런 커뮤니티. 모르면 묻고, 해답을 찾아보세요. wono | discuss | tweet + it dev spring jwt GitHub - caglayantolga/springboot-role-based-jwt-security-rest-api: Sample project on how to implement JWT security role based using Spring boot 3 and Spring security 6Sample project on how to implement JWT security role based using Spring boot 3 and Spring security 6 - caglayantolga/springboot-role-based-jwt-security-rest-api wono | discuss | tweet + it tool adaptive-cards 적응 카드 개요 - Adaptive Cards wono | discuss | tweet + it term itsm itil [DT 시대의 ITSM] ① ITSM과 ITI.. : 네이버블로그 wono | discuss | tweet + it tool dbeaver virtual er diagram export · Issue #22028 · dbeaver/dbeaverWhen I created a connection in my er diagram and wanted to export it to share with the rest of my team via a virtual foreign key, I found that I couldn't find this functionality and I couldn't even find an alternative. wono | discuss | tweet + it tool dbeaver dbeaver foreign key 설정 명령어 없이 간단하게 해 봅시다. - Codingdog Blogforeign key는 어떤 속성에서 다른 속성을 참조하기 위해 쓰이는 키입니다. 명령어 한 줄 없이 dbeaver에서 foreign key를 생성하고 설정하는 방법에 대해서 간단하게 알아보도록 하겠습니다. wono | discuss | tweet + it blog arc id 리소스의 고유한 식별자는 어떤 형식을 사용해야할까?Software Developer, I love code. wono | discuss | tweet + it tool dbeaver portable DBeaver portable 버전 장점DBeaver 포터블(portable) 버전 장점은 회사 PC에서 사용하는 버전을 폴더 단위로 압축하여 집에서 같은 환경을 구성 할 수 있습니다. wono | discuss | tweet + it dev jest mock [JEST] 📚 모킹 Mocking 정리 - jest.fn / jest.mock /jest.spyOnMocking 원리 mocking이란 (mock = 모조품) 뜻 그대로 받아드리면 된다. 즉 테스트하고자 하는 코드가 의존하는 function이나 class에 대해 모조품을 만들어 '일단' 돌아가게 하는 것이다. 한마디로, 단위 테스트를 작성할 때, 해당 코드가 의존하는 부분을 가짜(mock)로 대체하는 기법을 말한다. 왜 가짜로 대체하는가? 테스트 하고싶은 기능이 다른 기능들과 엮여있을 경우(의존) 정확한 테스트를 하기 힘들기 때문이다. 예를들어 request body에 사용자의 id와 password를 넣어서 post요청을 보내면 컨트롤러에서 정보를 추출한 후 데이터베이스에 넣어주는 단위테스트를 하고 싶다고 하자. 컨트롤러는 라우터에서 응답을 보내는 미들웨어를 특별히 부르는 말이다. 그냥 함수다. 데.. wono | discuss | tweet + it dev nextjs jest prisma Next.js, Prisma, Jestでサーバーサイドのテストをする wono | discuss | tweet + it dev nextjs NextJs best boiler plateBest Boilerplate and Starter for Next.js with App Router support, Tailwind CSS, and TypeScript. “NextJs best boiler plate” is published by Mahernaija. wono | discuss | tweetNext
+ it arc composite ui pattern 마이크로서비스 관계 패턴 - UI 패턴마이크로서비스 외부 아키텍처중 마이크로서비스 관계에 대한 패턴을 살펴보자. wono | discuss | tweet
+ it dev nextjs shadcnui GitHub - Kiranism/next-shadcn-dashboard-starter: Admin Dashboard Starter with Nextjs14 and shadcn uiAdmin Dashboard Starter with Nextjs14 and shadcn ui - Kiranism/next-shadcn-dashboard-starter wono | discuss | tweet
+ it db uuid postgresql PostgreSQL에서 PK로 UUID를 사용할 때 고려해야 하는 성능 이슈UUID는 중복을 방지하고 예측할 수 없는 값이기 때문에 Primary Key의 값으로 좋은 선택지입니다.하지만 UUID로 인해 성능 이슈가 발생할 수 있는 여지가 있고 이를 개발자 수준에서 고려하고 적절히 대처해야 합니다.이번 포스팅에서는 PostgreSQL 기준으로 UUID 사용 시 발생할 수 있는 성능 이슈에 대해 정리하려 합니다. UUID 저장 시 UUID 전용 데이터 타입에 저장하기흔히 UUID를 저장하기 위한 데이터 타입으로 Text 타입 혹은 String 타입을 사용합니다.uuid는 128 비트 길이의 값을 생성하기 때문에 메모리 상에서 16바이트의 공간을 차지합니다.( 1byte = 8bit, 128bit / 8bit = 16byte ) 이런 uuid 값의 길이는 항상 고정적이기 때문에 P.. wono | discuss | tweet
+ it dev spring GitHub - amira921/Todo-List-Microservices: This project follows a microservices, client-server architectures, consisting of separate services for authentication and managing to-do items, each exposing RESTful APIsThis project follows a microservices, client-server architectures, consisting of separate services for authentication and managing to-do items, each exposing RESTful APIs - amira921/Todo-List-Microservices wono | discuss | tweet
+ it blog python msa Build a Todo App Using a Microservices Architecture and Use Auth Service to Protect Its RoutesIn part one I showed how to build an auth microservices using Django, protecting his routes with a decorator to verify if the user is authorized to interact with his views. If you missed it, take a… wono | discuss | tweet
+ it blog python msa How To Protect Your MicroservicesWhen I started learning about microservices I wondered how I could protect the services and be sure the user was authorized to use the APIs. I was pretty confident about how to structure an… wono | discuss | tweet
+ it dev python msa An Authentication Pattern for microservices using DjangoHow can we design the authentication for microservices written in Django following one of its main principles ? Most of early stage APIs are developed using a monolithic architecture, meaning that… wono | discuss | tweet
+ it dev flutter jwt [Flutter] Token Login / Auth 구현하기Token Login / Auth 구현하기 https://nx006.tistory.com/64 Session VS Token Authentication - feat. JWT 기술 Authentication 앱을 만들 때 회원가입/로그인 기능을 구현해야 할 때가 있습니다. 인증 및 인가된 사용자에게 앱의 기능을 사용할 수 있게 하기 위해서는, 로그인이라는 Authentication(인증) 기능을 거 nx006.tistory.com 이전 글에서 Session 로그인과 Token Login 방식에 대해서 알아봤습니다. 이번 글에서는 어떻게 하면 Flutter에서 Token 로그인 방식을 관리할 수 있는지, 클라이언트 관점에서 구현해보겠습니다. 이 방법은 코드팩토리 님의 Flutter 강의를 듣고서 정리한 글입.. wono | discuss | tweet
+ it qa rest 수정이라는 작업을 할 때 PUT을 더 사용하는 이유가 있을까요? - 인프런 | 커뮤니티 질문&답변누구나 함께하는 인프런 커뮤니티. 모르면 묻고, 해답을 찾아보세요. wono | discuss | tweet
+ it dev spring jwt GitHub - caglayantolga/springboot-role-based-jwt-security-rest-api: Sample project on how to implement JWT security role based using Spring boot 3 and Spring security 6Sample project on how to implement JWT security role based using Spring boot 3 and Spring security 6 - caglayantolga/springboot-role-based-jwt-security-rest-api wono | discuss | tweet
+ it tool dbeaver virtual er diagram export · Issue #22028 · dbeaver/dbeaverWhen I created a connection in my er diagram and wanted to export it to share with the rest of my team via a virtual foreign key, I found that I couldn't find this functionality and I couldn't even find an alternative. wono | discuss | tweet
+ it tool dbeaver dbeaver foreign key 설정 명령어 없이 간단하게 해 봅시다. - Codingdog Blogforeign key는 어떤 속성에서 다른 속성을 참조하기 위해 쓰이는 키입니다. 명령어 한 줄 없이 dbeaver에서 foreign key를 생성하고 설정하는 방법에 대해서 간단하게 알아보도록 하겠습니다. wono | discuss | tweet
+ it tool dbeaver portable DBeaver portable 버전 장점DBeaver 포터블(portable) 버전 장점은 회사 PC에서 사용하는 버전을 폴더 단위로 압축하여 집에서 같은 환경을 구성 할 수 있습니다. wono | discuss | tweet
+ it dev jest mock [JEST] 📚 모킹 Mocking 정리 - jest.fn / jest.mock /jest.spyOnMocking 원리 mocking이란 (mock = 모조품) 뜻 그대로 받아드리면 된다. 즉 테스트하고자 하는 코드가 의존하는 function이나 class에 대해 모조품을 만들어 '일단' 돌아가게 하는 것이다. 한마디로, 단위 테스트를 작성할 때, 해당 코드가 의존하는 부분을 가짜(mock)로 대체하는 기법을 말한다. 왜 가짜로 대체하는가? 테스트 하고싶은 기능이 다른 기능들과 엮여있을 경우(의존) 정확한 테스트를 하기 힘들기 때문이다. 예를들어 request body에 사용자의 id와 password를 넣어서 post요청을 보내면 컨트롤러에서 정보를 추출한 후 데이터베이스에 넣어주는 단위테스트를 하고 싶다고 하자. 컨트롤러는 라우터에서 응답을 보내는 미들웨어를 특별히 부르는 말이다. 그냥 함수다. 데.. wono | discuss | tweet
+ it dev nextjs NextJs best boiler plateBest Boilerplate and Starter for Next.js with App Router support, Tailwind CSS, and TypeScript. “NextJs best boiler plate” is published by Mahernaija. wono | discuss | tweet