A Pen by David DeSandro on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"plethora-control": [ | |
{ | |
"date": "00:00", | |
"consumed": 2229, | |
"seen": 25136, | |
"conversion": 8.867759388924252, | |
}, | |
{ | |
"date": "01:00", | |
"consumed": 2120, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright IBM Corp. 2016 All Rights Reserved. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Excerpt code from https://github.com/IBM-Blockchain/learn-chaincode/blob/master/finished/chaincode_finished.go... | |
func (t *SimpleChaincode) Invoke(stub *shim.ChaincodeStub, function string, args []string) ([]byte, error) { | |
fmt.Println("invoke is running " + function) | |
// Handle different functions | |
if function == "init" { | |
return t.Init(stub, "init", args) | |
} else if function == "write" { | |
return t.write(stub, args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
_id: "_design/583b8b49866331bd709f397507512c5550022807", | |
_rev: "1-e53be256db498dc72715ef58a64017b4", | |
language: "query", | |
views: { | |
583b8b49866331bd709f397507512c5550022807: { | |
map: { | |
fields: { | |
properties.timestamp: "asc" | |
} |
Dribbble rebound to CodePen crossover: http://drbl.in/jxHT
Had this unused d3 line chart code laying around so decided to show it off. Used Ishtar UI Kit for the design inspiration.
A Pen by Sean Barclay on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo kextunload /System/Library/Extensions/AppleHDA.kext | |
$ sudo kextload /System/Library/Extensions/AppleHDA.kext |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<filter id="InnerShadowExample"> | |
<!-- Shadow Offset --> | |
<feOffset | |
dx='5' | |
dy='5' | |
/> | |
<!-- Shadow Blur --> | |
<feGaussianBlur | |
stdDeviation='3' |