TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: ustaxes.org – open-source tax filing webapp

465 点作者 aidangrimshaw超过 4 年前

37 条评论

vages超过 4 年前
Related fun (and sad) fact: In Norway, the tax submission forms are online and so user friendly that you don&#x27;t need a tax filing program like this. Edit: Here is a link to an explanation for the form, in English, which was revamped in 2020: <a href="https:&#x2F;&#x2F;www.skatteetaten.no&#x2F;en&#x2F;person&#x2F;taxes&#x2F;tax-return&#x2F;tax-return-person&#x2F;new-tax-return&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.skatteetaten.no&#x2F;en&#x2F;person&#x2F;taxes&#x2F;tax-return&#x2F;tax-r...</a><p>The submission form is essentially a wizard that asks you questions related to your situation and your past year. Depending on your answers, it expands different parts of the form. Other parts, such as tax exempt donations are automatically filled out based on information that the recipients filled out for you.<p>I visited the UX department of the Norwegian equivalent to the IRS (Skatteetaten), and they had almost every device you could think of (eye-tracking being the most fun). No wonder they made good forms.<p>I understand that some people object politically to taxes, but as long as it&#x27;s one of the certainties of life (death being the other), I cannot understand why filling out the submission seems so hard in most countries...
评论 #26139758 未加载
评论 #26141692 未加载
评论 #26139714 未加载
评论 #26140276 未加载
评论 #26140094 未加载
评论 #26141055 未加载
评论 #26147981 未加载
评论 #26142930 未加载
thanksforfish超过 4 年前
This is really cool, and I&#x27;d like to encourage work like this. I currently don&#x27;t think I can recommend this to others because:<p>It isn&#x27;t immediately obvious who is running the site. whois info lists a Canadian privacy company. The site doesn&#x27;t have an about page. Github has contributor info, which may help. Tax returns need to be private and accurate. If it&#x27;s hard to verify that the authors are even in the US, it&#x27;s had to know if this is a scam.<p>I think the project is still young, and the above is likely something addressable. Partnering with some accountants may be a way to fund further development&#x2F;maintenance through referrals. Good luck!
评论 #26143140 未加载
评论 #26145634 未加载
wiml超过 4 年前
For the past ~decade I&#x27;ve mostly been using OpenTaxSolver, a file-based open source US tax utility. It&#x27;s worked for my uses.<p>It&#x27;d be appealing to try to factor out the underlying translation of the tax code and IRS form layout into some very simple DSL that could be used by multiple kinds of software.
评论 #26140003 未加载
评论 #26139573 未加载
评论 #26141189 未加载
pwg超过 4 年前
Related project:<p>OpenTaxSolver (<a href="http:&#x2F;&#x2F;opentaxsolver.sourceforge.net&#x2F;" rel="nofollow">http:&#x2F;&#x2F;opentaxsolver.sourceforge.net&#x2F;</a>):<p>OpenTaxSolver (OTS) is a free, safe + secure program for calculating Tax Form entries for Federal and State personal income taxes. It automatically fills-out and prints your forms.<p>I&#x27;ve used OTS for the last three or four years now to do my taxes, it does work for the task.
评论 #26159884 未加载
TZVdosOWs3kZHus超过 4 年前
In Germany the official application to submit your taxes as a private person to the state has been a windows application for years. Using the app was a 1:1 copy of the official paper forms. Disregarding the complexity of the german tax law, you had a reference to the papers. So it was kind of easy to use the digital counterpart one was accustomed to.<p>It was disimproved by hauling it into a web app, which breaks with all the usual connections you built with the paper equivalent and is the most UX unfriendly monstrosity one could create. From this year on you HAVE TO USE IT. I deeply disrespect this regression, which forces many people into paying a tax office for their private tax submission.<p>I wish for a swedish&#x2F;norwegian system, where the state courts you for YOUR money. I don&#x27;t know a single person in Germany which states: &quot;I love doing my tax submissions!&quot;<p>EDIT: Typos plus last paragraph
评论 #26141125 未加载
petethepig超过 4 年前
I once tried to model tax forms as code and one thing I learned is that using observable &#x2F; computable model (as in mobX &#x2F; knockout.js) works pretty well for computing tax.<p>For example:<p><pre><code> this.totalDeductions = this.computed(() =&gt; { return this.isItemizing() ? this.itemizedDeductionsAdjusted() : this.standardDeduction(); }).form(&quot;f1040-131&quot;); &#x2F;&#x2F; 131 is reference to a field on the tax form this.afterDeductions = this.computed(() =&gt; { return this.adjustedGrossIncome() - this.totalDeductions(); }).form(&quot;f1040-133&quot;) </code></pre> The other thing I learned is that taxes are ridiculously complex.
adsharma超过 4 年前
Computing tax<p>Noticed this comment.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;thegrims&#x2F;UsTaxes&#x2F;blob&#x2F;master&#x2F;src&#x2F;irsForms&#x2F;F1040.ts#L235" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;thegrims&#x2F;UsTaxes&#x2F;blob&#x2F;master&#x2F;src&#x2F;irsForms...</a><p>I wrote some python a few years ago for this purpose<p><a href="https:&#x2F;&#x2F;github.com&#x2F;adsharma&#x2F;tax" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;adsharma&#x2F;tax</a>
评论 #26139418 未加载
jamexcb超过 4 年前
In Portugal, because everything you buy you need to provide your VAT number, even if you buy one coffee. And all medical are also electronic. And your employer also submit all the money you earn. Taxes are automatic. You just need to review and add extra stuff if needed. It takes about 10&#x2F;15 min to do. Of course there are exceptions!
评论 #26142345 未加载
评论 #26142867 未加载
eralps超过 4 年前
This is a cool project. As a user entering information in a pdf file with hundreds of input boxes stresses me. Hiding the document until after I enter all the information makes it easier to file tax.<p>But it would not be feasible to use this for most of the people. Tax is often vastly complex and it ignores all those parts. I don&#x27;t have any capital gain, any properties or any uncommon income such as from rent but even for me this would not work because I get 1099-INT forms from bank (for 1.25$) and there is only W2 option under income.<p>I am also a nonresident so I need to use 1040NR another block there but I am not even talking about that.
评论 #26139984 未加载
0xbadcafebee超过 4 年前
I like the code of conduct. If you can get a contibutor&#x27;s guide and TODO list up, I&#x27;d bet you can get a couple contributors (especially around tax season). If it ends up covering a lot of the tax code in a few years, maybe the US Digital Service would consider hosting it.<p>I like that it&#x27;s all browser-based, but the problem is that I, the user, have no way of actually guaranteeing it&#x27;s not POSTing somewhere else. It&#x27;s the same problem with browser JS crypto. So I would suggest that in addition to a note explaining how no personal data leaves their browser, also link to a guide on how to download and run it on a local computer. (Is it possible to export a single .html or .js file that a user can open with their browser? And a SHA512 checksum to verify the file?)
m3kw9超过 4 年前
Not sure if you want to use the actual ustaxes.org website and input your real SSN without any security audits.
orblivion超过 4 年前
I&#x27;ve wondered why this didn&#x27;t exist for a long time. I thought I heard something about an issue of liability in case some part of the process is incorrect, which the &quot;Big Boys&quot; (TurboTax etc) have worked around or priced into their business model.<p>At any rate, I&#x27;m grateful, and I will consider using this. I may just have to find a way to doublecheck the work done.
rocketpastsix超过 4 年前
A few things:<p>The title in the HTML is still &quot;React App&quot;<p>There is very little information about this. Why should I trust this? I see the option to print, is that my only option?
评论 #26143302 未加载
vxNsr超过 4 年前
Is this federal only or state as well?<p>The readme and website appear to be kinda thin on details. Cool nonetheless.
评论 #26139249 未加载
janwillemb超过 4 年前
In the Netherlands the tagline of the tax authorities used to be &quot;we can&#x27;t make it funnier, but we can make it easier&quot;. Most tax forms are online and pre-filled with data they already have. For most people it&#x27;s probably a matter of minutes.
评论 #26140536 未加载
spankalee超过 4 年前
How would you know that a project like this is computing taxes correctly?
评论 #26139998 未加载
评论 #26142321 未加载
suyash超过 4 年前
Ok how do you do state taxes in this? I don&#x27;t see California option. Also no privacy policy on the hosted one, you really think people will trust giving their sensitive information like that?
评论 #26139507 未加载
评论 #26139838 未加载
maelito超过 4 年前
If you read french or want to dive in the mostly english code, you can fork <a href="https:&#x2F;&#x2F;github.com&#x2F;betagouv&#x2F;mon-entreprise" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;betagouv&#x2F;mon-entreprise</a>.<p>It doesn&#x27;t fill tax forms, but it&#x27;s a set of simulations and a framework to write more models and generate UIs automatically.
mrwnmonm超过 4 年前
I have a company in the US, I was going to avoid paying taxes this year, because I found the process hard and actually we don&#x27;t have enough money. But as I understand it, you need to work with an accountant, and you need someone to fill it for you if you are outside of the US. Can you fill it online in the US?
privatenumber超过 4 年前
Filing taxes is a solved problem in many countries so it&#x27;s very disappointing it&#x27;s still so difficult to do in the US. I&#x27;m glad to see open source engineers taking matters into their own hands to disrupt this corrupt industry.<p>If milestones and a growth path can be clearly planned and communicated, I think many people would happily chip in to help fund a project like this.<p>Something like this page would be nice: <a href="https:&#x2F;&#x2F;k9mail.app&#x2F;2021&#x2F;02&#x2F;14&#x2F;K-9-Mail-is-looking-for-funding" rel="nofollow">https:&#x2F;&#x2F;k9mail.app&#x2F;2021&#x2F;02&#x2F;14&#x2F;K-9-Mail-is-looking-for-fundin...</a>
CameronNemo超过 4 年前
Are there plans for a matrix or checklist for supporting different income types, forms, or some other way to measure support levels?<p>Looks like you are using typescript React here. Any driver for that choice?
评论 #26139382 未加载
BrandoElFollito超过 4 年前
In France you get online taxes per-filled with all information. It covers almost all the cases (including when you hire someone to help you at home) so for 99.999% of the popolation it is a matter of 5 clucks, for z total of 2 minutes to fill in your taxes.<p>I actually do not understand why this is not automatic. If you have a special case you would need to act, otherwise it accepts by default.<p>I read a few times about the lobby of tax software companies in the US, it is really weird that they can get away with such practices.
breck超过 4 年前
Love it!<p>I have a technology that will be really useful for disrupting tax filing in USA.<p>Basic pitch is here: <a href="https:&#x2F;&#x2F;github.com&#x2F;breck7&#x2F;copypastetaxes" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;breck7&#x2F;copypastetaxes</a><p>I&#x27;d be interesting in talking about some type of collaboration if you&#x27;re interested in chatting! Email is in profile.
dave333超过 4 年前
What I hate about the US system is every year I have to convert my brokerage tax statement into a schedule D line by line or the IRS duns me because they only know my stock sales, not my purchases, which is nuts.
评论 #26143574 未加载
geogra4超过 4 年前
I&#x27;m happy paying the modest fee for taxact. I do agree America has such an annoying tax system though. Why am I filling out forms if the irs already has this information!
评论 #26142215 未加载
jhabdas超过 4 年前
Suggestion: Add support for Foreign Earned Income Exclusion. If the trend is remote work, focus on the remote workers who would prefer not to pay income taxes.
评论 #26141392 未加载
评论 #26139514 未加载
评论 #26140047 未加载
radicalriddler超过 4 年前
I would recommend having some indicator on which sections of the tax form you&#x27;ve completed, as you&#x27;re able to skip forward to different sections.
raverbashing超过 4 年前
Can anyone explain how the end wire-format works? Can I just fill an XML and POST it directly to some service (like I assume a paper form would work?)
greenpizza13超过 4 年前
Love it.<p>True to form, it still has the title &quot;React app.&quot; I personally have shipped things to production without changing the CRA boilerplate title :).
jl2718超过 4 年前
But good luck getting your returns received by the IRS in the mail. It was 6 months before I gave up and paid someone to e-file for me.
timoth3y超过 4 年前
Thank you for starting this.<p>It&#x27;s something that needs to exit!
评论 #26139707 未加载
评论 #26140368 未加载
FlyMoreRockets大约 4 年前
Finally, a free to file tax form. The IRS should do this by default.
twistel超过 4 年前
Software for the people!
known超过 4 年前
Why not print dollars (with expiry date) instead of taxes <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Currency_in_circulation#Total_currency_in_circulation" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Currency_in_circulation#Total_...</a>
ketamine__超过 4 年前
Turbo Tax has a limit on number of trades. And takes a long time to process them. Are they sleep&#x27;ing a lot or does it really take a minute for 100 trades?<p>I&#x27;m wondering if this can be improved. Especially for cryptocurrency processing. The cryptocurrency tax solutions are woefully inadequate. I was surprised considering how much marketing and polish they have.
hahahahe超过 4 年前
Remember when Trump promised we can file our taxes via postcard?<p>I remember.
jfc_taxman超过 4 年前
imagine submitting your social security number and sensitive PII to a website that was created during covid 2020-05-10T08:44:50Z which doesn&#x27;t have a contact us page even if it is all in browser. is this a business? do they have insurance?
评论 #26140354 未加载