Skip to content

Instantly share code, notes, and snippets.

View igmrrf's full-sized avatar
💭
Thinking

The L D O igmrrf

💭
Thinking
View GitHub Profile
@igmrrf
igmrrf / CountryCodes.json
Created September 23, 2025 18:12 — forked from anubhavshrimal/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"
@igmrrf
igmrrf / GoogleDorking.md
Created May 29, 2025 21:01 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@igmrrf
igmrrf / Mac App Installer.sh
Created April 30, 2025 09:25 — forked from trozdol/Mac App Installer.sh
A Script to bulk install applications using Homebrew and the App Store.
# !/bin/bash
VERSION=0.0.1
NONINTERACTIVE=1 # for homebrew install
DRY_RUN=false
ENABLED_DEFAULT=true
TAPS_ENABLED=$ENABLED_DEFAULT
TAPS_ENABLED_ASK=true