terminal
howtonotcode.com
PostgreSQL logo

PostgreSQL

Term

Open-source relational database management system known for robustness.

article 2 storys calendar_today First seen: 2026-01-06 update Last seen: 2026-02-17 open_in_new Website menu_book Wikipedia

Resources

Links to check for updates: homepage, feed, or git repo.

home Homepage

code Git repo

Stories

Showing 1-2 of 2

Scaling PostgreSQL for OpenAI-scale workloads

A community explainer outlines how PostgreSQL can be scaled to support OpenAI-level traffic and calls out practical tactics engineering teams can adopt. The [HackerNoon write-up](https://hackernoon.com/how-openai-scaled-to-800-million-users-on-postgresql?source=rss) frames how to push PostgreSQL for high-traffic AI apps by leaning on proven levers: read replicas for scaling reads, disciplined connection management, careful schema/query optimization, and robust monitoring and failover readiness. For backend/data leads, it’s a tactical reminder to prefer mature primitives before exotic datastores—codify SLOs (p95/p99 latency, replica lag), segment read/write paths, and instrument the critical queries that drive tail latency—using PostgreSQL’s standard capabilities as the backbone.

calendar_today 2026-02-17
openai postgresql database-scaling read-replicas observability

AI IDE forks exposed by OpenVSX namespace hijack in built-in extension recommendations

Koi found that popular AI IDEs forked from VS Code (Cursor, Windsurf, Google Antigravity, Trae) inherit hardcoded extension recommendations that point to Microsoft’s marketplace, but those extensions don’t always exist on OpenVSX (the registry these IDEs actually use). Unclaimed namespaces on OpenVSX could be registered by attackers to ship malicious lookalike extensions that the IDE proactively recommends based on files or installed software. Koi preemptively claimed several risky namespaces (e.g., PostgreSQL, Azure Pipelines, ARM tools) with placeholder packages to reduce immediate risk.

calendar_today 2026-01-06
cursor windsurf openvsx vscode supply-chain-security