Urgent.News

What's breaking now, across thousands of outlets.

Tech

The Boring Businesses Won

Searches for it fell 71% this year. Here’s what people are searching for instead. Every list of dying businesses says the same thing. AI is coming for the boring work. Bookkeepers, translators, copywriters, support reps. Learn to prompt or get replaced. I run a database that pulls business ideas from Reddit complaints and App Store reviews, then checks real search-volume data behind each one.…

The search for AI-related tools and services has declined by 71% year over year. However, demand has shifted to new areas that do not involve generic AI tools. Industries such as fleet management software, route planning, and invoice reminder software for contractors have seen a significant increase in searches by 50%. Additionally, categories like family password manager, ADHD planner, and second brain apps have experienced growth of over 50%.

These changes indicate that while AI may be taking over mundane tasks, businesses are now turning to more specialized solutions to address their unique needs.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

I Built My Own Fail-Fast HashMap — Here's Why a Boolean Flag Wasn't Enough

If you've done LeetCode's Design HashMap , you've implemented put , get , and remove . What that exercise usually skips is the part that actually breaks in production: what happens when someone…

  • MyHashMap is single-threaded HashMap with separate chaining and dynamic resizing.
  • Handling concurrent mutations during iterators' use proved the primary challenge.
  • Standard issue arises when iterator's next() method is invoked mid-iteration.

More from Sunday 30 August →