0
votes
2answers
12 views
Organizing logs with log4j
Hey all,
I'm currently working on a Linux daemon written in Java. What is the common naming scheme for logs?
Right now I'm thinking of doing something like:
DEBUG = /var/log/mya …
2
votes
2answers
41 views
Linux Daemon written in Java location
I'm currently writing a Java daemon. I'm writing a script that will have the standard daemon commands (start, stop, restart, status) and I'm trying to decide on where things should …
3
votes
3answers
108 views
Best Practice: Documentation Standards
Hello there,
Here is the issue, I need to find/think of documentation standards for our team. We have several needs, we need documentation standards for Requirements Documentatio …
3
votes
4answers
197 views
Is this a standard C++ code?
Hi,
The following simple piece of code, compiles with VC2008 but g++ rejects the code:
#include <iostream>
class myclass
{
protected:
void print() { std::cout << …
1
vote
4answers
168 views
Standards for Web Programming
This is strictly an opinion/experience question for research purposes.
I was wondering what coding standards companies have in place now for Web Developers? (Document formats, c …
0
votes
3answers
40 views
Proper usage of Floats (For those who love CSS standards)?
I would like to know if I'm using floats in the right way (efficiently) in this code bellow.
There are basically 3 columns (with float left, left and right assigned respectively). …
0
votes
4answers
54 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
5answers
75 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 …
10
votes
9answers
746 views
Is it legal to use the increment operator in a C++ function call?
There's been some debate going on in this question about whether the following code is legal C++:
std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
…
0
votes
3answers
73 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 …
1
vote
5answers
152 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 …
4
votes
3answers
200 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
4answers
172 views
Which web service specifications (WS-*) actually make sense to implement?
Hi,
I'm implementing an SOA at a large company, and I'm not sure which web service specifications (WS-*) actually make sense to implement. At a minimum, I'm looking at WS-Addressi …
0
votes
2answers
29 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 …
1
vote
5answers
64 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 …
