Skip to content

Instantly share code, notes, and snippets.

@davespan
davespan / pomo.sh
Created October 4, 2023 09:56
A simple Pomodoro timer Bash Script
#! /usr/bin/bash
if [ $# -eq 0 ]; then
echo "Please provide the Pomodoro duration in minutes."
echo "Example: $0 25"
exit 1
fi
pomodoro=$1
@mpfund
mpfund / https_mitm_proxy.go
Last active June 29, 2025 10:08
Golang Http(s) mitm Proxy
package main
import (
"bytes"
"compress/gzip"
"crypto/tls"
"crypto/x509"
"encoding/pem"
"io/ioutil"
"log"