Win / KotakuInAction2
KotakuInAction2
Communities Topics Log In Sign Up
Sign In
Hot
All Posts
Settings
All
Profile
Saved
Upvoted
Hidden
Messages

Your Communities

General
AskWin
Funny
Technology
Animals
Sports
Gaming
DIY
Health
Positive
Privacy
News
Changelogs

More Communities

frenworld
OhTwitter
MillionDollarExtreme
NoNewNormal
Ladies
Conspiracies
GreatAwakening
IP2Always
GameDev
ParallelSociety
Privacy Policy
Terms of Service
Content Policy
DEFAULT COMMUNITIES • All General AskWin Funny Technology Animals Sports Gaming DIY Health Positive Privacy
KotakuInAction2 The Official Gamergate Forum
hot new rising top

Sign In or Create an Account

28
$3,415.3,900,000,000,003 (i.redd.it)
posted 4 years ago by altmehere 4 years ago by altmehere +29 / -1
27 comments share
27 comments share save hide report block hide replies
Comments (27)
sorted by:
▲ 32 ▼
– magabzdy 32 points 4 years ago +33 / -1

What crazy person puts commas after a decimal like that.

permalink save report block reply
▲ 23 ▼
– brappablat 23 points 4 years ago +24 / -1

Some street-shitter who doesn't really know how to code or is bad with regexes or locales.

permalink parent save report block reply
▲ 18 ▼
– JustHereForTheSalmon 18 points 4 years ago +19 / -1

After how shitty the Obamacare website was after billions poured into it, I'm no longer surprised that Dems pick "winners" like that.

permalink parent save report block reply
▲ 0 ▼
– Neilcuckman666 0 points 4 years ago +4 / -4

some coon who got the job because his skin is color of shit

permalink parent save report block reply
▲ 15 ▼
– deleted 15 points 4 years ago +16 / -1
▲ 6 ▼
– deleted 6 points 4 years ago +7 / -1
▲ 4 ▼
– CarmenOfSandiego 4 points 4 years ago +4 / -0

Yeah counting from the right I was like "Ok, wow that's a lot of zer-oh... a decimal."

Anything beyond 3 sig figs is generally pointless but when you're publishing a number and your 3rd sig fig is literally 3x10e-10 you need fired. Out of a cannon. Into the sun.

permalink parent save report block reply
▲ 1 ▼
– deleted 1 point 4 years ago +1 / -0
▲ 26 ▼
– deleted 26 points 4 years ago +27 / -1
▲ 27 ▼
– EntilZha 27 points 4 years ago +28 / -1

Literally no one cares except people who were never going to vote for him anyway.

permalink parent save report block reply
▲ 3 ▼
– GoofTroop186 3 points 4 years ago +3 / -0

What’s crazy is that he literally campaigned on knowing and taking advantage of the rich people loopholes that both sides left in place. Like he said it out loud during a debate, fucking Dave Chappele commented on it!

permalink parent save report block reply
▲ 21 ▼
– Happily_Grim 21 points 4 years ago +22 / -1

I still love how they don't understand he didn't do anything wrong.
Is having a good accountant doing your taxes a crime now?
If they read it then they'd clearly see this as well:
https://imgur.com/a/czYLfHr
Which is a pretty key detail showing he paid millions in advance.
But I don't expect they care.
 
They should keep in mind:
https://imgur.com/a/G2i1V56

permalink save report block reply
▲ 15 ▼
– TisDaRhythmOfDaNight 15 points 4 years ago +16 / -1

I still love how they don't understand he didn't do anything wrong.

stop

"they don't understand..." / "they're too stupid to see..." / "they didn't notice that..."? no. they're being disingenuous. this is propaganda. it's intentional.

permalink parent save report block reply
▲ 3 ▼
– Happily_Grim 3 points 4 years ago +4 / -1

When saying, "they," it's more of an indictment of leftists in general, not the people who created this goofy calculator.
And they really don't get it. You can read any number of thousands of posts by them to elucidate. A vast majority think some insidious crime has happened that's going to get him arrested after "Biden wins."

Obviously the calculator is propaganda; it's a waste of time to make mention of something that's perfectly clear by it's very existence.

permalink parent save report block reply
▲ 3 ▼
– WorldsBestestFluffer 3 points 4 years ago +4 / -1

Well, so far they haven't claimed this is any kind of crime. They're just so totally and organically outraged. Not at all acting like they're bothered simply because they got the signal that they should be so very mad right now.

Sure, some make vague statements about Trump going to jail without saying why, but ultimately it's performative. They'll move on as soon as the news does.

