this post was submitted on 13 Aug 2024
2003 points (98.4% liked)

Microblog Memes

7481 readers
1650 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

Rules:

  1. Please put at least one word relevant to the post in the post title.
  2. Be nice.
  3. No advertising, brand promotion or guerilla marketing.
  4. Posters are encouraged to link to the toot or tweet etc in the description of posts.

Related communities:

founded 2 years ago
MODERATORS
 
(page 2) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 5 points 8 months ago* (last edited 8 months ago)

its a shame you have to do this, but you can use HomeAssistant to disconnect a lot of those lights from their 'clouds' I bought dirt cheap RGBW bulbs from walmart and now I'm essentially emulating their 'cloud' on my local network. (tuya)

no more losing ability to control lights if the ISP goes down

[–] [email protected] 5 points 8 months ago (1 children)

Additional to that account thing: Why does one have to install an app in order to access all functions and to toggle options of a device?

My girlfriend once has bought new headphones. In order to switch off the telephone function (you can - among other things -answer calls from the connected smartphone by touching one side of the headphones) it is required to download an app (a sloppily programmed one as well) to switch off this specific function. All other functions (volume, play, back and forward) are operated with buttons.

I heard about the same thing but with printers: The scan settings can only be toggled by an app (I think it was HP who has that feature - who else!?)

load more comments (1 replies)
[–] [email protected] 21 points 8 months ago (2 children)

grocery stores trying to get me to sign up for their reward program or whatever

Im surprised Aldi hasnt completely taken over the entire country by now because of how they skip all the bullshit

its a grocery store. i walk in, i buy food, i leave

could not be simpler.

My local Kroger, however, has automated price cards that adjust to scalp their customers during high-traffic periods.

this is a practice that should be rewarded via targetted arson of distribution centers until our demands are met

oops autocorrect lmao

i meant this is a practice that should be outlawed via legislation that follows our due processes

load more comments (2 replies)
[–] [email protected] 8 points 8 months ago* (last edited 8 months ago) (5 children)

I kind of wonder whether it'd be worthwhile to have a certification agency that just certifies things for privacy and non-cloud-connectivity or the like. Trying to dig through spec sheets and reviews to figure out how a product functions is a pain. I'd rather pay slightly more to just look for some privacy certification on a product. I don't really want to try to keep up with the latest privacy issues present in a given product category, would rather have a specialist do that.

Like, let me just look for a "PC-24-O" (Privacy Certification 2024 Offline) label or something on products. Saves me time. Also would let vendors like Amazon let me filter products for that certification.

load more comments (5 replies)
[–] [email protected] 1 points 8 months ago* (last edited 8 months ago) (9 children)

If you want a lightbulb that changes colors to be controlled by a phone or network accessible device, as opposed to some other sort of special RF remote, and you DONT want random other people to be able to control or possibly disable or damage your lights, then it kinda needs to have an account.

By all means, avoid iot stuff if it's not your thing, but then why are you looking at color changing lightbulbs? The ones that need special remotes are terrible gimmicks and the ones that get wired into a hardwired home automation system cost a fortune to set up and require a ton of installation.

[–] [email protected] 1 points 8 months ago

No, it doesn't need an account- wifi encryption is enough. If someone has their color changing light bulbs on unsecured wifi, that's on them.

[–] [email protected] 2 points 8 months ago (1 children)

this can be done locally without access to a third party server though, local administration has been a thing for years

[–] [email protected] 1 points 8 months ago (2 children)

Nobody I know of is stopping you from doing that. Zigbee is pretty ubiquitous, Hue can be controlled offline and by third party bridges and can just link directly into a zigbee controller if you want. Most people don't want to bother setting that up.

[–] [email protected] 1 points 8 months ago

you dont even need that. You can run TuyaLocal plugin in homeassistant and essentially have a local light server that replaces their cloud.

the cheapest of the cheap lights work great when you disconnect them from shitty clouds

load more comments (1 replies)
[–] [email protected] 3 points 8 months ago (1 children)

and you DONT want random other people to be able to control or possibly disable or damage your lights, then it kinda needs to have an account.

You need to have some way to either communicate with the lightbulb over the power lines (e.g. X10) or wirelessly communicate in an authenticated way, true enough, but that's not the same as requiring connectivity to a cloud service.

[–] [email protected] 1 points 8 months ago (1 children)

