2
votes
3answers
79 views
What are the best practices for dealing with the Back Button in IE (and Firefox)
I know this in old issue but I can't figure out the best practices for dealing with the back button.
I'm writing a web application with lots of data movement between the browser a …
5
votes
4answers
61 views
De-normalization for the sake of reports - Good or Bad?
What are the pros/cons of de-normalizing an enterprise application database because it will make writing reports easier?
Pro - designing reports in SSRS will probably be "easier" …
0
votes
4answers
84 views
strcat() vs sprintf()
What would be faster? This:
sprintf(&str[strlen(str)], "Something");
or
strcat(str, "Something");
Is there any performance difference?
0
votes
0answers
21 views
Why should I keep the cellspacing attribute in the markup?
I was looking for some resources about the use of CSS instead of tables and reached this presentation by Douglas Bowman that seems to be a 'classic'. I dug into it and found this s …
0
votes
6answers
61 views
Best practices for how to Layer a ASP.NET/C# web app
I have been working on an ASP.NET/C# web app for some time and its size has gotten way to large for how it is being programmed. It has become very hard to maintain and getting hard …
0
votes
4answers
53 views
Iterating through a list of lists?
I have Items from a certain source (populated from somewhere else):
public class ItemsFromSource{
public ItemsFromSource(string name){
this.SourceName = name;
Items …
1
vote
3answers
25 views
Best way to incorporate legacy data
I am working on a price list management program for my business in C# (Prototype is in Win Forms but am thinking of using WPF for the final ap as a MVVM learning exercise).
Our EM …
4
votes
8answers
96 views
How to make documents evolve?
Hi All:
We programmers write code and we write comments to code, but we rarely write documents. But IMO writing documents is important and time-saving since when you've written a …
2
votes
3answers
24 views
What are some methods of analyzing a website for user experience, usability, and accessibility?
I'm a recent graduate who is looking to get a job doing user experience. Next week, I have a technical interview in which I will be given a website and will have to talk about its …
1
vote
1answer
19 views
Running multiple sites from the same rails codebase?
I have a client that wants to take their Rails app that has been successful in one niche, and apply it to another similar niche. This new instance of the app is going to start out …
1
vote
2answers
72 views
how to remove partial duplicates from a data frame?
I'm new to R and it looks like it is a good language to allow my colleagues to their job in a quick way, but I have to prepare the data for them and I want to do it "the R way".
t …
0
votes
2answers
33 views
Viewstate of ascx lost between postbacks
In my ASP.NET application, I am loading an .ascx dynamically using LoadControl, using the following pattern:
var ctrl = LoadControl("/path/to/control.ascx");
((ControlType)ctrl).S …
6
votes
9answers
166 views
Should we be adding comments after code blocks, rather than before?
This post (When not to comment code) has a great discussion about commenting styles.
I agree with the sentiment to commenting the intent of the code ("why") rather than the "what" …
23
votes
25answers
2k views
Why should exceptions only rarely be used?
Possible Duplicate:
Why is exception handling bad?
I often see/hear people say that exceptions should only be used rarely, but never explain why. While that may be true, r …
3
votes
3answers
61 views
When would you use a List<KeyValuePair<T1, T2>> instead of a Dictionary<T1, T2>?
What is the difference between a List of KeyValuePair and a Dictionary for the same types? Is there an appropriate time to use one or the other?
