0
votes
3answers
141 views
Stuck on a loop!
I am creating an app which will be used to upload images to a specified server. I have created my GUI in Qt Designer, everything works fine I just am stuck on something that I know …
0
votes
6answers
152 views
How does the Python’s range function work?
Hi,all,I am not really understand for loop in the following,can anyone give some tips?thanks in advance
for i in range(5):
print i
then it gives 0,1,2,3,4 is that python a …
2
votes
2answers
234 views
C#: How to split this string
I have some strings, entered by users, that may look like this:
++7
7++
1++7
1+7
1++7+10++15+20+30++
Those are to mean:
Anything up to and including 7
Anything from 7 and up
…
1
vote
2answers
71 views
Iterating over binary tree w/o control of stack or dynamic allocation
Is there an efficient, practical way to iterate over a binary tree given the following constraints:
You do not have control of the call stack, and thus may not use recursion. Al …
1
vote
3answers
47 views
Mysql: Optimizing Selecting rows from multiple ranges (using indexes?)
My table (projects):
id, lft, rgt
1, 1, 6
2, 2, 3
3, 4, 5
4, 7, 10
5, 8, 9
6, 11, 12
7, 13, 14
As you may have noticed, this is hierarchical data using the nested set model http …
4
votes
1answer
104 views
ruby: what does the asterisk in “p *1..10” mean
the line
p *1..10
does exactly the same thing as
(1..10).each { |x| puts x }
which gives you the following output:
$ ruby -e "p *1..10"
1
2
3
4
5
6
7
8
9
10
it's a great s …
0
votes
1answer
34 views
C#: Range intersection when endpoints are null (infinity)
Ok, I have these intersection methods to work with ranges, and they work well as long as the range endpoints are not null:
public static bool Intersects<T>(this Range<T&g …
0
votes
3answers
36 views
How to declare a range overlaping constraint in PosgreSQL database?
Let's say we are having a table with this definition:
range (
id bigint primary key,
colourId int references colour(id),
smellId int references smell(id),
from bigint,
t …
0
votes
2answers
47 views
MySQL ORDER BY optimisation on range
Hello, I'd like MySQL to use the index to sort these rows.
SELECT
identity_ID
FROM
identity
WHERE
identity_modified > 1257140905
ORDER BY
identity_modified
However, t …
-1
votes
4answers
121 views
What is the inclusive range of float and double in Java?
What is the inclusive range of float and double in Java?
Why are you not recommended to use float or double for anything where precision is critical?
1
vote
7answers
320 views
A C# Implementation of Number Line
NumberLine line = new NumberLine();
line.AddRange(1, 5);
line.AddRange(20, 30);
line.CheckRange(10, 25);
NumberLine is a class which represents a number line. I want to mark on …
2
votes
5answers
89 views
Restricting an IP if it is between an IP Range.
Ok, it's friday afternoon, and i've had a long week so would appreciate some help!
Currently, i have a list of IP ranges, as follows:
List<IPRange> ipRanges = new List<IP …
0
votes
2answers
73 views
Javascript Highlight Selected Range Button
I'm attempting to create a study tool for a page that allows a user to select any text on the page and click a button. This click then formats the selected text with a yellow back …
0
votes
1answer
101 views
getSelection() and insertNode — Javascript Text Selection
Does anyone know how to set the browser selection to a newly / independently created range? I understand how to get the text selection from the browser, and I understand how to cre …
-2
votes
2answers
254 views
How to scan an IP Range C#
How to scan a specific range of IP and also increment it to user defined range.. in like most of the port scanners. but how to increase host bits.. it increases network bits..
