Skip to content

Instantly share code, notes, and snippets.

@michaelspiss
michaelspiss / connect-easysmx-controller.sh
Last active March 24, 2026 22:35
Connect (multiple) EasySMX controller(s) on linux
#! /bin/bash
IFS=: read -r busnum devnum <<< "$1"
busnum=$(printf "%03i" $busnum)
devnum=$(printf "%03i" $devnum)
xboxdrv --device-by-path ${busnum}:${devnum} --type xbox360 --silent --force-feedback
@pvanfas
pvanfas / Awesome PHP.md
Last active March 24, 2026 22:34
A curated list of amazingly awesome PHP libraries, resources and shiny things.
@bdebon
bdebon / rodin.md
Created March 18, 2026 15:32
Rodin – Interlocuteur socratique pour discussions sociétales profondes — anti-chambre d'écho
name description
rodin
Interlocuteur socratique pour discussions sociétales profondes — anti-chambre d'écho

Tu es Rodin, un interlocuteur intellectuel exigeant. Tu incarnes ce rôle pour toute la durée de la conversation. Ne brise jamais le personnage.

Activation

  1. Lis et intègre la synthèse portrait du portrait de l'utilisateur : [OPTIONEL A FAIRE DE VOTRE COTÉ] — c'est ton contexte permanent sur ton interlocuteur. Ne la résume pas, ne la mentionne pas. Intègre-la silencieusement.
@vanwagonet
vanwagonet / FlowStack.swift
Created March 4, 2022 20:33
Simple flow layout in SwiftUI
import SwiftUI
/// A view that arranges its children in horizontal lines
///
/// FlowStack {
/// ForEach(1..<100) { num in
/// Text(String(num))
/// .padding(8)
/// .background(Circle().fill(Color.red))
/// }
@corylanou
corylanou / address-review.md
Created December 28, 2025 15:44
Claude Code skill: Address PR review comments, make fixes, reply, and resolve
description argument-hint model
Address PR review comments, make fixes, reply, and resolve
<pr-number>
claude-opus-4-5-20251101

Address PR Review Comments

Automates addressing pull request review feedback: analyze comments, make fixes, reply to explain changes, resolve threads, and request re-review from @codex.

# SPY Server Configuration File
# TCP Listener
#
bind_host = 0.0.0.0
bind_port = 5555-6666
# List Server in Airspy Directory
#
list_in_directory = 0
KFZUS-F3JGV-T95Y7-BXGAS-5NHHP
T3ZWQ-P2738-3FJWS-YE7HT-6NA3K
KFZUS-F3JGV-T95Y7-BXGAS-5NHHP
65Z2L-P36BY-YWJYC-TMJZL-YDZ2S
SFZHH-2Y246-Z483L-EU92B-LNYUA
GSZVS-5W4WA-T9F2E-L3XUX-68473
FTZ8A-R3CP8-AVHYW-KKRMQ-SYDLS
Q3ZWN-QWLZG-32G22-SCJXZ-9B5S4
DAZPH-G39D3-R4QY7-9PVAY-VQ6BU
KLZ5G-X37YY-65ZYN-EUSV7-WPPBS
@vil
vil / opsec_bible.md
Last active March 24, 2026 22:18
OpSec Bible - MD file containing useful tips and tricks to improve OpSec.

Operations Security (OpSec) Bible

Operations Security (OpSec) is crucial for maintaining the privacy and security of your activities. The following guidelines, divided into specific zones, will help you safeguard your identity and operations. Use common sense and conduct your own research to supplement these recommendations. Remember, these guidelines are meant for lawful purposes only.


These tips and tricks have been collected from other sources and guides that have been lost in time. Some of these tips

@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@Kartones
Kartones / postgres-cheatsheet.md
Last active March 24, 2026 22:17
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)