• My Feed
  • Home
  • What's Important
  • Media & Entertainment
Search

Stay Curious. Stay Wanture.

© 2026 Wanture. All rights reserved.

  • Terms of Use
  • Privacy Policy
banner
Tech/Software

Microsoft writes 30% of its code with AI

Satya Nadella reveals how machine learning models now generate production code at scale

November 27, 2025, 10:32 pm

Microsoft CEO Satya Nadella disclosed that developers at the company write up to 30 percent of their code using artificial intelligence. This milestone marks AI's transition from experimental tool to production workhorse. The article explains how AI code generation works, what this percentage means for software development, and how Microsoft implements quality controls.

image-65

Summary

  • Microsoft developers now write up to 30% of code with AI assistance, using tools like GitHub Copilot to generate code suggestions in real-time.
  • AI-generated code passes the same review and testing processes as human-written code, with Microsoft applying rigorous quality and security checks.
  • This collaboration model shifts programming work from writing boilerplate to focusing on system design, with AI expected to generate majority of new code within 5 years.

Microsoft's developers now write up to 30 percent of their code with artificial intelligence. CEO Satya Nadella shared this figure at a recent industry event.

Many assume AI writes entire programs autonomously. It doesn't. AI suggests code as developers type. Humans decide what to build and whether to accept those suggestions.

This explainer shows how that collaboration actually works.

What AI-Generated Code Actually Is

AI-generated code is source code written by machine learning models. These models learned patterns from millions of existing programs. They suggest code completions as developers type.

Think of it like autocomplete on your phone. You type a few letters. Your phone suggests the full word. AI does this for entire functions.

The technology doesn't copy code verbatim. It generates new code based on statistical patterns. When you write a function name like calculate_compound_interest, the model predicts the most likely implementation. It draws on thousands of similar functions it encountered during training.

Microsoft uses GitHub Copilot, built on OpenAI's Codex model. Codex trained on billions of lines of public code from GitHub. It learned patterns across Python, JavaScript, C++, and dozens of other languages.

Why This Matters Now

Microsoft ships this AI-written code in products millions use daily. Azure cloud services. Visual Studio development tools. Microsoft 365 applications. Windows operating system components.

This isn't experimental. It's production code that runs critical systems.

The 30 percent threshold changes how software teams work. Junior developers now prompt AI systems instead of writing every line manually. Senior architects structure projects to leverage AI generation while maintaining quality. Code reviewers evaluate AI suggestions alongside human-written implementations.

Microsoft employs tens of thousands of software engineers. A 30 percent AI contribution means tens of millions of lines of AI-generated code deployed annually. This volume creates new quality challenges. It also accelerates shipping features and iterating on feedback.

Nadella noted that acceptance rates vary by programming language. Python code suggestions see higher acceptance than C++ suggestions. Python dominates public repositories. The AI has more examples to learn from.

How It Works

The Model Layer

Large language models form the foundation. GitHub Copilot uses OpenAI's Codex. Codex trained on billions of lines of public code. It learned syntax, structure, and common solutions across programming languages.

The AI is like a sous chef who has memorized every recipe ever written. You tell it what dish you want. It suggests the ingredients and steps. You adjust the seasoning.

The model doesn't understand why code works. It recognizes patterns that usually produce working code. Training data quality determines output quality. Models trained on well-tested libraries generate more reliable code.

Microsoft's advantage lies in GitHub's corpus. It's the largest collection of version-controlled code in existence.

The Integration Layer

AI code generation integrates directly into development environments. It appears as inline suggestions in Visual Studio Code. Developers see suggestions in real time as they type. Ghost text appears that can be accepted with Tab or rejected with Escape.

This tight integration reduces friction. The AI becomes part of the development loop. No context switching required. The faster the feedback cycle, the more developers use it. The more they use it, the more code it generates.

Microsoft reports that developers accept AI suggestions 30 to 40 percent of the time. This acceptance rate, multiplied across thousands of developers and millions of keystrokes daily, produces the 30 percent figure. Some teams see higher percentages. Others see lower. It depends on the nature of their work.

The Quality Control Layer

