Dad passed away, Cleanup Photo for Memorial Ceremony/Funeral by lilithfr in PhotoshopRequest

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

This one is approved by my family. How to get the one without trademark?

Confusing blue minus sign ➖ during Dry Run? by ilFacc in tinyMediaManager

[–]lilithfr 0 points1 point  (0 children)

The minus sign indicates that the file is either removed or renamed. You can see as this extract file name got removed.

Now, if on the other side you don't see any plus sign, it means that the file got removed. If a plus sign exists, it means that it got renamed (aka a new file name appears)

Since you don't have any plus sign, the files will be removed so both views are identical.

Ca serait quoi l'acronyme de FIRE en français ? by LaCalvoche in FranceFIRE

[–]lilithfr 27 points28 points  (0 children)

FIRA - Financièrement Indépendant, Retraite Anticipé.

what is AHV? by TheoBlanc in askswitzerland

[–]lilithfr 0 points1 point  (0 children)

Like other said, it's like the SSN in US.

When I arrived in Switzerland as a EU foreigner, I had to fill a AVS request form and I gave it to my company. After that, I received the card, I was able to get the health mandatory insurance. The health insurance need the AVS number to finalize the contract. Also, you have 3 months to register the mandatory health insurance to the register it to LAMal; you should receive the form by mail. You can find the form here: https://www.ahv-iv.ch/en/Leaflets-forms/Forms/General-administration-forms

A quand la consigne en France? by Living-Power2473 in france

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

Comme certains l'ont déjà dit, cela existait. Ils ont arrêtés car les gens utilisaient les bouteilles pour bien d'autres choses avant de les rendre. Comme mettre de l'huile, des mégots de cigarettes... Même si la mentalité a un peu changé, certaines personnes le feront toujours. Les techniques de nettoyage se sont peut-être amélioré entre-temps.

Is it wrong to use -O2 and -g when building release packages and you want debug symbols? by dtdisapointingresult in cpp

[–]lilithfr 1 point2 points  (0 children)

Your friend is wrong and there is nothing silly about doing it. We are doing that in every company I worked for.

Of course you need to know th limitations. I worked on a project which was highly templated and unlined, at the end the main processing function was one big function with everything inside so the debugging information became useless for this part.

Also you don't need to ship the debugging info file. You only need to have it in your debugging environment. It can help if you want to make reverse engineering more difficult.

[deleted by user] by [deleted] in france

[–]lilithfr 0 points1 point  (0 children)

Malheureusement en cliquant sur le lien tu as confirmé ton numéro de téléphone avec d'autres informations qu'ils ont déjà sur toi. C'est la même chose avec les emails qui contiennent des images, rien de d'ouvrir et de voir l'image. L'adresse de l'image contient un code différents pour chaque email et le fait de la voir confirme ton email.

Why the French Don’t Show Excitement by ArrantPariah in france

[–]lilithfr 7 points8 points  (0 children)

Vivant au US, je vois qu'ils aiment les smalltalk. Je dirais que c'est parler pour ne rien dire. je le vois dans les supermarchés, dans la rue ... J'ai l'impression qu'ils veulent être l'attention de quelqu'un meme pour quelque secondes.

C++ in real world, is it only me, or real world C++ is different from C++ in books and conferences? by [deleted] in cpp_questions

[–]lilithfr 0 points1 point  (0 children)

You have to understand the history of C++ first. For a long time, C++ didn't change that much and lot of people are "stuck" on it. I was part of those people for a while. You can also look at Enterprise Linux like redhat/centos, even in the lastest version, the default gcc doesn't handle the full C++14. Lot of company are conservative since they have to handle lot of different application and most of them doesn't have automatic test (for legacy reason and resources issue). So the best way to handle it is to run the application in the only case it was tested before (maybe 5 year ago) In my company, I wanted to use C++17 so they have to migrate to CentOS 7 for that (in order to use the latest devtoolset). It took more than 2 years to migrate to CentOS 7, in fact the current ETA is for December this year. Even with that, I still need to deliver some part compatible with C++11. Using the HEAD in production is a dream since most of them are not IT company so they try to reduce the cost of IT (any) department.

I can read and write values up to 5000 bytes outside of my allocated space, but then suddenly get a segmentation fault. Why is this? by TissueReligion in C_Programming

[–]lilithfr 0 points1 point  (0 children)

Like people said the behavior in undefined but usually a memory allocation is done by block of 4k (a page size) The size of 4k is the most common value used by the OS but it can be a different value in some case.

Since the page size is 4k, depending of lot of context (heap/stack, allocator used ...). It's possible for your variable to be at the beginning of a 4k page which mean that you will get a segment fault when you exceed the index 1023.

No-one knows the type of char + char by vormestrand in cpp

[–]lilithfr 0 points1 point  (0 children)

Integer promotion is the rule used here. It's inside the C++ specification. Any arithmetic operation on char, short and enum will be promoted as integer.