Competitive/Collaborative Programming Class

ICPC Computer Programming Contest Prep

Problem Solving in Computer Science

Spring 2026 -- CSC 2700 Section 01
1218 Patrick Taylor Hall, 6:30 PM - 8:20 PM



Class Home




The real nightmare, worse than the one in which the Big Machine wants to kill you, is the one in which it sees you as irrelevant, or not even as a discrete thing to know.
--Benjamin H Bratton
Good programmers write code that humans can understand.
--Martin Fowler
Managers of programming projects aren’t always aware that certain programming issues are matters of religion. If you’re a manager and you try to require compliance with certain programming practices, you’re inviting your programmers’ ire. Here’s a list of religious issues:
■ Programming language
■ Indentation style
■ Placing of braces
■ Choice of IDE
■ Commenting style
■ Efficiency vs. readability tradeoffs
■ Choice of methodology—for example, Scrum vs. Extreme Programming vs. evolutionary delivery ■ Programming utilities
■ Naming conventions
■ Use of gotos
■ Use of global variables
■ Measurements, especially productivity measures such as lines of code per day
--Steve McConnell
The three principal virtues of a programmer are Laziness, Impatience, and Hubris. See the Camel Book for why.
--perldoc perl
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live
--John Woods
'Martyrdom' is the only way a person can become famous without ability.
--George Bernard Shaw
But while you can always write 'spaghetti code' in a procedural language, object-oriented languages used poorly can add meatballs to your spaghetti.
--Andrew Hunt
Think twice, code once.
--Waseem Latif
Premature optimization is the root of all evil.
--Donald Knuth
Everyday life is like programming, I guess. If you love something you can put beauty into it.
--Donald Knuth
Walking on water and developing software from a specification are easy if both are frozen.
--Edward V. Berard
The big optimizations come from refining the high-level design, not the individual routines.
--Steve McConnell
People who are really serious about software should make their own hardware
--Alan Kay
The best way to predict the future is to invent it
--Alan Kay
Programming isn't about what you know; it's about what you can figure out.
--Chris Pine
When in doubt, do something.
--Harry Chapin
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
What kind of programmer is so divorced from reality that she thinks she'll get complex software right the first time?
--James Alan Gardner
What is a university/college when the students lose interest?
--Isaac Traxler
First solve the problem. Then, write the code.
--Waseem Latif
Einstein repeatedly argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer.
--Frederick P. Brooks Jr.
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
The issue of finding the best possible answer or achieving maximum efficiency usually arises in industry only after serious performance or legal troubles.
--Steven S. Skiena
Simple things should be simple, complex things should be possible.
--Alan Kay
Delivering good software today is often better than perfect software tomorrow, so finish things and ship.
--David Thomas
Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
--Martin Fowler
Object-oriented programming offers a sustainable way to write spaghetti code. It lets you accrete programs as a series of patches.
--Paul Graham