AI-generated code passes through the same review and testing pipelines as human-written code. It must compile without errors. It must pass unit tests. It must survive code review by senior engineers. It must meet security scanning requirements.

Code review works like airport security. Every piece of code passes through scanners. AI-generated code gets extra screening. Only safe code reaches production.

The difference is volume. AI can generate code faster than humans can review it. Microsoft developed AI-assisted code review tools to address this bottleneck. These tools flag potential issues before human review. Unused variables. Deprecated API calls. Potential null pointer exceptions. Performance anti-patterns. Human reviewers then focus on logic and architecture.

Security represents a particular concern. AI models can reproduce vulnerabilities present in training data. If the model encountered SQL injection vulnerabilities in training examples, it might generate similar vulnerable code. Microsoft employs automated security scanning specifically tuned to catch common patterns in AI-generated code.

The Feedback Loop

Developer acceptance and rejection of AI suggestions trains the system. When developers consistently reject certain types of suggestions, the model learns. When they accept and modify suggestions in predictable ways, the model adapts.

This creates continuous improvement. The AI becomes more useful over time. It learns team-specific coding standards. It learns project-specific patterns. It learns individual developer preferences.

Microsoft's scale accelerates this learning. Thousands of developers provide millions of feedback signals daily. The model improves faster than it would with a smaller user base.

Real-World Examples

Example 1: Azure Infrastructure Code

Microsoft's Azure team uses AI generation extensively for infrastructure code. Terraform configurations and Kubernetes manifests follow predictable patterns. Developers describe desired infrastructure in comments. The AI generates the corresponding template. Complete with resource definitions, networking configuration, and security rules.

This reduced infrastructure provisioning time by approximately 40 percent for some Azure services. Developers spend less time looking up API documentation. More time on capacity planning and cost optimization.

Example 2: Visual Studio Code Extensions

VS Code's extension ecosystem includes thousands of plugins. Many follow similar architectural patterns. Microsoft's extension development team uses AI to generate boilerplate code for new extensions. Manifest files. Activation event handlers. Command registration code.

Developers focus on unique functionality. The actual logic that makes the extension useful. AI handles standard scaffolding. Extension development time decreased by approximately 25 percent. The cognitive load shifted. Developers describe what they want. Review the generated structure. Fill in business logic.

Common Misconceptions

Myth: AI writes complete applications autonomously.

Reality: AI generates code fragments, functions, and modules. It does not architect systems or make product decisions. Humans define requirements. Design system architecture. Choose technology stacks. Integrate AI-generated components into coherent applications. The 30 percent figure represents lines of code, not decision-making authority.

Myth: AI-generated code is lower quality than human-written code.

Reality: Quality depends on review and testing processes, not authorship. Well-reviewed AI code can exceed the quality of hastily written human code. Microsoft applies the same standards to AI-generated pull requests as human-generated ones. Rigorous testing maintains quality regardless of code origin.

Myth: AI code generation will eliminate programming jobs.

Reality: AI shifts the nature of programming work. Developers spend less time writing boilerplate. More time on system design, code review, and complex problem-solving. Microsoft continues hiring software engineers at scale. The company added thousands of engineering positions in 2024 and 2025. Skill requirements are evolving, not disappearing.

What This Means

AI code generation has become production-ready at Microsoft. It handles routine coding while humans focus on architecture and design. This collaboration model will expand as AI capabilities grow.

For business leaders, this shift represents both opportunity and challenge. Development velocity increases, but so does the need for robust quality assurance. Companies adopting similar tools can accelerate product development while maintaining security standards.

Startups in Austin and Seattle now use similar AI coding tools. In Silicon Valley, AI pair programming has become as common as standing desks. The technology will improve. The percentage will increase.

Within five years, AI-generated code may represent the majority of new code written at large technology companies. The most valuable developers will be those who can effectively direct AI systems while maintaining quality and security standards. Engineers who understand both the capabilities and limitations of AI code generation.

Having a programming buddy who has read every Stack Overflow answer changes what it means to write software.

Topic

OpenAI Market Competition

Anthropic launches Claude Opus 4.5 for autonomous coding

25 November 2025

Anthropic launches Claude Opus 4.5 for autonomous coding

