Tagged Questions

35
votes
36answers
4k views

Why do people use Java?

I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level …
12
votes
22answers
537 views

What is “Simple”?

I've been thinking about the definition of "simple" for a while now, spurred by things like "Real Simple" magazine, which is essentially a vehicle for advertisements for more stuff …
10
votes
10answers
673 views

Is Rails a Black Box?

I've been doing some simple rails Apps lately. I know ruby quite well, but when I started doing things "the rails way" I noticed that some things were done "just because" and It's …
8
votes
12answers
412 views

What’s a programming example of: “If you hear hooves, think horses not zebras”?

In medical school they teach students: "If you hear hooves, think horses not zebras". In other words, look first at the simplest explanation for a problem. What's a programmin …
5
votes
2answers
125 views

Should you avoid object inheritence when persisting to an RDBMS solution

While looking at this question: Why all the Active Record hate? I found myself thinking of a general theme that ActiveRecord pattern is good when you have little or no inheritence …
3
votes
5answers
641 views

SQLAlchemy is convoluted?

This may seems rather argumentative, but I just went through SQLAlchemy's ORM tutorial and ended up with the following code: from sqlalchemy import create_engine from sqlalchemy i …
3
votes
5answers
1k views

What XNA based 3D terrain and physics libraries exist?

I'm planning on creating a game that contains a landscape with objects on it. The landscape will be defined using a heightfield, and the objects will move about on top of, and fly …
0
votes
2answers
185 views

2d graphics effects 101: throwing something

I have a page in my desktop app, and I've implemented simple grab-and-pan. It works great. When you are panning in this way and you are release, the page stops dead where you dro …