Skip to content

Instantly share code, notes, and snippets.

View wallacewinfrey's full-sized avatar

Wallace Winfrey wallacewinfrey

View GitHub Profile
@ChristopherA
ChristopherA / ssh-keys-best-practices.md
Last active May 30, 2025 06:31
SSH Keys - Best Practices

SSH Keys Best Practices

(VERY rought draft, still a work-in-progress)

SSH Key Seperation

Authentication and signing keys serve different purposes, especially on platforms like GitHub where code integrity and access control are crucial. Here's a comparison based on their functions and best practices:

Authentication Keys:

  1. Purpose:
@tdalon
tdalon / Workspace.ahk
Created January 27, 2021 12:48
AutoHotkey script to manage application workspaces
; Source: https://www.autohotkey.com/boards/viewtopic.php?f=6&t=17228
#SingleInstance,Force
global settings:=new xml("Workspace")
if(FileExist("workspaces.ico"))
Menu,Tray,Icon,Workspaces.ico
Gui()
return
show:
WinShow,% hwnd([1])
return
#!/bin/sh
CASKNAME="$1"
CASKROOM=$(brew --caskroom)
CASKDIR="$CASKROOM/$CASKNAME"
DATE=$(date +"%Y%m%d%H%M%S.000")
BACKUPDIR="$CASKDIR/.backup"
BLACK='\033[30m'
RED='\033[31m'