Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
# This snippet generates BIP-39 mnemonic (seed phrase) | |
# then derives 10 Ethereum private keys from it (with their addresses) | |
# The same algorithm and paths are used in Metamask, Trust Wallet, Ganache, hardhat | |
# and other popular wallets and tools. | |
from bip44 import Wallet | |
from bip44.utils import get_eth_addr | |
from mnemonic import Mnemonic | |
mnemo = Mnemonic("english") | |
words = mnemo.generate() |
btn Button chk CheckBox ckl CheckedListBox | |
cmb ComboBox dtp DateTimePicker lbl Label | |
llb LinkLabel lst ListBox lvw ListView | |
mtx MaskedTextBox cdr MonthCalendar icn NotifyIcon | |
nud NumeircUpDown pic PictureBox prg ProgressBar | |
rdo RadioButton rtx RichTextBox txt TextBox | |
tip ToolTip tvw TreeView wbs WebBrowser | |
容器 | |
flp FlowLayoutPanel grp GroupBox pnl Panel |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>UnPacker</title> | |
</head> | |
<style> textarea {width: 100%} </style> | |
<body> |
hdmi_group=2 | |
hdmi_mode=87 | |
hdmi_cvt=2560 1440 60 3 0 0 1 | |
max_framebuffer_width=2560 | |
max_framebuffer_height=1440 | |
hdmi_pixel_freq_limit=400000000 |
use std::fmt::{ Debug, Display, Formatter, Result }; | |
use std::string::ToString; | |
#[derive(Debug)] | |
struct Slice<'a, T: 'a> { | |
data: &'a [T] | |
} | |
impl <'a, T: ToString> Display for Slice<'a, T> { | |
fn fmt(&self, f: &mut Formatter) -> Result { |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<style> | |
section { | |
background-color: #80b8e9; |
#/usr/bin/env sh | |
curl --proxy http://127.0.0.1:8080/ --user-agent burl --insecure "$@" |
There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's .gitignore
is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the node_modules
directory) as well as files that are generated (and regenerated) as artifacts of a build process.
All other files should be in your own global gitignore file:
.gitignore
in your home directory and add any filepath patterns you want to ignore.Note: The specific name and path you choose aren't important as long as you configure git to find it, as shown below. You could substitute
.config/git/ignore
for.gitignore
in your home directory, if you prefer.