Skip to content

Instantly share code, notes, and snippets.

@mattlanham
mattlanham / .zshrc
Created January 27, 2026 10:27 — forked from bashbunni/.zshrc
CLI Pomodoro for Linux (zsh)
# study stream aliases
# Requires https://github.com/caarlos0/timer to be installed. spd-say should ship with your distro
declare -A pomo_options
pomo_options["work"]="45"
pomo_options["break"]="10"
pomodoro () {
if [ -n "$1" -a -n "${pomo_options["$1"]}" ]; then
val=$1
@mattlanham
mattlanham / parse.js
Created August 29, 2011 17:42 — forked from kwhinnery/parse.js
A Parse client for Titanium Mobile - sneak peek
//Public client interface
function Client(applicationId, masterKey) {
this.applicationId = applicationId;
this.masterKey = masterKey;
}
exports.Client = Client;
//Parse API endpoint
var ENDPOINT = 'https://api.parse.com/1/classes/';