Skip to content

Instantly share code, notes, and snippets.

View Tschucki's full-sized avatar
🛴
Schnelle Helle ist meine Welle

Marcel Wagner Tschucki

🛴
Schnelle Helle ist meine Welle
  • real media technic STAUDACHER GmbH
  • Cham, Germany
  • 12:26 (UTC +01:00)
View GitHub Profile
@Tschucki
Tschucki / find.sh
Created April 9, 2024 14:44
Check all repositories for specific composer dependency
#!/bin/bash
check_ssh_agent() {
# shellcheck disable=SC2046
eval $(ssh-agent -s)
ssh-add
}
if [ "$#" -ne 2 ]; then
echo "Verwendung: $0 <Github_Organisation> <Dependency>"
@Tschucki
Tschucki / 2019-https-localhost.md
Created May 23, 2023 11:13 — forked from cecilemuller/2019-https-localhost.md
How to create an HTTPS certificate for localhost domains

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).