permalink parent save report block reply
▲ 15 ▼
– deleted 15 points 4 years ago +16 / -1
▲ 8 ▼
– lgbtqwtfbbq 8 points 4 years ago +9 / -1

It's floating point arithmetic. When I do the calculation in python (which uses floating point arithmetic) I get the same result.

>>> 4165.39 - 750.00
3415.3900000000003
permalink parent save report block reply
▲ 15 ▼
– exilde 15 points 4 years ago +16 / -1

The average American pays $11,165.39

lol, no.

permalink save report block reply
▲ 13 ▼
– Soup_Navy_Admiral 13 points 4 years ago +14 / -1

(Tries it.) Yep, still busted. From the 2+2=5 set comes "Help, I can't make my webpage subtract a constant from something with two decimal places." Hell's sake, if decimal math is so hard for you cut that part off and just make it two integers.

I was going to see if I could look at the javascript to see where they fucked it but I'm too much of a neophyte - after I hit my third tracking JS file instead of one that did actual work, I quit.

permalink save report block reply
▲ 8 ▼
– lgbtqwtfbbq 8 points 4 years ago +9 / -1

It's just a floating point calculation of input - 750.0 without rounding to the nearest two decimal digits. Fire up a python shell and do 4165.39 - 750.0 and you'll get the exact same result as the website.

permalink parent save report block reply
▲ 2 ▼
– A2BS 2 points 4 years ago +2 / -0

So at best they did the cardinal sin of programming and didn't test it. I'm not a CS guy, but couldn't they work around this by multiplying the input by 100, using an int instead of a float, then subtracting 75000, making it a float again, then dividing by 100?

permalink parent save report block reply
▲ 2 ▼
– lgbtqwtfbbq 2 points 4 years ago +2 / -0

Potentially yes, though they'd have to be careful to not do any sort of conversion to floating point at all, including using library functions to convert a string to a floating point number. Simply multiplying by 100.0 gives you the same problem:

>>> 4135.39 * 100.0
413539.00000000006

There's also a class of numeric algorithms called arbitrary precision arithmetic that can be used to provide exact results from calculations between arbitrarily large numbers. Less flexible (but also able to provide exact results within the constraints of the size of the data type) are what they call "decimal data types" provided by some programming languages.

I maintain a small and obscure piece of open source financial software as a hobby project, and getting this stuff exactly right (which I'm sure I'm not, despite my best efforts) is a pain.

permalink parent save report block reply
▲ 11 ▼
– deleted 11 points 4 years ago +12 / -1
▲ 10 ▼
– JustHereForTheSalmon 10 points 4 years ago +11 / -1

Ah, look, an IQ test to screen for people who know how taxes work.

permalink save report block reply
▲ 5 ▼
– deleted 5 points 4 years ago +5 / -0
▲ 5 ▼
– This_Account 5 points 4 years ago +6 / -1

I exploit tax loop holes for retirement savings and medical insurance.

permalink save report block reply
▲ 3 ▼
– deleted 3 points 4 years ago +4 / -1

Original 8chan Links to Gamer Gate:

.

The main GG discussion is on the videogames board: https://8chan.moe/v/

.

GamerGate archive is at https://8chan.moe/gamergatehq/

.

GamerGate Wiki:

https://ggwiki.deepfreeze.it/index.php/Main_Page

. . . . . .

. . . . . .

The below rules are just a summary of the rules which can be found in the Welcome Ashore post.

.

ONE: Do not post Illegal Activity, or criminal manifestos.

.

TWO: Do not engage in speech that promotes, advocates, glorifies, or endorses violence.

.

THREE: Do not threaten, harass, defame, or bully users.

.

FOUR: Do not post involuntary Salacious Material.

.

FIVE: Do not post Porn

.

SIX: NSFW content must be flaired NSFW.

.

SEVEN: Do not post Facebook accounts or twitter accounts with less than 500 followers, and personal information.

.

EIGHT: Do not intentionally deceive others by impersonating another.

.

NINE: Do not solicit or engage in transactions that are federally regulated by the US govt.

.

TEN: No vote manipulation. Do not break communities.win's features.

.

ELEVEN: Do not post spam.

.

TWELVE: Do not post intentional falsehoods or hoaxes.

.

THIRTEEN: No reposts

.

FOURTEEN: Do not post more than 5 posts a day to this sub.

.

FIFTEEN: Do not direct particularly egregious identity based slurs at users.

.

SIXTEEN: Do not attack entire identity groups as inferior or conspiring.


Moderators

  • DomitiusOfMassilia
  • ClockworkFool
  • C
Message the Moderators

Terms of Service | Privacy Policy

2025.03.01 - nxltw (status)

Copyright © 2024.

Terms of Service | Privacy Policy