Skip to content

Instantly share code, notes, and snippets.

View austinsonger's full-sized avatar
🙃
Localhost

Austin Songer, CISSP austinsonger

🙃
Localhost
View GitHub Profile
@christophervigliotti
christophervigliotti / arrs_inspector.sh
Last active April 11, 2026 20:33
detailed comparison of files in "a" to files and hardlinks in "b"
#!/bin/bash
# What Is This
# A way to compare downloads in folder A to hardlinks in folder B. Useful to see if your
# "use hardlinks" logic in the ARRS is working
#
# Separation of Concerns (AI yackin')
# The logic for calculating the 2TB physical limit is isolated from the descriptive logic
# used for the detailed file list.
#
@typhdotcom
typhdotcom / SKILL.md
Created March 26, 2026 00:33
Quorum - Ad-hoc parallel adversarial debate skill
description Use when the user asks to "call a quorum" or "assemble a quorum"
argument-hint
topic

Derive TOPIC from $ARGUMENTS and conversation context.

Process

  1. Derive candidates. From TOPIC, identify what intellectual traditions, disciplines, or specific thinkers would create productive friction on this subject.
@ashwch
ashwch / git-worktrees-zero-to-hero.md
Last active April 9, 2026 16:27
Git Worktrees: From Zero to Hero - A comprehensive guide to using Git worktrees with submodules
@taishikato
taishikato / 1.txt
Created May 10, 2025 20:42 — forked from GuiBibeau/1.txt
Vibe architecting prompts
I want you to refine this brainstorming document into a prompt for a deep research system that will be tasked with writing a technical spike
research document on a software engineering project. The goal of this research is to help guide future agentic coding systems into
having a good understanding of the technical landscape around the software the user wants to create.
<context>
Deep research is a category of product where large language models capable of test time compute are paired with capacities to:
- search the web
- browse documentatin
- read research paper
- further refine their research based on their finding
@mattppal
mattppal / security-checklist.md
Last active April 7, 2026 04:42
A simple security checklist for your vibe coded apps

Frontend Security

Security Measure Description
Use HTTPS everywhere Prevents basic eavesdropping and man-in-the-middle attacks
Input validation and sanitization Prevents XSS attacks by validating all user inputs
Don't store sensitive data in the browser No secrets in localStorage or client-side code
CSRF protection Implement anti-CSRF tokens for forms and state-changing requests
Never expose API keys in frontend API credentials should always remain server-side
@GuiBibeau
GuiBibeau / 1.txt
Last active August 17, 2025 08:38
Vibe architecting prompts
I want you to refine this brainstorming document into a prompt for a deep research system that will be tasked with writing a technical spike
research document on a software engineering project. The goal of this research is to help guide future agentic coding systems into
having a good understanding of the technical landscape around the software the user wants to create.
<context>
Deep research is a category of product where large language models capable of test time compute are paired with capacities to:
- search the web
- browse documentatin
- read research paper
- further refine their research based on their finding
@aashari
aashari / 00 - Cursor AI Prompting Rules.md
Last active April 10, 2026 09:20
Cursor AI Prompting Rules - This gist provides structured prompting rules for optimizing Cursor AI interactions. It includes three key files to streamline AI behavior for different tasks.

The Autonomous Agent Prompting Framework

This repository contains a disciplined, evidence-first prompting framework designed to elevate an Agentic AI from a simple command executor to an Autonomous Principal Engineer.

The philosophy is simple: Autonomy through discipline. Trust through verification.

This framework is not just a collection of prompts; it is a complete operational system for managing AI agents. It enforces a rigorous workflow of reconnaissance, planning, safe execution, and self-improvement, ensuring every action the agent takes is deliberate, verifiable, and aligned with senior engineering best practices.

I also have Claude Code prompting for your reference: https://gist.github.com/aashari/1c38e8c7766b5ba81c3a0d4d124a2f58

@BlackthornYugen
BlackthornYugen / caffeinate_unti.sh
Created December 15, 2023 17:18
Run caffeinate when battery is above a given value, preventing MacOS from sleeping.
#!/bin/bash
# Default values
verbose=0
min_battery=20
log() {
if [[ "$verbose" -gt 0 ]]; then
echo "$@"
fi
@kbagher
kbagher / mac_security_check.sh
Last active January 31, 2026 09:21
The script is a macOS security audit tool, checking vital features like System Integrity Protection, Gatekeeper, Firewall, and FileVault. It evaluates security settings, lists non-Apple kernel extensions, and logs failures for review, providing a quick, comprehensive security overview in an easily interpretable PASS/FAIL format.
#!/bin/bash
###### Tasks Requiring Manual Checking ######
# Review Installed Applications:
# Steps: Open Applications folder and Launchpad.
# Signs of Compromise: Unfamiliar or unexpected applications installed.
# Check App Permissions:
# Steps: System Preferences → Security & Privacy → Privacy tab.
# Signs of Compromise: Unusual permissions granted to unknown applications.
# Audit Browser Extensions:
@bhaktatejas922
bhaktatejas922 / ros2-install-mac.sh
Last active December 15, 2023 18:57
Macos Ros2 install script wth conda
#!/bin/zsh
# Ensure Xcode and Command Line Tools are installed
xcode-select --install
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -license
# Install Homebrew
which -s brew