Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
import base64 | |
import hashlib | |
import hmac | |
from Crypto.Cipher import AES | |
key = base64.decodebytes(b'v4QC6l4ttEogiBYvjLyvbA==') | |
nonce = base64.decodebytes(b'3iNVHJXuCfYoU9QP49DGqw==') | |
ct = base64.decodebytes(b'x9WM3Qy15Xw/2Z6pGVKXVA==') |
Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
#include <Wire.h> | |
#include <TimeLib.h> | |
#include <DS1307RTC.h> | |
#include <LiquidCrystal_I2C.h> | |
int budzikGodzina = 7, budzikMinuta = 0; | |
LiquidCrystal_I2C lcd(0x27, 16, 2); | |
tmElements_t tm; |
#include <Wire.h> | |
#include <TimeLib.h> | |
#include <DS1307RTC.h> | |
#include <LiquidCrystal_I2C.h> | |
int budzikGodzina = 7, budzikMinuta = 0; | |
LiquidCrystal_I2C lcd(0x27, 16, 2); | |
tmElements_t tm; |
# Edit ~/.bash_profile | |
export GOPATH=$HOME/go | |
export PATH=$GOPATH/bin:$PATH | |
# Reload profile : source ~/.bash_profile |
www.iuqerfsodp9ifjaposdfjhgosurijfaewrwergwea.com
is up the virus exits instead of infecting the host. (source: malwarebytes). This domain has been sinkholed, stopping the spread of the worm.SECURITY BULLETIN AND UPDATES HERE: https://technet.microsoft.com/en-us/library/security/ms17-010.aspx
var rsvp = require("rsvp") | |
var Promise = rsvp.Promise; | |
function cleardir(path) { | |
return new Promise(function(resolve, reject) { | |
fs.readdir(path, function(err, dir) { | |
if (err) { | |
reject(err); | |
return; | |
} |
#include <time.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <stdio.h> | |
#include <sys/mman.h> | |
#include <sys/types.h> | |
#include <stdlib.h> | |
#include <sys/stat.h> /* For mode constants */ | |
#include <fcntl.h> /* For O_* constants */ |
My typical setup for a development box in VirtualBox uses two NICs. The first uses NAT to allow the box to communicate with the outside world through my host computer’s network connection. (NAT is the default, so shouldn't require any setup.) The second is a "host-only" connection that allows my host and guest to interact.
To create a host-only connection in VirtualBox, start by opening the preferences in VirtualBox. Go to the "Network" tab, and addd a Host-only Network. Modify the host-only network, and disable DHCP. Make a note of the IP address. (Feel free to set the IP address as well, if you like.)
Next, assign this host-only adapter to the virtual machine. Select the VM and press "Settings". Go to the "Network" tab, and select "Adpater 2". Enable the adapter, set it to a "Host-only Adapter", and select the adpater you created above.