Skip to content

Instantly share code, notes, and snippets.

View raulb's full-sized avatar
👨‍💻
Ask me anything!

Raúl Barroso raulb

👨‍💻
Ask me anything!
View GitHub Profile
@hyperupcall
hyperupcall / settings.jsonc
Last active October 11, 2025 12:44
VSCode config to disable popular extensions' annoyances (telemetry, notifications, welcome pages, etc.)
// I'm tired of extensions that automatically:
// - show welcome pages / walkthroughs
// - show release notes
// - send telemetry
// - recommend things
//
// This disables all of that stuff.
// If you have more config, leave a comment so I can add it!!
{
@lovromazgon
lovromazgon / find-prs.sh
Created May 12, 2025 12:44
Find GitHub PRs in all repositories of an organization based on title
#!/bin/bash
ORG_NAME="$1"
PR_TITLE="$2"
if [ -z "$ORG_NAME" ] || [ -z "$PR_TITLE" ]; then
echo "Usage: $0 <organization_name> <pull_request_title>"
exit 1
fi
@dnywh
dnywh / shrinkvid.zsh
Created August 29, 2025 01:58
Batch shrink videos with ffmpeg.
# shrinkvid - batch shrink videos with ffmpeg
# Add this to your ~/.zshrc
# --------------------------------------------
# Usage:
# shrinkvid [directory] [format] [crf]
#
# Examples:
# shrinkvid # defaults: ~/Downloads, mp4, CRF=28
# shrinkvid ~/Movies # custom directory
# shrinkvid . mkv 24 # current dir, mkv files, CRF=24