Using Windows 11 + WSL2
Using misefor managing packages
curl https://mise.run | sh| #!/usr/bin/env bash | |
| # file location ~/.config/context7-mcp.sh | |
| set -euo pipefail | |
| # The key is stored securely in a separate file. | |
| # `source` reads the file without printing its contents. | |
| # `set -a` ensures that the variables are exported. | |
| set -a | |
| source "$HOME/.config/context7/credentials" | |
| set +a |
Listing all docker volumes and their creation date without any additional tools required.
https://stackoverflow.com/a/77819947/11687201
Source: https://discuss.codecademy.com/t/setting-up-conda-in-git-bash/534473
# Git-Bash
#Assuming miniconda got installed for all users here 'C:\ProgramData\miniconda3'
cd /c/ProgramData/miniconda3/etc/profile.dhttps://exiftool.org/exiftool_pod.html
exiftool -a -b -W %d%f_%t%-c.%s -preview:all <directory containing DNGs>Source: https://www.atlassian.com/de/git/tutorials/merging-vs-rebasing
git checkout feature
git checkout -b temporary-branch
git rebase -i main
# [Clean up the history]For details check out: https://pytorch.org/docs/stable/notes/randomness.html
Seed points should be set at the beginning of an application.
import torch
import random