2
votes
5answers
887 views
How to initialize log4j properly?
After adding log4j to my application I get the following output every time I execute my application:
log4j:WARN No appenders could be found for logger (slideselector.facedata.Fac …
0
votes
1answer
25 views
run unit tests and coverage in certain python structure
Hi,
I have some funny noob problem.
I try to run unit tests from commandline:
H:\PRO\pyEstimator>python src\test\python\test_power_estimator.py
Traceback (most recent call la …
6
votes
13answers
253 views
When should one use interfaces?
I know that an interface does not have a body just a method definition. But when should I use interfaces? If I provide someone a set of interfaces with no body, why would they feel …
3
votes
2answers
40 views
Very basic SPARQL beginner problem (or RDF modelling problem)
Hi to you all (and thanks for this great website since there doesn't seem to exist a forum on beginner-SPARQL-questions),
i hope someone can help me on this probably totally easy …
2
votes
4answers
126 views
Objective-C: what is private what is not?
Why are people using
@interface ViewController : UIViewController
{
@private
UIButton* button_;
}
@private declarations in public headers? Declaring a variable inside an i …
1
vote
6answers
137 views
Is there any difference between class imports and package imports in Java?
This is probably a dumb question but thought to ask it.
In java we can either import single classes as well as the whole set of classes (a package).
As an example
import java.ut …
1
vote
2answers
105 views
How do you tell the C# compiler that a symbol is a type and not a variable when they share the same name?
Hi,
When you have a local variable named the same as a type, is there any way to tell the compiler that the symbol you have given is a type or a variable? For instance consider ( …
3
votes
10answers
266 views
What’s the difference between “LIKE” and “=” in SQL ?
Is there any difference between:
SELECT * FROM users WHERE username="davyjones"
and
SELECT * FROM users WHERE username LIKE "davyjones"
(I think I've bungled up the syntax... …
0
votes
1answer
51 views
Reading a Wordpress function description
I want to be able to understand the standard function description that is provided for PHP functions. In particular, could someone explain the following example from here:
Usage
…
2
votes
2answers
316 views
initialise a list to a specific length in python
How do I initialise a list with 10 times a default value in Python?
I'm searching for a good looking way to initialize a empty list with a specific range.
So make a list that cont …
0
votes
4answers
201 views
Java double initialization
In what way are these statements different?
double dummy = 0;
double dummy = 0.0;
double dummy = 0.0d;
double dummy = 0.0D;
4
votes
3answers
492 views
What is the best way to get the last element of a list in python?
I found many different ways of getting the last element from a list in python
alist[-1]
alist[len(alist) -1]
Which is the best way to do this?
0
votes
0answers
36 views
SOAP Message parameters - how to send strings and schemas
Hi
I'm quite new to SOAP. I need to understand something failry basic I'm sure.
First, the info:
This method returns a list of all items in a database where a field matches a v …
3
votes
4answers
164 views
Are const arrays declared within a function stored on the stack?
if this was declared within a function, would it be declared on the stack?
(it being const is what makes me wonder)
void someFunction()
{
const unsigned int actions[8] =
…
1
vote
1answer
32 views
Getting Started in Firmware devlopment
Hi,
I am a software development guy. Oflate I was thinking of trying out some firmware development, as the company I work for is trying to enter that domain.
I have many question …