Google's infrastructure advantage just ended OpenAI's dominance

23 November 2025

OpenAI's Altman warns staff of financial risks after Gemini 3 launch

21 November 2025

ChatGPT Atlas macOS-Only Beta Review: AI-Centric Browser

27 October 2025

ChatGPT Atlas macOS-Only Beta Review: AI-Centric Browser

Feed

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus

    JBL unveiled the EasySing AI karaoke microphone, bundled with the PartyBox 2 Plus, on April 5, 2026. The mic’s on‑device neural‑network strips vocals at three levels and adds real‑time pitch correction, while Voice Boost cuts background noise. With ten‑hour battery life and USB‑C pairing, it aims at the expanding U.S. karaoke market driven by AI‑enhanced, portable audio.

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus
    about 10 hours ago

    Why Does Muscle Mass Beat the Scale After 40?

    Hidden muscle loss slows metabolism; strength tests can protect health after 40

    about 11 hours ago

    Evening Sugar Cravings: Why They’re Metabolic, Not Willpower

    Low glucose and dopamine spikes spark sweet cravings; protein curbs them

    about 11 hours ago

    Apple’s upcoming foldable adds two‑app split-screen

    Apple’s upcoming foldable iPhone, slated for the 2026‑2027 roadmap, will run a custom OS and support a two‑app side‑by‑side view. The internal screen expands to roughly 7.6‑7.8 inches while the outer cover remains a familiar 5.4 inches, offering a pocket‑sized device that lets professionals check notes or reply to messages without switching apps. Developer tools will determine how quickly the split‑screen workflow gains traction.

    Apple’s upcoming foldable adds two‑app split-screen
    about 12 hours ago
    7 Steps to Supercharge Windows with PowerToys v0.97.2

    7 Steps to Supercharge Windows with PowerToys v0.97.2

    Install, configure, and use PowerToys v0.97.2 to speed up Windows tasks

    about 14 hours ago

    Apple Music Streams Full Songs Inside TikTok

    Apple Music became the exclusive provider of full‑track streaming inside TikTok on March 11, 2026. Users tap a button to play entire songs via an embedded mini‑player without leaving the app. Non‑subscribers receive a three‑month free trial, streams count toward artist royalties, and new Listening Party rooms enable real‑time co‑listening with live chat.

    about 17 hours ago

    Xbox Full Screen Experience hits Windows 11 in April 2026

    Microsoft announced that the Xbox Full Screen Experience will be available on Windows 11 PCs starting in April 2026. The mode disables File Explorer and background services, freeing roughly 2 GB of RAM and lowering CPU load. Gamers can activate it by pressing Win+F11 or via the Game Bar, and it works with Steam, Epic, Microsoft Store, and DirectX 12 titles.

    Xbox Full Screen Experience hits Windows 11 in April 2026
    about 18 hours ago

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs

    Nvidia and Nebius announced on March 11 a partnership to launch on‑demand AI factories built from H100 and H200 GPUs. The service bundles Nvidia AI Enterprise, NeMo and Triton, letting developers train and run large language models without buying hardware. Nebius shares jumped over 13% after the news, buoyed by its 2025 Microsoft contract.

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs
    1 day ago

    Windows 11 KB5079473 update released on March 11, 2026

    Microsoft’s March 11, 2026 Windows 11 KB5079473 update fixes sign‑in freezes, cuts wake‑from‑sleep latency on SSD laptops, and stops Nearby Sharing crashes during large file transfers. It adds an Extract‑All button for RAR/7z archives, fresh emojis, an internet‑speed taskbar widget, and native .webp wallpaper support. Install via Settings > Windows Update or a standalone download.

    Windows 11 KB5079473 update released on March 11, 2026
    1 day ago

    Klotho Clock Assays Target Biological Age in Neuro Trials

    Klotho Neurosciences rolled out two genomics assays on March 10, 2026, dubbed the Klotho Clock. The tests read cell‑free DNA methylation at the KLOTHO promoter and profile nine longevity‑linked genes, letting researchers match trial participants by biological age. Aligning groups this way may boost power in ALS and Alzheimer’s studies and cut costly trial failures.

    1 day ago

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks

    On March 8, 2026, Moskvich announced the end of 5‑sedan production after fewer than 500 units left the line, citing missed consumer‑property benchmarks for ride comfort and interior durability. Remaining cars will be sold at discounts of up to 30%. The company is now shifting resources to the 3 SUV, aiming for 50,000 units to avoid the shortfalls that halted the 5.

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks
    1 day ago

    Meta acquires Moltbook to boost AI‑agent platform

    Meta announced on March 10, 2026 that it has acquired Moltbook, the Reddit‑style AI‑agent platform that amassed 1.5 million agents after its late‑January launch. The purchase follows a February security breach that exposed API keys, prompting Meta to bring the team into its Superintelligence Labs and promise secure, hosted tools for managing multi‑agent ecosystems.

    Meta acquires Moltbook to boost AI‑agent platform
    1 day ago

    Adobe Photoshop AI assistant launches for all on April 1

    On April 1, Adobe opened its Photoshop AI assistant to all web and mobile users, ending the invite‑only beta. The generative fill feature lets creators type prompts or draw arrows to remove, replace, or adjust objects, with support for iOS 15+ and Android 12+. Paid subscribers keep unlimited generations; free accounts are capped at 20 edits until April 9.

    Adobe Photoshop AI assistant launches for all on April 1
    2 days ago

    Xiaomi begins public test of Mijia Kids Toothbrush Pro

    Xiaomi has begun testing in China of its Mijia Kids Toothbrush Pro, a brush that logs brushing duration, pressure, and problem spots. Parents set care plans in the Mijia app, earn rewards for sessions, and get alerts for missed brushing. The device offers a 90‑day battery life, an IPX8 waterproof rating, and stores data on Xiaomi servers, needing consent under the 2025 COPPA rules.

    Xiaomi begins public test of Mijia Kids Toothbrush Pro
    2 days ago

    MacBook Neo Disrupts Budget Laptop Market

    The case study examines Apple’s entry‑level MacBook Neo, a 13‑inch Retina laptop powered by the A18 Pro chip, and its impact on U.S. education. By delivering a 500‑nit display, fan‑less design, and over ten hours of battery life at a budget‑friendly price, the Neo challenges Chromebooks’ dominance and forces Windows OEMs to rethink low‑cost hardware strategies.

    3 days ago
    4 Steps to Navigate the 2026 Memory Chip Shortage

    4 Steps to Navigate the 2026 Memory Chip Shortage

    Pick DDR4 or DDR5, balance your budget, and build a PC that lasts

    3 days ago

    Apple iMac adds new colors, M5 or M6 chips for 2026

    Apple announced that the iMac will receive two fresh color options with shipments scheduled for late 2026. The refreshed model will retain the 2021 chassis and be powered by either the existing M5 silicon or the upcoming M6 chip, depending on launch timing. Production is set to begin later this year, and Apple noted the 3D‑printed aluminum process could later be used on iMacs.

    Apple iMac adds new colors, M5 or M6 chips for 2026
    3 days ago
    Inside LEGO’s Smart Brick: How a 2×4 Brick Plays Sound

    Inside LEGO’s Smart Brick: How a 2×4 Brick Plays Sound

    A teardown shows the 45 mAh battery, speaker and RFID trigger that add sound

    3 days ago

    Mac mini M4 fits inside 20‑inch LEGO block

    Engineer Paul Staall unveiled a 20‑inch LEGO Galaxy Explorer brick that encloses a Mac mini M4 powered by an M2‑Pro chip, offering Thunderbolt 4, HDMI 2.1, and full‑size SD connectivity. The 3D‑printed case, printed in 12 hours with PETG, shows how affordable printers and open‑source designs let hobbyists turn nostalgic toys into functional mini‑PCs.

    Mac mini M4 fits inside 20‑inch LEGO block
    4 days ago

    Anthropic Launches Claude Marketplace with Unified Billing

    Anthropic’s Claude Marketplace lets enterprises buy AI tools on a single Anthropic balance, removing separate vendor contracts. Teams assign credit, set per‑tool budget caps, and receive one invoice, streamlining procurement and audit trails. As AI spend tops $8 billion this year, the service helps align costs with strategic budgets.

    Anthropic Launches Claude Marketplace with Unified Billing
    6 days ago
    Loading...
