Questions that are independent of programming language. These questions are typically more abstract than other categories.

learn more… | top users | synonyms (1)

779
votes
82answers
144k views

What are the lesser known but cool data structures? [closed]

There are some data structures around that are really cool but are unknown to most programmers. Which ones are they? Everybody knows about linked lists, binary trees, and hashes, but what about Skip ...
713
votes
8answers
85k views

The Definitive Guide To Forms based Website Authentication

Form Based Authentication For Websites Please help us create the definitive resource for this topic. We believe that stackoverflow should not just be a resource for very specific technical questions, ...
603
votes
58answers
77k views

Learning to Write a Compiler

Preferred Languages : C/C++, Java, and Ruby I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with C/C++, Java, and ...
498
votes
162answers
36k views

What are Code Smells? What is the best way to correct them? [closed]

OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition: In computer programming, code smell is any symptom in the source code of a computer program ...
456
votes
24answers
77k views

Understanding “randomness”

I can't get my head around this, which is more random? rand() OR rand() * rand() I´m finding it a real brain teaser, could you help me out? EDIT: Intuitively I know that the mathematical ...
397
votes
87answers
69k views

What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners! [closed]

I'm looking for the coolest thing you can do in a few lines of simple code. I'm sure you can write a Mandelbrot set in Haskell in 15 lines but it's difficult to follow. My goal is to inspire ...
326
votes
48answers
28k views

Should a function have only one return statement? [closed]

Are there good reasons why it's a better practice to have only one return statement in a function? Or is it okay to return from a function as soon as it is logically correct to do so, meaning there ...
313
votes
87answers
28k views

Best ways to teach a beginner to program? [closed]

Original Question I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have ...
274
votes
106answers
29k views

Practical non-image based CAPTCHA approaches?

It looks like we'll be adding CAPTCHA support to Stack Overflow. This is necessary to prevent bots, spammers, and other malicious scripted activity. We only want human beings to post or edit things ...
242
votes
32answers
15k views

Interface vs Base class

When should I use an interface and when should I use a base class? Should it always be an interface if I don't want to actually define a base implementation of the methods? If I have a Dog and Cat ...
232
votes
34answers
6k views

OK, so I'm not a beginner anymore. What comes next?

In a certain sense, I'm still very much a beginner, but I don't need to read C++ Primer or Learn C++ in 21 Days, or at least, I only take a peek every now and then for reference's sake. So what is my ...
180
votes
31answers
48k views

Why are variables “i” and “j” used for counters? [closed]

Possible Duplicate: Why are we using i as a counter in loops I know this might seem like an absolutely silly question to ask, yet I am too curious not to ask... Why did "i" and "j" become ...
172
votes
24answers
25k views

What are important languages to learn to understand different approaches and concepts? [closed]

When all you have is a pair of bolt cutters and a bottle of vodka, everything looks like the lock on the door of Wolf Blitzer's boathouse. (Replace that with a hammer and a nail if you don't read ...
171
votes
31answers
16k views

Performance optimization strategies of last resort?

There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature ...
160
votes
131answers
22k views

Stack overflow code golf [closed]

To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome. ETA: Just to be clear on this question, seeing as I'm an occasional ...
157
votes
11answers
8k views

What is dependency injection?

There have been several questions already posted with specific questions about dependency injection, such as when to use it, what frameworks are there for it. However, here's the newbie question: ...
146
votes
21answers
20k views

Prefer composition over inheritance?

Why prefer composition over inheritance? What trade-offs are there for each approach? When should you choose inheritance over composition?
145
votes
57answers
14k views

Code golf: Word frequency chart

