Tagged Questions
The philosophy tag has no wiki summary.
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 ...
38
votes
14answers
2k views
Books about the philosophy of software development
The first time I read The Mythical Man Month, I found the book utterly boring, a waste of my time, and thought it was written by some management guru that never wrote a line of code.
A few years ...
21
votes
8answers
4k views
What is ExtJS philosophy? Single page application?
I need to write my next project using ExtJs.
It's a nice Javascript lib but I don't fully understand the idea behind it.
Take the docs page for example:
http://www.extjs.com/deploy/dev/docs/
Am I ...
17
votes
6answers
853 views
“ID” or “Id” on User Interface
The QA manager where I work just informed me there is a bug in my desktop app due to the sign on prompt being "Operator Id" when it should be "Operator ID". Her argument being that "Id" refers to the ...
17
votes
22answers
636 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 to buy that clutter ...
17
votes
16answers
900 views
Comb Technology
This question is about the rare case of software that is neither in active development nor moribund.
First, why is it so rare for software to ever be finished? It seems "no longer in active ...
15
votes
5answers
804 views
What does it mean that “Lisp can be written in itself?”
Paul Graham wrote that "The unusual thing about Lisp-- in fact, the defining quality of Lisp-- is that it can be written in itself." But that doesn't seem the least bit unusual or definitive to me.
...
13
votes
12answers
420 views
How much is it fair to assume about implementation when doing big-O calculations?
When programmers versed in a wide variety of languages are discussing the merits of an algorithm expressed in pseudocode, and the talk turns to efficiency, how much should be assumed about the ...
12
votes
8answers
763 views
Is this overly clever or unsafe?
I was working on some code recently and decided to work on my operator overloading in c++, because I've never really implemented it before. So I overloaded the comparison operators for my matrix class ...
11
votes
9answers
2k views
Can a program output a copy of itself
I think this might be a classic question but I am not aware of an answer. Can a program output a copy of itself, and, if so, is there a short program that does this?
I do not accept the "empty ...
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 ...
10
votes
4answers
526 views
What is so special about Lisp? [closed]
Possible Duplicate:
What’s so great about Lisp?
What is it that makes Lisp so special? Why is it repeatedly held up as an example of what a programming language should be?
I've ...
10
votes
5answers
187 views
Paranoid attitude: What's your degree about web security concerns?
this question can be associated to a subjective question, but this is not a really one.
When you develop a website, there is several points you must know: XSS attacks, SQL injection, etc.
It can be ...
10
votes
4answers
790 views
Philosophical Design Questions for OOP-Tetris
You are writing a Tetris program in Java. How would you set up your class design with regards to the following aspects?
Piece class: Have one Piece class, with an internal array which determines the ...
9
votes
7answers
1k views
8
votes
6answers
256 views
Write programs that do one thing and do it well
I can grasp the part "do one thing" via encapsulation, Dependency Injection, Principle of Least Knowledge, and You Ain't Gonna Need It; but how do I understand the second part "do it well?"
An ...
8
votes
10answers
432 views
What does “Type” mean, physically?
I have heard a lot about "type system", "strongly typed language" and so on. Currently I am working on some .NET COM interop problem, which addressed "marshaling" a lot. And AFAIK, marshaling is quite ...
7
votes
6answers
691 views
The art of programming
I see programming as the meeting-place of creative arts and science.
Most of us ...
are interested in programming for
the fulfillment achieved by
creativeness tempered by the rigor
of applied ...
7
votes
9answers
1k views
What's the point of Perl golf?
Perl golf is a programmers' game which involves solving a problem with the shortest perl program possible. (ie, the winner is the person who completes the round in the lowest number of (key)strokes).
...
6
votes
6answers
200 views
Why use a form tag when you're submitting via ajax?
Philosophical question:
Say I've got a web app that requires javascript and a modern browser, so progressive enhancement is not an issue. If my form is being built via javascript, and my data ...
6
votes
8answers
1k views
Real-world programming examples of the Unix philosophy
What are some specific[1] real-world code[2]/design examples, personal anecdotes, mistakes learned (with more emphasis on personal anecdotes, mistakes learned instead of pointing out third-party ...
6
votes
7answers
1k views
how to store configurations for php app — xml or ini or db
I've got an app written in PHP, and there are a number of configurable variables. We're implementing a feature where the user can create sets of configurations and easily switch between them. How ...
6
votes
11answers
457 views
Should non-public functions be unit tested and how?
I am writing unit tests for some of my code and have run into a case where I have an object with a small exposed interface but complex internal structures as each exposed method runs through a large ...
5
votes
3answers
420 views
Object-oriented vs “functional” javascript
Douglas Crockford said a long time ago:
Classical objects are hard.
....
Shallow hierarchies are efficient and
expressive.
I came to this conclusion separately after years of JS ...
5
votes
4answers
260 views
Java language philosophy question
Why was java defined such that methods may take as input multiple parameters,
but may only return a single object (or void)?
Did it make the language somehow easier to implement or use?
5
votes
5answers
416 views
Using email instead of login name in django
Firstly, this is not the question how to authenticate on email/password pair, but rather how to produce logical, and if you like, beautiful data structure.
I want to use emails as user names in a ...
5
votes
1answer
310 views
Examples of relations between philosophical concepts and development paradigms
During your development experiences have you found any relation between philosophical concepts and development paradigms?
Although, there is no hard reciprocity, I think that learning about those ...
4
votes
2answers
87 views
Wikipedia philosophy game diagram in python and R
So I am relatively new to python, and in order to learn, I have started writing a program that goes online to wikipedia, finds the first link in the overview section of a random article, follows that ...
4
votes
4answers
158 views
When should you force automatic updates?
Here's an interesting question - when should you force automatic updates? I was thinking about application updates recently, how software like Google Chrome forces automatic updates, how Microsoft ...
3
votes
4answers
128 views
Reading Scala In Example, trying to understand the philosophy behind the examples
I am reading the Scala in Examples book and almost every example there has the following construction:
abstract class Stack[A] {
def push(x: A): Stack[A] = new NonEmptyStack[A](x, this)
def ...
3
votes
2answers
98 views
erlang phylosophy: Should I let users deal with wrong input or not?
This is the case:
% print/1: Prints out the integers between 1 and N
print(0) -> io:format("~w~n", [0]);
print(N) when is_integer(N) ->
io:format("~w~n", [N]),
print(N - ...
3
votes
2answers
122 views
Is there any kind of 'enterprise container' needed in java? [closed]
Have philosophic question.
Why is it worth to have kind of 'enterprise container' in java? Why not support enterprise container features on JVM level?
For example what if I want to use some of EJB ...
3
votes
4answers
123 views
What arguments exist against keyword substitution as a feature in version control systems? [closed]
Are there any arguments out there against keyword substitution (i.e. replacing $Revision$ with $Revision: 5$) as a feature in version control systems?
I'm not looking for a debate. I'm looking for ...
3
votes
10answers
392 views
What can a company possibly gain by making Android phones hard to root? [closed]
As someone who recently got a HTC Hero, I had to jump through several hoops to get root access on the phone to install custom firmware. Now, Android is open-source and fairly easy to build and hack on ...
3
votes
5answers
197 views
Breakthrough programming .NET era [closed]
I wonder what are .NET technologies / C# language improvements you consider as breakthroughs in the .NET era for the last 5-10 years. I mean technologies that shifted developers' minds.
For example ...
3
votes
7answers
180 views
How to make efficient code emerge through unit testing?
I participate in a TDD Coding Dojo, where we try to practice pure TDD on simple problems. It occured to me however that the code which emerges from the unit tests isn't the most efficient. Now this ...
3
votes
2answers
120 views
Do I need to auto-login after account activation?
This is the standard scenario:
User registers on the site
User receives an account activation email, clicks link to activate
Web site notifies the user that account is activated
Now there are at ...
3
votes
6answers
332 views
A class subclass of itself. Why mutual subclassing is forbidden?
Complex question I assume, but studying OWL opened a new perspective to live, the universe and everything. I'm going philosophical here.
I am trying to achieve a class C which is subclass of B which ...
3
votes
3answers
2k views
HTML site development: div's vs ul's for navigation and menus
I'm working on developing a Web 2.0 site, and I've been looking at how sites deal with menus and nav-bars. Many sites (like twitter) use UL's whereas sites such as stackoverflow use div's that are ...
3
votes
14answers
2k views
Code Generators or T4 Templates, are they really evil?
I have heard people state that Code Generators and T4 templates should not be used. The logic behind that is that if you are generating code with a generator then there is a better more efficient way ...
2
votes
5answers
61 views
Javascript's get-it-done nature
Is Javascript intended to be running as little as possible on a website/webapp? By that I mean is the usual intention to run through all your js files as soon as the page loads and put them aside, and ...
2
votes
4answers
265 views
To mock or not to mock? [closed]
As far as I know from eXtreme Programming and unit testing, tests must be done by another developer before another one develop the tested method (or from the same developers but test must be written ...
2
votes
1answer
53 views
To separate functions or not to separate functions? That is the question
At this point in time I am approaching the 1800 line mark in my code.
It contains a series of different forms and one big function which checks, validates, and determines the next step in the ...
2
votes
3answers
177 views
How to test whether x is a member of a universal set?
I have a list L, and x in L evaluates to True if x is a member of L. What can I use instead of L in order x in smth will evaluate to True independently on the value of x?
So, I need something, what ...
2
votes
2answers
194 views
Best Practices? Wait until receive or raise an event on receive
First of all, I wanted to thank the community. You've been of great support lately ! Usually i don't even need to ask the questions because they're already there. Now i have an issue that's not ...
2
votes
1answer
234 views
What is the philosophy of literals in programming?
How can literals be explained? Why should we use it in a language such as C# and ...?
Literals are very common in C#. I want to know the philosophy and history of literals.
2
votes
2answers
363 views
RESTful way to send commands
How do you send "commands" to a RESTful server?
Use case: My server caches certain information so that it does not have to read the database every time that information is requested. I need a way to ...
2
votes
6answers
138 views
Developer Guidelines - Department Philosophy Document
I am tasked with creating a document for current and (most importantly) new developers that is a general guidelines for the department. This is not a document on what the server name is for Test, but ...
2
votes
2answers
326 views
using PHP for “Fluid” design(using viewport resolution)
I need some opinions on using PHP to make completely "scalable" websites.. For instance, using viewport resolution and resizing images, applying dynamic css styles..... In my mind doing this just ...
2
votes
5answers
1k views
chop unused decimals with javascript
I've got a currency input and need to return only significant digits. The input always has two decimal places, so:
4.00 -> 4
4.10 -> 4.1
4.01 -> 4.01
Here's how I'm currently doing ...