|
Are there any useful and reliable, keyword being reliable here that contain sql server scripts, especially for viewing the statistical usage of the database. I know there are a lot of sql server sites that have scripts, but you never know if they are ...
Started by Xaisoft on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://wiki.lessthandot.com/index.php/Category%3AMicrosoft%5FSQL%5FServer%5FAdmin
always read the code in all scripts....
I know the folks who put together this site and they are all very smart capable people, some of who work on extremely large databases .
|
|
Having read a question about the reliability of the PHP time function, I wondered if there was some kind of 'reliable' web API to retrieve time from.
Started by xtofl on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But if you use something similar....
It's usually used for synchronization rather than obtaining the time once though .
It's a well-established protocol with plenty of freely accessible servers .
Does it have to be a web API? Typically you'd use NTP instead .
|
|
Some games today use a network system that transmits messages over UDP, and ensures that the messages are reliable and ordered.
For example, RakNet is a popular game network engine. It uses only UDP for its connections, and has a whole system to ensure...
Started by Ricket on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You send a packet it? So you end up writing... .
Reliable? I don't think so.
Well...
So I changed to the "reliable" TCP.
Specialized things.
Is a general purpose reliable system UDP +whatever is a special purpose reliable system.
|
Ask your Facebook Friends
|
Is HTTP partial GET a reliable mechanism? If it is, how come it seems like modern browsers still start from the beginning instead of resuming the download?
Started by Jian Lin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
...), it is reliable..
|
|
I can think of several ways, eg.
Convert.ToInt32(floatingPoint) - floatingPoint == 0; Math.Truncate(floatingPoint) - floatingPoint == 0; floatingPoint % 1 == 0; Math.Floor(floatingPoint) == floatingPoint; //etc...
But which method is most reliable?
Started by ilitirit on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
There is no generally reliable method.
1) ...
Specifically, any int that is greater than 2^24 cannot be represented exactly:
if (Math.Abs(Math.Round(floatingPoint) - floatingPoint) < 0 .
That is truly reliable .
|
|
I'm looking for a reliable free or cheap DNS service.
I've used FreeDNS at FreeDNS.Afraid.org in the past, but it doesn't always seem reliable... sometimes people say they can't access my website (sometimes I can't access it either) by domain name, and...
Answer Snippets (Read the full thread at serverfault):
It's quick and easy and the "undocumented.
I guess this should fit your definition of reliable whatever reliable) to Everydns.net and so far I couldn't be happier.
Now and never had any problem with them.
|
|
What is the mos reliable way if I want to check if the variable is null or is not present?.
There are diferent examples:
if (null == yourvar) if (typeof yourvar != 'undefined') if (undefined != yourvar)
Started by David García González on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Then again, your question shows perhaps some lack of clarity... .
If you really want to check whether something is explicitly null, use the === operator .
You don't want to use == , or a variety thereof, because it performs type coercion .
None of the above.
|
|
I've been using the YUI Components and want to begin using the Loader Utility to specify my dependencies on my page. From your experience, is the YUI Loader Utility a reliable way to load Javascript dependencies in web pages?
Started by Chris Sutton on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For a list of which browsers Yahoo.
In no time!
Yes, YUI Loader is reliable on all A-grade browsers.
|
|
Our ISP's DNS servers are unreliable at times. I am looking for reliable, public DNS servers as replacement.
I know OpenDNS but do not like the fact that it hijacks Google lookups and proxies its services.
Preferably the DNS servers are free, reliable...
Started by keithchau on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
I'd recommend running your own DNS server....
If you don't mind one additional process (25 MB) on your computer, this is a good solution .
This is not exact answer to your question, but I have setup my own dns server (BIND) on laptop with no problems so far .
|
|
What is the most reliable way to determine the OS of a visitor to a web site? All other things being equal I prefer an easier to integrate solution. I'm not attempting to gather analytics and I understand there is no completely reliable method. The purpose...
Started by Luke on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Here are examples of Perl code that does OS operating systems Mobile::UserAgent for legacy... .
In short, there's no 100% reliable method.
There is no reliable way to do it, and it's not only none of your business, it's also something as well.
|