Pains

2403 pains collected

Category:
Tech:
Severity:

Difficult debugging with long application workflows and complex database logic

6

Diagnosing failures becomes increasingly difficult when issues could originate from the database or application code. Long workflows and complex database-side logic require extensive investigation, making root cause analysis time-consuming.

debugPostgreSQL

Safari browser lags in CSS feature support

6

Safari's CSS feature support lags behind other major browsers, creating platform-specific compatibility issues and forcing developers to write Safari-specific workarounds.

compatibilityCSSSafari

Large CSS bundle size impacting page load performance

6

CSS files become excessively large, causing slow page load times and reduced application performance.

performanceCSS

CSS file organization and management is poorly structured

6

Managing CSS files and file organization is cited as the biggest pain point for developers. Stylesheets often become giant, unmaintainable piles of spaghetti code without proper architectural patterns.

architectureCSS

Form element styling requires custom overrides, breaking accessibility

6

Default browser form elements are limited and aesthetically poor, forcing developers to build custom versions. This introduces accessibility complexity that is already difficult to manage without developers further overwriting defaults.

dxCSSHTML Forms

Shadow DOM complexity in Web Components

6

The Shadow DOM, a core feature of Web Components, is reported as not enjoyable and complex to work with. Despite appreciation for other Web Components features like <template> and HTML modules, Shadow DOM adoption is hindered by its perceived difficulty.

dxWeb ComponentsShadow DOM

Accessibility limitations in accordion patterns

6

The new accordion pattern using grouped <details> elements has unresolved accessibility limitations. Using <details> elements doesn't preserve proper semantic heading hierarchy (e.g., in FAQ sections where headers would normally be <h2>), and the one-open-at-a-time behavior can cause unintended closures and horizontal scroll issues.

architectureHTMLWeb Accessibility

Incorrect label-to-form element connections

6

Developers frequently fail to properly connect labels to form elements by using the name attribute instead of id. Labels must be connected to elements via ID (which is unique per element), not name (which clusters form elements together), leading to accessibility failures and poor UX.

dxHTML

Performance optimization across devices and browsers

6

HTML5 applications tend to load slowly, especially on older devices, mobile connections, and when using graphics-intensive features. Developers must constantly optimize code, minimize assets, and leverage caching strategies, but performance remains a persistent challenge.

performanceHTML5CSSJavaScript+1

Limited and difficult platform-specific feature integration

6

Accessing native APIs through platform channels requires knowledge of Kotlin/Swift/Objective-C. Specific features like Bluetooth LE, AR, biometrics, and native notifications either require unreliable third-party packages or custom implementation, reducing the efficiency of cross-platform development.

compatibilityFlutterKotlinSwift

Code exposure vulnerability in HTML5 applications

6

HTML5 files (HTML, CSS, JavaScript) are cached and rendered on the user's system, making them easily accessible and viewable by anyone. HTML5 encryption cannot work because browsers cannot execute encrypted content, forcing developers to use code minification and obfuscation as incomplete solutions.

securityHTML5CSSJavaScript

Slow page load times and delayed server responses

6

Developers report encountering slow page load times or delayed server responses on Vercel, impacting overall user experience. Performance degradation occurs during unexpected traffic spikes and with uncompressed assets.

performanceVercel

CSS layout complexity requires proper HTML structure foundation

6

Developers pile HTML into pages without proper structure, then struggle when CSS cannot fix poor document architecture. Effective CSS layout depends on developers first understanding how to structure HTML semantically and logically.

dxCSSHTML

Performance optimization complexity and poor benchmarks

6

Identifying and fixing performance bottlenecks in C# is difficult, requiring deep understanding of memory management and resource allocation. C# ranks 22nd in TechEmpower performance benchmarks, necessitating use of profiling tools like dotTrace.

performanceC#.NET

Compiler warnings accumulated and ignored

6

Developers habitually ignore or hide C# compiler warnings, abandoning the benefits of strict type checking. Hidden warnings accumulate unnoticed, and many warnings indicate real defects that eventually manifest as bugs in production code.

dxC#

Limited web platform capabilities for hardware access

6

Web APIs provide insufficient device access for hardware capabilities, limiting the ability to implement certain use cases that native applications can support.

compatibilityWeb APIsPWA

Thread-Safe Dictionary Implementation Complexity

6

Manual implementation of thread-safe dictionaries using locks is error-prone and inefficient in multi-threaded scenarios, causing developers to either reinvent the wheel or face concurrency bugs.

performanceC#.NET

Misunderstanding value vs. reference types leads to incorrect behavior

6

Swift developers unfamiliar with the distinction between value types and reference types often have false expectations about code behavior, as instances of these types exhibit different semantics. This conceptual gap causes bugs that are difficult to diagnose.

dxSwift

Identical LINQ statements returning inconsistent results

6

LINQ abstracts collection manipulation but produces unpredictable results when the underlying data source changes format (in-memory objects vs. databases vs. XML). Developers must understand the underlying objects to write correct LINQ code, undermining the abstraction benefit.

compatibilityC#LINQ

GitHub Copilot cannot reliably read VS Code problem diagnostics

6

Copilot claims to read errors from VS Code's Problems tab but consistently fails to do so. Developers must manually copy and paste error messages to get Copilot to address them.

dxGitHub CopilotVS Code

GitHub Copilot VS Code extension degrades with each update despite promising release notes

6

Each new VS Code release promises improvements to Copilot integration, but in practice the extension often becomes worse than the previous version, frustrating developers who expect incremental progress.

dxGitHub CopilotVS Code

Generates over-engineered and hacky solutions

6

Claude Code frequently produces overly complex, hacky implementations for relatively simple problems, creating technical debt and maintainability issues even when code is functional.

dxClaude Code

GitHub Copilot lacks intelligent request routing to appropriate models

6

Developers must manually switch between Copilot models (ChatGPT, Claude, etc.) for different task types, often forgetting to optimize cost. There is no smart triage system to route simple questions to cheaper models and complex requests to premium models.

dxGitHub CopilotChatGPTClaude

GitHub Projects automation between Issues and Projects is underdeveloped

6

Automation between GitHub Projects and Issues is incomplete. Webhooks don't support project field changes, forcing teams to run expensive scheduled jobs for synchronization. For example, automatically updating labels when issues move between project fields has no native support.

configGitHub ProjectsGitHub Issues