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:
| 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"; |
| # Text | |
| - [ ] Item 1 | |
| - [ ] Item 2 | |
| # More Text |
| #!/usr/bin/env python3 | |
| from urllib import request, parse | |
| import json | |
| base_url = "http://lims.dccouncil.us/_layouts/15/uploader/AdminProxy.aspx/" | |
| keyword_test = "" | |
| # Generic function to get Data from LIMS | |
| def getFromLIMS(view, payload): |