I hereby claim:
- I am mafulafunk on github.
- I am funkattack (https://keybase.io/funkattack) on keybase.
- I have a public key whose fingerprint is C431 F645 A11D BA07 999F BF29 1182 C715 8145 05F2
To claim this, I am signing this object:
#!/bin/bash | |
if [ -z "$BASH_VERSION" ]; then | |
echo "Dieses Skript muss mit bash ausgeführt werden. Bitte verwenden Sie: bash $0" | |
exit 1 | |
fi | |
# Protokolldateiname mit Zeitstempel erstellen | |
TIMESTAMP=$(date +"%Y%m%d_%H%M%S") | |
LOG_FILE="connection_test_${TIMESTAMP}.log" | |
TCPDUMP_FILE="tcpdump_${TIMESTAMP}.pcap" |
//usr/bin/env jbang | |
//JAVA 21 | |
//DEPS com.openai:openai-java:1.6.0 | |
import com.openai.client.OpenAIClient; | |
import com.openai.client.okhttp.OpenAIOkHttpClient; | |
import com.openai.models.responses.ResponseCreateParams; | |
import com.openai.models.responses.ResponseOutputText; | |
import java.io.IOException; |
package ch_015; | |
import java.time.LocalDate; | |
import java.util.function.Function; | |
import java.util.function.Supplier; | |
public class SuppliFication { | |
public static void main(String[] args) { | |
Function<MySupplier, String> foo = MySupplier::get; | |
System.out.println(foo.get()); |
I hereby claim:
To claim this, I am signing this object:
package de.martinfunk; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.net.Authenticator; | |
import java.net.PasswordAuthentication; | |
import java.net.URISyntaxException; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.security.KeyManagementException; |