- Zeal
- DocHub (no longer maintained)
This file contains hidden or 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
| var log = function (color, type) { | |
| var arg = [].slice.call(arguments) | |
| arg.shift() | |
| arg.shift() | |
| if (typeof arg[0] !== "string") { | |
| arg.unshift("") | |
| } | |
| var l = arg.length |
This file contains hidden or 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
| var c = { | |
| 'reset': '\u001b[0m', | |
| 'bold': '\u001b[1m', | |
| 'italic': '\u001b[3m', | |
| 'underline': '\u001b[4m', | |
| 'blink': '\u001b[5m', // background: gray | |
| 'black': '\u001b[30m', |
This file contains hidden or 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
| <iframe srcdoc=" | |
| <!doctype html> | |
| <style> | |
| .multi-border-color { | |
| border-style: solid; | |
| border-image-source: linear-gradient(to right, crimson 15%, #ddd 15% 100%); | |
| border-image-width: 0px 0px 10px 0px; | |
| border-width: 0px 0px 10px 0px; | |
| border-image-slice: 1; | |
| } |
料金表、目次などで使われる
タブとリーダー
Dot Leader css
http://www.w3.org/Style/Examples/007/leaders.en.html
This file contains hidden or 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
| plummet: 急落 くぼみ, へこみ | |
| stumble: 弱まる、くらいの意味で。 つまずく、よろめく。 | |
| plunge: 落ち込み。priceと使われる。the plunge in oil prices | |
| tumble: 急落, 暴落 転ぶ | |
| soar: 高騰, 急騰 舞う, 飛ぶ。 | |
| jump: soarと同じ | |
| an increase in [demand] for [X]. |
This file contains hidden or 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
| // example | |
| HHmmssToSeconds("8") | |
| HHmmssToSeconds(":8") | |
| HHmmssToSeconds("1:08") | |
| HHmmssToSeconds("1:8") | |
| HHmmssToSeconds("01:00:08") | |
| HHmmssToSeconds("1:0:8") |