Tagged Questions
A specification (often abbreviated as spec) is an explicit set of requirements to be satisfied by a material, product, or service.[wikipedia]
61
votes
6answers
25k views
How to encode the filename parameter of Content-Disposition header in HTTP?
Web applications that want to force a resource to be downloaded rather than directly rendered in a Web browser issue a Content-Disposition header in the HTTP response of the form:
...
50
votes
9answers
2k views
Any reason to write the “private” keyword in C#?
As far as I know, private is the default everywhere in C# (meaning that if I don't write public, protected, internal, etc. it will be private by default). (Please correct me if I am wrong.)
So, ...
39
votes
22answers
1k views
Is writing specifications for hobby projects the only way for them to be finished?
Here's what I'm wondering. Every night that our 3 months old baby lets us sleep, I jump to my computer and start coding my hobby projects. I have about 20 different projects that I'm working on: ...
37
votes
9answers
15k views
Is putting a div inside a anchor ever correct?
I've heard that putting a block element inside a inline element is a HTML sin:
<a href="http://www.mydomain.com"><div>
What we have here is a problem.
You see, an anchor element is an ...
37
votes
3answers
48k views
How do I write a Technical Specification document for my software project?
I've seen a few questions around here saying that there's no need to write a beefy Technical Specification if the Functional Specification has all of the functionality. What about situations where the ...
37
votes
6answers
4k views
What's the use/meaning of the @ character in variable names in C#?
I discovered that you can start your variable name with a '@' character in C#.
In my C# project I was using a web service (I added a web reference to my project) that was written in Java. One of the ...
30
votes
11answers
1k views
What makes a good spec?
One of the items in the Joel Test is that a project/company should have a specification.
I'm wondering what makes a spec good. Some companies will write volumes of useless specification that no one ...
29
votes
8answers
16k views
Templates of Technical and Functional Specs
So basically I am looking for good templates for writing both technical and functional specs on a project or work request.
What do you guys use? How in depth do you get while writing the specs? Any ...
17
votes
5answers
4k views
Java: Rationale of the Cloneable interface
Why wasn't the .clone() method specified in the java.lang.Cloneable interface ?
15
votes
7answers
1k views
HTML 5 - Early Adoption Where Possible - Good or Bad?
This question was inspired a bit by this question, in which the most upvoted answer recommended using a feature from HTML 5. It certainly seemed to be a good method to me, but it made me curious ...
14
votes
22answers
1k views
What was your worst client request/specification?
What was the vaguest, most contradictory, physically impossible, or sheer gibberish specification you have ever received from a client?
And more interestingly, how did you handle it?
13
votes
11answers
943 views
How to prove writing specifications beats code cowboys?
So I have a problem. Or rather my friend has a problem, since I would never write about my company on an internet forum.
At my friend's company specification writing is, shall we say, a little ...
13
votes
9answers
5k views
Maximum Method Name Length
Does anyone happen to know what the maximum length of a method name is in your programming language of choice? I was going to make this a C# specific question, but I think it would be nice to know ...
12
votes
5answers
4k views
How to write a functional specification?
We always write functions or classes and their logic is very complicated.
If there is no specification for these structures, later it will be hard for even ourselves to grasp the ideas.
How do you ...
11
votes
4answers
220 views
When are temporaries created as part of a function call destroyed?
Is a temporary created as part of an argument to a function call guaranteed to stay around until the called function ends, even if the temporary isn't passed directly to the function?
There's ...
11
votes
4answers
1k views
What Makes a Great Functional Specification Great?
What qualities made it so great, and what made it stand out compared to the not-so-great specs that you've had to deal with? Or, if you've never worked with a good functional spec before, what sort ...
11
votes
3answers
1k views
What is the value of the css 'ex' unit?
(Not to be confused with Xunit, a popular .Net unit testing library.)
Today in a fit of boredom I started inspecting Gmails dom (yes, I was very bored).
Everything looked pretty straight forward ...
10
votes
2answers
285 views
Can anyone describe in a nutshell differences between 3 closures proposals and their current state in Java?
I'm reading about closures which are going to appear in Java 7.
And I'm a bit confused because from one hand there are lots of nice articles which describe new java closures. But from the other ...
10
votes
6answers
883 views
Agile - User Story Definitions
I'm writing a small app for my friend's business, and thought I'd take the opportunity to brush up on some Agile Project Management training I did at the start of the year.
I (and I think, my current ...
9
votes
1answer
1k views
JSON-RPC and Json-rpc service discovery specifications
I'm going to implement JSON-RPC web service. I need specifications for this. So far I had found only one resource that can be called as real specifications:
JSON-RPC 1.0 ...
9
votes
5answers
282 views
How to keep code and specs in sync? - are there good tools
In my team we've got a great source control system and we have great specs. The problem I'd like to solve is how to keep the specs up-to-date with the code. Over time the specs tend to age and ...
9
votes
6answers
295 views
How do you come up with your app's minimum hardware specs?
We develop an enterprise application for which we need to document the minimum hardware requirements for the following target deployments:
Thick-client
Database/application server (where we run ...
8
votes
7answers
353 views
Are your redirects HTTP compliant (absolute URI)?
In the Hypertext Transfer Protocol 1.1 spec, it states for the Location header:
The field value consists of a single
absolute URI.
Location = "Location" ":" absoluteURI
An ...
8
votes
3answers
1k views
Is there a Python language specification?
Is there anything in Python akin to Java's JLS or C#'s spec?
8
votes
3answers
362 views
How can I learn about writing project specs?
I recently read through Code Complete, and it recommends that I create a project specification before actually coding.
The book didn't go very far into detail about what 'specs' are, and how they are ...
8
votes
5answers
429 views
What are some resources for learning to write specifcations?
At work I am responsible for writing specifications quite often and I am also the person who first insisted on getting specifications in the first place. The problem is I am unsure how specifications ...
7
votes
11answers
381 views
What is the difference between readonly property and function in .net?
Apart from an architectural point of view, i'm wondering if there is any difference in .net between a readonly property and a function. Are properties only conceptual wrappers around functions?
...
7
votes
4answers
672 views
C# type parameters specification
Some special CLI types from mscorlib library (ArgIterator, TypedReference and RuntimeArgumentHandle types) cannot be used as generic type parameters to construct the generic types / methods:
void ...
7
votes
12answers
4k views
In agile/scrum, do you write detailed specifications?
In agile (scrum), do you write detailed specifications for your stories/tasks?
Someone said a specification should take 2/3's of your development time.
Is this still 'the agile way'?
7
votes
4answers
1k views
JSON Spec - does the key have to be surrounded with quotes?
Example:
Is the following code valid against the JSON Spec?
{
precision: "zip"
}
Or should I always use the following syntax? (And if so, why?)
{
"precision": "zip"
}
I haven't really ...
7
votes
2answers
972 views
Where is the current version of the Java Virtual Machine Specification?
It would appear as though the only way to get the Java 6 version of the Java Virtual Machine Specification is to take the Second Edition, merge in the Existing Changes and then add on top of that the ...
7
votes
8answers
751 views
Essential techniques for pinpointing missing requirements?
An initial draft of requirements specification has been completed and now it is time to take stock of requirements, review the specification. Part of this process is to make sure that there are no ...
7
votes
17answers
1k views
When reviewing requirements specification what “deadly sins” need to be addressed?
When reviewing requirements specification (that includes functional, non-functional requirements, constraints etc) however small or large it is what are the "deadly sins" committed by authors to look ...
7
votes
5answers
464 views
Easy acceptance testing with specification
I look for a tool/framework to make automatic acceptance-testing. The interface to create new tests should be so easy, that a non-programmer (customer, boss) will be able to add specifications for ...
6
votes
2answers
1k views
What exactly is the HTML5 <command> tag and what is the browser support
I've read the HTML5 spec for <command> and found the information on this element very vague.
I've tried it out and found that it is not working in Chrome (latest version) and it is working on ...
6
votes
2answers
320 views
Is there a language spec for clojure?
Is there a language specification for clojure? Something that precisely defines the lexical syntax and grammar in EBNF or something similar?
The closest thing that I could find is the clojure ...
6
votes
3answers
144 views
Need advice for on creating a new “standard”/“language”
UPDATE: It was suggested in the comments that I create a wiki for this. I have done, you can find it here (should you wish to keep tabs on it and/or contribute).
http://vrs.tomelders.com
I've never ...
6
votes
3answers
687 views
Can a valid Unicode string contain FFFF? Is Java/CharacterIterator broken?
Here's an excerpt from java.text.CharacterIterator documentation:
This interface defines a protocol for bidirectional iteration over text. The iterator iterates over a bounded sequence of ...
6
votes
1answer
46 views
Standard defining json file extensions?
Is there a standard or specification which defines json file extensions?
I've seen .json used - is this just a commonly accepted practice or is it a requirement of some standards body for json saved ...
6
votes
6answers
126 views
What is always 'Standard'? If the spec didn't say it, it should be assumed?
Are there some standards that you consider to be so obvious that they would be assumed to be in any spec?
For example, should hitting escape always cancel a form? Should double clicking a column ...
6
votes
3answers
235 views
BDD/TDD mocking data the tricky way
So a coworker and I are in a fairly heated debate. We are beginning a new project and we are attempting to use BDD. We are both first-timers and don't fully understand what practices should be used. ...
6
votes
12answers
383 views
Software/Platform to Share Specs
What are the software/ Wiki you use to write and share your specs about the developers, testers and management?
Do you use Wiki system, and if so, what Wiki software you use?
Or do you use ...
6
votes
11answers
892 views
How important is it to write functional specs?
I've never written functional specs, I prefer to jump into the code and design things as I go. So far its worked fine, but for a recent personal project I'm writing out some specs which describe all ...
6
votes
5answers
4k views
How do you estimate the cost of developing software requirements?
Many software developers probably would agree that estimation of implementation costs is one of the most complex SDLC issues, even when a good requirements specification is available as a ...
5
votes
3answers
103 views
Formal specifications for Ruby? [closed]
Possible Duplicate:
Is there a formal specification (like the Java Language Specification (JLS)) for Ruby?
I am looking hard for formal specifications and a formal definition of the Ruby ...
5
votes
2answers
234 views
Is the at-sign (@) a valid HTML/XML tag character?
I'm doing some HTML stripping using regular expressions (yes, I know, never parse HTML with regexes, but I'm just stripping it, and I also unfortunately cannot use any external libraries). I'm using ...
5
votes
3answers
237 views
Coding standard specifications for outsourcing?
We are outsourcing some gui development, mostly in flex and actionscript but also some C# backend stuff. The latter mostly so that the functionality can be proved. We are also outsourcing some C++ ...
5
votes
3answers
2k views
html5: Significance of attribute named required in checkbox/radio
On form submission, how could you possibly mark a checkbox/radiobutton as required?
Source of inspiration: Pekka's answer to a question
5
votes
1answer
174 views
QBasic language spec
I have been challenged by a friend to write a QBasic compiler in QBasic.
Where can I find a language specification for the latest version of the language?
5
votes
3answers
143 views
Conceptual reason of the 'A field initializer cannot reference the non-static field, method, or property' CS0236 Error
C# does not allow an instance field initializer to reference another field.
For instance this code is not valid :
class A
{
string s1 = "";
string s2 = s1;
}
because "s2" references "s1".
But ...