SShortSingh.
Back to feed

Automating Paperwork Left the Real Bottleneck Untouched, Engineer Warns

0
·1 views

A software team automated their change-request process, replacing forms and spreadsheets with a pull request system that handled notifications, approvals, and evidence collection automatically. Despite the overhaul, lead time from request to deployment stayed exactly the same, because the true delay was a weekly Thursday approval board meeting that the project never addressed. The automation also made the problem harder to fix — the old spreadsheet drew complaints and created pressure for change, while the new dashboard looked polished and made a four-day wait feel routine. Engineer Serguey Shinder argues this is a common failure mode: technical teams tend to automate the parts of a process that frustrate them, not the parts that are actually slow. He now recommends mapping real wait times from data before building anything, and acknowledges that fixing human decision-point delays requires political conversations, not engineering solutions.

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 ·

Developer builds offline Android planner that reschedules your day without guilt

A developer has released Tiny Day, a free Android daily planner built with React Native and Expo that requires no account, no cloud sync, and collects no analytics. Users type their tasks in plain language each morning, and the app automatically parses them into a prioritized timeline while deliberately leaving free time and protecting meals. When plans go off track, a built-in repair engine reshuffles optional and flexible tasks around fixed commitments, showing users a preview before applying any changes. The app uses only local notifications, includes quiet hours and a privacy mode, and never carries unfinished tasks forward automatically. Its stated design philosophy centers on reducing guilt rather than enforcing productivity streaks or highlighting missed tasks.

0
ProgrammingDEV Community ·

Developer builds citation-only sales knowledge base that admits when it lacks answers

A developer created SalesWiki, an open-source starter kit for sales and marketing teams that stores compiled knowledge as typed Markdown files compatible with Obsidian. The system keeps raw evidence separate from conclusions and only returns answers backed by named sources, explicitly flagging gaps rather than generating unsupported responses. Changes to shared knowledge require a proposal and review step, keeping earlier evidence and the rationale for any update visible in Git history. SalesWiki is not a CRM or hosted SaaS product, but a governed knowledge base designed to help teams trace decisions back to verifiable evidence. A synthetic demo using a fictional Atlas Robotics deal illustrates how the tool surfaces reasons behind a suggested next action without removing human judgment from the process.

0
ProgrammingDEV Community ·

OpenVPN Releases v2.7.1 and Connect 3.9.0: Why Version Tracking Matters for IT Teams

The OpenVPN community project released version 2.7.1 on September 3, 2026, while OpenVPN Connect for Windows 3.9.0 had been released earlier on June 8, 2026, with the two belonging to entirely separate release lines. Confusing the two version numbers can lead to unreliable upgrade planning, as they refer to different software components. A structured inventory approach is recommended, requiring teams to document the exact component name, release line, platform, configuration, and observation method separately. The method also distinguishes between an approved installer file and the version actually running on an endpoint, since the two represent different facts. Connect for Windows 3.9.0 introduces a pre-login connection feature that requires administrator setup and specific system profiles, meaning existing deployments cannot assume automatic compatibility.

0
ProgrammingDEV Community ·

Developer Builds Open Source Tool to Stop AI Models Answering Basic Terminal Commands

A developer created an open source tool called Token Ninja after growing frustrated with wasting AI tokens on simple queries that a local terminal could resolve instantly. The tool intercepts prompts before they reach Claude, routing basic commands like git status or docker ps to the terminal instead of the language model. Built over a weekend, the project leverages Claude Code's UserPromptSubmit hook to enable zero-token interception at the prompt level. The developer found that the trickiest challenge was defining the boundary between requests suited for local execution and those genuinely requiring AI reasoning. Token Ninja is publicly available on GitHub under the profile oanhduong.

Automating Paperwork Left the Real Bottleneck Untouched, Engineer Warns · ShortSingh