vote up 17 vote down star
8

In a sentence or two - what is programming?

flag
1  
I know I'm doing it right when a program comes up with a different answer than I expected, and its answer is right. – Andrew Grimm Apr 10 at 5:52
show 10 more comments

closed as not a real question by Rich B, Samuel, Sam Hasler, Welbog, sth Apr 14 at 18:47

32 Answers

1 2 next
vote up 37 vote down

convincing a computer to do your bidding

link|flag
show 4 more comments
vote up 18 vote down

The process of putting bugs into software.

link|flag
1  
...and naming them features. – sharptooth Apr 10 at 12:42
show 1 more comment
vote up 11 vote down

It's the art of creating solutions to problems that didn't exist before this kind of art came to life.

link|flag
vote up 7 vote down

From Wikipedia: "Computer programming (often shortened to programming or coding) is the process of writing, testing, debugging/troubleshooting, and maintaining the source code of computer programs."


My thoughts: Effective computer programming is trying to convince a very stupid machine to behave in a way that appears very intelligent.

link|flag
vote up 6 vote down

Proving yourself worthy to be kept alive when the machine overlords eventually take over.

link|flag
3  
You must be kidding. When the machines take over, the programmers will be the first to go. They'll keep mechanics, mechanical engineers, and EEs around, but they won't want anyone mucking around in their brains the way SW people do :D – keysersoze Apr 10 at 23:30
show 1 more comment
vote up 5 vote down

It is the art of writing exactly what you mean, not what you think you mean.

link|flag
vote up 5 vote down

Teaching a 2 year old to tie his shoelaces. Over the phone.

link|flag
vote up 3 vote down

The use of human-readable code to manipulate the functions of a computer.

link|flag
vote up 3 vote down

Making the computer useful for a human being.

link|flag
vote up 3 vote down

Formalized Thinking.

link|flag
vote up 3 vote down

Enlightened laziness.

link|flag
vote up 2 vote down

programming is defining logic in a executable way.

link|flag
vote up 2 vote down

Programming is coming up with a concrete list of instructions which solves a problem, or more typically a class of problems.

link|flag
vote up 2 vote down

Reimplementing each others' applications before the previous platforms and tools become obsolete.

link|flag
vote up 2 vote down

The process of making computers sane while driving programmers insane.

link|flag
vote up 1 vote down

Making a tireless machine do repetitive tasks very quickly and reliably.

link|flag
vote up 1 vote down

A machine does what you ask it to do and not what you want it to; programming is a feeble attempt to bridge this gap.

link|flag
vote up 1 vote down

How about two words, Solving problems.

link|flag
vote up 1 vote down

A miserable little pile of secrets!

link|flag
vote up 1 vote down

Programming a computer is like conversing with a golem: feeding it a writ with step-by-step instructions which are executed by a thing with a semblance to life, but never quite life-like. The golem has no mind, so every instruction is executed to the letter even if it contradicts the author’s true intentions.

link|flag
vote up 1 vote down

programming is feeling unappreciated most of the time.

link|flag
vote up 0 vote down

Moving ones and zeros around and translating ones and zeros to different sequences. We only do it at different levels with different instructions.

link|flag
vote up 0 vote down

Programming is also about modelling real world problems in a computer so as to enable us to study the problems and try to find ways to solve them.

link|flag
vote up 0 vote down

Programming is letting a computer do what it does but in a way we want.

link|flag
vote up 0 vote down

Giving the computer explicit orders on what to do.

link|flag
vote up 0 vote down

shaping a world anew, together with its rules

link|flag
vote up 0 vote down

Solving a problem by dividing into two parts: trivial (done by computers) and non trivial (done by humans). For example coming up with the algorithm to solve a problem is non trivial (we do it), while executing the algorithm n times is trivial (done by the computer).

link|flag
vote up 0 vote down

Programming is managing the (very large) conceptual gap between the behavior of a computer at runtime (i.e. electronic activity) and a user's experience of the computer (i.e. somebody saying "that works!"). We call it "programming" because we use the powerful abstraction of a "program" to make our lives easier - programs sit in the middle of this conceptual gap and, with judicious selection of tools (languages, compilers) and design (frameworks, patterns) narrow the conceptual gap on either side of them.

link|flag
vote up 0 vote down

telling a computer what to do

link|flag
vote up 0 vote down

Programming is solving problems for the lowest possible cost to avoid making yourself redundant whilst further reducing the value of work currently performed by other low paid people.

link|flag
1 2 next

Not the answer you're looking for? Browse other questions tagged or ask your own question.