Tech/Software

Microsoft writes 30% of its code with AI

Satya Nadella reveals how machine learning models now generate production code at scale

27 November 2025

—

Explainer *

Aiden Roth

banner

Microsoft CEO Satya Nadella disclosed that developers at the company write up to 30 percent of their code using artificial intelligence. This milestone marks AI's transition from experimental tool to production workhorse. The article explains how AI code generation works, what this percentage means for software development, and how Microsoft implements quality controls.

image-65

Summary:

  • Microsoft developers now write up to 30% of code with AI assistance, using tools like GitHub Copilot to generate code suggestions in real-time.
  • AI-generated code passes the same review and testing processes as human-written code, with Microsoft applying rigorous quality and security checks.
  • This collaboration model shifts programming work from writing boilerplate to focusing on system design, with AI expected to generate majority of new code within 5 years.

Microsoft's developers now write up to 30 percent of their code with artificial intelligence. CEO Satya Nadella shared this figure at a recent industry event.

Many assume AI writes entire programs autonomously. It doesn't. AI suggests code as developers type. Humans decide what to build and whether to accept those suggestions.

This explainer shows how that collaboration actually works.

What AI-Generated Code Actually Is

AI-generated code is source code written by machine learning models. These models learned patterns from millions of existing programs. They suggest code completions as developers type.

