Viewing profile — covidcovidcovid
covidcovidcovid
HN member- Joined
- Tue, Apr 21, 2020, 11:53 AM UTC
- HN karma
- -4
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About covidcovidcovid
No profile information was provided.
Recent public activity
-
comment
Comment #23106017
10 years ago I was able to get good result from ads, but now it is an absolute waste of money and it's not worth it anymore.
- comment
-
comment
Comment #22936971
What is clunky about decimal type? You declare a decimal variable and then use it exactly like any other numeric type. Here is an example: https://dotnetfiddle.net/jjJHA6
-
comment
Comment #22934978
Not if you use decimal type that is not available in JavaScript.
-
comment
Comment #22934973
If you write in C# decimal a = 0.1m; decimal b = 0.2m; var result = a + b; then you will get exactly 0.3, because decimal is a special high-precision numeric type that doesn't have…
-
comment
Comment #22934078
I prefer to use other languages on backend something like C#, because JavaScript is too error-prone. You can't even just add two numbers (try (0.1 + 0.2) === 0.3) without some work…