Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
import { encode } from '@ethereumjs/rlp'; | |
import { ecrecover } from '@ethereumjs/util'; | |
import { keccak256 } from 'ethereum-cryptography/keccak'; | |
// tx: 0xb00b758da7b97dbeedd1ef62592b2c1427c70ca042dc51a63f3a39d8d31ebbcc | |
const chainId = 0x1n; | |
const nonce = 0x3n; | |
const maxPriorityFeePerGas = 0xf4240n; | |
const maxFeePerGas = 0x73323c225n; | |
const gasLimit = 0xdd9cn; |
package main | |
import ( | |
"fmt" | |
"log" | |
"os" | |
"sync" | |
"time" | |
) |
module.exports = { | |
webpack: function (cfg) { | |
cfg.plugins = cfg.plugins.filter(plugin => { | |
return plugin.constructor.name !== 'UglifyJsPlugin'; | |
}); | |
return plugin | |
} | |
} |
<?xml version="1.1" encoding="UTF-8"?> | |
<!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!-- | |
Data generated Wed Mar 23 01:35:41 2022 | |
Generated by kluchrtoxml_64 build 203 | |
--> | |
<!--Last edited by Ukelele version 351 on 2022-03-23 at 01:45 (GMT+8)--> |
// XPath CheatSheet | |
// To test XPath in your Chrome Debugger: $x('/html/body') | |
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/ | |
// 0. XPath Examples. | |
// More: http://xpath.alephzarro.com/content/cheatsheet.html | |
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class |
/* ******************************************************************************************* | |
* THE UPDATED VERSION IS AVAILABLE AT | |
* https://github.com/LeCoupa/awesome-cheatsheets | |
* ******************************************************************************************* */ | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
from django.conf import settings | |
from django.conf.urls.defaults import patterns, include, url | |
from django.contrib import admin | |
# Tells the admin to discover any 'admin.py' files in your apps. Not necessary in Django 1.7+ | |
admin.autodiscover() | |
urlpatterns = patterns('', | |
url(r'^{}/admin/'.format(settings.ADMIN_URL_PATH), include(admin.site.urls)), | |
... |