Questions tagged [ide]
IDEs (Integrated Development Environment) are computer programs that facilitate efficient software development by providing features beyond those of a simple text editor.
141 questions
1 vote
3 answers
308 views
Considering IDE and text editor features when choosing a coding style
Recently, I had a debate with one of my friends on using type inference in C# (var keyword). His argument was that we should stick to using the explicit type names because "even with the ...
0 votes
1 answer
370 views
Effective way to develop software on two machines (PC and Laptop) [duplicate]
When writing code on a desktop pc as well as on a laptop or other computer, is there a general recommended strategy for being able to keep the same environments set up on both machines? I use Git ...
2 votes
0 answers
354 views
How to provide clang-format config for IDE and build system of multiple projects?
We have several C++ projects that use clang-format and clang-tidy and other similar tools. Currently the config files for these tools are stored in each project's Git repository. Now I'm trying to put ...
-3 votes
1 answer
258 views
Replacement for Progress/OpenEdge environment [closed]
I've recently joined a firm, where we are working with Progress 4GL from OpenEdge, release 11.6. As I have quite some experience in other programming environment, I'm really surprised by the extremely ...
0 votes
3 answers
354 views
Is relying on an IDE for code readability acceptable
During my years developing software I have most of the times tried to improve the readability of my code. As one example, I often try not to use boolean flag parameters of methods and I try to ...
-2 votes
1 answer
379 views
Packages with only __init__.py - Possible issues?
Considering a Python Project structure such as the following, where there are "empty" packages with __init__ files simply pulling code from the lib folder: . ├── foo │ ├── fred │ │ └── __init__....
1 vote
1 answer
184 views
How can I make sure my PHP code is compatible with a newer version
I have a bunch of PHP 5.6 code that I would like to get up to 7.2. My biggest concern was the change that causes an error when you call a function without enough parameters. Previously, this was a ...
5 votes
1 answer
2k views
When writing a Qt application is good practice to ALWAYS prefer Qt function implementations, data types, and classes when they are available?
I'm just starting out with Qt and I really want to try and keep my application as separated from Qt as possible in case I decide to use a different toolset later, but at the same time don't want to ...