I hereby claim:
- I am spacesailor24 on github.
- I am spacesailor (https://keybase.io/spacesailor) on keybase.
- I have a public key ASAW3CLUkLHyobdAGm5ryk9-_azVIsa8pDltcNN6blhq1Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
const getValuesFromAPI = async () => { | |
const firstValue = getValueFromAPI('firstValue'); | |
const secondValue = getValueFromAPI('secondValue'); | |
const firstAndSecondValues = Promise.all([firstValue, secondValue]); | |
return firstAndSecondValue | |
} |
pragma solidity ^0.5.0; | |
/** | |
* @title RBAC | |
* @author Alberto Cuesta Canada | |
* @notice Implements runtime configurable Role Based Access Control. | |
*/ | |
contract RBAC { | |
event RoleCreated(uint256 role); |
did:muport:QmcBgvaUPxKkvrZQzjpNs4EyGzDPsKReQmZszZwjzEZmBv |
did:muport:QmTz9s64riHwtLFadAs8FW3a8NTNA8tqcD2UatCUGXMVRn |
I hereby claim:
To claim this, I am signing this object:
// Your goal is to recreate a functional version of what you see in the image: | |
// https://www.dropbox.com/s/nrkkuxliq8akff4/flipPilotExample.png?dl=0 | |
// using the mock data provided below. | |
// Vue Documentation: https://vuejs.org/v2/guide/ | |
// Vuex Documentation: https://vuex.vuejs.org/en/ | |
// Mock Data: | |
state: { | |
account: { |
######################## Example 1 ############################ | |
class ControllerTest extends TestCase | |
{ | |
use DatabaseTransactions; | |
.... | |
############################################################### | |
######################## Example 2 ############################ | |
public function testSomethingYoureTesting() | |
{ |
import json | |
import base64 | |
import hmac | |
import hashlib | |
# This would be a constant sourced from a config.py file | |
ACCEPTED_SECURTIY_PARAMS = ('expiry', 'call', 'handle', 'url', | |
'maxSize', 'minSize', 'path', 'container') | |
ACCEPTED_SECURTIY_TYPES = {'expiry': int, 'call': list, |