FactChecker's latest activity
-
FactChecker replied to the thread Documentation of (only) source code.I have had occasions where I was looking at someone's old code, trying to figure it out so that I could modify it, drawing all sorts of... -
FactChecker replied to the thread Documentation of (only) source code.An aside: I always considered it to be a red flag if a programmer said that he wrote "self-documenting code" that didn't need comments... -
FactChecker reacted to Filip Larsen's post in the thread Documentation of (only) source code with
Like.
I am not sure if you say this because you think pseudo-code somehow magically can elucidate details that code in a modern language... -
FactChecker replied to the thread Documentation of (only) source code.Good question. Pseudocode can be as obscure as the real code, so that is not the right way to describe good documentation. There are... -
FactChecker replied to the thread Learning data structures and algorithms in different programming languages.I can't answer that question. I don't know enough about Python. If I were to guess, I would guess that it makes memory errors less... -
FactChecker reacted to jedishrfu's post in the thread Learning data structures and algorithms in different programming languages with
Informative.
Not to muddy the waters here but have you looked at Google’s golang programming language? https://go.dev/ It’s C for the internet age... -
FactChecker reacted to Filip Larsen's post in the thread Learning data structures and algorithms in different programming languages with
Like.
While the abstract concept of pointing to or referencing data (as opposed to work directly with the "value" of the data) is similar in C... -
FactChecker replied to the thread Learning data structures and algorithms in different programming languages.Good question. OOP helps to facilitate memory management. For the time being, you can ignore other features of OOP if you want to. Keep... -
FactChecker replied to the thread Learning data structures and algorithms in different programming languages.You could use pointers in C++ the same way as in C, but that would miss out on some very important advantages of C++ and OOP. Suppose... -
FactChecker reacted to jedishrfu's post in the thread Learning data structures and algorithms in different programming languages with
Like.
No. While it appears that C/C++ is like that, you can't just compile and run when switching from a Unix system to a Windows system... -
FactChecker replied to the thread Learning data structures and algorithms in different programming languages.The series of books by Donald Knuth, "The Art of Computer Programming" were not "had to learn", but were considered standard classics to... -
FactChecker reacted to jedishrfu's post in the thread Learning data structures and algorithms in different programming languages with
Like.
I think he means code and indentation via spaces or tabs. -
FactChecker reacted to jedishrfu's post in the thread Learning data structures and algorithms in different programming languages with
Like.
It's not about learning and writing in multiple languages. It's about needing a script written by someone else in another language, like...