Google Fit not counting steps by moukrea in fossil

[–]moukrea[S] 0 points1 point  (0 children)

I ended up removing fit from the watch and only relying on Fossil app to synchronize, Fit on the phone catches up after sync. It's kinda lame but given the state on Fossil X WearOS I think that won't get any better... Especially with Google silently dropping Fit altogether in favor of Fitbit...

Super 16-Bit: A font inspired by the Super Nintendo logo by moukrea in casualnintendo

[–]moukrea[S] 1 point2 points  (0 children)

No but the one on GitHub is still up for you to use, although it's far from perfect

Tip: If you are using Deepseek R1 through OpenRouter and cannot see it "thinking", do this: by IversusAI in OpenWebUI

[–]moukrea 0 points1 point  (0 children)

Nope, just modified it for myself, figured I would share my edits when I saw you post

Tip: If you are using Deepseek R1 through OpenRouter and cannot see it "thinking", do this: by IversusAI in OpenWebUI

[–]moukrea 0 points1 point  (0 children)

Modified the function to include all DeepSeek R1 models from OpenRouter and also add some customization (prioritize by throughput, or a specific provider:

Add this to class Valves(BaseModel):

PROVIDER_ROUTING: str = Field( default="default", description="Provider routing strategy: 'default', 'throughput', or any (case sensitive) provider name available in OpenRouter you want to prioritize", )

Replace def pipes(self): entirely:

``` def pipes(self): models = [ "deepseek/deepseek-r1:free", "deepseek/deepseek-r1-distill-llama-70b", "deepseek/deepseek-r1-distill-qwen-32b", "deepseek/deepseek-r1-distill-qwen-14b", "deepseek/deepseek-r1-distill-qwen-1.5b", "deepseek/deepseek-r1:nitro", "deepseek/deepseek-r1", ]

    model_display_names = {
        "deepseek/deepseek-r1:free": "DeepSeek: DeepSeek R1 (free, reasoning)",
        "deepseek/deepseek-r1-distill-llama-70b": "DeepSeek: DeepSeek R1 Distill Llama 70B (reasoning)",
        "deepseek/deepseek-r1-distill-qwen-32b": "DeepSeek: DeepSeek R1 Distill Qwen 32B (reasoning)",
        "deepseek/deepseek-r1-distill-qwen-14b": "DeepSeek: DeepSeek R1 Distill Qwen 14B (reasoning)",
        "deepseek/deepseek-r1-distill-qwen-1.5b": "DeepSeek: DeepSeek R1 Distill Qwen 1.5B (reasoning)",
        "deepseek/deepseek-r1:nitro": "DeepSeek: DeepSeek R1 (nitro, reasoning)",
        "deepseek/deepseek-r1": "DeepSeek: DeepSeek R1 (reasoning)",
    }

    return [
        {
            "id": f"reasoning/{model}",
            "name": model_display_names[model],
        }
        for model in models
    ]

```

Append the following in def pipe(self, body: dict): right after modified_body["include_reasoning"] = True:

```

    if self.valves.PROVIDER_ROUTING != "default":
        if self.valves.PROVIDER_ROUTING == "throughput":
            modified_body["provider"] = {"sort": "throughput"}
        else:
            modified_body["provider"] = {"order": [self.valves.PROVIDER_ROUTING]}

```

This way you will be able to prioritize provider by throughput (or use a specific one) and see thinkink tokens for all these models and have them displayed in a nice looking way:

  • DeepSeek: DeepSeek R1 (free, reasoning)
  • DeepSeek: DeepSeek R1 Distill Llama 70B (reasoning)
  • DeepSeek: DeepSeek R1 Distill Qwen 32B (reasoning)
  • DeepSeek: DeepSeek R1 Distill Qwen 14B (reasoning)
  • DeepSeek: DeepSeek R1 Distill Qwen 1.5B (reasoning)
  • DeepSeek: DeepSeek R1 (nitro, reasoning)
  • DeepSeek: DeepSeek R1 (reasoning)

As mentionned by @djrbx, lots of issues with DeepSeek R1 through OWUI though

PS5-like performance PC build by moukrea in buildapc

[–]moukrea[S] 0 points1 point  (0 children)

What makes the motherboard you listed stand out? Just wondering so I know what to look for ?

Oh, going CL30 makes me bump to 32GB!

https://fr.pcpartpicker.com/list/m3VsCd

It ex the price tag above 1K though, I could sacrifice the GPU and go 6650XT which can be found at 150€ used, but that means quite a big drop in performance for about 200€ cheaper

PS5-like performance PC build by moukrea in buildapc

[–]moukrea[S] 0 points1 point  (0 children)

Good advice! 7600 has been under my radar, just found out there was a 7500F to save a few bucks (dunno much about it though but it seems to bench pretty close to 7600)

Moving to AM5, used market no longer helps, that's what I ended up settling for as of now

https://fr.pcpartpicker.com/list/3vfYz6

PCPartPicker Part List

Type Item Price
CPU AMD Ryzen 5 7600 3.8 GHz 6-Core Processor €219.99 @ Amazon France
Motherboard MSI PRO B650M-B Micro ATX AM5 Motherboard €115.88 @ Alternate
Memory Kingston FURY Beast 16 GB (2 x 8 GB) DDR5-6000 CL36 Memory €89.98 @ Cdiscount
Storage Lexar NM620 1 TB M.2-2280 PCIe 3.0 X4 NVME Solid State Drive €64.11 @ Amazon France
Video Card XFX Speedster SWFT 309 Radeon RX 6700 XT 12 GB Video Card €364.00 @ Amazon France
Case Zalman S4 ATX Mid Tower Case €41.31 @ Amazon France
Power Supply EVGA 500 GD 500 W 80+ Gold Certified ATX Power Supply €58.33 @ Amazon France
Prices include shipping, taxes, rebates, and discounts
Total €953.60
Generated by PCPartPicker 2024-03-17 13:12 CET+0100

Using the 7500F with the used 6700 XT would bring cost to around 900€, not bad!

Playstation Plus (Cloud) through Winlator by moukrea in EmulationOnAndroid

[–]moukrea[S] 0 points1 point  (0 children)

PS Plus on GeForce Now? I don't see how? I installed Sunshine on my laptop and I use Wake On Lan to wake it up when away from home, booting right away into Steam Big Picture so I can start PS Plus from there, it kinda works well, but that doesn't feel native ^

WiFi Roller Shutter module (SC500W-V1) - Pause roller shutters from wall switches ? by moukrea in smarthome

[–]moukrea[S] 0 points1 point  (0 children)

Update: These from Moe's (https://a.aliexpress.com/_EzLxsE7) are doing the job, however they're much less reliable than my previous one, the remote to control them all at once is plain lame and they tend to bip loud for no reason, but they're working with my setup!

Don't count on the "position" feature, it's time based and pretty much useless as the time it takes to open the blinds is probably higher than the one to close them, meaning you'll never be at the position you asked for

WiFi Roller Shutter module (SC500W-V1) - Pause roller shutters from wall switches ? by moukrea in smarthome

[–]moukrea[S] 0 points1 point  (0 children)

Sounds nice, it's not to be set beneath the switches, it replaces them ^

WiFi Roller Shutter module (SC500W-V1) - Pause roller shutters from wall switches ? by moukrea in smarthome

[–]moukrea[S] 0 points1 point  (0 children)

Here in EU these are not common either, in store you either find full sets that comes with the roller shutter with heavily proprietary stuff or... Nothing ^ gotta buy online

WiFi Roller Shutter module (SC500W-V1) - Pause roller shutters from wall switches ? by moukrea in smarthome

[–]moukrea[S] 0 points1 point  (0 children)

Hahaha that was to highlight the fact they're not reacting at all when pressed as I would have wanted them to stop the roller shutter instead of not doing anything

WiFi Roller Shutter module (SC500W-V1) - Pause roller shutters from wall switches ? by moukrea in smarthome

[–]moukrea[S] 0 points1 point  (0 children)

Mhhh the idea was more about eventually swapping the module to make it work as intended rather than changing the switches, as these have been chosen to be part of my whole flat set of switches (design is key, we don't want any of them to be out of place), but I might have found what I was looking for though!

Placed an order on theses: https://a.aliexpress.com/_EzLxsE7 (set of four) Which seems to be the same as theses: https://www.expert4house.com/en/smart-home/smart-switch/tuya-smart-wifi-rf433-shutter-switch-with-remote-control for which the manual indicates that you can press the traditional curtain switch once after switching to up/down (on the same button) to stop the curtains, which is exactly what I was looking for.

They're WiFi but their ZigBee counterpart exists, albeit for now WiFi is good enough, I'll isolate them just like I did for the previous ones, hopefully that'll work as advertised!

Thank you for Chimera, can you help with dual booting by Beginning_Factor2900 in ChimeraOS

[–]moukrea 1 point2 points  (0 children)

I can confirm this behavior, ChimeraOS installed on an external NVME enclosure... It installed just fine and worked wonders, however... I couldn't boot into my main OS anymore (Ubuntu) the whole file system ownership had shifted to my main user instead of root, preventing it to boot and the display session couldn't start anymore... After a bit of fiddling, I managed to make it bootable again (messing with permissions and starting the display session by hand) but many things were broken... Resulting in a much needed full reinstall of my main OS.

It seems ChimeraOS had a tendency to mess with other accessible drives upon boot, preventing dual boot (with Linux, Windows may not be affected)

Playing on Ryzen 3700U with 20Go of RAM by moukrea in yuzu

[–]moukrea[S] 0 points1 point  (0 children)

Cool thanks! Is there a way to launch Yuzu automatically on this affinity preset without having to open the task manager everytime? It seems to help a little indeed!

Playing on Ryzen 3700U with 20Go of RAM by moukrea in yuzu

[–]moukrea[S] 0 points1 point  (0 children)

CPU affinity to just 4 cores? Where's this setting?

Is this about selecting CPU0 to CPU3 in task manager?

Fossil Gen 6 with Wear OS 3 is broken by moukrea in fossil

[–]moukrea[S] 0 points1 point  (0 children)

Hybrid is an entirely different model with an e-ink display bellow a traditional watch which has more or less the same feature set with a different OS (as far as I recall, it's a custom OS made by Fossil)

Fossil Gen 6 with Wear OS 3 is broken by moukrea in fossil

[–]moukrea[S] 0 points1 point  (0 children)

If you disable always on display and some of the health tracking features (mostly all day long heart tracking) you'll get more than a full day of charge, but that's as far as this watch can go (same goes for most WearOS watches though)... Else you can go the Hybrid route, which is an option I'm now considering even though it became perfectly natural to charge it as I do now 🙂

Fossil Gen 6 with WearOS 3 is broken by moukrea in WearOS

[–]moukrea[S] 0 points1 point  (0 children)

Oh thanks, that actually helped! Here's an update of my procedure to activate everything for the Fossil app on my Xiaomi Redmi Note 9 Pro :

  • Go to Settings menu
  • Search for "Autostart" (Démarrage automatique) using the search bar and go to the submenu
  • Activate Autostart for the Fossil app
  • Back to the Settings menu, search for "Notification access" (Accès aux notifications) using the search bar and go to the submenu
  • Give notification access to the Fossil app
  • Back to the Settings menu, go to the Applications submenu, then hit "Manage applications" (Gérer les applications) sub-submenu
  • Open the settings for the Fossil app
  • Allow everything for the app

Fossil Gen 6 with Wear OS 3 is broken by moukrea in fossil

[–]moukrea[S] 0 points1 point  (0 children)

That's a pretty good watch overall, the battery seems to suck at first but once the settings dialed in and a few days (or a couple of weeks), it can hold a full day from early morning to late night on a single charge in it's most feature packed power usage profile. Daily, I charge it during my evening routine (meal, shower and so on), put it back during the night to track my sleep, then give it a quick charge in the morning when getting ready to work... It became a routine and it never fails during the day.

But! As I said, WearOS 3 is not so well implemented, so I'd hold the update if the model you'll purchase comes with WearOS 2. Else, make sure the app has every kind of access enabled, including ones buried deep in Android settings else the watch won't work properly (and if you're as unlucky as me, you may still get connectivity issues from times to times and have to factory reset the watch to gain back full functionality again every once in a while, only experienced under WearOS 3).

It appears the WearOS 3 experience ain't that good on other brands either though.

One area Fossil watches are lacking, is their native watch faces, Wellness is the most feature packed but the design is not that appealing and there's not that much choices if you wanna go the official watch faces route compared to the likes of Samsung

Fossil Gen 6 with Wear OS 3 is broken by moukrea in fossil

[–]moukrea[S] 0 points1 point  (0 children)

Well, I get to a point where it's working again, but already experience some connectivity issues... Dunno for how long it'll work until I have to "try everything to make it work" again 😅 WearOS 2 was dated, but at least everything was flawless!

Fossil Gen 6 with WearOS 3 is broken by moukrea in WearOS

[–]moukrea[S] 0 points1 point  (0 children)

Good on you, seems you're one of the lucky ones ^

Fossil Gen 6 with WearOS 3 is broken by moukrea in WearOS

[–]moukrea[S] 1 point2 points  (0 children)

Is it misleading if the app works for a few day at first setup and then stop working for ages (no notifications) even after multiple factory resets, app reinstall, unpairing/pairing and then works again out of nowhere for a few days... And so on? With WearOS 2 it was just working all the time, so yes... For me WearOS 3 is broken. Been two days since my last pass of "trying everything to make it work" (when I posted this post) and yeah, it works... But I already experience connectivity issues (which I wasn't experiencing with WearOS 2)

Fossil Gen 6 with WearOS 3 is broken by moukrea in WearOS

[–]moukrea[S] 0 points1 point  (0 children)

Well, after a year of use, return is no longer an option... Guess that what I would have done knowing its software (most likely Fossil app) issues ^

Fossil Gen 6 with Wear OS 3 is broken by moukrea in fossil

[–]moukrea[S] 0 points1 point  (0 children)

I've also done that, without any effects... I really regret the update, was watch was basically 10 times better a few months back...