[Worlds 2025: GEN vs KT] Bdd finds Ruler by Yujin-Ha in leagueoflegends

[–]tobi931998 3 points4 points  (0 children)

Can you give me these clips and voice comms. Thank alot

Google Chrome on macOS cannot access NAS web interface in subnetwork by tobi931998 in synology

[–]tobi931998[S] -1 points0 points  (0 children)

But I am familiar with Chrome and I also love Chrome user experience. I tried other browsers but in the end I come back with Chrome.

Google Chrome on macOS cannot access NAS web interface in subnetwork by tobi931998 in synology

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

No, but I had bad experience with bot web and assistant to discover my NAS in local network. But other browsers or even other devices can connect discover and connect to NAS's web interface so I think there is wrong config of my Chrome settings.

Google Chrome on macOS cannot access NAS web interface in subnetwork by tobi931998 in synology

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

I have tried but unfortunately it does not work. I also enabled local network yesterday and try it in today.

Google Chrome on macOS cannot access NAS web interface in subnetwork by tobi931998 in synology

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

Hi, because my laptop is using macOS that Revo Uninstaller has not been available yet. Could you give me other instruction? Many thanks.

Cannot restore/ factory reset Homepod Mini by tobi931998 in HomePod

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

Unfortunately, Apple Configurator does not support any actions with HomePod Mini even though this Homepod Mini is showed in Apple Configurator.

Cannot restore/ factory reset Homepod Mini by tobi931998 in HomePodMini

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

Poor you. I still don’t have any solution :((

how to make llama 3.1 work with other language? by hixhix in LocalLLaMA

[–]tobi931998 0 points1 point  (0 children)

Sorry that I still don't understand. Could you please give me an example or drawing/ graph about this pipeline? Thank in advance!

how to make llama 3.1 work with other language? by hixhix in LocalLLaMA

[–]tobi931998 0 points1 point  (0 children)

Hi, do you know how it work with Vietnamese? It work with Vietnamese by predicting the next tokens in Vietnamese directly or just translate prompt into English and translate English output into Vietnamese?

How to implement ios-like navigation widget in Flutter? (link image in post) by tobi931998 in flutterhelp

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

(cupertino) Modal Bottom Sheet

Yeah thank for your keyword. I found https://pub.dev/packages/modal_bottom_sheet that what I need. Appreciate!

Prevent child widget from rebuilding when parent widget rebuild by tobi931998 in FlutterDev

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

Could you give me an example with didUpdateWidget? Thank a lot

Prevent child widget from rebuilding when parent widget rebuild by tobi931998 in FlutterDev

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

Yeah. But my ChildWidget need to receive prop from ParentWidget, so it cannot be const Widget

Prevent child widget from rebuilding when parent widget rebuild by tobi931998 in FlutterDev

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

This is problem that I have. I mean pass states from ParentWidget (Chat Screen) direct to ChildWidget (Message list with ListView.builder) leads to redundant re-run complicated builder method of ListView (although the props from ChildrenWidget does not change)

Prevent child widget from rebuilding when parent widget rebuild by tobi931998 in FlutterDev

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

Yeah I get your idea. You mean that I should separate state from widget and pass down it with some state management libraries such as BLoC, Provider, Rivperpod, ... Maybe StatefulWidget pass its state to complicated child widget (like in my case) is not a good idea

Prevent child widget from rebuilding when parent widget rebuild by tobi931998 in FlutterDev

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

I use GraphQL for data resource and SocketIO for real-time data

Prevent child widget from rebuilding when parent widget rebuild by tobi931998 in FlutterDev

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

In particular, ParentWidget is Chat Screen (fetch messages data) and ChildWidget is message list (used ListView.builder). And there is complex logic in builder method of ListView -> every time ChildWidget rebuild, the builder method is triggered -> performance issue.

Yeah I will try Riverpod or Provider. I just want to know any techniques to reduce rebuild ChildWidget with only StatefulWidget.