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
pragma solidity ^0.4.19; | |
import './ERC721.sol'; | |
contract CryptoMarchMadness is ERC721, ERC721Metadata, ERC721Enumerable { | |
uint256 private constant MASK = 0x3f; | |
uint256 public basePoolFeeInWei; // Fee required to purchase a bracket | |
uint256 public collectorFeeInWei; // Flat fee reserved for the pool operator |
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
# https://github.com/GoogleCloudPlatform/gcsfuse | |
# put this file as /etc/systemd/system/gcsfusemount.service and then `systemctl enable gcsfusemount.service` | |
# | |
[Unit] | |
Description=Google Cloud Storage FUSE mounter | |
After=local-fs.target network-online.target google.service sys-fs-fuse-connections.mount | |
Before=shutdown.target | |
[Service] | |
Type=forking |
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
$ docker run<tab> | |
-- no matches found -- | |
$ curl -fLo ~/.zprezto/modules/completion/external/src/_docker https://raw.githubusercontent.com/docker/docker-ce/master/components/cli/contrib/completion/zsh/_docker | |
$ docker run<tab> | |
-- images -- | |
0a89c74fff6c -- latest in bradleybeddoes/docker-whale | |
-- repositories -- | |
bradleybeddoes/docker-whale |
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
import ratpack.exec.ExecController; | |
import ratpack.exec.Execution; | |
import ratpack.http.client.HttpClient; | |
import ratpack.server.RatpackServer; | |
import ratpack.service.Service; | |
import ratpack.service.StartEvent; | |
import ratpack.service.StopEvent; | |
import java.net.URI; | |
import java.util.Optional; |