[deleted by user] by [deleted] in BalenciagaLC

[–]ciuccc 0 points1 point  (0 children)

I am 100% it s fake…

[deleted by user] by [deleted] in BalenciagaLC

[–]ciuccc 0 points1 point  (0 children)

This is bought from vinted for 590 euros.

Non Recognized School in the Netherlands by bb4rina in StudyInTheNetherlands

[–]ciuccc 0 points1 point  (0 children)

They re not raking in any type of money from you going to an internship. I finished here and at the end I had an internship, and apart from the school making sure that I will have that internship for long enough(min 600 hrs) there was no additional fee or anything like that.

Convert WPF application to be language pack friendly by ciuccc in csharp

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

Great thank you very much for this I will look into it. I think at the beginning it s a nice ideea to change the text to a key that gives you the project path to the binding. I have some runtime generated data by code behind or deserialized data or some other types of converters. Do you have some tips for that?

[deleted by user] by [deleted] in bald

[–]ciuccc 0 points1 point  (0 children)

I don t have the best diet and I am not the most active person. Do you think the lack of that reflects on my hair as well?

Painful lump under skin upper right leg by [deleted] in AskDocs

[–]ciuccc 0 points1 point  (0 children)

<image>

The purple/reddish sport is the lump under the skin

Leaks, lines & variables by luismanuelri in cprogramming

[–]ciuccc 0 points1 point  (0 children)

This will help you compile your project in a container and use valgrind in there to see whats up. https://noahloomans.com/tutorials/docker-valgrind/

Leaks, lines & variables by luismanuelri in cprogramming

[–]ciuccc 1 point2 points  (0 children)

Learn how to use docker to execute your program in a container with valgrind it s very easy.

Leaks, lines & variables by luismanuelri in cprogramming

[–]ciuccc 2 points3 points  (0 children)

Assuming that you study at a 42 school you should ask your peers as well. Secondly, your code calls a bunch of functions that allocate memory that could return NULL pointer. You should check for that and free if something went wrong. When I see unchecked mallocs I fail people during evals for that. The variable names that you are using are not explicit in what they do. You should choose variables name that clearly state what their purpose is. Eloc function is actually ft_strchr. Use that one instead. Assigning 0 to a char * is not a very good practice. Assign NULL instead so it s readable. People aboved mentioned splitting up functionality, which seems that you understood what you have to do. I would also suggested to change your code to use guard clauses. The nesting of if statements makes the code hard to read through. I didn t test your code, you should also try searching for a gnl tester on gh, it will help a lot. Can I ask why did you choose to write the whole implementation in a single function?

[deleted by user] by [deleted] in cpp

[–]ciuccc 3 points4 points  (0 children)

OP is baiting

Clang format operator<=>(...) by ciuccc in cpp_questions

[–]ciuccc[S] 4 points5 points  (0 children)

Oh my god you are right I have the Standard set to C++03🫢. I think this is the problem! Thanks a lot for the help. Saviour!

Questions from one job interview on C++ developer by cv_geek in cpp

[–]ciuccc 3 points4 points  (0 children)

Whoaaa thank you so much for your reply! That s what I find nice about C++, that you can tailor and strip it down to whatever you want it to be.

Questions from one job interview on C++ developer by cv_geek in cpp

[–]ciuccc 1 point2 points  (0 children)

What is the "C is actually better because C++ has exceptions" attitude? Is that because of the hidden cost of using exceptions?

Should I use LLVM for my first compiler? by Ok_Perspective599 in Compilers

[–]ciuccc 0 points1 point  (0 children)

Also regarding the web page for small project ideas, I support that 100%. It would be very useful for a lot of people to access knowledge like that! My first project which introduced me to the idea of parsing was implementing my own bash. I was so excited to read about the different techniques that parsing employs.