I hereby claim:
- I am aschmidt75 on github.
- I am aschmidt75 (https://keybase.io/aschmidt75) on keybase.
- I have a public key whose fingerprint is 6BAA 9A33 D6E4 31F8 E8AE 0038 70AA 383A F141 07AD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // ------------------------------------------------------------------------------------------------------------------ | |
| // Application Handlers | |
| // TODO: Implement application functionality here | |
| // ------------------------------------------------------------------------------------------------------------------ | |
| /** Pushes a new event to the event FIFO */ | |
| void wot_events_push(const char *name, const char *description, const char *time); | |
| /** TODO: Implement application-specific code here by filling the app_...(...) functions */ | 
| /** | |
| * Generated by THNG:STRUCTION, provided as a Creative Commons 1.0 Universal (CC0 1.0) Public Domain Dedication. | |
| * | |
| * Code is as-is and without any warranty; without even the implied | |
| * warranty of merchantability or fitness for a particular purpose. | |
| * See LICENSE file or visit https://creativecommons.org/publicdomain/zero/1.0/deed.en | |
| */ | 
| import json | |
| from action import Action | |
| from event import Event | |
| from property import Property | |
| from thing import Thing | |
| from value import Value | |
| class ThingMQTTBinding: | 
| from action import Action | |
| from event import Event | |
| from property import Property | |
| from thing import Thing | |
| from value import Value | |
| import json | |
| import time | |
| import uuid | 
| { | |
| "CN": "Test-Intermediate CA", | |
| "key": { | |
| "algo": "ecdsa", | |
| "size": 256 | |
| }, | |
| "names": [ | |
| { "C": "DE", "L": "Koenigswinter", "O": "aschmidt75", "OU": "Tesing Dptd" } | |
| ], | |
| "ca": { | 
| #!/bin/bash | |
| if [[ $# -ne 1 ]]; then | |
| echo 'Usage: cat inputdata.json | ./invoke.sh FUNCTIONNAME' | |
| exit 1 | |
| fi | |
| FUNCTION="$1" | |
| INPUTDATA0=`cat` | |
| INPUTDATA=$(echo $INPUTDATA0 | sed 's/\"/\\"/g') | 
| /** | |
| */ | |
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "os" | |
| "github.com/hyperledger/fabric/core/chaincode/shim" | 
| func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Response { | |
| ... | |
| } | |
| func (t *SimpleChaincode) invoke(stub shim.ChaincodeStubInterface, args []string) pb.Response { | |
| ... | |
| } | 
| func (t *SimpleChaincode) invoke(stub shim.ChaincodeStubInterface, args []string) pb.Response { | |
| ... | |
| } |