Competitive/Collaborative Programming Class

ICPC Computer Programming Contest Prep

Problem Solving in Computer Science

Fall 2022 -- CSC 2700 Section 01 (1216 Patrick Taylor, 6:00 PM - 7:50 PM)



Class Home




The most important property of a program is whether it accomplishes the intention of its user.
--C.A.R. Hoare
Without requirements and design, programming is the art of adding bugs to an empty text file.
--Louis Srygley
Good programmers write code that humans can understand.
--Martin Fowler
Premature optimization is the root of all evil.
--Donald Knuth
Our consciousness is programmed. We see things a certain way from a young age - we're programmed to keep doing them that way. Then you have to spend adulthood learning how to overcome it, to read out the programs. Try to create. I want to tell people to create. Just start by creating your day. Then create your life.
--Prince
Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
--Martin Fowler
The most disastrous thing that you can ever learn is your first programming language.
--Alan Kay
A change in perspective is worth 80 IQ points
--Alan Kay
...I’m not saying simple code takes less time to write. You’d think it would since you end up with less total code, but a good solution isn’t an accretion of code, it’s a distillation of it.
--Robert Nystrom
How do you expect to succeed if you do not know the rules?
--Anonymous
What is a university/college when the students lose interest?
--Isaac Traxler
Progress is possible only if we train ourselves to think about programs without thinking of them as pieces of executable code.
--Edsger W. Dijkstra
When they first built the University of California at Irvine they just put the buildings in. They did not put any sidewalks, they just planted grass. The next year, they came back and put the sidewalks where the trails were in the grass. Perl is just that kind of language. It is not designed from first principles. Perl is those sidewalks in the grass.
--Larry Wall
The best way to predict the future is to invent it
--Alan Kay
A language that doesn't affect the way you think about programming is not worth knowing.
--Unix Fortune
When in doubt, do something.
--Harry Chapin
Walking on water and developing software from a specification are easy if both are frozen.
--Edward V. Berard
Along every step of our journey through life, our mind is being programmed. If we are not programming it ourselves, someone else is doing it to us.
--Joseph Rain
Some of the best programming is done on paper, really. Putting it into the computer is just a minor detail.
--Max Kanat-Alexander
How do you expect to succeed if you do not know the rules?
--Anonymous
The three principal virtues of a programmer are Laziness, Impatience, and Hubris. See the Camel Book for why.
--perldoc perl
Learning the art of programming, like most other disciplines, consists of first learning the rules and then learning when to break them.
--Joshua Bloch
So if an algorithm is an idealized recipe, a program is the detailed set of instructions for a cooking robot preparing a month of meals for an army while under enemy attack
--Kernighan Brian
Programming is the art of thinking really hard about how to avoid having to think really hard.
--unknown
First solve the problem. Then, write the code.
--Waseem Latif
The big optimizations come from refining the high-level design, not the individual routines.
--Steve McConnell