|
The Skein hash proposed for SHA-3 boasts some impressive speed results, which I suspect would be applicable for the Threefish block cipher at its heart - but, if Skein is approved for SHA-3, would this imply that Threefish is considered secure as well...
Started by bdonlan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The question however.
Putting it positively, if someone finds a weakness in Threefish then this does not imply that Skein is also insecure.
The security of Skein does not imply the security of Threefish.
|
|
If I create an HTTP java.net.URL and then call openConnection() on it, does it necessarily imply that an HTTP post is going to happen? I know that openStream() implies a GET. If so, how do you perform one of the other HTTP verbs without having to work...
Started by jodonnell on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want to do more sophisticated stuff you're probably... .
This class has a setRequestMethod method to specify which HTTP method you want to use .
But if the protocol of the URL is HTTP, you'll get a HttpURLConnection as a return object .
No it does not.
|
|
Bare with me if this question is plain stupid...
When I talk to an developer from the Microsoft ASP.NET world and he uses the word "Webservice", does that word in every case imply a specific data format (XML? SOAP?)?
Or is it just anything you can call...
Started by BlaM on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
In particular, REST and SOAP are quite different....
In my view, it can be anything that's over http/https, and intended for calling by an application rather than a user's browser .
This is a decent overview.
The term Webservice itself is language-agnostic.
|
Ask your Facebook Friends
|
When writing a SQL statement in SQL Server 2005, does the READUNCOMMITTED query hint imply NOLOCK or do I have to specify it manually too?
So is:
With (NoLock, ReadUnCommitted)
the same as:
With (ReadUnCommitted)
Started by GateKiller on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The hint tells SQL Server....
The NOLOCK hint has nothing to do with the index options .
I think you can say that
ReadUnCommitted has the abilities of NoLock
However you cannot say that
NoLock has the abilities of ReadUnCommitted
According to Kalen Delaney.. .
|
|
Does including DISTINCT in a SELECT query imply that the resulting set should be sorted?
I don't think it does, but I'm looking for a an authoritative answer (web link).
I've got a query like this:
Select Distinct foo From Bar
In oracle, the results are...
Started by S Ennis on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want of circumstances in which a DISTINCT in Oracle does not imply a sort, the most important of which.
A sort for that calculation does not in any way imply that the result set will be sorted.
|
|
I'm writing some library code, and classes that use that code are required to have two attributes specified (one custom attribute and one from .NET).
It's a bit of a hassle to document this requirement and copy-and-paste both of those attributes onto ...
Started by Eric W on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I do not believe there is a way to imply secondary attributes or to add attributes at runtime.
|
|
In day to day programs I wouldn't even bother thinking about the possible performance hit for coding against interfaces rather than implementations. The advantages largely outweigh the cost. So please no generic advice on good OOP.
Nevertheless in this...
Started by boris callens on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Interfaces, in a number....
Interfaces generally imply a few hits to performance (this however may change depending PC in the code segment.
It would imply a performance hit
The designer should be able to prove his opinion.
Always takes longer.
|
|
When you say "thin data access layer", does this mainly mean you are talking about writing your SQL manually as opposed to relying on an ORM tool to generate it for you?
Started by pepper on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
That probably depends on who says it, but for me a thin data access layer would imply.
|
|
I am doing A/B testing and I am facing Simpson's paradox in my results (day vs month vs total duration of the test).
Does it mean that my a/b testing is not correct/representative? (Some external factor impacted the testing?) If it is a sign of problem...
Started by Toto on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not actually caused by external factors or ....
Actually, the ginal results is a weighted average for the results from each group (and on this weighting, the paradox may come up) .
The Simpson's paradox only occurs when your group sizes are different .
|
|
Is it possible to express 1 or 0 as a bit when used as a field value in a select statement?
e.g.
In this case statement (which is part of a select statement) ICourseBased is of type int.
case when FC.CourseId is not null then 1 else 0 end as IsCoursedBased...
Started by Damien McGivern on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Cast ( case when FC.CourseId....
You will have to cast each value individually.
Unfortunately, no.
Actually, that probably makes it less readable in this case .
No, but you could cast the whole expression rather than the sub-components of that expression .
|