2
votes
3answers
43 views
Using RuntimeExceptions and CheckedExceptions
What are you views on using CheckedExceptions and RuntimeExceptions in an application ? I've been advised to use a combination of both and, as far as I understand, you can have a chain of …
0
votes
1answer
18 views
Managing URL Redirects when you Modify Pretty URLs - Best Practices
What are the standards for managing URL redirects if you base your URL's off properties of the data that might change a few times, like the "title"?
I have a website with lots of images and I want to …
1
vote
1answer
44 views
Best practice for crash reporting in C# my application
I need to implement crash reporting framework on my C#(WPF) application, so i need full call stack,What would you guys suggest for doing this.
4
votes
20answers
435 views
Is there a language that encourages good coding practices?
While I love PHP I find its biggest weakness is that it allows and even almost encourages programmers to write bad code.
Is there a language that encourages good programming practices? Or, more …
8
votes
17answers
420 views
Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?
Just out of curiosity and lack of a definite answer...
I was just looking at some data that is sent from a 3rd party to us, and their "Gender" field is a [0,1] denoting either a Female (0) or a Male …
0
votes
2answers
36 views
Best place to coerce/convert to the right type in Python
I'm still fairly new to Python and I'm trying to get used to its dynamic typing. Sometimes I have a function or a class that expects a parameter of a certain type, but could get a value of another …
3
votes
4answers
47 views
What Active Directory field do I use to uniquely identify a user?
I have an Asp.net MVC project authenticating through AD. I would like to store audit information in tables for the current logged in user. What should I be storing in the database? I am currently …
4
votes
3answers
104 views
How do you synchronize server-side and client-side code?
Something I've been learning (and teaching) in Software Engineering is that code duplication is the root of all evil. On the other hand, I find it quite hard to explain how this concept should be …
0
votes
2answers
39 views
Sorting arrays within objects and using user input to select objects
E2A
The Code will probably claify things:
http://pastebin.com/d43446384 - Team class
http://pastebin.com/d63ae5281 - League Class
http://pastebin.com/d4dd519d9 - Driver (Contains main method)
I …
0
votes
7answers
38 views
Does anyone have any good SSIS Best-Practices tips and suggestions?
I would interested to hear from other developer tip on SSIS best practices, dos and don'ts, pitfalls and tricks, etc.
I'm trying to introduce a few here at my company.
4
votes
8answers
79 views
Low cost ways of integrating user experience design?
As Jeff Atwood reminds us, the ultimate metric of developer success is the number of users our products. Building software that people actually want to use involves creating an enjoyable experience …
1
vote
5answers
276 views
is it good programing practice to put code statements in braces?
I have never seen this being done anywhere in all the source code i've read in my life. If it is considered bad programing practice, there has to be a reason for it which i fail to understand. Also, I …
0
votes
1answer
16 views
Context-sensitive layout - change visibility of set of WPF tools based on a combobox
I have a UI issue with layered editing where a different set of tools needs to be visible depending on the Combobox selecting the layer and am stewing over the idiom to use. The tools should not be in …
2
votes
3answers
52 views
Where to put system documentation?
Where would you put documentation for a team web project?
Our system is based on ASP.NET/C#, but I guess this problem is applicable to many other solutions/languages.
Currently, we have the …
2
votes
2answers
27 views
Mobile Site SEO - Playing Nicely with Google
If I have an iPhone version of my site, what are the things I need to make sure of so it doesn't interfere with SEO?
I've read quite a bit now about cloaking and sneaky javascript redirects, and am …
