|
If I want to host a site developed with Silverlight does it require any additional cost or special web server? Or i can just host it on my current ASP.NET hosting provider?
Started by sixty_four_bit on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
ASP.NET is not needed either, you could just.
There are no additional costs nor anything special needed on the server.
|
|
How do I update additional data in HABTM tables.
For Example: I have movies , people and HABTM movies_people tables, but there is additional persontype_id field in movies_people table which indicates role of this person in that particular movie. How do...
Started by totocaster on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Instead of just a movies_people table, you'd have an additional model, called somthing like this that I could ever hope, so for additional help, I'd take a look at it.
For this reason.
|
|
I've read a lot about mergesort recently and I wonder if there is a way to do a mergesort without using at least one additional array. Is it possible?
Started by Helper Method on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
According to Wikipedia it is indeed possible....
This paper describes an in-place merge sort.
Apparently, it is.
If not you'll just be overwriting the stuff you already sorted .
No, you'll always need an extra data structure to merge the sorted elements to .
|
Ask your Facebook Friends
|
I have set up an Amazon EC2 instance and am able to SSH into it. Can anyone please tell me how I could allow additional users to SSH into this instance from a different location?
Max.
Started by Max on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Create additional users at a *nix command prompt
useradd
Create a new rule in the security group.
|
|
I read some Books Online about recovery/backup, one stupid question, if I use full database backup/full recovery model, for backup operation itself, will it generate any additional transaction log to source database server? Will full recovery operation...
Started by George2 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The reason that the transaction....
The trade off is that you can restore to the point of recovery .
Keeping your DB in Full Recovery mode can make your transaction logs grow to be very large .
I'm not sure I completely understand your question, but here goes .
|
|
I am trying to open an additional mailbox in Outlook 2003 for one of my users. She already has three additional mailboxes in the list (found in the advanced account settings), and these work fine. When I click the "Add..." button, it immediately reports...
Started by Jon B on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
If so it sounds like the problem could.
Plus the additional mailboxes, see if you get the same error.
|
|
I've noticed enums introduce many additional class files (Class$1) after compilation bloating the total size. It seems to be attached to every class that even uses an enum, and these are often duplicated.
Why does this occur and is there a way to prevent...
Started by The Feast on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
For each instance,
However, this does not account for additional class files generated for users named Operation you will get additional class files, excluding the obvious Operation.class.
|
|
I have a field that autocompletes on person name, so it has options like "Obama, Barack", "Lincoln, Abe", etc.
These people also have additional attributes, say "Birthplace" and "Phone number". When a user picks an option from the autocomplete, I would...
Started by Horace Loeb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Var persons = { abe: { name:....
I'm not familiar with the autocomplete plugin but: Why not download all the data from the server and then only feed the autocomplete what it needs .
Use YUI :)
Handles all that, completely customizable out of the box .
|
|
Often one wants to print out additional information if an assert fails. A way to do that is this:
assert(vec.size() > i || !(std::cerr << "False: " << vec.size() << ">" << i))
This way the actual sizes are printed when the...
Answer Snippets (Read the full thread at stackoverflow):
== 3' Failed @ .\main.cpp:32
What do people use instead to print additional information.
|
|
Flex Builder allows additional compiler arguments to be set in the compiler options, under properties. It sets the argument;
-services ".../services-config.xml"
Is there a way to set the same argument when using the ant task mxmlc?
Cheers,
Mike
Started by Mike on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Example:
<exec executable="${mxmlc.exe}" dir="${basedir}"><arg line="-source-path '${flex2sdk.locale.dir}'" /> <arg line="-locale....
You could always use the task with subnodes if you still are unable to find it in the docs .
Not that I know of.
|