4
votes
2answers
76 views
How to give users a file storage limit?
I'm working on a web application right now using Rails and wanted to see if anyone knew of a good way to keep track of file storage limits? We want to give users a specific amount …
0
votes
1answer
87 views
Maximum size for a byte[] in a .Net DataSet/DataTable
Is there any maximum size for a cell of data in a DataTable (like a byte[]), or can you grow it until the system runs out of memory?
1
vote
8answers
185 views
Good limits for code refactoring
What are your preferred limits for,
Lines per file
Lines per function
Nesting
Are there other effective guidelines for limiting / settings (i.e. large font size)?
FYI, I code m …
4
votes
6answers
633 views
What happen in SQL 2005 when it run out of number for an autonumber column?
What happen when SQL Server 2005 happen to reach the maximum for an IDENTITY column? Does it start from the beginning and start refilling the gap?
What is the behavior of SQL Ser …
1
vote
4answers
498 views
How do I increase the /proc/pid/cmdline 4096 byte limit?
For my Java apps with very long classpaths, I cannot see the main class specified near the end of the arg list when using ps. I think this stems from my Ubuntu system's size limit …
7
votes
10answers
446 views
How many times a file be compressed?
I was thinking about compression, and it seems like there would have to be some sort of limit to the compression that could be applied to it, otherwise it'd be a single byte.
So m …
0
votes
1answer
160 views
Django Model Inheritance and limit_choices_to
Can anyone tell me how i can limit the choices for the Page model which i inherit from in the following code?
class CaseStudy(Page):
"""
An entry in a fancy picture flow …
3
votes
8answers
346 views
How big can a Sourcesafe DB be before “problems” arise?
We use SourceSafe 6.0d and have a DB that is about 1.6GB. We haven't had any problems yet, and there is no plan to change source control programs right now, but how big can the So …
1
vote
1answer
44 views
MySQL Resource limits
whenever i set a Resource limits for particular user/database/host does it spread through the hour? it'll delay queries or does it won't allow you to query would throw some sort of …
2
votes
5answers
316 views
Why is ARG_MAX not defined via limits.h?
On Fedora Core 7, I'm writing some code that relies on ARG_MAX. However, even if I #include <limits.h>, the constant is still not defined. My investigations show that it's …
1
vote
4answers
225 views
Equivalence of <limits> and <climits>
Is this guaranteed to be always true:
std::numeric_limits<int>::max() == INT_MAX
What does C++ standard say about it? I could not find any reference in the standard that …
2
votes
9answers
1k views
Print really big numbers
Hey!
I have this code
#include <iostream>
using namespace std;
int main(int argc,char **argv) {
unsigned long long num1 = 9999999999999999999999999999999999999999999 …
1
vote
1answer
602 views
Is there a size limit on a text file? [closed]
Duplicate of: Is there an upper limit on .txt file size?
What is the limit to how much you can write to a text file? Any help would be appreciated.
0
votes
2answers
942 views
MySQL: How to select all rows from a table EXCEPT the last one
Hey!
I have a table with N rows, and I wanna select N-1 rows.
Suggestions on how to do this in one query, if it's possible..?
4
votes
8answers
558 views
Is there any difference between parameters in a URL and <form method=”get”> ?
The question title says it all.
Now, I know a difference between parameters in a URL and a POST parameter: some browsers may misbehave if the URL is too long, so it is not a good …
