Install
A constructive and inclusive social network for software developers. With you every step of your journey.
- 10,512articles · 30d
- 2+ hour agolatest article
- Aug 14, 2026earliest in window
- 97%with images
- 293avg words
- software 9,745
- coding 9,531
- development 9,497
- engineering 9,476
- community 9,456
- inclusive 9,418
- ai 7,996
- webdev 5,753
- programming 5,150
- productivity 3,504
- python 2,966
- technology 2,882
- artificial intelligence 2,832
- security 2,733
- devops 2,732
- llm 2,298
- architecture 2,257
- agents 2,160
- tutorial 2,110
- javascript 1,934
- Software Dev. 9,716
- Science & Technology 9,590
- Computers & Electronics 7,426
- Business & Industrial 810
- Internet & Telecom 773
- Economy, Business & Finance 382
- Finance 333
- Arts, Culture, Entertainment & Media 244
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.
News
AI Agent Memory: Sliding Windows, Summaries, and Vector Storage
4+ hour, 39+ min ago (623+ words) The agent we built in Post #4 has one big problem — the moment the script ends, it forgets everything. Next time you run it, it starts from zero. No memory of past conversations, no retained facts, nothing. For a quick experiment…...
Distributed Locks
4+ hour, 43+ min ago (110+ words) One-liner: A distributed lock ensures that only one node in a cluster can perform a critical operation at a time — preventing race conditions across services. In a single-server world, a mutex or semaphore handles concurrency. But in distributed systems: Classic…...
Day 8 - Relational Database 101 - PostgreSQL Internals
5+ hour, 21+ min ago (1576+ words) একবার একটু technological দিকে আসি, আপনি যখন Facebook বা LinkedIn-এ কাউকে message করেন তখন সেটা সরাসরি তার কাছে send হয়। Reason হচ্ছে আপনারা connected। এখানে আপনি directly message ত…...
Treating “one day” as a system primitive
5+ hour, 42+ min ago (165+ words) For most AI apps, the unit of time is a request. A user sends a message, the model responds, and the workflow ends. Cogweald is designed around a different primitive: one real day. Each world can advance by at most…...
When a Zero-Parameter Cache Overtakes a Transformer
5+ hour, 42+ min ago (574+ words) The question this series exists to answer, put in a form that can be measured: a transformer sees a fixed 64-token window, a count table over the current document sees the whole document, and as documents get longer, how much…...
Why Parameterized Queries Matter for SQL Security
5+ hour, 42+ 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…...
Recursive CTEs: How SQL Secretly Learned to Loop
6+ hour, 37+ 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…...
I described 1,245 tables with an LLM and retrieval got worse
9+ hour, 6+ min ago (1126+ words) The cataloguing step is supposed to be the easy win. You have a schema whose tables are called ecm_template_link and v_pmpm, your users ask questions in English, and the gap between those two vocabularies is why retrieval misses. So you point a…...
Every text-to-SQL benchmark score you've seen was measured without access control
9+ hour, 6+ 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…...
Data Relationships, Data Modelling Schemas, and Joins in Power BI.
10+ hour, 7+ min ago (1280+ words) Data Modelling in Power BI What Data Modelling Means in Power BI Data modelling... Tagged with analytics, data, database....