Tagged Questions
9
votes
6answers
6k views
How to use long id in Rails applications?
How can I change the (default) type for ActiveRecord's IDs? int is not long enough, I would prefer long. I was surprised that there is no :long for the migrations - does one just use some decimal?
2
votes
3answers
37 views
javascript ints evaluating incorrectly
So I am writing a javascript application, and basically if one number is greater than another I want to swap their values:
if(price1 > price2)
{
var temp = price1;
price1 = price2;
price2 = ...
0
votes
4answers
327 views
Arithmetic Operations on Very, Very Long Decimals
I've always been curious: how can I perform arithmetic operations on very long decimals--for example, calculating pi to the 3000th decimal place (especially in an imperative language)?