Spyke

Replies

unions

Comment on

Can someone be prounion and anti-communist?

You can indeed be pro-union and anti-comunist. As a matter of fact all the EU countries have strong pro-union laws and are not communist countries nor they want to be.

As an example, in Spain (where I'm at) if a company has more than 80 employees they MUST have a union. If they don't, the company will get a fine.

196

Comment on

Modern medicine is amazing rule

Fascism was not defeated in WW2 only Nazi Germany, Fascist Italy and Japan. Everyone forgot about fascist Spain and Portugal. What's more they even made deals with them. My country was left alone to suffer because the war was never against fascism.

cpp

Comment on

University is great

Having worked as a TA. These poor people have some pipeline running your code using something like GCC 4.8 or older and changing the pipeline is too much work.

Yeah, you can do many tricks with C++11 (and even more with C++17) and it's nicer to write. But, the algorithms should be the same which is what matters for the course.

docker

Comment on

Best practice for docker compose passwords?

Docker has a secrets feature where you can mount a file containing a password into the container. It is not recommended to use environment variables because anyone outside the container can read the environment variables of a process. Then, the idea is that your service should support reading the secret from a file. Most services support it and if they don't you should open an issue because that's the current accepted practice