You can use most of them without being connected to the internet, just can't control from your phone without being hooked up to your home network.

load more comments (6 replies)
[–] [email protected] 18 points 8 months ago (1 children)

I don't want my computer to treat me like an idiot, it's my computer let me run whatever commands I want.

[–] [email protected] 5 points 8 months ago (5 children)
[–] [email protected] 4 points 8 months ago* (last edited 8 months ago) (1 children)

There are a few utilities even on the command-line side that will require confirmation (or passing --force or something like that) but it tends to be in cases where you almost certainly don't want to do what you're doing.

And there are a very few that just don't let you do so at all.

rm won't normally remove a file if you don't have permissions to do so, though if passed -f, will give you the permissions if you have the authority to do so.

mkfs utilities ("create a new filesystem") typically require a force flag to overwrite a filesystem that's in use; normally when that happens, it means that someone's typed the wrong device file name and is about to blow away the contents of their drive.

fsck, the filesystem checking and repair utility, will refuse to modify a mounted filesystem at all (which normally could be expected to corrupt a filesystem).

That being said, I think that there's a serious problem on Windows dating back many years where programs throw way too many warnings up, where users constantly encounter confirmation prompts even when they are doing a pretty normal operation and in fact do want to do something. That's not just annoying. It also trains users to just whack "confirm" anytime something comes up, which makes it impossible for software to meaningfully warn when there is a serious problem.

I'd also add that I kind of think that GUI software would benefit from a standard "confirmation API". It used to be the norm for software to throw a dialog box up for confirmation. Linux and Adnroid -- and I assume Windows and MacOS, but I'm out of date there -- have a notification API, where software can tell a notification manager that the user needs to see a message. That's nice, because then the notification manager can handle the notification in sophisticated ways; do things like text the user the notification, auto-dismiss notifications, filter some out, play a sound, refrain from playing sounds, etc. But AFAIK -- and I don't use a lot of GUI software these days -- they still use confirmation dialogs. I'd kind of prefer that they use something like the notification manager, so that one could set up the notification manager to auto-accept certain notifications, log notifications, and so forth. Another annoyance is that most dialog boxes are set up to have Enter and sometimes Space auto-accept. This is obnoxious, because one might be in the process of hitting Enter or Space when interacting with another window; if a confirmation dialog comes up, one can simply immediately inadvertently accept the confirmation. Having the notification manager handle confirmations would help avoid this. I'd personally rather have a dedicated key or key combination to confirm something that's used only for confirming things, and I'd rather have such confirmations processed in first-in-first-out order. With software throwing dialog boxes up, a confirmation can "jump in front" of another, using last-in-first-out order. Plus, it'd let me have the confirmations auto-accepted.

load more comments (1 replies)
load more comments (4 replies)
[–] [email protected] 45 points 8 months ago (1 children)

That's not even a boomer complaint. Zoomer here. I fucking hate how everything needs an account. I recently started cleaning up my mail box and this shit makes that nigh impossible. I especially hate it when it's just a shitty novelty site, if it needs an account, you bet your ass I ain't ever using it, piss off!

[–] [email protected] 3 points 8 months ago (3 children)

make an email for different things, such as one for subscriptions, one for things like this, one for professional use, etc. it's annoying but also helps 🤷🏻 i hate that we're at this point lol

[–] [email protected] 3 points 8 months ago (1 children)

I just auto tag using the term "unsubscribe". It tags as "automated/spam" unless another filter such as banking, games, or in contacts triggers

load more comments (1 replies)
load more comments (2 replies)
[–] [email protected] 21 points 8 months ago (4 children)

People abbreviating random words when there's literally no need to.

[–] [email protected] 5 points 8 months ago (1 children)

I'm trying to figure out what you're even referring to. The only thing I see abbrebiated here is TV. But TV is the default way to say television even in person and has been my entire life. At least it is here in the US. Is it different elsewhere?

[–] [email protected] 8 points 8 months ago (1 children)

I was responding to the "What's the most boomer complaint you have?" - not complaining specifically about the abbreviations in the screenshot.

load more comments (1 replies)
[–] [email protected] 6 points 8 months ago (1 children)

I got absurdly upset over someone abbreviating information as "inf." recently.

[–] [email protected] 0 points 8 months ago

watch out for infosec.

[–] [email protected] 5 points 8 months ago

I feel like some people are just too lazy to speak.

load more comments
view more: ‹ prev next ›