Skip to content

Instantly share code, notes, and snippets.

View fidalcastro's full-sized avatar
🎯
Focusing

Fidal Castro fidalcastro

🎯
Focusing
View GitHub Profile
@cyrenity
cyrenity / OpenvSwitch-Faucet-Lab1.png
Last active April 27, 2025 11:01
SDN using Open vSwitch and KVM
OpenvSwitch-Faucet-Lab1.png
@SupaHam
SupaHam / mongo_registry.go
Created November 6, 2020 23:17
mongo-go-driver UUID decoder & encoder for Golang
// This is a value (de|en)coder for the github.com/google/uuid UUID type. For best experience, register
// mongoRegistry to mongo client instance via options, e.g.
// clientOptions := options.Client().SetRegistry(mongoRegistry)
//
// Only BSON binary subtype 0x04 is supported.
//
// Use as you please
package repository
import (
@mikepfeiffer
mikepfeiffer / stress.sh
Created January 27, 2019 21:05
Install Stress Utility on Amazon Linux 2
sudo amazon-linux-extras install epel -y
sudo yum install stress -y
@jaytaylor
jaytaylor / yaml2json.py
Created August 9, 2018 22:01
Python one-liner to convert YAML to JSON
python -c 'import json, sys, yaml ; y = yaml.safe_load(sys.stdin.read()) ; print(json.dumps(y))'