|
It just something i noticed here at work. We all use our workstations heavily troughout the day for years and we almost never run into problems. But our various dedicated servers go from bad to worse and fail more and more.
I understand servers do get...
Started by Sander Versluys on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Citrix servers crash a lot; we get lots of out-of-memory errors and a full collection of every software bug on the planet; ... .
Edit: Oooh, with one exception.
Not my experience; unless a server is faulty they almost never crash; workstations crash a lot .
|
|
Some time ago I saw a XML library for C++ which heavily utilized operator overloading, allowing for cute syntax similar to the following:
#include <iostream> #include <some_xml_library/some_header.hpp> using namespace some_xml_library; int...
Started by dalle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Maybe this ?.
I think you're probably looking for Arabica.
|
|
I'm looking to introduce some database denormalization to a heavily normalized system.
I have a large set of databases that have evolved over ten years and are under increasing amounts of load so I'm looking to improve PERFORMANCE and possibly reduce ...
Started by Ryu on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Try to use indexed views.
Try to index heavily and wisely.
Your denormalized tables) using views.
|
Ask your Facebook Friends
|
I wish to send an email from my localhost machine (using PHPs mail function) but I can not do this since I don't have a mail server. In addition, I need to be able to send emails through a network that is heavily firewalled (to what extent I do not know...
Started by Abs on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Maybe there is a (good?) reason which explain why the network where you are is heavily firewalled.
|
|
I have an application written in C++ (makes heavy use of templates) that I need to take to the Java ME platform.
I have two questions:
Are there any good tools to convert C++ code to Java - do some basic stuff so I have a platform to start with. I found...
Started by Neha on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If your original code is heavily templatized - J2ME.
Regardless of whether that was a good idea, it limits what automated translation can do with heavily?
I don't think it's going to be possible, esp.
|
|
Hi
Sorry for the long winded title, but the requirement/problem is rather specific.
With reference to the following sample (but very simplified) structure (in psuedo SQL), I hope to explain it a bit better.
TABLE StructureName { Id GUID PK, Name varchar...
Started by leppie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Depending on your versioning requirements you could do one....
The more sophisticated algorithms provide data ranges around a dimension value to indicate when it's valid .
The data warehousing folks have several algorithms for "slowly-changing dimensions" .
|
|
I find it very hard to figure out what is wrong with my code when using C++ template meta-programming. It might be that I am just not very good at understanding the error messages, but as far as I'm aware I can't resort to putting in print statements ...
Started by Dan on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise, my techniques are usually been to test out as small a section of code as possible until ... .
If you're using Visual C++ 6.0, switch to 9.0 and you'll see a huge jump in the helpfulness of the compiler errors .
You can try using a newer compiler.
|
|
I am trying to figure out a way to display an archive of email newsletters on my client's site. The issue is that the newsletters are full of a zillion inline styles, which is great for seeing them in Outlook or wherever, but they're not looking too hot...
Started by Eileen on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Of course, it ....
Is there a reason why you can't use a modal? That would allow you to force a new request and make the page render how you'd want it to by not applying your general stylesheet while at the same time keeping your user on the desired page .
|
|
I have two hex strings, accompanied by masks, that I would like to merge into a single string value/mask pair. The strings may have bytes that overlap but after applying masks, no overlapping bits should contradict what the value of that bit must be, ...
Answer Snippets (Read the full thread at stackoverflow):
But other than that it should be like this:
outcome = (value1 & mask1) | (value2 & mask2);
const size_t prefix = 2; // "0x" const size_t bytes = 2; const char* value1 = "0x0A"... .
It sounds like |, & and ~ would work?
I don't know what a hexstring is.. .
|
|
This happens in two situations so far: when I use sabnzbd, after it's done downloading a file and is using par2.exe to stitch it together, and just now, when I'm defragmenting a hard drive from a VM I'm running.
Such use of the hard drive causes XP to...
Answer Snippets (Read the full thread at superuser):
|