Tagged articles
18 articles
Page 1 of 1
MeowKitty Programming
MeowKitty Programming
Apr 16, 2026 · Artificial Intelligence

Claude Opus 4.7 Stuns Java Developers: 3× Faster Bug Fixes and Autonomous Night‑time Work

Anthropic’s Claude Opus 4.7 dramatically improves Java bug‑fixing speed—tripling real‑world fixes on Rakuten’s SWE‑bench, raising CursorBench accuracy to 70%, and handling tougher GitHub tasks—while autonomously analyzing logs, rewriting code, adding tests, and even running load‑tests, letting developers hand off work and focus on higher‑value tasks.

AI coding assistantClaude Opus 4.7Performance Testing
0 likes · 8 min read
Claude Opus 4.7 Stuns Java Developers: 3× Faster Bug Fixes and Autonomous Night‑time Work
Java Tech Enthusiast
Java Tech Enthusiast
Nov 10, 2025 · Information Security

Who Should Fix AI-Discovered Bugs? Google vs. FFmpeg Open-Source Clash

Google’s Project Zero introduced a “Reporting Transparency” policy, using its AI tool Big Sleep to expose bugs in open-source projects like FFmpeg, sparking a heated debate over whether the responsibility for fixing AI-found vulnerabilities lies with the powerful corporation or the unpaid volunteer maintainers.

AIGooglebug fixing
0 likes · 7 min read
Who Should Fix AI-Discovered Bugs? Google vs. FFmpeg Open-Source Clash
Alibaba Cloud Native
Alibaba Cloud Native
Feb 22, 2025 · Artificial Intelligence

Boost Your Development with Alibaba Cloud’s Tongyi Lingma AI Coding Assistant – A Hands‑On Guide

This guide walks developers through installing the Tongyi Lingma AI coding assistant plugin, switching between large language models, using smart Q&A, terminal integration, code completion, bug‑fix suggestions, and multi‑file refactoring, showcasing how the tool streamlines everyday development tasks.

AI coding assistantCloud NativeIDE plugin
0 likes · 8 min read
Boost Your Development with Alibaba Cloud’s Tongyi Lingma AI Coding Assistant – A Hands‑On Guide
Alibaba Cloud Native
Alibaba Cloud Native
Nov 1, 2024 · Game Development

How an AI Code Assistant Supercharges a Godot Desktop Pet Project

This article walks through using the Tongyi Lingma AI code assistant to understand, develop, debug, and automate a Godot‑based desktop pet application, showcasing workspace queries, code generation, bug fixes, performance gains over Copilot, and CI integration via GitHub Actions.

AI code assistantDesktop petGDScript
0 likes · 7 min read
How an AI Code Assistant Supercharges a Godot Desktop Pet Project
Continuous Delivery 2.0
Continuous Delivery 2.0
Jul 3, 2024 · Artificial Intelligence

Applying Large Language Models to Software Engineering: Challenges, Cross‑File Editing Issues, Bug‑Fixing Evaluation, and SWE‑Bench Results

This article examines the practical challenges of using large language models in software development, including handling long contexts, cross‑file editing, bug‑fixing evaluation methods, and presents benchmark results from SWE‑Bench and its Lite subset to assess model capabilities.

Cross-File EditingLLMSWE-bench
0 likes · 7 min read
Applying Large Language Models to Software Engineering: Challenges, Cross‑File Editing Issues, Bug‑Fixing Evaluation, and SWE‑Bench Results
Sanyou's Java Diary
Sanyou's Java Diary
Dec 4, 2023 · Backend Development

When Pagination Breaks: Real‑World Bugs and Practical Fixes

This article recounts three production‑level pagination bugs encountered in a payment system, explains why they occurred—ranging from naive batch processing to MySQL's nondeterministic LIMIT behavior—and shows how proper pagination, ThreadLocal cleanup, and deterministic ordering resolve the issues.

BackendSQLbug fixing
0 likes · 16 min read
When Pagination Breaks: Real‑World Bugs and Practical Fixes
Ant R&D Efficiency
Ant R&D Efficiency
Oct 17, 2023 · Fundamentals

Analysis of Code Defects and Their Repair Rates in Projects A and B

The report analyzes SonarQube‑detected defects in Projects A and B, classifying them by type and severity, revealing that code smells dominate while null‑pointer bugs are unexpectedly frequent, and discusses why some defects are quickly fixed versus others remaining unresolved, emphasizing early detection, design rigor, and robust testing.

Software TestingSonarQubebug fixing
0 likes · 16 min read
Analysis of Code Defects and Their Repair Rates in Projects A and B
IT Services Circle
IT Services Circle
Feb 7, 2023 · Artificial Intelligence

