Edward Snowden answered questioned after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| ;; Easily start/stop the scaffold eth commands in separate terminals | |
| ;; Ensure you're in the scaffold-eth root directory | |
| ;; terminal names: *yarn-chain*, *yarn-start*, *yarn-deploy* | |
| ;; run with M-x scaffold-eth... Optionally map to keybinding | |
| (defun scaffold-eth/stop () | |
| (interactive) | |
| (ignore-errors (kill-buffer "*yarn-deploy*")) | |
| (ignore-errors (kill-buffer "*yarn-start*")) | |
| (ignore-errors (kill-buffer "*yarn-chain*"))) |
| This is probably an issue to do with the not being able to correctly | |
| utilize the usb2.0 connection on your computer from within Windows in virtualbox. | |
| First thing to confirm is that you have the virtualbox extension pack | |
| installed. By default, virtualbox ships with usb 1.0 support. | |
| The virtualbox extension pack will add support for usb 2.0, 3.0 among | |
| other features. You can find the extension pack from the official | |
| virtualbox website: https://www.virtualbox.org/wiki/Downloads | |
| Next, ensure that you've added the USB device to the guest |
| <!-- <h1> This is a H1 header </h1> --> | |
| <h2> This is a H2 header </h2> | |
| <!-- <p> This is a paragraph </p> --> |
| void binary_print(unsigned int value) { | |
| unsigned int mask = 0xff000000; // start with a mask for the highest byte | |
| unsigned int shift = 256*256*256; // start with a shift for the highest byte | |
| unsigned int byte, byte_iterator, bit_iterator; | |
| for(byte_iterator=0; byte_iterator < 4; byte_iterator++) { | |
| byte = (value & mask) / shift; // isolate each byte | |
| printf(" "); | |
| for(bit_iterator=0; bit_iterator < 8; bit_iterator++) { // print the byte's bits | |
| if(byte & 0x80) // if the highest bit in the byte isn't 0 |
Edward Snowden answered questioned after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| /*Author: Daniel Bundala*/ | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <algorithm> | |
| using namespace std; | |
| FILE *in,*out; |
| def add(a, b): | |
| """Takes in two numbers and returns their sum""" | |
| return a + b | |
| def sub(a, b): | |
| """Takes in two numbers and returns their difference""" | |
| return a - b | |
| def multiply(a, b): | |
| """Takes in two numbers and returns their product""" |