I hereby claim:
- I am teamgroove on github.
- I am renethiel (https://keybase.io/renethiel) on keybase.
- I have a public key whose fingerprint is D034 F4DF F49C 7F4D 5CD5 768C 07CA AE3C B313 EBEA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
var textColor = function (bgColor) { | |
var r = bgColor.r * 255, | |
g = bgColor.g * 255, | |
b = bgColor.b * 255; | |
var yiq = (r * 299 + g * 587 + b * 114) / 1000; | |
return (yiq >= 128) ? 'black' : 'white'; | |
} |
#type1 | |
sudo launchctl unload -w /System/Library/LaunchDaemons/FOO | |
#type2 | |
sudo launchctl unload -w /Library/LaunchDaemons/FOO |
#remove the . in the filelist | |
#sed -i -e 's/^.//g' filelist.txt | |
#finally | |
rsync --files-from=filelist.lst . /dest |
grep -rl "pattern" . > output.lst |
var p = require('categorizr'); | |
console.log(p) |
<div class="container highlight2"> | |
<fieldset class="activate"> | |
<input type="radio" id="c11" name="c1" value="1" checked="checked"/> <label for="c11">hello</label> | |
<input type="radio" id="c12" name="c1" value="2"/> | |
<label for="c12">hello</label> | |
<input type="radio" id="c13" name="c1" value="3"/> <label for="c13">hello</label> |
Was inspired by the recent CodeKit 2.0 landing page and wanted to recreate the graphic where the circuit board was being filled up. Turns out its as simple as stacking three backgrounds on top of one another.
Forked from Tim Teeling's Pen Peek Through the Background.
A Pen by teamgroove on CodePen.
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<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-menu/core-submenu.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> |
var parseXlsx = require('voxel-engine'); |