Skip to content

Commit 32cc9eb

Browse files
committed
fixed ide vs. IDE glossary entry
1 parent 7bd9b06 commit 32cc9eb

File tree

12 files changed

+34
-34
lines changed

12 files changed

+34
-34
lines changed

text/main/basics/gettingStarted/gettingStarted.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
You want an editor where you can also directly execute and test your programs.
1313
In software development, you often work with a \pgls{vcs} like \git.
1414
You want to do that convenient from your editor.
15-
Such an editor, which integrates many of the common tasks that occur during programming, is called an \pgls{IDE}.
16-
In this book, we will use the \pycharm\ \pgls{IDE}~\cite{VHN2023HOADWP,Y2022PPADT}.
15+
Such an editor, which integrates many of the common tasks that occur during programming, is called an \pgls{ide}.
16+
In this book, we will use the \pycharm\ \pgls{ide}~\cite{VHN2023HOADWP,Y2022PPADT}.
1717
If you do not yet have \pycharm\ installed, then you can work through the setup instructions outlined in \cref{sec:installingPyCharm}.
1818

1919
Before we get into these necessary installation and setup steps that we need to really learn programming, we face a small problem:

text/main/basics/gettingStarted/installingPyCharm/installingPyCharm.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Well, it is enough for just running \python\ programs.
66
But it is not enough if you want to develop software efficiently.
77
Are you going to write programs in a simple text editor like a caveperson?
8-
No, of course not, you need an \pgls{IDE}, a program which allows you to do multiple of the necessary tasks involved in the software development process under one convenient user interface.
8+
No, of course not, you need an \pgls{ide}, a program which allows you to do multiple of the necessary tasks involved in the software development process under one convenient user interface.
99
For this book, I recommend using \pycharm, whose community edition is freely available.
1010
The installation guide for \pycharm\ can be found at \url{https://www.jetbrains.com/help/pycharm/installation-guide.html}.%
1111
%

text/main/basics/gettingStarted/installingPyCharm/installingPyCharmWindows/installingPyCharmWindows.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
As \cref{fig:installingPyCharmWindows09installation,fig:installingPyCharmWindows10installation,fig:installingPyCharmWindows11installation} show, the installation setup process is more or less automated, we just need to click \keys{Next} here and there and finally click \keys{Install}~(\cref{fig:installingPyCharmWindows12installation}).
157157
After the installation completes, we run \pycharm\ for the first time.
158158
Now we need to agree to the user agreement~(\cref{fig:installingPyCharmWindows16running}) and should probably choose that we do not with to send any information about our \pycharm\ usage out~(\cref{fig:installingPyCharmWindows17running}).
159-
Finally, as sketched in \cref{fig:installingPyCharmWindows18running}, we have a running and ready \pycharm\ \pgls{IDE}.%
159+
Finally, as sketched in \cref{fig:installingPyCharmWindows18running}, we have a running and ready \pycharm\ \pgls{ide}.%
160160
%
161161
\FloatBarrier%
162162
\endhsection%

text/main/basics/gettingStarted/pythonInTheTerminal/pythonInTheTerminal.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
%
125125
\begin{enumerate}%
126126
%
127-
\item We can enter the program into a \python\ file in the \pycharm\ \pgls{IDE} and then run it from there. %
127+
\item We can enter the program into a \python\ file in the \pycharm\ \pgls{ide} and then run it from there. %
128128
We just did this in the previous section and illustrated it in \cref{fig:veryFirstProgramC}.%
129129
%
130130
\item Actually, we can also write a \python\ program with a normal text editor. %

text/main/basics/gettingStarted/summary/summary.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
\hsection{Summary}%
22
%
33
In this introductory section, we have performed the very first steps into the domain of \python\ programming.
4-
We have now a computer where both \python\ and the \pycharm\ \pgls{IDE} are installed.
4+
We have now a computer where both \python\ and the \pycharm\ \pgls{ide} are installed.
55
We can create program files and we can execute them in different ways.
66
We also obtained the set of example programs that will later be used in this book.
77
We are now ready to learn how to program.%

text/main/basics/simpleDataTypesAndOperations/introduction/introduction.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
\hsection{Introduction}%
22
%
3-
We now know how to create and run \python\ programs, both in the \pgls{IDE} and \pgls{terminal}.
3+
We now know how to create and run \python\ programs, both in the \pgls{ide} and \pgls{terminal}.
44
We have also already learned our first two \python\ commands:%
55
%
66
\begin{itemize}%

text/main/basics/variables/errorsInIde/errorsInIde.tex

+18-18
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
\centering%
99
%
1010
\subfloat[][%
11-
We run the program \textil{assignment_wrong.py} given in \cref{lst:variables:assignment_wrong} in the \pycharm\ \pgls{IDE} by clicking on the \pycharmRun\ button or by pressing~\keys{\shift+F10}.%
11+
We run the program \textil{assignment_wrong.py} given in \cref{lst:variables:assignment_wrong} in the \pycharm\ \pgls{ide} by clicking on the \pycharmRun\ button or by pressing~\keys{\shift+F10}.%
1212
\label{fig:errorsInIde01runProgram}%
1313
]{\tightbox{\includegraphics[width=0.9\linewidth]{\currentDir/errorsInIde01runProgram}}}%
1414
%
@@ -32,7 +32,7 @@
3232
\label{fig:errorsInIde03underlined}%
3333
]{\tightbox{\includegraphics[width=0.9\linewidth]{\currentDir/errorsInIde03underlined}}}%
3434
%
35-
\caption{How the \pgls{IDE} can help us finding errors.}%
35+
\caption{How the \pgls{ide} can help us finding errors.}%
3636
\label{fig:errorsInIdeA}%
3737
\end{figure}%
3838
%
@@ -41,7 +41,7 @@
4141
\centering%
4242
%
4343
\subfloat[][%
44-
The \pgls{IDE} also informs us that something is wrong by displaying the small red~\pycharmErrorsSymbol~icon in the top-right corner. %
44+
The \pgls{ide} also informs us that something is wrong by displaying the small red~\pycharmErrorsSymbol~icon in the top-right corner. %
4545
This is the \emph{third} way to find errors. %
4646
We click on it\dots%
4747
\label{fig:errorsInIde04errors}%
@@ -64,7 +64,7 @@
6464
\label{fig:errorsInIde06errorsListToLine}%
6565
]{\tightbox{\includegraphics[width=0.9\linewidth]{\currentDir/errorsInIde06errorsListToLine}}}%
6666
%
67-
\caption{How the \pgls{IDE} can help us finding errors.}%
67+
\caption{How the \pgls{ide} can help us finding errors.}%
6868
\label{fig:errorsInIdeB}%
6969
\end{figure}%
7070
%
@@ -73,7 +73,7 @@
7373
\centering%
7474
%
7575
\subfloat[][%
76-
The \emph{fourth} way in which the \pycharm\ \pgls{IDE} can help us to discover errors are small red marks at the right-hand side. %
76+
The \emph{fourth} way in which the \pycharm\ \pgls{ide} can help us to discover errors are small red marks at the right-hand side. %
7777
Holding the mouse cursor over these lines will open a small view with the suggested error message.%
7878
\label{fig:errorsInIde07errorMark}%
7979
]{\tightbox{\includegraphics[width=0.9\linewidth]{\currentDir/errorsInIde07errorMark}}}%
@@ -92,29 +92,29 @@
9292
\label{fig:errorsInIde09sidebarToView}%
9393
]{\tightbox{\includegraphics[width=0.9\linewidth]{\currentDir/errorsInIde09sidebarToView}}}%
9494
%
95-
\caption{How the \pgls{IDE} can help us finding errors.}%
95+
\caption{How the \pgls{ide} can help us finding errors.}%
9696
\label{fig:errorsInIdeC}%
9797
\end{figure}%
9898
%
99-
Before we depart from \pycharm\ screenshots, however, we will visit one absolutely crucial functionality that modern \pglspl{IDE} provide:
99+
Before we depart from \pycharm\ screenshots, however, we will visit one absolutely crucial functionality that modern \pglspl{ide} provide:
100100
They help us to find errors in the code.
101101
Errors are common.
102102
They happen all the time.
103103
Every programmer sometimes makes a typo, accidentally switches the order of parameters of a function, stores a \pythonil{float} in an \pythonil{int} variable, and so on.
104104
Some errors are obvious and easy to fix.
105105
Some require more serious debugging (see \cref{sec:dunder:debugging}).
106-
In many cases, however, our \pgls{IDE} can already show us what and where the mistake happened.
106+
In many cases, however, our \pgls{ide} can already show us what and where the mistake happened.
107107

