| description |
|---|
Execute a multi-expert research swarm - analyzes your prompt, spawns 3-10 specialized expert agents in parallel, and compiles a comprehensive report |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Claude Code Infrastructure Setup Script with Research Functionality | |
| # This script sets up a structured development environment with AI-powered workflow | |
| echo "🚀 Claude Code Infrastructure Setup (with Research)" | |
| echo "================================================" | |
| # Create .claude directory structure | |
| echo "📁 Creating .claude directory structure..." |
Version: 0.1 (Initial Draft) Status: Under active development
Elysium is a modern programming language that emphasizes readability, safety, and performance. This specification defines the syntax, semantics, and behavior of the Elysium language.
aspe:keyoxide.org:53LRCXONXJ2LZQWY6KZMILBJKQ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/libinput/local-overrides.quirks | |
| [Device] | |
| MatchName=SynPS/2 Synaptics TouchPad | |
| MatchUdevType=touchpad | |
| MatchBus=ps2 | |
| # We need to add a valid DMI modalias match as required | |
| MatchDMIModalias=dmi:* | |
| # Disable the device by telling libinput to ignore its input properties |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def with_std(&block) | |
| original_stdout = File.open("/dev/null") | |
| original_stdout.reopen(STDOUT) | |
| original_stderr = File.open("/dev/null") | |
| original_stderr.reopen(STDERR) | |
| stdout_reader, stdout_writer = IO.pipe | |
| stderr_reader, stderr_writer = IO.pipe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useState } from "preact/hooks"; | |
| export interface MessageInputProps { | |
| onSubmit: (message: { content: string; image: string | null }) => void; | |
| } | |
| const MessageInput = ({ onSubmit }: MessageInputProps) => { | |
| const [message, setMessage] = useState<string>(""); | |
| const [image, setImage] = useState<string | null>(null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import argparse | |
| re_attention = re.compile(r""" | |
| \\\(| | |
| \\\)| | |
| \\\[| | |
| \\]| | |
| \\\\| | |
| \\| |
I hereby claim:
- I am watzon on github.
- I am watzon (https://keybase.io/watzon) on keybase.
- I have a public key whose fingerprint is 51B2 65DD 8352 2995 046F C8D6 3670 7B02 0200 D3D9
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Danbooru Tag Copier | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Automatically copy all general tags from danbooru page to your clipboard | |
| // @author watzon | |
| // @match https://danbooru.donmai.us/posts/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=donmai.us | |
| // @grant none | |
| // ==/UserScript== |
NewerOlder