The challenge: Build an ASCII chart of the most commonly used words in a given text. The rules: Only accept a-z and A-Z (alphabetic characters) as part of a word. Ignore casing (She == she for ...
139
votes
71answers
7k views

What's the best name for a non-mutating “add” method on an immutable collection? [closed]

Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question. Suppose I have an immutable list type. It has an operation Foo(x) which returns a new ...
136
votes
28answers
8k views

Code Golf: Lasers

The challenge The shortest code by character count to input a 2D representation of a board, and output 'true' or 'false' according to the input. The board is made out of 4 types of tiles: # - A ...
128
votes
31answers
5k views

What should every developer know about databases?

Whether we like it or not, many if not most of us developers either regularly work with databases or may have to work with one someday. And considering the amount of misuse and abuse in the wild, and ...
108
votes
68answers
20k views

Programming challenge: can you code a hello world program as a Palindrome?

So the puzzle is to write a hello world program in your language of choice, where the program's source file as a string has to be a palindrome. To be clear, the output has to be exactly "Hello, ...
107
votes
102answers
7k views

What are some bad programming habits to look out for and avoid? [closed]

I'm a new programmer in college and was wondering if there are any bad habits to watch out for early on. Anything that you wish you knew to avoid when starting.
106
votes
28answers
37k views

Why do we use arrays instead of other data structures?

As I was programming, I haven't seen an instance where an array is better for storing information than another form thereof. I had indeed figured the added "features" in programming languages had ...
103
votes
68answers
8k views

Favorite (Clever) Defensive Programming Best Practices

If you had to choose your Favorite (clever) techniques for defensive coding, what would they be? Although my current languages are Java and Objective-C (with a background in C++), feel free to answer ...
102
votes
21answers
5k views

What problems have you solved using artificial neural networks? [closed]

I'd like to know about specific problems you - the SO reader - have solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll your own. Questions: ...
99
votes
49answers
5k views

What programming practice that you once liked have you since changed your mind about? [closed]

As we program, we all develop practices and patterns that we use and rely on. However, over time, as our understanding, maturity, and even technology usage changes, we come to realize that some ...
97
votes
18answers
7k views

What Makes a Good Unit Test? [closed]

I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing. My question is do you follow any rules of conduct for writing tests ...
95
votes
10answers
26k views

Ball to Ball Collision - Detection and Handling

With the help of the Stack Overflow community I've written a pretty basic-but fun physics simulator. You click and drag the mouse to launch a ball. It will bounce around and eventually stop on the ...
92
votes
12answers
7k views

Throwing cats out of windows

Imagine you're in a tall building with a cat. The cat can survive a fall out of a low story window, but will die if thrown from a high floor. How can you figure out the longest drop that the cat can ...
87
votes
83answers
9k views

What is “elegant” code? [closed]

I see a lot of lip service and talk about the most "elegant" way to do this or that. I think if you spend enough time programming you begin to obtain a sort of intuitive feel for what it is we call ...
87
votes
23answers
11k views

Fastest way to get value of pi

Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using #defined constants ...
86
votes
18answers
3k views

How to start recognizing design patterns as you are programming? [closed]

I have general academic knowledge of the various design patterns that are discussed in GoF and Head First Design Patterns, but I have a difficult time applying them to the code that I am writing. A ...
86
votes
15answers
26k views

What is tail-recursion?

Whilst starting to learn lisp, I've come across the term tail-recursive. What does it mean?
86
votes
22answers
24k views

Database, Table and Column Naming Conventions?

Whenever I design a database, I always wonder if there is a best way of naming an item in my database. Quite often I ask myself the following questions: Should table names be plural? Should column ...
85
votes
22answers
5k views

Code Golf: Piano

The challenge The shortest code by character count to output a part of a piano keyboard starting from input note in a given length. Input will be composed of a note ([ACDFG]#|[A-G]) to start ...
85
votes
37answers
13k views

What problems have you solved using genetic algorithms/genetic programming?

Genetic algorithms (GA) and genetic programming (GP) are interesting areas of research. I'd like to know about specific problems you - the SO reader - have solved using GA/GP and what ...
84
votes
24answers
5k views

Code Golf - π day

The Challenge Guidelines for code-golf on SO The shortest code by character count to display a representation of a circle of radius R using the *character, followed by an approximation of π. Input ...
84
votes
14answers
22k views

Best general SVN Ignore Pattern?

What is the best (or as good as possible) general SVN ignore pattern to use? There are a number of different IDE, editor, compiler, plug-in, platform, etc. specific files and some file types that ...
83
votes
30answers
5k views

Code Golf: Four is magic

The puzzle A little puzzle I heard while I was in high school went something like this... The questioner would ask me to give him a number; On hearing the number, the questioner would do some sort ...
83
votes
69answers
5k views

Code Golf: Collatz Conjecture

Inspired by http://xkcd.com/710/ here is a code golf for it. The Challenge Given a positive integer greater than 0, print out the hailstone sequence for that number. The Hailstone Sequence See ...
83
votes
33answers
3k views

Am I immoral for using a variable name that differs from its type only by case?

For instance, take this piece of code: var person = new Person(); or for you Pythonistas: person = Person() I'm told constantly how bad this is, but have yet to see an example of the immorality ...
81
votes
14answers
4k views

Code Golf: Playing Tetris [closed]

The basics: Consider the following tetrominoes and empty playing field: 0123456789 I O Z T L S J [ ] ...
80
votes
17answers
6k views

In-Place Radix Sort

This is a long text. Please bear with me. Boiled down, the question is: does someone know a workable in-place radix sort algorithm? Preliminary I've got a huge number of small fixed-length strings ...
77
votes
17answers
2k views

What do we log and why do we log it? [closed]

This has been bugging me for quite some time. Reading various questions on SO, blogs and listening to colleagues, I keep hearing how important "logging" is. How various logging frameworks stack up ...
76
votes
30answers
3k views

Requirements Smells

We've all heard and debated about Code Smells, and occasionally you hear people talking about "design smells", so I've been thinking, why not take it one step further? If you deal directly with ...
76
votes
24answers
51k views

How do you remember if 1 for TRUE or FALSE? [closed]

I always forget :S How do you remember which number stands for TRUE or FALSE? (when I started css the colors black and white always confused me. Is white #FFFFFF or #000000. A trick I came up with: ...
76
votes
32answers
7k views

What is some great source code to read?

Following the advice of Scott Hanselman, I'm looking for good source code to read. Here's what is currently on my list: Scott's posts CodeProject How about you? What source code do you read? It ...
74
votes
66answers
52k views

Code Golf: Numeric equivalent of an Excel column name

The challenge The shortest code by character count that will output the numeric equivalent of an Excel column string. For example, the A column is 1, B is 2, so on and so forth. Once you hit Z, the ...
74
votes
11answers
3k views

How should you build your database from source control?

There has been some discussion on the SO community wiki about whether database objects should be version controlled. However, I haven't seen much discussion about the best-practices for creating a ...

1 2 3 4 5 104