Skip to content

Instantly share code, notes, and snippets.

View nuboat's full-sized avatar

Peerapat CC nuboat

View GitHub Profile
@nuboat
nuboat / keybase.md
Created June 5, 2024 03:38
keybase.md

Keybase proof

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:

@nuboat
nuboat / docker-config.sh
Created May 23, 2024 10:25
Standard Setup
#!/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)
@nuboat
nuboat / Profiler.java
Created October 7, 2020 11:18
Java Profiler
/*
* 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;
@nuboat
nuboat / InstallCert.java
Last active August 29, 2015 14:02
InstallCert
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;
/**