Live
Black Hat USAAI BusinessBlack Hat AsiaAI BusinessBDD Test Cases from User Stories: 5 Steps and 12 ScenariosDEV CommunityDel aprendizaje a la práctica: Por qué decidí dejar de estudiar en privado y empezar a compartir 🚀DEV CommunityClaude Code CLAUDE.md vs settings.json: which one controls what (and why it matters)DEV CommunityThe Hallucination Problem of AI Programming Assistants: How to Implement Specification-Driven Development with OpenSpecDEV CommunityPlausible Code Is the New Technical DebtDEV CommunityBuild Your Own AI-Powered Wearable with Claude and ESP32DEV CommunityBeyond the Hype: A Developer's Guide to Practical AI IntegrationDEV CommunityPreliminary Explorations on Latent Side Task UpliftLessWrong AIcarbon offset arbitrage opportunityLessWrong AIShootMesh-AI: A Transparent “Production Office” for Staged Film-and-TV DaysDEV CommunityWhy SOC analysts get inconsistent results from ChatGPT (and how structured workflows fix it)DEV CommunityUnlocking the Future: Sourcing Essential Components like the LM317 & ATtiny85 Online for Your ProjectsDEV CommunityBlack Hat USAAI BusinessBlack Hat AsiaAI BusinessBDD Test Cases from User Stories: 5 Steps and 12 ScenariosDEV CommunityDel aprendizaje a la práctica: Por qué decidí dejar de estudiar en privado y empezar a compartir 🚀DEV CommunityClaude Code CLAUDE.md vs settings.json: which one controls what (and why it matters)DEV CommunityThe Hallucination Problem of AI Programming Assistants: How to Implement Specification-Driven Development with OpenSpecDEV CommunityPlausible Code Is the New Technical DebtDEV CommunityBuild Your Own AI-Powered Wearable with Claude and ESP32DEV CommunityBeyond the Hype: A Developer's Guide to Practical AI IntegrationDEV CommunityPreliminary Explorations on Latent Side Task UpliftLessWrong AIcarbon offset arbitrage opportunityLessWrong AIShootMesh-AI: A Transparent “Production Office” for Staged Film-and-TV DaysDEV CommunityWhy SOC analysts get inconsistent results from ChatGPT (and how structured workflows fix it)DEV CommunityUnlocking the Future: Sourcing Essential Components like the LM317 & ATtiny85 Online for Your ProjectsDEV Community

Samsung’s new app claims to alleviate motion sickness using sound

The Verge AIby Andrew LiszewskiMarch 31, 20262 min read1 views
Source Quiz

Samsung released a new free app today called Hearapy, now available for Android devices through the Google Play store, that it claims can reduce the symptoms of motion sickness using just sound. The app's functionality is very straightforward. It plays a low 100Hz sine wave tone through a pair of connected headphones for 60 seconds. […]

Andrew Liszewski

is a senior reporter who’s been covering and reviewing the latest gadgets and tech since 2006, but has loved all things electronic since he was a kid.

Samsung released a new free app today called Hearapy, now available for Android devices through the Google Play store, that it claims can reduce the symptoms of motion sickness using just sound.

The app’s functionality is very straightforward. It plays a low 100Hz sine wave tone through a pair of connected headphones for 60 seconds. This is supposed to stimulate the vestibular system – the parts of the inner ear that are responsible for orientation and maintaining balance. The app allows the duration of the tone to be adjusted between 40 to 120 seconds, but a full minute of listening is supposed to provide relief from motion sickeness symptoms like nausea for up to two hours. It can be repeated as needed.

Samsung says the app was inspired by research conducted by Nagoya University in Japan released last year that found specific sound wavelengths helped to reduce “the staggering and discomfort felt by people that were asked to read a document in a moving vehicle.” It’s not a guaranteed cure, however, and the effectiveness may vary based on the headphones you’re using. Samsung recommends pairing the app with its Galaxy Buds 4 Pro, but while Hearapy works with most headphones or earbuds, they need to be able to reproduce the tone at an 80 to 85-decibel volume level for it to be most effective.

Follow topics and authors from this story to see more like this in your personalized homepage feed and to receive email updates.

  • Andrew Liszewski
Was this article helpful?

Sign in to highlight and annotate this article

AI
Ask AI about this article
Powered by AI News Hub · full article context loaded
Ready

Conversation starters

Ask anything about this article…

Daily AI Digest

Get the top 5 AI stories delivered to your inbox every morning.

More about

releaseavailable

Knowledge Map

Knowledge Map
TopicsEntitiesSource
Samsung’s n…releaseavailableThe Verge AI

Connected Articles — Knowledge Graph

This article is connected to other articles through shared AI topics and tags.

Knowledge Graph100 articles · 220 connections
Scroll to zoom · drag to pan · click to open

Discussion

Sign in to join the discussion

No comments yet — be the first to share your thoughts!

More in Releases

缓存架构深度指南:如何设计高性能缓存系统
ReleasesLive

缓存架构深度指南:如何设计高性能缓存系统

<h1> 缓存架构深度指南:如何设计高性能缓存系统 </h1> <blockquote> <p>在现代分布式系统中,缓存是提升系统性能的核心组件。本文将深入探讨缓存架构的设计原则、策略与实战技巧。</p> </blockquote> <h2> 为什么要使用缓存? </h2> <p>在软件系统中,缓存的本质是<strong>用空间换时间</strong>。通过将频繁访问的数据存储在高速存储介质中,减少对慢速数据源的访问次数,从而显著提升系统响应速度。</p> <p>典型场景:</p> <ul> <li>数据库查询结果缓存</li> <li>API响应缓存</li> <li>会话状态缓存</li> <li>计算结果缓存</li> </ul> <h2> 缓存架构设计原则 </h2> <h3> 1. 缓存层级策略 </h3> <p>现代系统通常采用多级缓存架构:<br> </p> <div class="highlight js-code-highlight"> <pre class="highlight plaintext"><code>┌─────────────────────────────────────────────┐ │ CDN (边缘缓存) │ ├─────────────────────────────────────────────┤ │ Redis/Memcached │ ├─────────────────────────────────────────────┤ │ 本地缓存 │ ├─────────────────────────────────────────────┤ │ 数据库 │ └─────────────────────────────────────────────┘ </code></pre> </div> <p><strong>原则<