今日已更新 377 条资讯 | 累计 26360 条内容
关于我们

开发者

编程技术、框架工具、最佳实践

7358
篇文章

共 7358 篇 · 第 272/368 页

The Verge AI

Siri is good now??

You'd be forgiven for thinking this day would never come. Siri has spent a decade and half somewhere between "sort of useful at a few things" and "utterly disastrous, why did I even try, can it honestly not even set a timer." But the wildest thing just happened: Apple put out a new version of […]

David Pierce 2026-06-13 01:17 👁 8 查看原文 →
The Verge AI

I held the Trump phone

Where's the Trump phone? We're going to keep talking about it every week. We've reached out, as usual, to ask about the Trump phone's whereabouts. We don't have the phones we preordered yet, but this week included an unexpected in-person encounter with the T1. You see a lot of interesting phones when you're among tech […]

Allison Johnson 2026-06-13 00:05 👁 5 查看原文 →
Dev.to

Indexes: Quickstart Using PostgreSQL (15 sec read)

Let's consider a table user . When we execute a query to find Emily , we are actually going through each record , looking whether the name column equals Emily . Indexes comes in when you want to speed this up. Let's create an Index with the name idx_users_name (the name can be anything, and it doesn't matter functionally): CREATE INDEX idx_users_name ON users ( name ); Now when you run SELECT * FROM users WHERE name = 'Emily' ; Postgres will use the index we just created (not by the name, the name is just for us) to execute that query, and the time complexity is reduced from O(n) to O(log n) .

EffessDev 2026-06-12 23:35 👁 9 查看原文 →