Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > samhartley_dev > my-cron-job-double-fired-and-placed-the-same-order-twice-heres-my-postmortem-5cib

My Cron Job Double-Fired and Placed the Same Order Twice — Here's My Postmortem

29+ min ago   (879+ words) I keep a Mac Mini in a closet running a handful of small scheduled Python jobs. One of them scans market data on a schedule and, when its rules fire, places tiny orders through an exchange API. Positions are around…...

DEV Community
dev.to > mislam-dev > day-8-relational-database-101-postgresql-internals-j9c

Day 8 - Relational Database 101 - PostgreSQL Internals

5+ hour, 36+ min ago   (1576+ words) একবার একটু technological দিকে আসি, আপনি যখন Facebook বা LinkedIn-এ কাউকে message করেন তখন সেটা সরাসরি তার কাছে send হয়। Reason হচ্ছে আপনারা connected। এখানে আপনি directly message ত…...

DEV Community
dev.to > khg5293 > why-parameterized-queries-matter-for-sql-security-1iem

Why Parameterized Queries Matter for SQL Security

5+ hour, 57+ min ago   (559+ words) SQL injection is one of the classic examples of what can happen when an application mixes user input directly into a database query. The underlying problem is simple. The application expects data. The database may interpret part of that data…...

Medium
medium.com > @scosmexs > database-isolation-levels-what-can-concurrent-transactions-actually-see-210777f1a5d9

Database Isolation Levels: What Can Concurrent Transactions Actually See?

2+ hour, 20+ min ago   (743+ words) Transactions do not execute in isolation from reality. Isolation levels define how much of that reality they are allowed to observe. In the previous topic, we explored Optimistic and Pessimistic Concurrency Control. Now we can go one level deeper. What…...

DEV Community
dev.to > rahmanfrr > recursive-ctes-how-sql-secretly-learned-to-loop-457f

Recursive CTEs: How SQL Secretly Learned to Loop

6+ hour, 52+ min ago   (454+ words) Ask a SQL query to find "all employees under this manager," and things get ugly fast if you don't know how many levels deep the org chart goes. A regular join handles one level. Two joins handle two levels. Nobody's…...

Medium
medium.com > @dravonicx > the-sql-queries-that-lie-to-you-with-a-straight-face-10c060c76f67

The SQL Queries That Lie to You With a Straight Face

2+ hour, 52+ min ago   (191+ words) Seven queries that run without error, return a result, and are still wrong — and how to stop writing them. Some SQL mistakes throw an error …...

Medium
medium.com > @alakov.ilia > explain-describes-a-query-production-is-everything-else-thats-running-6b307b63c330

EXPLAIN Describes a Query. Production Is Everything Else That’s Running.

4+ hour, 46+ min ago   (1398+ words) A while back I wrote about migrating a terabyte of banking data from Oracle to PostgreSQL with no downtime. The part people …...

Medium
medium.com > @ashrayadhikari > i-replaced-chroma-qdrant-and-pinecone-with-a-sqlite-file-1ae5210c85d4

I Replaced Chroma, Qdrant, and Pinecone With a SQLite File

4+ hour, 43+ min ago   (165+ words) I needed a vector DB that didn’t require a daemon. SQLite was already there. Every RAG tutorial starts the same way. Step one: install …...

DEV Community
dev.to > ashish_sinha_5241c7673d93 > every-text-to-sql-benchmark-score-youve-seen-was-measured-without-access-control-37h

Every text-to-SQL benchmark score you've seen was measured without access control

9+ hour, 21+ min ago   (955+ words) Spider, BIRD, LiveSQLBench. If you have evaluated a text-to-SQL system in the last five years you have quoted a number from one of them. All three ask the same question: given a schema and an English question, does the system…...

DEV Community
dev.to > dvlpr1996 > linux-common-commands-every-developer-should-know-4l2o

Linux common commands every developer should know

10+ hour, 45+ min ago   (159+ words) The command line is one of the most powerful and efficient ways to interact with Linux systems. For developers, knowing the commands can make tasks much faster and easier. This article provides a reference of useful Linux commands for developers....