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,
# User settings - Here you can enable/disable a given miner profile: | |
# | |
RUNAS="ubuntu" # For the amdgpu-pro driver this user must be a member of 'video' group | |
DAEMON="/opt/miners/ethminer" # Wherever you installed the binary - make sure its executable by above user. | |
GPU="-G" # -U (nVidia Cuda) or -G (OpenCL) or -X (mixed Cuda/OpenCL cards) | |
WORKER="Worker1" | |
LOGFILE="/var/log/miners/ethminer.log" | |
# values: pool, proxy, solo |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: ethminer | |
# Required-Start: $remote_fs $syslog $network $named | |
# Required-Stop: $remote_fs $syslog $network $named | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: ethminer start-stop-daemon init script | |
# Description: This allows you to start/stop ethminer as if it | |
# were a daemon |
# https://rocm.github.io/ROCmHipCaffeQuickstart.html | |
# But fixed :) | |
wget -qO - http://repo.radeon.com/rocm/apt/debian/rocm.gpg.key | sudo apt-key add - | |
sudo sh -c 'echo deb [arch=amd64] http://repo.radeon.com/rocm/apt/debian/ xenial main > /etc/apt/sources.list.d/rocm.list' | |
sudo add-apt-repository ppa:oibaf/graphics-drivers | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install mesa-vdpau-drivers |
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,
// Functions | |
function hello() { | |
console.log("Hello World") | |
} | |
// Calling a function | |
hello // function | |
hello() // "Hello World" | |
// Returning from functions |
// check version | |
node -v || node --version | |
// list locally installed versions of node | |
nvm ls | |
// list remove available versions of node | |
nvm ls-remote | |
// install specific version of node |
# Install tmux on rhel/centos 7 | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel | |
# DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL | |
curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz | |
tar -xvzf libevent-2.0.22-stable.tar.gz | |
cd libevent-2.0.22-stable | |
./configure --prefix=/usr/local |
/* globals firebaseui */ | |
import Ember from 'ember'; | |
import firebase from 'firebase'; | |
const { computed, inject: { service } } = Ember; | |
export default Ember.Component.extend({ | |
firebaseApp: service(), | |
didInsertElement() { |