Think of it like autocomplete on your phone. You type a few letters. Your phone suggests the full word. AI does this for entire functions.

The technology doesn't copy code verbatim. It generates new code based on statistical patterns. When you write a function name like calculate_compound_interest, the model predicts the most likely implementation. It draws on thousands of similar functions it encountered during training.

Microsoft uses GitHub Copilot, built on OpenAI's Codex model. Codex trained on billions of lines of public code from GitHub. It learned patterns across Python, JavaScript, C++, and dozens of other languages.

Why This Matters Now

Microsoft ships this AI-written code in products millions use daily. Azure cloud services. Visual Studio development tools. Microsoft 365 applications. Windows operating system components.

This isn't experimental. It's production code that runs critical systems.

The 30 percent threshold changes how software teams work. Junior developers now prompt AI systems instead of writing every line manually. Senior architects structure projects to leverage AI generation while maintaining quality. Code reviewers evaluate AI suggestions alongside human-written implementations.

Microsoft employs tens of thousands of software engineers. A 30 percent AI contribution means tens of millions of lines of AI-generated code deployed annually. This volume creates new quality challenges. It also accelerates shipping features and iterating on feedback.

Nadella noted that acceptance rates vary by programming language. Python code suggestions see higher acceptance than C++ suggestions. Python dominates public repositories. The AI has more examples to learn from.

How It Works

The Model Layer

Large language models form the foundation. GitHub Copilot uses OpenAI's Codex. Codex trained on billions of lines of public code. It learned syntax, structure, and common solutions across programming languages.

The AI is like a sous chef who has memorized every recipe ever written. You tell it what dish you want. It suggests the ingredients and steps. You adjust the seasoning.

The model doesn't understand why code works. It recognizes patterns that usually produce working code. Training data quality determines output quality. Models trained on well-tested libraries generate more reliable code.

Microsoft's advantage lies in GitHub's corpus. It's the largest collection of version-controlled code in existence.

The Integration Layer

AI code generation integrates directly into development environments. It appears as inline suggestions in Visual Studio Code. Developers see suggestions in real time as they type. Ghost text appears that can be accepted with Tab or rejected with Escape.

This tight integration reduces friction. The AI becomes part of the development loop. No context switching required. The faster the feedback cycle, the more developers use it. The more they use it, the more code it generates.

Microsoft reports that developers accept AI suggestions 30 to 40 percent of the time. This acceptance rate, multiplied across thousands of developers and millions of keystrokes daily, produces the 30 percent figure. Some teams see higher percentages. Others see lower. It depends on the nature of their work.

The Quality Control Layer

AI-generated code passes through the same review and testing pipelines as human-written code. It must compile without errors. It must pass unit tests. It must survive code review by senior engineers. It must meet security scanning requirements.

