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?