Tagged Questions
rules or instructions that show or tell how something should be done
40
votes
10answers
2k views
Event Signature in .NET — Using a Strong Typed 'Sender'?
I fully realize that what I am proposing does not follow the .NET guidelines, and, therefore, is probably a poor idea for this reason alone. However, I would like to consider this from two possible ...
39
votes
7answers
9k views
Android user interface guidelines
Anyone know of a user interface guidelines document for Android applications? Looking for something similar to Apple's or Gnome's.
38
votes
14answers
3k views
What guidelines for HTML email design are there?
What guidelines can you give for rich HTML formatting in emails while maintaining good visual stability across many clients and web based email interfaces?
An unrelated answer on a question on Stack ...
26
votes
10answers
894 views
Do java's Inner classes pose a security risk?
Recently the security team on my project released a secure code guidelines document, designed to be used as part of our code reviews. The first thing that struck me was an item that said "Do not use ...
25
votes
10answers
2k views
General advice and guidelines on how to properly override object.GetHashCode()
According to MSDN, a hash function must have the following properties:
If two objects compare as equal, the GetHashCode method for each object must return the same value. However, if two ...
20
votes
13answers
1k views
What are practical guidelines for evaluating a language's “Turing Completeness”?
I've read "what-is-turing-complete" and the wikipedia page, but I'm less interested in a formal proof than in the practical implications of being Turing Complete.
What I'm actually trying to decide ...
20
votes
30answers
4k views
Best rule for maximum function size?
In another question, a popular answer suggested that large functions demonstrate poor form.
How large would you let a function get before you broke it up?
(This could be in lines of code or a more ...
16
votes
8answers
2k views
SPWeb.Site, should you call Dispose() on it?
Updated 06/08/2009 15:52: Short answer NO. Original question:
I can't find any reference which gives guidance on SPWeb.Site regarding disposing. I've gone through some of the more popular best ...
15
votes
4answers
2k views
MVC done right - Examples
I am new to both the MVC pattern and PHP frameworks. I picked up a copy of CodeIgniter for Rapid PHP Application Development, but the author does not use the M part of MVC and I can't seem to get his ...
14
votes
5answers
789 views
Are Icon design UI guidelines still valid?
Found UI guidelines of Launcher icon design http://d.android.com/guide/practices/ui_guidelines/icon_design.html but System Icons in recent Android releases doesn't seem to follow these guidelines ...
13
votes
6answers
535 views
Always create classes in C++?
Coming from a Java background it is new for me to deal with the choice of creating a class or just implementing the functions I might need. Normally this is no question when it comes to modeling ...
13
votes
5answers
282 views
Recommendations for 'C' Project Architecture Guidelines?
Now that I got my head wrapped around the 'C' language to a point where I feel proficient enough to write clean code, I'd like to focus my attention on project architecture guidelines. I'm looking ...
13
votes
2answers
1k views
Windows design guidelines and Visual Studio
Does anyone have a good strategy for adhering to Windows Design Guidelines with Windows Forms development in Visual Studio (2008)
For example just tring to adhere to font recommendations in Windows ...
12
votes
1answer
1k views
Android status bar expects icons of size 25x25dp while guidelines recommend 32x32dp. Who is wrong?
According to android icon design guidelines (here, see table #1), developer needs to provide status bar icons of next sizes:
Status Bar 24 x 24 px (LDPI) 32 x 32 px (MDPI) 48 x 48 px (HDPI)
...
12
votes
6answers
717 views
Deployment and Maintainence guidelines and strategies for large scale web applications
I work on a small scale application (about 5000 users), but we do maintain some important user preference data. Whenever we release an upgrade we check if there are users online (we do it after hours ...
11
votes
5answers
262 views
Correct way return a string from a function
I have a function that is given two integers and returns a string. Right now I have this:
char* myfunc( int a, int b, int* len )
{
int retLen = ...
char* ret = malloc( retLen + 1 );
if ( ...
11
votes
3answers
402 views
Where is the source for Niman's 13 Minimally Sufficient Commandments?
I have a page (page 1), dated February 2, 1989 that my former boss presented to me, outlining Niman's 13 Minimally Sufficient Commandments for programming. (He recognized that they were dated, making ...
10
votes
21answers
1k views
Guidelines to improve your code
What guidelines do you follow to improve the general quality of your code? Many people have rules about how to write C++ code that (supposedly) make it harder to make mistakes. I've seen people insist ...
9
votes
3answers
457 views
Delphi GUI Design Specifications and Guidelines
I was looking for a way to standardize my applications layout to boost my productivity since I am wasting too much time positioning visual elements on every form and dialog. I started looking around ...
9
votes
7answers
574 views
Why is it better to use readonly properties verses functions?
I see little functional difference between using a property
public readonly property foo as string
get
return bar
end get
end property
or a function
public function foo() as string
...
8
votes
3answers
172 views
Equivalent to designer guidelines in code
The VCL form designer offers pink guidelines for aligning controls at their respective text base lines:
But as far as I can tell this doesn't work for labels and checkboxes. Update: It works for ...
8
votes
1answer
353 views
“noexcept” vs “Throws: nothing”
While going through the last edits of the C++0x Working draft I found a lot of
removal of the keyword noexcept
addition of textual Throws: nothing at the same place
and vice versa. Just some ...
8
votes
10answers
1k views
Too many constants?
Is there such a thing as too many constants in a project? What are some general rules of thumb about where the use of constants starts to become inappropriate and should be refactored? Perhaps moving ...
8
votes
4answers
269 views
OS user interface guidelines: when to ignore?
A line in this answer, "Get used to using the Mac on its own terms", took me aback a little bit, and made me start to think about something I pondered ages ago and still haven't come up with a good ...
8
votes
7answers
10k views
How to choose and optimize oracle indexes?
I would like to know if there are general rules for creating an index or not.
How do I choose which fields I should include in this index or when not to include them?
I know its always depends on the ...
7
votes
6answers
269 views
Python name mangling: When in doubt, do what?
In other languages, a general guideline that helps produce better code is always make everything as hidden as possible. If in doubt about whether a variable should be private or protected, it's better ...
7
votes
10answers
568 views
Out parameters and pass by reference
I have joined a new group that has coding guidelines that (to me) seem dated.
But just rallying against the machine without valid backup is not going to get me anywhere.
So I am turning to SO to see ...
7
votes
5answers
1k views
Default checkbox state: checked or unchecked?
I have an application settings page with a bunch of checkboxes. How should I choose the default checked state of the checkboxes?
I see the following options:
Always set the default state to ...
7
votes
11answers
825 views
What should coding guidelines do, and are there any good examples of guidelines?
What are some good examples of coding guidelines. I'm not really looking for anything specific to a single language.
But what should I be doing/evaluating as I write coding guidelines? Such as how ...
7
votes
19answers
1k views
How do you format your Compound Statements in Delphi and C#?
As a long time Pascal and Delphi developer, I always line up my begin and ends thus :
begin
if x = y then
begin
...
...
end
else
for i := 0 to 20 do
begin
...
...
6
votes
6answers
289 views
svn best practices for dealing with coworker
I'm on a small team of about 6 people. Most of the group is careful to make sure their commits don't break trunk and use short-lived feature branches when they need to work on something for more than ...
6
votes
1answer
135 views
.NET naming convention for conversion methods: ToType() or AsType()?
Is there any semantic difference between ToXXXX conversion methods and AsXXXX conversion methods in the .NET framework?
Examples of such methods are Object.ToString and ...
6
votes
12answers
343 views
How do you create a GUI if you are not graphic savvy?
Imagine that you have the next silver bullet software idea and you are a terrific programmer but you don't know a thing about Photoshop and colors stuff.
Do you hire a graphic? Do you steal from ...
6
votes
3answers
352 views
Visual guide to System.Windows.SystemColors
All throughout the Windows UX Guide it is suggested to use the appropriet SystemColors within an application to ensure that an application's default theme is consistent with teh rest of the system. I ...
6
votes
5answers
244 views
Books on designing and implementing a Delphi application [closed]
I would like to broaden my Delphi horizons by reading a book about creation of Delphi applications. So far I have read books about Delphi mostly from Marco Cantu (Delphi 6-2009) or The Tomes of Delphi ...
6
votes
4answers
3k views
Recommended number of lines per Java class file
When getting metrics from a project, if you want to evaluate if a class is way too big, apart from other things, you can look at the number of lines.
For Java in particular, what would you say a ...
6
votes
5answers
731 views
Type/Namespace alias conventions in C#
Are there are any established naming or coding conventions for defining namespace or type aliases in C#?
For those who are unaware, the C# language has a feature where aliases can be defined local to ...
6
votes
4answers
571 views
evaluating cost/benefits of using extension methods in C# => 3.0
In what circumstances (usage scenarios) would you choose to write an extension rather than sub-classing an object ?
< full disclosure : I am not an MS employee; I do not know Mitsu Furota ...
6
votes
5answers
693 views
C#: How should ToString() be implemented?
The problems are:
GUI libraries like to use ToString as a default representation for classes. There it needs to be localized.
ToString is used for logging. There it should provide programming ...
6
votes
9answers
442 views
Should a cancel button ask for confirmation?
If a user clicks a cancel button should it pop up a dialogue asking for confirmation?
If so, should this be all the time, or only when there are unsaved changes on a form?
6
votes
2answers
1k views
Key-Value Stores vs. RDBMs vs. “Cloud” DBs (SDB)
I'm comfortable in the MySQL space having designed several apps over the past few years, and then continuously refining performance and scalability aspects. I also have some experience working with ...
6
votes
16answers
664 views
Do you add information to the top of each .hpp/.cpp file?
When creating a new C++ header/source file, what information do you add to the top? For example, do you add the date, your name, a description of the file, etc.? Do you use a structured format for ...
6
votes
7answers
5k views
What are the best practices for handling Unicode strings in C#?
Can somebody please provide me some important aspects I should be aware of while handling Unicode strings in C#?
6
votes
14answers
553 views
Code formatting: is lining up similar lines ok?
I recently discovered that our company has a set of coding guidelines (hidden away in a document management system where no one can find it). It generally seems pretty sensible, and keeps away from ...
5
votes
7answers
151 views
Which data-structure is used widely in C?
A couple of days ago I asked myself which data-structure I should in a function in C.
I usually write in C++ and the choice would have fallen to std::vector.
There a some possible choices:
a static ...
5
votes
8answers
282 views
Should I favour IEnumerable<T> or Arrays?
In many projects I work on, whenever I have to return a read only collection, I use the IEnumerable<T> interface and make it type specific like so:
Public ReadOnly Property GetValues() As ...
5
votes
1answer
238 views
Good guidance for when to use which log level (info, warn, debug, etc) for application logging
Does anyone have any good guidance on when to use which level for application logging?
These levels are (roughly) based on the old syslog message levels:
0 Emergency: system is unusable
1 Alert: ...
5
votes
2answers
158 views
Can someone point me to a good migration guide from C# to Java?
I am a seasoned .Net developer and have a good grasp of OOP concepts. I will be working on a Java project in the near future and was interested in knowing if someone could point me to a good ...
5
votes
3answers
448 views
iPhone Lite version - what is allowed?
I'm scratching my head over this.
I have a moderately successful app which has a free "LITE" version in addition to the full one. This is a utility app, not a game with levels, and I'm having trouble ...
5
votes
3answers
241 views
How to stucture JavaScript Code in Large Applications
I work on an application which now has a rather large JavaScript code base. It's got code we have written and files for the various libraries (jQuery) and plug-in being used.
This has grown to be an ...