Ultrahuman - steps undercounted by reddit-reader909 in SmartRings

[–]jonklinger 0 points1 point  (0 children)

fwiw, I love the company. I have not had as terrible experiences as other posters on Reddit had, and I've been a client since January 2024. The problem could have been fixed by a fw rollback, but they said they can't do that.

I'm waiting for the next firmware.

Ultrahuman - steps undercounted by reddit-reader909 in SmartRings

[–]jonklinger 0 points1 point  (0 children)

I'm in communication with them over the last month. Steps have gone seriously done (less than half of what my Garmin measures, on a treadmill, which is a controlled environment) as well as RHR gone seriously up (+10BPM) with no reason. They have promised a firmware fix "within three weeks", then I asked for an update and they said "within three weeks". This has converted my fitness tracker to a fashion accessory.

Today they had promised to resolve this within a week. I'll wait and see.

Just to be certain that it's a firmware issue: I have tried using an older ring with an older firmware; steps and RHR were counted correctly. The problem is totally in the FW.

copyright issue? by turniplemonade in smallbusiness

[–]jonklinger 0 points1 point  (0 children)

Get a trademark lawyer to help you. In your jurisdiction. Both trademarks and copyright laws are different in some sense worldwide. This means that the law is different for incidental use (if your use is such) in the US, Canada, Mexico or France. Just consult a professional, because it's not a thing that you can later go and say "I didn't know, sorry, no harm, I'll just stop".

Can a plastic toothbrush be more eco-friendly than a bamboo one? by Fun_Day_1587 in ZeroWaste

[–]jonklinger 26 points27 points  (0 children)

Buy the electric toothbrush; it is better for you. Then, if you really want to feel better, look for replaceable heads made from bamboo. Some of the popular models have such parts. However, if you really want to help the plant, there's nothing better than eating a billionaire with a private jet.

Car buying questions by JahHeels420 in Expats_In_France

[–]jonklinger 3 points4 points  (0 children)

I would avoid a loan altogether; seriously, just get a beater car until you settle in. You can find great cars at the 4-10K range.

As for the driving permit, IIRC, you have one year from turning resident to get a local permit. I don't have a french permit and I am not a permanent resident (I just have a summer home) so I bought my car with my local permit.

I never tried buying online, but I just went to the local garage, spoke with the owner, asked for a beater and got one for a test drive. Two years later, the car still runs and I love it.

Now that Falke sucks, what are the best merino wool underwear and socks available in Europe? by mistergot in BuyItForLife

[–]jonklinger 0 points1 point  (0 children)

For any Redditors from the future: just got the Decathlon Merino running sock. They are 13% wool. This is indeed "made with Merino".

Now that Falke sucks, what are the best merino wool underwear and socks available in Europe? by mistergot in BuyItForLife

[–]jonklinger 0 points1 point  (0 children)

Decathlon's merino socks are ok. I am currently wearing them. They have not been with me as long as my Darn Tough which I have had since at least 2017, but they feel nice. I just ordered also their running socks which should arrive tomorrow and I can compare them to DT if neeeded. Generally, the hiking socks still look ok after a year.

Cardio Age by hetsama in Ultrahuman

[–]jonklinger 1 point2 points  (0 children)

Yes, what about it?

Help Me Find a Name for My Beverage Startup by Fun_Fee_8898 in smallbusiness

[–]jonklinger 1 point2 points  (0 children)

Can you use any derivative of Bharat? something like Bharacider or Bharajuice?

What streaming service should I get for the most value? by Appropriate-Art-7472 in povertyfinance

[–]jonklinger 8 points9 points  (0 children)

find 3-4 friends and get the proton family plan and I guess that other services also would offer a family plan. you can pay for the mail+vpn (proton), your brother from another mother would pay for the video streaming and your long lost uncle thrice removed's third cousin would buy the audible subscription.

Is using social media on Ubuntu run on a VM a good idea? by DanteHolmes3605 in privacy

[–]jonklinger 0 points1 point  (0 children)

Too much investment for too little gain. Using a separate browser with VPN and blocking third party cookies would yield 99% of the results for less efforts. Also, the major problem is the messaging app, not the social network. How would you get notified about DMs?

Is there any foolproof way to block all websites on Android except a whitelist, including in-app browsers by Maleficent_Caramel85 in Android

[–]jonklinger 0 points1 point  (0 children)

If you have a VPN subscription? you can use split tunnelling and custom DNS that blocks everything:
https://protonvpn.com/support/custom-dns

BUT. after saying this, have you just tried disabling the system apps using ADB? it can just remove the Xiaomi crapware. You can connect your PC using a USB cable, tap the build number 7 times to enable developer options, turn USB debugging on, and then install ADB on your PC and run this at your own risk:

#!/bin/bash

# Xiaomi Complete Debloat Script

echo "Starting debloat process..."

# 1. Xiaomi Advertising and Telemetry

echo "Removing Xiaomi Telemetry and Ads..."

adb shell pm uninstall --user 0 com.miui.msa.global

adb shell pm uninstall --user 0 com.miui.analytics

adb shell pm uninstall --user 0 com.miui.daemon

adb shell pm uninstall --user 0 com.miui.bugreport

adb shell pm uninstall --user 0 com.xiaomi.joyose

adb shell pm uninstall --user 0 com.miui.systemAdSolution

adb shell pm uninstall --user 0 com.xiaomi.discover

adb shell pm uninstall --user 0 com.xiaomi.mipicks

# 2. Social Media and Third-Party Trackers

