r/TechNook

Robot vacuums are evolving faster than actual smartphones right now and that feels backwards

robot vacuums somehow feel like they’re evolving faster than smartphones right now and that honestly feels backwards
every few months there’s a new one with AI obstacle detection, robotic arms, self cleaning docks, room mapping, voice controls, automatic mopping, and somehow they keep getting weirder
meanwhile phones mostly just get slightly thinner, slightly faster, and a new camera feature nobody uses after the first week
I saw a robot vacuum recently that could recognize objects on the floor and avoid cables better than some humans probably would
it’s funny because robot vacuums used to feel like novelty gadgets and now they’re quietly turning into little autonomous home robots while smartphones feel kind of stuck
part of me wonders if boring everyday appliances are actually where the most interesting tech innovation is happening now
does anyone else feel like smart home gadgets are advancing faster than the devices we use constantly?

reddit.com
u/Impossible_Comfort99 — 3 hours ago

the phase where BlackBerry phones keyboards felt more serious than touchscreens

there was a phase where typing on a BlackBerry phones keyboard just felt more “real” than using a touchscreen

those physical keys, the feedback, being able to type without even looking after a while, it felt fast and reliable in a way early touchscreens weren’t

touch typing on glass back then felt slow and kinda inaccurate, so keyboards just made more sense for emails, chats, anything work related
it almost felt like touchscreen phones were the casual option and BlackBerry was the serious one

funny how that completely flipped over time and now physical keyboards feel like the niche choice instead

u/Zorojuro099 — 3 hours ago

android 16 honestly feels more like google os now than android

miss when android phones actually felt different from each other

back then samsung, htc, sony, lg all had their own weird ui styles, sounds, features and overall vibe

now every android phone slowly feels like the same google themed software with slightly different icons and camera apps on top

feels like android used to be a operating system brands customized and now it’s slowly turning into google’s ecosystem first and android second

reddit.com
u/overlord-07 — 3 hours ago

premium build devices that still need covers

every ad for premium phones/laptops is all titanium frame this aluminum that ceramic shield sapphire glass whatever

then the second you buy it everyone immediately says “yeah don’t use it without a case”

so now you’re holding a $1200 brick wrapped in a $15 chunk of rubber because apparently the premium materials are too premium to survive normal life

same thing with those ultra thin laptops. whole marketing is about how insanely slim and clean they look then people buy giant sleeves, keyboard covers, camera covers, skins, corner protectors

reddit.com
u/Zorojuro099 — 6 hours ago

some people genuinely haven’t gone a full day offline in years

noticed this the other day i probably havent spent one completely offline day in a really long time

even if i stop using social media there’s still youtube, spotify, or random apps to manage my daily schedule

and i think this is normal for most people now

last time i was properly offline was probably like 6 months ago when i went camping with friends and had almost no signal the whole trip

kinda weird thinking about it now because outside of that i’m basically connected to the internet every single day without even noticing it anymore

reddit.com
u/overlord-07 — 5 hours ago

Do you think digicams are making a comeback?

It’s honestly interesting seeing digicams become popular again in 2026.. Just a couple of years back, everyone had replaced their digicams with smartphones; however, now they are actually going back and purchasing classic models of Canon, Sony, and Nikon just because they want that retro feeling. Their photos aren’t highly edited, flashes appear to be natural, and somehow, all the flaws give a more realistic effect as opposed to highly processed photos taken on smartphones.

I believe that people are just tired of highly processed and HDR photos which seem optimized only for social media platforms.

u/into_fiction — 11 hours ago

Real time AI translation is becoming normal way faster than I expected

real time AI translation becoming normal this quickly honestly feels kind of surreal
not long ago instant translation sounded like one of those sci fi features that looked cool in demos but would never actually work naturally in real conversations
now there are earbuds, phones, even video calls translating people almost live while they speak and everyone’s acting like this is just another software update
what’s weird is I think people still underestimate how huge this could become if it keeps improving
language barriers shaped the internet, travel, jobs, friendships, basically everything for decades. the idea of casually talking to someone you technically can’t understand still feels strange to my brain
at the same time I wonder if something gets lost when conversations are filtered through AI instead of language itself
still feels like one of the most futuristic things quietly becoming normal right in front of us
have you actually tried real time AI translation yet or does it still sound too weird to trust?

reddit.com
u/Impossible_Comfort99 — 7 hours ago

What’s the most unnecessary thing you’ve bought for your setup?

Mine is probably my collection of Hirono figures from the Little Prince edition lol they’re all sitting pretty in clear display cases beside my laptop setup and honestly they serve zero practical purpose other than looking nice while i work

