Skip to content

Instantly share code, notes, and snippets.

View Archisman-Mridha's full-sized avatar
🏠
Working from home

Archisman Mridha Archisman-Mridha

🏠
Working from home
View GitHub Profile
@bashbunni
bashbunni / .zshrc
Last active January 12, 2026 22:51
CLI Pomodoro for Mac
# I'll be doing another one for Linux, but this one will give you
# a pop up notification and sound alert (using the built-in sounds for macOS)
# Requires https://github.com/caarlos0/timer to be installed
# Mac setup for pomo
alias work="timer 60m && terminal-notifier -message 'Pomodoro'\
-title 'Work Timer is up! Take a Break 😊'\
-appIcon '~/Pictures/pumpkin.png'\
-sound Crystal"
@maratori
maratori / .golangci.yml
Last active January 9, 2026 13:01
Golden config for golangci-lint
# ==================================================================================================
#
# NOTICE
#
# This gist is no longer maintained. It was moved to repo:
#
# https://github.com/maratori/golangci-lint-config
#
# Full history and all v2 releases are preserved in the repo.
#
@garethr
garethr / kubernetes.rego
Last active June 23, 2025 13:04
Collecting together Kubernetes rego examples, including porting the https://kubesec.io rules to rego
package kubernetes
name = input.metadata.name
kind = input.kind
is_service {
kind = "Service"
}