I built this command-line tax calculator as a side project. This script determines: - When you're made an offer for a given CTC, how much will you take home every month? - If you want a certain amount of take-home pay every month, what CTC should you ask for? This is for Indians. This script handles: - Differing tax treatments for employees and consultants. The latter are eligible for presumptive taxation under secti…
For the non-Indians in the audience, what is "CTC"?
Show HN: A Tax Calculator for India
11–20 of 29 posts
Re: Show HN: A Tax Calculator for India
#12I built this command-line tax calculator as a side project. This script determines: - When you're made an offer for a given CTC, how much will you take home every month? - If you want a certain amount of take-home pay every month, what CTC should you ask for? This is for Indians. This script handles: - Differing tax treatments for employees and consultants. The latter are eligible for presumptive taxation under secti…
For the non-Indians in the audience, what is "CTC"?
When I was in India a number of years ago, this term got thrown around a lot. I had no idea what it meant.
It basically means what is the total cost to a company for hiring you. Not just the salary they pay you but other costs like insurance, stock options, other benefits etc.,
Re: Show HN: A Tax Calculator for India
#13Re: Show HN: A Tax Calculator for India
#14I built this command-line tax calculator as a side project. This script determines: - When you're made an offer for a given CTC, how much will you take home every month? - If you want a certain amount of take-home pay every month, what CTC should you ask for? This is for Indians. This script handles: - Differing tax treatments for employees and consultants. The latter are eligible for presumptive taxation under secti…
For the non-Indians in the audience, what is "CTC"?
Re: Show HN: A Tax Calculator for India
#15I built this command-line tax calculator as a side project. This script determines: - When you're made an offer for a given CTC, how much will you take home every month? - If you want a certain amount of take-home pay every month, what CTC should you ask for? This is for Indians. This script handles: - Differing tax treatments for employees and consultants. The latter are eligible for presumptive taxation under secti…
Section 44ADA, not 44AD. 44AD is for businesses and has a presumptive taxable income of 8% of gross income. 44ADA is for (eligible) individuals and has a presumptive taxable income of 50% of gross income.
According to my CA, individuals might be eligible for both depending on what they do. It's not just for businesses. If you're providing a service, like a freelance programmer, it's 50%. But if you're building your own product, it's 8%. Or some such distinction.
In any case, the script supports both; just change the parameter.
Re: Show HN: A Tax Calculator for India
#16This is awesome! I have similar thing in google docs file. Also with addition for home loan repayment schedule. One suggestion: could you separate the code and tax slab configuration, different files.
Actually, separating out the things should be modified from things that shouldn't would be a significant improvement. Like:
# Section 1: Configuration: Change this as appropriate:
FOO =
BAR =
# Section 2: Logic: Don't change this:
...
Re: Show HN: A Tax Calculator for India
#17I am considering open sourcing this project so that there could be a search engine like this for other countries.
Re: Show HN: A Tax Calculator for India
#18In a similar vein, I developed a search engine for sales taxes in Canada (works for all provinces and territories). It was a much, much bigger undertaking than I initially thought, but here it is: http://isittaxed.ca/ I am considering open sourcing this project so that there could be a search engine like this for other countries.
Re: Show HN: A Tax Calculator for India
#19In a similar vein, I developed a search engine for sales taxes in Canada (works for all provinces and territories). It was a much, much bigger undertaking than I initially thought, but here it is: http://isittaxed.ca/ I am considering open sourcing this project so that there could be a search engine like this for other countries.
useful only in countries where the full price is not displayed upfront ?
I edited my first comment from "every" to "other". Thank you.
Re: Show HN: A Tax Calculator for India
#20I built this command-line tax calculator as a side project. This script determines: - When you're made an offer for a given CTC, how much will you take home every month? - If you want a certain amount of take-home pay every month, what CTC should you ask for? This is for Indians. This script handles: - Differing tax treatments for employees and consultants. The latter are eligible for presumptive taxation under secti…