For questions about the limits of a certain feature of a programming language. Note that this site is not for the evaluation mathematical limits without the use of programming.
Questions tagged [limits]
330 questions
0
votes
1 answer
Windows Azure Endpoints - how many can you have per subscription?
Hej!
We have just started using Windows Azure and are now in the phase of designing our infrastructure. A question that I haven't really found a stright answer for is weather there is a limit on how many endpoints I can have per subscriptions. Some…
0
votes
1 answer
What's the best practice when setting maxAllowedContentLength in IIS?
In our ASP.NET application some users hit maxAllowedContentLength limit (which is set to 32 megabytes in our application) when sending large POST requests.
Suppose we just blindly increase the limit to half gigabyte - what problems should be expect?…

sharptooth
- 167,383
- 100
- 513
- 979
0
votes
1 answer
Cancel a draggable 'dragmove' on kineticjs?
I have to set a limit for the movement of a circle when the coordinate 'y' is on the pixel 'y-15', on a specific coordinate (x,y). I've tried to use 'draggable=true' with the event 'mouseup' and 'mousedown', but I can't get the results that I need.…

Gonzalo Pincheira Arancibia
- 3,483
- 1
- 23
- 42
0
votes
0 answers
Limit of 100 items for graph statuses?
I'm working on a console application to download statuses and such from my own account -- nothing production or public. I'm finding that I can only get the last 100 statuses, but I was hoping to at least go a couple of years back.
I'm using the C#…

Josh Santangelo
- 918
- 3
- 11
- 22
0
votes
1 answer
Querying amount of time level spent out of range
I have a table with that records the time and level of a tank.
12:00 | 85
12:01 | 77
12:02 | 78
12:03 | 82
12:05 | 79
12:06 | 75
12:07 | 85
etc.
How could you write a query to get the amount of time the tank was below 80 throughout the day?
I am…

user1904766
- 49
- 1
- 6
0
votes
1 answer
GNU Libraries- Which Library would have the _POSIX_OPEN_MAX symbol?
I am trying to learn more about Linux on the systemcall/interface level. Starting with limits, I read in APUE that limits such as _POSIX_OPEN_MAX are symbols. After googling, I read these symbols are in libraries. How do I find which library would…

dman
- 10,406
- 18
- 102
- 201
0
votes
1 answer
composition of a number where a number is very large
I am trying to calculate number of ways of composition of a number using numbers 1 and 2.
This can be found using fibonacci series where F(1)=1 and F(2)=2 and
F(n)=F(n-1)+F(n-2)
Since F(n) can be very large I just need F(n)%1000000007.To speed up…

g4ur4v
- 3,210
- 5
- 32
- 57
0
votes
1 answer
Why won't Maple evaluate this integral?
restart;
assume(alph>0);
assume(alph,real);
f_exp:=exp(-alph*r^2);
ff_deriv:=simplify(r^2*f_exp^2);
ff:=simplify(int(ff_deriv,r=0..infinity));
It seems to understand what I'm trying to integrate but when I try and find ff it comes up with an awful…

powder-blue
- 5
- 2
- 5
0
votes
1 answer
Email migration API limits
In the documentation, it states that the API is limited to one email per user, and that we should create threads and process multiple users at once.
Does any one know if the is any other type of limitation? How many GB/Hour?
I have to plan a…

miturbe
- 715
- 4
- 17
0
votes
2 answers
Is there a limit to the number of websites you can claim in Facebook Insights?
We have a use-case where we need to claim potentially hundreds of subdomains of a website which we own in order to show our customers Facebook Insights data for just their content. Does anyone know if there a limit to the number of…

Jason
- 111
- 8
0
votes
1 answer
How Can I Correctly Do this Limited Group By Query in MySQL?
I have a query that is returning a list of 25 doctors that needs to reflect their uploaded files (cloud_uploads) in a column. The problem is, I do not want to limit the number of files that are listed, but the limit seems to be applying to the…

Amy Anuszewski
- 1,843
- 17
- 30
0
votes
1 answer
All API calls returns "Application limits reached"
Using my application is not possible since every Graph API call returns:
{
"error": {
"message": "(#4) Application request limit reached",
"type": "OAuthException",
"code": 4
}
}
There is no special traffic peak shown in…

Juuso Kosonen
- 216
- 3
- 10
0
votes
2 answers
Displaying messages from the database the other way round
I'm trying to make it so messages are displayed like this
*Old Message
Sooner Message
Newer Message
Latest Message*
I tried a few different ways. By putting
SELECT * FROM place_chat WHERE whereto = '".mysql_real_escape_string($where)."' ORDER BY …

Jordan Richards
- 532
- 3
- 18
0
votes
1 answer
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 widget for a case study page
"""
image =…
Stephen Wolff
0
votes
2 answers
Reliable Java HTTP request with content length and content type limit
I'm searching for realiable (hang-proof) way to get HTTP page in Java with those features:
stop fetching page if content-type in header will not be text/...
you can stop fetching page at any time if loaded data exceds limit in bytes (and…

Piotr Müller
- 5,323
- 5
- 55
- 82