From 553b3e277dced61c74a1cc11dfb0d0f3f07e0145 Mon Sep 17 00:00:00 2001 From: mloning <21020482+mloning@users.noreply.github.com> Date: Tue, 14 Jan 2025 20:53:21 +0100 Subject: [PATCH 1/2] add link for comparing salaries --- content/posts/job-interviewing.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/posts/job-interviewing.md b/content/posts/job-interviewing.md index 16519be..4e51317 100644 --- a/content/posts/job-interviewing.md +++ b/content/posts/job-interviewing.md @@ -602,6 +602,8 @@ Better to not give the first number, but if unavoidable, appeal to an objective I know that the average software engineer in Silicon Valley makes roughly 120K a year salary. So I think that’s a good place to start. +For reference salaries, see e.g. https://www.levels.fyi + ### How to ask for more Always state a reason why you’re asking for more (see above) From a3955d16699bde7d262477f7e940d1f86b7ccdb7 Mon Sep 17 00:00:00 2001 From: mloning <21020482+mloning@users.noreply.github.com> Date: Tue, 14 Jan 2025 20:57:04 +0100 Subject: [PATCH 2/2] add draft on gpg signing git commits --- content/posts/signing-git-commits.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 content/posts/signing-git-commits.md diff --git a/content/posts/signing-git-commits.md b/content/posts/signing-git-commits.md new file mode 100644 index 0000000..4da6b3c --- /dev/null +++ b/content/posts/signing-git-commits.md @@ -0,0 +1,17 @@ +--- +title: "Signing git commits" +date: 2025-01-14T20:50:10+01:00 +last_modified: .Lastmod +draft: true +--- + +https://withblue.ink/2020/05/17/how-and-why-to-sign-git-commits.html + +If a key expires, you can update the expiration date as follows: + +- `gpg --list-secret-keys` to list the secret keys and look up the key ID, alternatively `gpg --list-keys` +- `gpg --edit-key ` to open the gpg console +- run `expire` in the gpg console and follow the prompts to update the expiration date +- finally `save` and `quit` + +You can type `help` in the console for other available commands.