Skip to content

Instantly share code, notes, and snippets.

@bradtraversy
bradtraversy / ssh.md
Last active June 22, 2026 23:42
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

@Erfan-Ahmadi
Erfan-Ahmadi / Bokeh-DOF
Last active June 22, 2026 23:40
Bokeh Depth Of Field Resources
GPU Gems 1 - Chapter 23. Depth of Field: A Survey of Techniques
GPU Gems 2
GPU Gems 3 - Chapter 28. Practical Post-Process Depth of Field
GPU Pro 1 - Realistic Depth of Field in Post-Production
GPU Pro 2 - Post-Proccessing Effects on Mobile Devices
GPU Pro 3 -
GPU Pro 4 - Images Space -> First Two Chapters
GPU Pro 5 - 241 - Bokeh Effects on The SPU
GPU Pro 6 -
@k16shikano
k16shikano / SKILL.md
Last active June 23, 2026 00:00
japanese-tech-writing/SKILL
name japanese-tech-writing
description 日本語の技術文書・書籍原稿の文章規範。整形(一文一行、引用ブロック、脚注、コラム記法)、段落と論証の構成(パラグラフライティング)、論証の厳密さ(ツッコミどころの除去)、読み手の負荷の管理、視点と語り、演出の抑制、LLM っぽい空句の禁止、冗長の排除を定める。日本語で技術書の章、草稿、記事、解説文を書くとき、または推敲・リライトするときに使用する。

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

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

整形

@bazhenovc
bazhenovc / the_sane_rendering_manifesto.md
Last active June 22, 2026 23:38
The Sane Rendering Manifesto

The Sane Rendering Manifesto

The goal of this manifesto is to provide an easy to follow and reasonable rules that realtime and video game renderers can follow.

These rules highly prioritize image clarity/stability and pleasant gameplay experience over photorealism and excess graphics fidelity.

Keep in mind that shipping a game has priority over everything else and it is allowed to break the rules of the manifesto when there are no other good options in order to ship the game.

Do not use dynamic resolution.

@yuuichieguchi
yuuichieguchi / clear-japanese.md
Created June 20, 2026 15:21
Claude Codeとの日本語会話を読みやすくするoutput style。k16shikano氏の japanese-tech-writing を会話用に改変
name clear-japanese
description 日本語の応答を、明瞭・簡潔・LLM 口調なしで書くための規範。会話、説明、提案、相談のすべてで適用する。

日本語応答の規範

日本語でユーザに返答するときは、以下の規範に従う。コードコメント、コミットメッセージ、ドキュメント生成にも同じ規範を準用する。

整形

# Owning binary : TextComposerRuntime
# Status : NEW in iOS 27 (not in 26.5.1)
# Source : embedded __cstring in dyld_shared_cache_arm64e (24A5355q)
======================================================================
# Task Overview:
You are a composition agent that helps users create personalized written content (emails, messages, documents, posts, stories, etc.)
As an Assistant, you must:
1. Analyze the request to determine if you have sufficient information
@bradtraversy
bradtraversy / git-cheat-sheet.md
Created January 6, 2025 17:16
Cheat Sheet for Git Crash Course

Git & GitHub Crash Course 2025 Cheat Sheet

What is Git?

Git is a distributed version control system that allows developers to:

  • Track changes in code.
  • Collaborate on projects.
  • Manage multiple versions of a project.
  • Work offline with a full local repository.
You are {NAME} my AI research assistant. I’m {YOURNAME}. You are a calm, sharp, practical research assistant. Keep the tone concise, useful, and not hypey. Your job is to help me track web development and AI news, summarize what matters, and turn it into content ideas. 
Let's set up a news gathering workflow. Create a feeds.md file for the sources to monitor, a topics.md file for relevance filters, a digests folder for daily markdown digests, and an ideas.md file to store distilled content opportunities. Make the workflow focused on daily tech research and content idea generation for a developer-focused creator.
Update this workflow so that when I ask for a digest, you check the sources in feeds.md, apply the relevance rules in topics.md, remove duplicates, summarize the top stories, explain why they matter, and write the full digest to a dated markdown file in /digests.
@bradtraversy
bradtraversy / claude_crash_snippets.md
Last active June 22, 2026 23:34
Claude Crash Course Snippets

CLI Project Prompt

Create a Node script(index.js) that fetches the top 5 crypto prices from the CoinGecko API and prints them in a clean table — name, current price, 24-hour change. Keep the code clean and organized.

Readability Refactor

Refactor this for readability and maintainability. Split it into
focused ES modules: an api module for the CoinGecko fetch, a format
module for the price and change helpers, and a table module for the