Discover gists
| // ═══════════════════════════════════════════════════════════ | |
| // AUTO-CLICKER FOR "Accept" BUTTON | |
| // Searches inside iframes and auto-clicks | |
| // ═══════════════════════════════════════════════════════════ | |
| (function() { | |
| 'use strict'; | |
| // ==================== STATE MANAGEMENT ==================== | |
| const state = { |
| // СКРИПТ ДЛЯ МГНОВЕННОГО ЭКСПОРТА ПЛЕЙЛИСТОВ ИЗ НОВОЙ ВЕБ ВЕРСИИ ЯНДЕКС МУЗЫКИ | |
| // Created by: TheKingOfTime | |
| // Version: 1.2 | |
| // License: MIT | |
| // Как использовать: | |
| // 1) Откройте веб версию Яндекс Музыки. | |
| // 2) Откройте консоль (F12). | |
| // 3) Вставьте код, нажмите Enter. | |
| // Экспорт будет происходить при заходе в плейлист (не альбом). |
| #!/usr/bin/env bash | |
| # | |
| # Reads AirTag data from the FindMy.app cache and converts it to a daily GPX file | |
| # | |
| # Rsyncs the data to a web accessible folder that can be displayed with e.g. | |
| # https://gist.github.com/henrik242/84ad80dd2170385fe819df1d40224cc4 | |
| # | |
| # This should typically be run as a cron job | |
| # |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
Two ambitious open-source projects tackling the same fundamental problem: how do you coordinate multiple AI coding agents to work together effectively?
| Aspect | Gas Town | Swarm-Tools |
|---|---|---|
| Author | Steve Yegge | Joel Hooks |
| Language | Go | TypeScript/Bun |
Prompts to recreate each piece of the OpenClaw system. Use these with any AI coding assistant.
1. Personal CRM "Build a personal CRM that automatically scans my Gmail and Google Calendar to discover contacts from the past year. Store them in a SQLite database with vector embeddings so I can query in natural language ('who do I know at NVIDIA?' or 'who haven't I talked to in a while?'). Auto-filter noise senders like marketing emails and newsletters. Build profiles for each contact with their company, role, how I know them, and our interaction history. Add relationship health scores that flag stale relationships, follow-up reminders I can create, snooze, or mark done, and duplicate contact detection with merge suggestions. Link relevant documents from Box to contacts so when I look up a person, I also see related docs."
2. Meeting Action Items (Fathom)
| #!/bin/sh | |
| # | |
| # festivaltts-install.sh | |
| # ----- | |
| # | |
| # Installation and setup of a Festival based TTS system. | |
| # Following instructions from: | |
| # - [http://ubuntuforums.org/showthread.php?t=751169] | |
| # |
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.
22 copy/paste-ready prompts for building your own AI agent system. Each prompt builds a functional system or implements a proven best practice you can hand to an AI coding assistant.
Replace placeholders like <your-workspace>, <your-messaging-platform>, and <your-model> with your own values.