Code review works like airport security. Every piece of code passes through scanners. AI-generated code gets extra screening. Only safe code reaches production.

The difference is volume. AI can generate code faster than humans can review it. Microsoft developed AI-assisted code review tools to address this bottleneck. These tools flag potential issues before human review. Unused variables. Deprecated API calls. Potential null pointer exceptions. Performance anti-patterns. Human reviewers then focus on logic and architecture.

Security represents a particular concern. AI models can reproduce vulnerabilities present in training data. If the model encountered SQL injection vulnerabilities in training examples, it might generate similar vulnerable code. Microsoft employs automated security scanning specifically tuned to catch common patterns in AI-generated code.

The Feedback Loop

Developer acceptance and rejection of AI suggestions trains the system. When developers consistently reject certain types of suggestions, the model learns. When they accept and modify suggestions in predictable ways, the model adapts.

This creates continuous improvement. The AI becomes more useful over time. It learns team-specific coding standards. It learns project-specific patterns. It learns individual developer preferences.

Microsoft's scale accelerates this learning. Thousands of developers provide millions of feedback signals daily. The model improves faster than it would with a smaller user base.

Real-World Examples

Example 1: Azure Infrastructure Code

Microsoft's Azure team uses AI generation extensively for infrastructure code. Terraform configurations and Kubernetes manifests follow predictable patterns. Developers describe desired infrastructure in comments. The AI generates the corresponding template. Complete with resource definitions, networking configuration, and security rules.

This reduced infrastructure provisioning time by approximately 40 percent for some Azure services. Developers spend less time looking up API documentation. More time on capacity planning and cost optimization.

Example 2: Visual Studio Code Extensions

VS Code's extension ecosystem includes thousands of plugins. Many follow similar architectural patterns. Microsoft's extension development team uses AI to generate boilerplate code for new extensions. Manifest files. Activation event handlers. Command registration code.

Developers focus on unique functionality. The actual logic that makes the extension useful. AI handles standard scaffolding. Extension development time decreased by approximately 25 percent. The cognitive load shifted. Developers describe what they want. Review the generated structure. Fill in business logic.

Common Misconceptions

Myth: AI writes complete applications autonomously.

Reality: AI generates code fragments, functions, and modules. It does not architect systems or make product decisions. Humans define requirements. Design system architecture. Choose technology stacks. Integrate AI-generated components into coherent applications. The 30 percent figure represents lines of code, not decision-making authority.

Myth: AI-generated code is lower quality than human-written code.

Reality: Quality depends on review and testing processes, not authorship. Well-reviewed AI code can exceed the quality of hastily written human code. Microsoft applies the same standards to AI-generated pull requests as human-generated ones. Rigorous testing maintains quality regardless of code origin.

Myth: AI code generation will eliminate programming jobs.

Reality: AI shifts the nature of programming work. Developers spend less time writing boilerplate. More time on system design, code review, and complex problem-solving. Microsoft continues hiring software engineers at scale. The company added thousands of engineering positions in 2024 and 2025. Skill requirements are evolving, not disappearing.

What This Means

AI code generation has become production-ready at Microsoft. It handles routine coding while humans focus on architecture and design. This collaboration model will expand as AI capabilities grow.

For business leaders, this shift represents both opportunity and challenge. Development velocity increases, but so does the need for robust quality assurance. Companies adopting similar tools can accelerate product development while maintaining security standards.

Startups in Austin and Seattle now use similar AI coding tools. In Silicon Valley, AI pair programming has become as common as standing desks. The technology will improve. The percentage will increase.

Within five years, AI-generated code may represent the majority of new code written at large technology companies. The most valuable developers will be those who can effectively direct AI systems while maintaining quality and security standards. Engineers who understand both the capabilities and limitations of AI code generation.

Having a programming buddy who has read every Stack Overflow answer changes what it means to write software.

Topic

OpenAI Market Competition

Anthropic launches Claude Opus 4.5 for autonomous coding

25 November 2025

Anthropic launches Claude Opus 4.5 for autonomous coding

Google's infrastructure advantage just ended OpenAI's dominance

23 November 2025

OpenAI's Altman warns staff of financial risks after Gemini 3 launch

