Skip to content

Instantly share code, notes, and snippets.

View lykinsbd's full-sized avatar
🧑‍💻
Happy Automating!

Brett Lykins lykinsbd

🧑‍💻
Happy Automating!
View GitHub Profile
@lykinsbd
lykinsbd / terminal command
Created February 19, 2020 01:55 — forked from korjjj/terminal command
GNS3 preferences terminal command
if tmux has-session -t gns3; then if ! tmux find-window %d; then tmux new-window -n %d "telnet %h %p"; fi; else xterm -e tmux new-session -s gns3 -n %d "telnet %h %p"; fi
@lykinsbd
lykinsbd / selfsigned.py
Last active July 15, 2019 18:25 — forked from bloodearnest/selfsigned.py
Create a self-signed x509 certificate with python cryptography library
# Copyright 2019 Simon Davy, Brett Lykins
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in