Skip to content

Instantly share code, notes, and snippets.

@antirez
antirez / codex_skill.md
Last active March 12, 2026 15:59
CLAUDE_CODEX_SKILL.md
name description disable-model-invocation
codex
Use OpenAI Codex CLI for complex debugging, code analysis, or when stuck on difficult problems. Invokes Codex with a file-based question/answer pattern.
true

Using Codex for Complex Debugging

When you encounter a difficult problem that would benefit from a second perspective or deep analysis, use Codex via the file-based pattern.

@minimaxir
minimaxir / CLAUDE.md
Created January 2, 2026 01:53
Python CLAUDE.md (20260101)

Agent Guidelines for Python Code Quality

This document provides guidelines for maintaining high-quality Python code. These rules MUST be followed by all AI coding agents and contributors.

Your Core Principles

All code you write MUST be fully optimized.

"Fully optimized" includes:

@intellectronica
intellectronica / 0.README.md
Last active February 17, 2026 17:00
My AGENTS.md for MDFlow

Here's my AGENTS.md (also linked from CLAUDE.md as @AGENTS.md) for hacking agentically on MDFlow recipes.

I have this in ~/.mdflow/, and the agents/recipes live in ~/.mdflow/agents/ and added to the path so that they can be invoked as commands.

With this I can use a coding agent like Claude Code or GitHub Copilot in VSCode and say something like:

> create a new agent using copilot that reviews all the code files in this directory as a poem
@jlia0
jlia0 / agent loop
Last active March 17, 2026 00:52
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@CepaCode
CepaCode / gist:2f3ae701872c7f7f5ac7a9f520b9edb1
Created March 8, 2025 08:09
Código del vídeo "¡CREAR PÁGINA WEB GRATIS!"
- El JSON que utilizo en el vídeo
{
"type": "object",
"properties": {
"fullname": {
"type": "string"
},
"title": {
"type": "string"
},
@kborkowski
kborkowski / centerdiv.yaml
Created February 3, 2025 14:47
Center a div ⛔ in Power Apps with PowerFx
- HtmlText1:
Control: HtmlViewer
Properties:
HtmlText: |-
=With({centerDiv:"display:grid;align-content:center; justify-items:center;"},
$"<div style='width:{Self.Width}px; height:{Self.Height - 1}px; {centerDiv} '>
<div style='width:200px; aspect-ratio:1; border-radius:100px; background-color:red; {centerDiv}'>
<div style='width:150px; aspect-ratio:4; background-color:white;'></div>
</div>
</div>")
using Aspose.Note;
using System;
using System.IO;
using System.Linq;
class Program
{
static void Main(string[] args) // Merge .ONE files using C#
{
new Aspose.Slides.License().SetLicense("License.lic");
@itsalljustdata
itsalljustdata / regexTest.pq
Created January 2, 2024 11:53
Power Query regexTest
(inputString as text, regexString as text) as logical =>
let
//inputString = "#123564", regexString = "^#[0-9A-F]{6}[0-9a-f]{0,2}$",
jsText = "#(lf)var rex= new RegExp('" & regexString & "','g');" &
"#(lf)var tst= rex.test('" & inputString & "');" &
"#(lf)document.write(tst);",
htmlText = "<script>" & jsText & "#(lf)</script>",
Source = Web.Page(htmlText),
drill = try Source[Data]{0}[Children]{0}[Children]{1}[Text]{0} otherwise "false",
bool = Logical.FromText(drill)
@dafthack
dafthack / azure_client_ids.txt
Created June 16, 2023 11:57
A collection of client IDs that can be used to authenticate a user, and their associated application name that shows up in Azure Sign-In logs.
00b41c95-dab0-4487-9791-b9d2c32c80f2 - Office 365 Management
04b07795-8ddb-461a-bbee-02f9e1bf7b46 - Microsoft Azure CLI
0ec893e0-5785-4de6-99da-4ed124e5296c - Office UWP PWA
18fbca16-2224-45f6-85b0-f7bf2b39b3f3 - Microsoft Docs
1950a258-227b-4e31-a9cf-717495945fc2 - Microsoft Azure PowerShell
1b3c667f-cde3-4090-b60b-3d2abd0117f0 - Windows Spotlight
1b730954-1685-4b74-9bfd-dac224a7b894 - Azure Active Directory PowerShell
1fec8e78-bce4-4aaf-ab1b-5451cc387264 - Microsoft Teams
22098786-6e16-43cc-a27d-191a01a1e3b5 - Microsoft To-Do client
268761a2-03f3-40df-8a8b-c3db24145b6b - Universal Store Native Client
@kkazala
kkazala / siteTheme.json
Last active March 17, 2025 11:17
SPFx siteTheme
// CODE:
// const theme = (process.env.NODE_ENV !== 'production')
// ? createTheme({
// palette: (window as any).__themeState__.theme
// })
// : getTheme();
// console.log(theme);
// RESULTS:
{