Skip to content

Instantly share code, notes, and snippets.

View vcgato29's full-sized avatar

Victor J Corral vcgato29

  • Spaceforce LLC
View GitHub Profile
@vcgato29
vcgato29 / RFC 1925
Created June 19, 2025 14:00 — forked from elmer/RFC 1925
The Twelve Networking Truths
Network Working Group R. Callon, Editor
Request for Comments: 1925 IOOF
Category: Informational 1 April 1996
The Twelve Networking Truths
Status of this Memo
This memo provides information for the Internet community. This memo
does not specify an Internet standard of any kind. Distribution of
@elmer
elmer / k3d-install-dashboard.md
Created February 27, 2024 17:17 — forked from smijar/k3d-install-dashboard.md
k3d-install-dashboard

ref

https://rancher.com/docs/k3s/latest/en/installation/kube-dashboard/

install

Deploying the Kubernetes Dashboard

GITHUB_URL=https://github.com/kubernetes/dashboard/releases
VERSION_KUBE_DASHBOARD=$(curl -w '%{url_effective}' -I -L -s -S ${GITHUB_URL}/latest -o /dev/null | sed -e 's|.*/||')
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/${VERSION_KUBE_DASHBOARD}/aio/deploy/recommended.yaml
@vcgato29
vcgato29 / Ssh2Converter.java
Created January 16, 2019 10:42 — forked from kaushikthedeveloper/Ssh2Converter.java
Convert OpenSSH public key to RFC 4716 (SSH2) format
/**
* Convert OpenSSH to RFC 4716 (SSH2) format [https://tools.ietf.org/html/rfc4716]
*
* @author KaushikTheDeveloper
* Created on Mar 08, 2018
*/
public class Ssh2Converter {
private static final int MAX_LINE_LENGTH = 70;
private static final String BEGIN_MARKER = "---- BEGIN SSH2 PUBLIC KEY ----\n";