Beta Release:
-
Lead law.MIT.edu at MIT (at the Media Lab)
-
Co-Chair of Massachusetts Legal Hackers, a Chapter of LegalHackers.org
Current Release:
###SAP Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by SAP SE or its affiliates (“SAP”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to SAP in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact [email protected]. | |
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions. | |
**Copyright License.** You hereby grant, and agree to grant, to SAP a non-exclusive, perpetual, irrevocable, worldwid |
{ | |
"address": "mkqCZE3X1Yab7pHkg3FnVNvaYSx8p8N3Zs", | |
"signature": "H8ZHg+Ar9/g9BasGL34+5tlTfxjf2iP98PVuw2+GQjPEU8/yAd8Uxketw1wKHinyI1h+USXikTE9Yzfnw3BVlrw=", | |
"hashedPayload": "01ed76be5d3eb72220fe41e730d126234c2a1d65ec208d539224c72804282c00" | |
} |
import ecdsa | |
import ecdsa.der | |
import ecdsa.util | |
import hashlib | |
import os | |
import re | |
import struct | |
b58 = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' |
Beta Release:
Lead law.MIT.edu at MIT (at the Media Lab)
Co-Chair of Massachusetts Legal Hackers, a Chapter of LegalHackers.org
Current Release:
I hereby claim:
To claim this, I am signing this object:
Verifying that +dazza is my blockchain ID. https://onename.com/dazza |
// http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html | |
jQuery.githubUserRepositories = function(username, callback) { | |
jQuery.getJSON("https://api.github.com/users/" + username + "/repos?callback=?", callback); | |
} | |
jQuery.fn.loadRepositores = function(username) { | |
this.html("<span>Querying GitHub for repositories...</span>"); | |
var target = this; |
import Foundation | |
/// Parse RFC 3339 date string to NSDate | |
/// | |
/// :param: rfc3339DateTimeString string with format "yyyy-MM-ddTHH:mm:ssZ" | |
/// :returns: NSDate, or nil if string cannot be parsed | |
public func dateForRFC3339DateTimeString(rfc3339DateTimeString: String) -> NSDate? { | |
let formatter = getThreadLocalRFC3339DateFormatter() | |
return formatter.dateFromString(rfc3339DateTimeString) | |
} |
function rfc3339(d) { | |
function pad(n) { | |
return n < 10 ? "0" + n : n; | |
} | |
function timezoneOffset(offset) { | |
var sign; | |
if (offset === 0) { | |
return "Z"; |