Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
| Generate certificate and key from zerossl website | |
| openssl pkcs12 -export -in domain-crt.txt -inkey domain-key.txt -out pkcs.p12 -name NAME | |
| keytool -importkeystore -deststorepass password -destkeypass password -destkeystore keystore.jks -srckeystore pkcs.p12 -srcstoretype PKCS12 -srcstorepass password -alias NAME |
| Keypad 0 - "kp_ins" - bind kp_ins "say /me salutes" | |
| Keypad 1 - "kp_end" | |
| Keypad 2 - "kp_downarrow" | |
| Keypad 3 - "kp_pgdn" | |
| Keypad 4 - "kp_leftarrow" | |
| Keypad 5 - "kp_5" | |
| Keypad 6 - "kp_rightarrow" | |
| Keypad 7 - "kp_home" | |
| Keypad 8 - "kp_uparrow" | |
| Keypad 9 - "kp_pgup" |
| $ testrpc --account="0x7231a774a538fce22a329729b03087de4cb4a1119494db1c10eae3bb491823e7, 10000000000000000000" | |
| Syntax is $ testrpc --account="<privatekey>,balance" [--account="<privatekey>,balance"] |
| # build gem | |
| gem build <gem-name> | |
| # publish gem | |
| gem push <gem-name> | |
| # delete gem from rubygems | |
| gem yank <gem-name> -v <version> |
| /usr/share/logstash/bin/ruby | |
| /usr/share/logstash/vendor/jruby/bin/gem |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Do not edit this file, it will be overwritten on install. | |
| Copy the file to $HOME/.config/openbox/ instead. --> | |
| <openbox_config xmlns="http://openbox.org/3.4/rc" | |
| xmlns:xi="http://www.w3.org/2001/XInclude"> | |
| <resistance> | |
| <strength>10</strength> |
| Dir | %{Rename-Item $_ -NewName ("{0}.835" -f $nr++)} |
| Powershell command to find the number of lines of files in current directory | |
| dir -Recurse *.txt | Get-Content | Measure-Object -Line |
| // To disable optimization for given code just use this: | |
| #pragma optimize( "", off ) | |
| // your code | |
| #pragma optimize( "", on ) |