vote up 17 vote down star
14

For some reason, I notice that I end up using a lot of finite state machines at work. In particular, when I'm implementing a custom TCP/serial protocol, they are very helpful and produce a very robust output (in my opinion).

My days in CS classes are long behind me. As such my recollection of the stuff I learned there is fuzzy. I was curious if there are other concepts people are leveraging that I've forgotten about.

There is no "right" answer. Vote up the answers containing the concept you use this most. We'll simply end up with the most used concepts on top. For me, it'll be a list of stuff to study up on.

-Robert

flag
2  
This is turning into a overly general / highly subjective "what are the best computer development practices?" question - should be closed. – DJ Aug 24 at 19:53
2  
Also sounds very familiar to this: stackoverflow.com/questions/747292/…. I gather the ones people "apply the most" are not all that different than the ones they would suggest you "should know". – gnovice Aug 24 at 20:36
1  
@d03boy - then its a dup of stackoverflow.com/questions/747292/… – DJ Aug 25 at 19:13
show 4 more comments

43 Answers

1 2 next
vote up 27 vote down check

Strive for low coupling, high cohesion.

low coupling, high cohesion

(I stole this image from the website linked above)

link|flag
4  
I only wish that EVERY software developer understood the importance of this principle. – Jagd Aug 24 at 20:02
1  
Lovely Kabbalistic tree of life diagram you have there. – chaos Aug 24 at 20:08
2  
What package did you use to make that graph? +1 for bringing up decoupling. – Torlack Aug 24 at 20:19
1  
I never learned this in school, but +1 – Martin Aug 24 at 23:18
1  
The graph was done using a Sharpie marker on a yellow legal pad. – Sammy Larbi Sep 7 at 18:55
show 1 more comment
vote up 1 vote down

Garbage in, garbage out.

link|flag
vote up 0 vote down

Time and space estimation. How long will this thing take to run? Not just big-O notation, but also some idea of whether something will take seconds or hours. Also how much space will something take up? Is it 1 meg of data I can load into RAM, a gig of data I can work on in RAM with a bit of work, or 100 gigs of data that will take disk and/or a distributed system?

I interviewed a lot of fresh-out-of-undergrad engineer candidates at Google. I'd say about 50% of them couldn't tell me how much RAM was in a computer, or estimate how long it'd take to, say, parse a million web pages. Without some basic intuition of how big a problem is you're not equipped to solve it.

link|flag
vote up 0 vote down

Vectorization. I use MATLAB at work for some of my programming and am regularly porting scalar operations to a vector implementation. Sometimes it's a lot of fun - sometimes it feels like picturing a hypercube flatlanding a Mobius strip while chatting with Escher.

link|flag
vote up 0 vote down

I frequently apply Computer Science concepts every day to write my own custom splay trees and ray-tracing algorithms for the Java web applications that I develop.

link|flag
vote up 1 vote down

The most important phrase that pops into my head a lot was from my operating systems professor -- and I didn't do very well in operating systems. Nevertheless...

"There is no magic."

He meant that if a computer can do it, a computer programmer can figure out how it is done. When someone waves the magic "high technology" wand, look closer, and you'll see a heuristic.

When I have to accomplish something hard, it gives me the courage to find a way to do it.

When I am presented with some "magical"-seeming piece of technology in the media or in marketing material, it makes me skeptical and dig for the truth.

link|flag
vote up -1 vote down

I'm surprised no one has mentioned encapsulation.

link|flag
show 1 more comment
vote up 1 vote down

The longer a fault exists in software the more costly it is to detect and correct the less likely it is to be properly corrected

link|flag
vote up 4 vote down

Abstraction

Aho and Ullman write in the introduction to Foundations of Computer Science

But fundamentally, computer science is a science of abstraction — creating the right model for thinking about a problem and devising the appropriate mechanizable techniques to solve it.

link|flag
vote up 0 vote down

What data structures exist, their space/time characteristics, and what situations each should be used for. There is no better way to write fast, maintainable code than to use the appropriate data structure for your use case.

Btw, even though you could make the case that data structures are design patterns, I intend for this to be considered as distinct from design patterns.

link|flag
vote up 0 vote down

"First make it work, then make it work /fast/."

