Viewing profile — xakahnx
xakahnx
HN member- Joined
- Sat, May 06, 2017, 7:16 PM UTC
- HN karma
- 34
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About xakahnx
No profile information was provided.
Recent public activity
-
comment
Comment #34842542
My company provides me a work phone with a separate phone number. This is where I get pages and urgent or intentionally disruptive calls/messages
-
comment
Comment #34842181
Have you tried calling people on the phone? This is the remote-work equivalent of tapping someone on the shoulder. It's equally helpful for companies that have multiple offices whe…
-
comment
Comment #32344146
HN gets comment threads every month or so with "FAANG engineers do in fact make >500k annually". I see commenters doubt this every time, but it's true!
-
comment
Comment #29059437
Adding to the speculation here, I'm willing to bet some component of their issue is not entirely technical. Regardless of the underlying cause (PKI was mentioned), for downtime to …
-
comment
Comment #25609975
I find the same failed incentive scheme in industry. When a company gets big enough (tens of thousands of employees), taking risks to achieve something new and interesting doesn't …
-
comment
Comment #23110439
The general attitude here reminds a bit of the following post from the architect of the Varnish proxy. I think the attitude comes down to the fact that modern kernels and in genera…
-
comment
Comment #22788355
So much to relate to in this article. If I'm cycling through stackoverflow for answers, it's because I've convinced myself I'm in over my head. Depending on the day this is either …
-
comment
Comment #22774588
It brings interesting trade-offs for program design. You can write the code one way which may be 10x faster but harder to reason about, or another way which is more straightforward…
-
comment
Comment #22766335
The bulk of this article is more about creating your own programming language to solve a particular problem or set of problems. Less about choosing between general purpose programm…
-
comment
Comment #22763254
One of the consequences of TCP being implemented in the Linux kernel is that companies were implicitly motivated to open source any performance or efficiency improvements to their …
-
comment
Comment #22751647
Good point. I was picturing some gather/scatter over strings which are not in adjacent memory (maybe a generous interpretation for my use-case). Concatenating small strings into nd…
-
comment
Comment #22746043
I like string processing libraries that implement a multi-document feature like the one mentioned here. There's always some efficiency to be gained- maybe the public API has a lot …
-
comment
Comment #22440645
Cool! I looked up more info on this and ended up here, http://www.brendangregg.com/blog/2017-05-04/the-pmcs-of-ec2.... But I only skimmed this and I don't see that it mentions abou…
-
comment
Comment #22439901
Any idea why this is? I'm even more curious since you've singled out "cloud VMs" from all VMs.
- story
- story
- story
-
comment
Comment #21961988
This is still a disaster with hyperthreading where you can have two threads contending for a lock on the same physical core. Even if your thread won't be scheduled off the core I d…
-
comment
Comment #21861497
Most performance problems are measured as some function of the hardware resources (CPU usage, throughput, disk iops, network latency, ...). How do you find out what application or …
-
comment
Comment #21590303
More than just broadcasts as we think of them in networked systems, it requires serialized/transactional broadcasts. Network distributed systems also have problems with ordering wh…
-
comment
Comment #21589558
Keeping the directory coherent is the difficult part when translating directory-based cache coherence protocols to other distributed systems problems. The directory is like an orac…
-
comment
Comment #20423076
Also interested in this protection. How does it detect this situation and what does it do when something is detected? Did you notice when it was accidentally removed that your moni…