Viewing profile — Matheus28
Matheus28
HN member- Joined
- Sun, Oct 19, 2014, 3:26 AM UTC
- HN karma
- 1,885
- Public activity
- 507 items
- HN profile
- View on Hacker News ↗
About Matheus28
Recent public activity
-
comment
Comment #49129278
I’ll take a Qt application over the Electron garbage that we see all the time nowadays.
-
comment
Comment #48915583
https://en.cppreference.com/cpp/io/print
-
comment
Comment #48415489
And replace it with what?
-
comment
Comment #48237837
A lot of countries require you to declare your total wealth on your tax forms. Then once someone gets audited, that gets checked. Obviously it’s possible to hide it, but that in it…
-
comment
Comment #48237720
You obviously can’t convert between the two directly and suggesting that is disingenuous. Income tax doesn’t affect unrealized capital gains (where the rich “hide” most of their in…
-
comment
Comment #48066859
Why? Some web apps might want to present a different interface if you’re in landscape.
-
comment
Comment #47596642
Since C++11, data() is also required to be null terminated. Per your own source and cppreference.
-
comment
Comment #47474077
“I quit!” Even includes a special character
-
comment
Comment #47234003
What do you use the Mac Studio for? I’ve always felt they weren’t really worth it for performance per dollar spent. For C++ work I just use a non-Mac workstation. For lighter workl…
-
comment
Comment #47228030
Except 120 Hz display I believe, which is big reason for me
- comment
-
comment
Comment #46936186
I personally believe what we’re seeing are newcomers who aren’t even programmers who fall for all this crap and then come here to post about it
-
comment
Comment #46830494
I personally would have changed it to a round-trip then just returned the car to the other Hertz location and let them figure it out.
-
comment
Comment #46830149
If you add multiple IPs to a record, a lot of resolvers will simply use the first one. So even in that case you need a low TTL to shuffle them constantly
-
comment
Comment #46494692
Client-server multiplayer games are already kind of a very specialized type of video playback if you squint a bit (you're transmitting entities rather than pixels). This method of …
-
comment
Comment #46089668
They could get a rough estimate of an IP location using traceroute from many different known locations. Very rough but it’s a starting point. For some cases, they might just lookup…
-
comment
Comment #45691452
Agreed. I feel that a lookup table can probably map all emojis possible to a uint32 (maybe optimistically uint16, [1] says there's about 4k emojis, does that include skin variation…
- comment
-
comment
Comment #45522359
How are you gonna throw an error inside Array.prototype.push?
-
comment
Comment #45508426
You can just use Proxy to get around toString shenanigans and prevent any detection whatsoever.
-
comment
Comment #45418733
Your python code allocates an array and inverts it every function call. The C++ code has no overhead and is equivalent to a compile time transformation.
-
comment
Comment #45418694
Should be using empty base optimization or [[no_unique_address]] for that implementation
-
comment
Comment #44533548
Probably some sort of command and control for a botnet. They calculate a random domain name based on the timestamp (so it’s constantly changing every X days in case it gets seized)…
-
comment
Comment #44515926
Why do we need AI for that? Can’t we just strip html tags?
-
comment
Comment #44183790
You’re basically asking people to do your homework for you at this point…