- Initially install your pry-rails to group development on your apps Gemfile
group :development do
# ..
gem 'pry-rails'
# ..
endgroup :development do
# ..
gem 'pry-rails'
# ..
end| pragma solidity ^0.4.4; | |
| import './Ownable.sol'; | |
| contract EscrowContract is Ownable { | |
| address public owner; | |
| address public recipientAddress; | |
| address public parent; | |
| uint public escrowAmount; | |
| EscrowStatuses public status = EscrowStatuses.Pending; | |
| enum EscrowStatuses { Paid, Pending, Complete, Cancelled, Partial } |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>controls</key> | |
| <array> | |
| <dict> | |
| <key>controlType</key> | |
| <string>button</string> | |
| <key>keyPath</key> |
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,
| import com.squareup.moshi.JsonAdapter; | |
| import com.squareup.moshi.JsonDataException; | |
| import com.squareup.moshi.JsonReader; | |
| import com.squareup.moshi.JsonWriter; | |
| import com.squareup.moshi.Moshi; | |
| import com.squareup.moshi.Types; | |
| import java.io.IOException; | |
| import java.lang.annotation.Annotation; | |
| import java.lang.reflect.Type; | |
| import java.util.LinkedHashMap; |
$ brew install dnsmasq
...
$ cp /usr/local/opt/dnsmasq/dnsmasq.conf.example /usr/local/etc/dnsmasq.conf
/usr/local/etc/dnsmasq.confaddress=/local/127.0.0.1
| Canidae | |
| Felidae | |
| Cat | |
| Cattle | |
| Dog | |
| Donkey | |
| Goat | |
| Guinea pig | |
| Horse | |
| Pig |
| package main | |
| import ( | |
| "golang.org/x/net/websocket" | |
| "log" | |
| "net/rpc/jsonrpc" | |
| ) | |
| // In a real project, these would be defined in a common file | |
| type Args struct { |