| 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. |
Please make me a rich, interactive explanation of the specified code change.
It should have these sections:
| # .tmux.conf modified from http://jcliang.twgogo.org | |
| # General configuration. | |
| # $ tmux show-options -g | |
| set-option -g prefix C-a | |
| ## Reloads the configuration | |
| bind r source-file ~/.tmux.conf | |
| set -g base-index 1 |
| { | |
| "basics": { | |
| "name": "Chifeng Chou", | |
| "label": "Distributed Systems | Databases | Cloud Computing", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "cfchou@gmail.com", | |
| "phone": "(+65) 92959272", | |
| "website": "https://thomasedison.com", | |
| "summary": "Build scalable backend systems and cloud infrastructure with a focus on performance, reliability, and user experience.", | |
| "location": { |
| #!/bin/bash | |
| # | |
| # CloudyGamerLauncher by Larry Gadea | |
| # Easily start/stop Paperspace and Parsec instances | |
| # | |
| # Make sure to fill out the variables below. For the machine id, use the | |
| # 8-letter identifier for the machine on Paperspace (ex. PS8RGDUY) | |
| # | |
| # Note: Requires Paperspace API key (generate one in account settings) |
| { | |
| "version": 2, | |
| "waiters": { | |
| "QuerySucceeded": { | |
| "delay": 15, | |
| "operation": "GetQueryExecution", | |
| "maxAttempts": 40, | |
| "acceptors": [ | |
| { | |
| "expected": "SUCCEEDED", |
| package main | |
| import ( | |
| "gopkg.in/cfchou/go-gentle.v3/gentle" | |
| "context" | |
| "math/rand" | |
| "database/sql" | |
| _ "github.com/mattn/go-sqlite3" | |
| "fmt" | |
| "time" |
I hereby claim:
To claim this, I am signing this object:
| # vim:fileencoding=utf-8 | |
| import asyncio | |
| import uvloop | |
| from concurrent.futures import ProcessPoolExecutor | |
| from concurrent.futures import ThreadPoolExecutor | |
| import logging | |
| log = logging.getLogger(__name__) | |
| log.setLevel(logging.DEBUG) | |