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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
0x00118038d1aC0443639CdeDCB7243Bf3C3be5B2e |
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
Verifying my Blockstack ID is secured with the address 1EbRy94U3SFsasmAFLWc5YrDLjPgs1BS1b https://explorer.blockstack.org/address/1EbRy94U3SFsasmAFLWc5YrDLjPgs1BS1b |
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
// Concat a string inside a loop and trun it into a str | |
//https://users.rust-lang.org/t/how-do-i-avoid-temporary-value-created-here-errors-when-creating-an-array/9433/14 | |
let mut result: Vec<String> = Vec::new(); | |
let mut counter = 0; | |
while counter < list.len() { | |
if counter+1< list.len(){ | |
result.push(format!("For want of a {} the {} was lost.\n", list[counter], list[counter+1])); | |
} | |
if counter+1 == list.len(){ | |
result.push(format!("For want of a {} the {} was lost.\n", list[counter-1], list[counter])); |
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
https://github.com/ethereum/wiki/wiki/Contract-ERC20-ABI |
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
https://github.com/nodejs/node-gyp/blob/master/README.md | |
https://www.theia-ide.org/doc/Composing_Applications.html |
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
https://grpc.io/docs/quickstart/java.html | |
#Compile and run | |
$ ./gradlew installDist | |
#Run Server | |
signatory/build/install/signatory/bin/signatory signatory/config_ropsten.json |
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
https://blogs.oracle.com/jtc/build-jdk-10-for-your-raspberry-pi-right-on-your-device |
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
https://github.com/asticode/go-astilectron | |
https://github.com/pavel-v-chernykh/keystore-go |
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
Access Linux Subsytem CPP Compiler | |
https://github.com/Microsoft/vscode-cpptools/blob/master/Documentation/LanguageServer/Windows%20Subsystem%20for%20Linux.md |
OlderNewer