Skip to content

Instantly share code, notes, and snippets.

View DWFlanagan's full-sized avatar

Dave Flanagan DWFlanagan

View GitHub Profile
@DWFlanagan
DWFlanagan / set_default_shell.ps1
Last active November 15, 2020 14:21
Set the default shell to SSH into WSL on Windows 10
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\WINDOWS\System32\bash.exe" -PropertyType String -Force
@DWFlanagan
DWFlanagan / hello.py
Last active November 7, 2022 06:08
Code sharing on Mastodon
import pandas as pd
print("Hello world")
df = pd.DataFrame()