Viewing profile — ahmedtd
ahmedtd
HN member- Joined
- Wed, Oct 19, 2016, 1:53 PM UTC
- HN karma
- 75
- Public activity
- 41 items
- HN profile
- View on Hacker News ↗
About ahmedtd
ahmed.taahir@gmail
Recent public activity
-
comment
Comment #48439462
From the article, it doesn't seem like Go is trying to re-encode strings? Go is saying (correctly, IMO) that a UTF8String field in the Issuer is not the same as a PrintableString f…
- story
-
comment
Comment #47300976
Stock grants (RSUs, like Google gives out) are taxed as ordinary income at the moment they vest. If you sell them immediately, then you don't pay any additional capital gains tax, …
-
comment
Comment #47172282
American laws also have universal jurisdiction (for example, the Bill of Rights doesn't say, "unless you are located outside the US"). Most countries do not explicitly recognize th…
-
comment
Comment #46956131
I don't think this is true. It's something that could be useful, with some sort of ACME-like automated issuance, but should definitely be issued from a non-WebPKI certificate autho…
-
comment
Comment #46956117
If that's all you want to accomplish, you don't need WebPKI. Just generate a private key and a self-signed certificate. (This is basically how Let's Encrypt / ACME accounts work)
-
comment
Comment #46840168
Can you link your PRs here? Kubernetes is such a huge project that there are few reviewers who would feel comfortable signing off an an arbitrary PR in a part of the codebase they …
-
comment
Comment #46425462
I have exactly the same two problems, haha. I wonder why they seem unable to fix them.
-
comment
Comment #45352177
Sam Altman skipped any attempt to prove his own statements right, so...
-
comment
Comment #44407511
It's not enabled by default, but you can --- gRPC Reflection: * https://github.com/grpc/grpc-java/blob/master/documentation/... * https://grpc.io/docs/guides/reflection/ You can th…
-
comment
Comment #44323159
Various pieces support pieces for pod to pod mTLS are slowly being brought into the main Kubernetes project. Take a look at https://github.com/kubernetes/enhancements/tree/master/k…
-
comment
Comment #43550287
From the sync.Pool documentation: > If the Pool holds the only reference when this happens, the item might be deallocated. Conceptually, the pool is holding a weak pointer to the i…
-
comment
Comment #40594346
If they are using multitenant Docker / containerd containers with no additional sandboxing, then yes, then it's only a matter of time and attacker interest before a cross-tenant co…
-
comment
Comment #40241644
GKE does ship with both Ingress and Gateway controllers integrated, they set up GCP load balancers with optional automatic TLS certificates. I think you need to flip a flag on the …
-
comment
Comment #39896479
That page seems to be a community wiki, and I think the original authors are somewhat confused on that point. If you salt and hash the password on the client side, how is the serve…
-
comment
Comment #39718371
In Washington, cyclists can treat stop signs as yield signs, as long as there is no other traffic approaching the intersection. Obviously, though, if you almost hit a pedestrian th…
-
comment
Comment #35781700
Related (though not a sator square). A while back I made an implementation of 5x5 word squares, following an example from Knuth: https://row-major.net/articles/2020-05-12-interacti…
-
comment
Comment #35715620
Disclosure: I work in GCP engineering, thoughts are my own and not Google's, etc. My impression is that Anthos is probably not what you need if your use case is deployment of a man…
-
comment
Comment #34247797
Don't the bits come off the wire one at a time at the server as well? Any ability to read() from multiple sockets coming over the same interface is enabled by the kernel reading th…
-
comment
Comment #33980785
Not when the counter overflows back to 0. If it's a 3 bit counter, 0 is A again, not C.
-
comment
Comment #33292053
Not really the point of your comment, but... The GKE equivalent of EKS IRSA is GKE Workload Identity. It's pretty much the same user experience: * Enable Workload Identity on your …
-
comment
Comment #32732265
I'm pretty sure v2 and v1 functions are totally separate. If you run `gcloud functions list --log-http`, you can see that gcloud makes separate calls to the v2 and v1 apis in order…
- story
-
comment
Comment #30965180
www.row-major.net
-
comment
Comment #30390358
You don't pop the min, you pop the top of the stack.