Skip to content

Instantly share code, notes, and snippets.

View luisadha's full-sized avatar
🇵🇸
Free Palestine

Luis Adha luisadha

🇵🇸
Free Palestine
View GitHub Profile
@azigler
azigler / starfetcher.sh
Created July 10, 2023 20:03
Starfetcher ⭐️ fetch all GitHub stars for an organization
#!/bin/bash
# Starfetcher
# This script uses 'jq', a command-line JSON processor.
# Installation instructions:
# - On Ubuntu or other Debian-based systems: sudo apt-get install jq
# - On CentOS, Fedora, or RHEL: sudo yum install jq
# - On macOS: brew install jq
# - On Windows, you can download it from https://stedolan.github.io/jq/download/
@luisadha
luisadha / live-bashrc
Last active May 27, 2024 17:39
MY SIMPLE CONFIGURATION OF BASHRC
# Update 28, Mei 2024 by @luisadha
# Enable the subsequent settings only in interactive sessions
case $- in
*i*) ;;
*) return;;
esac
: "My Custom Path"
export PATH="$PATH:~/.local/bin:/system/bin:$HOME/.cargo/bin"
: "My Habbit Aliases"