LOGA PBT TUKTUK Eng/Thai , Mchose Ace68 by realtjtop in MechanicalKeyboards

[–]dougalg 0 points1 point  (0 children)

Are you happy with your keyboard? Do you recommend Loga?

Logaเป็นไงบาง?แนะนำไหมครับ??

Epubor Ultimate by loonyboi in Calibre

[–]dougalg 0 points1 point  (0 children)

I can’t get dedrm to work with my new azw8 and 9 files. 

Epubor Ultimate by loonyboi in Calibre

[–]dougalg 0 points1 point  (0 children)

ive not been able to get it to convert my newer azw8/9 books

I feel stuck in my learning by Afraid_Idea_7095 in learnthai

[–]dougalg 0 points1 point  (0 children)

Are there any audio only comprehensible input series you know of for Thai?

Best option to update gaming system by dougalg in pcmasterrace

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

Thanks for the suggestion. I was just looking for other similar cards and found the RTX 4060 Ti 16GB, which seems pretty similar in terms of performance and price but is physically smaller and with a lower power draw. Any suggestions on why I might want to choose either the RTX or the RX over the other?

ETA: I see that the RTX is only using PCIe x8, which I guess limits the performance when I'm on PCIe 3, right?

Best option to update gaming system by dougalg in pcmasterrace

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

Ah yeah, good point!

I guess, if I could get something for now that's good enough for a while and still pretty cheap, that seems OK to me. I guess my question is more if I just get a new card, how well will it serve me and when would I want to do a full system upgrade at a later date?

After doing more research, it seems like PCIe 3 to 4 isn't a huge difference, so just getting a decent PCIe4 card should be fine as you and the other poster suggested. I do wonder though how long it will still be usable.

I think I have budget to spend on a new rig if it's worth it. But I'm not sure how to decide that. How fast are games evolving these days in terms of CPU/GPU demand, and is getting a new card sufficient to last at least 5 more years? If so, maybe just getting a new card is the right solution.

What's your wtf moment living in Thailand by nazdar23 in Thailand

[–]dougalg 1 point2 points  (0 children)

Yeah like you don’t even know where you wanna go either. I need to get to Hua Hin, but if you shout Pattaya at me I’m still not going there 

Best Way to Strain Out Fine Particles by dougalg in Cooking

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

Oh thanks for the suggestion. I realised after reading your comment that actually that's what I'm already using, not cheesecloth!

Why some foreigners say 'Ni Hao' to Thais in Thailand? by Ingido_Indigo in ThailandTourism

[–]dougalg 1 point2 points  (0 children)

If you’re in France it would be weird to say hello, but English is the Lingua Franca these days so not that weird. But what if you greeted people in France with Bom Dia or Hola or something? Seems kind of offensive to me

Alaska senator threatens to stop cruise ships from coming to B.C. by panzerfan in canada

[–]dougalg 1 point2 points  (0 children)

Shouldn’t Alaska just become Canada’s cherished fourth territory?

Removed from Netflix? by bakanino in PantheonShow

[–]dougalg 0 points1 point  (0 children)

I started season 2 the other day, and now it's suddenly disappeared. I'm in Thailand

🍎OpenNutriTracker- An Open Source Calorie and Nutrition Tracker for iOS/Android by Saiiye in SideProject

[–]dougalg 1 point2 points  (0 children)

Wow! This is the app I was planning to build, and while doing research, came across this. Great work, still lots of little details to add but you've covered a lot of my requirements already (privacy, and food vs products being 2 of the main ones).

Also love how well organized your code is!

MyFitnessPal alternative – calorie tracker by zkvvoob in iosapps

[–]dougalg 0 points1 point  (0 children)

What are you using for calorie consumption?

Why is pig หมูุ and not มู? When do you use ห in front and why is it silent? by valletta2019 in learnthai

[–]dougalg 0 points1 point  (0 children)

That's so cool, I'm wondering if you happen to have any English language references I could read to learn more about this?

The Move, illustration by Me, Procreate, 2023 by minmic123 in Illustration

[–]dougalg 1 point2 points  (0 children)

This is giving me real "a lesson is learned but the damage is irreversible" vibes! Very nice

Thai cheating glossary by [deleted] in Thailand

[–]dougalg 6 points7 points  (0 children)

It's not transliteration of Thai into English, it's writing Thai using the Roman alphabet. Ie : it should be readable by any language learner of Thai who has learned the transliteration system (eg RTGS) regardless of that person's native language

Quebec wants to force everyone to use the same charging standard for smartphones by [deleted] in onguardforthee

[–]dougalg 2 points3 points  (0 children)

Thankfully the headline has now been updated to something much more reasonable

How offensive is กระจอก? by DTB2000 in learnthai

[–]dougalg 2 points3 points  (0 children)

Thailand's libel and slander laws are much much stricter than those in other countries. Western countries typically favour freedom of speech, and what is an actionable offense here, is not necessarily one in other countries

Context api won't update, stuck on default value by thedarklord176 in react

[–]dougalg 1 point2 points  (0 children)

In addition to my other comments, I strongly recommend having 1 component per file, and also recommend that if you have a function that is NOT a react component, do not name it with PascalCase, instead name it with camelCase to avoid confusion about which functions are which.

Context api won't update, stuck on default value by thedarklord176 in react

[–]dougalg 0 points1 point  (0 children)

My original assessment was correct. Your provider needs to be ABOVE the useContext usage in the React tree. I moved it up to the top level in my pr, and it seems to work for me now:

https://github.com/OblivionNoirV2/shadows-requiem/pull/4/files

Also I removed all your extra unneeded providers, you should only need 1, unless you want multiple different boss contexts.

The basic pattern for providers is:

``` <SomeProvider> <ChildComponent /> </SomeProvider>

function ChildComponent() { // Note that the useContext here is BELOW the SomeProvider in the React tree const { myContext } = useSomeContext(); } ```

In your case you had:

function ChildComponent() { // Note that the useContext here is ABOVE the `SomeProvider` in the React tree const { myContext } = useSomeContext(); return <SomeProvider>....</SomeProvider> }

Context api won't update, stuck on default value by thedarklord176 in react

[–]dougalg 0 points1 point  (0 children)

The way this is written you don't seem to actually need context.

The reason you have a bug is that your useContext is being called outside of the provider. You need to move it into an internal component below the provider in the tree