| 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:
I've been seeing a lot of misinformation so:
| Word | Meaning |
|---|---|
| App | A Bot account on Discord, always has the "APP" flair |
| Server App | A Bot account with support to be added to Servers, so all the Server's members can use it |
| User App | A Bot account with support to be added to User accounts, so that User can use its commands in across Servers & DMs/GroupDMs |
For a basic discussion and demo, see https://www.postgresql.org/docs/current/explicit-locking.html#id-1.5.12.6.8.2
My own demo follows.
Create two tables with unique indexes:
Do you really need Elastic Search?
| Rank | Type | Prefix/Suffix | Length | |
|---|---|---|---|---|
| 1 | Prefix | my+ | 2 | |
| 2 | Suffix | +online | 6 | |
| 3 | Prefix | the+ | 3 | |
| 4 | Suffix | +web | 3 | |
| 5 | Suffix | +media | 5 | |
| 6 | Prefix | web+ | 3 | |
| 7 | Suffix | +world | 5 | |
| 8 | Suffix | +net | 3 | |
| 9 | Prefix | go+ | 2 |
| Moved to https://github.com/olivierlemoal/i3-swap-focus |
| ## Prefix like in screen | |
| set -g prefix 'C-a' | |
| ## Use xterm keys (makes eg. Ctrl+Arrow navigate words) | |
| set-window-option -g xterm-keys on | |
| ## List of plugins | |
| # For this to work you need to install https://github.com/tmux-plugins/tpm | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' |
| import numpy as np | |
| from functools import reduce | |
| class Buzzer: | |
| def __init__(self, **kwargs): | |
| values = [v for k, v in kwargs.items()] | |
| self.kwargs = kwargs | |
| self.lcm = np.lcm.reduce(values) | |
| self.eps = 1e-7 |