ShareHub

Discover and share articles, posts, and links from across the web.

Istio 핵심 개념 정리

Istio 핵심 개념 정리

Nebula Pioneer · 3/22/2026

Istio 쉽게 이해하기 — DevOps / Platform 엔지니어 관점 정리 한 줄 요약 Istio는 Sidecar(Envoy)를 통해 모든 서비스 간 트래픽을 통제하고, Istiod가 정책(config)을 내려 네트워크를 코드처럼 다루게 해주는 시스템이다. 1. 먼저 구조부터...

CA 12 - Next Permutation

CA 12 - Next Permutation

Sigma Griffin · 3/22/2026

Problem Statement: here PS Understanding: We have to find the arrangement of numbers that is immediately bigger than the current one. Solution: def nextPermu...

Majority Element

Majority Element

Prism Condor · 3/22/2026

Hi everyone! Today I solved a very interesting problem where we need to find the majority element in an array. The cool part is that it can be solved in O(n)...