I hereby claim:
- I am thgh on github.
- I am thgh (https://keybase.io/thgh) on keybase.
- I have a public key ASASI0m6nzmL66ILlojU3WmRopITywhsneYNLaYy43VK-wo
To claim this, I am signing this object:
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)) |
#!/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 | |
} |
I hereby claim:
To claim this, I am signing this object:
<template> | |
<div> | |
<comp-a level="1"></comp-a> | |
</div> | |
</template> | |
<script> | |
import CompA from './components/CompA' | |
export default { |
<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> |
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!
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;} |