ChatGPT’s Bug‑Fixing Ability Reaches State‑of‑the‑Art on the QuixBugs Benchmark

Researchers from Germany and the UK evaluated ChatGPT and three other AI models on the QuixBugs benchmark, finding that ChatGPT correctly fixed 31 of 40 bugs—outperforming CodeX, CoCoNut, and Standard APR—and sparked mixed reactions about its impact on software engineering and OpenAI’s broader strategies.

AI EvaluationChatGPTQuixBugs
0 likes · 8 min read
ChatGPT’s Bug‑Fixing Ability Reaches State‑of‑the‑Art on the QuixBugs Benchmark
Liangxu Linux
Liangxu Linux
Aug 29, 2020 · Fundamentals

Why a Two‑Line Fix Can Take Two Days: Hidden Costs of Bug Fixing

A seemingly simple two‑line code change can stretch into days because of unclear bug reports, unfamiliar features, thorough root‑cause analysis, multiple reproduction paths, impact checks, careful solution design, and comprehensive testing, all of which aim to prevent future regressions.

Software Engineeringbug fixingcode quality
0 likes · 5 min read
Why a Two‑Line Fix Can Take Two Days: Hidden Costs of Bug Fixing
FunTester
FunTester
Jul 22, 2020 · Industry Insights

What Simple Validation Mistakes Reveal About Real‑World Testing

The author recounts bugs uncovered during a web‑based QA session—ranging from mismatched character‑length limits and inconsistent filter defaults to fragmented documentation—highlighting how overlooking tiny validation rules can cause costly defects and why unified standards and professional testing are essential.

Documentationbug fixingquality assurance
0 likes · 5 min read
What Simple Validation Mistakes Reveal About Real‑World Testing
Tencent Cloud Developer
Tencent Cloud Developer
Mar 18, 2019 · Product Management

How to Prioritize Product Requirements: A User‑Centric Approach and Bug‑First Strategy

To keep product development sustainable, prioritize user‑reported bugs first, then self‑discovered bugs, followed by user‑requested features and finally internal ideas, using continuous ranking based on impact, difficulty, and supporter count while actively listening to users and fixing problems before adding new functionality.

agilebug fixingproduct-management
0 likes · 9 min read
How to Prioritize Product Requirements: A User‑Centric Approach and Bug‑First Strategy
21CTO
21CTO
Nov 25, 2018 · Backend Development

Inside Oracle’s 25‑Million‑Line C Code: Why Fixing One Bug Takes Weeks

An Oracle Database developer describes the massive, flag‑laden C codebase, the endless testing cycles, and why even tiny bug fixes can require weeks of work, highlighting the extreme complexity and maintenance challenges of large enterprise databases.

Oraclebug fixingdatabase
0 likes · 5 min read
Inside Oracle’s 25‑Million‑Line C Code: Why Fixing One Bug Takes Weeks
360 Quality & Efficiency
360 Quality & Efficiency
Jul 11, 2018 · Fundamentals

Common Boundary Value Bugs in Software Testing and Their Fixes

This article reviews three typical boundary‑value bugs encountered during software testing—incorrect memory size checks, off‑by‑one retry counters, and misplaced increment operations—explaining their causes, showing original C code, and providing concise corrective solutions.

C programmingDefensive CodingSoftware Testing
0 likes · 5 min read
Common Boundary Value Bugs in Software Testing and Their Fixes
21CTO
21CTO
Jan 7, 2016 · Fundamentals

How to Kickstart Your Open‑Source Journey: Find Easy Bugs and Contribute Today

This guide explains what open‑source software is, why contributing matters, and provides step‑by‑step resources for beginners to choose a language, locate easy bugs, and start contributing to projects like Fedora, Mozilla, KDE, OpenStack, GNOME, Apache, Python, and Django.

Beginnerbug fixingcommunity
0 likes · 11 min read
How to Kickstart Your Open‑Source Journey: Find Easy Bugs and Contribute Today
Baidu Tech Salon
Baidu Tech Salon
Aug 5, 2014 · Backend Development

A Tale of Bug Fixing: Thinking Beyond the Immediate Solution

After a rushed fix for a division‑by‑zero bug caused incorrect results, the team learns to validate data at its source, adopt proper validation frameworks, and step back to understand underlying requirements, emphasizing that thoughtful design outweighs quick code patches.

Backend DevelopmentPHPbug fixing
0 likes · 6 min read
A Tale of Bug Fixing: Thinking Beyond the Immediate Solution