0
votes
5answers
69 views
How shall I format my logs?
I'm writing a piece of honeypot software that will have extensive logging of interactions with it, I plan to log in plaintext .log files.
I have two questions, from someone who is …
0
votes
4answers
48 views
Should I keep the package name when extending a class?
I plan to extend a JSF renderer. The package name is oracle.adfinternal.view.faces.renderkit.rich
Should the extended class be in the same package structure:
oracle.adfinternal.vi …
0
votes
3answers
70 views
Why doesnt Regex.Match have a GetEnumerator function?
Regex.Match has a .Success and .NextMatch why doesnt it have a GetEnumerator function?
With my logic it seems easy enough to implement. But it isnt in 3.5 so can anyone tell me w …
7
votes
8answers
325 views
Are “<i>” and “<b>” tags actually deprecated?
I've read that <i> and <b> tags are advised against in favor of <strong> and <em> respectively. However I'm curious though, are these tags actually depreca …
4
votes
3answers
189 views
[C++] Validity of int * array = new int [size]();
int * array = new int [size]();
The operator () allow to set all values of array to 0 (all bits to 0). it's called value-initialization.
Since which version of g++ is it valid …
1
vote
5answers
148 views
What standards do you use? [closed]
This question recently came up in work, posed by directors and filtered down the chain
"What standards do you use on a daily basis?"
(This was actually posed to all engineers not …
1
vote
5answers
50 views
VB/VBA Variable Declaration Coding Standard - White Space
What is the significance of declaring variables in VB/VBA like so:
Private m_sName As String
Private m_lAge As Long
As opposed to;
Private m_sName As String
Pr …
0
votes
3answers
125 views
What is the longest legal URL? [closed]
Possible Duplicate:
What is the maximum length of an url?
What is the maximum length allowed for an URL?
I know that if I am the site's creator I should strive to keep th …
0
votes
2answers
28 views
Drupal page optimization question… which is better?
In terms of:
Speed
Required processing (which will influence speed)
Following standards
Which of the following two methods will be better?
I want to create a general page layo …
0
votes
0answers
51 views
Low power compliance specific to programmers [closed]
For a long time, I know that Energy Star program has been around as a compliance program for electronic gadgets. Mostly related to IT.
If possible, Can we enumerate all such compl …
0
votes
1answer
54 views
Colons in URI possible?
I thought using colons in URIs was "illegal". Then I saw that vimeo.com is using URIs like http://www.vimeo.com/tag:sample.
What do you feel about the usage of colons in URIs?
H …
1
vote
6answers
149 views
Are tables really so bad? [closed]
Possible Duplicates:
Why not use tables for layout in HTML?
Tables instead of DIVs
I'm not talking about for site layout, I'm too accustomed to table-less design now to …
1
vote
3answers
50 views
Block Level Elements inside Inline elements
The W3C Validator tells me I can't put block-level elements inside inline elements. Makes sense...
but what if I'm using CSS to change that block-level element into an inline elem …
4
votes
7answers
249 views
What are the boundaries or scope definitions of HTML5 development?
From reading the mailing lists and looking at the specification I cannot tell what the limits of HTML5 are as a software or programmatic technology. I have seen where they have at …
162
votes
44answers
7k views
How do you handle poor quality code from team members?
I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my …
