I hereby claim:
- I am daenamkim on github.
- I am daenamkim (https://keybase.io/daenamkim) on keybase.
- I have a public key ASBTdW6h9Z67oHxrxOzlPmrUvQJdSNdtpP7AIh8SyFUXNgo
To claim this, I am signing this object:
| pragma solidity >=0.5.1 <0.6.0; | |
| contract Donation { | |
| address[] public givers; | |
| uint[] public values; | |
| address owner; | |
| constructor() public { | |
| owner = msg.sender; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| axios({ | |
| url: 'http://localhost:5000/static/example.pdf', | |
| method: 'GET', | |
| responseType: 'blob', // important | |
| }).then((response) => { | |
| const url = window.URL.createObjectURL(new Blob([response.data])); | |
| const link = document.createElement('a'); | |
| link.href = url; | |
| link.setAttribute('download', 'file.pdf'); | |
| document.body.appendChild(link); |
| import React, {Component} from 'react'; | |
| import go from 'gojs'; | |
| const goObj = go.GraphObject.make; | |
| export default class GoJs extends Component { | |
| constructor (props) { | |
| super (props); | |
| this.renderCanvas = this.renderCanvas.bind (this); |