Skip to content

Instantly share code, notes, and snippets.

@rustyorb
rustyorb / 01-PURSUE-Release-01-Top-10-Findings.md
Created May 10, 2026 11:59 — forked from Pantheon-Investigations/01-PURSUE-Release-01-Top-10-Findings.md
PURSUE Release 01 — Top 10 Findings From a 36-Hour Primary-Source Deep Dive

PURSUE Release 01 — Top 10 Findings From a 36-Hour Primary-Source Deep Dive

Plain-language (TL;DR) summary (skip the technical detail below)

The Pentagon released its first batch of UFO files on May 8, 2026, under the program name PURSUE. Most news coverage just summarized the official Pentagon press release. I read the actual PDFs. Here's what's in there, in plain English:

  1. Multiple documents describe UFO activity at what appears to be one specific government facility in Utah — Dugway Proving Ground / Granite Peak Installation. (Dugway is a 1.25-million-acre US Army test facility, primarily for chemical and biological weapons defense testing; Granite Peak is the higher-classification inner enclave.) No major news outlet has named a site yet. Researchers at The Black Vault separately obtained Army records showing Dugway was running monthly UFO-detection exercises in 2023.

  2. One classified document describes US intelligence officers in helicopters being followed by orbs. The document is mar

@Pantheon-Investigations
Pantheon-Investigations / 01-PURSUE-Release-01-Top-10-Findings.md
Last active May 12, 2026 00:18
PURSUE Release 01 — Top 10 Findings From a 36-Hour Primary-Source Deep Dive

PURSUE Release 01 — Top 10 Findings From a 36-Hour Primary-Source Deep Dive Leveraging Artificial Intelligence

Plain-language (TL;DR) summary (skip the technical detail below)

The Pentagon released its first batch of UFO files on May 8, 2026, under the program name PURSUE. Most news coverage just summarized the official Pentagon press release. I read the actual PDFs. Here's what's in there, in plain English:

  1. Multiple documents describe UFO activity at what appears to be one specific government facility in Utah — Dugway Proving Ground / Granite Peak Installation. (Dugway is a 1.25-million-acre US Army test facility, primarily for chemical and biological weapons defense testing; Granite Peak is the higher-classification inner enclave.) No major news outlet has named a site yet. Researchers at The Black Vault separately obtained Army records showing Dugway was running monthly UFO-detection exercises in 2023.

  2. **One classified document describes US intelligence officers in helicopters being foll

@mberman84
mberman84 / all_files.md
Created February 24, 2026 21:09
Matt's Markdown Files

OpenClaw: System Prompt File Templates

Generalized versions of all root .md files used by OpenClaw. These files are loaded into the agent's system prompt on every request (except MEMORY.md which is conditional).

Copy these as starting points and customize for your own setup. Replace <placeholders> with your values.


AGENTS.md

@gioclawd
gioclawd / guide.md
Last active April 30, 2026 14:22
OpenClaw Full Stack Setup Guide — Mac + Telegram + Gmail/Calendar + GitHub + Mission Control

OpenClaw Full Stack Setup Guide — Mac + Telegram + Gmail/Calendar + GitHub + ACP + Mission Control

OpenClaw Full Stack Setup Guide — Mac + Telegram + Gmail/Calendar + GitHub + ACP + Mission Control

OpenClaw Setup Guide: From Zero to Your Own AI Assistant

Who this is for: You're on a Mac, you're comfortable in Terminal, and you want a personal AI assistant that lives on your machine and talks to you on Telegram. This guide walks you through every step.

What you'll end up with: An AI assistant running 24/7 on your Mac that you can message on Telegram from anywhere — with email awareness, calendar access, semantic memory, extensible skills, scheduled tasks, mobile device integration, secure remote access, and automatic backups.

Setting Up MCP Servers on Windows

A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.

Prerequisites

  1. Install Node.js (v18.x or later)
    • Download from: https://nodejs.org/
    • Verify installation by opening Command Prompt (CMD) and running:
      node --version
      npm --version
@paulirish
paulirish / how-to-view-source-of-chrome-extension.md
Last active June 8, 2026 13:10
How to view-source of a Chrome extension

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.