I hereby claim:
- I am brynbellomy on github.
- I am brynb (https://keybase.io/brynb) on keybase.
- I have a public key ASDX89eg_Af8QGUp-HdvUTZK3ANmc5z_3R8Lv0eMLG4Z7Ao
To claim this, I am signing this object:
| Pod::Spec.new do |s| | |
| s.name = 'Signals' | |
| s.version = '0.0.1' | |
| s.license = 'MIT' | |
| s.summary = 'A micro-framework for creating and observing events.' | |
| s.authors = { 'Tuomas Artman' => '@artman' } | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = 'https://github.com/artman/Signals' | |
| s.ios.deployment_target = '8.0' |
| Pod::Spec.new do |s| | |
| s.name = 'JSTilemap' | |
| s.version = '0.0.1' | |
| s.license = 'WTFPL' | |
| s.summary = 'Podspec for JSTilemap (not mine)' | |
| s.authors = { 'bryn austin bellomy' => 'bryn.bellomy@gmail.com' } | |
| s.platform = :osx, '10.10' |
| Pod::Spec.new do |s| | |
| s.name = 'ReactiveCocoa' | |
| s.version = '0.0.1' | |
| s.summary = 'A framework for composing and transforming streams of values' | |
| s.authors = { 'Justin Spahr-Summers' => '@jspahrsummers' } | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = 'https://github.com/ReactiveCocoa/ReactiveCocoa' | |
| s.ios.deployment_target = '8.0' | |
| s.osx.deployment_target = '10.10' |
| // NSScanner+Swift.swift | |
| // A set of Swift-idiomatic methods for NSScanner | |
| // | |
| // (c) 2015 Nate Cook, licensed under the MIT license | |
| import Foundation | |
| extension NSScanner { | |
| // MARK: Strings |
| // Traverses an arbitrary struct and translates all stings it encounters | |
| // | |
| // I haven't seen an example for reflection traversing an arbitrary struct, so | |
| // I want to share this with you. If you encounter any bugs or want to see | |
| // another example please comment. | |
| // | |
| // The MIT License (MIT) | |
| // | |
| // Copyright (c) 2014 Heye Vöcking | |
| // |
I hereby claim:
To claim this, I am signing this object:
| pragma solidity ^0.4.0; | |
| // This is our interface (note that it's not really a full | |
| // contract, just a specification of available functions). | |
| contract Reservable { | |
| function reserve(uint seats) payable {} | |
| } | |
| contract FoodBudgetWallet { | |
| address restaurant; |
| contract Restaurant { | |
| function Restaurant() {} | |
| event GotReservation(uint seats, uint ethAmount, uint ethBalance); | |
| function reserve(uint seats) payable { | |
| GotReservation(seats, msg.value, this.balance); | |
| } | |
| } |
| contract DavesWallet { | |
| event GotSomeMoney(uint amount, uint balance); | |
| function() payable { | |
| GotSomeMoney(msg.value, this.balance); | |
| } | |
| } |
| contract Auction { | |
| function placeBid() returns (bool success) {} | |
| function withdraw() returns (bool success) {} | |
| function cancelAuction() returns (bool success) {} | |
| event LogBid(address bidder, uint bid, address highestBidder, uint highestBid, uint highestBindingBid); | |
| event LogWithdrawal(address withdrawer, address withdrawalAccount, uint amount); | |
| event LogCanceled(); | |
| } |