Tagging
Try bookmarklet. Easy tagging.
Do you want to delete?
Do you want to modify?
  • LINKTAG
  • New
  • Tag
  • Comment
Sign in
it dev nextjs

2023-06-13 Next.js 13의 서버는 한 개가 아니란다

IPC라고 있는데... 처음 들어보시나요? 사실 저도...
wono | discuss |
잡기 블로그 산업 it

SI,정부과제 vs 서비스 vs 솔루션 장단점

20년 경험으로 두서 없이 적어 보았습니다. 당연히 모든 경우가 아래의 경우에 해당하진 않습니다. 회사 규모,제품과 회사 지향점, 리더들의 특성 및 본인의 위치등에 따라 달라 질 수 있으며 정해진 답이 없기에 맞다 틀리다 보다는 본인의 경험에 대해서 댓글에 적어주면 후배들이 보기 좋을 거 같습니다. SI 와 정부과제) 장점 : 1. 새로운 기술 분야/도메인의 도전을 할 기회가 비교적 쉽게/자주 생깁니다. 1-1. 새로운 기술분야를 도전(경험)할 기회가 있다. 전공이 아닐지라도(인공지능,빅데이터,블록체인등등) 1-2. 새로운 도메인 분야를 도전(경험) 할 수 있다. (은행,병원,통신 등등) 2. Low risk / Low Return이다. 즉 정부 돈, 갑의 돈으로 할 수 있으니 부담이 없습니다. 3. 결..
wono | discuss |
it arc composite ui pattern

마이크로서비스 관계 패턴 - UI 패턴

마이크로서비스 외부 아키텍처중 마이크로서비스 관계에 대한 패턴을 살펴보자.
wono | discuss |
생활 잡기 블로그 멘토

14화 회사에서 멘토를 만날 확률은?

13. 인생 사수를 만나다 | 개발자로서 첫 직장이었던 전 스타트업에서 Frontend 개발자로 3년을 근무하고, 1년의 재취업 기간을 거쳐 지금 회사를 만났다. 개발자가 된 지 햇수로 5년 차이지만 과연 내가 진짜 5년 차의 실력을 가지고 있는 걸까, 5년 차의 실력이란 어떤 걸까, 얼마나 해야 하는 걸까, 난 왜 이렇게 아직도 모르는 것 투성이일까, 이게 맞나? 하는 고민들은 끊임
wono | discuss |
생산성 협업툴

협업툴 무료 버전 21종 사용 후기 및 비교 리포트 제공

협업툴 21종 중 무료 버전에서 제공하는 주요 기능을 비교하고, 관련 자료를 PDF로 제공드립니다.
wono | discuss |
생산성 협업툴

공유작업형 협업툴 6종 주요 기능 비교 및 추천

🤔 우리 회사에 적합한 협업툴이 무엇인지 찾고 계신가요? 🤗 이번 주제는 협업툴 관심이 있는 모든 분...
wono | discuss |
생산성 협업툴

노션을 대체하는 문서 협업 소프트웨어들

노션처럼 혹은 노션보다 뛰어난 기능을 제공하는 다섯 가지 툴들을 소개합니다.
wono | discuss |
it dev nextjs shadcnui

GitHub - Kiranism/next-shadcn-dashboard-starter: Admin Dashboard Starter with Nextjs14 and shadcn ui

Admin Dashboard Starter with Nextjs14 and shadcn ui - Kiranism/next-shadcn-dashboard-starter
wono | discuss |
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 |
it db uuid postgresql

Use data type uuid or varchar(36) for my UUID column?

wono | discuss |
구글정책 거주지증명서

유튜브 애드센스 '입력한 세금 정보의 만료일이 임박했습니다. 새 세금 정보를 제출하세요.' - Google AdSense 커뮤니티

wono | discuss |
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 APIs

This 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 |
it blog python msa

Build a Todo App Using a Microservices Architecture and Use Auth Service to Protect Its Routes

In 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 |
it blog python msa

How To Protect Your Microservices

When 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 |
it dev python msa

An Authentication Pattern for microservices using Django

How 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 |
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 |
it qa rest

수정이라는 작업을 할 때 PUT을 더 사용하는 이유가 있을까요? - 인프런 | 커뮤니티 질문&답변

누구나 함께하는 인프런 커뮤니티. 모르면 묻고, 해답을 찾아보세요.
wono | discuss |
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 6

Sample 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 |
it tool adaptive-cards

적응 카드 개요 - Adaptive Cards

wono | discuss |
it term itsm itil

[DT 시대의 ITSM] ① ITSM과 ITI.. : 네이버블로그

wono | discuss |
Next
© 2026. LINKTAG.ORG. Help Feedback Privacy Terms