Powered by Arch ARM, Apache, PHP, cgminer and MinePeon.
Write Arch Linux ARM to SD and use it to boot your rpi.
.event {border:none;border-top:1px solid #000;padding:5px;font-size:120%} | |
.detail {border:none;padding:5px;} | |
.now {font-size:10px;text-align:right;} | |
.today {background:#290;color:#fff;margin-top:5px;} | |
.option {background:#000;text-align:center;margin:5px} | |
.option a{padding:5px;margin:auto;background:#027;text-decoration:none;color:#ccc;width:100%;font-size:140%} | |
.later {background:#333;color:#999;} | |
.later hr{border-color:#666;} |
Powered by Arch ARM, Apache, PHP, cgminer and MinePeon.
Write Arch Linux ARM to SD and use it to boot your rpi.
Updating MinePeon with git pull
might break functionality! That's normal. Be warned!
Bugtesting is very welcome, consider filing your issues here instead of bitcointalk: https://github.com/MineForeman/MinePeonWebUI/issues?state=open
Thanks!
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
<template> | |
<div> | |
<comp-a level="1"></comp-a> | |
</div> | |
</template> | |
<script> | |
import CompA from './components/CompA' | |
export default { |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env node | |
const exec = require('child_process').exec | |
// Default options | |
const options = { | |
host: '0.0.0.0', | |
port: 50005, | |
path: '/webhook', | |
delay: 10 | |
} |
export function lighten(color = '#004488', opacity = 1) { | |
// Convert to color channels | |
const num = parseInt(color.slice(1), 16) | |
let R = num >> 16, | |
G = (num >> 8) & 0x00ff, | |
B = num & 0x0000ff | |
// Interpolate channel | |
opacity = Math.min(Math.max(opacity, 0), 1) | |
R = Math.round(R + (1 - opacity) * (255 - R)) |