I hereby claim:
- I am omerfsen on github.
- I am omerfsen (https://keybase.io/omerfsen) on keybase.
- I have a public key ASABTvjYK39O-iVV7A7DqHelkJm5B0PKfbWtcGjABhVpCAo
To claim this, I am signing this object:
# Encrypt STDIN with Salt "045667221ABCDFFF", Password from STDIN | |
$ echo "message" | openssl enc -aes-256-cbc -a -S "045667221ABCDFFF" -pass pass:TEST | |
U2FsdGVkX18EVmciGrzf/1pWNVmPZ5FLXa+v68TZGGg= | |
# Decrypt STDIN with Salt "045667221ABCDFFF", Password from STDIN | |
$ echo "U2FsdGVkX18EVmciGrzf/1pWNVmPZ5FLXa+v68TZGGg=" | openssl enc -aes-256-cbc -a -d -S "045667221ABCDFFF" -pass pass:TEST | |
message |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# search dockerhub via APIv2 and print images and tags. | |
# get token to be able to talk to Docker Hub | |
TOKEN=dckr_pat_XXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
#TOKEN=$(curl -s -H "Content-Type: application/json" -X POST -d '{"username": "'${UNAME}'", "password": "'${UPASS}'"}' https://hub.docker.com/v2/users/login/ | jq -r .token) | |
UNAME=${1} |
This following command is for Ubuntu 22.04 LTS | |
Do not forget to download virtio-win driver from | |
https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.229-1/virtio-win-0.1.229.iso | |
And issue command. Do not forget to load Red Hat VirtIO disk driver on disk editing page of Win11 installer as by default it does not see disks | |
virt-install \ | |
--name Golden_Tiny_11 \ |
{ | |
"basics": { | |
"name": "Omer Sen", | |
"label": "MLOps/DevOps/DevSecOps and Linux/UNIX Engineer", | |
"email": "[email protected]", | |
"phone": "+44 7466825310", | |
"url": "linkedin.com/in/omerfaruksen", | |
"location": { | |
"address": "South London", | |
"city": "London", |
#!/bin/bash | |
# Docker buildx supports to build and push but | |
# Docker push does not support multi-arch so here is workaround to do | |
# via docker manifest | |
SOURCE_IMG=otheruser_that_has_both_arch/gpu-stress-test:1.0.0 | |
DEST_IMG=omerfsen/gpu-stress-test:1.0.0 |