Skip to content

Instantly share code, notes, and snippets.

########################################################
# How To stake archcoins on raspberry pi with raspbian
########################################################
# Install required Packages:
## update apt
> sudo apt-get update
## install packages
> sudo apt-get install -y automake build-essential libcurl4-openssl-dev git zip libssl-dev libdb++-dev libboost-all-dev libqrencode-dev
@janhajk
janhajk / coinedupApi.js
Created February 18, 2014 07:45
coinedup api call for node.js
function get(pair){
var api_secret = 'YOUR_API_SECRET';
var api_key = 'YOUR_API_KEY';
var url = 'https://api.coinedup.com/trades';
var post = {
requestKey: (new Date().getTime()).toString(10),
market : pair,
fromTime : (time() - (60 * 60 * 0.5)).toString(10) // Half an hour
};
var options = {