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
a[target="_blank"] { | |
position: relative; | |
} | |
a[target="_blank"]:after { | |
position: absolute; | |
top: 3px; | |
right: -15px; | |
content: "\1f855"; | |
font-size: 13px; |
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
:root { | |
--green: #46b549; | |
--green-darken: #54995f; | |
--green-lighter: #64cc6e; | |
--grey: #c5c5cc; | |
--grey-lighter: #aeaebf; | |
--grey-darken: #303040; | |
--grey-greener: #163116; | |
--grey-dark: #4d4d66; | |
--white-darken: #c5c5d9; |
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
# Start Core | |
./gocore --verbosity 2 --nat any console | |
# Get latest transaction // for nonce [0x0] // 0 = first; 1 = second; … | |
# Same tx nonce with a higher fee may be a replacement. | |
web3.xcb.getTransactionCount("cb…") | |
# Expected result: number | |
# Compose transaction | |
# web3.toOre(1) is value in Cores |
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
./xcbkey generate --privatekey pkey.txt UTC--$(date -u +"%FT%H-%M-%S%Z")--wallet |
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
^(cb|CB)([0-9]{2})([0-9a-fA-F]{40})$ |
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
wallet= | |
worker=Rabbit | |
server[1]=eu.catchthatrabbit.com | |
port[1]=8008 | |
server[2]=eu1.catchthatrabbit.com | |
port[2]=8008 |
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
^(ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ssh-ed25519) AAAA[0-9A-Za-z+\/]+[=]{0,3}( ([^@]+@[^@]+))?$ |
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
<Multi_key> <o> <r> <e> : "ø" | |
<Multi_key> <O> <R> <E> : "Ø" | |
<Multi_key> <n> <u> <c> <l> <e> : "ꞥ" | |
<Multi_key> <n> </> : "ꞥ" | |
<Multi_key> <m> <o> <l> <i> : "₥" | |
<Multi_key> <c> <o> <r> <e> : "₡" | |
<Multi_key> <C> <O> <R> <E> : "₡" | |
<Multi_key> <c> </> </> : "₡" | |
<Multi_key> <C> </> </> : "₡" | |
<Multi_key> <a> <e> <r> : "₳" |
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
general.smoothScroll;true | |
general.smoothScroll.currentVelocityWeighting;0.15 | |
general.smoothScroll.mouseWheel.durationMaxMS;250 | |
general.smoothScroll.mouseWheel.durationMinMS;250 | |
general.smoothScroll.msdPhysics.enabled;true | |
general.smoothScroll.msdPhysics.motionBeginSpringConstant;400 | |
general.smoothScroll.msdPhysics.regularSpringConstant;600 | |
general.smoothScroll.msdPhysics.slowdownMinDeltaMS;120 | |
general.smoothScroll.other.durationMaxMS;500 | |
general.smoothScroll.pages.durationMaxMS;350 |
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
["CMD-SHELL", "connected=$(gocore net.listening); if [ $connected ]; then exit 0; else exit 1; fi"] |