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

Stay Curious. Stay Wanture.

© 2026 Wanture. All rights reserved.

  • Terms of Use
  • Privacy Policy
Tech/Software
Ruby 4.0 bets on method-level optimization

ZJIT compiler, Ruby::Box isolation, and Ractor improvements reframe performance strategy

31 December 2025

—

Explainer

Aiden Roth
banner

Ruby 4.0.0 introduces ZJIT—a method-level JIT compiler built in Rust that compiles entire functions rather than bytecode fragments. The release adds Ruby::Box for namespace isolation within single processes, refactors Ractor's concurrency API, and removes more code than it adds. ZJIT currently runs slower than YJIT but promises optimization paths unavailable to bytecode approaches.

IMG_0987-2

Summary:

  • Ruby 4.0 introduces ZJIT, a method-level JIT compiler that optimizes entire functions at once, aiming for deeper performance gains than YJIT’s line-by-line optimization, though it currently runs slower and ships as an opt-in feature.
  • Ruby::Box enables process-internal isolation by creating separate namespaces within a single process, reducing memory overhead for applications like web servers, while Ractor gains API improvements for better concurrency support.
  • The release includes developer experience enhancements like improved logical operators, faster array search methods, and core class integration for Set and Pathname, with a net code reduction of over 60,000 lines signaling maturity and refactoring.

December 2025 brought Ruby 4.0 wrapped in a paradox: a performance-focused release that ships with a new compiler currently slower than its predecessor. The answer to why lies in what the compiler can see.

What Happens When Ruby Sees Entire Methods

Ruby 4.0 ships with ZJIT, a compiler that reads entire methods as single units. The shift matters because of what broader context enables.

Method-level optimization means the compiler sees a complete function—its inputs, logic, and outputs—as one piece. Like reading a full recipe instead of individual cooking steps. This lets it rearrange operations for efficiency in ways line-by-line compilation cannot reach.

ZJIT represents Ruby's bet that bigger compilation contexts unlock performance gains YJIT cannot reach.

YJIT, Ruby's current default compiler, traces hot code paths. It compiles frequently executed sequences as the program runs. A loop might get optimized fifty times during execution. ZJIT takes a different approach. It compiles the entire method containing that loop once, upfront.

The distinction resembles optimizing sentences versus paragraphs. Optimizing sentences means fixing grammar in each one. Optimizing paragraphs means rearranging sentences so the argument flows better. ZJIT does the paragraph version for code.

Shopify's team built ZJIT in Rust, requiring version 1.85.0 or newer. At launch, ZJIT runs faster than Ruby's interpreter but slower than YJIT. Ruby's core team hasn't published comparative percentages yet, targeting performance parity with YJIT in version 4.1.

YJIT remains the default—the production-ready choice while ZJIT matures. Teams activate ZJIT via the --zjit flag for testing. The timeline is explicit: this release lays groundwork. The speed payoff arrives next year.

How Method-Level Compilation Works

