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 db postgresql

Should I add an arbitrary length limit to VARCHAR columns?

According to PostgreSQL's docs, there's no performance difference between VARCHAR, VARCHAR(n) and TEXT. Should I add an arbitrary length limit to a name or address column? Edit: Not a dupe of: W...
wono | discuss |
it ops code error

Differences in Javascript with throwing and return error

This blog is to differentiate the throwing an error with returning an error. In project, I found different people have different ways of handling errors, but when people work together, this kind of…
wono | discuss |
it ops code error

Why is it better to throw an exception rather than return an error code?

Legacy error handling tends to follow the method that all functions return a code depending on success/failure. You would check this code and handle (if an error) appropriately. Modern programming
wono | discuss |
it dev nextjs

Globally disable eslint “import/no-anonymous-default-export” on vscode

Allow me to introduce you to the coolest default override in the world: anonymous default exports.
wono | discuss |
it dev nextjs lint

Next lint not working on files anywhere other than the ones inside the pages folder

I have a FRESHLY installed NextJS app with TypeScript. I am using Next V12, when I run yarn lint, it runs next lint and shows no errors. And now when I add an extra rule in the .eslintrc file like...
wono | discuss |
it tip font

최고의 프로그래밍 폰트는? | Eric Han's IT Blog

wono | discuss |
it dev nextjs auth

Next.js Authentication Best Practices

Explore key Next.js authentication best practices, including middleware vs. page component auth, preserving static rendering, and implementing multi-layered protection. Next.js authentication is the…
wono | discuss |
it dev nextjs auth rbac

How to Add RBAC Authorization in Next.js

Authorization, the process in our applications that determines what users can perform on which resources, is a crucial requirement for every application. Implementing Role-Based Access Control (RBAC)…
wono | discuss |
it dev nextjs auth

Implementing refresh token with nextjs 15 using app router with cross api (different api)

Now lets create cookieRefresher: we created this as Nextjs only allow you to modify cookie from actions or api level.To prevent this we implemented this:
wono | discuss |
it dev nextjs link

Introduction to Next.js Link component with examples | Refine

A guide for navigation between pages using Next.js Link
wono | discuss |
it dev nextjs

[완] Next.js 15가지만 알면 끝남

React 문법 모르면 보지 마세요. 이걸로 공부할 생각하지 말고, next.js 공부한 후에 치팅시트용으로 쓰세요. 저는 vue를 자주 썼기 때문에 vue에 해당하는 부분이 있으면 표시해뒀습니다. 1. 페이지 만들기 app/hello/page.js에 아래와 같은 코
wono | discuss |
it dev nextjs nocache

[트러블 슈팅] Next.js SSR 업데이트 기능 (새로고침 동작x)

발생한 오류 🔥Next.js에서 클라이언트 측 라우팅을 위한 `Link` 컴포넌트를 사용하던 중, 내가 원하던 동작은 `SSR` 페이지로 이동할 때마다 데이터를 가져오는 것이었지만, 첫 번째 렌더링만 데이터를 가져오고 이후에는 router에 의해 캐싱이 돼서 새로운 데이터를 가져오지 못하는 문제가 있었습니다. 기존 코드// app > layout.tsxexport default function RootLayout({  children,}: Readonly) {  return (                            CSR |          ISR |          SSR |          SSG                {children}            );}// app > ss..
wono | discuss |
it ops db plpgsql

PL/pgSQL의 구조 - Amazon Redshift

Amazon Redshift에서 사용되는 PL/pgSQL 언어의 구조에 대해 알아봅니다.
wono | discuss |
it ops db uuid tsid

분산 환경에서 P.K는 어떤 전략으로 가져가면 좋을까?

보통 내가 진행하는 프로젝트에서는 단일 데이터베이스를 사용하거나, 단일 시스템에서 동작했기에, auto_increment P.K 전략을 가져가도 중복된 값이 존재하는 경우가 거의 없기 때문에 문제가 되지 않았다. 하지만 대규모 분산 처리 시스템일 때는 이 자동 증가 전
wono | discuss |
it ops db id pk

🔑 Awesome Identifiers

wono | discuss |
it ops db postgresql do

[PostgreSQL] Function3

이번 장은 for문과 loop를 이용하여 function을 사용하는 법을 익혀보려고 합니다. 우선은 천천히 감을 잡아가기 위해 나름대로의 난이도를 생각하여 쉬운 난이도부터 코드를 늘려가며 난이도를 높여보려고 합니다.for문과 loop 사용 연습 이에 대한 결과로 아래와
wono | discuss |
it ops db postgresql tsid

pg_random_id/lib/pg_random_id/sql/crockford-pure.sql at 0b4dc52c68b7b4aedca25e6a6cac848da7771d4a · arjunmenon/pg_random_id

Contribute to arjunmenon/pg_random_id development by creating an account on GitHub.
wono | discuss |
it ops db postgresql tsid

Build software better, together

GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
wono | discuss |
it ops db postgresql pk

PostgreSQL generate unique sorted IDs for timestamps

PostgreSQL generate unique sorted IDs for timestamps - snowflake.sql
wono | discuss |
it ops db postgresql base32

Base58 Encoder function in PostgreSQL

> https://www.postgresql.org/docs/9.6/functions-binarystring.html
wono | discuss |
Next
© 2025. LINKTAG.ORG. Help Feedback Privacy Terms