108108
In \cref{lst:variables:assignment_wrong}, we prepared program \textil{assignment_wrong.py}, a variant of \textil{assignment.py}~(\cref{lst:variables:assignment}) with an error.
109109
For the sake of the example, let us assume that the programmer made a type in line~12 of the program:
110110
They misspelled \pythonil{int_var} and \pythonil{intvar}.
111111
Executing the program with the error leads to the output given in \cref{exec:variables:assignment_wrong}.
112112

113113
The questions now are:
114-
How can we see this same error in our \pycharm\ \pgls{IDE}?
114+
How can we see this same error in our \pycharm\ \pgls{ide}?
115115
Could we have found this error even without executing the program?
116116

117-
To answer these questions, we open the program \textil{assignment_wrong.py} given in \cref{lst:variables:assignment_wrong} in the \pycharm\ \pgls{IDE}.
117+
To answer these questions, we open the program \textil{assignment_wrong.py} given in \cref{lst:variables:assignment_wrong} in the \pycharm\ \pgls{ide}.
118118
We execute this program manually by clicking on the \pycharmRun\ button or by pressing~\keys{\shift+F10} in \cref{fig:errorsInIde01runProgram}.
119119
As you can see, the output in the run window is the same as given in \cref{exec:variables:assignment_wrong}~(\cref{fig:errorsInIde02exception}).
120120
Reading this output is the \emph{first} way to find out what went wrong.
@@ -141,41 +141,41 @@
141141
This should have told us already that something is fishy without the need to even run the program in the first place.%
142142
%
143143
\bestPractice{redUnderline}{%
144-
When writing code, we should always check whether the \pgls{IDE} notifies us about potential errors. %
144+
When writing code, we should always check whether the \pgls{ide} notifies us about potential errors. %
145145
In the case of \pycharm, these are often underlined in red or yellow color. %
146146
We should always check all such marks!%
147147
}%
148148
%
149-
So we already know two ways in which we can find errors in our code with the help of our \pgls{IDE}.
149+
So we already know two ways in which we can find errors in our code with the help of our \pgls{ide}.
150150
But there are even more ways.
151151

