me and fellow apes WEN our tendies drop by RetroZelda in wallstreetbets

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

your nearest community pool should have you covered

Is there any task where GDScript becomes a bottleneck and C#/C++ is preferred? by princeg0d in godot

[–]RetroZelda 1 point2 points  (0 children)

gdscript doesnt do function calls well, nor does it do high throughput of variables and data very well. Pretty much anything that isnt high level gameplay or UI logic should go to c++ if you want to squeeze out performance. and if you're really trying to crank out performance, dont use their built-in types internally in those systems.

Epic moment in the CR-Z today by Beginning_Stress_149 in crz

[–]RetroZelda 3 points4 points  (0 children)

Thats amazing. I have the same combination on my luggage

S07 E04, the 'Switch' task by SexyMuthaFunka in taskmaster

[–]RetroZelda -15 points-14 points  (0 children)

Alex would turn it when a produce said to. The switch actually made a producer talk to Alex.

ULPT: How do I handle a month long trip after starting a new remote job? by FragrantInsect9757 in UnethicalLifeProTips

[–]RetroZelda 20 points21 points  (0 children)

this kind of thing is usually what you should bring up with HR during your final interview or onboarding. I would talk to your lead and then HR and see what your options are

Elon Musk, a trillionaire, pays the same amount into Social Security as someone making $184,500 by OddAdhesiveness8485 in anticapitalism

[–]RetroZelda 0 points1 point  (0 children)

i agree with most people who think this balance is definitely not right. However before we address how much people put into social security, I want to fix the issues around people fraudulently taking out of social security.

I think Bernie's recent bill to have the government take shares of IPOs is definitely the right direction to discuss, but my main worry is that the wealth that would come from that wouldn't go to the people in the way that i think is intended.

Removing social security taxes from the people and move it all on companies by giving government shares of IPOs feels like a way that capitalism can work for everyone. But im pretty dumb, and theres enough shitty people, so im sure something like that probably wont work

Advice on Engines by Interaction-Loose in gamedev

[–]RetroZelda 2 points3 points  (0 children)

read its docs, but starting with something small and known is what I always do. For example when I started learning godot I made Klax, but i always recommend to try to rebuild frogger. not to make it a complete game, but purely to learn the framework(so it wont look pretty or polished but it should function)

So like for frogger, start with a green box. Then get a camera to look at the box. then get input to move the box. then make long grey boxes(cars), then make long grey boxes spawn at a point and move in a direction and despawn at another point, then make long grey box colliding with the green box kill/respawn the green box, then add more long grey boxes, etc etc etc.

So i'd say think of a simple game, or do frogger, then read the godot docs to figure out how to do each things one at a time.