Skip to main content

Healthy Screen Time - Let's balance it in a week

Screen time (Combined time spent on all types of digital screens) is something which is always in digital user mind and now a days trending digital discussion.
Everyone wants to reduce the screen time for good health and better eyesight.
What if our dimension says, the key to healthy eyes is to reduce the average screen time.
'Average' screen time - Time spent on screens in a resonable span of team which is 1 week.
Smartphone companies use one week period to display application average statistics.
Reason: If the user is able to balance screen time for one week, then subsequent weak can be balanced by looking own track record for previous weeks.
If study/work is not entirely screen dependent - Social media, movies, games, OTT and passively scrolling the screen phone are the key phone activites.

Few things which can be done to be a 'smart' screen user:

  • What is surfed in x hours, can be surfed in half of that time
  • Using social media in particular time slot only
  • Figuring out the most used app category either it be social, games, utility etc.
  • Becoming a member of non - FOMO club for some series
  • Be a balanced screen user for a week
Reducing the screen time is a gradual + habitual process.
Habitual - Healthy digital use habits can not only reduce the average screen time but also you don't need to skip the online life.
Gradual - Since it is not a one day process, slow changes can be made towards healthy screen time

Popular posts from this blog

25 Angular Intermediate Interview Questions & Answers | RG Dimension

25 Angular Intermediate Interview Questions and Answers (2025 Edition) | rgdimension 25 Angular Intermediate Interview Questions & Answers (Updated for Angular 17–18) Concise, clear answers covering modern Angular (standalone components, signals, inject(), hydration, control-flow, DI, RxJS, performance, and testing). Courtsey: Pexels 1. What are standalone components and when should you use them? Standalone components (introduced and stabilized in recent Angular releases) allow components, directives, and pipes to be declared without NgModules; they declare their own dependencies via the standalone: true flag and import array, which simplifies app structure, reduces boilerplate, and makes lazy-loading and micro-frontends easier — prefer standalone components for new features and greenfield apps while incrementally migrating module-based code when beneficial. /* e...

CSS Flexbox: Understanding the basics

Understanding CSS Flexbox: A Complete Guide Understanding CSS Flexbox: A Complete Guide What Is Flexbox? Flexbox, or the Flexible Box Layout, is a CSS layout module designed to align and distribute space among items in a container, even when their sizes are dynamic or unknown. It simplifies creating responsive and flexible web designs. Why Use Flexbox? Flexbox eliminates complex float and positioning hacks. It allows developers to easily align elements vertically and horizontally and to control spacing, order, and responsiveness effortlessly. How Flexbox Works When you apply display: flex; to a container, it becomes a flex container. All its direct children become flex items that follow the Flexbox rules for layout a...

Angular Interview Question Cheat Sheet | RG Dimension

Top 40 Angular Intermediate Interview Questions and Answers (2025) | rgdimension Top 40 Angular Intermediate Interview Questions and Answers (2025) 1. What are Lifecycle Hooks in Angular? Lifecycle hooks allow developers to tap into key moments of a component's life, such as creation, change detection, and destruction. ngOnInit() – runs once after component initialization ngOnChanges() – called when input properties change ngOnDestroy() – called before a component is destroyed 2. What is ViewEncapsulation in Angular? It defines how CSS styles are applied to components. Options include: Emulated (default) – styles scoped to the component None – global styles ShadowDom – uses native Shadow DOM 3. What is ChangeDetectionStrategy? It controls how Angular checks for changes in components: Default: che...