Skip to content

Instantly share code, notes, and snippets.

@koutyuke
koutyuke / Rustを超絶丁寧に教えてくれる君.md
Last active August 23, 2026 06:32
Rustを超絶丁寧に教えてくれる君.md

Rustを超絶丁寧に教えてくれる君.md

Role

あなたは Rust の学習を支援するメンターです。 ユーザーは Rust 初学者です。 構文だけでなく、 「なぜそのように書くのか」 「Rust がどんな考え方をするのか」 まで理解することを目指します。

@profstein
profstein / simple-page.html
Last active August 23, 2026 06:15
Simple HTML
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Change to Your Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
@UsernamesAreForChumps
UsernamesAreForChumps / comet-kvm-ssl.md
Created December 14, 2025 04:03
GL.iNet ZeroSSL certificates Comet KVM Pro

GL.iNet ZeroSSL certificates for Comet KVM Pro for local access only. This can also provide proper SSL certificates for internet access, but strongly discouraged unless you are fully aware of all the risks.

Basic information

  • Certificates are stored in the /etc/kvmd/user/ssl directory
  • Uses acme.sh scripts to obtain the SSL certificates from ZeroSSL

Preliminary setup with Cloudflare API keys

At a minimum, a token used by acme.sh requires:

  • the "Zone > DNS > Edit" permission;
  • permission for the specific zones/domains within which you need to perform ACME DNS challenges;
@A7reus
A7reus / manage_ai_domains.bat
Last active August 23, 2026 05:43
Set up hosts file on windows such that common AI domains are either blocks or redirected.
@echo off
setlocal EnableDelayedExpansion
:: 1. Check for Administrative Privileges
net session >nul 2>&1
if %errorLevel% neq 0 (
echo [ERROR] This script must be run as Administrator!
echo Please right-click this script and select "Run as administrator".
echo.
pause
@ih2502mk
ih2502mk / list.md
Last active August 23, 2026 05:38
Quantopian Lectures Saved
@aarondfrancis
aarondfrancis / audit-your-codebase.md
Created August 14, 2026 15:20
A read-only, agent-orchestrated codebase audit prompt for data structures, state modeling, algorithms, and ownership.

Audit this entire codebase for materially useful simplifications in its data structures, state representation, control flow, algorithms, and ownership.

This is an audit-only exercise. Do not edit files, run tests, implement recommendations, commit, or push. Read-only inspection commands are allowed.

You are the coordinator. Continue until the complete codebase has been reviewed and the final audit is validated.

  1. Establish the coverage contract

Inspect the repository and inventory every identifiable subsystem.

@proffesor-for-testing
proffesor-for-testing / practice-websites-for-qa-qe.md
Last active August 23, 2026 05:03
103 Practice Websites for QA/QE Testing

103 Practice Websites for QA/QE Testing

A curated catalog of free websites for practicing software testing -- UI automation, API testing, security, accessibility, performance, and exploratory bug hunting. Compiled Feb 2026.

Why This List?

We needed real targets to test our AI-powered QE fleet (Agentic QE v3). We researched every practice site we could find, tested 10 of them live, and organized them by what they're actually useful for. This isn't just a link dump -- we've validated these sites and noted what works best for what.


@oldnomad
oldnomad / rustore.md
Last active August 23, 2026 04:45
RuStore API

RuStore API for application installation

  • URL for human-readable application info page has format https://www.rustore.ru/catalog/app/{packageName}.
  • Application info as a JSON object is available at URL https://backapi.rustore.ru/applicationData/overallInfo/{packageName}.
  • APK reference URL is https://backapi.rustore.ru/applicationData/download-link (version 1) or https://backapi.rustore.ru/applicationData/v2/download-link (version 2). It accepts only POST requests (see below).

Typical workflow is:

  1. Retrieve application info. This is necessary to determine application ID (appId).
  2. Retrieve download URLs. As far as I can see, only the latest version can be retrieved.
  3. Use download URL to download the APK.
@kevinrosa
kevinrosa / roms-notes.md
Last active August 23, 2026 04:43
ROMS notes

ROMS

The model described in this document is the three-dimensional, hydrostatic primitive-equation Regional Ocean Modeling System. It is a free-surface, finite-difference circulation model, formulated in a vertical terrain-following sigma-coordinate. The horizontal discretization is by an orthogonal curvilinear Arakawa-C grid. (taken from He and Wilkin 2006)

On restarts

Perfect restart uses multiple time steps in order to calculate the derivatives (unlike a single time step initialization)

For new solutions, or to use analytical initial conditions, must set NRREC == 0 (in addition to compiling with #define ANA_INITIAL in the cpp header file.

To restart, if you used #define ANA_INITIALthen you need to recompile with #undef ANA_INITIAL.