Earlier quoted context omitted.
Sorry. https://quoteinvestigator.com/2010/05/01/misbehave/
But a similar quote about the young is completely real -- just not by Socrates (who after all wrote nothing), but rather by Aristotle -- Book II, Part 12 of his "Rhetoric" has him complaining about young people -- it's a long passage, but some gems "They have exalted notions, because they have not yet been humbled by life or learnt its necessary limitations; moreover, their hopeful disposition makes them think themse…
Real Programmers Don't Use Pascal (1982)
61–70 of 94 posts
Re: Real Programmers Don't Use Pascal (1982)
#62"Real programmers aren't afraid of GOTO"
GOTO is still a legit way to cleanly break out of nested loops. I cringe whenever I hear normie programmers lament on how blanketly bad it is.
Re: Real Programmers Don't Use Pascal (1982)
#63Re: Real Programmers Don't Use Pascal (1982)
#64> It was largely due to the efforts of thousands of Real Programmers working for NASA that our boys got to the moon and back before the Russkies. Keep in mind that despite Real Programmers being referred to as "he" throughout the article, the Real Programmer who headed that effort was a "she" - https://en.wikipedia.org/wiki/Margaret_Hamilton_(scientist)
Margaret Hamilton did not head the effort. She was a manager on the project, but she didn’t join until relatively late. At the time of Apollo 11 she was in charge of the Command Module’s software ( https://www.doneyles.com/LM/ORG/index.html ), but most of the work had been done by the time she assumed that position. She later became head of the whole software department, and had a lot of responsibility for modificati…
Re: Real Programmers Don't Use Pascal (1982)
#65Re: Real Programmers Don't Use Pascal (1982)
#66The popularity of this essay in the 1980s poisoned so many minds and is one of the reasons we have to deal with so much bullshit today.
If the people who read this essay don't get that it's a joke after at most the first sentence, you have bigger problems than that.
Re: Real Programmers Don't Use Pascal (1982)
#67Because Pascal did not have good support for strings and variable-length arrays, TeX manages all its own memory (allocating and freeing from a single giant Pascal array called “mem”); because Pascal did not have “break” or “return” he implemented those features himself with a preprocessor and a certain disciplined use of goto; because Pascal required certain things (type declarations, labels) to be all in the same place and other things to be scattered apart, he wrote a preprocessor to rearrange sections of a program in any order; because Pascal compilers varied in their support for features like pointers and nested procedures, TeX uses only a very restricted subset of Pascal.
Real programmers do whatever it takes.
Re: Real Programmers Don't Use Pascal (1982)
#68http://www.mit.edu/~xela/tao.html
"The Silent Void
Thus spake the Master Programmer:
When you have learned to snatch the error code from the trap frame, it will be time for you to leave."
Re: Real Programmers Don't Use Pascal (1982)
#69Re: Real Programmers Don't Use Pascal (1982)
#70Donald Knuth wrote TeX in Pascal. I think he chose it because it was the language most widely available at the time in universities where people wanted to use TeX; many were already using Pascal for teaching. (The first version had been written in SAIL, because it was the language available at the Stanford AI Lab where he had computer access.) Because Pascal did not have good support for strings and variable-length a…