0
votes
1answer
31 views
Limiting characters inside HTML paragraph
I want to make it so there's only 350 characters inside the paragraph, regardless of how many characters are put into it, I only want 350 displayed.
How can I do this?
The text is …
0
votes
2answers
27 views
Text limit inside <span> XHTML?
I would like to limit the text inside a tag so when I add a new article in my ASP admin panel, it only has 350 characters max.
How do I go about doing this?
0
votes
4answers
37 views
How do I show X number of LI from a list using javascript (no frameworks)?
I have a menu that is being populated by a server and I have no access to the server. So I am limited to doing this on the client side.
Right now there is a dropdown menu on the …
0
votes
3answers
42 views
How can I handle the problem whe AUTO_INCREMENT hit its limit?
Is there any good practice for this?
I wish I could solve the problem when primary key hit the limit and not to avoid it. Because this is what will happen in my specific problem.
…
0
votes
1answer
50 views
Process n items at a time (using threads)
I'm doing what a lot of people probably need to do, processing tasks that have a variable execution time. I have the following proof of concept code:
threads = []
(1...10000).eac …
0
votes
4answers
74 views
PHP: Limit foreach() statement?
How can i limit a foreach() statement?
Say i only want it to run the first 2 'eaches' or something?
0
votes
0answers
17 views
Howto limit the map in Android?
I'm developing my first Android application and it is based partly on displaying some information in Google Maps. I've managed to set a new center point and a new default zoom leve …
0
votes
3answers
44 views
Limit string chars - PHP
I am building an RSS script with mysql, and i dont want an extra field in the database... i want to shrink down the body of the article with a "... Read More" but im not sure how i …
4
votes
2answers
122 views
scala mailbox size limit
I can see that scala can solve the Producer-Consumer problem using actors. There is a couple of examples on the web but what is worrying me is the unlimited growth of an actor's ma …
0
votes
1answer
36 views
LIMIT 3 not returning the first three rows in sorted RS (I think)
In my table I have looked manually and found that the top three idle units have been idle for 17, 13 and 13 days. When I use this SQL statement to try and pull the three rows with …
0
votes
2answers
21 views
How does Tomcat sandbox web apps?
I have a web app that is being served through Tomcat. My app lets users submit their own workflow which will then be executed on the server. My problem is how to control how much m …
0
votes
2answers
73 views
How to impose a time limit on a whole script in Python
The user is entering a python script in a Java GUI python-editor and can run it from the editor. Is there a way to take the user's script and impose a time limit on the total scrip …
15
votes
11answers
441 views
How many variables should a constructor have?
Hello everyone,
I realize this is a pretty open question and could get a variety of answers, but here goes.
Using C# (or Java, or any OO language), is there a general rule that s …
0
votes
2answers
27 views
how to limit result based on the fields
How to use ' LIMIT' in mysql database query based on fields . just consider a user has 10 phone number and i would like to get only 5 phone number for that user .
I would like to …
4
votes
5answers
201 views
Should SQL ranking functionality be considered as “use with caution”
This question originates from a discussion on whether to use SQL ranking functionality or not in a particular case.
Any common RDBMS includes some ranking functionality, i.e. it's …
