Name | Version | Enabled | ID |
---|---|---|---|
Attach from Clipboard | 1.1.0 | true | [email protected] |
CustomizeMyBird | 2.7.9.1 | true | CustomizeMyBird@Aris_CTRdev |
Disable DragAndDrop (Thunderbird) | 3.2.0 | true | [email protected] |
Dorando keyconfig | 2018.1 | true | [email protected] |
Header Tools Lite | 0.6.2 | true | [email protected] |
Manually sort folders | 1.2.1 | true | [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# navigate to about:debugging#workers first | |
for (let k of document.getElementsByClassName("unregister-link")) k.click() | |
for (let k of document.getElementsByClassName("qa-unregister-button")) k.click() |
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, redirect | |
from urllib import parse | |
import requests | |
import json | |
app = Flask(__name__) | |
@app.route('/') | |
def hello_world(): | |
steam_openid_url = 'https://steamcommunity.com/openid/login' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
- You can store a price in a floating point variable.
- All currencies are subdivided in 1/100th units (like US dollar/cents, euro/eurocents etc.).
- All currencies are subdivided in decimal units (like dinar/fils)
- All currencies currently in circulation are subdivided in decimal units. (to exclude shillings, pennies) (counter-example: MGA)
- All currencies are subdivided. (counter-examples: KRW, COP, JPY... Or subdivisions can be deprecated.)
- Prices can't have more precision than the smaller sub-unit of the currency. (e.g. gas prices)
- For any currency you can have a price of 1. (ZWL)
- Every country has its own currency. (EUR is the best example, but also Franc CFA, etc.)
Test the performance of TreeWalker compared to other DOM walker methods. Ran each test 1000 times. Try it yourself.
Method Total ms Average ms
document.TreeWalker 911 0.911
Iterative Traverser 2945 2.945