Understanding ZJIT requires understanding what compilers see. Ruby code you write becomes bytecode (Ruby's internal instruction format, one step between your code and what the CPU executes). A JIT (Just-In-Time) compiler translates that bytecode into machine instructions while your program runs.

YJIT watches which bytecode fragments execute repeatedly—these "hot code paths" get compiled first. Each optimization decision considers only what's visible in that fragment. A method calling three other methods gets compiled as separate pieces.

ZJIT compiles differently. It sees the method boundary as the unit. All inputs, all logic branches, all outputs visible at once.

Return to the recipe analogy. YJIT optimizes "chop onions" and "heat oil" and "add onions to pan" as separate steps. ZJIT sees prep-cook-serve as one sequence. It can recognize that heating oil while chopping onions saves thirty seconds. Reordering becomes possible.

For code, this means cross-operation optimization. A Shopify checkout method that validates addresses, calculates tax, and updates inventory—ZJIT can see all three steps. It can reorder them to minimize database calls. YJIT optimizes each step separately, missing the relationship.

The architectural bet: broader context enables transformations invisible to fragment-level optimization. Whether that bet pays off depends on whether your application's bottlenecks exist at method boundaries or inside tight loops. ZJIT helps the former. YJIT still wins the latter.

Why This Matters for Your Code

For companies running Ruby at scale, compilation strategy affects infrastructure costs. GitHub processes millions of API requests daily on Ruby. Basecamp built its entire product suite in Ruby. Method-level optimization could mean the difference between adding servers and staying at current capacity.

The impact clusters around application profiles:

  • Web request handlers with multi-step logic benefit from cross-step optimization. User authentication flowing into authorization flowing into data fetching—ZJIT can see and optimize that chain.
  • Background job processors running complex workflows gain from method-level analysis. Jobs that touch multiple services or perform sequential transformations on data.
  • Tight computational loops still favor YJIT's focused optimization. Mathematical operations, array processing, string manipulation inside hot loops.

Ruby 4.0 doesn't force a choice. YJIT remains default. ZJIT exists as opt-in experimentation. The team signals direction without demanding immediate migration.

Ruby::Box and Ractor: The Supporting Cast

Process-Internal Isolation

Ruby::Box creates isolated namespaces within a single Ruby process. Think of it as running multiple virtual Ruby environments in one physical process—like browser tabs sharing memory but not cookies.

Each box maintains separate global variables, constants, and class definitions. You get application-level separation without spawning new processes or reaching for containers.

Practical scenarios:

  • Run parallel web request handlers in one application server process
  • Phase in code changes by running old and new versions simultaneously
  • Isolate test suites that previously contaminated shared state

Rails applications typically run multiple processes to handle concurrent requests, duplicating code in memory. Ruby::Box offers consolidation: multiple logical contexts in one physical process. Code gets shared. State stays separated.

The feature remains experimental. Enable it via RUBY_BOX=1 environment variable. Whether isolation strength and performance overhead prove acceptable requires measurement against your workload.

Ractor Gets Closer to Production

Ractor, Ruby's actor-based concurrency model, received an API refactor. The old Ractor.yield and Ractor#take methods disappeared. Ractor::Port replaced them for inter-actor communication.

The breaking change signals maturity. The team prioritizes getting the interface right over backward compatibility. Underneath, Ractor received data structure optimizations targeting lock contention and CPU cache efficiency.

Ruby's Global Interpreter Lock—a mechanism that prevented true parallel execution until recent versions—left scars. The language struggled with parallelism for years. Ractor represents measurable progress. The team places stabilization in the next release.

A new method, Ractor.shareable_proc, simplifies sharing Proc objects across actors. The addition addresses friction where closure semantics clashed with Ractor's isolation requirements. The team is responding to real-world usage rather than theoretical completeness.

Developer Experience Refinements

Ruby 4.0 includes changes reflecting attention to practical friction points.

Logical operators can now start new lines. This syntax change aligns with how developers naturally format complex conditionals. Previously, breaking conditions across lines required careful operator placement to avoid parser errors.

The instance_variables_to_inspect feature gives objects control over debug output. Instead of dumping every instance variable during inspection, objects specify which variables matter. This addresses debugging objects with large internal state where most variables are noise.

Array gains #find and #rfind methods that outperform the previous array.reverse_each.find pattern. The improvement eliminates the reversal step—a micro-optimization that compounds across codebases doing frequent searches.

Set and Pathname move from standard library gems into core classes. Fewer dependencies means fewer version conflicts. Simpler dependency graphs.

Since Ruby 3.4.0, this release modified 3,889 files with 230,769 insertions and 297,003 deletions. The negative net change—more code removed than added—suggests refactoring. The team deleted code that didn't earn its maintenance cost. This pattern indicates maturity.

The Speed Promise Ruby Postponed

Ruby 4.0 introduces significant architectural changes but ships without comprehensive benchmark data.

ZJIT's method-level optimization, Ractor's data structure improvements, and Ruby::Box's isolation mechanisms all promise performance gains. The release notes acknowledge ZJIT trails YJIT in current performance. What's missing: quantified improvements for Ractor cache efficiency. Ruby::Box overhead measurements. Real-world application benchmarks showing where these changes matter.

For teams evaluating an upgrade, this creates uncertainty. The architectural improvements are sound. Method-level JIT compilation opens optimization possibilities. Process-internal isolation reduces memory overhead. Ractor refinements address known bottlenecks.

Whether those possibilities manifest as measurable speed improvements in your production application requires testing your specific codebase.

Ruby's development approach favors steady evolution over disruptive performance leaps. Version 4.0 continues that pattern. Substantial changes positioned as groundwork for future optimization rather than immediate transformation. The ZJIT timeline explicitly states performance parity with YJIT arrives in 4.1. The Ractor stabilization roadmap extends into the next release.

This is infrastructure work. The modification numbers—nearly 300,000 lines deleted—support that interpretation. The team is consolidating, refining, preparing the foundation for optimization that comes later once these features stabilize and they can tune performance without breaking APIs.

What This Release Tells You About Ruby's Direction

Ruby 4.0 reveals where the core team sees bottlenecks. Method-level optimization suggests they believe gains come from broader compilation context, not faster bytecode execution. Ruby::Box addresses memory overhead in multi-process architectures. Ractor improvements acknowledge parallelism remains unsolved in idiomatic Ruby.

For production systems, this suggests a measured upgrade path. Evaluate in staging. Benchmark your specific workloads. Decide based on your application's performance profile rather than general claims about speed.

"Merry Christmas, Happy New Year, and happy hacking with Ruby 4.0!"

Ruby 4.0 lays groundwork. For production teams, the question isn't whether to adopt these features today. It's whether to prepare codebases for the optimization model Ruby is building toward. The payoff arrives in 4.1 and beyond. The architecture that enables that payoff ships now.

What is this about?

  • Explainer/
  • Aiden Roth/
  • Tech/
  • Software

Feed

    iPhone 18 Pro to Launch iOS 27 Camera with f/1.5‑f/2.8 Aperture

    iOS 27 adds a “Siri” visual‑AI mode as Apple readies iPhone 18 Pro for fall

    Carter Brooks3 days ago

    Therapist vs Counselor: Which Fits Your Needs?

    Licenses, Training Hours, and Treatment Options Compared (2024‑2025 Data)

    Caleb Brooks3 days ago

    Ask YouTube Launches March 15, 2026 for Premium Users

    On March 15, 2026, YouTube introduced Ask YouTube, an AI‑driven chat that lets U.S. Premium subscribers ask questions and receive synthesized video‑based answers. The tool promises a conversational search experience, yet early tests revealed factual slips, such as a wrong claim about the Steam controller’s joysticks, highlighting the need for users to verify information before acting.

    Ask YouTube Launches March 15, 2026 for Premium Users
    Carter Brooks5 days ago

    Samsung unveils Galaxy Z Fold 8 Wide with magnets

    Leaked images released by insider Sonny Dixon reveal Samsung’s upcoming Galaxy Z Fold 8 lineup, including a new Z Fold 8 Wide with integrated chassis magnets and a simplified two-camera rear array. The wide model aims to lower costs while keeping tablet-size screens, targeting buyers priced out of premium foldables ahead of an August 2026 launch.

    Samsung unveils Galaxy Z Fold 8 Wide with magnets
    Carter Brooks5 days ago

    Samsung launches Jinju smart glasses in 2026

    Samsung’s first smart glasses, code‑named Jinju, debut in 2026 as a voice‑assistant and photo‑capture device. They use a Qualcomm Snapdragon AR1 chip, Sony IMX681 12MP camera, 155 mAh battery, and bone‑conduction speakers, with no display. The battery lasts a few hours; sustained tasks may throttle. Samsung will unveil Jinju in 2026, targeting the Russian market where Meta glasses are unavailable.

    Samsung launches Jinju smart glasses in 2026
    Priya Desai5 days ago

    Sony Adds 30‑Day Online Checks for PlayStation 4 & PS5

    Starting April 2026, Sony’s PlayStation 4 and PS5 will require each digital title purchased after March 2026 to verify its license with Sony’s servers at least once every 30 days. Missing the online ping renders the game unplayable until the console reconnects, while disc copies and pre‑March downloads remain unaffected. Users should plan a monthly check to keep libraries active.

    Sony Adds 30‑Day Online Checks for PlayStation 4 & PS5
    Carter Brooks5 days ago

    Boost Your Healthspan: 1‑MET Gains Cut Mortality by 11–17%

    Why a 5–7 MET boost (16–25 ml·kg⁻¹·min⁻¹) narrows smoker‑level death risk

    Sarah Lindgren5 days ago

    Geely unveils 196‑billion‑parameter EVA Cab L4 robotaxi

    At Auto China 2026, Geely, AFARI and CaoCao introduced the EVA Cab, a purpose‑built L4 robotaxi with a 196‑billion‑parameter AI stack and a 1,400 TOPS compute platform. The 43‑sensor suite, featuring a 2,160‑line LiDAR with 600 m range, claims 99% scenario coverage and aims for series production in late 2027, while U.S. entry remains uncertain.

    Geely unveils 196‑billion‑parameter EVA Cab L4 robotaxi
    Ethan Whitaker6 days ago

    MediaTek launches Dimensity 7450X for mid‑range foldables

    MediaTek unveiled the Dimensity 7450 and 7450X on April 27, 2026, for mid‑range phones. They feature an octa‑core CPU (Cortex‑A78 up to 2.6 GHz + Cortex‑A55), Mali‑G615 MC2 GPU, sixth‑gen NPU with 7 % AI gain, and an Imagiq 950 ISP supporting up to 200 MP cameras. The 7450X adds dual‑display optimization and flagship‑class camera and AI capabilities, debuting in Motorola’s Razr 70 on April 29, 2026.

    MediaTek launches Dimensity 7450X for mid‑range foldables
    Priya Desai6 days ago

    Cat Gatekeeper Chrome Extension Launches on April 27, 2026

    Cat Gatekeeper, a free Chrome extension released on April 27, 2026, overlays a cartoon cat on selected sites—Facebook, X, Reddit, YouTube, Threads, and Bluesky—once a user‑set timer expires. The tab remains blocked until the user resets it. Developer @konekone2026 describes it as a light‑hearted productivity cue that avoids shame‑based blocking. A Firefox version is planned.

    Cat Gatekeeper Chrome Extension Launches on April 27, 2026
    Carter Brooks6 days ago
    Loading...
Tech/Software

Ruby 4.0 bets on method-level optimization

ZJIT compiler, Ruby::Box isolation, and Ractor improvements reframe performance strategy

December 31, 2025, 12:06 pm

Ruby 4.0.0 introduces ZJIT—a method-level JIT compiler built in Rust that compiles entire functions rather than bytecode fragments. The release adds Ruby::Box for namespace isolation within single processes, refactors Ractor's concurrency API, and removes more code than it adds. ZJIT currently runs slower than YJIT but promises optimization paths unavailable to bytecode approaches.

IMG_0987-2

Summary

  • Ruby 4.0 introduces ZJIT, a method-level JIT compiler that optimizes entire functions at once, aiming for deeper performance gains than YJIT’s line-by-line optimization, though it currently runs slower and ships as an opt-in feature.
  • Ruby::Box enables process-internal isolation by creating separate namespaces within a single process, reducing memory overhead for applications like web servers, while Ractor gains API improvements for better concurrency support.
  • The release includes developer experience enhancements like improved logical operators, faster array search methods, and core class integration for Set and Pathname, with a net code reduction of over 60,000 lines signaling maturity and refactoring.

December 2025 brought Ruby 4.0 wrapped in a paradox: a performance-focused release that ships with a new compiler currently slower than its predecessor. The answer to why lies in what the compiler can see.

What Happens When Ruby Sees Entire Methods

Ruby 4.0 ships with ZJIT, a compiler that reads entire methods as single units. The shift matters because of what broader context enables.

Method-level optimization means the compiler sees a complete function—its inputs, logic, and outputs—as one piece. Like reading a full recipe instead of individual cooking steps. This lets it rearrange operations for efficiency in ways line-by-line compilation cannot reach.

ZJIT represents Ruby's bet that bigger compilation contexts unlock performance gains YJIT cannot reach.

YJIT, Ruby's current default compiler, traces hot code paths. It compiles frequently executed sequences as the program runs. A loop might get optimized fifty times during execution. ZJIT takes a different approach. It compiles the entire method containing that loop once, upfront.

The distinction resembles optimizing sentences versus paragraphs. Optimizing sentences means fixing grammar in each one. Optimizing paragraphs means rearranging sentences so the argument flows better. ZJIT does the paragraph version for code.

Shopify's team built ZJIT in Rust, requiring version 1.85.0 or newer. At launch, ZJIT runs faster than Ruby's interpreter but slower than YJIT. Ruby's core team hasn't published comparative percentages yet, targeting performance parity with YJIT in version 4.1.

YJIT remains the default—the production-ready choice while ZJIT matures. Teams activate ZJIT via the --zjit flag for testing. The timeline is explicit: this release lays groundwork. The speed payoff arrives next year.

How Method-Level Compilation Works

Understanding ZJIT requires understanding what compilers see. Ruby code you write becomes bytecode (Ruby's internal instruction format, one step between your code and what the CPU executes). A JIT (Just-In-Time) compiler translates that bytecode into machine instructions while your program runs.

YJIT watches which bytecode fragments execute repeatedly—these "hot code paths" get compiled first. Each optimization decision considers only what's visible in that fragment. A method calling three other methods gets compiled as separate pieces.

ZJIT compiles differently. It sees the method boundary as the unit. All inputs, all logic branches, all outputs visible at once.

Return to the recipe analogy. YJIT optimizes "chop onions" and "heat oil" and "add onions to pan" as separate steps. ZJIT sees prep-cook-serve as one sequence. It can recognize that heating oil while chopping onions saves thirty seconds. Reordering becomes possible.

For code, this means cross-operation optimization. A Shopify checkout method that validates addresses, calculates tax, and updates inventory—ZJIT can see all three steps. It can reorder them to minimize database calls. YJIT optimizes each step separately, missing the relationship.

The architectural bet: broader context enables transformations invisible to fragment-level optimization. Whether that bet pays off depends on whether your application's bottlenecks exist at method boundaries or inside tight loops. ZJIT helps the former. YJIT still wins the latter.

Why This Matters for Your Code

For companies running Ruby at scale, compilation strategy affects infrastructure costs. GitHub processes millions of API requests daily on Ruby. Basecamp built its entire product suite in Ruby. Method-level optimization could mean the difference between adding servers and staying at current capacity.

The impact clusters around application profiles:

  • Web request handlers with multi-step logic benefit from cross-step optimization. User authentication flowing into authorization flowing into data fetching—ZJIT can see and optimize that chain.
  • Background job processors running complex workflows gain from method-level analysis. Jobs that touch multiple services or perform sequential transformations on data.
  • Tight computational loops still favor YJIT's focused optimization. Mathematical operations, array processing, string manipulation inside hot loops.

Ruby 4.0 doesn't force a choice. YJIT remains default. ZJIT exists as opt-in experimentation. The team signals direction without demanding immediate migration.

Ruby::Box and Ractor: The Supporting Cast

Process-Internal Isolation

Ruby::Box creates isolated namespaces within a single Ruby process. Think of it as running multiple virtual Ruby environments in one physical process—like browser tabs sharing memory but not cookies.

Each box maintains separate global variables, constants, and class definitions. You get application-level separation without spawning new processes or reaching for containers.

Practical scenarios:

  • Run parallel web request handlers in one application server process
  • Phase in code changes by running old and new versions simultaneously
  • Isolate test suites that previously contaminated shared state

Rails applications typically run multiple processes to handle concurrent requests, duplicating code in memory. Ruby::Box offers consolidation: multiple logical contexts in one physical process. Code gets shared. State stays separated.

The feature remains experimental. Enable it via RUBY_BOX=1 environment variable. Whether isolation strength and performance overhead prove acceptable requires measurement against your workload.

Ractor Gets Closer to Production

Ractor, Ruby's actor-based concurrency model, received an API refactor. The old Ractor.yield and Ractor#take methods disappeared. Ractor::Port replaced them for inter-actor communication.

The breaking change signals maturity. The team prioritizes getting the interface right over backward compatibility. Underneath, Ractor received data structure optimizations targeting lock contention and CPU cache efficiency.

Ruby's Global Interpreter Lock—a mechanism that prevented true parallel execution until recent versions—left scars. The language struggled with parallelism for years. Ractor represents measurable progress. The team places stabilization in the next release.

A new method, Ractor.shareable_proc, simplifies sharing Proc objects across actors. The addition addresses friction where closure semantics clashed with Ractor's isolation requirements. The team is responding to real-world usage rather than theoretical completeness.

Developer Experience Refinements

Ruby 4.0 includes changes reflecting attention to practical friction points.

Logical operators can now start new lines. This syntax change aligns with how developers naturally format complex conditionals. Previously, breaking conditions across lines required careful operator placement to avoid parser errors.

The instance_variables_to_inspect feature gives objects control over debug output. Instead of dumping every instance variable during inspection, objects specify which variables matter. This addresses debugging objects with large internal state where most variables are noise.

Array gains #find and #rfind methods that outperform the previous array.reverse_each.find pattern. The improvement eliminates the reversal step—a micro-optimization that compounds across codebases doing frequent searches.

Set and Pathname move from standard library gems into core classes. Fewer dependencies means fewer version conflicts. Simpler dependency graphs.

Since Ruby 3.4.0, this release modified 3,889 files with 230,769 insertions and 297,003 deletions. The negative net change—more code removed than added—suggests refactoring. The team deleted code that didn't earn its maintenance cost. This pattern indicates maturity.

The Speed Promise Ruby Postponed

Ruby 4.0 introduces significant architectural changes but ships without comprehensive benchmark data.

ZJIT's method-level optimization, Ractor's data structure improvements, and Ruby::Box's isolation mechanisms all promise performance gains. The release notes acknowledge ZJIT trails YJIT in current performance. What's missing: quantified improvements for Ractor cache efficiency. Ruby::Box overhead measurements. Real-world application benchmarks showing where these changes matter.

For teams evaluating an upgrade, this creates uncertainty. The architectural improvements are sound. Method-level JIT compilation opens optimization possibilities. Process-internal isolation reduces memory overhead. Ractor refinements address known bottlenecks.

Whether those possibilities manifest as measurable speed improvements in your production application requires testing your specific codebase.

Ruby's development approach favors steady evolution over disruptive performance leaps. Version 4.0 continues that pattern. Substantial changes positioned as groundwork for future optimization rather than immediate transformation. The ZJIT timeline explicitly states performance parity with YJIT arrives in 4.1. The Ractor stabilization roadmap extends into the next release.

This is infrastructure work. The modification numbers—nearly 300,000 lines deleted—support that interpretation. The team is consolidating, refining, preparing the foundation for optimization that comes later once these features stabilize and they can tune performance without breaking APIs.

What This Release Tells You About Ruby's Direction

Ruby 4.0 reveals where the core team sees bottlenecks. Method-level optimization suggests they believe gains come from broader compilation context, not faster bytecode execution. Ruby::Box addresses memory overhead in multi-process architectures. Ractor improvements acknowledge parallelism remains unsolved in idiomatic Ruby.

For production systems, this suggests a measured upgrade path. Evaluate in staging. Benchmark your specific workloads. Decide based on your application's performance profile rather than general claims about speed.

"Merry Christmas, Happy New Year, and happy hacking with Ruby 4.0!"

Ruby 4.0 lays groundwork. For production teams, the question isn't whether to adopt these features today. It's whether to prepare codebases for the optimization model Ruby is building toward. The payoff arrives in 4.1 and beyond. The architecture that enables that payoff ships now.

What is this about?

  • Explainer/
  • Aiden Roth/
  • Tech/
  • Software

Feed

    iPhone 18 Pro to Launch iOS 27 Camera with f/1.5‑f/2.8 Aperture

    iOS 27 adds a “Siri” visual‑AI mode as Apple readies iPhone 18 Pro for fall

    Carter Brooks3 days ago

    Therapist vs Counselor: Which Fits Your Needs?

    Licenses, Training Hours, and Treatment Options Compared (2024‑2025 Data)

    Caleb Brooks3 days ago

    Ask YouTube Launches March 15, 2026 for Premium Users

    On March 15, 2026, YouTube introduced Ask YouTube, an AI‑driven chat that lets U.S. Premium subscribers ask questions and receive synthesized video‑based answers. The tool promises a conversational search experience, yet early tests revealed factual slips, such as a wrong claim about the Steam controller’s joysticks, highlighting the need for users to verify information before acting.

    Ask YouTube Launches March 15, 2026 for Premium Users
    Carter Brooks5 days ago

    Samsung unveils Galaxy Z Fold 8 Wide with magnets

    Leaked images released by insider Sonny Dixon reveal Samsung’s upcoming Galaxy Z Fold 8 lineup, including a new Z Fold 8 Wide with integrated chassis magnets and a simplified two-camera rear array. The wide model aims to lower costs while keeping tablet-size screens, targeting buyers priced out of premium foldables ahead of an August 2026 launch.

    Samsung unveils Galaxy Z Fold 8 Wide with magnets
    Carter Brooks5 days ago

    Samsung launches Jinju smart glasses in 2026

    Samsung’s first smart glasses, code‑named Jinju, debut in 2026 as a voice‑assistant and photo‑capture device. They use a Qualcomm Snapdragon AR1 chip, Sony IMX681 12MP camera, 155 mAh battery, and bone‑conduction speakers, with no display. The battery lasts a few hours; sustained tasks may throttle. Samsung will unveil Jinju in 2026, targeting the Russian market where Meta glasses are unavailable.

    Samsung launches Jinju smart glasses in 2026
    Priya Desai5 days ago

    Sony Adds 30‑Day Online Checks for PlayStation 4 & PS5

    Starting April 2026, Sony’s PlayStation 4 and PS5 will require each digital title purchased after March 2026 to verify its license with Sony’s servers at least once every 30 days. Missing the online ping renders the game unplayable until the console reconnects, while disc copies and pre‑March downloads remain unaffected. Users should plan a monthly check to keep libraries active.

    Sony Adds 30‑Day Online Checks for PlayStation 4 & PS5
    Carter Brooks5 days ago

    Boost Your Healthspan: 1‑MET Gains Cut Mortality by 11–17%

    Why a 5–7 MET boost (16–25 ml·kg⁻¹·min⁻¹) narrows smoker‑level death risk

    Sarah Lindgren5 days ago

    Geely unveils 196‑billion‑parameter EVA Cab L4 robotaxi

    At Auto China 2026, Geely, AFARI and CaoCao introduced the EVA Cab, a purpose‑built L4 robotaxi with a 196‑billion‑parameter AI stack and a 1,400 TOPS compute platform. The 43‑sensor suite, featuring a 2,160‑line LiDAR with 600 m range, claims 99% scenario coverage and aims for series production in late 2027, while U.S. entry remains uncertain.

    Geely unveils 196‑billion‑parameter EVA Cab L4 robotaxi
    Ethan Whitaker6 days ago

    MediaTek launches Dimensity 7450X for mid‑range foldables

    MediaTek unveiled the Dimensity 7450 and 7450X on April 27, 2026, for mid‑range phones. They feature an octa‑core CPU (Cortex‑A78 up to 2.6 GHz + Cortex‑A55), Mali‑G615 MC2 GPU, sixth‑gen NPU with 7 % AI gain, and an Imagiq 950 ISP supporting up to 200 MP cameras. The 7450X adds dual‑display optimization and flagship‑class camera and AI capabilities, debuting in Motorola’s Razr 70 on April 29, 2026.

    MediaTek launches Dimensity 7450X for mid‑range foldables
    Priya Desai6 days ago

    Cat Gatekeeper Chrome Extension Launches on April 27, 2026

    Cat Gatekeeper, a free Chrome extension released on April 27, 2026, overlays a cartoon cat on selected sites—Facebook, X, Reddit, YouTube, Threads, and Bluesky—once a user‑set timer expires. The tab remains blocked until the user resets it. Developer @konekone2026 describes it as a light‑hearted productivity cue that avoids shame‑based blocking. A Firefox version is planned.

    Cat Gatekeeper Chrome Extension Launches on April 27, 2026
    Carter Brooks6 days ago
    Loading...
banner