Skip to content

Instantly share code, notes, and snippets.

@jinjier
jinjier / javdb-top250.md
Last active June 30, 2026 21:28
JavDB top 250 movies list. [Updated on 2026/01]
@zemadi
zemadi / coderbyte
Last active June 30, 2026 21:24
Python answers to CoderByte challenges
#My solutions to challenges from CoderByte.com. Their Python interpreter is buggy.
#1 Using the Python language, have the function FirstReverse(str) take the str parameter being passed and return the string in reversed order.
def FirstReverse(str):
print str[::-1]
#2 Using the Python language, have the function FirstFactorial(num) take the num parameter being passed and return the factorial of it (ie. if num = 4, return (4 * 3 * 2 * 1)). For the test cases, the range will be between 1 and 18.
def FirstFactorial(num):
@k16shikano
k16shikano / SKILL.md
Last active June 30, 2026 21:14
japanese-tech-writing/SKILL
name japanese-tech-writing
description 日本語の技術文書・書籍原稿の文章規範。整形(一文一行、引用ブロック、脚注、コラム記法)、段落と論証の構成(パラグラフライティング)、論証の厳密さ(ツッコミどころの除去)、読み手の負荷の管理、視点と語り、演出の抑制、LLM っぽい空句の禁止、冗長の排除を定める。日本語で技術書の章、草稿、記事、解説文を書くとき、または推敲・リライトするときに使用する。

日本語技術文書の文章規範

日本語で技術的な原稿(書籍の章、記事、解説文)を書く・推敲するときは、以下の規範に従う。

整形

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.

@hsztan
hsztan / mythos-security-audit-gist.md
Created April 6, 2026 00:31
AI-Powered Codebase Security Audit — 7-phase Claude Code prompts mapped to OWASP 2025. Prepare your codebase before Mythos drops.

AI-Powered Codebase Security Audit — Claude Code Prompts

Context: Anthropic's Claude Mythos (unreleased) found 500+ vulnerabilities in production open-source code that survived decades of expert review. These prompts help you find what traditional scanners miss — using Claude Code.

How to use this

What you need: Claude Code — Anthropic's CLI tool for working with codebases. Free tier available.

Install:

@TheOleloGroup
TheOleloGroup / haw.js
Last active June 30, 2026 20:35 — forked from oreoshake/haw.js
N. Matatall – Balatro Project
/*
Aloha mai e Neil:
Below is a forked gist from your original file that you
provided to me.
I have translated each variable line below. For words that needed to be transcreated, I have made a comment
on that line.
@Pythonation
Pythonation / prompt.md
Last active June 30, 2026 20:28
3 PROMPTS OF CODING AGENTS

1. برومبت التخطيط المطوّر (The Planning Protocol)

[الدور والمسؤولية] أنت الآن تعمل بصفة Staff Software Engineer ومدير تقني Tech Lead. مهمتك التخطيط المعماري الصارم للمشروع التالي: [أدخل وصف المشروع هنا]

[قواعد ما قبل التتخطيط] قبل البدء بالبروتوكولات، يجب أن تطبق مبدأ "Think Before Coding":

@tobek
tobek / get-image-urls.js
Last active June 30, 2026 19:53
Save images from chrome inspector/dev tools network tab
/* open up chrome dev tools (Menu > More tools > Developer tools)
* go to network tab, refresh the page, wait for images to load (on some sites you may have to scroll down to the images for them to start loading)
* right click/ctrl click on any entry in the network log, select Copy > Copy All as HAR
* open up JS console and enter: var har = [paste]
* (pasting could take a while if there's a lot of requests)
* paste the following JS code into the console
* copy the output, paste into a text file
* open up a terminal in same directory as text file, then: wget -i [that file]
*/