152-
The \pgls{IDE} also informs us that something is wrong by displaying the small red~\pycharmErrorsSymbol~icon in the top-right corner, as shown in \cref{fig:errorsInIde04errors}.
152+
The \pgls{ide} also informs us that something is wrong by displaying the small red~\pycharmErrorsSymbol~icon in the top-right corner, as shown in \cref{fig:errorsInIde04errors}.
153153
Clicking on this symbol is the third way to find errors.
154154
This will take us to the list of potential errors that it has detected in \cref{fig:errorsInIde05errorsList}.
155155
Here, \pycharm\ tells us that there is an \emph{\inQuotes{Unresolved reference \inSQuotes{intvar}}} at line~12 of the file.
156156
We can also click on that note, and it takes us again to the dodgy line in \cref{fig:errorsInIde06errorsListToLine}
157157

158-
The fourth method in which the \pycharm\ \pgls{IDE} can help us to discover errors are small red marks at the right-hand side of our editor window, shown in \cref{fig:errorsInIde07errorMark}.
158+
The fourth method in which the \pycharm\ \pgls{ide} can help us to discover errors are small red marks at the right-hand side of our editor window, shown in \cref{fig:errorsInIde07errorMark}.
159159
Holding the mouse cursor over these lines will open a small view with the suggested error message.
160160

