Tagged Questions
The money tag has no wiki summary.
81
votes
8answers
17k views
decimal vs double! - Which one should I use and when?
I keep seeing people using doubles in C#. I know I read somewhere that doubles sometimes lose precision.
My question is when should a use a double and when should I use a decimal type?
Which type is ...
56
votes
4answers
24k views
Ruby on Rails: best method of handling currency / money
I'm in the process of learning Ruby on Rails and I've set myself the task of putting together a very basic shopping cart system. I have a table items that costs of a price column currently set to ...
31
votes
8answers
12k views
What is the best data type to use for money in c#?
What is the best data type to use for money in c#?
29
votes
6answers
3k views
Is a double really unsuitable for money?
I always tell in c# a variable of type double is not suitable for money. All weird things could happen. But I can't seem to create an example to demonstrate some of these issues. Can anyone provide ...
29
votes
13answers
7k views
Representing Monetary Values in Java
I understand that BigDecimal is recommended best practice for representing monetary values in Java. What do you use? Is there a better library that you prefer to use instead?
25
votes
9answers
3k views
Money data type for .NET?
Looking for a good Money data type for .NET that supports currencies and exchange rates (with related behaviour & operations).
Note: I started searching for the source code seen in print in the ...
19
votes
15answers
2k views
Should you charge a customer for bug fixes?
I always have, either by factoring it into the cost initially or just charging by the hour. Upon talking with another developer, who is older and been around the industry longer than I have been, he ...
19
votes
6answers
3k views
Want to sell own application. Where to start?
I developed a handy little application that can help a lot of people. I would like to sell it for a few dollars/license, but I do not have any infrastructure for hosting or big money for ...
18
votes
27answers
2k views
Code Golf: Banknote calculator
This question was posted by a C beginner and it was an exercise to calculate, given a dollar value input by the user, the minimum number of bills (or banknotes, depending on your locale) needed to ...
13
votes
4answers
5k views
Django: How should I store a money value?
I'm running into a paradigm problem here. I don't know whether I should store money as a Decimal(), or if I should store it as a string and convert it to a decimal myself. My reasoning is this:
...
10
votes
5answers
4k views
API For Direct Deposit (ACH, EFT, Whatever)
I'm looking for a way to automate a transfer from one bank account to another, without the end user having to login to something like paypal or amazon payments to complete the process (by transferring ...
9
votes
5answers
404 views
Double my money: my framework uses doubles for monetary amounts
I've inherited a project in which monetary amounts use the double type.
Worse, the framework it uses, and the framework's own classes, use double for money.
The framework ORM also handles ...
9
votes
6answers
3k views
storing money amounts in mysql
I want to store 3.50 into a mysql table. I have a float that I store it in, but it stores as 3.5, not 3.50. How can I get it to have the trailing zero?
9
votes
11answers
696 views
How to seek a small amount of venture capital?
I am developing an app for which I need a more experienced developer to test my code, and also for UI & design work. I personally would hope, doing it all by myself, over the course of the next 3 ...
9
votes
4answers
2k views
Money Type
Does anyone know of an already implemented money type in the .net framework that supports i18n (currencies, formatting, etc)? I have been looking for a well implemented type and can't seem to find ...
8
votes
5answers
380 views
Why is using a NON-decimal data type bad for money?
tl;dr: What's wrong with my Cur (currency) structure?
tl;dr 2: Read the rest of the question please, before giving an example with float or double. :-)
I'm aware that this question has come up ...
8
votes
2answers
2k views
How to represent Money in Objective C / iPhone
Im working on an iPhone application and want to represent money ($) amounts. I can't use float because they introduce certain amount of rounding errors.
What can I use?
Im thinking of defining my own ...
7
votes
2answers
2k views
PHP/MySQL: Best money operations/storing practices?
First of all sorry for my English, it's not my native language.
So, I am planning to make an application (PHP/MySQL) which deals a lot with money, and I am thinking about how to store and operate ...
7
votes
6answers
420 views
Business Model for a Good Software App
I developed an application, working fine and in a closed beta stage for last 1.5 years, it's been 3 years on development. Quite stable, full-featured and polished as well. It's a software for a ...
6
votes
2answers
850 views
Rails: money gem converts all amounts to zero
I'm trying to use the money gem to handle currency in my app but I'm running into a strange error. This is what I have in my "record" model:
composed_of :amount,
:class_name => ...
6
votes
7answers
216 views
Changing project requirements - should client pay
Not sure where to put this but a site filled with working programmers is a good bet.
I built a website for a client, that included (on the home page) a fancy jQuery image slider with controls. This ...
6
votes
2answers
124 views
How was non-decimal money represented in software?
A lot of the answers to the questions about the accuracy of float and double recommend the use of decimal for monetary amounts. This works because today all currencies are decimal except MGA and MRO, ...
6
votes
5answers
186 views
How to get a good price on dev books [closed]
Does anyone have any tips for getting a good price on new/used programming-related books? I've looked at some of the more popular books (like DDD and GoF), and even used they can be pretty pricey. ...
6
votes
3answers
4k views
Is SQL Server 'MONEY' data type a decimal floating point or binary floating point?
I couldn't find anything that rejects or confirms whether SQL Server 'MONEY' data type is a decimal floating point or binary floating point.
In the description it says that MONEY type range is from ...
6
votes
6answers
808 views
Should I do money calculations in Javascript or as an AJAX call?
I'm building a webapp using JQuery, Stripes, Spring and JPA (Hibernate).
I have a page that allows users to enter a number of order line items and each time onblur occurs in the price field, I have a ...
6
votes
2answers
7k views
How to parse a currency Amount (US or EU) to float value in Java
In Europe decimals are separated with ',' and we use optional '.' to separate thousands. I allow currency values with:
US-style 123,456.78 notation
European-style 123.456,78 notation
I use the ...
5
votes
4answers
111 views
How to get over losing pennies all the time?
I will be working for a company where they are programming for Financial Institutions and I will be working with money a lot. Before that it wasn't a major concern for me because I've been doing small ...
5
votes
1answer
431 views
PHP: unformat money
Is there a way to get the float value of a string like this: '75,25 €', other than parsefloat(str_replace(',', '.', $var))?
I want this to be dependant by the current site language and sometimes the ...
5
votes
2answers
552 views
Is working with money (decimal numbers) in PHP considered safe?
I have an items table in my MySQL database with a DECIMAL(10,2) field called price.
When fetching these values, is it safe to do calculations and such with these numbers in PHP? Or will I end up with ...
5
votes
4answers
591 views
Proof that Fowler's money allocation algorithm is correct
Martin Fowler has a Money class that has a money allocation routine. This routine allocates money according to a given list of ratios without losing any value through rounding. It spreads any ...
5
votes
3answers
440 views
iPhone/Android Dev for Pocket Change?
First the disclaimer - I've read a bunch of posts already on making money with mobile app development, and I'm not sure I feel encouraged or discouraged at this point :) I understand the very real ...
5
votes
6answers
267 views
Can you get any financial recompense from Open Source
I have been contributing heavily to this open source project that aims to help out users of open source on the .NET platform by acting as a ruby gems or more importantly a gentto portage clone for ...
5
votes
5answers
6k views
How do I format a double to currency rounded to the nearst dollar?
Right now I have
double numba = 5212.6312
String.Format("{0:C}", Convert.ToInt32(numba) )
This will give me
$5,213.00
but I don't want the ".00".
I know I can just drop the last three ...
5
votes
10answers
2k views
QA engineer and more money or software engineer with less
I may be presented with the opportunity to be a part of an engineering-intensive QA team (unit/scenario test automation) for more pay. Currently, however, I am a software engineer, which sounds more ...
5
votes
11answers
749 views
Designing a personal finance app
As a side project, I am looking at creating a personal finance program. I have tried using Money and Excel to keep track of my finances but have either been unhappy with the stability or lack of ...
4
votes
3answers
117 views
How to round currency values
I already have several ways to solve this, but I am interested in whether there is a better solution to this problem. Please only respond with a pure numeric algorithm. String manipulation is not ...
4
votes
2answers
252 views
Problem using decimal and money in sqlite3 with adapters
Using sqlite3 as the database, I want to keep a couple of decimal.Decimal values, one a percentage the other a dollar amount. However I saw problems when using sum(amount) on over 20,000 entries. It ...
4
votes
2answers
414 views
Sending money from [SomePaymentProcesingCompany] to bank account
The Imaginary Scenario:
The Affiliates earn money on my website by selling items/services/widgets to their clients. You can think of it as a simple affiliate program. This money is stored in a single ...
4
votes
3answers
65 views
How to let the user choose between typing price inclusive VAT or exclusive VAT in TextField?
I am implementing an back-office application where the user type in prices for products. Sometimes it is preferred to type the price inclusive value-added-tax, VAT and sometimes exclusive VAT.
How do ...
4
votes
3answers
144 views
Is generic Money<TAmount> a good implementation idea?
I have a Money Type that allows math operations and is sensitive to exchange rates so it will reduce one currency to another if rate is available to calculate in a given currency, rounds by various ...
4
votes
3answers
149 views
What are the alternatives to paypal for non-supported countries?
Not sure whether to ask this question here but here is the question.
What are the alternatives to paypal for countries whom paypal does not support?
For example, I am from Pakistan and i am looking ...
4
votes
11answers
1k views
Web app or Desktop app, which is easier to monetize?
If it's possible to implement an idea as a desktop app and as a web app, which way would you go?
I'm a little biased here, as as a user I tend to prefer desktop apps over web apps, for the ability to ...
4
votes
4answers
17k views
In SQL how can I convert a money datatype to a decimal?
I want to convert a money datatype to a decimal, because I want to record the results to 8 decimal places.
For example, in a currency rate table I see the rate stored as 2871047428.20 as a money ...
4
votes
11answers
574 views
Do I have to be a Niche Programmer? [closed]
Duplicate of: Is it better to go broad or go deep
Question Brief:
In order to be rich and prosperous, is it a better idea to be niche or sparse? Should I continue to vary my skills, or predict the ...
4
votes
9answers
584 views
How to split up income from a product between co-founders?
We are 4 mates that founded a company a year ago.
A: high skill, works a lot (the architect)
B: low skill, high motivation, works even more (the motivator)
C: high skill, works only 5-15h a week ...
3
votes
2answers
47 views
Common sense when storing currencies?
After reading up on how to best handle users in multiple timezones properly, I've learned that the way to go is to store all dates in an normalized, application-wide timezone - UTC and then apply the ...
3
votes
2answers
61 views
Javascript Decimals
How can I convert a integer type to a double/float type so it shows decimal points? For instance if I want to convert a number to a money format:
5 would turn into 5.00
4.3 would turn into 4.30
Does ...
3
votes
2answers
272 views
Which XML data type should I use for currency/money?
After reading a few questions on what Java data type to use for currency/money, I have decided to use the int/long method, where you store the value of the currency/money as its lowest unit (such as ...
3
votes
1answer
201 views
Which objective-c type is appropriate for handling money?
Which objective-c type is appropriate for handling money? I need something which is Core Data compatible.
3
votes
2answers
202 views
Libraries for depositing money into a user's account?
I am building an app that needs to take money from a customer who is paying by credit card and deposit that money into another customer's bank account. I don't want to store the bank account info, I ...