- swarm integration
- secure webviews
- Mist UI
- starting of nodes, switching networks etc
- IPC proxy to the node
- accounts/dapp permissions
- preloader logic to inject stuff
- node updatelogic
- mist update logic
- onboarding screen
This file contains 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
(* | |
Prove that, due to the free theorem for impredicative sigma types, strong | |
projection is a valid extension. Based on Dan Doel's Agda version: | |
https://hub.darcs.net/dolio/agda-share/browse/ParamInduction.agda. | |
*) | |
Definition Rel (A: Prop) (B: Prop) := | |
A -> B -> Prop. | |
Definition Sigma (T: Prop) (U: T -> Prop): Prop := |
This file contains 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
// generator.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <experimental\generator> | |
#include <string> | |
#include <numeric> | |
#include <vector> | |
#include <cstdint> | |
#include <sstream> |
This file contains 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
from itertools import count, product | |
from string import digits, ascii_lowercase, ascii_uppercase | |
from sys import stdout | |
import argparse | |
combinations = ascii_lowercase | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--digits", "-d", help="include numbers", action="store_true") | |
parser.add_argument("--upper", "-u", help="include uppercase letters", action="store_true") | |
args = parser.parse_args() |
This file contains 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
(add-to-list 'load-path "~/.emacs.d/evil") | |
(require 'evil) | |
(evil-mode 1) | |
;; Highlight matching parens. | |
(show-paren-mode 1) | |
;;; No tabs. | |
(setq-default ident-tabs-mode nil) | |
(setq-default tab-width 4) |
This file contains 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
all: | |
node work2mlc.js getwork.json 381353fa >test.mlc | |
lambda -pem lib.mlc -f test.mlc | |
clean: |
This file contains 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
/*<?php | |
//*/public class PhpJava { public static void main(String[] args) { System.out.printf("/*%s", | |
//\u000A\u002F\u002A | |
class PhpJava { | |
static function main() { | |
echo(//\u000A\u002A\u002F | |
"Hello World!"); | |
}} | |
//\u000A\u002F\u002A | |
PhpJava::main(); |
This file contains 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
var os = require('os'); | |
var util = require('util'); | |
var Promise = require('promise'); | |
var WebSocketClient = require('websocket').w3cwebsocket; | |
var macaddress = require('macaddress'); | |
var dgram = require('dgram'); | |
var ip = require('ip'); | |
/** |
This file contains 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
// This is free and unencumbered software released into the public domain. | |
// Marshals a string to an Uint8Array. | |
function encodeUTF8(s) { | |
var i = 0, bytes = new Uint8Array(s.length * 4); | |
for (var ci = 0; ci != s.length; ci++) { | |
var c = s.charCodeAt(ci); | |
if (c < 128) { | |
bytes[i++] = c; | |
continue; |