Live data from Hacker News

Viewing profile — ratorx

ratorx

HN member
Joined
Thu, Dec 05, 2019, 10:53 AM UTC
HN karma
937
Public activity
365 items

About ratorx

aspe:keyoxide.org:FGHSLUO45LUWPM5YWIKSVBNRFE

Recent public activity

  1. comment
    Comment #49207553

    The existing, human standards are based on human capabilities. Humans may not have read all the papers that could be cited. However, all these papers are almost certainly in the AI…

  2. comment
    Comment #48845653

    Do you have source for IWF funding being by big tech? Haven’t found anything that breaks their funding down by source and the majority on the UK govt site is from “charitable activ…

  3. comment
    Comment #48709925

    Anycast DNS doesn’t mean what you think it means. Your DNS traffic to Cloudflare is routed via anycast. If Cloudflare is sending this DNS query (eg to an authoritative DNS server),…

  4. comment
    Comment #48648610

    Putting aside the WASM sandboxing (I’m not familiar enough with it to understand how sandboxing works) there’s a DoS vector at least. Even regexes have had many DoS issues, and I c…

  5. comment
    Comment #48648484

    There’s a big difference in the expected use of a file. If the file is attacker provided, and the fallback path is being used, the attacker can embed whatever WASM payload they wan…

  6. comment
    Comment #48235349

    Providing access to the data is easy. It is just an MCP or equivalent, and coding such CRUD is cheap now. Applying the actions is unsolved. Unless you YOLO the LLMs, taking statefu…

  7. comment
    Comment #48082431

    If your goals were fame, then yes. But you can still pursue excellence even if there is an alternative “easy” path. The equivalent is something like hand tool woodworking - it’s st…

  8. comment
    Comment #47731534

    UK has never had net neutrality, there are many limited data phone plans that include unlimited music/video etc

  9. comment
    Comment #47652139

    I think I read somewhere (but could be wrong) that it was because they didn’t want to own any “authentication” services. Their infrastructure was zero trust (as in they don’t hold …

  10. comment
    Comment #47425426

    Making it explicit wouldn’t be particularly problematic no? Option in Rust terms. Or for this specific case, a GADT (Single | Married )? It could even use a special “NULL” address.…

  11. comment
    Comment #47399580

    Pure CS is not necessarily equivalent to pure maths. For the “science” bit of CS, you do need to do the equivalent of experiments (for more applied topics). For example, a physics …

  12. comment
    Comment #47144650

    Changing the links and doing nothing else would be a pretty dumb MITM. You could do a more complex variant which is not so easy to spot (targeting specific networks, injecting malw…

  13. comment
    Comment #47144174

    I find it interesting that they bought Astro ( https://blog.cloudflare.com/astro-joins-cloudflare/ ), which from my definitely-not-a-frontend-person perspective seems to tackle a s…

  14. comment
    Comment #47109318

    You can make it so employees don’t have ambient access to data, and require multi-party approval for all actions that require user data. Giving away a user password should be treat…

  15. comment
    Comment #47104547

    It doesn’t have to be a compile time constant. An alternative is to prove that when you are calling the function the index is always less than the size of the vector (a dynamic con…

  16. comment
    Comment #46977691

    A global train outage would be quite a spectacle, is that even possible?

  17. comment
    Comment #46964045

    Management not having to listen to engineers is the structural problem. How do managers know which concerns that engineers bring up are actually relevant? How do engineers know whi…

  18. comment
    Comment #46881696

    I think it depends on the scope and level of solution I accept as “good”. I agree that often the thinking for the “next step” is too easy architecturally. But I still enjoy thinkin…

  19. comment
    Comment #46770579

    I guess this is also a matter of organisational policy and how much power individual teams/organisational units have. I would imagine mature organisations without serious short/med…

  20. comment
    Comment #46766764

    Team lead manages the overall direction of the team (and is possibly the expert on some portions), but for an individual subsystem a senior engineer might be the expert. For work c…

  21. comment
    Comment #46644999

    To be clear, they definitely use ingress anycast (ie anycast on external traffic coming into Cloudflare). The main question was whether they (meaningfully) used egress anycast (mul…

  22. comment
    Comment #46640533

    So reading the article you’re right, it’s technically anycast. But only at the /24 level to work around BGP limitations. An individual /32 has a specific datacenter (so basically u…

  23. comment
    Comment #46640218

    It’s possible, but I think it’s typically used for ingress (ie same IP, but multiple destinations, follow BGP to closest one). I don’t think I’ve seen a similar case for anycast eg…

  24. comment
    Comment #46564977

    I guess my workflow for this is more fragmented. Either I’m prototyping a script (and edit and test it directly) or just need throwaway loop (in which case fish is nicer). I also d…

  25. comment
    Comment #46564395

    For POSIX: I leave Bash as the system shell and then shim into Fish only for interactive terminals. This works surprisingly well, and any POSIX env initialisation will be inherited…