HackerTrans
TopNewTrendsCommentsPastAskShowJobs

flacebo

no profile record

comments

flacebo
·السنة الماضية·discuss
ChatGPT to the rescue

https://imgur.com/SzbwCEb
flacebo
·السنة الماضية·discuss
I wish the graph was sorted by release date.
flacebo
·قبل سنتين·discuss
> Google also can’t:

> Offer developers money or perks to launch their apps on the Play Store exclusively or first

That's exactly what Epic did trying to make their store happen. They're not the good guys, they just want part of the profit.

Other than that, I see this as a win for other developers and consumers.

Although I don't think this is over, Google will do everything to fight this.
flacebo
·قبل سنتين·discuss
Just because Apple promises? There is actually zero evidence that apple is any better for privacy. Your absolute best option is something like a raspberry pi with an open source OS.
flacebo
·قبل سنتين·discuss
Just don't connect it to your network and you're probably fine. Use a smart box for streaming services.
flacebo
·قبل سنتين·discuss
Sure, it's practical, that's why most people don't have a separate smart box. That's why I called it a curse, because most people are being nagged with ads and being tracked on a level the article talks about.

Smart boxes can communicate with the TV (HDMI-CEC), and you don't have to ever use the TV's remote. If the box turns on, it turns on the TV and switches the source. Same with turn off. If you cast a youtube video to the box, the TV also turns on, etc. So it works completely seamless (at least in my case).

Oh wait, I just remembered regular TV channels exist, I guess you will still need the TV's remote for that.
flacebo
·قبل سنتين·discuss
With smart boxes you have much more options. I'm thinking a stipped down android TV box doesn't make screenshots and track you like most smart TVs do, they also don't serve random ads on the home page.
flacebo
·قبل سنتين·discuss
Smart TVs are a curse (from a consumer perspective). A separate smart device makes much more sense.

People usually replaced their TVs when they broke, which could be 6-8+ years. Nowadays as their already slow hardware becomes even more obsolete, streaming apps are no longer updated and start to break, new ones are not released, etc. they go ahead and buy a new one.

You also have to accept all kinds of crappy agreements, so you can be spied on and get served ADS (?!?!).

Not to mention even the most expensive TVs come with baffingly slow hardware and software. $2k devices can take 10+ seconds to load the menu with 4 options, where you can modify picture settings. Incredible.

A TV should be a display with inputs and nothing more IMO.

Smart boxes are cheap and much faster than even the most expensive TVs, and they can be replaced inexpensively when eventually they become obsolete.

For a long time I pulled the network cable from my TV after I got tired of getting bombarded with changed ToS agreements, firmware updates and home screen ads. Now I have it on the network again just because I wanted to control the source from my PC, but it's still blocked from the internet on the firewall. Go ahead and make snapshots you stupid little TV.
flacebo
·قبل سنتين·discuss
I wouldn't consider that an alternative to a solar radio watch.
flacebo
·قبل سنتين·discuss
Yes, on all my keyboards. No double presses so far. On the keyboard I use for gaming, I actually use 1000Hz polling just to get that sweet placebo effect.
flacebo
·قبل سنتين·discuss
The default debounce algorithm in QMK also introduces a minimum of 5ms delay, and the default usb polling rate another 10ms.

To mitigate the debounce algorithm delay, you can put "DEBOUNCE_TYPE = asym_eager_defer_pk" in your rules.mk file.

What this does:

asym: use different debounce algorithm for key-down and key-up events.

eager: the key-down is registered instantly at the first signal, instead of waiting 5ms for debounce

defer: registering key-up will wait for the debounce delay, this will make sure you won't get multiple key-downs registered before a proper key-up

pk: per key debounce timer, uses the most resource but you have plenty on your rp2040. although I don't completely understand how this works, this is supposed to be the fastest.

To increase the polling rate, this can be defined in config.h:

#define USB_POLLING_INTERVAL_MS 2

It's in ms, so 2 is 500hz, 1 is 1000hz, IMO the latter is overkill.

Together, you save a minimum of 6ms, maximum of 14ms of delay, which is orders of magnitude more than you save by not scanning the matrix.
flacebo
·قبل سنتين·discuss
Little bit off topic, sorry.

Windows 10 support ending in 2025 is really scary. Literally billions of computers are not eligible to install Windows 11 because of artificial limitations, all of these are supposed to be trashed? That would be an enormous amount of e-waste.

Realistically one or a combination of the following will happen:

  - Microsoft extends the deadline
  - There will be a paid long term support update channel, and hopefully a registry edit will enable this (happened a couple of times before)
  - Most people will continue to use it without security updates (most likely)
I guess Microsoft will agressively tell you that your OS is not safe, etc, so hopefully a single tool will exist that hides all of these messages and switches to the long term support updates.
flacebo
·قبل سنتين·discuss
Of course, these CO2 levels are smaller by at least one order of magnitude than what could cause suffocation. I overdramatized the fact that the air quality was really, really bad.

Based on every article I found, above 1000 ppm clearly affects sleep quality, cognitive performance, it causes headaches, etc. so 3600ppm is generally considered really bad.

Even if CO2 would be harmless in itself, it is a good indicator for bad ventillation.
flacebo
·قبل سنتين·discuss
I got a DIY basic kit, and was pretty surprised when I saw that after 8 hours of sleep the CO2 level was 3600 ppm in the bedroom. My wife still jokes about the way I woke her up. I immediately said "We're basically suffocating". Maybe it was a little bit too dramatic sure, but kind of true.

The levels go above 1000 ppm in less than an hour with both of us in there.

Opening the windows to ventillate doesn't really solve this, as you'd need to keep opening and closing them every hour. I'm thinking about installing a HRV system, but struggling to find a model that could be integrated into Home Assistant. (ERV not necessary as I live in a european country with temperate climate, the humidity is mostly OK)

In the meantime I have two windows tilted open permanently in another room with the doors open. This keeps CO2 under 1000 ppm, but pretty bad for energy efficiency.

Overall pretty happy with the product, definitely made me much more aware of the air quality. I want to build a portable one with a display and logging to check out the car, the office, maybe the hotel rooms on a trip, the plane, etc.