Skip to content

Instantly share code, notes, and snippets.

8761
[
{
"animeEng": "Food Wars! Shokugeki no Soma",
"animeRomaji": "Shokugeki no Souma",
"songName": "Kibou no Uta",
"artist": "Ultra Tower",
"type": "Opening 1",
"correctCount": 108,
"startTime": 45,
"songDuration": 88.999167,
@TheDom81
TheDom81 / news.html
Created June 18, 2026 01:59
Aggiornamento news
<h1>Ultime notizie</h1>
<!DOCTYPE html>
<html>
<head>
<title>
5 tugas
</title>
</head>
<body>
<font face="Arial" size="3">
<table border="1" width="100%" cellspacing="0" cellpadding="2" align="center">

Privacy Policy — Training Load Engine (Development)

This application is a personal development project used by a single developer (the project owner) to test integration with the WHOOP API as part of building a clinical training load monitoring system.

Data collection

Data fetched from WHOOP via this application is stored locally on the developer's machine in an encrypted SQLite database. No data is transmitted to third parties,

@shantanu-gonade
shantanu-gonade / register-anti-pattern.ts
Created June 18, 2026 01:58
Original TEMS registration handler — optional idempotency key, sequential read-then-write, no atomic uniqueness enforcement. Illustrates the race condition at the center of the article.
// 1. Optional idempotency key — caller may or may not send one
async function handler(event: { eventId: string; userId: string; idempotencyKey?: string }) {
const { eventId, userId, idempotencyKey } = event;
// 2. If a key was provided, check for a cached result
if (idempotencyKey) {
const existing = await docClient.send(new GetCommand({
TableName: TABLE_NAME,
Key: { PK: `IDEMPOTENCY#${idempotencyKey}`, SK: 'METADATA' },
}));
@cbuntingde
cbuntingde / oc-token-saving.md
Created June 18, 2026 01:58
OpenCode Token Saving Agents.

This setup establishes a general router agent running MiMo V2.5 as your primary driver. It handles overall orchestration, general text, and logic, but offloads styling, UI tasks, and heavy programming to dedicated subagents running minimax-m3 and Opus 4.8

{ "agent": { "general": { "mode": "primary", "model": "opencode/mimo-v2.5", "description": "Primary router for project management, triage, and orchestration.", "prompt": "You are the general orchestrator. Handle text explanation, general architecture, and triage tasks. For UI/UX design, delegate to the @webdesign agent. For implementing complex features or writing raw code files, delegate to the @build agent.", "permission": {

{
"success": True,
"content": {
"cardData": {
"analysisLines": [{
"value": "告警来源: 可观测平台"
}, {
"value": "告警类型: 应用 - Container 内存使用率"
}, {
"value": "当前告警级别: 警告 (warning)"
@nickperry68
nickperry68 / RGIR.md
Created June 18, 2026 01:58
The Rape Gang Inquiry Report
                                               Contents

Contents...............................................................................................................1 Acknowledgements...............................................................................................2 Foreword..............................................................................................................3 Introduction.........................................................................................................5 Executive Summary.............................................................................................. 7 Overview of Crimes.............................................................................................11

@hikatamika
hikatamika / LazyMouse.ahk
Created June 18, 2026 01:57
Lazy Mouse: Double Click and Jump Mouse Between Monitors with the Side Buttons
#Requires AutoHotkey v2.0
; Lazy Double Click (Back)
XButton1::Click 2
; Lazy Cursor Jump (Forward)
; Calculate mouse coordinates relative to the entire desktop screen area
CoordMode "Mouse", "Screen"
XButton2:: {