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
#!/bin/sh -e | |
SGX_SDK_BIN=sgx_sdk.bin | |
wget -O $SGX_SDK_BIN https://download.01.org/intel-sgx/linux-1.9/sgx_linux_ubuntu16.04.1_x64_sdk_1.9.100.39124.bin | |
chmod a+x $SGX_SDK_BIN | |
echo -e 'no\n/opt/intel' | sudo ./$SGX_SDK_BIN | |
echo 'source /opt/intel/sgxsdk/environment' >> ~/.zshrc |
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
/** | |
* | |
* Copyright(c) 2011-2016 Intel Corporation All Rights Reserved. | |
* | |
* The source code contained or described herein and all documents related to | |
* the source code ("Material") are owned by Intel Corporation or its suppliers | |
* or licensors. Title to the Material remains with Intel Corporation or its | |
* suppliers and licensors. The Material contains trade secrets and proprietary | |
* and confidential information of Intel or its suppliers and licensors. The | |
* Material is protected by worldwide copyright and trade secret laws and treaty |
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
## | |
## bitcoin.conf configuration file. Lines beginning with # are comments. | |
## | |
daemon=1 | |
regtest=1 | |
listen=0 | |
# JSON-RPC options (for controlling a running Bitcoin/bitcoind process) | |
rpcuser=exch |
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
diff --git a/old.sol b/new.sol | |
index 0184107..1419bcd 100644 | |
--- a/old.sol | |
+++ b/new.sol | |
@@ -1,16 +1,35 @@ | |
pragma solidity ^0.4.18; | |
- | |
+contract KittyCoreInterface { | |
+ function cooAddress() public returns(address); |
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
#include "emp-sh2pc/emp-sh2pc.h" | |
using namespace emp; | |
using namespace std; | |
const string circuit_file_location = macro_xstr(EMP_CIRCUIT_PATH); | |
int port, party; | |
string file = circuit_file_location+"/AES-non-expanded.txt";//adder_32bit.txt"; | |
CircuitFile cf(file.c_str()); |
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
version: '3' | |
services: | |
unblockneteasemusic: | |
image: nondanee/unblockneteasemusic | |
environment: | |
NODE_ENV: production | |
ports: | |
- 8080:8080 | |
- 8081:8081 |
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
diff --git a/geth.yml b/geth.yml | |
index 33578eb..86d6431 100644 | |
--- a/geth.yml | |
+++ b/geth.yml | |
@@ -46,7 +46,7 @@ services: | |
- --http.vhosts=* | |
- --http.corsdomain=* | |
- --http.api | |
- - web3,eth,net | |
+ - web3,eth,net,txpool |
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
\usepackage{todonotes} | |
\newcounter{todocounter} | |
\newcommand{\todonum}[2][] | |
{\stepcounter{todocounter}\todo[#1]{(\thetodocounter) #2}} | |
\newif\ifshowcomment | |
\showcommenttrue | |
\ifshowcomment | |
\newcommand{\fanz}[1]{\stepcounter{todocounter}\textcolor{blue}{{\small [[(\thetodocounter) Fan: #1]]}}} | |
\newcommand{\FZ}[1]{\todonum[inline,color=blue!20,size=\footnotesize,caption={}]{#1 \hfill \mbox{-Fan}}} |
OlderNewer