Docker Desktop requires an expensive license for commercial use: https://www.docker.com/pricing/faq/
# Install minikube
brew install minikube
# Install Docker CLI
brew install dockerDocker Desktop requires an expensive license for commercial use: https://www.docker.com/pricing/faq/
# Install minikube
brew install minikube
# Install Docker CLI
brew install docker| #!python | |
| class CircularBuffer(object): | |
| def __init__(self, max_size=10): | |
| """Initialize the CircularBuffer with a max_size if set, otherwise | |
| max_size will elementsdefault to 10""" | |
| self.buffer = [None] * max_size | |
| self.head = 0 |
A word of warning. This will be slow and buggy. Do not attempt to use this as a daily driver.
iperf3 serverwg-quick down wg0/etc/wireguard/wg0.conf filealpine-minirootfs-3.20.2-x86_64.tar.gz.| { | |
| "appliance_id": "7cc31dcb-57ad-4719-97ba-1c3dbbf74697", | |
| "name": "netics-pc", | |
| "category": "guest", | |
| "description": "gns appliance for praktikum jarkom informatika ITS", | |
| "vendor_name": "Lab Netics", | |
| "vendor_url": "http://its.id/netics", | |
| "vendor_logo_url": "https://raw.githubusercontent.com/GNS3/gns3-registry/master/vendor-logos/Alpine Linux.png", | |
| "documentation_url": "its.id/netics", | |
| "product_name": "NETICS-PC", |
I need a proper Firefox installation and not the snap version. The snap version does not work properly with Smart Cards. Although it seems to be possible to get it to work with smart cards it is extremely difficult and I don't care to try and make it work. This is not a tutorial on how to get your PIV or CAC to work. Also snaps suck. Canonical will heopfully abandon snaps in the future.
sudo snap disable firefox
sudo snap remove --purge firefox
error: cannot perform the following tasks:
- Remove data for snap "firefox" (1943) (unlinkat /var/snap/firefox/common/host-hunspell/en_ZA.dic: read-only file system)
| import paramiko | |
| k = paramiko.RSAKey.from_private_key_file("/Users/whatever/Downloads/mykey.pem") | |
| c = paramiko.SSHClient() | |
| c.set_missing_host_key_policy(paramiko.AutoAddPolicy()) | |
| print "connecting" | |
| c.connect( hostname = "www.acme.com", username = "ubuntu", pkey = k ) | |
| print "connected" | |
| commands = [ "/home/ubuntu/firstscript.sh", "/home/ubuntu/secondscript.sh" ] | |
| for command in commands: | |
| print "Executing {}".format( command ) |
| # Script for Ubuntu: Nvidia Multi-GPU Installation and Testing (Adaptable for other distros) | |
| # Step 0: Clean Nvidia Installation | |
| # If you need to completely remove a previous Nvidia installation, use these commands. | |
| # This ensures that you start with a clean slate for a new installation. | |
| sudo apt-get --purge remove "*nvidia*" | |
| sudo apt-get --purge remove "*cuda*" "*cudnn*" "*cublas*" "*cufft*" "*cufile*" "*curand*" "*cusolver*" "*cusparse*" "*gds-tools*" "*npp*" "*nvjpeg*" "nsight*" "*nvvm*" "*libnccl*" | |
| # Verify that the removal is complete by checking if any Nvidia, CUDA, or cuDNN packages are still installed. | |
| apt list --installed | grep cuda |