1
vote
4answers
283 views
How to tell if a MySQL process is stuck?
I have a long-running process in MySQL. It has been running for a week. There is one other connection, to a replication master, but I have halted slave processing so there's effe …
5
votes
4answers
119 views
Python type long vs C ‘long long’
I would like to represent a value as a 64bit signed long, such that values larger than (2**63)-1 are represented as negative, however Python long has infinite precision. Is there a …
0
votes
5answers
94 views
More efficient method for this calculation?
a = 218500000000
s = 6
f = 2
k = 49
d = k + f + s
r = a
i = 0
while (r >= d):
r = r - d
#print ('r = ',r)
i = i+1
#print ('i = ',i)
print (i)
I think it does what …
0
votes
2answers
36 views
Oracle: LONG RAW to ?
I am writing a program in java where I need to create a copy of a table (without data). for that I am using the following query
CREATE TABLE NEW_TABLE AS
SELECT * FROM OLD_TABLE
…
0
votes
1answer
38 views
Strange problem when trying to read data
When I write:
var tagType = _reader.ReadByte();
while (tagType != 8)
{
var skip = ReadNext3Bytes() + 11;
_reader.BaseStream.Position += skip;
tagType = _reader.ReadB …
0
votes
4answers
66 views
Suggestions for a fast two way encrypt?
Can someone suggest a fast 2 way encryption algorithm for long ints?
My candidates are:
AES: the Advanced Encryption Standard specified by NIST FIPS-197.
BLOWFISH: the Blowfish …
0
votes
1answer
67 views
android maps: How to Long Click a Map?
Hi.
How do I long click on a mapview so that a place marker appears at that point on the map?
I tried a couple ways without success:
1) Using setOnLongClickListener on the Map …
5
votes
8answers
270 views
How can I check if multiplying two numbers in Java will cause an overflow?
I want to handle the special case where multiplying two numbers together causes an overflow. The code looks something like this:
int a = 20;
long b = 30;
// if a or b are big eno …
0
votes
3answers
68 views
strtoull and long long arithmetic
Can anyone explain the output of this program and how I can fix it?
unsigned long long ns = strtoull("123110724001300", (char **)NULL, 10);
fprintf(stderr, "%llu\n", ns);
// 1844 …
0
votes
4answers
527 views
C#: How to convert long to ulong
Hello,
If i try with BitConverter,it requires a byte array and i don't have that.I have a Int32 and i want to convert it to UInt32.
In C++ there was no problem with that.
0
votes
0answers
67 views
Different treatment of long long’s in glibc 2.4?
Hi,
I have some odd behaviour I'd like to ask for advice on. I have some C code which behaves as follows
If I build and run my unit tests, they run but some specific tests fail. …
0
votes
5answers
110 views
Operations for Long and Float in Python
I'm trying to compute this:
from scipy import *
3600**3400 * (exp(-3600)) / factorial(3400)
the error: unsupported long and float
5
votes
8answers
843 views
How to handle arbitrarily large integers
I'm working on a programming language, and today I got the point where I could compile the factorial function(recursive), however due to the maximum size of an integer the largest …
1
vote
6answers
209 views
How do you get an unsigned long out of a string?
What's the safest and best way to retrieve an unsigned long from a string in C++?
I know of a number of possible methods.
First, converting a signed long taken from atol.
char * …
3
votes
9answers
854 views
Java: Checking if a bit is 0 or 1 in a long
Given that : 0000000000000000000000000000000000000000000000000000000000000001 = 1
What method would you use to determine if the the bit that represents 2^x is a 1 or 0 ?
