I hereby claim:
- I am aayanl on github.
- I am anarch3 (https://keybase.io/anarch3) on keybase.
- I have a public key whose fingerprint is 2953 6AA7 7602 FF25 94B3 C33D D957 6718 016B 7D44
To claim this, I am signing this object:
| pragma solidity ^0.4.11; | |
| /** | |
| * @title SafeMath | |
| * @dev Math operations with safety checks that throw on error | |
| */ | |
| library SafeMath { | |
| function mul(uint256 a, uint256 b) internal constant returns (uint256) { | |
| uint256 c = a * b; |
I hereby claim:
To claim this, I am signing this object:
| diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp | |
| index ec398f662..6724399c0 100644 | |
| --- a/src/policy/policy.cpp | |
| +++ b/src/policy/policy.cpp | |
| @@ -117,6 +117,10 @@ bool IsStandardTx(const CTransaction& tx, std::string& reason, const bool witnes | |
| return false; | |
| } | |
| + if (tx.ReplayProtected()) { | |
| + return false; |
| { | |
| "web-app": { | |
| "servlet": [ | |
| { | |
| "servlet-name": "cofaxCDS", | |
| "servlet-class": "org.cofax.cds.CDSServlet", | |
| "init-param": { | |
| "configGlossary:installationAt": "Philadelphia, PA", | |
| "configGlossary:adminEmail": "ksm@pobox.com", | |
| "configGlossary:poweredBy": "Cofax", |
| FROM ubuntu:latest | |
| RUN apt-get update -q && apt-get -qy install \ | |
| build-essential pkg-config libc6-dev m4 g++-multilib \ | |
| autoconf libtool ncurses-dev unzip git python \ | |
| zlib1g-dev wget bsdmainutils automake | |
| WORKDIR /root/ | |
| RUN git clone https://github.com/zcash/zcash.git | |
| WORKDIR /root/zcash/ |
| open System | |
| // ----------------------------------------------------------- | |
| // Domain | |
| // ----------------------------------------------------------- | |
| module GameDomain = | |
| type Dice = One | Two | Three | Four | Five | Six |
Share a ZFS file system over SMB/CIFS and advertise it via mDNS so that it shows up in the OS X Finder. Assumes SmartOS, but should work fine on any illumos distribution.
# Allow guest access to a trusted subnet
zfs set sharesmb=ro=192.168.1.0/25,guestok=true,name=store zones/store
# Advertise the SMB service, it will now show up in Finder
dns-sd -R "Loft Server" _smb._tcp local 445 &
# Give it a pretty icon. If you want something different, choose from the list in| #! /usr/bin/env ruby | |
| # Utility converting BIP32 extended key version bytes | |
| require './dashutil' | |
| xkey = ARGV.shift | |
| pref = ARGV.shift | |
| # xpub661MyMwAqRbcFnEEbFf8idiyo8QGKiqhTujUmaJsDhAEZ82cEQPMq69Y4V27vGc5rJnxsd26kyHpBJDW72YMjntsmASbdBy1awfGMsUvLCa |
GPG subkeys marked with the "authenticate" capability can be used for public
key authentication with SSH. This is done using gpg-agent which, using the
--enable-ssh-support option, can implement the agent protocol used by SSH.
A working gpg2 setup is required. It may be possible to use gpg 1.4 but with gpg-agent compiled from gpg2. If you are using OS X 10.9 (Mavericks) then you may find the instructions [here][1] useful.