Viewing profile — _ikke_
_ikke_
HN member- Joined
- Tue, May 31, 2011, 8:03 PM UTC
- HN karma
- 1,572
- Public activity
- 247 items
- HN profile
- View on Hacker News ↗
About _ikke_
Recent public activity
-
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…
- story
- story
-
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. …
-
comment
Comment #46495900
As long as what it says is reliable and not made up.
-
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…
-
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 …
-
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…
-
comment
Comment #46117976
Instead, you get to hunt the nouns.
-
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…
-
comment
Comment #43483878
Only if that AI does not hallucinate, otherwise it would be useless.
-
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…
- story
- story
- story
-
comment
Comment #40949149
If a TUI is an option, then `tig blame` is a good interface. https://github.com/jonas/tig
-
comment
Comment #40846802
> OpenSSH sshd on musl-based systems is not vulnerable to RCE via CVE-2024-6387 (regreSSHion). https://fosstodon.org/@musl/112711796005712271
-
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.…
-
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, …
-
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…
- story
-
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…
-
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…
-
comment
Comment #38319067
Lift-off
-
comment
Comment #37626569
Which is the equivalent of a fast-forward merge. Same result, different mechanism.