SShortSingh.
Back to feed

EU Digital Omnibus Package Threatens to Gut GDPR and AI Act Protections

0
·2 views

The European Commission published its Digital Omnibus Package on 19 November 2025, proposing sweeping amendments to six major digital laws including the GDPR and the AI Act under the banner of 'simplification' and 'competitiveness'. The package follows the September 2024 Draghi Report, which argued that EU regulation had raised data costs and hindered business competitiveness, calling for a radical simplification of the GDPR. Critics, including Amnesty International, European Digital Rights, and a coalition of 127 civil society organisations, have condemned the proposals as the largest rollback of digital rights in EU history. Research by Corporate Europe Observatory and LobbyControl links several key changes in the package directly to lobbying documents submitted by Google, Meta, and Microsoft. The controversy has raised broader questions about whether rights-based digital governance can survive if the EU, its primary architect, retreats from the framework it pioneered.

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 ·

Seven Free Node.js Hosting Platforms Compared for 2026 Projects

A 2026 roundup identifies seven platforms that host Node.js applications at no cost and without requiring a credit card. The platforms vary significantly in their suitability depending on workload type, covering serverless functions, static frontends, edge computing, and always-on containers. Vercel and Netlify are best suited for serverless API routes and static frontends, while Cloudflare Workers offers global edge distribution with a lightweight JavaScript sandbox and a generous free request quota. Suga differentiates itself by offering always-on Docker containers with persistent process support, making it a fit for WebSocket servers and background workers. Developers are advised to match each platform's free-tier architecture to their specific Node.js use case before committing to a deployment choice.

0
ProgrammingDEV Community ·

Chainlink Builds AI Verification Layer, Not Its Own AI Model

Chainlink Labs is positioning itself as a security and verification infrastructure for AI outputs rather than developing its own artificial intelligence models. In March 2026, the company ran a pilot with 24 major financial institutions — including Swift, DTCC, and BNP Paribas — to tackle corporate actions data processing, a sector that costs the global financial industry an estimated $58 billion annually. The project used multiple independent AI instances running across Chainlink's decentralized oracle nodes, with consensus required before any result was written on-chain. The trial achieved 100% consensus agreement across all evaluated corporate actions events, producing what the team called an 'Onchain Golden Record' — an immutable, cryptographically verified data source. The approach mirrors Chainlink's existing price-feed model: aggregating many independent sources to make manipulation costly and reduce reliance on any single point of failure.

0
ProgrammingDEV Community ·

A Three-Pass Method to Triage AI Conference Papers Without Burnout

A machine learning researcher has shared a practical workflow for managing the overwhelming volume of papers published at major AI conferences like NeurIPS, ICLR, ICML, and CVPR. Rather than browsing entire proceedings, the approach starts with a specific topic and uses tools like Paper List to gauge the scope of relevant literature before committing time. Papers are then filtered through three passes — a 10-second title-and-abstract check, a one-minute scan of figures and results, and a full read reserved only for survivors. The researcher caps their active reading list at around 10 papers, rotating out older ones unless they remain directly relevant to ongoing work. The core argument is that reducing decision cost — knowing what not to read — saves more time than improving reading speed alone.

0
ProgrammingDEV Community ·

How Load Balancing and Auto-Scaling Keep Popular Websites Running Smoothly

No single server can handle millions of simultaneous users, so modern web infrastructure relies on two core techniques to stay online under heavy traffic. Load balancing distributes incoming requests across multiple identical server instances, ensuring no single machine is overwhelmed and failed instances are automatically bypassed. Auto-scaling complements this by dynamically adding server instances when demand rises and removing them when traffic drops, optimizing both performance and cost. For this architecture to function correctly, app instances must be stateless, meaning session data like shopping carts must be stored in a shared database or cache rather than in any individual server's memory. Regular health checks, ideally verifying the app's ability to reach its dependencies, allow the load balancer to route traffic only to fully functional instances without requiring manual intervention.