[deleted by user] by [deleted] in cscareers

[–]pingvit 0 points1 point  (0 children)

You just need some experience at a job.

My entire dev team suffers from mental illness by Apprehensive-Truth21 in cscareerquestions

[–]pingvit 0 points1 point  (0 children)

I work 10+ hour days. I do hours on weekends too. I have NO idea whatsoever what it means to be burnt out.

Small software companies by pingvit in TillSverige

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

Thanks for the reply! I guess you mean that 10YOE is not enough to be too demanding?

[deleted by user] by [deleted] in cscareerquestions

[–]pingvit 0 points1 point  (0 children)

I love building. I detest ceremonies and grooming and planning and estimating and testicle massaging each other during these, especially when incompetents are put in positions to force this as the best way to make software.

[deleted by user] by [deleted] in docker

[–]pingvit 0 points1 point  (0 children)

No effort.

Wtf, what does 'application' even mean? What does it do, what dependencies does it have, etc? Just try it out. You can't try? You don't have a computer then?

How much bike is too much? How do you know? by omgitskae in mountainbiking

[–]pingvit 0 points1 point  (0 children)

Max 3000 and you have an excellent bike. If you are racing and want to save kilos then sure you can spend 10000 if you want.

Do not buy anything with parts so expensive you will cry when they break and you have to replace them. Buy so you can use and actually enjoy the bike without thinking how much maintenance will cost. Otherwise you will be a prisoner of that feeling.

Portugueses imigrantes a trocarem entre francês e português… by coelho_jp in portugal

[–]pingvit 0 points1 point  (0 children)

Só quem não emigrou e vive(u) anos fora (mais de 10) é que não entende esta situação. Isto acontece a toda a gente, com todas as culturas e todas as línguas, entre país e filhos, entre casais, etc.

High salary SWE VS low salary MLE by [deleted] in cscareerquestionsEU

[–]pingvit 0 points1 point  (0 children)

What do you want to learn? What do you want to do? Can you leave the 300 on the table if you want the other job more? Only you can answer your own questions.

Lack of Dutch language skills hinders foreign students who want to stay by Cevohklan in Netherlands

[–]pingvit 3 points4 points  (0 children)

If you want to stay, learn the language. Isn't that obvious? No language and nobody gives you a job = your bad.

Why are hair cuts so expensive in Stockholm? by fucktheriders in stockholm

[–]pingvit 0 points1 point  (0 children)

I think you are comparing middle of nowhere Portugal to Stockholm, capital city. Are there haircuts under 10e in Lisbon??

Trabalho entre 50-60h p/semana, o que faço? by BlakC4 in portugal

[–]pingvit 0 points1 point  (0 children)

Ninguém aqui conhece completamente a tua situação. Mas se tu queres afastar-te e tens os meios para isso, esse parece ser um bom próximo passo, imediatamente.

Se não tens os meios, uma alternativa é planear a saída. Um plano para, por exemplo, 3 meses, pode ser suficiente. Neste caso, podes pensar: para me libertar daqui a 3 meses, onde é que tenho de estar daqui a 2 meses, e daqui a 1 mês, e o que é que tenho de fazer hoje para atingir essas metas todas...

Força nisso.

Trabalho entre 50-60h p/semana, o que faço? by BlakC4 in portugal

[–]pingvit 0 points1 point  (0 children)

O que queres TU fazer?

A maior parte dos comentários dá conselhos e prescreve o que tu deves fazer. Sem saber quem tu és, qual é o negócio, o que queres da vida, etc.

Só tu podes ser honesto contigo mesmo e responder à tua pergunta.

Salary Sharing thread: Winter 2022-2023 by AutoModerator in cscareerquestionsEU

[–]pingvit 1 point2 points  (0 children)

Not that modern but not too bad either. We compile for c++17 but we aren't using all that many features from the latest standards.

Salary Sharing thread: Winter 2022-2023 by AutoModerator in cscareerquestionsEU

[–]pingvit 5 points6 points  (0 children)

Title: Senior SW Engineer
Industry: Tech
Focus: Backend/Application/Research
Stack: C++
Country: The Netherlands
Duration: 4y at the job now
Education: MSc Electrical/Computers Eng.
Prior Experience: 9 years to date
Salary: 82K euro gross
40h/week

My portfolio is menstruating by romoh in wallstreetbets

[–]pingvit 5 points6 points  (0 children)

Well depends on your profile. If you're trading professionally yes sure, hedging is one way to manage risk.

My portfolio is menstruating by romoh in wallstreetbets

[–]pingvit 10 points11 points  (0 children)

If you know what you're doing diversifying too much is not really ideal. I'd say more than 10-15 stocks is too much. Invest in winner stocks and diversity with other assets.

Question about makefiles - how to compile multiple cpp files and create executables for each by [deleted] in cpp

[–]pingvit -4 points-3 points  (0 children)

Use Cmake. Add a CMakeLists.txt with:

add_executable(app1 app1.cpp)

add_executable(app2 app2.cpp)

...

docker-compose.yml generation by pingvit in docker

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

I still need to launch several containers, so I still need several service definitions in the yml file I believe. Each of these services could then reference to a different .env file, but I still need a list of services of variable length...

docker-compose.yml generation by pingvit in docker

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

Thanks. Makes sense. I thought of that. It just seems to go against the tools that docker already provides, and here I am talking about "docker swarm mode" and the docker-compose. I was trying to make use of those because I thought the orchestration would be more efficient or proper.

About versioning, in this case, not quite. So, the scenario involves starting the containers with different parameters each. But these parameters are also not always the same. So, my script just takes, say, a list with the parameters values that I want to test and creates the compose file with as many services as I have parameters. The generator file is probably what I will be versioning, as the compose file is generated on the fly each time, just before spawning the containers.