Skip to content

Instantly share code, notes, and snippets.

View kunalasingh's full-sized avatar
👷
Actively building and open to opportunities.

Kunal Arunkumar Singh kunalasingh

👷
Actively building and open to opportunities.
View GitHub Profile
@kunalasingh
kunalasingh / .zshrc
Created June 4, 2025 02:38 — forked from bashbunni/.zshrc
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"
@bashbunni
bashbunni / .zshrc
Last active December 6, 2025 05:11
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"
@teeschorle
teeschorle / Plurality.c
Last active October 21, 2021 06:23
CS50 Problem Set 3 (Fall 2019) - Plurality
#include <cs50.h>
#include <stdio.h>
#include <string.h>
// Max number of candidates
#define MAX 9
// Candidates have name and vote count
typedef struct
{