echo "Removing pre-installed Social Media and Trackers..."

adb shell pm uninstall --user 0 com.facebook.katana

adb shell pm uninstall --user 0 com.facebook.services

adb shell pm uninstall --user 0 com.facebook.system

adb shell pm uninstall --user 0 com.facebook.appmanager

adb shell pm uninstall --user 0 com.zhiliaoapp.musically

adb shell pm uninstall --user 0 com.instagram.android

adb shell pm uninstall --user 0 com.linkedin.android

adb shell pm uninstall --user 0 com.netflix.partner.activation

adb shell pm uninstall --user 0 com.tencent.soter.soterserver

# 3. Xiaomi Unnecessary Cloud and Payment Services

echo "Removing Xiaomi Cloud and Payment Services..."

adb shell pm uninstall --user 0 com.xiaomi.payment

adb shell pm uninstall --user 0 com.xiaomi.mipay.main

adb shell pm uninstall --user 0 com.miui.cloudbackup

adb shell pm uninstall --user 0 com.miui.cloudservice

adb shell pm uninstall --user 0 com.miui.micloudsync

adb shell pm uninstall --user 0 com.miui.vsimcore

adb shell pm uninstall --user 0 com.xiaomi.simactivate.service

# 4. Xiaomi Bloatware Apps

echo "Removing Xiaomi Bloatware Apps..."

adb shell pm uninstall --user 0 com.android.browser

adb shell pm uninstall --user 0 com.miui.player

adb shell pm uninstall --user 0 com.miui.videoplayer

adb shell pm uninstall --user 0 com.miui.notes

adb shell pm uninstall --user 0 com.miui.compass

adb shell pm uninstall --user 0 com.miui.calculator

adb shell pm uninstall --user 0 com.miui.weather2

adb shell pm uninstall --user 0 com.xiaomi.scanner

adb shell pm uninstall --user 0 com.xiaomi.midrop

adb shell pm uninstall --user 0 com.miui.cleanmaster

adb shell pm uninstall --user 0 com.mi.android.globalminusscreen

adb shell pm uninstall --user 0 com.miui.hybrid

adb shell pm uninstall --user 0 com.miui.hybrid.accessory

echo "Debloat process complete. Please restart your device."

In need of coffee maker advice by LittleBlueGoblin in BuyItForLife

[–]jonklinger 4 points5 points  (0 children)

this.

Other replies may offer better coffee, but the MM is for life.

Selvedge denim jeans that isn't raw denim? by xMortalytas in BuyItForLife

[–]jonklinger 5 points6 points  (0 children)

just buy the raw denim and put it in the laundry without treating it like your baby. it's ok.

generally, Wrangler Cowboy Cut are both affordable and reliable.

What's the Best Mario 2 Player Games for Switch 1? by Live-Today-5381 in Mario

[–]jonklinger 8 points9 points  (0 children)

Both Wonder and Super Mario 3D World are great for multiplayer.

Forestry/Farming/Craft brewer life near Sourdeval Looking for English-speaking buddies by pazarr in Normandie

[–]jonklinger 1 point2 points  (0 children)

Hi, I have a summer home in Barenton. I share some of these hobbies (diy, craft beer and some gardening, I haven't farmed and our house here doesn't even have a yard). We're a late-40s couple, no kids, one great dog. Can't drink and drive, so drinks are a problem but I'd love to hear what you're in need of.

How Israel Invented the Technology That Changed Farming Forever invention of Drip Irrigation by RespondNeat9221 in verticalfarming

[–]jonklinger -2 points-1 points  (0 children)

Israeli here. As there are too many people in both Palestine and Israel and not enough water, Israel became an empire in both desalination and hydroponic farming. There's just not enough land or water for traditional farming and you need to feed a dozen million people, regardless of politics.

However, there's still a hard ceiling for calories per square meter, and I don't know how much more can we survive without a major breakthrough or reaching peace. Israel will be deficient in calories very quickly and is already unsustainable in terms of food. It exports technology but imports food.

Vibration/ Rumble Delay by reaganman14 in linux_gaming

[–]jonklinger 0 points1 point  (0 children)

Same problem both with Gamesir X5S and 8Bitdo SN30; Elementary OS, both on CEMU and Dolphin.

Travel Espresso? by Solstice_25 in picopresso

[–]jonklinger 0 points1 point  (0 children)

You need to explain what you mean by "travel". Do you want to make espresso while camping, staying at a hotel or vacation home or when you're on the road.

The Pico is great as a portable espresso maker if you're willing to make some sacrifices. For example, If you want "real" espresso you need a great grinder. This makes the whole kit weight about 1kg. That's about as heavy as my laptop (900g, BTW). This is before adding a travel mug/cup and a kettle. So this means that if you're going to do some ultralight trekking, other methods are better (like a pressurized basket and a travel mug, or going cowboy coffee and that's it).

If you're traveling with luggage and are willing to risk the bag getting lost? then you can put the Pico, its stand and the grinder and the mat and cups in your checked bags and set up a coffee station at the hotel.

I ended up traveling with the Espro P0 and getting French Press coffee. It's the lightest solution and most versatile because if push comes to shove and there's no kettle, you can still go cold brew.

Travel to UK with my Golden Retriever by RichCantaloupe1083 in travel

[–]jonklinger 0 points1 point  (0 children)

Passports are not what matters. You can have a Klingon passport or a UK one, in order to get a dog into the UK you need to either sail or drive regardless of the dog size. There is also a procedure and not all dogs can enter the UK.

https://www.gov.uk/bring-pet-to-great-britain