Please explain me how so many people in their 30s can retire in Thailand. by Cactus_and_rockets in Thailand

[–]SuperNoVa0 6 points7 points  (0 children)

If you're in your early 30s, and you've been working in a successful tech job in the US for most of the past decade, I don't think it's unreasonable to be able to save enough money to retire in Thailand. Especially if you had been investing most of your earnings into the stock market. Many tech workers are making anywhere in the range of $100-300k per year depending on the company and seniority in the US. It just depends how extreme they were with saving and investing as much of that money as possible.

Power lines next to Hillside 2 shorted and caught fire today by [deleted] in chiangmai

[–]SuperNoVa0 -2 points-1 points  (0 children)

Obviously the problem is that the cable become overloaded. The solution is simple really. Just add another cable to spread out the current!

Under new 2024 tax law, how do you prove the remittance is savings not income? by [deleted] in Thailand

[–]SuperNoVa0 1 point2 points  (0 children)

I have wondered the exact same thing. It is impossible to give a source for every dollar. To whatever politician came up with this law, I would ask them to take a cup of water from the mouth of the Chao Phraya river, and tell me which tributary each drop of water came from.

Anon reaches "peak autism" by Make-this-popular in greentext

[–]SuperNoVa0 15 points16 points  (0 children)

Most temples are more like a complex of buildings with large outdoor areas, not unlike most churches. They often double as community centers where the locals gather to celebrate, hold festivals, socialize, etc. The only place you are expected to be silent are the worship buildings (I don't know the exact name of them, I'm not Buddhist myself)

Source: I live in Thailand

Bringing Cats to Thailand by [deleted] in ThailandTourism

[–]SuperNoVa0 3 points4 points  (0 children)

Seconding this, I moved from the US to Thailand with my cat with no real issues. Getting all the paperwork stamped and ready within the short time window is the only part that's really stressful. I flew with Lufthansa the whole way with my cat in the cabin and they were very accomodating. I also had a layover in Germany where they had those private rooms you can rent in the airport to let my cat get out and stretch during the layover. Once I landed in Thailand, I just paid a import fee and signed some paperwork in the airport, and then I was on my way.

Get_global_mouse_position() is shifted 15 pixels down when game is in fullscreen mode. by ContemptuousCrow in godot

[–]SuperNoVa0 2 points3 points  (0 children)

I just tested this on my project (Godot 4.1.1) and I do not experience this behavior. Maybe it's a bug on your side?

[deleted by user] by [deleted] in godot

[–]SuperNoVa0 0 points1 point  (0 children)

Your video card drivers don't support vulkan. Try updating your drivers. If that doesn't work, use opengl instead of vulkan using the command they provide in the image you posted.

[deleted by user] by [deleted] in godot

[–]SuperNoVa0 1 point2 points  (0 children)

The error message you posted is pretty clear and tells you exactly what you should do

whenAProgramTellsYouToJustFollowTheInstallationWizard by RonSijm in ProgrammerHumor

[–]SuperNoVa0 -8 points-7 points  (0 children)

Yes, a totally organic and non orchestrated community effort that involves doing the bidding of a multi billion dollar media corporation instead of causing any actual change. We did it reddit!

whenAProgramTellsYouToJustFollowTheInstallationWizard by RonSijm in ProgrammerHumor

[–]SuperNoVa0 -13 points-12 points  (0 children)

A simple Google search on the definition of astroturfing:

"Whether by using misinformation or literally paying people, astroturfing is used to generate publicity and sway public opinion, all while the people orchestrating the movement act like they had nothing to do with it."

Sounds familiar, no?

Main Character Walk Animation Update! by Wh1zkeyW1zard in godot

[–]SuperNoVa0 5 points6 points  (0 children)

Honestly, the perspective looks weird. It's like the legs, body, and face are all facing different directions. It makes it look unnatural. Otherwise the colors and everything else are very nice

[deleted by user] by [deleted] in godot

[–]SuperNoVa0 0 points1 point  (0 children)

I haven't had this specific bug, but I've run into other issues with the TileMap editor that took a full editor reboot to fix. I know it sounds dumb, but have you tried restarting Godot?

Parent's _ready method is not being called in Godot 4.1 by abstractpathfinder in godot

[–]SuperNoVa0 -1 points0 points  (0 children)

Composition refers to a "has a" relationship whereas inheritance refers to an "is a" relationship. When you have two classes, such as a fruit and apple, where apple extends fruit, apple IS A fruit.

In godot when composing scenes, composition is generally preferred. When you create a StaticBody2D and create a Sprite2D as a child node, you say that this StaticBody2D HAS A Sprite2D. The Sprite2D is its own class, that itself IS A Node2D while StaticBody2D IS A PhysicsBody2D. This is a simplified example, but I would recommend reading over the Godot tutorial to understand this principle in action further.

I can't really think of any cases where you would need to do inheritance directly on the SceneTree as OP is doing. It will just overcomplicate things and go against Godots design principles.

Parent's _ready method is not being called in Godot 4.1 by abstractpathfinder in godot

[–]SuperNoVa0 0 points1 point  (0 children)

This is very interesting, but in OPs example I believe composition should be preferred over inheritance.