This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <openssl/pem.h> | |
#include <openssl/rsa.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <stdio.h> | |
int usage(const char *cmd) { | |
fprintf(stderr, "Error: %s private.pem signature.sig\n", cmd); | |
return 1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-key del A4B469963BF863CC | |
sudo apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fizz = _fizz = lambda do | |
fizz = lambda do | |
fizz = lambda do | |
fizz = _fizz | |
"Fizz" | |
end | |
"" | |
end | |
"" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. launch google colab and mount drive | |
2. launch cloud instance (e.g. EC2) | |
3. upload ssh key to google drive | |
4. use scp on google colab: | |
scp -o StrictHostKeyChecking=no -i ~/.ssh/uploaded.pem large-file user@cloud-instance-ip-addr: | |
5. download large-file from the cloud instance to the local machine |
OlderNewer