Skip to content

Instantly share code, notes, and snippets.

@eddy-22
eddy-22 / Justfile
Created January 1, 2026 03:50 — forked from raspberrypisig/justfile
Cheat sheet for Justfiles
# -*- mode: justfile -*-
# ==============================================================================
# Settings - Control Just's behavior
# ==============================================================================
# Set the shell used to execute recipes. Array form is recommended.
# -u: Treat unset variables as an error.
# -c: Read commands from string.
set shell := ["bash", "-uc"]
@eddy-22
eddy-22 / RAMDisk.md
Created December 23, 2025 03:47
Create RAM disks on MacOS that unmount cleanly and reclaim all RAM used

[RAMDisk for macOS]

A minimal ZSH function to create and destroy APFS-formatted RAM disks on macOS.

Features

💾 Create APFS RAM disks up to 128 GiB

✅ Safe teardown - unmounts & detaches cleanly

👮🏼‍♂️ Input validation - enforces valid size and context

@eddy-22
eddy-22 / public_apis.md
Created August 24, 2025 21:34
Free, public APIs organized by category.

Try Public APIs for free

The Public APIs repository is manually curated by community members like you and folks working at APILayer. It includes an extensive list of public APIs from many domains that you can use for your own products. Consider it a treasure trove of APIs well-managed by the community over the years.


APILayer Logo
@eddy-22
eddy-22 / cat_facts.json
Created July 6, 2025 01:45
Animal Facts (cats and dogs to start, more coming soon)
[
"Every year, nearly four million cats are eaten in Asia",
"On average, cats spend 2/3 of every day sleeping",
"Unlike dogs, cats do not have a sweet tooth",
"When a cat chases its prey, it keeps its head level",
"The technical term for a cat's hairball is a bezoar",
"A group of cats is called a clowder",
"Female cats tend to be right pawed, while male cats are more often left pawed",
"A cat cannot climb head first down a tree because its claws are curved the wrong way",
"Cats make about 100 different sounds",
@ongkiii
ongkiii / IPA-Sources.md
Last active June 10, 2026 08:15
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@mattmc3
mattmc3 / normalize_flags.sh
Last active June 17, 2025 02:44
Bash getopts - normalize flags
#!/usr/bin/env bash
# Normalize --long-flags to -s short ones for use with getopts.
normalize_flags() {
local shortopt longopt
local -a args=()
local -A spec=()
# Process option definitions until we hit the -- separator
while [[ "$#" -gt 0 && "$1" != -- ]]; do
@eddy-22
eddy-22 / unblocked_sites.md
Last active June 11, 2026 14:38
List of unblocked games sites
@buraxta
buraxta / mongoose-cheatsheet.md
Created July 17, 2024 12:02
Long and detailed cheatsheet covering various aspects of Mongoos
@eddy-22
eddy-22 / cloudflare-delete-all-records.sh
Created October 4, 2022 04:12 — forked from slayer/cloudflare-delete-all-records.sh
Delete all DNS records for specified zone
#!/bin/bash
TOKEN="xxxxxxxxxxxxxxxxxxx"
ZONE_ID=2222222222222222222222222
# EMAIL=me@gmail.com
# KEY=11111111111111111111111111
# Replace with
# -H "X-Auth-Email: ${EMAIL}" \
# -H "X-Auth-Key: ${KEY}" \
@Juan-Embid
Juan-Embid / googe_dorks_cheatsheet.md
Last active May 13, 2026 15:32
A list of useful Google Dorks queries and explanations

Google-Dorks-Cheat-Sheet

A list of useful Google Dorks queries and explanations. Feel free to improve with your own payloads and techniques. Go ahead an make a pull request.

Documentation

Every section contains the following information:

  • A query description and how to exploit it, including several payloads
  • Pictures for the README.md
  • Other content referenced in the description