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

it

it ops aws rds extended support

RDS MySQL, PostgreSQL 의 Extended Support 의 개요

이 페이지에서는 이 글을 쓰는 시점으로 최근에 지원을 시작한 RDS MySQL, PostgreSQL Extended Support 에 대하여 다룬다. 이 글은 아래의 공식 AWS Document 와 관련되어 있다. [1] https://aws.amazon.com/ko/about-aws/whats-new/2023/11/amazon-rds-mysql-new-minor-version-5-7-44/ [2] https://aws.amazon.com/ko/about-aws/whats-new/2023/11/amazon-rds-postgresql-minor-versions-15-5-14-10-13-13-12-17-11-22/ [3] https://docs.aws.amazon.com/AmazonRDS/latest/Use..
wono | discuss |
it ops aws qa

AWS 사용 비용이 계속 증가하는 이유가 궁금함

과거 수 주일 동안 저는 RDS 서비스를 사용했습니다. 그러나 몇일 전 RDS 인스턴스를 삭제했고, 도 스냅샷도 제거했습니다. 그리고 나서 24시간이 경과했는데 또 비용이 증가했습니다. 왜 그런겁니까? 어떻게 하면 비용을 0으로 만들 수 있습니까? 아예 계정을 제거해야 됩니까?
wono | discuss |
it ops aws rds extended support

[AWS]RDS 이용 요금 증가에 대한 고객컨.. : 네이버블로그

wono | discuss |
it blog nextjs tuto

우리가 Next.js를 공부하게 된 이유

올해 9월, 앱 런칭을 위해 우리 팀은 Flutter를 공부했고 정식 배포까지 마무리했습니다. 그리고 앱을 소개하기 위한 사이트를 React로 만들었고 Git Pages로 호스팅했습니다. 어느 날, 한 팀원을 통해 Next.js를 알게 됐습니다. 그리고 코드드림팀에서는 Next.js를 공부하기로 했는데요. 우리가 공부하게 된 이유와 과정을 포스팅을 통해 공유하려고 합니다. 이번 포스팅에서는 Next.js를 공부하게 된 이유를 소개합니다. *이 포스팅 시리즈는 Next.js 공식 문서와 React 공식 문서, 타입스크립트, 리액트, Next.js로 배우는 실전 웹 애플리케이션 개발을 참고하여 작성했습니다. 1. 프론트엔드 개발 변천 jquery의 시작과 끝 프론트엔드는 어떻게 변화해왔을까요? 저는 6년차 ..
wono | discuss |
it dev react

04) 컴포넌트 구성과 재사용성

[TOC] ## 단일 책임을 가진 재사용 가능한 컴포넌트 생성 React에서 재사용성 개념은 근본적입니다. 한 가지 기능을 잘 수행하는 작은 컴포넌트를 생성합니다. 이러한 컴…
wono | discuss |
it dev react

리액트 컴포넌트 구조와 재사용성 향상하기

이 글에서는 리액트 컴포넌트를 어떻게 구조화하고 재사용성을 높일 수 있는지에 대해 알아봅니다. 프레젠테이셔널 컴포넌트와 컨테이너 컴포넌트를 분리하여 작성하는 방법과 컴포넌트 모듈화의 중요성을 설명합니다.
wono | discuss |
it dev nextjs structure

How to structure scalable Next.js project architecture - LogRocket Blog

Learn to structure your Next.js project strategically to build an application that will scale up without any issues as your project grows.
wono | discuss |
it dev express

node.js Controller, Service, Repository

사전 준비 Directory Structure 내 프로젝트 폴더 이름 ├── app.js ├── config │ └── config.json ├── controllers │ └── posts.controller.js ├── migrations │ └── 20220731133318-create-posts.js ├── models │ ├── index.js │ └── posts.js ├── repositories │ └── posts.repository.js ├── routes │ ├── index.js │ └── posts.routes.js ├── services │ └── posts.service.js ├── package.json └── package-lock.json controllers, servi..
wono | discuss |
it tech fe

한때 유행했지만 이제는 사라진 프론트엔드 개발 트렌드

개발자라면 알아야 할! 한때 유행했지만 이제는 사라진 프론트엔드 개발 트렌드 안녕하세요. 개발을 사랑하는 긍정맨입니다. 저는 프론트엔드 개발을 처음 시작할 때만 해도 여러 프레임워크나 라이브러리가 무척 신기했습니다. 새로운 기술을 하나씩 배울 때마다 왠지 ‘앞서가는 개발자’가 된 느낌도 받았고요. 하지만 시간이 흐르면서 유행했던 기술 중 일부는 어느새 거
wono | discuss |
it blog orm

Controller, Service, Repository 패턴에서의 ORM 사용 방식

Controller, Service, Repository 패턴에서 ORM을 어느 레이어로써 활용할 수 있는 두가지 방법에 대해서 설명하고, NestJS와 Prisma를 사용한 예시를 통해 두 접근법을 비교 분석해보려고 합니다.
wono | discuss |
it dev flutter flame

GitHub - maurovanetti/guidi-tu: A mobile app made in Flutter to pick the sober driver

A mobile app made in Flutter to pick the sober driver - maurovanetti/guidi-tu
wono | discuss |
it lang typescript

Documentation - Utility Types

Types which are globally included in TypeScript
wono | discuss |
it dev typescript

[TypeScript] 유틸리티 타입 (Pick, Omit, Partial, Record 등)

react-router 코드에서 갑자기 등장한 Pick! import에도 없고 대체 이게 뭐지…?
wono | discuss |
it db prisma queryraw

How to define a type in TypeScript based on another type, making some properties optional and removing others?

wono | discuss |
it db prisma typedsql

生SQLに型を手書きする時代は終わり?Prismaの新機能「TypedSQL」

wono | discuss |
it db prisma postgresql

PrismaClient#rawQuery not working · prisma/prisma · Discussion #2664

PrismaClient#rawQuery not working
wono | discuss |
it db postgresql prisma

queryRaw don't show data on prisma

wono | discuss |
it dev typescript

[tsconfig의 모든 것] Compiler options / Emit

이번 포스팅에서는 지난 [tsconfig의 모든 것] Compiler options / Modules 포스팅에 이어 의 컴파일 옵션 중 출력 파일을 컨트롤 하는 옵션들을 소개할 예정이다.
wono | discuss |
it qa vscode

[TypeScript] Go to definition goes to *.d.ts when across project references · Issue #73201 · microsoft/vscode

The issue is, with project reference, going to the generated declaration file is really inconvenient. It should be possible to go directly into the source file. Not sure this is a dup since many issues have been reported and it's unclear...
wono | discuss |
it blog jsdoc

TypeScript의 대안, JSDoc

JavaScript 코드베이스에 주석을 추가하여 TypeScript의 대안적 수단으로 활용할 수 있는 JSDoc에 대해 알아보았습니다.
wono | discuss |
Next
© 2025. LINKTAG.ORG. Help Feedback Privacy Terms