Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
6answers
857 views

Why does Haskell's `head` crash on an empty list (or why *doesn't* it return an empty list)? (Language philosophy)

Note to other potential contributors: Please don't hesitate to use abstract or mathematical notations to make your point. If I find your answer unclear, I will ask for elucidation, but otherwise feel ...
16
votes
16answers
1k views

Why would I want to use jQuery?

(I understand that someone else asked a similar question and it was closed as 'argumentative', but I'm really interested in understanding the arguments around this.) I know JavaScript really well. ...
14
votes
6answers
407 views

Thoughts on minimize code and maximize data philosophy

I have heard of the concept of minimizing code and maximizing data, and was wondering what advice other people can give me on how/why I should do this when building my own systems.
10
votes
8answers
652 views

What is the philosophy of managing memory in C++?

Apologies for the vast scope of question. But what is the design factor in managing memory in C++? For example: why is there a memory leak when a program does not release a memory object before it ...
9
votes
8answers
684 views

Why is IDisposable implementation designed the way it is

Let's take a look at the infamous IDisposable interface: [ComVisible(true)] public interface IDisposable { void Dispose(); } and a typical implementation, as recommended by MSDN (I omitted the ...
8
votes
11answers
591 views

Respecting Fellow Developers [closed]

We've all been there. You have written some code and unit tests, the tests all pass, and the code is decent (nothing's perfect, right?). Then, someone who is sure that they know better than you ...
7
votes
8answers
4k views

What is data-driven programming?

I've been tasked at work to write a detailed engineering plan for a logistics application that we are coding to propose to a customer. I have been told that it is a data-driven application. What does ...
6
votes
3answers
267 views

is it possible to write a program which prints its own source code utilizing a “sequence-generating-function”

is it possible to write a program which prints its own source code utilizing a "sequence-generating-function"? what i call a sequence-generating-function is simply a function which returns a value ...
6
votes
6answers
499 views

why co-cocoa pr-programmers st-stutter

one of the things i like most about cocoa is the readability factor. but... one of the things that annoys me most is the convention of convenience constructors to stutter. what I mean is this: ...
6
votes
14answers
3k views

What differentiates software engineering from any other engineering discipline? [closed]

Software engineering shares many of the same traits with other engineering disciplines (attention to detail, complexity to mastery). What do you think differentiates it? Please be specific and ...
5
votes
4answers
367 views

What is the philosophy of using import in Python?

Do I need always import all I need in the beginning of the script? Use import immediately before using things from this? What to do if import thing uses several times? What is good style of using ...
5
votes
3answers
133 views

How do the different frameworks and cmses handle the dev > staging > production deployment problem?

It's a familiar problem: I've got some changes to push up the dev > staging > production chain, but in the mean time, content and users have been added to the database on the production server. I ...
5
votes
7answers
203 views

Could you imagine any other way to have OO implemented than the classic class-based approach?

I've lately been thinking a lot about alternatives to the class-based approach to object-orientation. One thing which bugs me in today's languages is that we often use static classes / singletons to ...
4
votes
12answers
373 views

What manner of professional is a programmer anyway?

Thanks to "Uncle Bob's" recent pontifications on Hanselminutes and the Stackoverflow podcasts, as well as Jeff and Joel's appropriate disrespect of the "SOLID" principles, I've given a lot of thought ...
3
votes
6answers
126 views

Why do std::function instances have a default constructor?

This is probably a philosophical question, but I ran into the following problem: If you define an std::function, and you don't initialize it correctly, your application will crash, like this: ...
3
votes
12answers
448 views

Have you ever finished?

I was just looking at our issue tracker, and out of nowhere came the question: Will this ever be complete? Has any software project ever finished because it is complete? This has never happened to ...
3
votes
5answers
301 views

Don't static members make classes kind of (global) objects themselves?

Every time I come across an implementation of the singleton pattern or any static classes (i.e. classes with (almost) only static members) I wonder whether this isn't actually a hack and therefore ...
2
votes
5answers
486 views
2
votes
4answers
375 views

Do jQuery and Asynchronous calls together break the MVC Model?

I marked this as Community Wiki since this might be more on the philosophical side of things, but I've been thinking about this on and off for a while. Basically the idea is this: With MVC you have ...
1
vote
2answers
40 views

How should I forward Intent parameters through chains of Activities?

I have lots of Activities chained together with Intents and some Intents require parameters passed in the extras Bundle. When I have to forward parameters through multiple Activities, should I copy ...
1
vote
0answers
85 views

Hiesenbugs - Are they Real? [closed]

Hiesensbugs. The ghost in the machine. Are they real? All experienced programmers know what I'm talking about. You write a piece of code. It works. Then you realize there is no way that that code ...
1
vote
2answers
107 views

Question about the responsibility of a ViewModel

I am building a tool which goal is to download a file based on a few parameters. First step is to set (or retrieve) those parameters. The different parameters sets are retrieved (let's say via ...
1
vote
1answer
306 views

Groovy-script naming conventions?

how do you name your groovy scripts? Does it depends on the enviroment? Do you name groovy classes diffent to groovy scripts? Example: convert_csv_to_xml.groovy ConvertCSVtoXML.groovy ... ...
1
vote
4answers
496 views

To add custom/user-defined fields feature or not?

This is more of a product philosophy/software architecture question. If you are writing a business application, groupware, bug tracker, etc. you'd come across a client demanding "I want field XYZ in ...
0
votes
2answers
52 views

C# optimizing overloaded operators

Returning a new object on overloaded operators seems the only thing to do. Right? If you have a class (X) that contains a large buffer Part of the buffer contains content, rest is free. You have ...
0
votes
5answers
1k views

Debate on Speed compare: JavaScript, Flash, Silverlight, C++, C#, ASM

We are trying to compare 7 different programming technologies for browser based client applications. Please give your thoughts on this speed comparison. What will the future bring? Will HTML5 ...
0
votes
3answers
133 views

Liberty to program [closed]

Certain programming languages tend to give you a lot of liberty (C/C++) while others seem to have certain restrictions (C# and Java). Is it better to let programmers have liberty (pointers, ...