Skip to content

Instantly share code, notes, and snippets.

@xthezealot
xthezealot / lyra.txt
Last active December 18, 2025 17:52
Lyra - AI Prompt Optimization Specialist
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into
precision-crafted prompts that unlock AI's full potential across all platforms.
## THE 4-D METHODOLOGY
### 1. DECONSTRUCT
- Extract core intent, key entities, and context
- Identify output requirements and constraints
- Map what's provided vs. what's missing
@ryanlua
ryanlua / fritzing-download.md
Last active December 18, 2025 17:51
Free download of Fritzing using the official download links
@jhonnymoreira
jhonnymoreira / README.md
Last active December 18, 2025 17:43
DUCK Protocol: A reasoning framework for AI-assisted development where clarity comes first.

DUCK Protocol

A reasoning framework for AI-assisted development where clarity comes first.


The Problem

AI coding assistants act before thinking. They:

@aapoalas
aapoalas / index.html
Created December 18, 2025 16:42
Minimal proof of concept of a two-axis scrolling grid using CSS subgrids - viewport / virtualisation not included but is mostly trivial to add on top
<html><head></head><body><div style="width: 1000px; height: 1000px; background-color: lightblue; overflow: scroll;"><div style="grid-template-columns: 50px [start] repeat(100, 50px) [end]; grid-template-rows: 24px [start] repeat(100, 24px) [end]; width: 5000px; height: 2400px; display: grid; position: relative;"><div style="display: grid; grid-template-columns: subgrid; grid-template-rows: subgrid; grid-area: start / start / end / end; position: relative;"><div style="background-color: white;">E0</div><div style="background-color: whitesmoke;">E1</div><div style="background-color: white;">E2</div><div style="background-color: whitesmoke;">E3</div><div style="background-color: white;">E4</div><div style="background-color: whitesmoke;">E5</div><div style="background-color: white;">E6</div><div style="background-color: whitesmoke;">E7</div><div style="background-color: white;">E8</div><div style="background-color: whitesmoke;">E9</div><div style="background-color: white;">E10</div><div style="background-color: w
@bkeepers
bkeepers / flipper.js
Last active December 18, 2025 17:27
Simple Flipper API for your app
// Plain ol' JavaScript module for fetching feature flags from the server
//
// import { isEnabled } from './flipper.js'
//
// if (await isEnabled("new_feature")) {
// // render new feature
// } else {
// // render old feature
// }
//
@akpoff
akpoff / curl_imap_query_commands.md
Created January 2, 2018 17:29
curl commands to query imap servers

curl commands to query imap servers

Based on https://busylog.net/telnet-imap-commands-note/

curl options

  • -k -- don't verify certificate (optional)
  • -n -- use .netrc for username and password (optional)
  • -X -- request to send to server
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active December 18, 2025 17:21
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%'
@NeoTheFox
NeoTheFox / compatdata.sh
Last active December 18, 2025 17:20
Link Steam's Proton prefixes by name for ease of use
#!/usr/bin/env bash
help() {
echo NAME
echo " compatdata.sh - create \"by-game\" symlink folder for every compatdata folder on this machine"
echo
echo SYNOPSIS
echo " compatdata.sh [-h] [-p]"
echo
echo OPTIONS
@edum-compassuol
edum-compassuol / MCP_Server_Development_Protocol.md
Created August 28, 2025 17:21
MCP Server Development Protocol Guidelines

MCP Server Development Protocol

⚠️ CRITICAL: DO NOT USE attempt_completion BEFORE TESTING ⚠️

Step 1: Planning (PLAN MODE)

  • What problem does this tool solve?
  • What API/service will it use?
  • What are the authentication requirements? □ Standard API key
@MadhavJivrajani
MadhavJivrajani / k8s-horizontals-getting-started.md
Created October 15, 2021 13:58
This is a list of resources that I personally found helpful while trying to understand containers and kubernetes from a big-picture POV.

Getting Started With Kubernetes On A High Level

One of biggest barriers when trying to get started with Kubernetes is that there's so much content out there that it's kinda overwhelming - and that's totally normal! The intent of this document is to try and provide directed resources in a roadmap like fashion to understand and learn about the horizontals of Kubernetes - post which you can dive deep into any vertical while keeping the bigger picture in mind - that this document hopes to provide.

This is a set of resources for different topics that I found particularly helpful when getting started, and hopefully you do too! I've tried to list them out in order of consumption. If A comes before B under a subtopic, then it's probably that A has topics needed for B, or that A attempts to explain topics of B in a slightly simpler (not nescessarily better) manner than B.

Containers

Feel free to skip over if you're already familiar with containers and have some idea about what they are and why they exist.