Skip to content

Instantly share code, notes, and snippets.

# ===========================================
# ZSH Hacks - Dreams of Code
# ===========================================
# Add these to your .zshrc file
# ===========================================
# -------------------------------------------
# 1. Edit Command Buffer
# -------------------------------------------
# Open the current command in your $EDITOR (e.g., neovim)
<#
.SYNOPSIS
This script recursively gets archive information regarding each mailbox in a M365 tenant
.DESCRIPTION
This gathers the following information about each user mailbox in an M365 tenant. Optional export to csv is available
Display Name
@TfTHacker
TfTHacker / FastStart-GenerateListOfInstalledPlugins.js
Last active March 1, 2026 18:51
Creates a list of all plugins installed in an Obsidian vault
<% Object.values(app.plugins.manifests).map(p=>p.id).sort((a,b)=>a.localeCompare(b)).join('\n') %>