Skip to content

Instantly share code, notes, and snippets.

@0xdevalias
0xdevalias / singing-voice-synthesizers.md
Last active March 9, 2026 17:12
Some notes on Singing Voice Synthesizers (eg. Vocaloid, etc)
@smallnest
smallnest / multi-agent-config-instruction.md
Created March 3, 2026 03:33 — forked from 1va7/multi-agent-config-instruction.md
OpenClaw 多 Agent 架构配置指南 - 把这份文档发给你的 OpenClaw,它会引导你选择最适合的多 Agent 架构配置

OpenClaw 多 Agent 架构配置指南

把这份指南发给你的 OpenClaw,它会引导你选择最适合的多 Agent 架构。


使用说明

当用户把这份文档发给你时,请按照以下流程引导他们选择合适的多 Agent 架构配置。

@captainmarshin
captainmarshin / zapret_roblox.md
Last active March 9, 2026 17:05
Bypass Roblox block via zapret instruction
  1. Cкачать zapret-discord-youtube - https://github.com/Flowseal/zapret-discord-youtube
  2. Распаковать архив на диск С: в папку zapret
  3. В папке zapret открыть папку lists
  4. Открыть файл list-general.txt, после последней записи добавить домены из списка ниже, сохранить
roblox.com
www.roblox.com
auth.roblox.com
accountsettings.roblox.com

GitHub Search Syntax for Finding API Keys/Secrets/Tokens

As a security professional, it is important to conduct a thorough reconnaissance. With the increasing use of APIs nowadays, it has become paramount to keep access tokens and other API-related secrets secure in order to prevent leaks. However, despite technological advances, human error remains a factor, and many developers still unknowingly hardcode their API secrets into source code and commit them to public repositories. GitHub, being a widely popular platform for public code repositories, may inadvertently host such leaked secrets. To help identify these vulnerabilities, I have created a comprehensive search list using powerful search syntax that enables the search of thousands of leaked keys and secrets in a single search.

Search Syntax:

(path:*.{File_extension1} OR path:*.{File_extension-N}) AND ({Keyname1} OR {Keyname-N}) AND (({Signature/pattern1} OR {Signature/pattern-N}) AND ({PlatformTag1} OR {PlatformTag-N}))

Examples:

**1.

@FezVrasta
FezVrasta / card.yaml
Last active March 9, 2026 16:57
Apple Music-like NSPanel Pro 4" Card
# You can find some pictures here:
# https://www.reddit.com/r/homeassistant/comments/1qzf6x3/i_needed_a_compact_media_player_card_for_my/
type: custom:maxi-media-player
entities:
- media_player.sonos_arc_ultra
sections:
- player
player:
artworkAsBackgroundBlur: 100
@nikhilkumarsingh
nikhilkumarsingh / paint.py
Created November 3, 2017 16:26
A simple paint application using tkinter in Python 3
from tkinter import *
from tkinter.colorchooser import askcolor
class Paint(object):
DEFAULT_PEN_SIZE = 5.0
DEFAULT_COLOR = 'black'
def __init__(self):
@Ultrawipf
Ultrawipf / yt-shorts-redirect.js
Created March 29, 2022 08:12
Tampermonkey script to redirect all youtube shorts video links to normal video pages
// ==UserScript==
// @name Youtube shorts redirector
// @version 0.1
// @description Redirects all youtube shorts videos to normal video pages
// @author Ultrawipf
// @match https://*.youtube.com/shorts/*
// @icon https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Youtube_shorts_icon.svg/193px-Youtube_shorts_icon.svg.png
// @grant none
// @run-at document-start
// ==/UserScript==
@gordonbrander
gordonbrander / pi-hash-addressed-sessions.md
Created March 9, 2026 15:04
Pi hash-addressed sessions

Content-Addressing Pi Sessions

Goal

Enable distribution of Pi session data across a network (including p2p) by content-addressing session files without modifying Pi itself.

Background

Pi Session Files

Garry Tan's Mega Plan Review Mode

name: plan-mega-review
version: 2.0.0
description: |
  The most thorough plan review possible. Three modes: SCOPE EXPANSION (dream big,
  build the cathedral), HOLD SCOPE (review what's here with maximum rigor), and
  SCOPE REDUCTION (strip to essentials). Context-dependent defaults, but when the
 user says EXPANSION — go full send. Challenges premises, maps every failure mode,
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active March 9, 2026 16:48
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'