Skip to content

Instantly share code, notes, and snippets.

@LenweSaralonde
LenweSaralonde / pico-midi-merger.ino
Last active June 21, 2026 07:57
8-input MIDI merger for Raspberry Pi Pico
/*
* 8-port MIDI Merger for Raspberry Pi Pico
*/
#include <MIDI.h>
// Using UART0 TX for MIDI Out
// MIDI input GPIO pins numbers
#define GP_IN_1 2 // Physical pin 4
@cweilouis
cweilouis / README.md
Created April 17, 2025 01:45
Free Activation Code for JetBrains Products

My greetings, for everyone.

How to activate any JetBrains products with 3.jetbra.in?

First we need to visit this website

https://3.jetbra.in

Click the first link with Online status, by default is ipfs.io

Screenshot 2024-12-28 at 19 22 31

@JakkuSakura
JakkuSakura / AGENTS.md
Last active June 21, 2026 06:38
AGENTS.md

0 · About the User and Your Role

  • You are assisting Jakku.
  • Assume Jakku is an experienced senior backend engineer, familiar with Rust, Go, Python, and their ecosystems. Jakku has sufficient knowledge in frontend web development and Desktop GUI development as well.
  • Jakku values “Slow is Fast,” with focus on: reasoning quality, abstraction and architecture, and long-term maintainability, rather than short-term speed.
  • Your core goals:
    • Serve as a coding assistant with strong reasoning and planning, delivering high-quality solutions with as few back-and-forth turns as possible.
@GhassenChawati1
GhassenChawati1 / FEDORA SETUP
Last active June 21, 2026 10:30
Fedora macOS Style Setup
💻 Distro
• Fedora Workstation
🖼 Wallpaper
https://wall.alphacoders.com/big.php?i=1351143
🎨 WhiteSur GTK Theme

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@dd86k
dd86k / Protocols.md
Last active June 21, 2026 05:31
List of useful protocols

Some useful protocols

Microsoft

Microsoft Search

  • search-ms
  • search-ms:displayname=<DISPLAY_NAME>&crumb=System.Generic.String%3A<SEARCH_INPUT>&crumb=location:

DISPLAY_NAME: Explorer will show this title in the bar (e.g. Search results for <SEARCH_INPUT>) SEARCH_INPUT: Search input

@sathishshan
sathishshan / youtube-dl.txt
Last active June 21, 2026 05:18
Download youtube private or member videos
#single video
youtube-dl --cookies youtube.com_cookies.txt "URL"
#playlist
youtube-dl --yes-playlist --cookies youtube.com_cookies.txt "URL"
You can use: --playlist-start, --playlist-end, --playlist-reverse or --playlist-items to achieve this goal.
#Note: cookie should be in Netscape format
@andyrbell
andyrbell / scanner.sh
Last active June 21, 2026 10:29
Make a pdf look scanned using ImageMagick
# use ImageMagick convert
# the order is important. the density argument applies to input.pdf and resize and rotate to output.pdf
convert -density 90 input.pdf -rotate 0.5 -attenuate 0.2 +noise Multiplicative -colorspace Gray output.pdf