|
Reading through some of the questions here, the general concensus seems to be that there to continues to be an enourmous amount of COBOL code "out there", not just because it's a nightmare to refactor or re-code, but simply because for a certain market...
Started by davek on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Wiki/Packed%5Fdecimal "Packed Decimal"
On OS/360 and its descendents there was about a ratio.
|
|
Hello!
I need a function which takes a line (known by its coordinates) and return a line with same angle, but limited to certain length .
My code gives correct values only when the line is turned 'right'
(proven only empirically, sorry).
Am I missing ...
Started by ivan_ivanovich_ivanoff on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Normalize it by dividing my its magnitude then multiply by a factor of the desired.
Given it as a vector.
)^2 + (y2-y1)^2)
The unit vector from point 1 to point 2 equals v12 divided by its magnitude.
|
|
I have setup a site through Apache, let's call it http://example.com . The regular site works fine and I can also access it by its IP number http://200.x.x.x . I can also access the secured version at https://200.x.x.x . However, https://example.com doesn...
Started by Thierry Lam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Whatever's doing the IP address translation from 200.x.x.x to 10.x.x.x is only doing it for port 80, not port 443. .
One possibility is that SSL requires a unique IP address (not just domain name) per vhost, usually .
|
Ask your Facebook Friends
|
I have a Variable class and and 3 subclasses: VariableBool, VariableLong and VariableDouble. Each subclass defines only a value member of the type of the suffix.
Now, I need to transfert objects based on these classes over WCF. I have multiple clients...
Started by Julien Poulin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Types by using KnownType attribute and its method
[DataContract()] [KnownType( "GetKnownType.
|
|
I'm working on a game where I create a random map of provinces (a la Risk or Diplomacy). To create that map, I'm first generating a series of semi-random points, then figuring the Delaunay triangulations of those points.
With that done, I am now looking...
Started by Macguffin on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
So, the edges of the Voronoi diagram are along the perpendicular bisectors of the ... .
I'm pretty sure that 'triangle' http://www.cs.cmu.edu/~quake/triangle.html can generate the voronoi
The Voronoi diagram is just the dual of the Delaunay triangulation .
|
|
Of the following two options for method parameter names that have a unit as well as a value, which do you prefer and why? (I've used Java syntax, but my question would apply to most languages.)
public void move(int length)
or
public void move(int lengthInMetres...
Started by dave on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you think the names are becoming....
You'll be glad when you look at or use the code in 6 months time, or when someone else has to look at your code .
I would recommend making your parameter (and method) names as clear as possible, even if they become wordy .
|
|
Yes.. that title goes with dora the explorer map song.
anyhow, I was just curious if anyone could point me to the most up todate map pack...
and I guess i have sort of a suggestion for the devs. / question.
Lately so many changes have been made to the...
Started by AguaRush on
, 6 posts
by 4 people.
Answer Snippets (Read the full thread at istaria):
You know its the
old age.
It and practically running for fear of the runp* XDDD
i totally forgot. .
|
|
I got the Korg Kronos. I dont think its radioactive and its not made in China! its still in my truck. cant wait to play it.
Started by Klondo on
, 20 posts
by 9 people.
Answer Snippets (Read the full thread at harmony-central):
I think there might have a problem, it'll likely be under... .
Its really cool to load it into Kronos and then add effects to it.
Your thread? are you serious? you dont know what it is? Its in my living room now still in the box i sampled it.
|
|
WIN When Its Snowing...WE Always WIN When Its Snowing!
Started by johnnywarksmoustache on
, 12 posts
by 7 people.
Answer Snippets (Read the full thread at not606):
Despite PJ's flaws he seems to know when its right to introduce players into the team and also.
Indeed JWM, its nice to have a post from you that I completely agree with, I hope deal.
|
|
Can the iframe access its parent if i changed its src to "about:blank" after loading it in the parent page?
Note: the iframe is in another domain not the same as the parent page.
Started by Amr ElGarhy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you change the src attribute of the frame to about:blank the content of that frame will be replaced with the blank document... .
This is known as cross-site scripting (XSS) and is considered a security risk, so most browsers prevent it .
Generally, no.
|