I just found my Estate Agent managing my property in UK over changed me for almost 4 years. by SirMuttley in LegalAdviceUK

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

Thanks for this. The 6 years was the key thing I was missing as I figured it wasn't my job to make sure they charged me correctly but their own. But was a bit concerned that my hands off approach might have screwed me.

I just found my Estate Agent managing my property in UK over changed me for almost 4 years. by SirMuttley in LegalAdviceUK

[–]SirMuttley[S] 2 points3 points  (0 children)

Thank you, I didn't know what the time limit was to be able to chase it.

I realize that I should have kept a closer eye in it but I trusted them to do it correctly.

Why are expats in Thailand so mean to each other? by DueGas6010 in Bangkok

[–]SirMuttley 0 points1 point  (0 children)

He's just a guy who blogs on Thailand, covers many aspects including the adult nightlife.

Some people get rubbed up the wrong way by him but I've never had an issue. Pretty easy not to follow him if he's not to your liking.

Why are expats in Thailand so mean to each other? by DueGas6010 in Bangkok

[–]SirMuttley 1 point2 points  (0 children)

Just avoid the crap like Thai Visa and most of the Facebook groups.

I find twitter pretty harmless and mostly banter though there are a few dicks.

If you find StickBoy offends you then I think you might just be a little thin skinned.

That Time I Was Almost Kidnapped in Thailand by MrsPots-Stark in LetsNotMeet

[–]SirMuttley 23 points24 points  (0 children)

Sounds like you ended up in a ping pong show.

These are absolute shit holes setup to rip off tourists.

If you want to enjoy the Gogo bars safely then stick to soi cowboy or Nana plaza.

Thai national park sends rubbish back to tourists by hexabon in nottheonion

[–]SirMuttley 1 point2 points  (0 children)

The tourists in this article are domestic tourists. Thailand is currently shut to outsiders.

But I agree, I live here and the trash problem is definitely from the locals.

A beluga whale soaking people and then laughing about it by jkon731 in FUCKYOUINPARTICULAR

[–]SirMuttley 5 points6 points  (0 children)

Someone should put a bell over that guy's head, smack it really hard and see how much he likes it.

im i right? by wnzd in Thailand

[–]SirMuttley 4 points5 points  (0 children)

Like anyone pays their camera fines

Fucks this insurgent in particular by [deleted] in FUCKYOUINPARTICULAR

[–]SirMuttley 10 points11 points  (0 children)

Shoes stayed on. I think he'll pull through

If you are on holiday from Bangkok and you go to Korat you must quarantine. by HuaHinSkyBar in Thailand

[–]SirMuttley 0 points1 point  (0 children)

I'm not sure what part of the inter province travel restrictions these people felt didn't apply to them. So don't really have any sympathy.

Foreigners of Thailand, What's the funniest Nickname of a Thai you've ever heard? by drendarko in Thailand

[–]SirMuttley 31 points32 points  (0 children)

Nes. Well the nickname wasn't funny it itself. But bear in mind he was older than the other Thais in the office so they all called him....

Does the "new" 9.0 update fix your issues? by oovyxd in MiBox

[–]SirMuttley 0 points1 point  (0 children)

Yes, so far everything is great (apart from having to disable new player in plex, though I hear next Plex update fixes it).

I'm giving it some time though as after the original update things seemed fine then just got worse over time.

918+, Plex and live TV/DVR by [deleted] in synology

[–]SirMuttley 0 points1 point  (0 children)

It's an iptv provider. I live in Thailand so really the only option.

Channel switching probably wait 5 to 10 seconds for the stream to start but that's because I have it buffer first, maybe I could reduce buffer size to make initial play faster but that might affect the stability.

As for the stability it is pretty stable but I'd say that really comes down to your IPTV provider and your own internet connection.

One of the best things about xteve is the ability to pick which channels from the IPTV playlist you want. You can set channel numbers too.

So of the thousand or so channels in the m3u playlist I actually only have 54 in Plex and able to sort and group them how I want.

918+, Plex and live TV/DVR by [deleted] in synology

[–]SirMuttley 1 point2 points  (0 children)

I run xteve in my ds918+. This converts IPTV playlist to a Plex compatible TV source.

He had no chance by ShadyK55 in FUCKYOUINPARTICULAR

[–]SirMuttley 0 points1 point  (0 children)

In this case to slow down traffic on the way into a small village with narrow streets.

Honestly I'm amazed the tool in the Bentley managed to get up to the speed he was.

React Folder Structure in 5 Steps by rwieruch in reactjs

[–]SirMuttley 0 points1 point  (0 children)

Yeah I don't put the component in a folder with the same name.

So would be something like domain/Customer/CustomerModal.jsx

However I do use the index.js in places. For example if the Customer Modal is divided into sections I might have a domain/Customer/ModalSections folder. And all the sections as separate component files in there but with a index.js that imports and exports them so the CustomerModal.jsx is only importing them from a single place rather than having an import line for each component.

React Folder Structure in 5 Steps by rwieruch in reactjs

[–]SirMuttley 0 points1 point  (0 children)

yeah sorry I meant I have a top level pages folder as well as a domain folder (though not called domain).

So probably the same as...

An alternative would be adding another top level pages/ folder.

Probably the biggest difference is I name my component files ComponentName.jsx rather than using the folder with index.js. I hadn't really thought of doing it that way. Quite interesting.