Some people would probably say it’s unnecessary because they’re literally just small figurines taking up desk space, but i like how it makes my setup feel less boring and more personal, sometimes having stuff you genuinely enjoy looking at makes working long hours feel a bit better

What’s the most unnecessary thing you bought for your setup/desk?

reddit.com
u/Brave-Instance6630 — 8 hours ago

processors which support stable performance for long sessions 🤌

A lot of chips can look amazing for 10 minutes, then suddenly start throttling once heat kicks in. newer dimensity chips like Dimensity 8500 have been surprisingly good at keeping frame pacing smooth instead of only chasing benchmark screenshots.

Like, android gaming phones are finally focusing more on sustained experience instead of marketing numbers only

reddit.com
u/Own-Key1782 — 9 hours ago
▲ 23 r/TechNook+7 crossposts

I Built a smart cube on ESP32-S3 — round touch display, 6-axis IMU auto-rotation, RGB LED filaments, 6 smart faces. Full source on GitHub.

What is it and why I'm sharing

This is the YUMO CUBE — my third build, designed and built entirely by me from scratch. I'm sharing it because I've made the full source code open source so anyone can build their own, and I'd love feedback from the community on what to improve or add next. It's a desk gadget built around the Waveshare ESP32-S3 Touch LCD 1.46B, housed in a hand-bent brass wire sculpture I made myself. The cube has 6 faces, each running a different "smart" app on a 412×412 round capacitive touch display.

What does it do?

The QMI8658 6-axis IMU detects orientation in real time, whichever face is up becomes the active app automatically.

The 6 faces are:

live clock (NTP + IP geolocation timezone), weather station (OpenWeatherMap, refreshes every 10 min), SD card photo gallery (JPEGDEC hardware-accelerated), joke fetcher (Official Joke API), tilt controlled mini game, and a personal workout timer. Four flexible RGB LED filaments run on the rear face, individually addressable and synced to the active app.

Hardware: No custom PCB , the Waveshare ESP32-S3 board is all-in-one with the display, touch, and IMU already on board. The only external wiring is the RGB LED filaments connected to pins 12 and 13, and a LiPo battery connected to the board's dedicated battery pins. That's it very approachable to replicate.

Stack: LVGL 9.2.2 on FreeRTOS, built with PlatformIO. All UI layouts and screens were designed by me in SquareLine Studio and exported directly into the project. Core 0 handles heavy tasks; Core 1 is dedicated to 60fps LVGL rendering. 16MB Flash with PSRAM support, custom DMA buffer padding. WiFiManager captive portal on first boot , no hardcoded credentials. Power latching cuts battery completely after 3-second button hold; IMU wake-on-motion brings it back.

The engineering challenge: Getting LVGL 9 to run stutter-free on a round display while simultaneously polling the IMU, fetching API data, and driving addressable LEDs across both cores was the core puzzle. Memory was tight — PSRAM fallbacks and careful DMA buffer alignment were essential. The round display boundary for the physics mini-game also needed a custom collision approach since LVGL doesn't handle circular constraints natively.

Source code: https://github.com/yumobuilds/yumo-smart-cube

Parts: Waveshare ESP32-S3 Touch LCD 1.46B/ 1.5mm brass rods/ flexible LED filament/ 3.7V 1200mAh LiPo/ MicroSD card.

Libraries: LVGL 9.2.2 · ArduinoJson 7/ WiFiManager/ JPEGDEC/ SensorLib.

Happy to answer questions. What would you add to the cube?

u/YUMOBUILDS — 19 hours ago

people really buy $1500 phones just to use instagram and whatsapp

i always find it weird how people buy new flagships every single year just to mostly use instagram, whatsapp, youtube and basic apps

these phones can edit videos, run heavy games, do insane multitasking and a million other things but most people barely use even 10% of that power

then next year same mobile has a new flagship with minor upgrades and a new camera layout and they will upgrade it without any though

sometimes i genuinely cant tell if people actually need these phones or if buying expensive phones every year just became a flex/trend now

reddit.com
u/overlord-07 — 1 day ago

Android 17 is about to drop. What are your expectations?

Some impressive changes have been suggested by Android 17. The first impressive update brought forward by Android 17 is the feature where tasks can be continued from one device to another with the help of the "Continue On" feature. This feature performs almost the same way as the 'Handoff' feature on iPhones. The second impressive feature added in Android 17 is the redesigned media carousel along with the blur effect introduced in Android.

Coming to my part, I feel that the improvement in terms of system optimization, improving battery life and making it faster are more important than introducing the AI feature everywhere. It is hard for me to think of companies removing all the pre-installed applications in the coming future, but I will still be happy about it.