161161
The fifth way to get a list of potential errors in \pycharm\ is to click on the \pycharmErrorsButton~button in the side menu on the left-hand side or to press~\keys{\Alt+6}, as illustrated in \cref{fig:errorsInIde08sidebar}.
162162
This again takes us to the list of potential errors in \cref{fig:errorsInIde09sidebarToView}.
163163
%
164164
\usefulTool{ideForErrors}{%
165-
The \pgls{IDE} and the error messages (\pythonilIdx{Exception} \pglspl{stackTrace}) are your most important tools to find errors. %
165+
The \pgls{ide} and the error messages (\pythonilIdx{Exception} \pglspl{stackTrace}) are your most important tools to find errors. %
166166
Read error messages. %
167-
If your \pgls{IDE} -- regardless whether it is \pycharm\ or something else -- annotates your code with some marks, then you should check every single one of them.%
167+
If your \pgls{ide} -- regardless whether it is \pycharm\ or something else -- annotates your code with some marks, then you should check every single one of them.%
168168
}%
169169
%
170170
These tools make it much much easier to find errors.
171171
You can guess the importance of such features also by how many different ways \pycharm\ implements to get you to click and investigate its list of proposed errors and warnings.
172-
As mentioned in \cref{bp:readErrorMessage,bp:redUnderline}, using the \pgls{IDE} features for error discovery and detection is incredibly important.
172+
As mentioned in \cref{bp:readErrorMessage,bp:redUnderline}, using the \pgls{ide} features for error discovery and detection is incredibly important.
173173
Even if your program executes as expected, there still might be hidden errors in the code.
174174
Sometimes, you cannot easily tell whether the output of a program is correct.
175175
And the output you see might actually be wrong.
176176
Sometimes, there might be some incorrect instructions in your program that just weren't used in your last execution.
177177
So even correct program output does not guarantee that the program itself is correct.
178-
Therefore, always checking each and every piece of code that your \pgls{IDE} marks as dodgy is very important.
178+
Therefore, always checking each and every piece of code that your \pgls{ide} marks as dodgy is very important.
179179
Make sure that you full understand all error and warning messages.
180180

181181
Warnings can be important, too.

text/main/basics/variables/typesAndTypeHints/typesAndTypeHints.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,10 @@
245245
\gitOutputTool{\programmingWithPythonCodeRepo}{.}{_scripts_/mypy.sh variables assignment_wrong.py}{variables:assignment_wrong:mypy}{%
246246
The results of static type checking the program \textil{assignment_wrong.py} with \mypy\ given in \cref{lst:variables:assignment_wrong}.}%
247247
%
248-
For the sake of completeness, we also apply \mypy\ to the program \textil{assignment_wrong} given in \cref{lst:variables:assignment_wrong} that we used to illustrate the use of the \pycharm\ \pgls{IDE} in finding bugs.
248+
For the sake of completeness, we also apply \mypy\ to the program \textil{assignment_wrong} given in \cref{lst:variables:assignment_wrong} that we used to illustrate the use of the \pycharm\ \pgls{ide} in finding bugs.
249249
The output given in \cref{exec:variables:assignment_wrong:mypy} informs us about the same error we encountered back in \cref{sec:errorsInIde}:
250250
\emph{\inQuotes{Name \inQuotes{intvar} is not defined.}}
251-
With the \pgls{IDE} and \mypy, we now have independent tools that can help us to discover errors in our code.
251+
With the \pgls{ide} and \mypy, we now have independent tools that can help us to discover errors in our code.
252252
The more such tools we have \emph{and actively use}, the more likely it is that we can produce error-free programs.
253253

254254
You may ask why we emphasize that \pglspl{typeHint} are important and good for a programming language where they are originally not part of.

