Skip to content

Instantly share code, notes, and snippets.

View MaxAtoms's full-sized avatar
🦤

Thomas M. Schöller MaxAtoms

🦤
View GitHub Profile
@bashbunni
bashbunni / .zshrc
Last active October 28, 2025 20:29
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
@elalemanyo
elalemanyo / README.md
Last active August 8, 2025 10:40
Debug zsh startup time

Debug zsh startup time

  1. Inject profiling code

    At the beginning of your .zshrc add following: zmodload zsh/zprof

    and at the end add: zprof

    This will load zprof mod and display what your shell was doing durung your initialization.

@vmandic
vmandic / git-commit-log-stats.md
Created February 13, 2018 14:11 — forked from eyecatchup/git-commit-log-stats.md
Some commands to get git commit log statistics for a repository on the command line.

git commit stats

Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.