Skip to content

Instantly share code, notes, and snippets.

@MuhammadSaim
MuhammadSaim / rarreg.key
Last active August 3, 2026 00:31
Step 1: Create a file called rarreg.key Step 2: Paste into the file the raw content of this gist Step 3: Go to Winrar install directory (by default => c:\ProgramFiles\WinRAR\ ) Step 4: Paste the rarreg.key into WinRAR directory Step 5: Enjoy
RAR registration data
WinRAR
Unlimited Company License
UID=4b914fb772c8376bf571
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9
name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@dongxiaodong137
dongxiaodong137 / enterprise_token.rb
Created August 3, 2026 00:07 — forked from markasoftware/enterprise_token.rb
OpenProject Enterprise mode for free
############ If you are using DOCKER all-in-one image, create Dockerfile like: ################
############ FROM openproject/openproject:16 ################
############ COPY ./enterprise_token.rb app/models/enterprise_token.rb ################
############ If you are runing a manual installation: ################
############ REPLACE app/models/enterprise_token.rb in the source code with this file! ################
############ also be sure to RESTART OpenProject after replacing the file. ################
############ If using some other set up (eg docker-compose), read the comments on ################
############ https://gist.github.com/markasoftware/f5b2e55a2c2e3abb1f9eefcdf0bfff45 ################
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPIDER-MAN: QUIZ CHALLENGE</title>
<!-- استدعاء خطوط كلاسيكية مستوحاة من الكوميكس والصحف -->
<link href="https://fonts.googleapis.com/css2?family=Bangers&family=Cairo:wght@700;900&display=swap" rel="stylesheet">
<style>
:root {
@sanchez314c
sanchez314c / CLAUDE-karpathy-michaels-loop.md
Last active August 3, 2026 00:01
The Karpathy-Michaels (@SpaceWelder314) CLAUDE.md + LOOPS.md — 35 rules across 6 tiers, includes agent loop harness design from Karpathy's LOOPS.md

SYSTEM PROMPT:

The Karpathy-Michaels (@SpaceWelder314) CLAUDE.md + LOOPS.md

Andrej Karpathy's CLAUDE.md and LOOPS.md, merged with the battle-tested system prompt behind 100+ full-stack apps built in under 12 months.

Karpathy published his CLAUDE.md as a clean set of principles, then followed it with LOOPS.md on agent harness design. Both are correct. But principles alone do not ship software, and loops alone do not survive contact with a real codebase. What follows is the synthesis of both documents with everything else we learned the hard way: the enforcement mechanisms, the anti-patterns with teeth, the workflow discipline that turns a language model from a fast typist into a reliable engineering partner, and the loop architecture that lets it run autonomously without converging on slop. 35 rules across 6 tiers. Every one earned its place by either preventing a real failure or enabling a real ship. Nothing is theoretical.


TIER 1 — FOUNDATION

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<script src="Scripts/isRockFx.js"></script>
<script>
$(function () {
@kemo
kemo / beatport_api_php_example.md
Created February 5, 2026 06:59
# Beatport (Internal + External) API Documentation

Beatport API Documentation

This document provides comprehensive documentation for Beatport's APIs, discovered through frontend analysis and reverse engineering.

Overview

Beatport uses two main API infrastructures:

API Base URL Purpose Authentication
  • $310K for a year of MSSQL support
  • $192K for Traefik support
  • $27.5K for a https://snyk.io/ renewal
  • $233K for YotaScale renewal while "working on our own internal tool with a goal to replace Yotascale with an alternative which will allow for better customization & self-service options"
  • $30K for RStudio renewal for their data scientists
  • $12K/year for Nasdaq Governance Solutions to "allow directors and section 16 officers of the company to complete required disclosure questionnaires using an online questionnaire platform"
  • unknown amount for 800 licenses of Lightstep "a cloud-based tracing solution that can track the communication and dependency among the HTTP or gRpc services, and help debug latency or performance issues"
  • $125K/year for https://www.kodex.us/ "Kodex. The purpose of this tool is to enable secure receiving and responding to law enforcement requests. Kodex will also take on ownership of verifying law enforcement agencies as well as flagging if they deem a request suspicious. Kodex i

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.

@battenr
battenr / rp_model_example.R
Created July 27, 2026 16:15
Royston-Parmar Model
# Title: Royston-Parmar Models for Causal Inference
# Description: RP models can be very useful for causal inference. The goal of this code is to
# demonstrate why they can be so useful.
# This example uses a non-proportional hazard, to demonstrate how they can be useful
# and how they are flexible. In this case, where a Cox PH model would fail.
# Additionally, the restricted mean survival time (RMST) is calculated to demonstrate this
# Note: This code was created with the help of Google Gemini, and reviewed by me (RB)