SShortSingh.
Back to feed

Productivity loss stems from missing context, not lack of discipline, research suggests

0
·3 views

Developers and knowledge workers often blame scattered focus and unfinished projects on poor discipline, but a closer look suggests the real culprit is missing context — the repeated effort of re-orienting to where work stands. This 'orientation tax' is paid dozens of times daily in small increments, adding up to significant lost time; re-teaching an AI coding agent each session alone can cost roughly one workday per month. Research cited in the piece notes that refocusing after a single interruption on complex work can take up to 23 minutes, and a 10-developer team losing 20% of time to task-switching may hemorrhage around $240,000 annually. Practical fixes observed in the developer community focus on maintaining a single, honest record of every in-flight project's current status — what one practitioner calls a 'projects parking lot' — rather than forcing stricter completion habits. The author argues that AI coding assistants compound the problem rather than solve it, since they begin each session without retained context, paying the same orientation tax their human collaborators do.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

How to Build a Reliable Eval Suite for LLM-Powered Product Features

Adding evaluations to large language model features is essential for shipping reliable products, not just demos, since LLMs are non-deterministic and can silently degrade with every prompt change or model update. The process begins by defining a clear, business-oriented success criterion — such as whether an AI calling agent successfully booked a meeting — rather than vague technical measures. Developers then build a curated dataset of real test cases, including edge cases like interruptions or ambiguous responses, to serve as a concrete specification for expected behavior. Frameworks like DeepEval or Evidently AI can be used to structure metrics and automate evaluation checks within continuous integration pipelines. The approach transforms unpredictable LLM output into measurable, trackable signals that help teams catch regressions before they reach users.

0
ProgrammingDEV Community ·

Junior Data Scientist Builds Model to Predict Promoted Clubs' Top-Flight Survival

A beginner data scientist has launched a portfolio project aimed at predicting whether newly promoted clubs in Europe's top football leagues will avoid relegation in their debut season. The project is motivated by the fact that roughly two out of three promoted clubs are relegated in their first season back in the top flight. Using match data from football-data.co.uk dating back to 1993/94, the model will analyze only the first eight games of a club's debut season to generate early survival predictions. The tech stack includes pandas, scikit-learn, imbalanced-learn, and a Streamlit dashboard for interactive visualization. The project follows a public six-part timeline running from July 11 to August 8, 2026, with acknowledged challenges including a small dataset of around 60–100 samples and inconsistent team naming across data sources.

0
ProgrammingDEV Community ·

Google launches Open Knowledge Format to standardize AI context with Markdown files

On June 12, 2026, Google Cloud released the Open Knowledge Format (OKF) v0.1, an open specification designed to give AI agents structured, portable context without relying on proprietary systems. The format uses plain Markdown files with YAML frontmatter, requiring only one mandatory field — 'type' — making it deliberately minimal and tool-agnostic. Google's goal is to solve a widespread problem: organizational knowledge is scattered across incompatible sources, forcing every team building an AI agent to reassemble context from scratch. Alongside the spec, Google released reference implementations including a BigQuery enrichment agent, a static HTML graph visualizer, and updated its own Knowledge Catalog to ingest OKF bundles. The project, hosted at GoogleCloudPlatform/knowledge-catalog, draws inspiration from Andrej Karpathy's 'LLM-wiki' concept, betting that AI agents can maintain the cross-referenced knowledge bases that humans have historically abandoned.

0
ProgrammingHacker News ·

ClickHouse Engineers Boost PgBouncer Throughput Fourfold for Managed Postgres

ClickHouse engineering team published a technical blog post detailing how they achieved a fourfold increase in PgBouncer throughput for their managed Postgres service. PgBouncer is a widely used connection pooler for PostgreSQL databases that helps manage large numbers of client connections efficiently. The team identified performance bottlenecks and implemented optimizations to significantly improve scalability. The findings were shared publicly on the ClickHouse blog, offering insights relevant to engineers running high-traffic Postgres deployments.