Skip to content

Instantly share code, notes, and snippets.

View piprees's full-sized avatar

Pip Rees piprees

View GitHub Profile
@piprees
piprees / 001 - Introduction.md
Last active September 9, 2025 09:48
Learn to Code Starter Pack

Learning to code starter pack. #DigitalVoices

Hey everyone, good to meet you. I'm really grateful for Digital Voices inviting me to give this talk to everyone today.

@piprees
piprees / bluesky-likes.xml.tsx
Created November 16, 2024 23:54
Example of Bluesky Likes to RSS feed with a Next.js API route
// --- .env
// # environment config in your webhost or .env.local file
// # Make sure you do not commit your key/password to source control!
// # needs to match the service name for the agent (leave as default if unsure)
// BSKY_SERVICE="https://bsky.social"
// # Needs to match the public host of the service (leave as default if unsure)
// BSKY_SERVICE_PUBLIC_URL="https://bsky.app"
// # Username and app password, you can generate an app password at https://bsky.app/settings/app-passwords
// BSKY_USERNAME="your.bsky.username"
@piprees
piprees / .zshrc
Created June 13, 2024 16:54
Handy Zsh settings
export ZSH="$HOME/.oh-my-zsh"
export CLICOLOR=1
export ZSH_THEME="arrow"
export CASE_SENSITIVE="true"
autoload -Uz compinit && compinit
plugins=(gitfast yarn npm node python pip rake scala vscode macos rails ruby docker aws)
source $ZSH/oh-my-zsh.sh
unset LESS;