text/main/classes/dunder/dunder.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@
717717
With a tool called \debugger\ which ships with \python\ and \pycharm.%
718718
%
719719
\usefulTool{debugger}{%
720-
A \debugger\ is a tool that ships with many programming languages and \pglspl{IDE}. %
720+
A \debugger\ is a tool that ships with many programming languages and \pglspl{ide}. %
721721
It allows you to execute a program step-by-step while observing the current values of variables. %
722722
This way, you can find errors in the code more easily~\cite{W2024PME,A2002D,R2007PPBPDTAM}. %
723723
A comprehensive example on how to use the \debugger\ in \pycharm\ is given in~\cref{sec:dunder:debugging}.%
@@ -780,7 +780,7 @@
780780

781781
On the left side of our code file, there is a column with the line numbers.
782782
We can left-click on a line to place a \pgls{breakpoint} there.
783-
A \pgls{breakpoint} is a mark in the \pgls{IDE} at which we later want the program execution to pause.
783+
A \pgls{breakpoint} is a mark in the \pgls{ide} at which we later want the program execution to pause.
784784
We want our program to pause right at the beginning of \pythonil{decimal_str}, so be place the \pgls{breakpoint} there~(\cref{fig:dunder:debug02}).
785785
The \pgls{breakpoint} is shown as a red ball over the line number.
786786

text/main/ecosystem/git/gitClone/gitClonePycharm/gitClonePycharm.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@
370370

371371
Indeed: If we look at the \textil{.venv} directory in the directory view, we cannot find the \psycopg\ package.
372372
Currently, this directory only contains the \pip\ package in \cref{fig:gitClonePycharm17packageMissing}.
373-
A long time ago, back in \cref{sec:errorsInIde}, we mentioned that all warnings and errors that our development \pgls{IDE} reports to us are important and should be fixed (by us).
373+
A long time ago, back in \cref{sec:errorsInIde}, we mentioned that all warnings and errors that our development \pgls{ide} reports to us are important and should be fixed (by us).
374374
Clearly, a missing library is important, because without that package, the code we just downloaded would be useless and could not run.
375375

376376
To remedy this issue, we click on the requirements warning in \cref{fig:gitClonePycharm18requirementsWarning}.

text/main/ecosystem/packages/venvAndPycharm/venvAndPycharm.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
\label{fig:venvPycharmB}%
7777
\end{figure}%
7878
%
79-
The \pgls{IDE} \pycharm\ also supports using \pglspl{virtualEnvironment} and \textil{requirements.txt} files.
79+
The \pgls{ide} \pycharm\ also supports using \pglspl{virtualEnvironment} and \textil{requirements.txt} files.
8080
Let us here demonstrate this on the example program that requires \numpy\ which was given as \cref{lst:packages:numpy_user} and \textil{requirements.txt} file given in \cref{lst:packages:requirementstxt}.
8181
In \cref{fig:venvPycharmA}, we work through the steps to create and manage a project with a \pgls{virtualEnvironment} in \pycharm\ on their basis.
8282
(A complete example on how to copy a source code repository from \git\ or \github\ and how to set up a \pgls{virtualEnvironment} for its dependencies is given in \cref{sec:gitClonePycharm}.)
@@ -125,11 +125,11 @@
125125
However, it must be understood that the support for \pglspl{virtualEnvironment} and requirements files in \pycharm\ is for \emph{software development}.
126126
If you want to actually use the software you have developed, you should \emph{always} use the command line and \pglspl{terminal}, as discussed in \cref{sec:pipAndVenv}.
127127
\pycharm\ is not a runtime environment for the deployment of productive code.
128-
It is an \acrfull{IDE} for developing programs.%
128+
It is an \acrfull{ide} for developing programs.%
129129
%
130130
\bestPractice{noPycharmForProductive}{%
131131
\pycharm\ must \textbf{never} be used for running an application in a productive setting. %
132-
It is \emph{only} to be used as \pgls{IDE} for software development. %
132+
It is \emph{only} to be used as \pgls{ide} for software development. %
133133
For actually executing programs, always use a \pglspl{virtualEnvironment} in the \pgls{terminal} as introduced in \cref{sec:pipAndVenv}. %
134134
See also \cref{bp:runningProgram}.%
135135
}%

0 commit comments

Comments
 (0)