Tagged Questions

0
votes
4answers
36 views

Is   allowed to make space in terms of semantic, web standards and accessibility and cross browser compatibility?

Is   allowed to make space in terms of semantic, web standards and accessibility and cross browser compatibility?
6
votes
8answers
159 views

How Non-Member Functions Improve Encapsulation

I read Scott Meyers article on the subject and quite confused about what he is talking about. I have 3 questions here. Question 1 To explain in detail, assume I am writing a sim …
1
vote
4answers
103 views

CSS rounded corners done quickly: is this an awful technique?

Here's a quick and dirty round corners technique I've been playing around with. <!-- assuming the div isn't statically positioned --> <div> <img src="box_TL.png …
10
votes
17answers
417 views

Besides “treat warnings as errors” and fixing memory leaks, what other ideas should we implement as part of our coding standards?

First let me say, I am not a coder but I help manage a coding team. No one on the team has more than about 5 years experience, and most of them have only worked for this company.. …
9
votes
11answers
177 views

Are comments to show what version code was added/modified for useful?

Some of the developers on the project I work on have a habit of commenting their code to show which version of the product it was added for, e.g. // added for superEnterpriseyWond …
1
vote
6answers
82 views

maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..?

I am newbie with maven. Other than its use for managing dependencies, I am finding little use for it. It was getting so hard to write up a pom.xml, that I generated a ant buil …
341
votes
599answers
117k views

What real life bad habits has programming given you? [closed]

Programming has given me a lot of bad habits and it continues to give me more everyday. But I have also gotten some bad habits from the mindset that I have put myself in. There sim …
2
votes
5answers
117 views

C# polymorphism issue

Hi, I have a BL class named:A , DTO class named:DTO . Now assume I want to add some more properties in my DTO. So I derive a new DTO class from my existing DTO and add properties …
2
votes
2answers
47 views

Objective-C member initializiation of autoreleased objects

Hey so if I have some property like @interface MyClass { NSArray* myArray; } @end @property (retain, nonatomic) NSArray* myArray; In my init method should I do something lik …
0
votes
3answers
35 views

reducing mysql statements that differ only in ORDER BY field name

I'm trying to sort data by different fields ascending and descending. But I have different mysql pdo statements for the 4 fields I have (8 queries total): $stmt1 = $po->prepare …
2
votes
2answers
37 views

How to use SQL from asp.net?

Building a relatively simple website, and need to store some data in the database (mainly authentication, but there's some per-user stuff). I've worked on a couple of websites prev …
29
votes
25answers
3k views

Best Practice: Should functions return null or an empty object?

What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other? Consider this: public …
0
votes
1answer
17 views

Script references in MasterPage or individual pages?

I there any benefit to putting the javascript references in individual pages vs the master page in terms of number of reloads and data transfer?
2
votes
5answers
97 views

Problem having lots of databases?

We have built a hosted web application, that is developed in a way that each customer is connected to an individual database. This application is a web plattform/publishing system, …
0
votes
2answers
49 views

Techniques for sharing a config between two apps?

My app is split up into a configuration tool which writes the configuration and a viewer which just reads and uses settings from the configuration. What techniques for storing th …

1 2 3 4 5 403 next
15 30 50 per page