Live data from Hacker News

Viewing profile — daper

daper

HN member
Joined
Thu, Apr 13, 2017, 12:32 PM UTC
HN karma
125
Public activity
31 items

About daper

No profile information was provided.

Recent public activity

  1. comment
    Comment #35054118

    Sure, you can. But on advantage of IPv6 is you addresses are globally unique. If you ever need to connect two networks that were created independently (like different companies), u…

  2. comment
    Comment #35042792

    I've given a try to IPv6 in a company with few tens on servers in a 2 DCs, an office + additional location, 3 ISPs in total. For me the real challenge is not just different way to …

  3. comment
    Comment #34707380

    With BGP (especially anycast) you don't have direct influence where the requests lands. You can steer traffic by techniques like AS prepend, some priorities per BGP session (I'm no…

  4. comment
    Comment #34199781

    Varnish (HTTP caching only) also uses one thread per client. I believe worker threads are used to handle reuqests while a dedicated thread handles all the idle connections between …

  5. comment
    Comment #32522185

    Can I ask if your whole content can be stored on a single server so content is simply replicated everywhere or there is some layer above that that directs requests to the specific …

  6. comment
    Comment #32521585

    AFAIK no. The point of DRM is to prevent recording / playing the media on a device without decryption key (authorization). So the goal is different than TLS that is used by the cli…

  7. comment
    Comment #32521428

    I have some experience serving static content and working with CDNs. Here is what I find interesting / unique here: - They are not using OS page cache or any memory caching for tha…

  8. comment
    Comment #32045379

    I had brief experience managing such IT team after which I've gained big respect for them. I've never seen such low budget to amount of work ratio in my IT career. Everybody expect…

  9. comment
    Comment #31607263

    Note that they are using 10GbE network when even a single NVMe disk used in the test has few times more bandwidth so the bandwidth results are constrained by the network hardware. …

  10. comment
    Comment #30302583

    I categorize this as bugs caused by data inconsistency because od data duplication. That includes: - Using asynchronous database replication and reading data from database slaves -…

  11. comment
    Comment #30272839

    If you have your own domain, then move it to one of the listed DNS providers and use DNS challenge with ACME: We are using using certbot + cloudflare whis way. There is no HTTP req…

  12. comment
    Comment #29385989

    From the described mistakes two come from lack of understanding how exactly DNS works. But I agree it's in fact hard, see [1]). 1. "This strict DNS spec enforcement will reject a C…

  13. comment
    Comment #29329263

    Generally agree, for basic configuration it just works. But I was planning to use IPv6 in some network segments in my company. Providing proper VPN (road warrior style) for employe…

  14. comment
    Comment #28756556

    As I understand my favorite resolver - unbound - has separate "infra" cache that also caches RTT times, and "down" status of name servers: https://nlnetlabs.nl/documentation/unboun…

  15. comment
    Comment #28749823

    Our security team complained that we have some services like monitoring or SSH access to some Jump Hosts accessible without a VPN because VPN should be mandatory to access all inte…

  16. comment
    Comment #28586394

    I think the described machines were designed for a very specific workloads even in CDNs world. As I guess they serve exclusivelly fragments of on-demand videos, no dynamic content.…

  17. comment
    Comment #27610905

    Same here. mSBC coded that started working for me around Fedora 33/pipewire 3.2x is a night/day change for me. I can use my Jabra bluetooth headset with high quality audio instead …

  18. comment
    Comment #27263161

    After some searching I've found that Supermicro is selling ATX power supplies with SMBus (hopefully PMBus really) connection in reasonable price but never had one and I'm not able …

  19. comment
    Comment #27257909

    Server PSUs support such communication (looks like this is PMBus protocol, variation of SMBus, which is variation of I²C). In servers it's connected to the BCM and usually allows t…

  20. comment
    Comment #27096041

    There are advantages of using HTTP cache on application side even if you use CDN: - Varnish can guarantee that a given resource will be fetched at most once every TTL expiration si…

  21. comment
    Comment #26918349

    You're right. I'm wasn't really serious. Since I'm in the middle of calculating costs of own servers in rented racks in Poland (you're right labor is more difficult than hardware) …

  22. comment
    Comment #26916195

    10x Supermicro SSG-6049P-E1CR60H servers (60 x 3,5" HDD in 4U enclosure) - $5k each 600x WESTERN DIGITAL Ultrastar DC HC550 18TB (10800PB in total) - $500 each ~$350k in hardware, …

  23. comment
    Comment #26637136

    IPv6: curl http://ipv6.whatismyip.akamai.com curl http://ipv6.whatismyip.akamai.com/advanced IPv4: curl http://whatismyip.akamai.com curl http://whatismyip.akamai.com/advanced Both…

  24. comment
    Comment #26530327

    Some providers are doing that. For example you can rent such bare metal servers from OVH's cheap brand So You Start. But that doesn't make sense if you need something more that one…

  25. comment
    Comment #26147728

    The way I look at the major improvements in the two recent HTTP versions is: HTTP/2 was needed to better utilize the bandwidth by keeping the TCP connection busy without silence pe…