기술뉴스, 2025-08-07

기술뉴스, 2025-08-07
(사진=셔터스톡)

Claude Code Usage Monitor
https://github.com/Maciek-roboblog/Claude-Code-Usage-Monitor

Kent Beck's CLAUDE.md
https://github.com/KentBeck/BPlusTree3/blob/main/rust/docs/CLAUDE.md

Figma's IPO Price
https://techcrunch.com/2025/07/30/figmas-ipo-price-hit-a-19-3b-valuation-out-of-the-gate/

책, 모던 소프트웨어 엔지니어링
https://jusths.tistory.com/m/465

서비스 모델과 비지니스 모델의 차이점
https://greypencil.tistory.com/252

토스증권의 GPU 가상화 도입기
https://toss.tech/article/toss-securities-gpu-mig

Kotlin 환승 연애
https://techblog.woowahan.com/22586/

전체 서비스를 관통하는 도메인 모듈을 안전하게 분리하기
https://techblog.woowahan.com/22151/

접근성을 지원한다는 착각
https://blog.banksalad.com/tech/the-illusion-of-supporting-accessibility/

...

출처: https://www.foobar.kr/, https://toss.tech/, https://techblog.woowahan.com/, https://blog.outsider.ne.kr/, https://news.hada.io/

Read more

Building AI Sales Pipeline That Actually Researches: Multi-Agent Orchestration with tool-use

Building AI Sales Pipeline That Actually Researches: Multi-Agent Orchestration with tool-use

계속 우리를 괴롭혔던 문제 세일즈 파이프라인이 작동하고 있었습니다. 여섯 개의 Claude 에이전트가 각자 역할을 수행했습니다: 회사를 조사하고, 솔루션을 매핑하고, 제안서를 작성하고, 딜 규모를 추정하고, 이메일을 작성합니다. CLI 명령어 하나면 몇 분 안에 개인화된 세일즈 제안서가 완성되었습니다. 하지만 거기에는 거짓말이 내재되어 있었습니다. "리서처" 에이전트는 실제로 아무것도 조사하지 않았습니다. "Koelle GmbH, Germany"

By Sardor Madaminov
배타적 서브타입(Exlusive Subtype) 테이블 설계와 백엔드 구현

배타적 서브타입(Exlusive Subtype) 테이블 설계와 백엔드 구현

배타적 서브타입이란? 데이터베이스 테이블 설계에서 슈퍼타입(Super Type)과 서브타입(Sub Type)은 공통 속성을 기준으로 엔티티(테이블)를 상위/하위로 나누는 데이터 모델링 기법입니다. * Super Type (상위 엔티티) * 여러 엔티티가 공통으로 가지는 속성을 모아 놓은 엔티티 * 식별자(PK, ID)를 포함한 공통 정보를 가지고 있음 * Sub Type (하위 엔티티)

By Plato Jung