21 November 2025

ChatGPT Atlas macOS-Only Beta Review: AI-Centric Browser

27 October 2025

ChatGPT Atlas macOS-Only Beta Review: AI-Centric Browser

Feed

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus

    JBL unveiled the EasySing AI karaoke microphone, bundled with the PartyBox 2 Plus, on April 5, 2026. The mic’s on‑device neural‑network strips vocals at three levels and adds real‑time pitch correction, while Voice Boost cuts background noise. With ten‑hour battery life and USB‑C pairing, it aims at the expanding U.S. karaoke market driven by AI‑enhanced, portable audio.

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus
    about 10 hours ago

    Why Does Muscle Mass Beat the Scale After 40?

    Hidden muscle loss slows metabolism; strength tests can protect health after 40

    about 11 hours ago

    Evening Sugar Cravings: Why They’re Metabolic, Not Willpower

    Low glucose and dopamine spikes spark sweet cravings; protein curbs them

    about 11 hours ago

    Apple’s upcoming foldable adds two‑app split-screen

    Apple’s upcoming foldable iPhone, slated for the 2026‑2027 roadmap, will run a custom OS and support a two‑app side‑by‑side view. The internal screen expands to roughly 7.6‑7.8 inches while the outer cover remains a familiar 5.4 inches, offering a pocket‑sized device that lets professionals check notes or reply to messages without switching apps. Developer tools will determine how quickly the split‑screen workflow gains traction.

    Apple’s upcoming foldable adds two‑app split-screen
    about 12 hours ago
    7 Steps to Supercharge Windows with PowerToys v0.97.2

    7 Steps to Supercharge Windows with PowerToys v0.97.2

    Install, configure, and use PowerToys v0.97.2 to speed up Windows tasks

    about 14 hours ago

    Apple Music Streams Full Songs Inside TikTok

    Apple Music became the exclusive provider of full‑track streaming inside TikTok on March 11, 2026. Users tap a button to play entire songs via an embedded mini‑player without leaving the app. Non‑subscribers receive a three‑month free trial, streams count toward artist royalties, and new Listening Party rooms enable real‑time co‑listening with live chat.

    about 17 hours ago

    Xbox Full Screen Experience hits Windows 11 in April 2026

    Microsoft announced that the Xbox Full Screen Experience will be available on Windows 11 PCs starting in April 2026. The mode disables File Explorer and background services, freeing roughly 2 GB of RAM and lowering CPU load. Gamers can activate it by pressing Win+F11 or via the Game Bar, and it works with Steam, Epic, Microsoft Store, and DirectX 12 titles.

    Xbox Full Screen Experience hits Windows 11 in April 2026
    about 18 hours ago

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs

    Nvidia and Nebius announced on March 11 a partnership to launch on‑demand AI factories built from H100 and H200 GPUs. The service bundles Nvidia AI Enterprise, NeMo and Triton, letting developers train and run large language models without buying hardware. Nebius shares jumped over 13% after the news, buoyed by its 2025 Microsoft contract.

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs
    1 day ago

    Windows 11 KB5079473 update released on March 11, 2026

    Microsoft’s March 11, 2026 Windows 11 KB5079473 update fixes sign‑in freezes, cuts wake‑from‑sleep latency on SSD laptops, and stops Nearby Sharing crashes during large file transfers. It adds an Extract‑All button for RAR/7z archives, fresh emojis, an internet‑speed taskbar widget, and native .webp wallpaper support. Install via Settings > Windows Update or a standalone download.

    Windows 11 KB5079473 update released on March 11, 2026
    1 day ago

    Klotho Clock Assays Target Biological Age in Neuro Trials

    Klotho Neurosciences rolled out two genomics assays on March 10, 2026, dubbed the Klotho Clock. The tests read cell‑free DNA methylation at the KLOTHO promoter and profile nine longevity‑linked genes, letting researchers match trial participants by biological age. Aligning groups this way may boost power in ALS and Alzheimer’s studies and cut costly trial failures.

    1 day ago

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks

    On March 8, 2026, Moskvich announced the end of 5‑sedan production after fewer than 500 units left the line, citing missed consumer‑property benchmarks for ride comfort and interior durability. Remaining cars will be sold at discounts of up to 30%. The company is now shifting resources to the 3 SUV, aiming for 50,000 units to avoid the shortfalls that halted the 5.

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks
    1 day ago

    Meta acquires Moltbook to boost AI‑agent platform

    Meta announced on March 10, 2026 that it has acquired Moltbook, the Reddit‑style AI‑agent platform that amassed 1.5 million agents after its late‑January launch. The purchase follows a February security breach that exposed API keys, prompting Meta to bring the team into its Superintelligence Labs and promise secure, hosted tools for managing multi‑agent ecosystems.

    Meta acquires Moltbook to boost AI‑agent platform
    1 day ago

    Adobe Photoshop AI assistant launches for all on April 1

    On April 1, Adobe opened its Photoshop AI assistant to all web and mobile users, ending the invite‑only beta. The generative fill feature lets creators type prompts or draw arrows to remove, replace, or adjust objects, with support for iOS 15+ and Android 12+. Paid subscribers keep unlimited generations; free accounts are capped at 20 edits until April 9.

    Adobe Photoshop AI assistant launches for all on April 1
    2 days ago

    Xiaomi begins public test of Mijia Kids Toothbrush Pro

    Xiaomi has begun testing in China of its Mijia Kids Toothbrush Pro, a brush that logs brushing duration, pressure, and problem spots. Parents set care plans in the Mijia app, earn rewards for sessions, and get alerts for missed brushing. The device offers a 90‑day battery life, an IPX8 waterproof rating, and stores data on Xiaomi servers, needing consent under the 2025 COPPA rules.

    Xiaomi begins public test of Mijia Kids Toothbrush Pro
    2 days ago

    MacBook Neo Disrupts Budget Laptop Market

    The case study examines Apple’s entry‑level MacBook Neo, a 13‑inch Retina laptop powered by the A18 Pro chip, and its impact on U.S. education. By delivering a 500‑nit display, fan‑less design, and over ten hours of battery life at a budget‑friendly price, the Neo challenges Chromebooks’ dominance and forces Windows OEMs to rethink low‑cost hardware strategies.

    3 days ago
    4 Steps to Navigate the 2026 Memory Chip Shortage

    4 Steps to Navigate the 2026 Memory Chip Shortage

    Pick DDR4 or DDR5, balance your budget, and build a PC that lasts

    3 days ago

    Apple iMac adds new colors, M5 or M6 chips for 2026

    Apple announced that the iMac will receive two fresh color options with shipments scheduled for late 2026. The refreshed model will retain the 2021 chassis and be powered by either the existing M5 silicon or the upcoming M6 chip, depending on launch timing. Production is set to begin later this year, and Apple noted the 3D‑printed aluminum process could later be used on iMacs.

    Apple iMac adds new colors, M5 or M6 chips for 2026
    3 days ago
    Inside LEGO’s Smart Brick: How a 2×4 Brick Plays Sound

    Inside LEGO’s Smart Brick: How a 2×4 Brick Plays Sound

    A teardown shows the 45 mAh battery, speaker and RFID trigger that add sound

    3 days ago

    Mac mini M4 fits inside 20‑inch LEGO block

    Engineer Paul Staall unveiled a 20‑inch LEGO Galaxy Explorer brick that encloses a Mac mini M4 powered by an M2‑Pro chip, offering Thunderbolt 4, HDMI 2.1, and full‑size SD connectivity. The 3D‑printed case, printed in 12 hours with PETG, shows how affordable printers and open‑source designs let hobbyists turn nostalgic toys into functional mini‑PCs.

    Mac mini M4 fits inside 20‑inch LEGO block
    4 days ago

    Anthropic Launches Claude Marketplace with Unified Billing

    Anthropic’s Claude Marketplace lets enterprises buy AI tools on a single Anthropic balance, removing separate vendor contracts. Teams assign credit, set per‑tool budget caps, and receive one invoice, streamlining procurement and audit trails. As AI spend tops $8 billion this year, the service helps align costs with strategic budgets.

    Anthropic Launches Claude Marketplace with Unified Billing
    6 days ago
    Loading...