reddit.com
u/into_fiction — 21 hours ago

An Al hate wave is here

For the last few years, tech companies talked about AI like it was something everyone automatically wanted.

Now the public mood feels very different.

Recent polls show most people think AI is moving too fast, especially younger users worried about job replacement, privacy, fake content, rising energy usage, and tech companies gaining even more control.

What’s interesting is that AI itself probably isn’t going away. The bigger question is whether people actually want AI integrated into every part of daily life.

Feels like the industry assumed AI adoption would happen naturally but now there’s a genuine pushback forming.

u/Zorojuro099 — 1 day ago

Do you think physical game copies will disappear completely?

It feels like we’re slowly heading toward an all-digital future for games more people just download directly now and some newer consoles barely even focus on discs anymore, but at the same time I still get why people prefer physical copies, you can lend them, collect them, resell them, and it just feels nicer actually owning something

Digital is convenient but sometimes it also feels like you’re just renting access that could disappear someday

Do you think physical game copies will completely disappear eventually or nah?

reddit.com
u/Imaginary_Bug6202 — 1 day ago

Google reportedly working on a laptop built around AI feels like the beginning of a very weird hardware era

Google reportedly building a laptop designed around AI feels like one of those moments where tech quietly shifts into a completely different era
for years laptops mostly competed on the same things. thinner design, better battery, faster chips, nicer screens. now it suddenly feels like every company wants AI to become the main reason you buy hardware at all
what’s strange is I still can’t picture what an “AI first laptop” actually changes in daily use besides adding more assistant features everywhere
part of me thinks this could end up becoming as normal as smartphones eventually. another part thinks we’re about to get a lot of gimmicks nobody asked for
it also feels weirdly inevitable that hardware is changing around AI now instead of AI just existing inside normal devices
like we’re entering this new phase where companies don’t just want smarter software, they want entirely new categories of machines built around it
does an AI focused laptop actually sound exciting to you or does it just feel like marketing right now?

reddit.com

is Apple still innovating or just refining now

feels more like refining honestly, at least on the iPhone side

every year it’s better camera, better chip, better battery, smoother software all good stuff but it doesn’t really feel like the phone is becoming something new anymore. just the same thing doing the same job, slightly better

but then there are moments where they actually do something different. Apple Silicon was a pretty big shift, Macs suddenly felt way more balanced in terms of power and battery instead of just chasing specs

and then stuff like Vision Pro feels like they’re trying to step outside the phone/laptop loop completely, even if it’s still early and not something most people are using daily

so yeah, most of the time it’s refinement, but every now and then they drop something that feels like a direction change instead of just an upgrade cycle

reddit.com
u/Zorojuro099 — 1 day ago

Why does every new gadget launch now need to mention AI even when it clearly doesn’t need it

every gadget launch now somehow finds a way to mention AI even when the product clearly worked fine without it
phones, headphones, TVs, fridges, keyboards, cameras. it feels like companies are terrified to announce hardware without saying “AI powered” somewhere in the presentation
sometimes the features actually make sense, but other times it feels like they added a chatbot or summary tool just so the product sounds modern enough for marketing
the weird part is I think people are already starting to tune it out. like “now with AI” is becoming background noise the same way “smart” did a few years ago
I’m still waiting for the point where AI features stop feeling bolted on and start feeling genuinely necessary in everyday devices
right now it mostly feels like every company is scared of looking behind the trend
do you think most AI gadget features are actually useful yet or are companies just forcing AI into everything because they have to?

reddit.com

every app becoming short form video content eventually

why does every app eventually turn into short form videos now

instagram became reels, youtube pushes shorts everywhere, facebook copies it, snapchat copies it and now even apps which had nothing to do with videos somehow have infinite scrolling feeds

worst part is youtube instantly opening shorts the moment you open the app and now even instagram has auto scroll stuff to keep feeding you endless short videos before you even reach what you originally opened the app for

eventually all companies will add some short form video feature just to keep people endlessly scrolling and addicted inside the app

u/overlord-07 — 21 hours ago

Social media has lost its real purpose

Initially, social networking sites were supposed to provide an open forum where there would be free speech for all, enabling everyone to communicate their opinions to anyone in the whole world, but today this concept seems to be dying out. Nowadays, everything on social media seems to be controlled through platforms, advertisers, agencies, and even algorithms and moderation systems. One cannot simply see anything; what one sees today is something which the platform thinks is supposed to get to him. It almost seems like everything that goes on social media today is not natural but rather filtered because everybody is careful about whatever they say knowing that the post will get buried, reported, demonetized, or worse still deleted.

reddit.com
u/into_fiction — 1 day ago