Of course, you must not lock yourself in to a slow design, but a lot of time can be wasted trying to optimize routines that would never become the bottleneck of the entire solution - also, if you later discover the need to redesign that optimized module, your optimization effort was arguably wasted.

link|flag
vote up 1 vote down

These are the university courses/concepts I found most useful for my professional career

  • Introduction to Databases
  • DBMS - how they're working
  • Algorithms and Data structures
  • Object Oriented Programming concepts
  • Design patterns (mostly MVC, application layering)
  • Requirements engineering
  • Software Quality Management
  • Software Metrics

guess they're all...I did not mention specific technologies here but just the concepts.

link|flag
vote up 0 vote down

Relational Model for data management and normalization.

link|flag
vote up 0 vote down

Coupling and cohesion.

It's essentially the divide-and-conquer paradigm the basis of all software.

You are looking for orthogonal concepts and orthogonal software entities, those that exhibit loose coupling and high cohesion.

Used a gosub in Basic? You're using C&C.

link|flag
vote up 2 vote down

"Any problem in computer science can be solved with another layer of indirection." — David Wheeler, chief programmer for the EDSAC project in the early 1950s

When well-applied, this leads to reasonable generalization as seen in examples such as abstract data types, reusable classes with virtual methods, etc.

When poorly-applied, it leads to overly-indirect implementations with lots of runtime overhead due to over-generalization, e.g. the Intel 432 architecture.

link|flag
vote up -1 vote down

The fundamental Theorem of software engineering: any software engineering problem can be solved by adding a level of indirection.

(I think that it has been formulated in this form by A. Koenig)

But then, too many levels of indirection can become hard to follow :-)

link|flag
show 1 more comment
vote up 0 vote down

Modelling

Formal verification for small but hard functions.

Lambda expression (C# :p)

Concurrency "theory"

Design patterns

Writing specs before writing code.

link|flag
vote up 0 vote down

Data Binding, you gotta use it all the time... in numerous different ways....

link|flag
vote up 2 vote down

Avoiding premature optimizations, as Mr Knuth said:

"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." (from wikipedia)

link|flag
vote up 7 vote down

Don't repeat yourself.

link|flag
1  
I must have missed that class... – DJ Aug 24 at 19:23
1  
Hey, I think I took that class twice. – NVRAM Aug 24 at 23:45
show 3 more comments
vote up 5 vote down

Singleton, template and strategy patterns.

Also: YAGNI - You ain't gonna need it
KISS - Keep it simple, stupid

link|flag
show 2 more comments
vote up 0 vote down

"Debugging code is twice as hard as writing it. Therefore, if you write code as cleverly as you can, you are by definition not clever enough to debug it."

link|flag
show 1 more comment
vote up 2 vote down

Functional decomposition.

link|flag
vote up 2 vote down

Encapsulation or information hidding

link|flag
vote up 4 vote down

Estimating space/time complexity and using appropriate data structures to get much simpler/faster code. Modeling certain problems as graphs also came useful once in a while.

link|flag
vote up 1 vote down

Problem solving...

link|flag
vote up 0 vote down

I believe we all do FSM's day in and out. OOP models a FSM , so does a MVC.

Infact, OOP/MVC etc are patterns for expressing a FSM.

Are there ANY applications where we DO NOT build a FSM?

Consider a simple application - sorting. Well, that's a FSM too!

This should be the question in fact : Are there ANY applications where we DO NOT build a FSM?

link|flag
1  
Flying Spaghetti Monster? ;) In all seriousness, I'm not sure I'd classify this as an applied concept really. – Thorarin Aug 24 at 18:38
show 1 more comment
vote up -1 vote down

Analysis of Algorithms

Introduction to Algorithms: Cormen, et al.

The Art of Computer Programming: Knuth (the entire series)

link|flag
show 2 more comments
vote up 1 vote down

Understanding and utilizing the data structures and algorithms provided for me by language libraries (either from the standard or third parties, like Boost). Don't reinvent the wheel, and learn what wheels are out there that are better than your own.

link|flag
vote up 1 vote down

It's not CS-specific, but just remember that producing results that are simple or concise are both good goals. If you can produce something simple and concise then you're likely producing high-quality work.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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