Live data from Hacker News

Viewing profile — laurowyn

laurowyn

HN member
Joined
Tue, Apr 21, 2020, 5:07 PM UTC
HN karma
177
Public activity
81 items

About laurowyn

No profile information was provided.

Recent public activity

  1. comment
    Comment #48830145

    > You can just make the tool calls restricted/scoped to whatever the calling account has access to (or in this case the repo) Which is treating the symptom, not the cause. I agree …

  2. comment
    Comment #48063235

    > What is the use case? It's primarily just an experimental system. Demonstrating that fixed infrastructure isn't actually necessary to communicate. Beyond that, it's a mixture of …

  3. comment
    Comment #48063127

    To be fair, the hop limit has to die somewhere. It's an intricate balancing act of causing packet storms vs failure to deliver messages. 6 degrees of separation is probably the int…

  4. comment
    Comment #47689208

    And when the system fails for whatever reason? Just because AI exists doesn't mean we can neglect basic design principles. If we throw everything out the window, why don't we just …

  5. comment
    Comment #47689124

    > Why does AI need that folder structure? Why not a flat list of files and let the AI agent explore with BM25 / grep, etc. It doesn't. The human creating the files needs it, to mak…

  6. comment
    Comment #46023826

    Why not think of it a different way; why do we need to put up with breaking changes at all? I'd much rather stand up a replacement system adjacent to the current one, and then swit…

  7. comment
    Comment #45680427

    > They are no longer able to process the requested commercials with due diligence no longer able? or no longer willing to, because it impacts their bottom line?

  8. comment
    Comment #43304227

    > But let's ignore that web API worst case. Imagine that you have some semi-trusted software and because you don't want to take any risks, you run in nested VMs three layers deep. …

  9. comment
    Comment #43304197

    It's absolutely a good thing, and arguably not a security issue at all. It needs access to the command interface of the chip, which means you need to either have physical access to…

  10. comment
    Comment #40482748

    I would say `narrator voice` in this context is distinctly different from internal dialogue. Obviously the internal voice can narrate to yourself, but that voice tends to be slight…

  11. comment
    Comment #40482708

    I have a narrator voice when reading code. It's the same narrator voice as when reading technical reports and white papers. I do sometimes struggle to process code that doesn't rea…

  12. comment
    Comment #40202755

    ...you can mark all the books you've checked with a hole so you know you've checked them. Work harder, not smarter. /s Jokes aside, I still agree with GP, in that there are more pr…

  13. comment
    Comment #39146185

    But the only differing cost in that scenarios is the 2 extra conductors to the local transformer, and more likely just to the edge of the property. The 3-phase power is still prese…

  14. comment
    Comment #39000413

    Certainly an interesting one. IANAL, but I believe the terms of the purchased license would be to use the product with only the license key provided. Therefore using an alternative…

  15. comment
    Comment #38013228

    Commonplace books, reading reflection, daily log, zettelkasten are all alternative techniques that achieve much the same as a log book, with various pros and cons to each. Building…

  16. comment
    Comment #36907862

    So the equivalent of: iptables -N eth0toeth1; iptables -P eth0toeth1 DROP; iptables -A FORWARD -i eth0 -o eth1 -j eth0toeth1; iptables -A eth0toeth1 -m tcp -p 80 -j ACCEPT; # add a…

  17. comment
    Comment #36907779

    except vbash drives those tools by generating configs. But this is my point; why is VyOS a distro when vbash could just be a package available to other distros?

  18. comment
    Comment #36905764

    define zone based? If wanting internal and external subnets as "zones", iptables/nftables lets you match against incoming and outgoing interfaces. It would be trivial to make match…

  19. comment
    Comment #36904945

    If you want a web GUI, then pfSense or OPNSense are the general go tos. However, if you're comfortable with CLI and modifying configs in /etc/ then just running a bare metal Alpine…

  20. comment
    Comment #35594977

    Petition IEEE to change the title. Hacker news just parrots the original title. Them's the rules, always has been.

  21. comment
    Comment #32457965

    Modern Effective C++ by Scott Meyers is my go to for people in this situation. I'm not sure if there's an even more recent edition that covers C++17 and C++20, but C++11/14 is defi…

  22. comment
    Comment #29891071

    Somewhat agree, however I think it's because building redstone actually requires some materials science type knowledge. i.e. how different materials and physical structures affect …

  23. comment
    Comment #29868066

    Pin all you want, if the repo/vendor/maintainer pulls the release then you're not getting access to your dependencies at all. If anything, this is the reason you use pull-through p…

  24. comment
    Comment #29361969

    > when developers also think about how the app will run, the outcomes will be the best Absolutely agree, but that becomes "engineering" in my view. I'm talking specifically about i…

  25. comment
    Comment #29360984

    >Kubernetes isn't always the right tool for the job, with which i agree, especially for smaller teams I think this is the key point. Kubernetes is great when used correctly, in the…