The following regular expressions are crafted to match some commonly used cryptocurrency wallet address types. This document details the Regex components and pattern tests to match Ethereum, Bitcoin, Dash and Monero addresses.
/^0x[a-fA-F0-9]{40}$/g
The following regular expressions are crafted to match some commonly used cryptocurrency wallet address types. This document details the Regex components and pattern tests to match Ethereum, Bitcoin, Dash and Monero addresses.
/^0x[a-fA-F0-9]{40}$/g
https://medium.com/p/785311f58c2/
Telegram chat https://t.me/waves_dev_workshops
install docker
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| package main | |
| import ( | |
| "math" | |
| "fmt" | |
| ) | |
| //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| //::: ::: | |
| //::: This routine calculates the distance between two points (given the ::: |
NOTE: This doc was created in 2018 and is no longer being kept up-to-date. There are some useful updates and Q&A in the comments, and Google has since disallowed cryptocurrency nodes explicitly in their Terms of Service. While I work on an updated how-to-run-a-node tutorial, you are welcome to join our ETH developer chat and share what you'd like to work on.
https://matrix.to/#/#invisible-college/cryptocoin:matrix.org?via=matrix.org&via=t2bot.io
| package main | |
| import ( | |
| "crypto/rand" | |
| "encoding/base64" | |
| "fmt" | |
| "io" | |
| "math/big" | |
| ) |
| from hashlib import sha1 | |
| class YandexMoheyHash: | |
| """ | |
| Integrity check for Yandex.Money HTTP-notifications | |
| Usage example: | |
| yahash = YandexMoheyHash(request.POST, settings.YANDEX_MONEY_SECRET) | |
| if yahash.check(request.POST['sha1_hash']): |
| # See docs/examples | |
| # http://doc.gitlab.com/ce/ci/quick_start/README.html | |
| # http://doc.gitlab.com/ce/ci/yaml/README.html | |
| # GitLab CI template for Go tests. Note this installs | |
| # a new working copy of Go in a non-standard path such | |
| # that sudo/root is not needed for the install stage. | |
| # note that this particular install-environment stage | |
| # is overly verbose in order to debug anything tricky |