Bookmarks

Bookmarks

49953 bookmarks
Custom sorting
What Does INSERT 0 1 Actually Tell You? | My DBA Notebook
What Does INSERT 0 1 Actually Tell You? | My DBA Notebook
If you’ve ever run an insert statement in a terminal or an IDE, you’ve seen it: the cryptic insert 0 1 message. While it looks like a bit of ancient binary, it’s actually a precise status report from the database engine. The Anatomy of a Command Tag 🔗In PostgreSQL, every successful command returns a “Command Tag.” For an insertion, the format is: INSERT [oid] [rows] The “0” (oid1): Historically, Postgres could assign an internal Object ID to every row.
·mydbanotebook.org·
What Does INSERT 0 1 Actually Tell You? | My DBA Notebook
Read efficiency issues in Postgres queries - pgMustard
Read efficiency issues in Postgres queries - pgMustard
A lot of the time in database land, our queries are I/O constrained. As such, performance work often involves reducing the number of page reads. Indexes are a prime example, but they don’t solve every issue (a couple of which we’ll now explore).
·pgmustard.com·
Read efficiency issues in Postgres queries - pgMustard
生成AIでJavaScript/TypeScriptを扱うときに設定しておきたい ESLintルール - プププなテクブ
生成AIでJavaScript/TypeScriptを扱うときに設定しておきたい ESLintルール - プププなテクブ
このエントリはTSKaigi Mashup Kansai 生成AIでTSを扱うときに考えたい設計&ガードレールでの発表内容です。登壇資料をブログとして読めるように再構成して公開しています。 はじめに 去年あたりは「ジュニアエンジニアレベルと思ってね」と公式各所から言われていたコーディングエージェントも、もはやそのレベル…
·blog.inorinrinrin.com·
生成AIでJavaScript/TypeScriptを扱うときに設定しておきたい ESLintルール - プププなテクブ
Rails + pgvector でベクトル検索を実装してみた - PLEX Product Team Blog
Rails + pgvector でベクトル検索を実装してみた - PLEX Product Team Blog
概要 Rails + PostgreSQL の既存構成に pgvector を追加して、ベクトル検索を検証してみた 外部 API や Python を使わず、Ruby だけで Embedding 生成から検索まで完結する ベクトル検索とは? テキスト、画像、音声などのデータを Embedding(埋め込み) により数値…
·product.plex.co.jp·
Rails + pgvector でベクトル検索を実装してみた - PLEX Product Team Blog
定例ミーティングのなくし方
定例ミーティングのなくし方
なぜ定例ミーティングが増えるのかを整理し、なくし方とコストを下げる方法をまとめました。
·iwashi.co·
定例ミーティングのなくし方
Your Go tests probably don't need a mocking library
Your Go tests probably don't need a mocking library
Practical patterns for mocking in Go without external libraries. Learn to mock functions, methods, interfaces, HTTP calls, and time using only the standard library
·rednafi.com·
Your Go tests probably don't need a mocking library
Ralph TUI - AI Agent Loop Orchestrator
Ralph TUI - AI Agent Loop Orchestrator
An AI agent loop orchestrator that manages autonomous coding agents through intelligent task routing and continuous delivery.
·ralph-tui.com·
Ralph TUI - AI Agent Loop Orchestrator
subsy/ralph-tui
subsy/ralph-tui
Contribute to subsy/ralph-tui development by creating an account on GitHub.
·github.com·
subsy/ralph-tui
Paper – design, share, ship
Paper – design, share, ship
Paper is a modern and powerful design tool that helps you create, share, and ship your best work.
·paper.design·
Paper – design, share, ship
Heroku: What’s Next
Heroku: What’s Next
Heroku is shifting to a sustaining engineering model. Here’s what that means, whether you should migrate, and how the top alternatives compare.
·judoscale.com·
Heroku: What’s Next
Making Encrypted Records Searchable (Without Losing Sleep Over Your Audit)
Making Encrypted Records Searchable (Without Losing Sleep Over Your Audit)
TL;DR I needed full-text search across compliance records in Humadroid — some of which are encrypted at the application layer. The naive answer is “just decrypt everything into a search index.” The real answer involves understanding exactly what you’re trading, making that trade-off explicit and per-organization, and designing the index so it reveals as little as possible. Here’s the pattern I built, what I considered, and what I’d tell an auditor who asks about it.
·maciej.litwiniuk.net·
Making Encrypted Records Searchable (Without Losing Sleep Over Your Audit)