@h4cc@hmans Yes, I'm the only maintainer at the moment. I've been meaning to stay on top of this, but life got in the way. It would be good to find more maintainers!
@SlackStatus@Google@Cloudflare More dnssec tests in https://t.co/22Q5gm2bXs
Not only the zone TTL, but .com with 24h TTL.
dnssec signs the chain of trust for nameserver delegations, all tied together.
. root 24h
com 24h
slack 1h
com has the faulty DS cached. 24h wait.
https://t.co/3DkGhAiRV6
@catmcgee I think it's also important to say that Git is distributed, while GitHub is centralized.
Another big difference is that Git is free open source software, while GitHub is proprietary and closed source.
Focus on these 5 soft skills if you want to become a better Developer.
1. Communication
2. Problem solving
3. Self learning
4. Teamwork
5. Approachability
Git ProTip™: when you need to restore changes made on a previous commit, and only from a particular file(s), you can use:
git checkout [<tree-ish>] [--] <pathspec>...
e.g.:
git checkout b4d455 -- path/to/file
A quick #git nugget for when you're collaborating with someone and want to send your staged changes:
git diff --cached > diff.patch
This creates a `diff.patch` file in the current dir. Send this file to the other person and tell them to run:
git apply diff.patch
#protip