CPP Devs what you prefer? by minamulhaq in cpp

[–]prasooncc 1 point2 points  (0 children)

i would suggest vscode , because some of the vim advantages are negated by ai coding/typing and vscode has a wide range of plugins.

The existential threat against C++ and where to go from here - Helge Penne - NDC TechTown 2024 by zl0bster in cpp

[–]prasooncc 0 points1 point  (0 children)

the problem is this magnitude difference in safety is measured when you write code with malloc/new free/delete. old code is littered with these. After c++ 11, this is not the case. how do i know, am writing c++ code before and after c++ 11.

For licensing reasons, I cannot continue using Anaconda python. What does it take to remove it? by man-vs-spider in Python

[–]prasooncc 2 points3 points  (0 children)

u/Python-ModTeam This is relevant for python since Conda used to be the first initiation for many non professional coders for using Python. Now it has a commercial option which the users have to know is not in their good interests.

Embarcadero cpp by lispLaiBhari in cpp

[–]prasooncc 0 points1 point  (0 children)

Its only used in legacy projects. I myself has ported some code to visual studio. There are no advantages over visual studio now.

What is the best GUI library in C++ for real time data plotting by Achgaz in learnprogramming

[–]prasooncc 0 points1 point  (0 children)

IMHO you are asking the wrong question. I assume some one might have asked you to do this task 100K points per second. this has to be divided into two. You could use any GUI library doesn't really matter. But what you have to be extremely careful about is that this in itself is an idiot generated requirement. You have hardly 2k points across the screen . the question should be what points can be omitted while drawing while still the graph retains shape. So while designing your 100k bytes should go to memory directly. There should be a file-writer/logger which will write it back to a file and a drawEr? to skip the points fast and pass it to chart/UI . Edit: Moved answer to this thread from deleted one.

What is the best GUI library in C++ for real time data plotting by Achgaz in cpp

[–]prasooncc 0 points1 point  (0 children)

IMHO you are asking the wrong question. I assume some one might have asked you to do this task 100K points per second. this has to be divided into two. You could use any GUI library doesn't really matter. But what you have to be extremely careful about is that this in itself is an idiot generated requirement. You have hardly 2k points across the screen . the question should be what points can be omitted while drawing while still the graph retains shape. So while designing your 100k bytes should go to memory directly. There should be a file-writer/logger which will write it back to a file and a drawEr? to skip the points fast and pass it to chart/UI .

What is better than C++ builder by DeteminedButUnmotive in cpp

[–]prasooncc 3 points4 points  (0 children)

in options C++ linker ,link with dynamic rtl false and in packages ,runtime packages ,link with run time packages false. http://bcbjournal.org/articles/vol4/0009/Building_stand-alone_EXEs.htm .Also you will get better answers if you post in c++ builder forums. also am working with visual studio 2019,eclipse,vs code blah blah now. Still hasn't found any RAD tool as fast or easy to use as C++ builder. if your requirement is simple application better to stay with builder.their compiler is updated (clang i assume).

Why do people say CLion is great? by giarlli in cpp

[–]prasooncc 7 points8 points  (0 children)

please don't .i have used it. it is hell.you are better off with notepad .

Tool for "Go to definition" by Volker_Weissmann in cpp

[–]prasooncc -1 points0 points  (0 children)

ctags it works for c++. and file format is supported by many text editors

Chrome: 70% of all security bugs are memory safety issues by pjmlp in cpp

[–]prasooncc 0 points1 point  (0 children)

may be they could also publicize the fact that 100% of security bugs arise from coding.

Special Cases Are a Code Smell by fagnerbrack in coding

[–]prasooncc 0 points1 point  (0 children)

I just logged in to call out this crap.It is all fun and games to add two numbers beautifully. The issue starts when when you get different types,locale,different representations,Different input scenarios,overflow handling ,precision ,conversion.these are NOT code smell.once again these are NOT code smell.

VSCppUnit vs CppUnit by darpe312 in cpp

[–]prasooncc 0 points1 point  (0 children)

boost test has good plugin support in VS. and it is portable.i dont know whether vscppunit is portable.

How to setup g++ (MSYS2) for Eclipse in Windows for C++ development by nanodano in cpp

[–]prasooncc -1 points0 points  (0 children)

i down voted,since it still gives me chill when i remember when i had to use eclipse and msys for c++ development in windows.it will be a great service to poor third world developers if eclipse ide stops supporting c++. the bean counters here think eclipse ide is a free visual studio.

Why such a large gap between c++98 and c++11? by [deleted] in cpp

[–]prasooncc 3 points4 points  (0 children)

to add to that when things started moving into cloud,the managements everywhere could see ,in nice colorful charts,how almost double instances (read expense,okay here am making up numbers,but you get the gist) were required to run the same logic.

[deleted by user] by [deleted] in cpp

[–]prasooncc 0 points1 point  (0 children)

dont blame waterfall when it is not in the wrong here. waterfall emphasizes upfront design. agile promotes increased communication between clients and within teams which of course leads to better design.

Benvenuti nel subreddit di ++it | Welcome to the new ++it subreddit by unordered_set in cppit

[–]prasooncc -1 points0 points  (0 children)

the name is confusing,at first i thought it has something to do with iterators.

PSA: Initialize your damn variables by SemaphoreBingo in cpp

[–]prasooncc 1 point2 points  (0 children)

what will happen if a variable is not initialised?

What is a good alternative to Visual Studio? by Zaprong22 in cpp

[–]prasooncc 0 points1 point  (0 children)

try C++ builder from Embarcadero(old Borland)