Viewing profile — Tiddles-the2nd
Tiddles-the2nd
HN member- Joined
- Thu, Nov 25, 2021, 6:43 AM UTC
- HN karma
- 38
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About Tiddles-the2nd
Recent public activity
-
comment
Comment #48406984
The check isn't important; what's important is being predictable so the CPU can guess which way the check will go. I don't know exactly how it works, but after the first couple of …
-
comment
Comment #46253844
This is disgusting and unconscionable conduct by Apple. Your whole life is locked into your account (digital data and physical devices), and they either don't care or don't have th…
-
comment
Comment #35255316
> A state projection concluded that the connector collapse had cost $90 million, based on a $6 million per day economic impact estimate. This includes a $491,000 loss in toll reven…
-
comment
Comment #33767803
When it comes to ad links I've always wondered if it's ignorance or done deliberately to make you click on the ad.
-
comment
Comment #32896582
Also this is just weird, it tries to be EE but it just ends up being convoluted without applying the patterns correctly. E.g. all the logic is executed in the constructor of HelloW…
-
comment
Comment #32896555
Obligatory Fizz-Buzz EE. https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...
-
comment
Comment #32893587
If the test was done on a single processor and not repeated it's possible only that particular chip has this unique behaviour.
-
comment
Comment #32545926
> “I decided it was probably not worth $7,000, [to sue Google]” he said. This is a big part of the problem, technically you have a recourse, but the cost for individuals is a barri…
-
comment
Comment #32435698
As an interpreter, it could be very powerful for development, prototyping, and developing POCs.
-
comment
Comment #31820902
Not a useful comment 20 minutes into an outage. The internet is an interconnected web of dependencies. Unless you are Cloudflare/Akamai/Amazon/Google there is no self-hosted anymor…
-
comment
Comment #31258101
That's the point, take a look into salting + hashing passwords
-
comment
Comment #30522425
I'll also plug pwndbg[1] here. Like Gef it greatly extends the utility of GDB, and is oriented around exploit development. [1] https://github.com/pwndbg/pwndbg
-
comment
Comment #29973923
Visually it looks very cool, but I agree it's not very helpful. At the very least each result and RC should be in a different colour.
-
comment
Comment #29338814
xchg %ax,%ax is the nop instruction. I would have expected to see written instead but the opcode (0x90) is shared by both. It's also possible that xchg %ax,%ax is has been decoded …