Live data from Hacker News

Viewing profile — _ikke_

_ikke_

HN member
Joined
Tue, May 31, 2011, 8:03 PM UTC
HN karma
1,572
Public activity
247 items

About _ikke_

Another random user

Recent public activity

  1. comment
    Comment #48903195

    The branch reflog (git reflog or git log -g ) is a lot easier to follow in the case of rebase than the HEAD reflog (which gets an entry for each commit that gets checked out / appl…

  2. story
  3. story
  4. comment
    Comment #46965997

    My favorite from this release. > The built-in new function, which creates a new variable, now allows its operand to be an expression, specifying the initial value of the variable. …

  5. comment
    Comment #46495900

    As long as what it says is reliable and not made up.

  6. comment
    Comment #46478537

    That's why I mentioned multiple addresses. The public addresses (assigned using SLAAC or DHCPv6) are for global reachability, while you use the local prefix for stable addresses wi…

  7. comment
    Comment #46476370

    The ipv4 routing table contains many individual /24 subnets that cannot be summarized, causing bloat in the routing tables. With ipv6, that can be simplified with just a couple of …

  8. comment
    Comment #46475636

    With IPv6, it's common to have multiple addresses on an interface. So on options is to assign yourself an [RFC 4193]( https://datatracker.ietf.org/doc/html/rfc4193 ) fc00::/7 rando…

  9. comment
    Comment #46117976

    Instead, you get to hunt the nouns.

  10. comment
    Comment #44915708

    It affects many open source projects as well, they just scrape everything repeatedly without abandon. First from known networks, then from residential IPs. First with dumb http cli…

  11. comment
    Comment #43483878

    Only if that AI does not hallucinate, otherwise it would be useless.

  12. comment
    Comment #43263883

    Systems that use shamirs secret sharing, like openbao, require multiple operators to unlock the secret engine. Gitlab premium can also require multiple approvals before a merge req…

  13. story
  14. story
  15. story
  16. comment
    Comment #40949149

    If a TUI is an option, then `tig blame` is a good interface. https://github.com/jonas/tig

  17. comment
    Comment #40846802

    > OpenSSH sshd on musl-based systems is not vulnerable to RCE via CVE-2024-6387 (regreSSHion). https://fosstodon.org/@musl/112711796005712271

  18. comment
    Comment #40062206

    They have a blogpost about it: https://tailscale.com/blog/free-plan > TL;DR: Tailscale’s free plan is free because we keep our scaling costs low relative to typical SaaS companies.…

  19. comment
    Comment #39977760

    Until you want to introduce a change that affects both machines. You need to start rewriting history or cherry-pick the changes on both branches. The further the history diverges, …

  20. comment
    Comment #39967003

    It's surprising how often projects retag releases. Diffoscope makes it easy to see the difference between the original tarball and the retagged versions. Changes vary from from for…

  21. story
  22. comment
    Comment #39239839

    For someone who understands git, it certainly is not. But if you are not aware of how git works, committing things when HEAD is detached could to confusion in the best case, and lo…

  23. comment
    Comment #38889851

    git diff by default outputs valid patch files that you can feed to patch out git apply. --word-diff does not Kernel development involves working with patches a lot, so it made sens…

  24. comment
  25. comment
    Comment #37626569

    Which is the equivalent of a fast-forward merge. Same result, different mechanism.