Skip to content

Instantly share code, notes, and snippets.

View jarryDk's full-sized avatar

Michael Bornholdt Nielsen jarryDk

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jarrydk on github.
  • I am jarry_dk (https://keybase.io/jarry_dk) on keybase.
  • I have a public key ASCJLrQWFNgf9lvq5k6wUTmWhtcQpf9KjqxqZwiJh2vXogo

To claim this, I am signing this object:

#!/bin/bash
#
# Get and array of containers and the network name of the container
#
dnf list jq -y
podman ps --format json | jq '[ .[] | { name: .Names[0], network: .Networks[0] } ]'
#!/bin/bash
mkdir -p /run/user/$(id -u)/podman
export DOCKER_HOST="unix:/run/user/$(id -u)/podman/podman.sock"
podman system service --time=0 unix:/run/user/$(id -u)/podman/podman.sock &
@jarryDk
jarryDk / script_dir.sh
Created December 17, 2024 07:30
Get the directory where a Bash script is located from within the script itself
#!/usr/bin/env bash
#
# Get the directory where a Bash script is located from within the script itself
#
# https://stackoverflow.com/questions/59895/how-do-i-get-the-directory-where-a-bash-script-is-located-from-within-the-script#246128
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
@jarryDk
jarryDk / readme.md
Created April 24, 2025 12:04
How can I change the commit author for a single commit?

Interactive rebase off of a point earlier in the history than the commit you need to modify (git rebase -i <earliercommit>). In the list of commits being rebased, change the text from pick to edit next to the hash of the one you want to modify. Then when git prompts you to change the commit, use this:

git commit --amend --author="Author Name <[email protected]>" --no-edit

For example, if your commit history is A-B-C-D-E-F with F as HEAD, and you want to change the author of C and D, then you would...

  1. Specify git rebase -i B (here is an example of what you will see after executing the git rebase -i B command)