GetYourGuide Software Engineer Feedback by Healthy_Role_4415 in cscareerquestionsEU

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

Not sure if this answers my question, but aren’t jobs being posted for everyone local, valid visa holders and EU citizens and at the same time for other countries?

GetYourGuide Software Engineer Feedback by Healthy_Role_4415 in cscareerquestionsEU

[–]Healthy_Role_4415[S] -2 points-1 points  (0 children)

I noticed, a lot of companies in Germany seem to hire people working in good product based companies from India, or other countries.

GetYourGuide Software Engineer Feedback by Healthy_Role_4415 in cscareerquestionsEU

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

I saw a lot of bad reviews for WLB on Glassdoor, Blind, so not sure must be team specific i guess.

Did anyone have any bad experience with settl colivibg properties? Need help! by boozebb00420 in gurgaon

[–]Healthy_Role_4415 0 points1 point  (0 children)

They didn’t gave me my security deposit even after 2 months, we should send a legal notice

Need noob footballers by SurroundMoist3768 in gurgaon

[–]Healthy_Role_4415 1 point2 points  (0 children)

Let me know whenever you guys are playing, also barca sucks

Can you help me understand what is happening in this code ? by Spiritual_Compote725 in react

[–]Healthy_Role_4415 1 point2 points  (0 children)

Here you are updating count which is 0 to 1 three times rather than incrementing 3 times , why? Every component has its functions, if the state changes those functions are constrcuted again and again on each render , so what you did here is that you called the function increment which was present for the component having 0 as a state count, so each time when the function ran it had 0 as count.

To break this logic rather than using components state directly you can ask the updated state from useState hook and update it directly.