I hereby claim:
- I am nuboat on github.
- I am norbor (https://keybase.io/norbor) on keybase.
- I have a public key ASBC9yaw_fZx32HAOQ8sC6efhHRAspLsVZP1UZwxlaK66go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
sudo dnf update | |
sudo dnf install docker | |
sudo systemctl start docker | |
sudo systemctl enable docker | |
sudo systemctl status docker | |
sudo usermod -aG docker ec2-user | |
# docker-compose (latest version) |
/* | |
* Copyright (C) 2018 Be ID Corporation Co., Ltd. <https://www.beid.io> | |
*/ | |
package handlers; | |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; |
package com.thjug.tools.sslcert; | |
import javax.net.ssl.*; | |
import java.io.*; | |
import java.security.KeyStore; | |
import java.security.MessageDigest; | |
import java.security.cert.CertificateException; | |
import java.security.cert.X509Certificate; | |
/** |